/* ============================================================
   Top Page Styles
   ============================================================ */

/* --------------------------------------------------
   Header
-------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background-color: var(--header-bg);
  backdrop-filter: blur(4px);
  z-index: 600;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: var(--width-site);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--pad-side);
}

.site-header__logo {
  flex-shrink: 0;
}

.site-header__logo img {
  height: 29px;
  width: auto;
}

.site-header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header__nav a {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-black);
  white-space: nowrap;
  transition: color 0.2s;
}

.site-header__nav a:hover {
  color: var(--color-main);
}

.site-header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: var(--radius-md);
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: var(--fz-body);
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.site-header__cta:hover {
  opacity: 0.8;
}

.site-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.site-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  transition: transform 0.3s, opacity 0.3s;
}

/* ハンバーガー → ✕ アニメーション */
.site-header.is-open .site-header__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-open .site-header__hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-header.is-open .site-header__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------
   Drawer（SP用スライドメニュー）
-------------------------------------------------- */
.site-header__drawer {
  position: fixed;
  top: var(--header-h);
  right: -100%;
  width: 280px;
  height: calc(100dvh - var(--header-h));
  background-color: var(--color-white);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow-y: auto;
  transition: right 0.35s ease;
  z-index: 99;
}

.site-header.is-open .site-header__drawer {
  right: 0;
}

.site-header__drawer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-header__drawer-nav li {
  border-bottom: 1px solid var(--color-gray-lt);
}

.site-header__drawer-nav a {
  display: block;
  padding: 16px 4px;
  font-size: var(--fz-body);
  color: var(--color-black);
  transition: color 0.2s;
}

.site-header__drawer-nav a:hover {
  color: var(--color-main);
}

.site-header__drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: var(--fz-body);
  line-height: 1;
  text-align: center;
  transition: opacity 0.2s;
}

.site-header__drawer-cta:hover {
  opacity: 0.8;
}

/* オーバーレイ */
.site-header__overlay {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 98;
}

.site-header.is-open .site-header__overlay {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------
   共通：矢印アイコン（inline SVG）
-------------------------------------------------- */
.arrow-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: block;
}

/* --------------------------------------------------
   MV（動画ファーストビュー）
-------------------------------------------------- */
.sec-mv {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 810;
  overflow: hidden;
  margin-top: var(--header-h);
}

.sec-mv__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sec-mv__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-inline: var(--pad-side);
  pointer-events: none;
}

.sec-mv__catch {
  font-size: 64px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
  line-height: 1.3;
}

.sec-mv__desc {
  font-size: var(--fz-body);
  color: #fff;
  text-align: center;
  line-height: var(--lh-body);
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
}


/* --------------------------------------------------
   About
-------------------------------------------------- */
.sec-about {
  position: relative;
  height: 720px;
  overflow: hidden;
}

/* 背景画像：左に写真・右に白フェードが焼き込まれているのでオーバーレイ不要 */
.sec-about__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  pointer-events: none;
}

.sec-about__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--width-site);
  margin-inline: auto;
  padding-inline: var(--pad-side);
}

/* テキストブロックを右寄せ */
.sec-about__text {
  margin-left: auto;
  width: 566px;
  max-width: 100%;
}

.sec-about__title {
  font-size: var(--fz-h2);
  font-weight: var(--fw-h2);
  line-height: var(--lh-h2);
  margin-bottom: 40px;
}

.sec-about__body {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
}

.sec-about__body p + p {
  margin-top: 32px;
}

.sec-about__body strong {
  font-weight: var(--fw-body-b);
}

/* --------------------------------------------------
   Service
-------------------------------------------------- */
.sec-service {
  padding: 128px 0;
  background-color: var(--color-white);
}

.sec-service__inner {
  max-width: var(--width-site);
  margin-inline: auto;
  padding-inline: var(--pad-side);
}

.sec-service__label {
  margin-bottom: 16px;
}

.sec-service__heading {
  font-size: var(--fz-h2);
  font-weight: var(--fw-h2);
  line-height: var(--lh-h2);
  margin-bottom: 80px;
  text-align: center;
}

.sec-service__heading .num {
  font-family: var(--font-en);
  font-size: 88px;
  font-weight: 600;
  color: var(--color-main);
  line-height: 1;
}

.sec-service__desc {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  text-align: left;
  margin-bottom: 16px;
}

/* 大カード 2列 */
.sec-service__main-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.service-card-lg {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-card-lg__img {
  width: 100%;
  aspect-ratio: 584 / 337;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.service-card-lg__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-card-lg:hover .service-card-lg__img img {
  transform: scale(1.04);
}

.service-card-lg__name {
  font-size: var(--fz-h3);
  font-weight: var(--fw-h3);
  line-height: var(--lh-h3);
}

.service-card-lg__body {
  border-top: 1px solid var(--color-gray-lt);
  border-bottom: 1px solid var(--color-gray-lt);
  padding: 16px;
  font-size: var(--fz-body);
  line-height: 1.5;
  min-height: 104px;
}

.service-card-lg__more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  padding: 8px 16px;
  font-size: var(--fz-body);
  color: var(--color-black);
  transition: opacity 0.2s;
  margin-top: auto;
}

.service-card-lg__more:hover {
  opacity: 0.7;
}

/* 小カード 4列 */
.sec-service__sub-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.service-card-sm {
  background-color: var(--color-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-sm__img {
  width: 100%;
  aspect-ratio: 1080 / 608;
  overflow: hidden;
}

.service-card-sm__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-card-sm:hover .service-card-sm__img img {
  transform: scale(1.04);
}

.service-card-sm__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: 16px;
  padding-inline: 0;
  flex: 1;
}

.service-card-sm__name {
  font-size: 17px;
  line-height: 1.5;
  flex: 1;
}

.service-card-sm__more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 8px;
  font-size: var(--fz-body);
  color: var(--color-black);
  transition: opacity 0.2s;
}

.service-card-sm__more:hover {
  opacity: 0.7;
}

.sec-service__btn-wrap {
  display: flex;
  justify-content: center;
}

/* --------------------------------------------------
   Recruit（sec-aboutと同パターン：左テキスト、右画像）
-------------------------------------------------- */
.sec-recruit {
  position: relative;
  height: 720px;
  overflow: hidden;
}

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

.sec-recruit__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--width-site);
  margin-inline: auto;
  padding-inline: var(--pad-side);
}

.sec-recruit__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sec-recruit__label {
  text-align: left;
}

.sec-recruit__title {
  font-size: var(--fz-h2);
  font-weight: var(--fw-h2);
  line-height: var(--lh-h2);
}

.sec-recruit__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 566px;
  font-size: var(--fz-body);
  line-height: var(--lh-body);
}

.sec-recruit__tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sec-recruit__tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* --------------------------------------------------
   Member
-------------------------------------------------- */
.sec-member {
  padding: 120px 0;
  background-color: var(--color-white);
}

.sec-member__inner {
  max-width: var(--width-site);
  margin-inline: auto;
  padding-inline: var(--pad-side);
}

.sec-member__label {
  margin-bottom: 64px;
}

.sec-member__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 32px;
}

.member-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 12px;
}

.member-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.member-card__role {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
}

.member-card__name {
  font-size: var(--fz-body);
  font-weight: var(--fw-body-b);
  line-height: var(--lh-body);
}

/* --------------------------------------------------
   Solution（sec-aboutと同パターン：右テキスト、左背景画像）
-------------------------------------------------- */
.sec-solution {
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
}

.sec-solution__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  pointer-events: none;
}

.sec-solution__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: var(--width-site);
  margin-inline: auto;
  padding-top: 64px;
  padding-inline: var(--pad-side);
}

.sec-solution__content {
  margin-left: auto;
  max-width: 767px;
  width: 100%;
}

.sec-solution__label {
  text-align: right;
  margin-bottom: 0;
}

.sec-solution__title {
  font-size: var(--fz-h2);
  font-weight: var(--fw-h2);
  line-height: var(--lh-h2);
  text-align: right;
  margin-bottom: 64px;
}

.sec-solution__body {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  text-align: left;
}

/* Industry strip（sec-solution__inner内） */
.sec-solution__industry {
  padding-bottom: 80px;
}

.sec-industry__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 40px;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 128px;
  height: 129px;
  padding: 8px;
  background-color: var(--color-main);
  border-radius: var(--radius-sm);
  gap: 8px;
}

.industry-item__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.industry-item__label {
  font-size: var(--fz-lg);
  font-weight: var(--fw-body);
  line-height: var(--lh-body);
  color: var(--color-white);
  text-align: center;
}

.industry-item--etc {
  background-color: transparent;
  color: var(--color-main);
  font-size: var(--fz-lg);
  font-weight: var(--fw-body);
  width: auto;
  height: auto;
  padding: 0;
}

.sec-industry__list li:last-child {
  align-self: flex-end;
}

/* --------------------------------------------------
   News
-------------------------------------------------- */
.sec-news {
  padding: 120px 0;
  background-color: var(--color-white);
}

.sec-news__inner {
  max-width: var(--width-site);
  margin-inline: auto;
  padding-inline: var(--pad-side);
}

.sec-news__label {
  margin-bottom: 64px;
}

.sec-news__list {
  margin-bottom: 64px;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-md);
  text-decoration: none;
  color: var(--color-black);
  transition: opacity 0.2s;
}

.news-item:hover {
  opacity: 0.7;
}

.news-item__thumb {
  flex-shrink: 0;
  width: 200px;
  height: 133px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  overflow: hidden;
}

.news-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 133px;
  padding-block: 8px;
}

.news-item__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news-item__date {
  font-family: var(--font-en);
  font-size: var(--fz-body);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.news-item__title {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
}

.news-item__tags {
  display: flex;
  gap: 8px;
}

.sec-news__btn-wrap {
  display: flex;
  justify-content: center;
}

/* --------------------------------------------------
   Contact
-------------------------------------------------- */
.sec-contact {
  position: relative;
  height: 400px;
  overflow: hidden;
  background-color: var(--color-main);
}

.sec-contact__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.sec-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 94, 129, 0.00) 0%, #005E81 100%);
  z-index: 1;
  pointer-events: none;
}

.sec-contact__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--width-site);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--pad-side);
  gap: 60px;
}

.sec-contact__text {
  max-width: 560px;
}

.sec-contact__lead {
  font-size: var(--fz-h4);
  font-weight: 500;
  line-height: var(--lh-body);
  color: var(--color-white);
  margin-bottom: 16px;
}

.sec-contact__desc {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-white);
  text-shadow: 0 0 16px #55554f;
  margin-bottom: 40px;
}

.sec-contact__right {
  flex-shrink: 0;
}

.sec-contact .btn {
  width: 512px;
}

.sec-contact .btn .arrow-icon {
  width: 48px;
  height: 48px;
}

.sec-contact__en {
  font-family: var(--font-en);
  font-size: 84px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-white);
}

/* --------------------------------------------------
   Footer
-------------------------------------------------- */
.site-footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 48px 0 24px;
}

.site-footer__inner {
  max-width: var(--width-site);
  margin-inline: auto;
  padding-inline: var(--pad-side);
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}

/* 左列：ロゴ・住所・SNS */
.site-footer__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.site-footer__address {
  font-style: normal;
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-white);
}

.site-footer__sns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.site-footer__sns-link:hover {
  opacity: 1;
}

/* 右列：ナビ */
.site-footer__nav {
  flex: 1;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: flex-end;
}

.site-footer__nav-main,
.site-footer__nav-policy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__nav-break {
  display: none;
}

.site-footer__nav a {
  font-size: var(--fz-body);
  color: var(--color-white);
  white-space: nowrap;
  transition: opacity 0.2s;
}

.site-footer__nav a:hover {
  opacity: 0.7;
}

.site-footer__copy {
  text-align: center;
  font-size: var(--fz-body);
  color: var(--color-white);
}

/* ============================================================
   PC only: 見出しの折り返し防止（Figma設計準拠）
   ============================================================ */
@media (min-width: 1025px) {
  .sec-about__title,
  .sec-recruit__title,
  .sec-solution__title {
    white-space: nowrap;
  }

  .br-tab-sp {
    display: none;
  }
}

/* ============================================================
   Responsive
   ============================================================ */

/* TAB: 768px – 1024px */
@media (max-width: 1024px) {
  .site-header__inner {
    padding-inline: 40px;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__cta {
    display: none;
  }

  .site-header__hamburger {
    display: flex;
  }

  /* About */
  .sec-about__bg {
    opacity: 0.25;
    object-position: left center;
  }

  .sec-about__inner {
    padding-inline: 40px;
  }

  .sec-about__text {
    width: 100%;
    margin-left: 0;
  }

  /* Service */
  .sec-service {
    padding: 96px 0;
  }

  .sec-service__label {
    font-size: 36px;
  }

  .sec-service__heading {
    font-size: 48px;
  }

  .sec-service__heading .num {
    font-size: 48px;
  }

  .sec-service__inner {
    padding-inline: 40px;
  }

  .sec-service__sub-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Recruit */
  .sec-recruit__bg {
    opacity: 0.25;
  }

  .sec-recruit__label {
    font-size: 36px;
  }

  .sec-recruit__inner {
    padding-inline: 40px;
  }

  /* Member */
  .sec-member__label {
    font-size: 36px;
  }

  .sec-member__inner {
    padding-inline: 40px;
  }

  .sec-member__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Solution */
  .sec-solution__bg {
    opacity: 0.25;
  }

  .sec-solution__label {
    font-size: 36px;
  }

  .sec-solution__inner {
    padding-inline: 40px;
  }

  .sec-solution__industry {
    padding-bottom: 60px;
  }

  .sec-industry__list {
    padding: 40px 24px;
  }

  /* News */
  .sec-news__label {
    font-size: 36px;
  }

  .sec-news__inner {
    padding-inline: 40px;
  }

  /* Contact */
  .sec-contact {
    height: auto;
    padding: 60px 40px;
  }

  .sec-contact__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 0;
    height: auto;
    gap: 24px;
  }

  .sec-contact__right {
    order: -1;
  }

  .sec-contact__text {
    width: 100%;
    max-width: 100%;
  }

  .sec-contact .btn {
    width: 100%;
    max-width: 100%;
  }

  .sec-contact__en {
    font-size: 56px;
  }

  /* Footer */
  .site-footer__inner {
    padding-inline: 40px;
  }

  .site-footer__top {
    flex-wrap: wrap;
    gap: 32px;
  }

}

/* SP: ~ 767px */
@media (max-width: 767px) {
  .site-header__inner {
    padding-inline: var(--pad-side-sp);
  }

  /* About */
  .sec-about {
    height: auto;
    min-height: 440px;
    display: flex;
    align-items: center;
  }

  .sec-about__bg {
    position: absolute;
    height: 100%;
    object-position: left center;
    opacity: 0.25;
  }

  .sec-about__inner {
    padding: 48px var(--pad-side-sp);
    width: 100%;
  }

  .sec-about__text {
    margin-left: 0;
    width: 100%;
  }

  .sec-about__title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  /* Service */
  .sec-service__label {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .sec-service {
    padding: 60px 0;
  }

  .sec-service__inner {
    padding-inline: var(--pad-side-sp);
  }

  .sec-service__heading {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .service-card-lg__name {
    font-size: 24px;
  }

  .sec-service__heading .num {
    font-size: 28px;
  }

  .sec-service__main-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sec-service__sub-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Recruit */
  .sec-recruit {
    height: auto;
    min-height: 440px;
    display: flex;
    align-items: center;
  }

  .sec-recruit__bg {
    position: absolute;
    height: 100%;
    object-position: center center;
    opacity: 0.25;
  }

  .sec-recruit__inner {
    padding: 48px var(--pad-side-sp);
    width: 100%;
  }

  .sec-recruit__content {
    gap: 24px;
    width: 100%;
  }

  .sec-recruit__label {
    font-size: 28px;
    margin-bottom: -16px;
  }

  .sec-recruit__title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  /* Member */
  .sec-member {
    padding: 60px 0;
  }

  .sec-member__label {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .sec-member__inner {
    padding-inline: var(--pad-side-sp);
  }

  .sec-member__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Solution */
  .sec-solution__bg {
    position: absolute;
    height: 100%;
    object-position: center center;
    opacity: 0.25;
  }

  .sec-solution__inner {
    padding: 48px var(--pad-side-sp);
  }

  .sec-solution__content {
    margin-left: 0;
  }

  .sec-solution__label {
    font-size: 28px;
    text-align: left;
  }

  .sec-solution__title {
    font-size: 28px;
    text-align: left;
    margin-bottom: 32px;
  }

  .sec-solution__body {
    text-align: left;
  }

  .sec-solution__industry {
    padding-bottom: 60px;
  }

  .sec-industry__list {
    padding: 24px 16px;
  }

  .industry-item {
    width: 100px;
    height: 100px;
  }

  .industry-item__icon {
    width: 48px;
    height: 48px;
  }

  .industry-item__label {
    font-size: var(--fz-body);
  }

  /* News */
  .sec-news__label {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .sec-news {
    padding: 60px 0;
  }

  .sec-news__inner {
    padding-inline: var(--pad-side-sp);
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .news-item__thumb {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
  }

  .news-item__body {
    height: auto;
    gap: 12px;
  }

  /* Contact */
  .sec-contact {
    padding: 60px var(--pad-side-sp);
  }

  .sec-contact__en {
    font-size: 48px;
  }

  /* Footer */
  .site-footer__inner {
    padding-inline: var(--pad-side-sp);
  }

  .site-footer__top {
    flex-direction: column;
    gap: 24px;
  }

  .site-footer__nav {
    flex-direction: column;
    gap: 16px;
  }

  /* Buttons */
  .btn {
    width: 100%;
    max-width: 464px;
  }
}
