/* ゾクジーン LP — Vanilla CSS（Flex 主軸・gap は @supports で補助） */

:root {
  --color-bg: #0d0b08;
  --color-accent: #8e1728;
  --color-gold: #b8965a;
  --color-gold-light: #d4b07a;
  --color-logo: #f5f0e8;
  --color-cta-text: #fff;
  --color-nav-bg: rgba(13, 11, 8, 0.8);
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --cream-bg: #ededed;
  --stone: #6b5c4a;
  --text-dark: #0d0b08;
  --header-h: 72px;
  --header-pad-x: 48px;
  --hero-content-top: 102px;
  --page-max: 1440px;
  --content-pad-x: 80px;
  --content-pad-inner: 32px;
}

.text-sans {
  font-family: var(--font-sans);
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-serif);
  color: #fff;
  background-color: var(--color-bg);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

html,
body {
  overflow-x: clip;
  max-width: 100%;
}

.br-sm {
  display: none;
}

@media screen and (max-width: 640px) {
  .br-sm {
    display: inline;
  }
}

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

/* ----- Skip link ----- */

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  background-color: var(--color-accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  -webkit-transform: translateY(-200%);
  transform: translateY(-200%);
  -webkit-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  outline: 2px solid var(--color-gold-light);
  outline-offset: 2px;
}

/* ----- Header ----- */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background-color: var(--color-nav-bg);
}

.site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--header-pad-x);
  padding-right: var(--header-pad-x);
  height: 100%;
}

.site-logo {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.site-logo:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 4px;
}

.site-nav {
  display: none;
}

@media screen and (min-width: 1024px) {
  .site-nav {
    display: block;
    margin-left: auto;
    margin-right: 24px;
  }
}

.site-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__link {
  display: inline-block;
  padding: 8px 4px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--color-logo);
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--color-accent);
}

.site-nav__link:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 2px;
}

.site-logo__ja {
  display: block;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--color-logo);
}

.site-logo__en {
  display: block;
  margin-top: 2px;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--color-logo);
}

.site-header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* ----- Buttons ----- */

.btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  font-family: inherit;
  -webkit-transition: background-color 0.2s ease, opacity 0.2s ease;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 3px;
}

.btn--nav {
  padding: 10px 24px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--color-cta-text);
  background-color: var(--color-accent);
}

.btn--nav:hover,
.btn--nav:focus-visible {
  background-color: #8e1728;
}

.btn--primary {
  display: block;
  width: 100%;
  max-width: 400px;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--color-cta-text);
  background-color: var(--color-accent);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: #a31d32;
}

/* ----- Hero ----- */

.site-main {
  padding-top: 0;
}

.site-main [id] {
  scroll-margin-top: var(--header-h);
}

.hero {
  position: relative;
  min-height: 850px;
  margin-top: 0;
  background-color: var(--color-bg);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

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

.hero__advisors-pc {
  position: absolute;
  top: auto;
  bottom: 0;
  right: -webkit-max(0px, calc(50% - 720px));
  right: max(0px, calc(50% - 720px));
  z-index: 0;
  width: 807px;
  height: 850px;
  pointer-events: none;
}

.hero__advisors-pc img {
  display: block;
  width: 807px;
  max-width: 807px;
  height: 850px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--hero-content-top);
  padding-left: var(--header-pad-x);
  padding-right: var(--header-pad-x);
  padding-bottom: 8px;
}

.hero__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 908px;
  flex: 0 0 908px;
  margin-left: var(--content-pad-inner);
  padding-bottom: 24px;
}

.hero-badge {
  margin-bottom: 8px;
}

.hero-badge__label {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 5px;
  color: #fff;
}

.hero-badge__line {
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 8px;
  background-color: #fff;
}

/* Headline image strips（Figma のトリミング値に準拠） */

.hero-headline {
  margin: 0;
  padding-top: 8px;
}

.hero-headline__line {
  display: block;
  position: relative;
  overflow: hidden;
}

.hero-headline__line--1 {
  height: 91px;
  max-width: 636px;
}

.hero-headline__line--2 {
  height: 125px;
  max-width: 694px;
}

.hero-headline__line--3 {
  height: 150px;
  max-width: 653px;
}

.hero-headline__img {
  display: block;
  position: absolute;
  max-width: none;
}

.hero-headline__line--1 .hero-headline__img {
  width: 101.9%;
  height: 300.75%;
  left: -1.89%;
  top: -0.51%;
}

.hero-headline__line--2 .hero-headline__img {
  width: 138.91%;
  height: 325.2%;
  left: -12.79%;
  top: -108.13%;
}

.hero-headline__line--3 .hero-headline__img {
  width: 150.97%;
  height: 277.78%;
  left: -4.31%;
  top: -176.74%;
}

.hero-intro {
  margin-top: 8px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.9;
}

.hero-intro p {
  margin: 0;
}

/* Stats */

.hero-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin-top: 8px;
  margin-left: -12px;
  margin-right: -12px;
}

@supports (gap: 16px) {
  .hero-stats {
    margin-left: 0;
    margin-right: 0;
    gap: 16px 22px;
  }
}

.hero-stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 12px;
  margin-right: 12px;
}

@supports (gap: 16px) {
  .hero-stat {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-stat__orn {
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 21px;
  line-height: 0;
}

.hero-stat__orn--right img {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.hero-stat__orn--left {
  margin-right: 18px;
}

.hero-stat__orn--right {
  margin-left: 16px;
}

.hero-stat__text {
  text-align: center;
  color: var(--color-gold);
}

.hero-stat__value {
  margin: 0;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
}

.hero-stat__value--mixed {
  font-size: 0;
  white-space: nowrap;
}

.hero-stat__num {
  font-size: 32px;
  font-weight: 400;
}

.hero-stat--wide .hero-stat__num {
  font-weight: 400;
}

.hero-stat__mid {
  font-size: 21px;
  font-weight: 400;
}

.hero-stat__label {
  margin: 4px 0 0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
}

.hero-stat--wide .hero-stat__text {
  white-space: normal;
}

/* CTA */

.hero-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 8px;
}

@supports (gap: 14px) {
  .hero-cta {
    gap: 14px;
  }
}

.hero-cta .btn--primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 400px;
  max-width: 100%;
  min-height: 72px;
  margin-bottom: 0;
  padding: 16px 36px;
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: normal;
}

@supports not (gap: 14px) {
  .hero-cta .btn--primary {
    margin-bottom: 14px;
  }
}

.hero-cta__secondary {
  display: block;
  color: #fff;
  font-family: "Noto Serif JP", var(--font-serif);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.hero-cta__secondary:hover,
.hero-cta__secondary:focus-visible {
  color: #f5f0e8;
}

.hero-cta__secondary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Hero visual（右カラム・レイアウト用スペーサー。画像は .hero__bg） */

.hero__visual {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 400px;
  flex: 1 1 400px;
  min-height: 520px;
}

.hero__visual-img {
  display: none;
}

/* ----- LP sections（Figma 240:1812） ----- */

.sec {
  position: relative;
}

.sec-inner {
  position: relative;
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  padding: 100px var(--content-pad-x);
}

.sec--cream {
  background-color: var(--cream-bg);
}

.sec--white {
  background-color: #fff;
}

.sec--dark {
  background-color: var(--color-bg);
}

.sec--download {
  background-color: var(--cream-bg);
}

.sec-label {
  margin: 0 0 33px;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 5px;
  color: var(--color-accent);
}

.sec-label--dark {
  color: var(--color-accent);
  letter-spacing: 4px;
  font-weight: 700;
}

.sec-title {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 1px;
  line-height: 1.6;
  color: var(--text-dark);
}

.sec-title--light {
  color: var(--color-logo);
}

.sec-bar {
  display: block;
  width: 40px;
  height: 2px;
  margin-bottom: 32px;
  background-color: var(--color-accent);
}

/* ② 課題提起 */

.challenge {
  overflow: hidden;
  background-color: #f2f2f2;
}

.challenge::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../assets/images/challenge-bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  -o-background-size: 100% auto;
  opacity: 0.1;
  pointer-events: none;
}

.challenge .sec-inner {
  position: relative;
  z-index: 1;
}

.challenge-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}

.challenge-card {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  padding: 16px;
}

.challenge-card__surface {
  position: relative;
  padding: 36px 32px;
  border-top: 2px solid var(--color-accent);
  background-color: #fff;
}

.challenge-card__num {
  position: absolute;
  top: 35px;
  right: 32px;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 80px;
  line-height: 1.65;
  color: rgba(142, 23, 40, 0.4);
  letter-spacing: 2px;
}

.challenge-card__tag {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--color-accent);
}

.challenge-card__heading {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  color: var(--text-dark);
}

.challenge-card__body {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-dark);
}

/* CTA band */

.cta-band {
  position: relative;
  min-height: 477px;
  background-color: var(--color-bg);
  overflow: hidden;
}

.cta-band__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-band__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.cta-band__overlay::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(142, 23, 40, 0.16);
  mix-blend-mode: multiply;
}

.cta-band__overlay::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(13, 11, 8, 0.76);
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  padding: 72px var(--content-pad-x);
  min-height: 477px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cta-band-headline {
  margin: 0 auto 24px;
  width: 100%;
  max-width: 600px;
}

.cta-band-headline__line {
  display: block;
}

/* Figma 274:2287 — 1440px基準 366×54px、2行目との間隔 11px */
.cta-band-headline__line--1 {
  height: 54px;
  margin-bottom: 11px;
  text-align: center;
}

.cta-band-headline__line--1 .cta-band-headline__img {
  display: block;
  width: 366px;
  max-width: 100%;
  height: 54px;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center;
  -o-object-position: center;
}

/* Figma 274:2285 + 274:2286 — 319×60px + 281×51px */
.cta-band-headline__line--2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  max-width: 600px;
  min-height: 60px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band-headline__line--2 .cta-band-headline__img--left {
  width: 319px;
  max-width: 53.2%;
  height: 60px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: left bottom;
  -o-object-position: left bottom;
}

.cta-band-headline__line--2 .cta-band-headline__img--right {
  width: 281px;
  max-width: 46.8%;
  height: 51px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: right bottom;
  -o-object-position: right bottom;
}

/* 黒背景付きPNGの黒を透過（筆文字は白のまま表示） */
.cta-band-headline__img {
  display: block;
  mix-blend-mode: screen;
}

.cta-band__lead {
  margin: 0 0 28px;
  max-width: 640px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  color: #fff;
}

.cta-band__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@supports not (gap: 20px) {
  .cta-band__actions .btn--cta-wide {
    margin-bottom: 20px;
  }
}

.cta-band .btn--primary.btn--cta-wide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 400px;
  max-width: 100%;
  min-height: 72px;
  margin-bottom: 0;
  padding: 14px 32px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cta-band__secondary {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: underline;
}

.cta-band__secondary:hover,
.cta-band__secondary:focus-visible {
  color: #f5f0e8;
  text-decoration: underline;
}

/* ③ サービス */

.service {
  background-color: #801524;
}

.service-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("../assets/images/service-bg.jpg") center / cover no-repeat;
  pointer-events: none;
}

.service__inner {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.service-head {
  display: grid;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
}

.service-head .sec-label {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 5px;
  color: #fff;
}

.service-head .sec-title {
  grid-column: 1;
  grid-row: 1;
  margin: 33px 0 0;
  color: #fff;
}

.service .sec-bar {
  margin: 0;
  background-color: #fff;
}

.service-lead {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: #fff;
}

.service-lead p {
  margin: 0;
}

.service-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 32px;
  margin: 0;
}

.service-card {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 0;
  max-width: 405.5px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
}

.service-card__media {
  position: relative;
  height: 270px;
  overflow: hidden;
  background-color: #2c2318;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.service-card__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  padding: 40px 32px;
  background-color: #fff;
}

.service-card__tag {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--color-accent);
}

.service-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.65;
  color: var(--text-dark);
}

.service-card__text {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--text-dark);
}

/* ④ タブ */

.support__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
}

.support-head {
  display: grid;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
}

.support-head .sec-label {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.support-head .sec-title {
  grid-column: 1;
  grid-row: 1;
  margin: 33px 0 0;
}

.support .sec-bar {
  margin: 0;
  background-color: var(--color-accent);
}

.support .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.support .tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  margin-bottom: 0;
  position: relative;
}

.support .tabs__nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #ddd;
}

.tabs__btn {
  margin: 0;
  padding: 16px 28px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--text-dark);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.tabs__btn.is-active {
  font-weight: 700;
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.tabs__btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.tabs__panel {
  display: none;
  padding-top: 0;
}

.tabs__panel.is-active {
  display: block;
}

.tab-split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border: 0.5px solid #ddd;
}

.tab-split__left {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  padding: 48px 40px;
  background: #fff;
}

.tab-split__right {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  padding: 48px 40px;
  background-color: var(--color-accent);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tab-split__heading {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.tab-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tab-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #ddd;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.tab-list__item:last-child {
  border-bottom: 0;
}

.tab-list__dot {
  display: inline-block;
  width: 6px;
  margin-right: 16px;
  line-height: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.tab-split__label {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  color: #fff;
}

.tab-split__emph {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.7;
  letter-spacing: 1px;
  color: var(--color-logo);
}

/* ⑤ 実績 */

.results__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.results-head {
  display: grid;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
}

.results-head .sec-label {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.results-head .sec-title {
  grid-column: 1;
  grid-row: 1;
  margin: 33px 0 0;
}

.results .sec-label--dark {
  font-weight: 400;
  letter-spacing: 5px;
}

.results .sec-bar {
  margin: 0;
  background-color: var(--color-accent);
}

.results-lead {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--text-dark);
}

.results-lead p {
  margin: 0;
}

.case-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  padding: 56px;
  background-color: var(--color-accent);
  border: 0.5px solid var(--color-accent);
}

.case-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.case-card__tag {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 5px 16px;
  border: 1px solid #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 4px;
  color: #fff;
}

.case-card__eyebrow {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
}

.case-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.7;
  color: #fff;
}

.case-card__cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin: 0;
}

.case-card__col {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  background-color: #fff;
}

.case-card__col-label {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  letter-spacing: 4px;
  color: var(--color-accent);
}

.case-card__col-body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--text-dark);
}

.case-metrics {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  text-align: center;
}

.case-metrics__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px;
}

.case-metrics__item--border {
  position: relative;
}

.case-metrics__item--border::before,
.case-metrics__item--border::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #fff;
  pointer-events: none;
}

.case-metrics__item--border::before {
  left: 0;
  -webkit-transform: scaleX(0.5);
  transform: scaleX(0.5);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.case-metrics__item--border::after {
  right: 0;
  -webkit-transform: scaleX(0.5);
  transform: scaleX(0.5);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.case-metrics__num {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 36px;
  line-height: normal;
  color: #fff;
}

.case-metrics__label {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 2px;
  color: #fff;
}

.case-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 28px 32px;
  background-color: rgba(255, 255, 255, 0.3);
  border-left: 2px solid var(--color-accent);
}

.case-value__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  letter-spacing: 1px;
  color: var(--color-accent);
}

.case-value__body {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--text-dark);
}

/* ⑥ 選ばれる理由 */

.reasons__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
}

.reasons-head {
  display: grid;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
}

.reasons-head .sec-label {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.reasons-head .sec-title {
  grid-column: 1;
  grid-row: 1;
  margin: 43px 0 0;
}

.reasons .sec-bar {
  margin: 0;
  background-color: var(--color-accent);
}

.reasons-list {
  width: 100%;
}

.reason-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid #ddd;
}

.reason-row__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 561px;
  flex: 1 1 561px;
  min-width: 0;
  max-width: 561px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  padding-right: 0;
}

.reason-row__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.reason-row__n {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 36px;
  line-height: normal;
  color: rgba(142, 23, 40, 0.3);
}

.reason-row__tag {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--color-accent);
}

.reason-row__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.6;
  color: var(--text-dark);
}

.reason-row__body {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--text-dark);
}

.reason-row__media {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 614px;
  flex: 1 1 614px;
  min-width: 0;
  width: 614px;
  max-width: 614px;
  height: 402px;
  overflow: hidden;
  background-color: #d9d9d9;
}

.reason-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

/* ⑦ 比較 */

.compare {
  background-color: var(--color-accent);
}

.compare .sec-inner {
  overflow-x: clip;
}

.compare__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 820px);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: 100%;
  min-width: 0;
}

.compare__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 369px;
  max-width: 369px;
  padding: 0;
}

.compare-head {
  display: grid;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
}

.compare-head .sec-label {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-weight: 400;
  letter-spacing: 4px;
  color: #fff;
}

.compare-head .sec-title {
  grid-column: 1;
  grid-row: 1;
  margin: 43px 0 0;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 1px;
  line-height: 1.6;
  color: #fff;
}

.compare .sec-bar {
  margin: 0;
  background-color: #fff;
}

.compare__lead {
  margin: 0;
  max-width: 341px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: #fff;
}

.compare-table-wrap {
  width: 820px;
  max-width: 100%;
  min-width: 0;
  justify-self: end;
  overflow: clip;
}

.compare-table {
  width: 820px;
  max-width: 100%;
  border-top: 2px solid #fff;
  color: #fff;
  overflow: clip;
}

.compare-table__head,
.compare-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 820px;
  max-width: 100%;
  overflow: clip;
}

.compare-table__head {
  padding: 14px 0;
  border-bottom: 2px solid #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
}

.compare-table__row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(142, 23, 40, 0.4);
}

.compare-table__item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 340px;
  margin-right: -200px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  color: #fff;
  text-align: left;
  white-space: nowrap;
}

.compare-table__item--head {
  font-size: 16px;
  letter-spacing: 3px;
}

.compare-table__zoku {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 480px;
  margin-right: -200px;
}

.compare-table__zoku--head {
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
}

.compare-table__gen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 480px;
  color: rgba(255, 255, 255, 0.6);
}

.compare-table__gen--head {
  letter-spacing: 2px;
  text-align: center;
}

.compare-table__cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  width: 400px;
  max-width: 400px;
}

.compare-table__mark {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.compare-table__gen .compare-table__mark,
.compare-table__gen .compare-table__sub {
  color: inherit;
}

.compare-table__mark--tri {
  font-size: 18px;
}

.compare-table__sub {
  width: 400px;
  max-width: 400px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
  color: #fff;
}

/* Dir ディレクター陣 */

.team {
  background-color: #fff;
}

.team__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 0;
}

.team-head {
  display: grid;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
}

.team-head .sec-label {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.team-head .sec-title {
  grid-column: 1;
  grid-row: 1;
  margin: 43px 0 0;
}

.team .sec-label--dark {
  font-weight: 400;
  letter-spacing: 4px;
}

.team .sec-bar {
  margin: 0;
  background-color: var(--color-accent);
}

.team-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin: 0;
}

.team-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 40px 32px;
  background-color: #ededed;
  border-top: 2px solid var(--color-accent);
}

.team-card__avatar {
  width: 100px;
  height: 100px;
  margin: 0;
  border-radius: 50px;
  overflow: hidden;
  background-color: #e0e0e0;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.team-card__name {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 2px;
  color: var(--text-dark);
}

.team-card__role {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 4px;
  color: var(--color-accent);
}

.team-card__role--sm {
  font-size: 11px;
}

.team-card__bio {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--text-dark);
}

.team-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.team-tag {
  display: inline-block;
  margin: 0;
  padding: 3px 10px;
  border: 0.5px solid var(--color-accent);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  letter-spacing: 2px;
  color: var(--color-accent);
}

.team-banner-wrap {
  width: 100%;
  margin-top: 71px;
}

.team-banner {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  min-height: 179px;
  padding: 40px 48px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--color-accent);
  text-align: center;
  color: var(--color-logo);
  overflow: visible;
}

.team-banner__notch {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: block;
  width: 70px;
  height: 36px;
  margin: 0;
  background-color: #fff;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  pointer-events: none;
}

.team-banner__body {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-max-content;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 0 0;
  gap: 8px;
}

.team-banner__main {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  letter-spacing: 2px;
  text-align: center;
  white-space: nowrap;
}

.team-banner__sub {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 1px;
  text-align: center;
  white-space: nowrap;
}

/* Flow */

.flow-lead {
  margin: 0 0 48px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: normal;
  letter-spacing: 2px;
  color: var(--text-dark);
}

.flow-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 40px;
}

.flow-step {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  padding: 30px 20px;
  background-color: #fff;
  text-align: center;
}

.flow-step__circle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 32px;
  border: 1px solid var(--color-accent);
  background-color: var(--color-accent);
  color: #fff;
  letter-spacing: 2px;
  line-height: 0;
  text-align: center;
}

.flow-step__step {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 11px;
  line-height: 1.093;
}

.flow-step__num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.093;
}

.flow-step__title {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.flow-step__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.flow-step__connector {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: center;
  align-self: center;
  width: 21px;
  height: 6px;
  background-image: url("../assets/images/flow-connector-h.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.flow-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1px;
  color: var(--text-dark);
}

/* FAQ */

.faq .sec-label {
  margin-bottom: 20px;
}

.faq .sec-title {
  margin-bottom: 48px;
}

.faq .sec-bar {
  margin-bottom: 48px;
}

.faq-list {
  border-bottom: 1px solid #ddd;
}

.faq-item {
  border-top: 1px solid #ddd;
}

.faq-item__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  list-style: none;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 2px;
  border-radius: 2px;
}

.faq-item__q-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@supports (gap: 19px) {
  .faq-item__q-text {
    gap: 19px;
  }
}

.faq-item__q-text .faq-item__mark {
  margin-right: 19px;
}

@supports (gap: 19px) {
  .faq-item__q-text .faq-item__mark {
    margin-right: 0;
  }
}

.faq-item__q-body {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 2px;
  color: var(--text-dark);
}

.faq-item__toggle {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 16px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  letter-spacing: 2px;
  color: var(--color-accent);
}

.faq-item__toggle::before {
  content: "−";
}

.faq-item:not([open]) .faq-item__toggle::before {
  content: "+";
}

.faq-item__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 24px 24px;
  color: var(--text-dark);
}

@supports (gap: 20px) {
  .faq-item__a {
    gap: 20px;
  }
}

.faq-item__a .faq-item__mark {
  margin-right: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@supports (gap: 20px) {
  .faq-item__a .faq-item__mark {
    margin-right: 0;
  }
}

.faq-item__a p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: var(--text-dark);
}

.faq-item__mark {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 21px;
  color: var(--color-accent);
}

.faq-item__a .faq-item__mark {
  line-height: normal;
  color: var(--text-dark);
}

/* Download block */

.download__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@supports (gap: 80px) {
  .download__inner {
    gap: 80px;
  }
}

.download__copy {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 514px;
  flex: 0 1 514px;
  max-width: 514px;
}

.download__title {
  margin: 0 0 31px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.65;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.download__lead {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--text-dark);
}

.download__form {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 684px;
  max-width: 100%;
  min-height: 532px;
  margin-left: 80px;
}

.formrun-embed iframe {
  display: block;
  width: 100%;
  min-height: 532px;
}

@supports (gap: 80px) {
  .download__form {
    margin-left: 0;
  }
}

/* Site footer */

.site-footer {
  padding: 56px var(--content-pad-x);
  background-color: var(--color-bg);
  border-top: 0.5px solid var(--color-accent);
  text-align: center;
}

.site-footer__inner {
  max-width: var(--page-max);
  margin: 0 auto;
}

.site-footer__logo {
  margin-bottom: 40px;
}

.site-footer__ja {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 2.6px;
  color: var(--color-logo);
}

.site-footer__en {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 7.8px;
  color: var(--color-logo);
}

.site-footer__note {
  margin: 0 0 24px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 1px;
  color: var(--color-logo);
}

.site-footer__copy {
  margin: 0;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--color-logo);
}

/* ----- Responsive ----- */

@media screen and (max-width: 1100px) {
  .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: calc(var(--header-h) + 24px);
  }

  .hero__content {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-badge__line {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-headline {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hero-stats {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .hero-cta {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hero-cta__secondary {
    text-align: center;
  }

  .hero__bg img {
    object-position: center top;
    -o-object-position: center top;
  }

  .hero__advisors-pc {
    display: none;
  }

  .hero__visual {
    min-height: 360px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .hero__visual-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
  }

  .challenge-card {
    width: 100%;
  }

  .tab-split {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .reason-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .reason-row__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: none;
  }

  .reason-row__media {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    height: auto;
    background-color: transparent;
  }

  .reason-row__media img {
    height: auto;
  }

  .case-metrics__label {
    white-space: normal;
  }
}

@media screen and (max-width: 1319px) {
  .compare__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-template-columns: none;
  }

  .compare__intro {
    width: 100%;
    max-width: none;
    margin-bottom: 40px;
  }

  .compare-table-wrap {
    width: 100%;
    max-width: 820px;
    justify-self: stretch;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table {
    width: 820px;
    max-width: none;
  }
}

@media screen and (max-width: 640px) {
  :root {
    --header-pad-x: 20px;
    --content-pad-x: 20px;
    --content-pad-inner: 0px;
    --sec-pad-y: 60px;
    --sec-title-size: 24px;
    --card-pad-y: 40px;
    --card-pad-x: 20px;
  }

  /* ----- Common ----- */

  .sec-inner {
    padding-top: var(--sec-pad-y);
    padding-bottom: var(--sec-pad-y);
    padding-left: var(--content-pad-x);
    padding-right: var(--content-pad-x);
  }

  .sec-title {
    font-size: var(--sec-title-size);
    margin-bottom: 24px;
  }

  .sec-bar {
    margin-bottom: 24px;
  }

  .sec-label {
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 4px;
  }

  /* ----- Header ----- */

  .site-logo__ja {
    font-size: 16px;
  }

  .btn--nav {
    padding: 10px 24px;
    font-size: 12px;
    letter-spacing: 2px;
  }

  /* ----- Hero ----- */

  .hero {
    min-height: auto;
    background-color: var(--color-bg);
    overflow-x: clip;
  }

  .hero__bg img {
    object-position: center top;
    -o-object-position: center top;
  }

  .hero__inner {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-top: calc(var(--header-h) + 40px);
    padding-left: var(--content-pad-x);
    padding-right: var(--content-pad-x);
    padding-bottom: 0;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 335px;
    overflow-x: clip;
  }

  .hero-badge {
    margin-bottom: 0;
  }

  .hero-badge__label {
    font-size: 20px;
    letter-spacing: 5px;
  }

  .hero-headline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 11px;
    max-width: 335px;
    width: 100%;
  }

  .hero-headline__line {
    width: 100%;
    max-width: 335px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .hero-headline__line--1 {
    height: 49px;
    min-height: 49px;
    max-height: 49px;
  }

  .hero-headline__line--1 .hero-headline__img {
    width: 101.9%;
    height: 300.75%;
    left: -1.89%;
    top: -0.51%;
  }

  .hero-headline__line--2 {
    height: 67px;
    min-height: 67px;
    max-height: 67px;
  }

  .hero-headline__line--2 .hero-headline__img {
    width: 138.91%;
    height: 325.2%;
    left: -15.28%;
    top: -108.13%;
  }

  .hero-headline__line--3 {
    height: 81px;
    min-height: 81px;
    max-height: 81px;
  }

  .hero-headline__line--3 .hero-headline__img {
    width: 150.97%;
    height: 277.78%;
    left: -6.56%;
    top: -176.74%;
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: 1px;
  }

  .hero-stats {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 335px;
    margin-top: 16px;
    margin-left: 0;
    margin-right: 0;
    gap: 4px;
  }

  .hero-stat {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 11px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .hero-stat__orn {
    width: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-item-align: center;
    align-self: center;
  }

  .hero-stat__orn img {
    width: 10px;
    height: 23px;
    object-fit: contain;
    -o-object-fit: contain;
  }

  .hero-stat__orn--left {
    margin-right: 2px;
  }

  .hero-stat__orn--right {
    margin-left: 2px;
  }

  .hero-stat__text {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: -webkit-min-content;
    min-width: min-content;
    text-align: center;
  }

  .hero-stat__value:not(.hero-stat__value--mixed) {
    display: block;
    font-size: 14px;
    line-height: 1.15;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .hero-stat:first-child .hero-stat__value {
    font-size: 13px;
    letter-spacing: -0.02em;
  }

  .hero-stat__value--mixed {
    display: block;
    line-height: 1.15;
    white-space: nowrap;
  }

  .hero-stat__value--mixed .hero-stat__num,
  .hero-stat__value--mixed .hero-stat__mid {
    display: inline;
    line-height: 1.15;
    letter-spacing: 0;
    white-space: nowrap;
    vertical-align: baseline;
  }

  .hero-stat__value--mixed .hero-stat__num {
    font-size: 12px;
    font-weight: 400;
  }

  .hero-stat__value--mixed .hero-stat__mid {
    font-size: 8px;
    font-weight: 400;
  }

  .hero-stat__label {
    margin-top: 2px;
    font-size: 8px;
    letter-spacing: 0.8px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero-stat--wide .hero-stat__text {
    white-space: nowrap;
  }

  @media screen and (max-width: 374px) {
    .hero-stats {
      gap: 2px;
    }

    .hero-stat__label {
      font-size: 7px;
      letter-spacing: 0.4px;
    }

    .hero-stat__value--mixed .hero-stat__num {
      font-size: 11px;
    }
  }

  .hero-cta {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 335px;
    margin-top: 14px;
  }

  .hero-cta .btn--primary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 335px;
    min-height: 72px;
    margin-left: 0;
    margin-right: 0;
    padding: 16px 20px;
    font-size: 16px;
    letter-spacing: 2px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .hero-cta__secondary {
    margin-left: 0;
    text-align: center;
  }

  .hero__visual {
    position: relative;
    z-index: 1;
    min-height: 0;
    height: auto;
    margin-top: 24px;
    margin-left: calc(-1 * var(--content-pad-x));
    margin-right: calc(-1 * var(--content-pad-x));
    width: calc(100% + 2 * var(--content-pad-x));
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }

  .hero__visual-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
  }

  /* ----- Challenge ----- */

  .challenge-grid {
    margin-left: 0;
    margin-right: 0;
    gap: 24px;
  }

  @supports (gap: 24px) {
    .challenge-grid {
      gap: 24px;
    }
  }

  .challenge-card {
    width: 100%;
    padding: 0;
  }

  .challenge-card__surface {
    padding: var(--card-pad-y) var(--card-pad-x);
  }

  .challenge-card__num {
    top: var(--card-pad-y);
    right: var(--card-pad-x);
    opacity: 0.1;
    color: rgba(142, 23, 40, 0.1);
  }

  .challenge-card__heading {
    font-size: 20px;
  }

  /* ----- CTA band ----- */

  .cta-band {
    min-height: 446px;
  }

  .cta-band__inner {
    min-height: 446px;
    padding: var(--sec-pad-y) var(--content-pad-x);
  }

  .cta-band-headline {
    max-width: 335px;
    margin-bottom: 24px;
  }

  .cta-band-headline__line--1 {
    height: 30px;
    min-height: 30px;
    margin-bottom: 6px;
    text-align: center;
  }

  .cta-band-headline__line--1 .cta-band-headline__img {
    width: 204px;
    max-width: 204px;
    height: 30px;
    min-height: 30px;
  }

  .cta-band-headline__line--2 {
    min-height: 33px;
    max-width: 335px;
  }

  .cta-band-headline__line--2 .cta-band-headline__img--left {
    width: 178px;
    max-width: 178px;
    height: 33px;
    max-height: 33px;
  }

  .cta-band-headline__line--2 .cta-band-headline__img--right {
    width: 157px;
    max-width: 157px;
    height: 29px;
    max-height: 29px;
  }

  .cta-band__lead {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 24px;
  }

  .cta-band__actions {
    width: 100%;
  }

  .cta-band .btn--primary.btn--cta-wide {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
    letter-spacing: 1px;
  }

  /* ----- Service ----- */

  .service__inner {
    gap: 24px;
  }

  .service-head .sec-title {
    font-size: var(--sec-title-size);
    margin-top: 33px;
    max-width: 335px;
    word-break: keep-all;
  }

  .service-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }

  .service-card {
    max-width: none;
  }

  .service-card__body {
    padding: var(--card-pad-y) var(--card-pad-x);
  }

  /* ----- Support / tabs ----- */

  .support__inner {
    gap: 24px;
  }

  .support-head .sec-title {
    font-size: var(--sec-title-size);
    margin-top: 33px;
  }

  .support .tabs {
    gap: 24px;
  }

  .support .tabs__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-bottom: 0;
    padding: 0;
  }

  .support .tabs__nav::before {
    display: none;
  }

  .tabs__btn {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    min-height: 40px;
    padding: 10px 20px;
    font-size: 14px;
    letter-spacing: 2px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }

  .tabs__btn.is-active {
    font-weight: 700;
    color: #fff;
    background-color: var(--color-accent);
    border-color: #ddd;
    border-bottom-color: #ddd;
  }

  .tab-split__left,
  .tab-split__right {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: var(--card-pad-y) var(--card-pad-x);
  }

  .tab-split__label {
    font-size: 16px;
    letter-spacing: 4px;
  }

  .tab-split__emph {
    font-size: 20px;
  }

  /* ----- Results ----- */

  .results__inner {
    gap: 24px;
  }

  .results-head .sec-title {
    font-size: var(--sec-title-size);
    margin-top: 33px;
  }

  .results-lead {
    font-size: 16px;
  }

  .case-card {
    padding: var(--card-pad-y) var(--card-pad-x);
    gap: 24px;
  }

  .case-card__tag {
    font-size: 14px;
  }

  .case-card__title {
    font-size: 24px;
  }

  .case-card__cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
  }

  .case-card__col {
    padding: var(--card-pad-y) var(--card-pad-x);
  }

  .case-metrics {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .case-metrics::before,
  .case-metrics::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: #fff;
    pointer-events: none;
  }

  .case-metrics::before {
    top: 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
    -webkit-transform-origin: top center;
    transform-origin: top center;
  }

  .case-metrics::after {
    bottom: 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
  }

  .case-metrics__label {
    white-space: normal;
  }

  .case-metrics__item--border::before,
  .case-metrics__item--border::after {
    top: auto;
    bottom: auto;
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
    -webkit-transform-origin: top center;
    transform-origin: top center;
  }

  .case-metrics__item--border::before {
    top: 0;
  }

  .case-metrics__item--border::after {
    bottom: 0;
    top: auto;
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
  }

  .case-value {
    padding: 0 var(--card-pad-x);
    gap: 24px;
  }

  .case-value__title {
    font-size: 14px;
  }

  /* ----- Reasons ----- */

  .reasons__inner {
    gap: 24px;
  }

  .reasons-head .sec-title {
    font-size: var(--sec-title-size);
    margin-top: 43px;
    max-width: 335px;
    word-break: keep-all;
  }

  .reason-row {
    gap: 24px;
    padding: 24px 0 40px;
  }

  .reason-row__content {
    gap: 24px;
  }

  .reason-row__n {
    font-size: 36px;
  }

  .reason-row__title {
    font-size: 20px;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .reason-row__body {
    font-size: 16px;
    line-height: 1.9;
  }

  .reason-row__media {
    height: auto;
    background-color: transparent;
  }

  .reason-row__media img {
    height: auto;
  }

  /* ----- Compare ----- */

  .compare__intro {
    gap: 24px;
    margin-bottom: 24px;
  }

  .compare-head .sec-title {
    font-size: var(--sec-title-size);
    margin-top: 43px;
  }

  .compare__lead {
    max-width: none;
    font-size: 16px;
    line-height: 2;
  }

  .compare-table-wrap {
    width: 100%;
    max-width: none;
    overflow: visible;
  }

  .compare-table {
    width: 100%;
    max-width: none;
  }

  .compare-table__head,
  .compare-table__row {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .compare-table__head {
    padding: 14px 0;
  }

  .compare-table__item--head {
    display: none;
  }

  .compare-table__zoku--head,
  .compare-table__gen--head {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 7px);
    flex: 1 1 calc(50% - 7px);
    width: auto;
    margin-right: 0;
    font-size: 16px;
  }

  .compare-table__row {
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(142, 23, 40, 0.4);
  }

  .compare-table__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    margin-right: 0;
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.16);
    font-size: 14px;
    line-height: normal;
    letter-spacing: 2px;
    white-space: normal;
    text-align: center;
    border-bottom: 0;
  }

  .compare-table__zoku,
  .compare-table__gen {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 7px);
    flex: 1 1 calc(50% - 7px);
    width: auto;
    margin-right: 0;
    padding: 12px 8px 0;
    border-bottom: 0;
  }

  .compare-table__cell {
    width: 100%;
    max-width: none;
    gap: 0;
  }

  .compare-table__sub {
    width: 100%;
    max-width: none;
    font-size: 14px;
    white-space: normal;
    line-height: normal;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  /* ----- Team ----- */

  .team__inner {
    gap: 24px;
  }

  .team-head .sec-title {
    font-size: var(--sec-title-size);
    margin-top: 43px;
  }

  .team-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
  }

  .team-card {
    padding: var(--card-pad-y) var(--card-pad-x);
  }

  .team-banner-wrap {
    margin-top: 32px;
  }

  .team-banner {
    padding: 40px var(--card-pad-x);
    min-height: auto;
  }

  .team-head .sec-title {
    max-width: 335px;
    word-break: keep-all;
  }

  .team-banner__body {
    width: 100%;
    max-width: 100%;
  }

  .team-banner__main,
  .team-banner__sub {
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .team-banner__main {
    font-size: 24px;
    line-height: 1.6;
  }

  /* ----- Flow ----- */

  .flow-lead {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .flow-steps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
  }

  .flow-step {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    max-width: 335px;
    padding: 30px var(--card-pad-x);
  }

  .flow-step__body {
    max-width: 295px;
    margin-left: auto;
    margin-right: auto;
  }

  .flow-step__connector {
    -ms-flex-item-align: center;
    align-self: center;
    width: 6px;
    height: 21px;
    background-image: url("../assets/images/flow-connector-v.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  .flow-note {
    font-size: 14px;
    line-height: 1.8;
  }

  /* ----- FAQ ----- */

  .faq .sec-title {
    font-size: var(--sec-title-size);
    margin-bottom: 24px;
  }

  .faq .sec-bar {
    margin-bottom: 24px;
  }

  .faq-item__q {
    padding: 20px 0;
  }

  .faq-item__a {
    padding: 0 0 24px;
  }

  .faq-item__a p {
    font-size: 16px;
    line-height: 1.9;
  }

  /* ----- Download ----- */

  .download__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  @supports (gap: 80px) {
    .download__inner {
      gap: 24px;
    }
  }

  .download__copy {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: 100%;
  }

  .download__title {
    font-size: var(--sec-title-size);
    margin-bottom: 24px;
  }

  .download__lead {
    font-size: 16px;
  }

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

  /* ----- Footer ----- */

  .site-footer {
    padding: var(--sec-pad-y) var(--content-pad-x);
  }

  .site-footer__logo {
    margin-bottom: 24px;
  }

  .site-footer__ja {
    font-size: 26px;
  }

  .site-footer__en {
    font-size: 14px;
  }

  .site-footer__note {
    font-size: 12px;
    line-height: 1.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    -webkit-transition: none;
    transition: none;
  }
}
