:root {
  --color-navy: #1E3D54;
  --color-gold: #AA9F64;
  --color-bg: #F4F2ED;
  --color-white: #ffffff;
  --color-border: #d8d8d8;
  --color-navy-hover: #2d5872;
  --color-gold-hover: #c2b676;
  --color-button-shadow: rgba(30, 61, 84, 0.34);
  --color-button-shadow-gold: rgba(170, 159, 100, 0.38);
  --color-blue-hover: #1f55c8;
  --viewport-design-width: 1920px;
  --content-width: 1200px;
  --wide-edge: 48px;
  --wide-visual-width: calc(100vw - (var(--wide-edge) * 2));
  --content-gutter: clamp(20px, 6.6667vw, 60px);
  --fluid-content-width: min(calc(100% - (var(--content-gutter) * 2)), var(--content-width));
  --section-space-y: clamp(60px, calc(18.4758vw - 81.72px), 140px);
  --font-ja: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --font-en: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-catch: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  padding-bottom: 100px;
  color: var(--color-navy);
  background: var(--color-bg);
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Utility: breakpoint-specific line breaks */
.u-break-pc,
.u-break-sp {
  display: none;
}

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

@media (max-width: 767px) {
  .u-break-sp {
    display: inline;
  }
}

.js-scroll-fade {
  opacity: 0;
  transform: translateY(72px);
  transition:
    opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .js-scroll-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-header__inner,
.top-hero__inner,
.top-intro__inner,
.top-news__inner,
.top-service__inner,
.top-members__inner,
.top-company__inner,
.top-contact__inner,
.site-footer__inner {
  width: var(--fluid-content-width);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-ja);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  gap: 34px;
  min-height: 106px;
  padding: 28px 48px 18px;
}

.site-header__logo img {
  width: 330px;
}

.site-footer__logo img {
  width: 190px;
}

.site-header__nav-list,
.site-header__buttons,
.top-contact__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header__nav {
  margin-left: auto;
}

.site-header__nav-list {
  gap: 44px;
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.site-header__nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 60px;
}

.site-header__buttons {
  gap: 18px;
}

.site-header__buttons .c-button {
  width: 200px;
  min-height: 60px;
  padding: 0 18px;
  border-radius: 0;
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.site-header__buttons .site-header__tel {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
}

.site-header__tel::before {
  content: "☎";
  display: inline-block;
  margin-right: 0.4em;
  font-size: 0.9em;
  line-height: 1;
}

.site-header__menu-button {
  --hamburger-line-width: 28px;
  --hamburger-line-offset: 9px;
  --hamburger-line-thickness: 1px;
  position: relative;
  display: none;
  width: 60px;
  height: 60px;
  padding: 0;
  color: var(--color-white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.site-header__menu-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: var(--hamburger-line-width);
  height: var(--hamburger-line-thickness);
  margin: 0;
  background: currentColor;
  transform-origin: center;
}

.site-header__menu-button span:nth-child(1) {
  transform: translate(-50%, -50%) translateY(calc(var(--hamburger-line-offset) * -1));
}

.site-header__menu-button span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.site-header__menu-button span:nth-child(3) {
  transform: translate(-50%, -50%) translateY(var(--hamburger-line-offset));
}

.site-header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 100;
  width: min(100vw, 375px);
  overflow-y: auto;
  color: var(--color-white);
  background: rgba(30, 61, 84, 1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header.is-drawer-open .site-header__drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-header__drawer-inner {
  min-height: 100svh;
  padding: 28px 32px 64px;
}

.site-header__drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.site-header__drawer-close {
  --hamburger-line-width: 28px;
  --hamburger-line-thickness: 1px;
  position: relative;
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  padding: 0;
  color: var(--color-white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.site-header__drawer-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: var(--hamburger-line-width);
  height: var(--hamburger-line-thickness);
  margin: 0;
  background: currentColor;
  transform-origin: center;
}

.site-header__drawer-close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header__drawer-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header__drawer-nav {
  width: 216px;
  margin: 52px auto 0;
}

.site-header__drawer-list {
  display: grid;
  gap: 32px;
}

.site-header__drawer-item a {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 20px;
  align-items: baseline;
  color: var(--color-white);
}

.site-header__drawer-ja {
  font-family: var(--font-ja);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.12;
  white-space: nowrap;
}

.site-header__drawer-en {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.3em;
  white-space: nowrap;
}

.site-header__drawer-buttons {
  display: grid;
  gap: 20px;
  width: min(66.667vw, 250px);
  margin: 44px auto 0;
}

.site-header__drawer-tel,
.site-header__drawer-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  color: var(--color-white);
  font-family: var(--font-ja);
  font-weight: 700;
  line-height: 1;
}

.site-header__drawer-tel {
  background: var(--color-gold);
  font-family: var(--font-en);
  font-size: 18px;
}

.site-header__drawer-tel::before {
  content: "☎";
  display: inline-block;
  margin-right: 0.35em;
  font-size: 0.86em;
  line-height: 1;
}

.site-header__drawer-contact {
  background: var(--color-navy);
  border: 1px solid var(--color-white);
  font-size: 16px;
  font-weight: 500;
}

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

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.c-button--outline {
  position: relative;
  width: 320px;
  min-height: 60px;
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: transparent;
}

.c-button--outline::after {
  position: absolute;
  right: 36px;
  content: "→";
  font-size: 14px;
  line-height: 1;
}

.c-button--outline-light {
  color: var(--color-white);
  background: transparent;
}

.c-button--navy {
  color: var(--color-white);
  background: var(--color-navy);
  border-color: var(--color-navy);
}

.c-button--gold {
  color: var(--color-white);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

button,
input[type="submit"],
input[type="button"],
.site-header__nav-list a,
.site-header__menu-button,
.site-header__drawer-close,
.site-header__drawer-item a,
.site-header__drawer-tel,
.site-header__drawer-contact,
.c-button,
.top-members__prev,
.top-members__next,
.member-single-nav__link,
.c-page-nav__link,
.c-pagination__link,
.c-pagination__arrow,
.contact-form__submit,
.site-footer__contact-link,
.site-footer__page-top {
  transition:
    color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.c-button--outline::after {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .site-header__nav-list a:hover,
  .site-header__nav-list a:focus-visible,
  .site-header__drawer-item a:hover,
  .site-header__drawer-item a:focus-visible {
    opacity: 0.68;
  }

  .site-header__menu-button:hover,
  .site-header__menu-button:focus-visible,
  .site-header__drawer-close:hover,
  .site-header__drawer-close:focus-visible {
    opacity: 0.78;
    transform: scale(1.08);
  }

  .site-footer__page-top:hover,
  .site-footer__page-top:focus-visible {
    box-shadow: 0 12px 28px var(--color-button-shadow-gold);
    opacity: 1;
    transform: scale(1.16);
  }

  .member-single-nav__link:hover,
  .member-single-nav__link:focus-visible,
  .c-page-nav__link:hover,
  .c-page-nav__link:focus-visible {
    color: var(--color-white);
    background: var(--color-navy);
    border-color: var(--color-navy);
    box-shadow: 0 18px 34px var(--color-button-shadow);
    opacity: 1;
    transform: translateY(-5px);
  }

  .c-pagination__link:hover,
  .c-pagination__link:focus-visible,
  .c-pagination__arrow:hover,
  .c-pagination__arrow:focus-visible {
    color: var(--color-white);
    background: var(--color-navy);
    border-color: var(--color-navy);
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .news-single .c-page-nav__link:hover,
  .news-single .c-page-nav__link:focus-visible {
    box-shadow: none;
    transform: none;
  }

  .news-single .c-page-nav__link--primary:hover,
  .news-single .c-page-nav__link--primary:focus-visible {
    color: var(--color-navy);
    background: var(--color-white);
    border-color: var(--color-navy);
  }

  .news-single .c-page-nav__link--back:hover,
  .news-single .c-page-nav__link--back:focus-visible {
    color: var(--color-white);
    background: var(--color-navy);
    border-color: var(--color-navy);
  }

  .c-button:not(.c-button--navy):not(.c-button--gold):not(.c-button--outline):not(.c-button--outline-light):hover,
  .c-button:not(.c-button--navy):not(.c-button--gold):not(.c-button--outline):not(.c-button--outline-light):focus-visible,
  button:not(.site-header__menu-button):not(.site-header__drawer-close):not(.top-members__prev):not(.top-members__next):not(.contact-form__submit):hover,
  button:not(.site-header__menu-button):not(.site-header__drawer-close):not(.top-members__prev):not(.top-members__next):not(.contact-form__submit):focus-visible,
  input[type="button"]:hover,
  input[type="button"]:focus-visible {
    box-shadow: 0 18px 34px var(--color-button-shadow);
    filter: saturate(1.08) brightness(1.03);
    opacity: 1;
    transform: translateY(-5px);
  }

  .c-button--outline:hover,
  .c-button--outline:focus-visible {
    color: var(--color-white);
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 8px 16px var(--color-button-shadow-gold);
  }

  .c-button--outline:hover::after,
  .c-button--outline:focus-visible::after {
    transform: translateX(12px);
  }

  .c-button--navy:hover,
  .c-button--navy:focus-visible,
  .site-header__drawer-contact:hover,
  .site-header__drawer-contact:focus-visible,
  .contact-form__submit:hover,
  .contact-form__submit:focus-visible {
    color: var(--color-white);
    background: var(--color-blue-hover);
    border-color: var(--color-blue-hover);
    box-shadow: none;
    filter: none;
    transform: none;
  }

  .site-footer__contact-link--mail:hover,
  .site-footer__contact-link--mail:focus-visible {
    color: var(--color-blue-hover);
    background: var(--color-white);
    border-color: var(--color-white);
    box-shadow: none;
    filter: none;
    transform: none;
  }

  a[href^="tel:"]:hover,
  a[href^="tel:"]:focus-visible {
    box-shadow: none;
    filter: none;
    opacity: 1;
    transform: none;
  }

  .site-header__tel:hover,
  .site-header__tel:focus-visible {
    color: var(--color-white);
    background: var(--color-gold);
    border-color: var(--color-gold);
  }

  .site-header__drawer-tel:hover,
  .site-header__drawer-tel:focus-visible {
    color: var(--color-white);
    background: var(--color-gold);
    border-color: var(--color-gold);
  }

  .top-contact__buttons .c-button--outline-light[href^="tel:"]:hover,
  .top-contact__buttons .c-button--outline-light[href^="tel:"]:focus-visible {
    color: var(--color-white);
    background: transparent;
    border-color: var(--color-white);
  }

  .site-footer__contact-link--tel:hover,
  .site-footer__contact-link--tel:focus-visible {
    color: var(--color-white);
    background: var(--color-gold);
    border-color: var(--color-gold);
  }
}

#kv {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: min(90vw, 100vh);
  overflow: hidden;
}

.kv-slider,
.kv {
  position: absolute;
  inset: 0;
}

.kv-slider {
  z-index: 1;
}

.kv {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0;
}

.kv--01 {
  animation: kvFade01 15s infinite;
}

.kv--02 {
  animation: kvFade02 15s infinite;
}

.kv--03 {
  animation: kvFade03 15s infinite;
}

@keyframes kvFade01 {
  0%,
  26.666% {
    opacity: 1;
  }

  33.333%,
  93.333% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes kvFade02 {
  0%,
  26.666% {
    opacity: 0;
  }

  33.333%,
  60% {
    opacity: 1;
  }

  66.666%,
  100% {
    opacity: 0;
  }
}

@keyframes kvFade03 {
  0%,
  60% {
    opacity: 0;
  }

  66.666%,
  93.333% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kv {
    animation: none;
  }

  .kv--01 {
    opacity: 1;
  }
}

.kv-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #000;
  mix-blend-mode: multiply;
  opacity: 0.2;
}

#kv h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: min(10vw, 120px);
  font-weight: 700;
  line-height: 0.4;
  letter-spacing: 0.1em;
  text-align: center;
  transform: translate(-50%, -50%);
}

#kv h1 span {
  display: inline-block;
  font-family: var(--font-ja);
  font-size: min(2.333vw, 28px);
  font-weight: 700;
  line-height: 0;
  text-align: center;
  white-space: nowrap;
}

.scroll_down.kv-scroll-down {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 4vw, 64px);
  z-index: 5;
  width: clamp(40px, 4vw, 64px);
  height: clamp(84px, 7vw, 116px);
  color: var(--color-white);
  pointer-events: none;
  transform: translateX(-50%);
}

.scroll_down.kv-scroll-down .arrow {
  position: absolute;
  left: 50%;
  width: clamp(12px, 1.2vw, 18px);
  height: clamp(12px, 1.2vw, 18px);
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0;
  transform: translateX(-50%) rotate(-45deg);
  animation: kvArrowMove 2s infinite;
}

.scroll_down.type07.kv-scroll-down .arrow:nth-child(1) {
  top: clamp(6px, 0.6vw, 9px);
  animation-delay: 0s;
}

.scroll_down.type07.kv-scroll-down .arrow:nth-child(2) {
  top: clamp(18px, 1.8vw, 27px);
  animation-delay: 0.15s;
}

.scroll_down.type07.kv-scroll-down .arrow:nth-child(3) {
  top: clamp(30px, 3vw, 45px);
  animation-delay: 0.3s;
}

.scroll_down.kv-scroll-down .text {
  position: absolute;
  left: 50%;
  bottom: 0;
  color: currentColor;
  font-family: var(--font-en);
  font-size: clamp(10px, 0.9vw, 13px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

@keyframes kvArrowMove {
  0% {
    opacity: 0;
    transform: translate(-50%, -8px) rotate(-45deg);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 8px) rotate(-45deg);
  }
}

.upper-left,
.lower-left,
.upper-right,
.lower-right {
  position: absolute;
  z-index: 3;
  display: block;
  max-width: none;
  pointer-events: none;
}

.upper-left {
  top: 0;
  left: 0;
  width: min(62.5vw, 750px);
  mix-blend-mode: multiply;
}

.st0 {
  fill: #215ca0;
}

.st0,
.st1 {
  isolation: isolate;
}

.lower-left {
  bottom: 0;
  left: 0;
  height: 100%;
  mix-blend-mode: screen;
  opacity: 0.3;
}

.st2,
.st3 {
  isolation: isolate;
}

.st3 {
  fill: #fff;
}

.upper-right {
  top: 0;
  right: 0;
  width: min(42.5vw, 510px);
  mix-blend-mode: screen;
  opacity: 0.3;
}

.st4,
.st5 {
  isolation: isolate;
}

.st5 {
  fill: #fff;
}

.lower-right {
  right: 0;
  bottom: 0;
  width: min(25.833vw, 310px);
  mix-blend-mode: multiply;
}

.st6,
.st7 {
  isolation: isolate;
}

.st7 {
  fill: #81adff;
  mix-blend-mode: multiply;
}

@media screen and (max-width: 600px) {
  #kv {
    height: 500px;
  }

  #kv h1 {
    font-size: 60px;
  }

  #kv h1 span {
    font-size: 14px;
  }

  .scroll_down.kv-scroll-down {
    bottom: 18px;
    width: 38px;
    height: 66px;
  }

  .scroll_down.kv-scroll-down .arrow {
    width: 9px;
    height: 9px;
    border-width: 1.25px;
  }

  .scroll_down.type07.kv-scroll-down .arrow:nth-child(1) {
    top: 5px;
  }

  .scroll_down.type07.kv-scroll-down .arrow:nth-child(2) {
    top: 14px;
  }

  .scroll_down.type07.kv-scroll-down .arrow:nth-child(3) {
    top: 23px;
  }

  .scroll_down.kv-scroll-down .text {
    font-size: 9px;
  }
}

.top-intro__inner {
  display: grid;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  grid-template-columns: minmax(0, 56.25vw) minmax(0, 1fr);
  gap: 0;
  align-items: center;
  padding-block: var(--section-space-y);
}

.top-intro__image img {
  width: 100%;
  aspect-ratio: 1080 / 600;
  object-fit: cover;
  border-radius: 0 10px 10px 0;
}

.top-intro__body {
  justify-self: center;
  width: min(430px, calc(100% - 48px));
  max-width: none;
}

.top-intro__text,
.top-service__text,
.top-service__item-text,
.top-contact__text,
.site-footer__text,
.site-footer__privacy {
  margin: 0;
}

.top-intro__text {
  color: #1d1d1d;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-ideograph;
}

.top-members,
.top-company {
  padding-block: var(--section-space-y);
}

.top-news {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  padding-block: var(--section-space-y);
}

.top-news::before,
.top-news::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.top-news::before {
  top: 0;
  left: 0;
  width: 180px;
  height: 627px;
  background: #002c7e;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  mix-blend-mode: multiply;
}

.top-news::after {
  top: 0;
  right: 0;
  width: 240px;
  height: 100%;
  background:
    linear-gradient(to bottom left, #1a4ab5 49.8%, transparent 50%) top right / 240px 707px no-repeat,
    linear-gradient(to top left, var(--color-navy) 49.8%, transparent 50%) bottom right / 180px 479px no-repeat;
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
}

.top-news__inner {
  position: relative;
  z-index: 1;
  max-width: none;
}

.top-news__head {
  margin-bottom: clamp(34px, 4.1667vw, 50px);
}

.c-section-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.c-section-heading__sub {
  order: 2;
  margin: 8px 0 0;
  color: var(--color-gold);
  font-size: max(14px, min(1.6667vw, 20px));
  font-weight: 500;
  line-height: 1.44;
}

.c-section-heading__title {
  order: 1;
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-en);
  font-size: max(50px, min(6.6667vw, 80px));
  font-weight: 700;
  line-height: 1.1;
}

.c-section-heading--light .c-section-heading__sub,
.c-section-heading--light .c-section-heading__title {
  color: var(--color-white);
}

.top-news__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3.333vw, 40px);
  justify-content: center;
}

.top-news__item {
  min-width: 0;
}

.c-news-card__image,
.c-member-card__image {
  margin-bottom: 12px;
}

.c-news-card__image {
  display: block;
  margin-bottom: 18px;
}

.c-news-card__image img {
  width: 100%;
  aspect-ratio: 270 / 206;
  object-fit: cover;
}

.c-news-card__image--empty {
  aspect-ratio: 270 / 206;
  background: var(--color-white);
}

.c-news-card__link,
.c-news-card__title a {
  color: inherit;
  text-decoration: none;
}

.c-news-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.c-news-card__date,
.c-news-card__category {
  margin: 0;
  line-height: 1.5;
}

.c-news-card__date {
  color: #1d1d1d;
  font-size: 14px;
  font-weight: 400;
}

.c-news-card__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 20px;
  padding: 0;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  background: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.c-news-card__title {
  margin: 0;
  color: #1d1d1d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.top-news__button,
.top-members__button,
.top-company__button-wrap {
  margin-top: 40px;
  text-align: center;
}

.top-news__button {
  margin-top: clamp(34px, 4.3334vw, 52px);
}

.top-news .c-button--outline {
  color: var(--color-gold);
  background: var(--color-white);
  border-color: var(--color-gold);
  font-size: 16px;
  font-weight: 500;
}

@media (hover: hover) and (pointer: fine) {
  .top-news .c-button--outline:hover,
  .top-news .c-button--outline:focus-visible {
    color: var(--color-white);
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 8px 16px var(--color-button-shadow-gold);
  }
}

.news-archive {
  background: var(--color-bg);
  padding-block: var(--section-space-y) clamp(96px, 8.3334vw, 160px);
}

.news-archive__inner {
  width: var(--fluid-content-width);
  margin-inline: auto;
}

.news-archive__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(54px, 5vw, 80px) clamp(28px, 3.3334vw, 40px);
}

.news-archive__item {
  min-width: 0;
}

.news-archive__item.is-hidden {
  display: none;
}

.news-archive__pagination {
  margin-top: clamp(70px, 7vw, 110px);
}

.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.c-pagination__link,
.c-pagination__current,
.c-pagination__arrow,
.c-pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-family: var(--font-en);
  padding: 0;
  appearance: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.c-pagination__link,
.c-pagination__arrow {
  cursor: pointer;
}

.c-pagination__current {
  color: var(--color-white);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.c-pagination__ellipsis {
  background: transparent;
  border-color: transparent;
}

.top-service {
  position: relative;
  overflow: visible;
  background: var(--color-bg);
  padding-block: var(--section-space-y);
  --service-side-width: clamp(325px, 26.0417vw, 500px);
  --service-image-width: clamp(360px, 36.533vw, 540px);
  --service-image-track: var(--service-image-width);
  --service-head-edge: clamp(48px, 7.2917vw, 140px);
  --service-head-gap: 48px;
}

.top-service__inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.top-service__head {
  width: 100%;
  min-width: 0;
  padding-right: calc(var(--service-image-width) + var(--service-head-gap));
  padding-left: var(--service-head-edge);
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 68px;
}

.top-service__lead {
  width: 100%;
  max-width: 900px;
  margin: 24px 0 0;
  color: var(--color-navy);
  font-size: 16px;
  line-height: 1.8;
  overflow-wrap: break-word;
}

.top-service__layout {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: var(--service-side-width) minmax(0, 1fr) var(--service-image-track);
  gap: 0;
  align-items: stretch;
}

.top-service__side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  background: var(--color-gold);
}

.top-service__side-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 48px;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: max(14px, min(1.25vw, 24px));
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.top-service__side-item:last-child {
  border-bottom: 0;
}

.top-service__list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  background: var(--color-white);
}

.top-service__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  min-height: clamp(240px, 18.2292vw, 350px);
  padding: clamp(40px, 3.3334vw, 64px) clamp(40px, 3.75vw, 72px);
  border-bottom: 1px solid var(--color-border);
}

.top-service__item:last-child {
  border-bottom: 0;
}

.top-service__item-text {
  color: var(--color-navy);
  font-size: 16px;
  line-height: 1.9;
}

.top-service__image {
  position: absolute;
  top: clamp(-340px, -16vw, -260px);
  right: 0;
  bottom: -220px;
  width: var(--service-image-width);
  overflow: hidden;
  border-radius: 8px 0 0 8px;
}

.top-service__image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.top-members {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(61deg, #81ADFF 0 12.6%, transparent 12.7%) calc(var(--members-object-shift) * -1) bottom / 50% 48% no-repeat,
    var(--color-white);
  padding-block: var(--section-space-y);
  --members-object-shift: 0px;
}

.top-members::before,
.top-members::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.top-members::before {
  top: 0;
  left: calc(var(--members-object-shift) * -1);
  width: clamp(160px, 14.5834vw, 280px);
  height: clamp(420px, 35.4167vw, 680px);
  background: var(--color-navy);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.top-members::after {
  right: calc(var(--members-object-shift) * -1);
  bottom: 0;
  width: clamp(120px, 13.5417vw, 260px);
  height: clamp(520px, 47.9167vw, 920px);
  background: #1f55c8;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.top-members__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.top-members__head {
  width: var(--fluid-content-width);
  margin-inline: auto;
  margin-bottom: 72px;
}

.top-members__slider {
  --member-slider-width: min(calc(100vw - 96px), 1440px);
  --member-card-width: clamp(320px, 20vw, 384px);
  --member-card-gap: clamp(32px, 2.5vw, 48px);
  --member-visible-cards: 4;
  --member-side-peek-ratio: 0;
  --member-arrow-half: 22px;
  position: relative;
  width: var(--member-slider-width);
  margin-inline: auto;
  overflow: visible;
}

.top-members__viewport {
  width: 100%;
  overflow: hidden;
}

.top-members__track {
  display: flex;
  gap: var(--member-card-gap);
  will-change: transform;
}

.top-members__item {
  flex: 0 0 var(--member-card-width);
  min-width: 0;
}

.c-member-card {
  width: 100%;
}

.c-member-card__image {
  width: 100%;
  margin-bottom: 18px;
  aspect-ratio: 360 / 490;
  overflow: hidden;
  border-radius: clamp(6px, 0.5209vw, 10px);
}

.c-member-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-member-card__label {
  display: inline-block;
  margin: 0 0 9px;
  padding: 4px 13px;
  color: var(--color-white);
  background: var(--color-gold);
  font-size: clamp(12px, 0.7292vw, 14px);
  font-weight: 500;
  line-height: 1.5;
}

.c-member-card__name {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(22px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1.25;
}

.c-member-card__role {
  display: inline;
  margin-left: 0.35em;
  font-size: clamp(13px, 0.7292vw, 14px);
  font-weight: 400;
  line-height: 1.6;
  white-space: normal;
}

.c-member-card__en {
  margin: 5px 0 0;
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: clamp(13px, 0.7292vw, 14px);
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.c-member-card__text {
  margin: clamp(16px, 1.25vw, 24px) 0 0;
  color: #1d1d1d;
  font-size: clamp(15px, 0.9375vw, 18px);
  font-weight: 500;
  line-height: 1.45;
}

.top-members__nav {
  pointer-events: none;
}

.top-members__prev,
.top-members__next {
  position: absolute;
  top: calc(var(--member-card-width) * 2 / 3);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  line-height: 1;
  pointer-events: auto;
  transform: translateY(-50%);
  cursor: pointer;
}

.top-members__prev img,
.top-members__next img {
  width: 40px;
  height: 40px;
}

.top-members__prev {
  left: calc(var(--member-arrow-half) * -1);
}

.top-members__next {
  right: calc(var(--member-arrow-half) * -1);
}

.top-members__button {
  margin-top: 64px;
  text-align: center;
}

.top-company {
  padding-block: var(--section-space-y);
  background: var(--color-bg);
}

.top-company__head {
  margin-bottom: clamp(48px, 5vw, 72px);
}

.top-company__table-wrap {
  width: 100%;
  margin-inline: auto;
}

.top-company__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.8;
}

.top-company__table th,
.top-company__table td {
  padding: 22px 32px;
  border: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.top-company__table th {
  width: 320px;
  color: var(--color-white);
  background: var(--color-gold);
  font-weight: 500;
  text-align: center;
}

.top-company__table td {
  color: var(--color-navy);
  background: var(--color-white);
  font-weight: 500;
}

.top-company__button-wrap {
  margin-top: 40px;
}

.top-map__embed {
  position: relative;
  width: 100%;
  height: 600px;
}

.top-map__embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.top-map__note {
  position: absolute;
  left: 50%;
  bottom: 52px;
  z-index: 2;
  width: min(calc(100% - 48px), 460px);
  padding: 18px 24px;
  color: var(--color-navy);
  font-size: 14px;
  line-height: 1.7;
  background: var(--color-white);
  transform: translateX(-50%);
}

.top-map__note p {
  margin: 0;
}

.top-map__note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.top-contact {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-gold);
}

.top-contact::before {
  content: "";
  position: absolute;
  right: clamp(48px, 8.333vw, 160px);
  bottom: -10px;
  width: clamp(300px, 27vw, 425px);
  aspect-ratio: 424.87 / 373.76;
  background: url("../img/mark.svg") center / contain no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.top-contact__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(72px, 6.25vw, 120px);
}

.top-contact__body {
  max-width: none;
}

.top-contact__text {
  margin-top: 40px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  white-space: nowrap;
}

.top-contact__buttons {
  margin-top: 48px;
}

.top-contact__buttons .c-button {
  width: 340px;
  min-height: 70px;
  border-radius: 0;
  font-size: 18px;
  font-weight: 700;
}

.top-contact__buttons .c-button--outline-light {
  background: var(--color-gold);
  font-family: var(--font-en);
}

.top-contact__buttons .c-button--outline-light::before {
  content: "☎";
  display: inline-block;
  margin-right: 0.4em;
  font-size: 0.9em;
  line-height: 1;
}

.site-footer {
  position: relative;
  color: var(--color-white);
  background: var(--color-navy);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: clamp(72px, 8vw, 150px);
  align-items: start;
  padding-block: clamp(64px, 5.2084vw, 100px) clamp(56px, 4.1667vw, 80px);
}

.site-footer__logo img {
  width: clamp(280px, 18.75vw, 360px);
}

.site-footer__address {
  margin-top: 34px;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.site-footer__text {
  max-width: 520px;
  margin-top: 56px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

.site-footer__aside {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-end;
}

.site-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 34px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.site-footer__privacy-area {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  margin-top: auto;
}

.site-footer__privacy {
  font-size: 13px;
  font-weight: 500;
}

.site-footer__privacy-mark {
  display: block;
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.site-footer__copyright {
  margin-top: 28px;
  font-size: 12px;
  font-weight: 400;
}

.site-footer__contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 50;
  display: grid;
  width: 100%;
  min-height: 100px;
  grid-template-columns: repeat(2, 340px);
  gap: 20px;
  align-items: center;
  justify-content: center;
  background: #0f2f43;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s ease;
  visibility: hidden;
}

.site-footer__contact-link {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer__contact-link span {
  display: inline;
}

.site-footer__contact-link--mail {
  background: #1f55c8;
}

.site-footer__contact-link--tel {
  background: var(--color-gold);
}

.site-footer__page-top {
  position: fixed;
  right: 24px;
  bottom: 30px;
  z-index: 51;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s ease;
  visibility: hidden;
}

body.is-fixed-contact-visible .site-footer__contact-bar,
body.is-fixed-contact-visible .site-footer__page-top {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-footer__page-top img {
  width: 100%;
  height: 100%;
}

.company-page .site-header,
.service-page .site-header,
.contact-page .site-header,
.member-single-page .site-header,
.news-single-page .site-header,
.news-page .site-header,
.privacy-policy-page .site-header {
  position: relative;
  color: var(--color-navy);
  background: var(--color-bg);
}

.company-page .site-header__menu-button,
.service-page .site-header__menu-button,
.contact-page .site-header__menu-button,
.member-single-page .site-header__menu-button,
.news-single-page .site-header__menu-button,
.news-page .site-header__menu-button,
.privacy-policy-page .site-header__menu-button {
  color: var(--color-navy);
}

.lower-hero {
  background: var(--color-bg);
}

.lower-hero__inner {
  position: relative;
  display: flex;
  min-height: clamp(260px, 21.875vw, 420px);
  align-items: center;
  width: min(calc(100% - clamp(40px, 5.2084vw, 100px)), 1820px);
  margin-inline: auto;
  padding-inline: clamp(40px, 4.9479vw, 95px);
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: clamp(6px, 0.625vw, 12px);
}

.lower-hero__inner::after {
  position: absolute;
  right: clamp(24px, 7.8125vw, 150px);
  bottom: clamp(-70px, -3.6458vw, -24px);
  width: clamp(240px, 29.1667vw, 560px);
  aspect-ratio: 424.87 / 373.76;
  background: url("../img/mark.svg") center / contain no-repeat;
  content: "";
  opacity: 0.2;
  pointer-events: none;
}

.lower-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.lower-hero__label {
  order: 2;
  margin: 10px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.44;
}

.lower-hero__title {
  order: 1;
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(48px, 4.6875vw, 90px);
  font-weight: 700;
  line-height: 1.1;
}

.contact-form-section {
  padding-block: var(--section-space-y) clamp(80px, 7.8125vw, 150px);
  background: var(--color-bg);
}

.contact-form-section__inner {
  width: var(--fluid-content-width);
  margin-inline: auto;
}

.contact-form-section__head {
  width: 100%;
  margin-inline: auto;
}

.contact-form-section__title {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(28px, 1.9792vw, 38px);
  font-weight: 700;
  line-height: 1.45;
}

.contact-form-section__lead {
  margin: clamp(24px, 1.875vw, 36px) 0 0;
  color: var(--color-navy);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.contact-form {
  margin-top: clamp(56px, 5.2084vw, 100px);
}

.contact-form__list {
  display: grid;
  width: 100%;
  gap: clamp(22px, 1.5625vw, 30px);
  margin-inline: auto;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(32px, 3.125vw, 60px);
  align-items: center;
}

.contact-form__row--textarea {
  align-items: start;
}

.contact-form__label {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-form__required {
  display: inline-flex;
  min-width: 46px;
  height: 24px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--color-white);
  background: var(--color-gold);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.contact-form__control {
  width: 100%;
  min-height: 70px;
  padding: 0 32px;
  border: 0;
  border-radius: 8px;
  color: var(--color-navy);
  background: var(--color-white);
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.contact-form__control::placeholder {
  color: #c9c9c9;
}

textarea.contact-form__control {
  min-height: clamp(260px, 15.625vw, 300px);
  padding-block: 24px;
  resize: vertical;
}

.contact-privacy {
  width: min(100%, 1000px);
  height: clamp(280px, 16.6667vw, 320px);
  margin: clamp(56px, 4.1667vw, 80px) auto 0;
  padding: clamp(36px, 3.3334vw, 64px);
  overflow-y: auto;
  border: 1px solid var(--color-border);
  color: var(--color-navy);
  background: var(--color-white);
}

.contact-privacy__title {
  margin: 0 0 clamp(28px, 2.1875vw, 42px);
  color: var(--color-navy);
  font-size: clamp(26px, 1.7709vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.contact-privacy p,
.contact-privacy li {
  margin: 0;
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.contact-privacy ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
}

.contact-privacy h3 {
  margin: 28px 0 12px;
  color: var(--color-navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-privacy__end {
  text-align: right;
}

.contact-form__agree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(34px, 2.5vw, 48px);
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.contact-form__agree input {
  width: 24px;
  height: 24px;
  margin: 0;
  border: 1px solid var(--color-border);
  accent-color: var(--color-navy);
}

.contact-form__submit {
  display: flex;
  width: min(100%, 420px);
  min-height: 80px;
  align-items: center;
  justify-content: center;
  margin: clamp(44px, 3.3334vw, 64px) auto 0;
  border: 0;
  color: var(--color-white);
  background: var(--color-navy);
  font-family: var(--font-ja);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

/* Contact Form 7 layout compatibility */
.contact-form--cf7 .wpcf7-form {
  margin: 0;
}

.contact-form--cf7 .wpcf7-form > p,
.contact-form--cf7 .contact-form__list > p,
.contact-form--cf7 .contact-form__agree > p {
  margin: 0;
}

.contact-form--cf7 .contact-form__row > p {
  display: contents;
}

.contact-form--cf7 .contact-form__row br {
  display: none;
}

.contact-form--cf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  min-width: 0;
}

.contact-form--cf7 .contact-form__row .contact-form__control {
  display: block;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

.contact-form--cf7 .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #b00020;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.contact-form--cf7 .wpcf7-response-output {
  width: min(100%, 1000px);
  margin: 32px auto 0;
  padding: 16px 20px;
  border-color: var(--color-gold);
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.contact-form__agree .wpcf7-form-control-wrap {
  width: auto;
}

.contact-form__agree .wpcf7-list-item {
  margin: 0;
}

.contact-form__agree label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.contact-form__submit.wpcf7-submit {
  appearance: none;
}

.contact-form--cf7 .wpcf7-spinner {
  display: block;
  margin: 16px auto 0;
}

.contact-form--notice {
  color: var(--color-navy);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.privacy-policy {
  padding-block: var(--section-space-y);
  background: var(--color-bg);
}

.privacy-policy__inner {
  width: min(calc(100% - 50px), 900px);
  margin-inline: auto;
}

.privacy-policy__section + .privacy-policy__section {
  margin-top: clamp(84px, 7.5vw, 144px);
}

.privacy-policy__section-head {
  margin-bottom: clamp(44px, 3.125vw, 60px);
  color: var(--color-navy);
  text-align: center;
}

.privacy-policy__section-title {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(28px, 1.6667vw, 32px);
  font-weight: 700;
  line-height: 1.1;
}

.privacy-policy__section-sub {
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.privacy-policy__body {
  color: #1d1d1d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
  overflow-wrap: anywhere;
}

.privacy-policy__body p {
  margin: 0;
}

.privacy-policy__body p + p,
.privacy-policy__body p + .privacy-policy__list,
.privacy-policy__body .privacy-policy__list + p,
.privacy-policy__body .privacy-policy__list + .privacy-policy__list {
  margin-top: 1em;
}

.privacy-policy__date {
  margin-bottom: clamp(34px, 3.125vw, 60px);
  text-align: right;
}

.privacy-policy__subsection {
  margin-top: clamp(48px, 3.75vw, 72px);
}

.privacy-policy__body > .privacy-policy__subsection:first-child {
  margin-top: 0;
}

.privacy-policy__subheading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 clamp(20px, 1.4584vw, 28px);
  color: var(--color-gold);
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1.5;
}

.privacy-policy__subheading::after {
  display: block;
  height: 1px;
  flex: 1 1 auto;
  background: rgba(170, 159, 100, 0.55);
  content: "";
}

.privacy-policy__list {
  display: grid;
  gap: 0.25em;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-policy__list li {
  padding-left: 1em;
  text-indent: -1em;
}

.privacy-policy__list li::before {
  content: "・";
}

.news-single {
  padding-block: clamp(0px, 2.2917vw, 44px) var(--section-space-y);
  background: var(--color-bg);
}

.news-single__inner {
  width: var(--fluid-content-width);
  margin-inline: auto;
}

.news-single__card {
  width: min(100%, 860px);
  margin-inline: auto;
  padding: 50px 50px 58px;
  border-radius: 20px;
  background: var(--color-white);
}

.news-single__title {
  margin: 0;
  color: #1d1d1d;
  font-size: clamp(28px, 1.6667vw, 32px);
  font-weight: 700;
  line-height: 1.45;
}

.news-single__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 18px;
}

.news-single__date {
  color: #1d1d1d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.news-single__category {
  display: inline-flex;
  min-width: 107px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: var(--color-white);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.news-single__image {
  margin: 0 0 40px;
}

.news-single__image img {
  display: block;
  width: 100%;
  aspect-ratio: 760 / 580;
  object-fit: cover;
}

.news-single__body {
  display: grid;
  gap: 28px;
  color: #1d1d1d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  text-align: justify;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.news-single__body p,
.news-single__body a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.news-single__body p {
  margin: 0;
}

.news-single__body strong {
  font-weight: 700;
}

.company-message {
  padding-block: var(--section-space-y);
  background: var(--color-bg);
}

.company-message__inner {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) clamp(360px, 37.5vw, 720px);
  gap: clamp(48px, 9.1146vw, 175px);
  align-items: start;
  margin-inline: 0;
  padding-left: clamp(48px, 9.1146vw, 175px);
}

.company-message__body {
  width: 100%;
}

.company-message__title {
  margin: 0 0 clamp(24px, 1.875vw, 36px);
  color: var(--color-navy);
  font-size: clamp(24px, 1.6667vw, 32px);
  font-weight: 700;
  line-height: 1.6;
}

.company-message__text {
  color: #1d1d1d;
  font-size: 16px;
  line-height: 1.8;
}

.company-message__text p {
  margin: 0;
}

.company-message__text p + p {
  margin-top: clamp(20px, 1.4584vw, 28px);
}

.company-message__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(6px, 0.5209vw, 10px) 0 0 clamp(6px, 0.5209vw, 10px);
}

.company-message__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-members,
.company-info {
  padding-block: var(--section-space-y);
  background: var(--color-bg);
}

.company-members__inner,
.company-info__inner {
  width: var(--fluid-content-width);
  margin-inline: auto;
}

.company-page-heading {
  margin: 0 0 72px;
  color: var(--color-navy);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
}

.company-members__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 120px 60px;
  justify-content: center;
}

.company-members .c-member-card {
  max-width: 360px;
}

.company-members__pagination {
  display: none;
}

.company-members__item.is-hidden {
  display: none;
}

.company-info .company-page-heading {
  margin-bottom: 64px;
}

.company-info__table-wrap {
  width: 100%;
}

.company-info .top-company__table th {
  width: 320px;
}

.service-detail {
  overflow: hidden;
  background: var(--color-bg);
  padding-block: var(--section-space-y);
}

.service-detail__list {
  display: grid;
  gap: clamp(70px, 5.2084vw, 100px);
}

.service-detail__block {
  --service-detail-text-width: clamp(400px, 30vw, 480px);
  --service-detail-image-width: clamp(600px, 50vw, 1000px);
  --service-detail-column-gap: clamp(54px, 11.4584vw, 220px);
  display: grid;
  min-height: clamp(420px, 31.25vw, 600px);
  align-items: start;
}

.service-detail__block--image-right {
  grid-template-columns:
    minmax(var(--content-gutter), 1fr)
    minmax(0, var(--service-detail-text-width))
    minmax(var(--content-gutter), 1fr)
    var(--service-detail-image-width);
}

.service-detail__block--image-left {
  grid-template-columns:
    var(--service-detail-image-width)
    minmax(var(--content-gutter), 1fr)
    minmax(0, var(--service-detail-text-width))
    minmax(var(--content-gutter), 1fr);
}

.service-detail__block--image-right .service-detail__body {
  grid-column: 2;
  width: 100%;
  min-width: 0;
}

.service-detail__block--image-right .service-detail__image {
  grid-column: 4;
  border-radius: clamp(6px, 0.5209vw, 10px) 0 0 clamp(6px, 0.5209vw, 10px);
}

.service-detail__block--image-left .service-detail__body {
  grid-column: 3;
  width: 100%;
  min-width: 0;
}

.service-detail__block--image-left .service-detail__image {
  grid-column: 1;
  border-radius: 0 clamp(6px, 0.5209vw, 10px) clamp(6px, 0.5209vw, 10px) 0;
}

.service-detail__title {
  margin: 0 0 clamp(24px, 2.0313vw, 39px);
  color: var(--color-navy);
  font-size: clamp(24px, 1.6667vw, 32px);
  font-weight: 700;
  line-height: 1.6;
}

.service-detail__text {
  margin: 0;
  color: #1d1d1d;
  font-size: 16px;
  line-height: 1.9;
  text-align: justify;
  text-justify: inter-ideograph;
}

.service-stats {
  display: grid;
  width: 100%;
  max-width: 100%;
  gap: clamp(16px, 1.0417vw, 20px);
  margin: clamp(38px, 3.125vw, 60px) 0 0;
}

.service-stats__row {
  display: grid;
  min-height: clamp(57px, 3.6459vw, 70px);
  grid-template-columns: clamp(105px, 6.7709vw, 130px) 1fr;
  margin: 0;
  border: 1px solid var(--color-navy);
}

.service-stats__label,
.service-stats__value {
  display: flex;
  align-items: center;
  margin: 0;
}

.service-stats__label {
  justify-content: center;
  color: var(--color-white);
  background: var(--color-navy);
  font-size: clamp(14px, 0.8334vw, 16px);
  font-weight: 400;
  line-height: 1.4;
}

.service-stats__value {
  padding-inline: clamp(12px, 1.0417vw, 20px);
  color: var(--color-navy);
  background: var(--color-white);
  font-size: clamp(20px, 1.3542vw, 26px);
  font-weight: 700;
  line-height: 1.35;
}

.service-detail__image {
  width: 100%;
  height: clamp(420px, 31.25vw, 600px);
  margin: 0;
  overflow: hidden;
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.member-single-hero {
  background: var(--color-bg);
}

.member-single-hero__inner {
  position: relative;
  width: min(calc(100% - clamp(40px, 5.2084vw, 100px)), 1820px);
  height: clamp(360px, 29.1667vw, 560px);
  margin-inline: auto;
  overflow: hidden;
  border-radius: clamp(10px, 0.8334vw, 16px);
}

.member-single-hero__image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 38%;
}

.member-single-hero__inner::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  border-radius: inherit;
  pointer-events: none;
}

.member-profile {
  position: relative;
  z-index: 1;
  margin-top: clamp(-190px, -9.375vw, -112px);
  background: transparent;
}

.member-profile__inner {
  display: grid;
  width: var(--fluid-content-width);
  max-width: var(--content-width);
  grid-template-areas: "photo body";
  grid-template-columns: clamp(340px, 23.9584vw, 460px) minmax(0, 1fr);
  gap: clamp(52px, 4.1667vw, 80px);
  align-items: start;
  margin-inline: auto;
  padding: clamp(44px, 3.125vw, 60px);
  background: var(--color-white);
  border-radius: clamp(10px, 0.8334vw, 16px);
}

.member-profile__image {
  grid-area: photo;
  aspect-ratio: 900 / 1518;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}

.member-profile__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.member-profile__body {
  grid-area: body;
}

.member-profile__labels {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.member-profile__label {
  display: inline-flex;
  min-width: 66px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding-inline: 10px;
  color: var(--color-white);
  background: var(--color-gold);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.member-profile__department {
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.member-profile__name-row {
  display: flex;
  min-height: clamp(62px, 3.6459vw, 70px);
  align-items: center;
  gap: clamp(18px, 1.6667vw, 32px);
  margin-bottom: clamp(32px, 2.5vw, 48px);
  padding: 10px clamp(20px, 1.6667vw, 32px);
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: 4px;
}

.member-profile__name {
  margin: 0;
  font-size: clamp(30px, 1.9792vw, 38px);
  font-weight: 700;
  line-height: 1.25;
}

.member-profile__en {
  margin: 0;
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: clamp(12px, 0.7292vw, 14px);
  font-weight: 700;
  line-height: 1.2;
}

.member-profile__text {
  display: grid;
  gap: 12px;
  color: #1d1d1d;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
}

.member-profile__text p {
  margin: 0;
}

.member-single-content {
  background: var(--color-bg);
  padding-block: clamp(80px, 7.2917vw, 140px) clamp(90px, 8.3334vw, 160px);
}

.member-single-content__inner {
  display: grid;
  width: var(--fluid-content-width);
  max-width: var(--content-width);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(72px, 5.2084vw, 100px);
  margin-inline: auto;
}

.member-single-column {
  display: flex;
  flex-direction: column;
  gap: clamp(74px, 5.2084vw, 100px);
}

.member-single-story__title {
  margin: 0 0 clamp(30px, 2.0834vw, 40px);
  color: var(--color-navy);
  font-size: clamp(24px, 1.4584vw, 28px);
  font-weight: 700;
  line-height: 1.65;
}

.member-single-story__text {
  display: grid;
  gap: 22px;
  color: #1d1d1d;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
}

.member-single-story__text p {
  margin: 0;
}

.member-single-photo {
  aspect-ratio: 1120 / 622;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}

.member-single-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.member-single-nav,
.c-page-nav {
  display: flex;
  grid-column: 1 / -1;
  gap: 24px;
  justify-content: center;
  margin-top: clamp(96px, 7.2917vw, 140px);
}

.member-single-nav__link,
.c-page-nav__link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.member-single-nav__link--primary,
.c-page-nav__link--primary {
  width: 72px;
  color: var(--color-white);
  background: var(--color-navy);
}

.member-single-nav__link--back,
.c-page-nav__link--back {
  width: 156px;
  color: var(--color-navy);
  background: var(--color-white);
}

.c-page-nav {
  margin-top: 100px;
}

.c-page-nav__link {
  min-height: 50px;
  font-size: 16px;
}

.c-page-nav__link--primary {
  width: 100px;
}

.c-page-nav__link--back {
  width: 160px;
}

.c-member-card__link {
  display: block;
  color: inherit;
}

@media (max-width: 1440px) {
  .site-header__inner {
    padding-inline: 32px;
  }

  .site-header__nav,
  .site-header__buttons {
    display: none;
  }

  .site-header__menu-button {
    display: block;
  }
}

@media (max-width: 1024px) {
  .site-footer__inner {
    width: min(calc(100% - 96px), var(--content-width));
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 44px;
    padding-block: 72px 64px;
  }

  .site-footer__aside {
    width: 100%;
    min-height: 0;
    align-items: flex-start;
  }

  .site-footer__nav-list {
    justify-content: flex-start;
  }

  .site-footer__privacy-area {
    margin-top: 42px;
  }

  .site-footer__contact-bar {
    min-height: 96px;
    grid-template-columns: repeat(2, minmax(0, 320px));
    gap: 20px;
    padding-inline: 48px;
  }

  .site-footer__contact-link {
    min-height: 70px;
    font-size: 18px;
  }
}

@media (max-width: 1599px) {
  .top-members__slider {
    --member-visible-cards: 3;
  }
}

@media (max-width: 1500px) {
  .top-news {
    --news-object-shift: clamp(0px, calc(450px - 30vw), 220px);
  }

  .top-members {
    --members-object-shift: clamp(0px, calc(1500px - 100vw), 220px);
  }

  .top-news::before {
    left: calc(var(--news-object-shift) * -1);
  }

  .top-news::after {
    right: calc(var(--news-object-shift) * -1);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .company-message__inner {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) clamp(280px, 37.5vw, 420px);
    gap: clamp(40px, 7.5vw, 72px);
    margin-inline: 0;
    padding-left: clamp(48px, 9.1146vw, 110px);
  }

  .company-message__body,
  .company-message__image {
    width: 100%;
  }

  .company-message__title {
    font-size: clamp(24px, 2.3353vw, 28px);
  }

  .company-members__grid {
    grid-template-columns: repeat(2, minmax(0, 360px));
    gap: 88px 48px;
    justify-content: center;
  }

  .member-profile__inner {
    grid-template-columns: clamp(280px, 33.3334vw, 360px) minmax(0, 1fr);
    gap: clamp(36px, 4.5vw, 54px);
    padding: clamp(34px, 4vw, 48px);
  }

  .member-profile__name-row {
    flex-wrap: wrap;
  }

  .member-single-content__inner {
    gap: clamp(58px, 6.5vw, 78px) clamp(46px, 5.5vw, 66px);
  }

  .service-detail__block {
    --service-detail-text-width: clamp(340px, calc(13.8889vw + 233.33px), 400px);
    --service-detail-image-width: clamp(330px, calc(62.5vw - 150px), 600px);
    --service-detail-side-space: clamp(24px, 4vw, 50px);
    width: 100%;
    margin-inline: 0;
  }

  .service-detail__block--image-right {
    grid-template-columns:
      minmax(var(--service-detail-side-space), 1fr)
      minmax(0, var(--service-detail-text-width))
      minmax(var(--service-detail-side-space), 1fr)
      var(--service-detail-image-width);
  }

  .service-detail__block--image-left {
    grid-template-columns:
      var(--service-detail-image-width)
      minmax(var(--service-detail-side-space), 1fr)
      minmax(0, var(--service-detail-text-width))
      minmax(var(--service-detail-side-space), 1fr);
  }

  .service-detail__block--image-right .service-detail__body {
    grid-column: 2;
  }

  .service-detail__block--image-right .service-detail__image {
    grid-column: 4;
    border-radius: 8px 0 0 8px;
  }

  .service-detail__block--image-left .service-detail__image {
    grid-column: 1;
    border-radius: 0 8px 8px 0;
  }

  .service-detail__block--image-left .service-detail__body {
    grid-column: 3;
  }

  .service-detail__title {
    font-size: clamp(24px, 2.3353vw, 28px);
  }

  .service-detail__image {
    height: clamp(300px, calc(25vw + 100px), 400px);
  }

  .top-service {
    overflow: hidden;
    --service-tablet-image-width: clamp(282px, 36.533vw, 420px);
    --service-tablet-gap: clamp(32px, 4vw, 48px);
    --service-tablet-head-left: clamp(48px, 7.5vw, 96px);
  }

  .top-service__head {
    width: auto;
    padding-right: 0;
    padding-left: 0;
    margin-right: calc(var(--service-tablet-image-width) + var(--service-tablet-gap));
    margin-bottom: 48px;
    margin-left: var(--service-tablet-head-left);
  }

  .top-service__lead {
    width: auto;
    max-width: 100%;
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.9;
  }

  .top-service__layout {
    position: static;
    display: grid;
    width: calc(100% - var(--service-tablet-image-width) - var(--service-tablet-gap));
    grid-template-columns: 1fr;
  }

  .top-service__side,
  .top-service__list {
    display: contents;
  }

  .top-service__side-item {
    min-height: 100px;
    padding-inline: 32px;
    background: var(--color-gold);
    border-bottom: 0;
    font-size: max(18px, min(2.9269vw, 24px));
  }

  .top-service__side-item:nth-child(1) {
    order: 1;
  }

  .top-service__side-item:nth-child(2) {
    order: 3;
  }

  .top-service__side-item:nth-child(3) {
    order: 5;
  }

  .top-service__item:nth-child(1) {
    order: 2;
  }

  .top-service__item:nth-child(2) {
    order: 4;
  }

  .top-service__item:nth-child(3) {
    order: 6;
  }

  .top-service__item {
    gap: 28px;
    min-height: 195px;
    padding: 40px clamp(44px, 5.3659vw, 64px);
    background: var(--color-white);
    border-bottom: 0;
  }

  .top-service__item-text {
    font-size: 16px;
    line-height: 1.9;
  }

  .top-service .c-button--outline {
    width: min(100%, 320px);
    height: 60px;
    min-height: 60px;
    font-size: 16px;
    font-weight: 500;
  }

  .top-service__image {
    position: absolute;
    top: var(--section-space-y);
    right: 0;
    bottom: var(--section-space-y);
    z-index: 0;
    width: var(--service-tablet-image-width);
    overflow: hidden;
    border-radius: 8px 0 0 8px;
  }

  .top-service__image img {
    height: 100%;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .service-detail__block {
    --service-detail-text-width: clamp(400px, 31vw, 480px);
    --service-detail-image-width: clamp(600px, 50vw, 800px);
    --service-detail-column-gap: clamp(56px, 4.5vw, 72px);
    width: 100%;
    margin-inline: 0;
  }

  .service-detail__block--image-right {
    grid-template-columns:
      minmax(var(--content-gutter), 1fr)
      minmax(0, var(--service-detail-text-width))
      minmax(var(--content-gutter), 1fr)
      var(--service-detail-image-width);
  }

  .service-detail__block--image-left {
    grid-template-columns:
      var(--service-detail-image-width)
      minmax(var(--content-gutter), 1fr)
      minmax(0, var(--service-detail-text-width))
      minmax(var(--content-gutter), 1fr);
  }

  .service-detail__block--image-right .service-detail__body {
    grid-column: 2;
  }

  .service-detail__block--image-right .service-detail__image {
    grid-column: 4;
    border-radius: 8px 0 0 8px;
  }

  .service-detail__block--image-left .service-detail__image {
    grid-column: 1;
    border-radius: 0 8px 8px 0;
  }

  .service-detail__block--image-left .service-detail__body {
    grid-column: 3;
  }

  .service-detail__image {
    height: clamp(380px, 28vw, 448px);
  }
}

@media (min-width: 901px) and (max-width: 1199px) {
  .news-archive__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .news-archive__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 60px;
  }

  .site-header__inner,
  .top-hero__inner,
  .top-intro__inner,
  .top-news__inner,
  .top-service__inner,
  .top-members__inner,
  .top-company__inner,
  .top-contact__inner,
  .site-footer__inner {
    width: var(--fluid-content-width);
  }

  .site-header__inner {
    width: 100%;
    max-width: none;
    min-height: 60px;
    align-items: flex-start;
    padding: 0 20px 0 11px;
  }

  .site-header__nav-list,
  .site-header__buttons,
  .top-contact__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-hero__inner,
  .top-intro__inner,
  .top-news,
  .top-service,
  .top-members,
  .top-company {
    padding-block: var(--section-space-y);
  }

  .site-header__logo img {
    width: min(73.6vw, 276px);
  }

  .site-header__logo {
    display: inline-flex;
    margin-top: 11px;
  }

  .site-header__menu-button {
    --hamburger-line-width: 26px;
    --hamburger-line-offset: 8px;
    width: 28px;
    height: 28px;
    margin-top: 21px;
  }

  .site-header__buttons .c-button {
    width: 200px;
  }

  .site-header__drawer {
    left: 0;
    width: 100%;
  }

  .site-header__drawer-inner {
    padding: 11px 20px 64px;
  }

  .site-header__drawer-close {
    --hamburger-line-width: 26px;
    --hamburger-line-offset: 8px;
    width: 28px;
    height: 28px;
    margin-top: 10px;
  }

  .site-header__drawer-nav {
    margin-top: 38px;
  }

  .site-header__drawer-list {
    gap: 26px;
  }

  .site-header__drawer-buttons {
    gap: 16px;
    margin-top: 38px;
  }

  .top-hero__inner {
    width: 100%;
    max-width: none;
    min-height: 100svh;
    padding: 128px 24px 56px;
  }

  .top-hero__copy {
    font-size: 22px;
    letter-spacing: 0.08em;
  }

  .top-hero__en {
    font-size: 42px;
    letter-spacing: 0.12em;
  }

  .top-intro__inner,
  .top-news__list {
    grid-template-columns: 1fr;
  }

  .top-intro__inner {
    width: 100%;
    max-width: none;
    gap: 40px;
    padding-block: var(--section-space-y);
  }

  .top-intro__image {
    width: calc(100% - 23px);
  }

  .top-intro__image img {
    border-radius: 0 6px 6px 0;
  }

  .top-intro__body {
    width: min(calc(100% - 48px), 327px);
    max-width: none;
    margin-inline: auto;
  }

  .top-intro__text {
    font-size: 14px;
    line-height: 1.6;
  }

  .c-section-heading__title {
    font-size: max(36px, min(13.3334vw, 50px));
  }

  .lower-hero {
    padding-top: 0;
  }

  .lower-hero__inner {
    width: calc(100% - 30px);
    height: 280px;
    align-items: center;
    margin-inline: auto;
    padding: 20px;
    border-radius: 8px;
  }

  .lower-hero__inner::after {
    right: -72px;
    bottom: -42px;
    width: min(66.6667vw, 250px);
  }

  .lower-hero__title {
    max-width: min(260px, 100%);
    font-size: 44px;
    line-height: 1.05;
  }

  .lower-hero__label {
    margin-top: 7px;
    font-size: clamp(11px, 3.2vw, 12px);
    font-weight: 500;
  }

  .member-single-hero__inner {
    position: relative;
    width: calc(100% - 30px);
    height: 150px;
    border-radius: 8px;
  }

  .member-single-hero__image {
    position: absolute;
    top: -56%;
    left: -32.86%;
    width: 161.31%;
    height: auto;
    transform: none;
    object-fit: unset;
    object-position: initial;
  }

  .member-profile {
    margin-top: -30px;
  }

  .member-profile__inner {
    display: flex;
    flex-direction: column;
    width: calc(100% - 50px);
    gap: 18px;
    padding: 30px 20px 20px;
    border-radius: 10px;
  }

  .member-profile__body {
    order: 1;
  }

  .member-profile__image {
    order: 2;
    margin-top: 0;
    border-radius: 6px;
  }

  .member-profile__labels {
    gap: 14px;
    margin-top: 0;
    margin-bottom: 14px;
  }

  .member-profile__label {
    min-width: 54px;
    min-height: 24px;
    font-size: 11px;
  }

  .member-profile__department {
    font-size: 11px;
  }

  .member-profile__name-row {
    display: block;
    min-height: 60px;
    margin-bottom: 20px;
    padding: 10px 14px;
    border-radius: 6px;
  }

  .member-profile__name {
    font-size: 24px;
    line-height: 1.35;
  }

  .member-profile__en {
    margin-top: 4px;
    font-size: 10px;
  }

  .member-profile__text {
    gap: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
  }

  .member-single-content {
    padding-block: 58px 70px;
  }

  .member-single-content__inner {
    display: block;
    width: calc(100% - 50px);
  }

  .member-single-column {
    gap: 34px;
  }

  .member-single-column--right {
    margin-top: 44px;
  }

  .member-single-story--second {
    order: 1;
  }

  .member-single-photo--second {
    order: 2;
  }

  .member-single-story__title {
    margin-bottom: 22px;
    font-size: 20px;
    line-height: 1.55;
  }

  .member-single-story__text {
    gap: 18px;
    font-size: 14px;
    line-height: 1.85;
  }

  .member-single-photo {
    margin-top: 0;
    border-radius: 5px;
  }

  .member-single-story--second {
    margin-top: 0;
  }

  .member-single-photo--second {
    margin-top: 0;
  }

  .member-single-nav,
  .c-page-nav {
    gap: 10px;
    margin-top: 44px;
  }

  .member-single-nav__link,
  .c-page-nav__link {
    min-height: 44px;
    font-size: 13px;
  }

  .member-single-nav__link--primary,
  .c-page-nav__link--primary {
    width: 58px;
  }

  .member-single-nav__link--back,
  .c-page-nav__link--back {
    width: 116px;
  }

  .news-single {
    padding-block: 2px 60px;
  }

  .news-single__inner {
    width: 100%;
  }

  .news-single__card {
    width: calc(100% - 30px);
    padding: 30px clamp(18px, 5.3334vw, 20px) 32px;
    border-radius: 10px;
  }

  .news-single__title {
    font-size: 20px;
    line-height: 1.45;
  }

  .news-single__meta {
    gap: 24px;
    margin-top: 8px;
    margin-bottom: 16px;
  }

  .news-single__date {
    font-size: 14px;
  }

  .news-single__category {
    min-width: 95px;
    min-height: 24px;
    font-size: 12px;
  }

  .news-single__image {
    margin: 0 0 20px;
  }

  .news-single__body {
    gap: 22px;
    font-size: 14px;
    line-height: 1.75;
  }

  .news-single .c-page-nav {
    margin-top: 40px;
  }

  .news-single .c-page-nav__link {
    min-height: 37px;
    font-size: 14px;
  }

  .news-single .c-page-nav__link--primary {
    width: 75px;
  }

  .news-single .c-page-nav__link--back {
    width: 120px;
  }

  .contact-form-section {
    padding-block: 60px 72px;
  }

  .contact-form-section__inner {
    width: calc(100% - 50px);
  }

  .contact-form-section__head,
  .contact-form__list {
    width: 100%;
  }

  .contact-form-section__title {
    font-size: 22px;
    line-height: 1.45;
  }

  .contact-form-section__lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
  }

  .contact-form {
    margin-top: 44px;
  }

  .contact-form__list {
    gap: 26px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-form__label {
    gap: 10px;
    font-size: 13px;
  }

  .contact-form__required {
    min-width: 42px;
    height: 22px;
    font-size: 12px;
  }

  .contact-form__control {
    min-height: 52px;
    padding-inline: 16px;
    border-radius: 4px;
    font-size: 14px;
  }

  textarea.contact-form__control {
    min-height: 180px;
    padding-block: 14px;
  }

  .contact-privacy {
    height: 300px;
    margin-top: 36px;
    padding: 24px 20px;
  }

  .contact-privacy__title {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.35;
    text-align: left;
  }

  .contact-privacy h3 {
    margin-top: 24px;
    font-size: 16px;
  }

  .contact-privacy p,
  .contact-privacy li {
    font-size: 13px;
    line-height: 1.8;
  }

  .contact-form__agree {
    justify-content: flex-start;
    margin-top: 28px;
    font-size: 13px;
  }

  .contact-form__agree input {
    width: 22px;
    height: 22px;
  }

  .contact-form__submit {
    width: 100%;
    min-height: 64px;
    margin-top: 34px;
    font-size: 16px;
  }

  .contact-form--cf7 .wpcf7-response-output {
    margin-top: 24px;
    font-size: 13px;
  }

  .privacy-policy {
    padding-block: 60px;
  }

  .privacy-policy__inner {
    width: calc(100% - 50px);
  }

  .privacy-policy__section + .privacy-policy__section {
    margin-top: 60px;
  }

  .privacy-policy__section-head {
    margin-bottom: 28px;
  }

  .privacy-policy__section-title {
    font-size: clamp(24px, 7.4667vw, 32px);
  }

  .privacy-policy__section-sub {
    margin-top: 4px;
    font-size: 13px;
  }

  .privacy-policy__body {
    font-size: 14px;
    line-height: 1.8;
  }

  .privacy-policy__date {
    margin-bottom: 28px;
    text-align: left;
  }

  .privacy-policy__subsection {
    margin-top: 40px;
  }

  .privacy-policy__subheading {
    gap: 12px;
    margin-bottom: 18px;
    font-size: clamp(18px, 5.3334vw, 24px);
    line-height: 1.45;
  }

  .company-message,
  .company-members,
  .company-info {
    padding-block: var(--section-space-y);
  }

  .company-message__inner {
    display: block;
    width: 100%;
    margin-inline: 0;
    padding-left: 0;
  }

  .company-members__inner {
    display: block;
    width: min(calc(100vw - 50px), 672px);
    margin-inline: auto;
  }

  .company-info__inner {
    display: block;
    width: calc(100% - 50px);
  }

  .company-message__body {
    width: auto;
    margin-inline: var(--content-gutter);
  }

  .company-message__title {
    margin-bottom: 24px;
    font-size: clamp(20px, 5.8667vw, 22px);
    line-height: 1.4;
  }

  .company-message__text {
    font-size: 14px;
    line-height: 1.6;
  }

  .company-message__text p + p {
    margin-top: 22px;
  }

  .company-message__image {
    width: calc(100% - var(--content-gutter));
    margin-right: 0;
    margin-left: var(--content-gutter);
    margin-top: 38px;
    border-radius: 6px 0 0 6px;
  }

  .company-page-heading {
    margin-bottom: 40px;
    font-size: clamp(20px, 5.3334vw, 28px);
    line-height: 1.5;
  }

  .company-members__grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(25px, calc(18.3036px + 1.7857vw), 32px);
    row-gap: clamp(36px, calc(24.521px + 3.061vw), 48px);
    margin-inline: auto;
  }

  .company-members__item:nth-child(n+11) {
    display: none;
  }

  .company-members .c-member-card,
  .company-members .c-member-card__link,
  .company-members .c-member-card__image {
    width: 100%;
    max-width: 100%;
  }

  .company-members .c-member-card__link {
    padding-inline: 0;
  }

  .company-members .c-member-card__image {
    margin-bottom: clamp(10px, calc(4.2602px + 1.5306vw), 16px);
    aspect-ratio: 150 / 204;
    border-radius: clamp(4px, calc(0.1735px + 1.0204vw), 8px);
  }

  .company-members .c-member-card__label {
    margin-bottom: clamp(5px, calc(1.1735px + 1.0204vw), 9px);
    padding: clamp(3px, calc(2.0434px + 0.2551vw), 4px) clamp(9px, calc(5.1735px + 1.0204vw), 13px);
    font-size: clamp(10px, calc(8.0867px + 0.5102vw), 12px);
  }

  .company-members .c-member-card__name {
    font-size: clamp(18px, calc(14.1735px + 1.0204vw), 22px);
    line-height: 1.25;
  }

  .company-members .c-member-card__role,
  .company-members .c-member-card__en {
    font-size: clamp(11px, calc(9.0867px + 0.5102vw), 13px);
  }

  .company-members .c-member-card__text {
    margin-top: clamp(8px, calc(2.2602px + 1.5306vw), 14px);
    font-size: clamp(14px, calc(12.0867px + 0.5102vw), 16px);
    line-height: 1.45;
  }

  .company-members.is-company-members-paginated .company-members__item {
    display: block;
  }

  .company-members.is-company-members-paginated .company-members__item.is-hidden {
    display: none;
  }

  .company-members__pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
  }

  .company-members__pagination button,
  .company-members__pagination span {
    display: inline-flex;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    font: inherit;
    background: var(--color-white);
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
  }

  .company-members__pagination .is-current {
    color: var(--color-white);
    background: var(--color-navy);
  }

  .company-info .company-page-heading {
    margin-bottom: 20px;
  }

  .company-info .top-company__table {
    font-size: 15px;
  }

  .company-info .top-company__table th {
    padding: 12px 20px;
    font-size: 15px;
    line-height: 1.6;
  }

  .company-info .top-company__table td {
    min-height: 60px;
    padding: 18px 30px;
    font-size: 15px;
    line-height: 1.7;
  }

  .service-detail__list {
    gap: 64px;
  }

  .service-detail__block {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .service-detail__block--image-right .service-detail__body,
  .service-detail__block--image-left .service-detail__body {
    width: calc(100% - 50px);
    margin-inline: auto;
    padding-top: 0;
  }

  .service-detail__title {
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 1.55;
  }

  .service-detail__text {
    font-size: 14px;
    line-height: 1.72;
  }

  .service-stats {
    width: 100%;
    gap: 16px;
    margin-top: 24px;
  }

  .service-stats__row {
    min-height: 57px;
    grid-template-columns: 105px 1fr;
  }

  .service-stats__label {
    font-size: 14px;
  }

  .service-stats__value {
    padding-inline: 12px;
    font-size: 20px;
  }

  .service-detail__image {
    height: auto;
    aspect-ratio: 2000 / 1200;
    margin-top: 30px;
  }

.service-detail__block--image-right .service-detail__image {
    width: calc(100% - 25px);
    margin-right: 0;
    margin-left: 25px;
    border-radius: 10px 0 0 10px;
  }

  .service-detail__block--image-left {
    flex-direction: column-reverse;
  }

  .service-detail__block--image-left .service-detail__image {
    width: calc(100% - 25px);
    margin-right: 25px;
    margin-left: 0;
    border-radius: 0 10px 10px 0;
  }

  .service-detail__block--image-right .service-detail__body,
  .service-detail__block--image-left .service-detail__body,
  .service-detail__block--image-right .service-detail__image,
  .service-detail__block--image-left .service-detail__image {
    grid-column: auto;
  }

  .top-news {
    padding-block: var(--section-space-y);
  }

  .top-news::before,
  .top-news::after {
    display: none;
  }

  .top-news__list {
    --top-news-sp-column-gap: clamp(25px, calc(18.3036px + 1.7857vw), 32px);
    --top-news-sp-row-gap: clamp(34px, calc(28.2602px + 1.5306vw), 40px);
    width: min(calc(100vw - 50px), clamp(325px, calc(146.1097px + 47.7041vw), 512px));
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--top-news-sp-column-gap);
    row-gap: var(--top-news-sp-row-gap);
    justify-content: stretch;
  }

  .top-news .c-news-card__image {
    margin-bottom: clamp(10px, calc(4.2602px + 1.5306vw), 16px);
  }

  .top-news .c-news-card__image img {
    aspect-ratio: 150 / 115;
  }

  .top-news .c-news-card__meta {
    gap: clamp(10px, calc(6.1735px + 1.0204vw), 14px);
    margin-bottom: clamp(4px, calc(2.0867px + 0.5102vw), 6px);
  }

  .top-news .c-news-card__date {
    font-size: clamp(13px, calc(12.0434px + 0.2551vw), 14px);
  }

  .top-news .c-news-card__category {
    width: clamp(75px, calc(60.6429px + 3.8265vw), 90px);
    height: clamp(20px, calc(18.0867px + 0.5102vw), 22px);
    font-size: clamp(11px, calc(9.0867px + 0.5102vw), 13px);
  }

  .top-news .c-news-card__title {
    font-size: clamp(15px, calc(14.0434px + 0.2551vw), 16px);
    line-height: 1.45;
  }

  .top-news__button {
    display: block;
  }

  .top-map__embed {
    height: 500px;
  }

  .top-map__note {
    bottom: 64px;
    width: min(calc(100% - 32px), 340px);
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.65;
  }

  .top-service {
    overflow: hidden;
    --service-sp-image-width: min(36.533vw, 137px);
    --service-sp-image-gap: 18px;
    --service-sp-copy-width: calc(100vw - 25px - var(--service-sp-image-width) - var(--service-sp-image-gap));
  }

  .top-service__head {
    width: var(--fluid-content-width);
    position: relative;
    z-index: 1;
    min-height: min(136.267vw, 511px);
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }

  .top-service .c-section-heading__title {
    max-width: var(--service-sp-copy-width);
  }

  .top-service .c-section-heading__sub {
    width: var(--service-sp-copy-width);
  }

  .top-service__lead {
    width: var(--service-sp-copy-width);
    max-width: none;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.6;
    overflow-wrap: break-word;
  }

  .top-service__inner {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .top-service__layout {
    position: static;
    z-index: 1;
    width: var(--fluid-content-width);
    margin-inline: auto;
    grid-template-columns: 1fr;
  }

  .top-service__side,
  .top-service__list {
    display: contents;
  }

  .top-service__side-item {
    min-height: 100px;
    padding-inline: 24px;
    background: var(--color-gold);
    border-bottom: 0;
    font-size: 14px;
  }

  .top-service__side-item:nth-child(1) {
    order: 1;
  }

  .top-service__side-item:nth-child(2) {
    order: 3;
  }

  .top-service__side-item:nth-child(3) {
    order: 5;
  }

  .top-service__item:nth-child(1) {
    order: 2;
  }

  .top-service__item:nth-child(2) {
    order: 4;
  }

  .top-service__item:nth-child(3) {
    order: 6;
  }

  .top-service__image {
    position: absolute;
    top: var(--section-space-y);
    right: 0;
    bottom: auto;
    z-index: 0;
    width: var(--service-sp-image-width);
    height: min(128vw, 480px);
    min-height: 0;
    border-radius: 6px 0 0 6px;
  }

  .top-service__item {
    align-items: flex-start;
    gap: 20px;
    min-height: 195px;
    padding: 30px;
    background: var(--color-white);
    border-bottom: 0;
  }

  .top-service__item-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .top-service__image img {
    height: 100%;
  }

  .top-members__inner {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .top-members {
    background: var(--color-white);
  }

  .top-members::before,
  .top-members::after {
    display: none;
  }

  .top-members__head {
    width: var(--fluid-content-width);
    margin-bottom: 36px;
  }

  .top-members__slider {
    --member-slider-width: min(calc(100vw - 50px), 672px);
    --member-card-gap: clamp(25px, calc(18.3036px + 1.7857vw), 32px);
    --member-card-width: calc((var(--member-slider-width) - var(--member-card-gap)) / 2);
    --member-visible-cards: 2;
    --member-side-peek-ratio: 0;
    --member-arrow-half: clamp(17px, calc(14.1301px + 0.7653vw), 20px);
    width: var(--member-slider-width);
    margin-inline: auto;
    overflow: visible;
  }

  .top-members__item,
  .top-members .c-member-card,
  .top-members .c-member-card__link,
  .top-members .c-member-card__image {
    width: var(--member-card-width);
    max-width: var(--member-card-width);
  }

  .top-members .c-member-card__link {
    padding-inline: 0;
  }

  .top-members__prev,
  .top-members__next {
    top: calc(var(--member-card-width) * 2 / 3);
    width: clamp(34px, calc(28.2602px + 1.5306vw), 40px);
    height: clamp(34px, calc(28.2602px + 1.5306vw), 40px);
    font-size: 24px;
  }

  .top-members__prev img,
  .top-members__next img {
    width: clamp(34px, calc(28.2602px + 1.5306vw), 40px);
    height: clamp(34px, calc(28.2602px + 1.5306vw), 40px);
  }

  .top-members__prev {
    left: calc(var(--member-arrow-half) * -1);
  }

  .top-members__next {
    right: calc(var(--member-arrow-half) * -1);
  }

  .c-member-card__name {
    font-size: 24px;
  }

  .c-member-card__role {
    display: block;
    margin: 2px 0 0;
    font-size: 13px;
  }

  .c-member-card__text {
    font-size: 15px;
  }

  .top-members .c-member-card__image {
    margin-bottom: clamp(10px, calc(4.2602px + 1.5306vw), 16px);
    aspect-ratio: 150 / 204;
    border-radius: clamp(4px, calc(0.1735px + 1.0204vw), 8px);
  }

  .top-members .c-member-card__label {
    margin-bottom: clamp(5px, calc(1.1735px + 1.0204vw), 9px);
    padding: clamp(3px, calc(2.0434px + 0.2551vw), 4px) clamp(9px, calc(5.1735px + 1.0204vw), 13px);
    font-size: clamp(10px, calc(8.0867px + 0.5102vw), 12px);
  }

  .top-members .c-member-card__name {
    font-size: clamp(18px, calc(14.1735px + 1.0204vw), 22px);
    line-height: 1.25;
  }

  .top-members .c-member-card__role,
  .top-members .c-member-card__en {
    font-size: clamp(11px, calc(9.0867px + 0.5102vw), 13px);
  }

  .top-members .c-member-card__text {
    margin-top: clamp(8px, calc(2.2602px + 1.5306vw), 14px);
    font-size: clamp(14px, calc(12.0867px + 0.5102vw), 16px);
    line-height: 1.45;
  }

  .top-members__button {
    margin-top: 40px;
  }

  .c-button--outline {
    width: min(calc(100vw - 40px), 270px);
    height: 50px;
    min-height: 50px;
    font-size: 14px;
    font-weight: 500;
  }

  .news-archive {
    padding-block: 60px 72px;
  }

  .news-archive__inner {
    width: calc(100% - 50px);
  }

  .news-archive__list {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .news-archive__pagination {
    margin-top: 34px;
  }

  .c-pagination {
    gap: 6px;
  }

  .c-pagination__link,
  .c-pagination__current,
  .c-pagination__arrow,
  .c-pagination__ellipsis {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .top-contact::before {
    right: -92px;
    bottom: 76px;
    width: min(120vw, 425px);
  }

  .top-contact__inner {
    padding-block: var(--section-space-y);
  }

  .top-contact__body {
    max-width: none;
  }

  .top-contact__text {
    margin-top: 36px;
    font-size: 16px;
    line-height: 1.7;
    white-space: normal;
  }

  .top-contact__buttons {
    gap: 20px;
    width: 100%;
    margin-top: 40px;
  }

  .top-contact__buttons .c-button {
    width: 100%;
    min-height: 64px;
    font-size: 18px;
  }

  .site-footer__inner {
    gap: 36px;
    padding-block: 48px 34px;
  }

  .site-footer__logo img {
    width: min(calc(100vw - 60px), 328px);
  }

  .site-footer__address {
    margin-top: 30px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
  }

  .site-footer__text {
    max-width: none;
    margin-top: 34px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
  }

  .site-footer__nav {
    display: none;
  }

  .site-footer__privacy-area {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 0;
  }

  .site-footer__privacy {
    font-size: 16px;
    font-weight: 400;
  }

  .site-footer__privacy-mark {
    width: 82px;
    height: 82px;
  }

  .site-footer__copyright {
    margin-top: 18px;
    font-size: 12px;
    font-weight: 400;
  }

  .site-footer__contact-bar {
    min-height: 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding-inline: 0;
  }

  .site-footer__contact-link {
    min-height: 60px;
    flex-direction: column;
    font-size: 16px;
    line-height: 1.4;
  }

  .site-footer__page-top {
    right: 8px;
    bottom: 70px;
    width: 40px;
    height: 40px;
  }

  .top-company__table th,
  .top-company__table td {
    display: block;
    width: 100%;
  }

  .company-info .top-company__table th,
  .company-info .top-company__table td {
    width: 100%;
  }

  .top-company__table {
    font-size: 16px;
    line-height: 1.7;
  }

  .top-company__table th {
    padding: 16px 20px;
    font-size: 18px;
  }

  .top-company__table td {
    padding: 28px 36px;
  }

  .top-company__table tr {
    display: block;
  }
}

/* ==========================================================================
   Complete page
   ========================================================================== */
.complete-message {
  background: var(--color-bg);
  padding-block: var(--section-space-y);
}

.complete-message__inner {
  width: min(calc(100% - 48px), 860px);
  margin-inline: auto;
}

.complete-message__box {
  padding: min(4.1667vw, 80px) min(5vw, 96px);
  text-align: center;
  background: var(--color-white);
  border-radius: min(1.0417vw, 20px);
}

.complete-message__label {
  margin: 0;
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: clamp(13px, calc(11.7px + 0.347vw), 16px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.complete-message__title {
  margin: 14px 0 0;
  color: var(--color-navy);
  font-size: clamp(26px, calc(18.48px + 2.005vw), 48px);
  font-weight: 700;
  line-height: 1.35;
}

.complete-message__text {
  margin: min(1.6667vw, 32px) 0 0;
  color: var(--color-navy);
  font-size: clamp(14px, calc(12px + 0.3333vw), 16px);
  font-weight: 500;
  line-height: 2;
}

.complete-message__actions {
  display: flex;
  justify-content: center;
  margin-top: min(2.5vw, 48px);
}

.complete-message__actions .c-button {
  width: min(100%, 320px);
  min-height: 60px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .complete-message__inner {
    width: calc(100% - 32px);
  }

  .complete-message__box {
    padding: 42px 24px;
    text-align: left;
    border-radius: 10px;
  }

  .complete-message__title {
    margin-top: 10px;
    font-size: 24px;
    line-height: 1.45;
  }

  .complete-message__text {
    margin-top: 22px;
    line-height: 1.8;
  }

  .complete-message__actions {
    margin-top: 32px;
  }

  .complete-message__actions .c-button {
    width: 100%;
    min-height: 56px;
    font-size: 14px;
  }
}

/* Top members swipe support */
@media (max-width: 767px) {
  .top-members__viewport {
    touch-action: pan-y;
  }

  .top-members__track {
    user-select: none;
  }

  .top-members__track img {
    -webkit-user-drag: none;
  }
}
