@charset "UTF-8";

/* =========================================================
   1. VARIABLES
========================================================= */
:root {
  --color-navy: #112c5b;
  --color-green: #5eb110;
  --color-green-hover: #6ecf13;
  --color-text: #0F2350;
  --color-text-light: #6b7280;
  --color-gray-bg: #f8fafc;
  --color-border: #e5e7eb;

  --font-base: 'Noto Sans JP', sans-serif;
  --z-header: 50;
  --z-drawer: 60;

}

/* =========================================================
   2. RESET & BASE
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-base);
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
  color: var(--color-text);
}

body {
  line-height: 1.6;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

body.sp-menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease, color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

/* =========================================================
   3. LAYOUT
========================================================= */
.l-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-inner--small {
  max-width: 800px;
}

.l-section {
  padding: 80px 0;
}

.l-section--top {
  padding-top: 80px;
}

@media (min-width: 768px) {
  .l-section {
    padding: 100px 0;
  }

  .l-section--top {
    padding-top: 100px;
  }
}

.l-main {
  padding-top: 60px;
}

@media (min-width: 1024px) {
  .l-main {
    padding-top: 72px;
  }
}

/* =========================================================
   4. COMPONENTS
========================================================= */
.c-section-header {
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .c-section-header {
    margin-bottom: 64px;
  }
}

.c-section-header--row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}

/* 英語サブタイトル：下から上のグラデーション */
.c-section-header__en {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0.25em;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: linear-gradient(to bottom,
      #433CCF 0%,
      #7C79E6 55%,
      #B6B9FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-section-header__en--light {
  background: linear-gradient(to top, #ffffff 0%, #999FC9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.c-section-header__en-sub {
  font-size: 13px;
  color: #9ca3af;
  letter-spacing: 0.08em;
}

/* ★修正: 日本語タイトルはグラデーションではなく単色(ネイビー) */
.c-section-header__ja {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-navy);
  line-height: 1.4;
}

.c-section-header__ja.--small {
  font-size: 19px;
  font-weight: 400;
}

.c-section-header__ja--white {
  color: #fff;
}

@media (min-width: 768px) {
  .c-section-header__ja {
    font-size: 40px;
  }

  .c-section-header__ja.--small {
    font-size: 23px;
  }
}

.c-section-header__bar {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-navy);
  margin: 16px auto 0;
}

.c-section-header__bar--left {
  margin-inline: auto;
}

.c-section-header__bar--white {
  background: #fff;
}

.c-section-header__bar-full {
  width: 100%;
  height: 1px;
  background: #c0ccdf;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .c-section-header__bar-full {
    margin-bottom: 48px;
  }

  .c-section-header__bar--left {
    margin-left: 0;
  }
}

.c-section-header__lead {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.9;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .c-section-header__lead {
    font-size: 15px;
    margin-top: 48px;
  }
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 240px;
  height: 56px;
  padding: clamp(1rem, -0.605rem + 3.34vw, 2.25rem);
  background: var(--color-green);
  color: #fff;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(94, 177, 16, 0.2);
}

.c-btn.u-mobile-center {
  margin-inline: auto;
}

@media (min-width: 768px) {
  .c-btn {
    max-width: 320px;
    height: 70px;
  }

  .c-btn.u-mobile-center {
    margin: 0;
  }
}

.c-btn--center {
  margin: 0 auto;
}

.c-btn:hover {
  background: var(--color-navy);
}

.c-btn__text {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (min-width: 768px) {
  .c-btn__text {
    font-size: 14px;
  }
}

.c-btn__text i {
  font-size: 11px;
  margin-top: 2px;
  opacity: 0.8;
}

.c-btn__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 20px;
  border-radius: 15px;
  border: 1px solid #FFFFFF;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .c-btn__arrow {
    width: 90px;
    height: 30px;
  }

  .c-btn__arrow::before {
    width: 31px;
    height: 14px;
  }
}

.c-btn__arrow::before {
  content: "";
  display: block;
  width: 29px;
  height: 13px;
  background: url(../images/icon_arrow-button.png);
  background-size: cover;
}

.c-btn:hover .c-btn__arrow {
  background-color: #88D544;
  border: solid 1px #88D544;
}

.c-btn-recruit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  background-color: var(--color-navy);
  transition: opacity .4s ease;
}

.c-btn-recruit:hover {
  opacity: .6;
}

.c-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 60px;
  height: 60px;
  background: var(--color-navy);
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 70;
  position: absolute;
  right: 0;
}

.c-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: 0.3s ease;
}

@media (min-width: 1240px) {
  .c-hamburger {
    display: none;
  }
}

.c-swipe-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.c-swipe-container::-webkit-scrollbar {
  display: none;
}

.c-swipe-item {
  width: 85%;
  flex-shrink: 0;
  scroll-snap-align: center;
}

@media (min-width: 768px) {
  .c-swipe-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .c-swipe-item {
    width: auto;
    flex-shrink: 1;
  }
}

/* =========================================================
   5. HEADER & DRAWER MENU
========================================================= */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.l-header.has-shadow {
  box-shadow: 0 4px 20px rgba(17, 44, 91, 0.08);
}

.l-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

@media (min-width: 1024px) {
  .l-header__inner {
    padding: 0 40px;
    height: 72px;
  }
}

.l-header__logo img {
  height: 32px;
}

@media (min-width: 1024px) {
  .l-header__logo img {
    height: 40px;
  }
}

.l-header__nav {
  display: none;
}

@media (min-width: 1240px) {
  .l-header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .l-header__nav-list {
    display: flex;
    gap: 48px;
  }

  .l-header__nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-navy);
    padding-bottom: 4px;
  }

  .l-header__nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-navy);
    transition: width 0.3s ease;
  }

  .l-header__nav-link:hover::after {
    width: 100%;
  }

  .l-header__divider {
    width: 1px;
    height: 28px;
    background: var(--color-border);
  }

  .l-header__soko img {
    height: 32px;
    transition: opacity .4s ease;
  }

  .l-header__soko:hover img {
    opacity: 0.6;
  }
}

.p-sp-menu {
  position: fixed;
  inset: 0;
  background: #F8F8FF;
  z-index: var(--z-drawer);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
}

.p-sp-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.p-sp-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
  background-color: #FFFFFF;
  flex-shrink: 0;
}

.p-sp-menu__logo {
  height: 32px;
}

.p-sp-menu__close {
  width: 60px;
  height: 60px;
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 8px;
  cursor: pointer;
  position: absolute;
  right: 0;
  background-color: var(--color-navy);
}

.p-sp-menu__body {
  flex: 1;
  padding: 24px 0 40px;
}

.p-sp-menu__list {
  padding: 0 20px;
}

.p-sp-menu__list li:not(:first-child) {
  margin-top: 24px;
}

.p-sp-menu__list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  color: #253575;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #E2E2F7;
}

.p-sp-menu__list li a .arrow {
  display: block;
  width: 29px;
  height: 13px;
  background: url(../images/icon_arrow-nav.png);
  background-size: cover;
}

.p-sp-menu__contact {
  display: grid;
  gap: 24px;
  margin-top: 32px;
  width: fit-content;
  margin-inline: auto;
}

.p-sp-menu__contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  color: #0F2350;
}

.p-sp-menu__contact-item::before {
  content: "";
  display: block;
  width: 89px;
  height: 89px;
}

.p-sp-menu__tel.p-sp-menu__contact-item::before {
  background: url(../images/icon_tel-nav.png);
  background-size: cover;
}

.p-sp-menu__fax.p-sp-menu__contact-item::before {
  background: url(../images/icon_fax-nav.png);
  background-size: cover;
}

.p-sp-menu__tel-content {
  flex: 2;
}

.p-sp-menu__contact-label {
  display: block;
  font-size: 20px;
}

.p-sp-menu__contact-number {
  display: block;
  font-size: 28px;
}

.p-sp-menu__tel-end {
  display: flex;
  align-items: center;
  gap: 4px;
}

.p-sp-menu__tel-title {
  padding: 2px 4px;
  font-size: 11px;
  border: solid 1px #0F2350;
  border-radius: 20px;
}

.p-sp-menu__tel-text {
  font-size: 13px;
}

.p-sp-menu__contact-start {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

/* =========================================================
   6. MAIN SECTIONS
========================================================= */
/* FV */
.p-fv {
  position: relative;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .p-fv {
    height: 90dvh;
    min-height: 607px;
  }
}

@media (min-width: 768px) {
  .p-fv__swiper {
    padding: 24px;
  }
}

.p-fv__swiper .swiper-slide {
  overflow: hidden;
}

/* 画像の初期状態とアニメーション */
.p-fv__swiper .swiper-slide img {
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 6.5s linear;
}

.p-fv__swiper .swiper-slide-active img,
.p-fv__swiper .swiper-slide-duplicate-active img {
  transform: scale(1);
}

.p-fv__swiper img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
}

.p-fv__swiper img,
.--position-righ img {
  object-position: right;
}

@media (min-width: 768px) {
  .p-fv__swiper img {
    height: 90dvh;
    min-height: 607px;
  }
}

.p-fv__contents {
  position: relative;
}

.p-fv__content {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 2;
}

@media (min-width: 768px) {

  .p-fv__content {
    top: 88px;
    left: 0;
  }
}

.p-fv__title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .p-fv__title {
    font-size: 64px;
  }
}

.p-fv__banners {
  bottom: 20px;
  right: 20px;
}

.p-fv__banners.u-mobile--hide {
  display: none;
}

.p-fv__banners.u-mobile {
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .p-fv__banners {
    position: absolute;
    display: flex;
    gap: 14px;
    bottom: 63px;
    right: 48px;
    z-index: 3;
  }

  .p-fv__banners.u-mobile {
    display: none;
  }

  .p-fv__banners.u-mobile--hide {
    display: flex;
  }
}

.p-fv__banners-contents {
  margin-top: 24px;
}

.p-fv__banner {
  display: block;
  max-width: 160px;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .p-fv__banner {
    max-width: 250px;
  }
}

.p-fv__banner:hover {
  transform: translateY(-4px);
}

.p-fv__map {
  position: absolute;
  top: auto;
  bottom: 8px;
  right: 0;
  max-width: 182px;
  z-index: 2;
}

@media (min-width: 768px) {
  .p-fv__map {
    top: 58px;
    right: 24px;
    max-width: 299px;
    width: 100%;
  }
}

/* OUR SPIRIT */
.p-spirit {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .p-spirit {
    padding-bottom: 120px;
  }
}

.p-spirit__inner {
  position: relative;
  z-index: 10;
}

.p-spirit__layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .p-spirit__layout {
    flex-direction: row;
    gap: 64px;
  }
}

.p-spirit__img-wrapper {
  width: 100vw;
  position: relative;
  margin: 0 calc(50% - 50vw);
}

@media (min-width: 768px) {
  .p-spirit__img-wrapper {
    width: 45%;
    flex-shrink: 0;
    margin: 0;
  }
}

.p-spirit__img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  position: relative;
  z-index: 10;
}

/* ★完全修正: ベタ塗りで、画像に少し被り、小さく左寄りの配置 */
.p-spirit__deco-text {
  position: absolute;
  bottom: 36px;
  left: 0;
  /* 左寄り */
  transform: translateY(50%);
  /* 文字の上半分が画像に被り、下半分がはみ出る */
  font-size: clamp(68px, 10vw, 130px);
  font-weight: 100;
  color: #C5C1E3;
  -webkit-text-stroke: 0;
  /* アウトライン（文字抜き）を強制解除 */
  z-index: 20;
  /* 画像の上に被せる */
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  /* 右へ突き抜けさせる */
}

@media (min-width: 768px) {
  .p-spirit__deco-text {
    bottom: 24px;
    left: -10px;
  }
}

.p-spirit__caption {
  padding-right: 20px;
  text-align: right;
  font-size: 10px;
  color: var(--color-text-light);
  margin-top: 8px;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .p-spirit__caption {
    padding-right: 0;
  }
}

.p-spirit__text-area {
  width: 100%;
  padding-top: 20px;
}

@media (min-width: 768px) {
  .p-spirit__text-area {
    width: 55%;
    padding-top: 0;
  }
}

/* キャッチコピー: 下から上へのグラデーション */
.p-spirit__catchphrase {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .p-spirit__catchphrase {
    font-size: 24px;
  }
}

.u-gradient-text {
  display: inline-block;
  background: linear-gradient(to top, #928EE3 0%, #433CCF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 300;
}

.p-spirit__line {
  border: none;
  height: 1px;
  background-color: #e5e7eb;
  margin-bottom: 24px;
  width: 100%;
}

.p-spirit__desc {
  font-size: 14px;
  line-height: 2.2;
  margin-bottom: 40px;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .p-spirit__desc {
    font-size: 15px;
  }
}

/* philosophy */
.p-philosophy__bg {
  margin-top: 24px;
  background-color: #F8F8FF;
}


/* GREETING */
.p-greeting {
  background-color: #0F406D;
  color: #fff;
}

.p-greeting__text p {
  font-size: 14px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .p-greeting__text p {
    font-size: 15px;
  }
}

.p-greeting__sign {
  margin-top: 48px;
  text-align: right;
}

.p-greeting__sign .role {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
}

.p-greeting__sign .name {
  display: block;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* SERVICE */
.p-service__block {
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .p-service__block {
    margin-bottom: 100px;
  }
}

.p-service__block--last {
  margin-bottom: 0;
}

.p-service__header {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .p-service__header {
    flex-direction: row;
    gap: 56px;
    margin-bottom: 48px;
  }
}

.p-service__info {
  width: 100%;
  display: contents;
  text-align: center;
}

.p-service__img {
  width: 100%;
  order: 4;
}

@media (min-width: 768px) {
  .p-service__info {
    width: 45%;
    display: inline;
    text-align: left;
  }

  .p-service__img {
    width: 55%;
  }
}

.p-service__img img {
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.p-service__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 48px 0;
}

@media (min-width: 768px) {
  .p-service__buttons {
    display: none;
    margin-top: 0;
  }
}

.p-service__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 67px;
  padding: 0 8px 0 16px;
  color: var(--color-navy);
  border: solid 1px var(--color-navy);
}

.p-service__button-text {
  font-size: 14px;
}

.p-service__button-text::after {
  content: attr(data-en);
  display: block;
  color: #9394AC;
  font-size: 10px;
}

.p-service__button-arrow {
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_arrow-service.png);
  background-size: cover;
}

.p-service__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #6BAB32;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  order: 1;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .p-service__num {
    margin-inline: 0;
  }
}

.p-service__title {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-navy);
  margin-bottom: 4px;
  order: 2;
}

.p-service__sub {
  display: block;
  font-size: 13px;
  color: #9ca3af;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  order: 3;
}

.p-service__desc {
  font-size: 14px;
  line-height: 2;
  order: 5;
  margin-top: 24px;
  text-align: left;
}

@media (min-width: 768px) {
  .p-service__desc {
    margin-top: 0;
  }
}

.p-card {
  padding: 24px;
  background: #F8F8FF;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-card__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
}

.p-card__body {
  margin-top: 24px;
}

.p-card__title {
  font-size: 14px;
  font-weight: 500;
  color: #28238B;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.6;
}

.p-card__desc {
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
}

.p-service__mark {
  background: var(--color-gray-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .p-service__mark {
    padding: 32px;
    flex-direction: row;
    align-items: flex-start;
    margin-top: 40px;
  }
}

.mark-img {
  max-width: 120px;
  width: 100%;
  flex-shrink: 0;
}

.mark-img.--jta-mark {
  max-width: 320px;
}

@media (min-width: 768px) {
  .mark-img {
    max-width: 140px;
  }

  .mark-img.--jta-mark {
    max-width: 287px;
  }
}

.mark-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.6;
  color: #28238B;
}

.mark-desc {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.9;
}

.p-service__process {
  background: #F8F8FF;
  padding: 24px;
}

@media (min-width: 768px) {
  .p-service__process {
    padding: 32px;
  }
}

.process-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .process-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

.process-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .process-gallery {
    gap: 20px;
  }

  .process-gallery img {
    height: 180px;
  }
}

.process-title {
  font-size: 14px;
  font-weight: 700;
  color: #28238B;
  margin-bottom: 8px;
}

.process-desc {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.9;
  text-align: left;
}

/* LOCATIONS */
.p-location__item {
  margin-bottom: 56px;
}

.p-location__item:last-child {
  margin-bottom: 0;
}

.p-location__title {
  font-size: 14px;
  font-weight: 500;
  color: #28238B;
}

.p-location__desc {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .p-location__title {
    font-size: 16px;
  }

  .p-location__desc {
    font-size: 16px;
  }
}

.p-location__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .p-location__grid {
    flex-direction: row;
    margin-top: 0;
    gap: 24px;
  }
}

.p-location__map-area {
  width: 100%;
}

@media (min-width: 768px) {
  .p-location__map-area {
    width: 33%;
    flex-shrink: 0;
  }
}

.p-location__map-item iframe {
  width: 100%;
  height: 357px;
}

.p-location__map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  color: #28238B;
  margin-top: 8px;
  text-decoration: underline;
  transition: .4s ease;
}

.p-location__map-link:hover {
  opacity: .6;
}

@media (min-width: 768px) {
  .p-location__map-link {
    font-size: 16px;
  }
}

.p-location__map-link img {
  width: 18px;
  height: 18px;
}

.p-location__map-link:hover {
  text-decoration: underline;
}

.p-location__contents {
  width: 100%;
}

.p-location__table {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0;
  column-gap: 24px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .p-location__table {
    grid-template-columns: 1fr 1fr;
  }

  .p-location__table--half {
    grid-template-columns: 1fr;
    width: 50%;
  }

  .p-location__table dl.u-hidden-pc {
    display: none;
  }

  .p-location__table dl {
    gap: 32px;
  }
}

.p-location__table dl {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #E2E2F7;
}

.p-location__table dl:first-child {
  border-top: 1px solid #E2E2F7;
}

.p-location__table dt {
  min-width: 100px;
  flex-shrink: 0;
  font-size: 14px;
}

.p-location__table dd {
  font-size: 13px;
  line-height: 1.8;
}

/* GROUP */
.p-group {
  background-color: #F8F8FF;
}

.p-group__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .p-group__cards {
    grid-template-columns: 1fr 1fr;
  }
}

.p-group__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease;
}

.p-group__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(17, 44, 91, 0.08);
}

.p-group__card-desc {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.p-group__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.p-group__links a i {
  font-size: 12px;
  opacity: 0.6;
}

.p-group__links a:hover {
  text-decoration: underline;
}

/* STRENGTH */
#strength {
  overflow: hidden;
}

.p-strength__layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .p-strength__layout {
    flex-direction: row;
    gap: 64px;
  }
}

.p-strength__img {
  width: 100%;
  max-width: 400px;
}

.p-strength__content {
  width: 100%;
}

@media (min-width: 768px) {
  .p-strength__img {
    width: 45%;
  }

  .p-strength__content {
    width: 55%;
  }
}

.p-strength__point {
  margin-bottom: 32px;
}

.p-strength__point .title {
  padding-bottom: 24px;
  font-size: 22px;
  font-weight: 100;
  color: var(--color-navy);
}

@media (min-width: 768px) {
  .p-strength__point .title {
    font-size: 24px;
  }
}

.p-strength__point hr {
  border: none;
  width: 100%;
  height: 1px;
  background: #566FA7;
  margin-bottom: 24px;
}

.p-strength__point .desc {
  font-size: 14px;
  line-height: 1.9;
}

.p-strength__btn {
  margin-top: 16px;
}

/* RECRUIT */
.p-recruit {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .p-recruit {
    height: 480px;
  }
}

.p-recruit__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-recruit__overlay {
  position: absolute;
  inset: 0;
}

.p-recruit__content {
  position: relative;
  z-index: 10;
  padding: 0 20px;
  width: 100%;
}

.p-recruit__title {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .p-recruit__title {
    font-size: 40px;
  }
}

.p-recruit__desc {
  font-size: 14px;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

/* COMPANY */
.p-company {
  background: #F8F8FF;
}

.p-company__table {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0;
  column-gap: 56px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .p-company__table {
    grid-template-columns: 1fr 1fr;
  }
}

.p-company__table dl {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
}

.p-company__table dl:last-child,
.p-company__table dl:nth-last-child(2) {
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 767px) {
  .p-company__table dl:nth-last-child(2) {
    border-bottom: none;
  }
}

.p-company__table dt {
  min-width: 90px;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--color-navy);
}

.p-company__table dd {
  font-size: 14px;
  line-height: 1.6;
}

.p-company__btn {
  margin-top: 48px;
}

/* GALLERY */
.p-gallery {
  overflow: hidden;
  padding-bottom: 2px;
}

@keyframes scrollGalleryLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollGalleryRgiht {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

.p-gallery__track {
  display: flex;
  width: max-content;
}

.p-gallery__track.--left {
  animation: scrollGalleryLeft 60s linear infinite;
}

.p-gallery__track.--right {
  animation: scrollGalleryRgiht 60s linear infinite;
}

.p-gallery__track:hover {
  animation-play-state: paused;
}

.p-gallery__track img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.p-gallery__track img:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .p-gallery__track img {
    width: 400px;
    height: 280px;
  }
}

/* CONTACT */
.p-contact__layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 768px) {
  .p-contact__layout {
    flex-direction: row;
  }
}

.p-contact__text-area {
  width: 100%;
}

.p-contact__info-area {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .p-contact__text-area {
    width: 45%;
  }

  .p-contact__info-area {
    width: 55%;
    margin: 0;
  }
}

.p-contact__desc {
  margin-top: 48px;
  font-size: 14px;
  line-height: 2;
}

.p-contact__box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.p-contact__icon {
  display: block;
  width: 70px;
  height: 70px;
}

@media (min-width: 768px) {
  .p-contact__icon {
    width: 89px;
    height: 89px;
  }
}

.p-contact__icon.--tel {
  background: url(../images/p-contact_tel.png);
  background-size: cover;
}

.p-contact__icon.--fax {
  background: url(../images/p-contact_fax.png);
  background-size: cover;
}

.p-contact__box .num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.p-contact__box .label {
  font-size: 20px;
  color: var(--color-navy);
}

.p-contact__box .num a,
.p-contact__box .num .text {
  font-size: 28px;
  color: var(--color-navy);
  letter-spacing: 0.02em;
}

.p-contact__box .detail {
  flex: 2;
}

@media (min-width: 768px) {

  .p-contact__box .label {
    font-size: 24px;
  }

  .p-contact__box .num a,
  .p-contact__box .num .text {
    font-size: 36px;
  }

  .p-contact__box .num a,
  .p-contact__box .num .text {
    font-size: 36px;
  }
}

.p-contact__box .num a:hover {
  opacity: 0.7;
}

.p-contact__box .time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text);
}

.p-contact__box .badge {
  border: 1px solid;
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 11px;
  border-radius: 20px;
}

/* FOOTER */
.l-footer {
  background: linear-gradient(to right, #0F406C, #0F406D, #718BA7);
  color: #fff;
  padding: 56px 0;
}

@media (min-width: 768px) {
  .l-footer {
    padding: 72px 0;
  }
}

.l-footer__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .l-footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.l-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  width: fit-content;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .l-footer__nav {
    margin-inline: 0;
    width: auto;
  }
}

.l-footer__nav a {
  font-size: 13px;
  color: #FFFFFF;
  transition: color 0.3s ease;
}

.l-footer__nav a:hover {
  color: #fff;
}

.l-footer__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-green);
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.l-footer__btn:hover {
  background: var(--color-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(94, 177, 16, 0.3);
}

.l-footer__btn i {
  font-size: 13px;
  opacity: 0.8;
}

.l-footer__btn .circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-footer__middle {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .l-footer__middle {
    flex-direction: row;
    justify-content: space-between;
  }
}

.l-footer__logo img {
  display: block;
  height: 40px;
  margin-inline: auto;
}

.l-footer__info {
  width: fit-content;
  margin-top: 24px;
  margin-inline: auto;
  font-size: 12px;
  line-height: 2;
}

@media (min-width: 768px) {
  .l-footer__info {
    width: auto;
    margin-top: 48px;
    margin-inline: 0;
    font-size: 14px;
  }

  .l-footer__logo img {
    margin-inline: 0;
  }
}

.l-footer__banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.l-footer__banners a {
  display: block;
  width: 100%;
  max-width: 280px;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .l-footer__banners a {
    width: 220px;
  }

  .l-footer__banners {
    grid-template-columns: 1fr;
  }
}

.l-footer__banners a:hover {
  transform: translateY(-2px);
}

.l-footer__banners img {
  width: 100%;
  height: auto;
  display: block;
}

.l-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}


.l-footer__copy {
  font-size: 10px;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  line-height: 1.8; 
}


.l-footer__credit {
  display: inline-block;
  margin-top: 8px; 
  font-size: 8px; 
  color: rgba(255, 255, 255, 0.3); 
  transition: opacity 0.3s ease; 
}


.l-footer__credit:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .l-footer__copy {
    font-size: 12px;
    text-align: left;
  }
}

/* UTILITIES */
.u-text-center {
  text-align: center;
}

.u-text-center-sp {
  text-align: center;
}

@media (min-width: 768px) {
  .u-text-center-sp {
    text-align: left;
  }
}

.u-text-green {
  color: #2e7d32;
}

.u-text-blue {
  color: #1565c0;
}

.u-hidden-sp {
  display: none;
}

@media (min-width: 768px) {
  .u-hidden-sp {
    display: inline;
  }
}

.u-hidden-pc {
  display: inline;
}

@media (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-sr-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* JS Animation Class */
.js-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* TEL link */
.tel-link {
  pointer-events: auto;
  cursor: pointer;
}

@media (min-width: 768px) {
  .tel-link {
    pointer-events: none;
    cursor: default;
  }
}