/* ==========================================================================
   Base
   ========================================================================== */
html {
  /* スマホ (375px基準で1rem=10px) のリキッドレイアウト */
  font-size: calc(100vw * 10 / 375);
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  html {
    /* 768px以上 〜 1440px未満 (1440px基準で1rem=10px) のリキッドレイアウト */
    font-size: calc(100vw * 10 / 1440);
  }
}

@media screen and (min-width: 1440px) {
  html {
    /* 1440px以上は文字や画像を拡大させず、1rem=10px（固定）にする */
    font-size: 62.5%;
  }
}

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

.u-pc-only {
  display: inline;
}
.u-underline {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
.u-sp-only {
  display: none;
}
@media (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
  .u-sp-only {
    display: inline;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #031b39;
  line-height: 1.5;
  background-color: #d9e5f1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

body.is-menu-open {
  position: fixed;
  width: 100%;
}

main {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

main::after {
  content: "";
  position: absolute;
  top: 237rem;
  left: 0;
  width: 100%;
  height: 900rem;
  background: url("../images/bg.png") top center / 100% auto
    no-repeat;
  pointer-events: none;
  z-index: 0;
}

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

ul {
  list-style: none;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* ==========================================================================
   Component: Section Heading (c-section-heading)
   ========================================================================== */
/* --- Scroll reveal animation (rising) --- */
.js-rising {
  overflow: hidden;
}

.js-rising__inner {
  transform: translate3d(0, 101%, 0);
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.js-rising.is-visible .js-rising__inner {
  transform: translate3d(0, 0, 0);
}

.c-section-heading {
  margin-bottom: 5.6rem;
}

.c-section-heading__title {
  margin-bottom: 2rem;
}

.c-section-heading__title img {
  display: block;
  height: 6.2rem;
  width: auto;
}

.c-section-heading__title--news {
  width: auto;
  height: 9.6rem;
}

.c-section-heading__title--news img {
  width: 100%;
  height: 100%;
}

.c-section-heading__label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.c-section-heading__label-line {
  width: 3rem;
  height: 1px;
  background-color: #f86019;
}

.c-section-heading__label-text {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #f86019;
  font-feature-settings: "palt" 1;
}

/* White variant (about, contact) */
.c-section-heading--white .c-section-heading__title {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.c-section-heading--white .c-section-heading__label-line {
  background-color: #fff;
}

.c-section-heading--white .c-section-heading__label-text {
  color: #fff;
}

.c-section-heading__label--white .c-section-heading__label-line {
  background-color: #fff;
}

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

/* ==========================================================================
   Component: Table (c-table)
   ========================================================================== */
.c-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid #b9ced6;
}

.c-table th,
.c-table td {
  background-color: #f4f9ff;
  border-right: 1px solid #b9ced6;
  border-top: 1px solid #b9ced6;
  padding: 1.4rem 2rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #031b39;
  text-align: left;
  vertical-align: middle;
}

.c-table thead th {
  font-weight: 700;
  border-bottom: 1px solid #b9ced6;
}

.c-table tbody th {
  font-weight: 700;
}

.c-table tbody td {
  font-weight: 400;
  letter-spacing: 0.04em;
  font-feature-settings: "palt" 1;
}

.c-table tr:first-child th,
.c-table tr:first-child td {
  border-top: none;
}

.c-table th:last-child,
.c-table td:last-child {
  border-right: none;
}

.c-table td small {
  font-size: 1.4rem;
}

/* ==========================================================================
   Component: Block Card (c-block)
   ========================================================================== */
.c-block {
  background-color: #e4edf8;
  border: 1px solid #b9ced6;
  border-radius: 1.6rem;
  padding: 8rem;
  margin-bottom: 8rem;
}

.c-block__title {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #031b39;
  margin-bottom: 2.4rem;
}

/* ==========================================================================
   Component: Definition List (c-dl)
   ========================================================================== */
.c-dl__row {
  display: flex;
  align-items: baseline;
  padding: 2.4rem 0;
  border-top: 1px solid #b9ced6;
}

.c-dl__row:last-child {
  border-bottom: 1px solid #b9ced6;
}

.c-dl__row dt {
  width: 16rem;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #031b39;
  font-feature-settings: "palt" 1;
}

.c-dl__row dd {
  flex: 1;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #031b39;
  font-feature-settings: "palt" 1;
}

.c-dl__row dd strong {
  font-weight: 700;
}

.c-dl__row dd small {
  font-size: 1.4rem;
}

/* ==========================================================================
   Component: Note Box (c-note)
   ========================================================================== */
.c-note {
  border: 1px solid #b9ced6;
  border-radius: 0.8rem;
  padding: 3.2rem;
}

.c-note p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #031b39;
  font-feature-settings:
    "palt" 1,
    "pwid" 1;
}

.c-note p + p {
  margin-top: 1.2rem;
}

.c-note a {
  color: #031b39;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: background-size 0.3s ease;
}

.c-note a:hover {
  background-size: 0 1px;
  background-position: 100% 100%;
  animation: c-note-underline-slide 0.6s ease forwards;
}

@keyframes c-note-underline-slide {
  0% {
    background-size: 100% 1px;
    background-position: 100% 100%;
  }
  50% {
    background-size: 0 1px;
    background-position: 100% 100%;
  }
  51% {
    background-size: 0 1px;
    background-position: 0 100%;
  }
  100% {
    background-size: 100% 1px;
    background-position: 0 100%;
  }
}

.c-note--dark {
  border-color: #b9ced6;
}

.c-note--dark p {
  color: #fff;
}

/* ==========================================================================
   Component: Divider (c-divider)
   ========================================================================== */
.c-divider {
  border: none;
  border-top: 1px solid #b9ced6;
  margin: 4.8rem 0;
}

.c-divider--light {
  border-top-color: rgba(185, 206, 214, 0.4);
  margin: 6.4rem 0;
}

/* ==========================================================================
   Layout: Header
   ========================================================================== */
.l-header {
  position: fixed;
  top: 2.4rem;
  left: 2.4rem;
  right: 2.4rem;
  width: auto;
  z-index: 100;
  height: 9rem;
  background-color: rgba(255, 255, 255, 0.82);
  border: 1px solid #fff;
  border-radius: 0.8rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.4s ease, border-color 0.3s ease;
}

.l-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #d9e5f1;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
  border-radius: 0.8rem;
}

.l-header.is-scrolled::before {
  opacity: 1;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 3.6rem;
  max-width: 144rem;
  margin: 0 auto;
}

.l-header__brand {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-shrink: 0;
}

.l-header__logo {
  display: block;
  width: 22.4rem;
  max-width: 25.7rem;
  flex-shrink: 0;
}

.l-header__logo img {
  width: 100%;
  height: auto;
}

.l-header__tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: #031b39;
  line-height: 1.8;
  letter-spacing: 0.044em;
  white-space: nowrap;
}

.l-header__mext-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.l-header__mext-logo img {
  display: block;
  width: 12.6rem;
  height: auto;
}

.l-header__nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.l-header__btn {
  display: flex;
  align-items: center;
  height: 3.6rem;
  border-radius: 10rem;
  padding: 0 1.2rem 0 1.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  gap: 0;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.l-header__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.l-header__btn:hover::before {
  transform: translateX(0);
}

.l-header__btn--blue {
  background-color: #0049a4;
}
.l-header__btn--blue::before {
  background-color: #003580;
}

.l-header__btn--orange {
  background-color: #f86019;
}
.l-header__btn--orange::before {
  background-color: #d94e15;
}

.l-header__btn-icon {
  width: 2rem;
  height: 2rem;
  margin-right: 0.4rem;
  flex-shrink: 0;
}

.l-header__btn-text {
  margin-left: 0.4rem;
  padding-left: 1.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  line-height: 1;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.l-header__btn-arrow {
  width: 0.8rem;
  height: 0.6rem;
  margin-left: 1.4rem;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.l-header__btn-arrow img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.l-header__btn-arrow img:last-child {
  transform: translateX(-250%);
}

.l-header__btn:hover .l-header__btn-arrow img:first-child {
  transform: translateX(250%);
}

.l-header__btn:hover .l-header__btn-arrow img:last-child {
  transform: translateX(0);
}

.l-header__menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 3.6rem;
  height: 3.6rem;
  background-color: #031b39;
  border-radius: 0.4rem;
}

.l-header__menu-line {
  display: block;
  width: 1.4rem;
  height: 0;
  border-top: 2px solid #fff;
}

/* ==========================================================================
   MV (Main Visual)
   ========================================================================== */
.p-mv {
  position: relative;
  width: 100%;
  height: 52.083vw;
  max-height: 75rem;
  min-height: 60rem;
  overflow: hidden;
  background: url("../images/mv-bg.jpg") center / cover no-repeat;
}

/* --- Content --- */
.p-mv__content {
  position: relative;
  z-index: 2;
  padding-top: 11.736vw;
  padding-left: 6.111vw;
  max-width: 144rem;
  margin: 0 auto;
}

.p-mv__text {
  margin-bottom: 1.9rem;
}

.p-mv__title {
  margin-bottom: 1.5rem;
}

.p-mv__title img {
  width: 39.931vw;
  max-width: 57.5rem;
  height: auto;
}

.p-mv__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.02em;
}

/* --- Badges --- */
.p-mv__badges {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 4.9rem;
}

.p-mv__badge {
  position: relative;
  width: 7.153vw;
  max-width: 10.3rem;
  height: 7.153vw;
  max-height: 10.3rem;
}

.p-mv__badge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #f4f9ff;
}

.p-mv__badge-ring::before {
  content: "";
  position: absolute;
  inset: 0.3rem;
  border-radius: 50%;
  background: linear-gradient(45deg, #64b1b1 0%, #004e5d 100%);
}

.p-mv__badge-ring::after {
  content: "";
  position: absolute;
  inset: 0.4rem;
  border-radius: 50%;
  background-color: #fff;
}

.p-mv__badge-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  gap: 0.2rem;
}

.p-mv__badge-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #031b39;
  line-height: 1;
  display: block;
  font-feature-settings: "palt" 1;
}

.p-mv__badge-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
}

.p-mv__badge-approx {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(96deg, #1f2774 2.55%, #00b3cd 97.38%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-mv__badge-value {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(96deg, #1f2774 2.55%, #00b3cd 97.38%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-mv__badge-highlight {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(97deg, #1f2774 2.55%, #00b3cd 97.38%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: "palt" 1;
}

.p-mv__badge-highlight--sm {
  font-size: 1.3rem;
  font-feature-settings: "palt" 1;
}

/* --- CTA Buttons --- */
.p-mv__actions {
  display: flex;
  gap: 1.667vw;
}

.p-mv__cta {
  display: flex;
  align-items: center;
  width: 22.917vw;
  max-width: 33rem;
  height: 5.556vw;
  max-height: 8rem;
  border-radius: 4rem;
  padding: 0 1.8rem;
  color: #fff;
  box-shadow: 0 0.52rem 0.52rem rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.p-mv__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-mv__cta--blue::before {
  background-color: #003580;
}
.p-mv__cta--orange::before {
  background-color: #d94e15;
}

.p-mv__cta:hover::before {
  transform: translateX(0);
}

.p-mv__cta--blue {
  background-color: #0049a4;
}

.p-mv__cta--orange {
  background-color: #f86019;
}

.p-mv__cta-icon {
  flex-shrink: 0;
  width: 2.917vw;
  max-width: 4.2rem;
  height: 2.917vw;
  max-height: 4.2rem;
}

.p-mv__cta-icon img {
  width: 100%;
  height: 100%;
}

.p-mv__cta-label {
  flex: 1;
  font-size: 1.25vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.p-mv__cta-arrow {
  flex-shrink: 0;
  width: 2.222vw;
  max-width: 3.2rem;
  height: 2.222vw;
  max-height: 3.2rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.p-mv__cta-arrow img {
  width: 1.1rem;
  height: 0.8rem;
  flex-shrink: 0;
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-mv__cta-arrow img:last-child {
  transform: translateX(-250%);
}

.p-mv__cta:hover .p-mv__cta-arrow img:first-child {
  transform: translateX(250%);
}

.p-mv__cta:hover .p-mv__cta-arrow img:last-child {
  transform: translateX(0);
}

/* --- Scroll indicator --- */
.p-mv__scroll {
  position: absolute;
  right: 5.625vw;
  bottom: 4.133vw;
  z-index: 3;
}

.p-mv__scroll-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 36px;
  height: 92px;
  border: 1px solid #fff;
  border-radius: 92px;
}

.p-mv__scroll-text {
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.05em;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  width: 22px;
}

.p-mv__scroll-arrow {
  display: flex;
  width: 7px;
  height: 10px;
}

.p-mv__scroll-arrow img {
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
}

/* ==========================================================================
   News
   ========================================================================== */
.p-news {
  position: relative;
  z-index: 1;
  padding: 8.333vw 0 0;
  /* 120px gap from MV */
}

/* --- Top / Bottom decorative lines --- */
.p-news__line-top,
.p-news__line-bottom {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.p-news__line-gray {
  flex: 1;
  height: 1px;
  background-color: #b9ced6;
}

.p-news__line-bottom {
  margin-top: 0;
}

/* --- Inner layout --- */
.p-news__inner {
  display: flex;
}

/* --- Left heading column --- */
.p-news__heading {
  width: 26.736vw;
  max-width: 38.5rem;
  flex-shrink: 0;
  padding-left: 8.333vw;
  padding-right: 4rem;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

/* Terminaフォント使用箇所: 本番ではSVG画像に差し替え推奨 */
.p-news__title {
  font-family: "Termina", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 6.4rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  background: linear-gradient(
    90deg,
    #202050 0%,
    #202050 34%,
    #2a98df 50%,
    #202050 65%,
    #202050 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
}

.p-news__label {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.p-news__label-line {
  width: 3rem;
  height: 1px;
  background-color: #f86019;
}

.p-news__label-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #f86019;
  font-feature-settings: "palt" 1;
}

/* --- Right news list column --- */
.p-news__list-wrap {
  flex: 1;
  min-width: 0;
  border-left: 1px solid #b9ced6;
  padding-top: 3.2rem;
}

.p-news__list {
  width: 100%;
}

.p-news__item {
  display: flex;
  gap: 5.6rem;
  padding: 3.2rem 6rem;
  border-bottom: 1px solid #b9ced6;
  align-items: baseline;
}

.p-news__item:first-child {
  border-top: none;
}

.p-news__date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #031b39;
  white-space: nowrap;
  flex-shrink: 0;
  font-feature-settings: "palt" 1;
}

.p-news__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #031b39;
  font-feature-settings: "palt" 1;
}

.p-news__text ul {
  list-style: disc;
  padding-left: 1.8rem;
  margin-top: 0.4rem;
}

.p-news__text ul li {
  margin-bottom: 0.2rem;
}

.p-news__link {
  color: #031b39;
  text-decoration: none;
  position: relative;
  display: inline;
}

.p-news__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform 0.3s ease;
}

.p-news__link:hover::after {
  transform: scaleX(0);
  transform-origin: right center;
  animation: underline-slide 0.6s ease forwards;
}

@keyframes underline-slide {
  0% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  50.1% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

/* ==========================================================================
   Background Gradient Wrapper
   ========================================================================== */
.l-bg-gradient {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: transparent;
  margin-bottom: 0;
}

.l-bg-gradient::before {
  display: none;
}

.l-bg-gradient__deco {
  position: absolute;
  top: 30rem;
  left: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.l-bg-gradient__text {
  display: block;
  width: auto;
  height: auto;
}

/* ==========================================================================
   About (事業背景)
   ========================================================================== */
.p-about {
  position: relative;
  z-index: 1;
  padding: 44rem 0 12rem;
}

.p-about__inner {
  display: flex;
  gap: 11.111vw;
  max-width: 120rem;
  margin: 0 auto;
}

.p-about__heading {
  width: 40rem;
  flex-shrink: 0;
}

.p-about__label {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2rem;
}

.p-about__label-line {
  width: 3rem;
  height: 1px;
  background-color: #fff;
}

.p-about__label-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #fff;
  font-feature-settings: "palt" 1;
}

.p-about__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
  font-feature-settings: "palt" 1;
}

.p-about__body {
  flex: 1;
  min-width: 0;
  max-width: 56rem;
  padding-top: 4.4rem;
}

.p-about__body p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.4;
  letter-spacing: 0.04em;
  color: #fff;
  font-feature-settings: "halt" 1;
}

.p-about__body p + p {
  margin-top: 3.84rem;
}

/* --- About cards (5 cards) --- */
.p-about__cards {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  margin-top: 12rem;
}

.p-about__cards-row {
  display: flex;
  gap: 1.5rem;
}

.p-about__cards-row--center {
  justify-content: center;
  gap: 1.6rem;
}

.p-about__cards--stack {
  position: relative;
  z-index: 1;
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  align-items: stretch;
}

.c-cta-banner--before-support {
  padding-bottom: 0;
}

.c-cta-banner--before-contact {
  padding-bottom: 12rem;
}

.p-about__cards--stack .p-about__card {
  width: 100%;
  min-height: auto;
}

/* --- 統合カード（1枚カード・ボーダー区切り） --- */
.p-about__card--unified {
  padding: 0;
}

.p-about__detail-list {
  margin: 0;
}

.p-about__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 2.4rem 3.7rem;
}

.p-about__detail-item + .p-about__detail-item {
  border-top: 1px solid #b9ced6;
}

.p-about__detail-title {
  width: 16rem;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #031b39;
  /* background: linear-gradient(
    90deg,
    #202050 0%,
    #202050 34%,
    #2a98df 50%,
    #202050 65%,
    #202050 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; */
  font-feature-settings: "palt" 1;
}

.p-about__detail-text {
  flex: 1;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #031b39;
  font-feature-settings:
    "palt" 1,
    "pwid" 1;
}

.p-about__card {
  width: 39rem;
  flex-shrink: 0;
  min-height: 27.7rem;
  background-color: rgba(217, 229, 241, 0.82);
  border: 1px solid #fff;
  border-radius: 0.8rem;
  padding: 4.7rem 3.7rem 3.5rem 3.5rem;
  overflow: hidden;
}

.p-about__card-title {
  font-weight: 500;
  font-size: 2.1rem;
  width: fit-content;
  line-height: 1.5;
  letter-spacing: 0.02em;
  background: linear-gradient(
    90deg,
    #202050 0%,
    #202050 34%,
    #2a98df 50%,
    #202050 65%,
    #202050 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: "palt" 1;
  margin-bottom: 2.4rem;
}

.p-about__card-text {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #031b39;
  font-feature-settings:
    "palt" 1,
    "pwid" 1;
}

/* ==========================================================================
   Support (実施する3つの支援)
   ========================================================================== */
.p-bg-side01 {
  position: absolute;
  top: 320rem;
  right: 0%;
  width: 60rem;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.p-bg-side01__img {
  width: 100%;
  height: auto;
  display: block;
}

.p-bg-side02 {
  position: absolute;
  top: 490rem;
  left: 0%;
  width: 55.7rem;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.p-bg-side02__img {
  width: 100%;
  height: auto;
  display: block;
}

.p-bg-side03 {
  position: absolute;
  top: 650rem;
  right: 0%;
  width: 82rem;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.p-bg-side03__img {
  width: 100%;
  height: auto;
  display: block;
}

.p-support {
  position: relative;
  z-index: 1;
  margin-top: 8rem;
  padding: 8rem 0;
}

.p-support__deco {
  position: absolute;
  top: -6rem;
  right: 0;
  pointer-events: none;
  z-index: 0;
}

.p-support__deco-img {
  display: block;
  width: auto;
  height: auto;
}

.p-support__inner {
  position: relative;
  z-index: 1;
  max-width: 120rem;
  margin: 0 auto;
}

.p-support__heading {
  margin-bottom: 5.6rem;
}

/* Terminaフォント使用箇所: 本番ではSVG画像に差し替え推奨 */
.p-support__title {
  margin-bottom: 2rem;
}

.p-support__label {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.p-support__label-line {
  width: 3rem;
  height: 1px;
  background-color: #f86019;
}

.p-support__label-text {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #f86019;
  font-feature-settings: "palt" 1;
}

/* --- Overview (diagram + description) --- */
.p-support__overview {
  display: flex;
  align-items: center;
  gap: 8rem;
  margin-bottom: 8rem;
  padding-left: 8rem;
}

.p-support__diagram {
  width: 48rem;
  flex-shrink: 0;
}

.p-support__diagram img {
  width: 100%;
  height: auto;
}

.p-support__desc {
  flex: 1;
  min-width: 0;
  max-width: 48rem;
}

.p-support__desc p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.4;
  letter-spacing: 0.04em;
  color: #031b39;
  font-feature-settings:
    "palt" 1,
    "pwid" 1;
}

.p-support__desc p + p {
  margin-top: 1.6rem;
}

/* --- Support cards --- */
.p-support__cards {
  display: flex;
  gap: 2.4rem;
}

.p-support__card {
  position: relative;
  width: calc((100% - 4.8rem) / 3);
  min-height: 43rem;
  border: 1px solid #fff;
  border-radius: 1.6rem;
  padding: 3.1rem;
}

.p-support__card-num {
  font-family: "Termina", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1;
  color: #031b39;
}

.p-support__card-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.2rem;
  height: 7.2rem;
  background-color: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
}

.p-support__card-icon img {
  width: 4.8rem;
  height: 4.8rem;
}

.p-support__card-title {
  font-weight: 500;
  font-size: 2.1rem;
  width: fit-content;
  line-height: 1.5;
  letter-spacing: 0.02em;
  background: linear-gradient(
    90deg,
    #202050 0%,
    #202050 34%,
    #2a98df 50%,
    #202050 65%,
    #202050 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: "palt" 1;
  margin-top: 6rem;
  margin-bottom: 1.2rem;
}

.p-support__card-text {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #031b39;
  font-feature-settings:
    "palt" 1,
    "pwid" 1;
}

.p-support__card-text + .p-support__card-text {
  margin-top: 0.8rem;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.c-cta-banner {
  position: relative;
  z-index: 1;
  max-width: 126.4rem;
  margin: 0 auto;
  overflow: visible;
}

.c-cta-banner__blob {
  position: absolute;
  top: -53rem;
  left: -15rem;
  width: auto;
  height: 110rem;
  opacity: 0.8;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.c-cta-banner__inner {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  background: url("../images/bg-cv.png") center / cover no-repeat;
  padding: 7.1rem 11.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
}

/* .c-cta-banner__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.6rem;
  background: linear-gradient(140deg,
      rgba(20, 50, 130, 0.6) 0%,
      rgba(20, 80, 160, 0.4) 20%,
      rgba(40, 130, 190, 0.2) 40%,
      transparent 55%,
      rgba(180, 70, 15, 0.15) 80%,
      rgba(140, 40, 5, 0.25) 100%);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
} */

.c-cta-banner__title {
  font-weight: 500;
  font-size: 4.2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
  font-feature-settings: "palt" 1;
}

.c-cta-banner__note {
  display: block;
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
}

.c-cta-banner__buttons {
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  width: 100%;
  max-width: 103.2rem;
}

.c-cta-banner__btn {
  display: flex;
  align-items: center;
  width: 40rem;
  height: 11.2rem;
  background-color: #fff;
  border-radius: 10rem;
  padding: 0 4.8rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.c-cta-banner__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-cta-banner__btn--blue::before {
  background-color: #e5edf6;
}
.c-cta-banner__btn--orange::before {
  background-color: #fedfd1;
}

.c-cta-banner__btn:hover::before {
  transform: translateX(0);
}

.c-cta-banner__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 0.9rem;
  flex-shrink: 0;
  margin-right: 2.4rem;
}

.c-cta-banner__btn-icon--blue {
  background-color: #0049a4;
}

.c-cta-banner__btn-icon--orange {
  background-color: #f86019;
}

.c-cta-banner__btn-icon img {
  width: 3.2rem;
  height: 3.2rem;
}

.c-cta-banner__btn-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.c-cta-banner__btn-en {
  display: block;
  line-height: 1;
  opacity: 0.5;
}

.c-cta-banner__btn-en img {
  height: 1.2rem;
  width: auto;
}

.c-cta-banner__btn-ja {
  display: block;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #031b39;
  font-feature-settings: "palt" 1;
}

.c-cta-banner__btn-arrow {
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  margin-left: auto;
  background-color: #e4edf8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.c-cta-banner__btn-arrow img {
  width: 1.1rem;
  height: 0.8rem;
  flex-shrink: 0;
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-cta-banner__btn-arrow img:last-child {
  transform: translateX(-250%);
}

.c-cta-banner__btn:hover .c-cta-banner__btn-arrow img:first-child {
  transform: translateX(250%);
}

.c-cta-banner__btn:hover .c-cta-banner__btn-arrow img:last-child {
  transform: translateX(0);
}

/* ==========================================================================
   Overview (公募概要・応募資格)
   ========================================================================== */
.p-overview {
  position: relative;
  z-index: 1;
  padding: 12rem 0 4rem;
}

.p-overview__inner {
  max-width: 120rem;
  margin: 0 auto;
}

.p-overview__heading {
  margin-bottom: 5.6rem;
}

.p-overview__title {
  font-family: "Termina", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 6.4rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  background: linear-gradient(
    90deg,
    #202050 0%,
    #202050 34%,
    #2a98df 50%,
    #202050 65%,
    #202050 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
}

.p-overview__label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.p-overview__label-line {
  width: 3rem;
  height: 1px;
  background-color: #f86019;
}

.p-overview__label-text {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #f86019;
  font-feature-settings: "palt" 1;
}

/* --- Block (公募概要 / 応募資格) --- */
.p-overview__block {
  background-color: #e4edf8;
  border: 1px solid #b9ced6;
  border-radius: 1.6rem;
  padding: 8rem;
  margin-bottom: 4.8rem;
}

.p-overview__block-title {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #031b39;
  margin-bottom: 4rem;
}

.p-overview__block-desc {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #031b39;
  font-feature-settings: "palt" 1;
  margin-bottom: 4rem;
}

.p-overview__block-desc a {
  color: #031b39;
  text-decoration: none;
  position: relative;
}

.p-overview__block-desc a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform 0.3s ease;
}

.p-overview__block-desc a:hover::after {
  transform: scaleX(0);
  transform-origin: right center;
  animation: underline-slide 0.6s ease forwards;
}

/* --- Schedule table --- */
.p-overview__schedule {
  margin-bottom: 4rem;
}

.p-overview__schedule-title {
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #031b39;
  font-feature-settings: "palt" 1;
  margin-bottom: 2.4rem;
}

.p-overview__table-wrap {
  overflow-x: auto;
}

.p-overview__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid #b9ced6;
}

.p-overview__table th,
.p-overview__table td {
  background-color: #f4f9ff;
  border-right: 1px solid #b9ced6;
  border-top: 1px solid #b9ced6;
  padding: 1.4rem 2rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #031b39;
  text-align: left;
  vertical-align: middle;
}

.p-overview__table thead th {
  font-weight: 700;
}

.p-overview__table thead th:first-child {
  width: 32.7%;
}

.p-overview__table tbody th {
  font-weight: 700;
  width: 32.7%;
}

.p-overview__table tbody td {
  font-weight: 400;
  letter-spacing: 0.04em;
  font-feature-settings: "palt" 1;
}

.p-overview__table tr:first-child th,
.p-overview__table tr:first-child td {
  border-top: none;
}

.p-overview__table th:last-child,
.p-overview__table td:last-child {
  border-right: none;
}

/* --- Definition list rows --- */
.p-overview__dl {
  width: 100%;
}

.p-overview__dl-row {
  display: flex;
  align-items: baseline;
  gap: 0;
  padding: 2.4rem 0;
  border-top: 1px solid #b9ced6;
}

.p-overview__dl-row:last-child {
  border-bottom: 1px solid #b9ced6;
}

.p-overview__dl-row dt {
  width: 16rem;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #031b39;
  font-feature-settings: "palt" 1;
}

.p-overview__dl-row dd {
  flex: 1;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #031b39;
  font-feature-settings: "palt" 1;
}

.p-overview__dl-row dd strong {
  font-weight: 700;
}

.p-overview__dl-row dd small {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

/* --- Note box --- */
.p-overview__note {
  background-color: #f4f9ff;
  border: 1px solid #b9ced6;
  border-radius: 0.8rem;
  padding: 3.2rem;
  margin-top: 2.4rem;
}

.p-overview__note p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #031b39;
  font-feature-settings:
    "palt" 1,
    "pwid" 1;
}

.p-overview__note p + p {
  margin-top: 1.2rem;
}

/* --- Examples (応募が想定される研究計画の例) --- */
.p-overview__examples {
  margin-top: 0;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  border-top: 1px solid #b9ced6;
}

.p-overview__examples-title {
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #031b39;
  margin-bottom: 2.4rem;
}

.p-overview__examples-desc {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #031b39;
  margin-bottom: 2.4rem;
}

.p-overview__examples-list + .p-overview__examples-desc {
  margin-top: 1.6rem;
  margin-bottom: 0;
}

.p-overview__examples-list {
  display: flex;
  gap: 0;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #031b39;
  margin-bottom: 0;
}

.p-overview__examples-label {
  flex-shrink: 0;
}

.p-overview__examples-body {
  flex: 1;
  min-width: 0;
}

/* --- Schedule card --- */
.p-overview__schedule-card {
  margin-top: 4.8rem;
  background: #e4edf8;
  border: 1px solid #b9ced6;
  border-radius: 1.6rem;
  padding: 8rem;
}

.p-overview__schedule-card-title {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #031b39;
  margin-bottom: 2.4rem;
}

.p-overview__schedule-card-wrap {
  background: #f4f9ff;
  border: 1px solid #b9ced6;
  border-radius: 0.8rem;
  padding: 3.2rem;
}

.p-overview__schedule-card-img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.p-overview__schedule-card .p-overview__block-desc {
  margin-top: 2.4rem;
}

.p-overview__schedule-card .p-overview__block-desc + .p-overview__block-desc {
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.p-overview__schedule-card .p-overview__block-desc:first-of-type {
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   Community & Events (コミュニティ形成・イベント)
   ========================================================================== */
.p-community {
  position: relative;
  z-index: 1;
  padding: 0;
}

.p-community__inner {
  max-width: 120rem;
  margin: 0 auto;
}

.p-community__cards {
  display: flex;
  gap: 2.4rem;
}

.p-community__card {
  position: relative;
  width: 38.4rem;
  height: 16.4rem;
  border: 1px solid #fff;
  border-radius: 1.6rem;
  padding: 3.2rem;
}

.p-community__card-num img {
  height: 1.2rem;
  width: auto;
}

.p-community__card-title {
  font-weight: 500;
  font-size: 2.1rem;
  width: fit-content;
  line-height: 1.5;
  letter-spacing: 0.02em;
  background: linear-gradient(
    90deg,
    #202050 0%,
    #202050 34%,
    #2a98df 50%,
    #202050 65%,
    #202050 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: "palt" 1;
  margin-top: 2.4rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.p-faq {
  position: relative;
  z-index: 1;
  padding: 12rem 0 14rem;
}

.p-faq__inner {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.p-faq__heading {
  flex-shrink: 0;
  width: 20rem;
}

.p-faq__title {
  font-family: "Termina", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 6.4rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  background: linear-gradient(
    90deg,
    #202050 0%,
    #202050 34%,
    #2a98df 50%,
    #202050 65%,
    #202050 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
}

.p-faq__label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.p-faq__label-line {
  width: 3rem;
  height: 1px;
  background-color: #f86019;
}

.p-faq__label-text {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #f86019;
  font-feature-settings: "palt" 1;
}

/* --- FAQ list --- */
.p-faq__list {
  flex: 1;
  max-width: 88rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.p-faq__item {
  background-color: #f4f9ff;
  border-radius: 1.6rem;
  padding: 2.4rem 3.2rem;
}

.p-faq__question {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  padding: 0;
}

.p-faq__q-icon {
  flex-shrink: 0;
  width: 1.8rem;
  height: 2.9rem;
}

.p-faq__q-icon img {
  width: 100%;
  height: 100%;
}

.p-faq__q-text {
  flex: 1;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #031b39;
}

.p-faq__q-toggle {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  margin-left: 2.4rem;
}

.p-faq__q-toggle img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.p-faq__item--open .p-faq__q-toggle img {
  transform: rotate(180deg);
}

.p-faq__answer {
  padding-left: 2.6rem;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding-top 0.4s ease;
  padding-top: 0;
}

.p-faq__item--open .p-faq__answer {
  max-height: 50rem;
  padding-top: 1.6rem;
}

.p-faq__answer p {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #031b39;
  font-feature-settings: "palt" 1;
}

/* ==========================================================================
   Spread Decoration
   ========================================================================== */
.p-spread-deco {
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: hidden;
  margin-bottom: -2rem;
}

.p-spread-deco__img {
  width: auto;
  height: 11rem;
  display: block;
  flex-shrink: 0;
}

.p-spread-deco__ticker {
  display: flex;
  width: max-content;
  animation: ticker-scroll 60s linear infinite;
}

.p-spread-deco--contact .p-spread-deco__ticker .p-spread-deco__img {
  margin-right: 17rem;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.p-spread-deco--about {
  margin-top: 15rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.p-contact {
  position: relative;
  z-index: 1;
  background-color: #2f455e;
  border-radius: 1.6rem;
  padding: 8rem 11.2rem;
  max-width: 126.4rem;
  margin: 0 auto;
}

.p-contact__heading {
  margin-bottom: 6.4rem;
}

.p-contact__title {
  font-family: "Termina", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 6.4rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 2rem;
}

.p-contact__label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.p-contact__label-line {
  width: 3rem;
  height: 1px;
  background-color: #fff;
}

.p-contact__label-text {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #fff;
  font-feature-settings: "palt" 1;
}

.p-contact__section {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.p-contact__section-title {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
}

.p-contact__faq-btn {
  display: flex;
  align-items: center;
  width: 35rem;
  margin-top: 0;
  padding: 1.6rem 2.4rem;
  background-color: #fff;
  border-radius: 10rem;
  color: #031b39;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.p-contact__faq-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #e5edf6;
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-contact__faq-btn:hover::before {
  transform: translateX(0);
}

.p-contact__faq-btn-text {
  flex: 1;
  text-align: center;
}

.p-contact__faq-btn-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #e4edf8;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.p-contact__faq-btn-arrow img {
  width: 1.1rem;
  height: 0.8rem;
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-contact__faq-btn-arrow img:last-child {
  transform: translateX(-250%);
}

.p-contact__faq-btn:hover .p-contact__faq-btn-arrow img:first-child {
  transform: translateX(250%);
}

.p-contact__faq-btn:hover .p-contact__faq-btn-arrow img:last-child {
  transform: translateX(0);
}

.p-contact__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 4.8rem 0;
}

.p-contact__section-desc {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #fff;
}

.p-contact__form-embed {
  background-color: #fff;
  border-radius: 0.8rem;
  min-height: 30.8rem;
  padding: 0;
  color: #031b39;
  font-size: 1.6rem;
}

.p-contact__pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  height: 5.6rem;
  padding: 0 4rem;
  background-color: #fff;
  border-radius: 19.2rem;
  font-weight: 700;
  font-size: 1.6rem;
  color: #031b39;
  transition: opacity 0.3s;
}

.p-contact__pill-btn:hover {
  opacity: 0.85;
}

.p-contact__pill-btn img {
  width: 2.4rem;
  height: 2.4rem;
}

.p-contact__info {
  margin-bottom: 2.4rem;
}

.p-contact__info-title {
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
  font-feature-settings: "palt" 1;
  margin-bottom: 2.4rem;
}

.p-contact__info-text {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #fff;
  font-feature-settings: "palt" 1;
}

.p-contact__info-note {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #fff;
  font-feature-settings:
    "palt" 1,
    "pwid" 1;
}

.p-contact__note-box {
  border: 1px solid #b9ced6;
  border-radius: 0.8rem;
  padding: 3.2rem;
  margin-top: 2.4rem;
}

.p-contact__note-box p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #fff;
  font-feature-settings:
    "palt" 1,
    "pwid" 1;
}

.p-contact__note-box p + p {
  margin-top: 1.2rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.l-footer {
  position: relative;
  z-index: 1;
  padding: 8rem 0 1.6rem;
  text-align: center;
}

.l-footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
}

.l-footer__logo-spread {
  display: block;
  height: 3.6rem;
  width: auto;
  margin-top: 2rem;
}

.l-footer__logo-mext-link {
  transition: opacity 0.3s;
}

.l-footer__logo-mext-link:hover {
  opacity: 0.6;
}

.l-footer__logo-mext {
  height: 7.4rem;
  width: auto;
}

.l-footer__copyright {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #031b39;
  font-feature-settings: "palt" 1;
}

/* ==========================================================================
   Project: Mega Menu (p-mega-menu)
   ========================================================================== */
.p-mega-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

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

.p-mega-menu__overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 71.4%;
  background-color: #d9e5f1;
}

.p-mega-menu__overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 28.6%;
  background-color: rgba(3, 27, 57, 0.63);
}

.p-mega-menu__nav {
  position: absolute;
  z-index: 1;
  top: 17.2rem;
  left: 0;
  right: 0;
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  gap: 7.5rem;
}

.p-mega-menu__col {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 35rem;
}

.p-mega-menu__link {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: opacity 0.3s;
}

.p-mega-menu__link:hover {
  opacity: 0.7;
}


/* Terminaフォント使用箇所 */
.p-mega-menu__link-en {
  display: block;
  line-height: 1;
}

.p-mega-menu__link-en img {
  height: 2.3rem;
  width: auto;
}

.p-mega-menu__link--news .p-mega-menu__link-en img {
  height: 1.7rem;
}

.p-mega-menu__link--faq .p-mega-menu__link-en img {
  height: 2rem;
}

.p-mega-menu__link--contact .p-mega-menu__link-en img {
  height: 1.8rem;
}

.p-mega-menu__link-ja {
  position: relative;
  width: fit-content;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #031b39;
  font-feature-settings: "palt" 1;
}

.p-mega-menu__link-ja::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.p-mega-menu__link:hover .p-mega-menu__link-ja::after {
  transform: scaleX(1);
}

/* --- Header menu button open state --- */
.l-header.is-menu-open .l-header__menu-line {
  position: absolute;
  top: 50%;
  left: 50%;
}

.l-header.is-menu-open .l-header__menu-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.l-header.is-menu-open .l-header__menu-line:nth-child(2) {
  opacity: 0;
}

.l-header.is-menu-open .l-header__menu-line:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* --- Mega menu CTA (hidden on PC) --- */
.p-mega-menu__cta {
  display: none;
}

.l-header.is-menu-open .l-header__menu {
  position: relative;
}

.l-header.is-menu-open {
  border: 1px solid transparent;
  background-color: #d9e5f1;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: none;
}

.l-header.is-menu-open::before {
  opacity: 0;
  transition: none;
}

/* ==========================================================================
   Responsive (max-width: 767px)
   ========================================================================== */
@media screen and (max-width: 767px) {
  /* --- Header --- */
  .l-header {
    top: 1.6rem;
    left: 1.6rem;
    right: 1.6rem;
    height: auto;
    padding: 1.6rem 0;
  }

  .l-header__inner {
    padding: 0 2rem;
    align-items: center;
  }

  .l-header__logo {
    width: 18.1rem;
  }

  .l-header__logo img {
    width: 100%;
    height: auto;
  }

  .l-header__tagline {
    display: none;
  }

  .l-header__mext-logo img {
    width: 2.7rem;
    height: 4.2rem;
  }

  .l-header__btn {
    display: none;
  }

  .l-header__menu {
    width: 3.6rem;
    height: 3.6rem;
  }

  .l-header.is-menu-open {
    border: 1px solid transparent;
    background-color: #d9e5f1;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: none;
  }

  .l-header.is-menu-open::before {
    opacity: 0;
    transition: none;
  }

  /* --- Mega Menu --- */
  .p-mega-menu__overlay-top {
    height: 100%;
  }

  .p-mega-menu__overlay-bottom {
    display: none;
  }

  .p-mega-menu__nav {
    position: relative;
    top: auto;
    left: auto;
    flex-direction: column;
    gap: 2rem;
    padding: 14rem 2.9rem 0;
  }

  .p-mega-menu__col {
    display: contents;
  }

  .p-mega-menu__link--news { order: 1; }
  .p-mega-menu__link--background { order: 2; }
  .p-mega-menu__link--support { order: 3; }
  .p-mega-menu__link--overview { order: 4; }
  .p-mega-menu__link--contact { order: 5; }
  .p-mega-menu__cta { order: 6; }

  .p-mega-menu__link {
    gap: 0.4rem;
  }

  .p-mega-menu__link-en {
    line-height: 1;
  }

  .p-mega-menu__link-en img {
    height: auto;
  }

  .p-mega-menu__link--news .p-mega-menu__link-en img {
    width: 5.4rem;
  }

  .p-mega-menu__link--background .p-mega-menu__link-en img {
    width: 11.8rem;
  }

  .p-mega-menu__link--support .p-mega-menu__link-en img {
    width: 22.5rem;
  }

  .p-mega-menu__link--overview .p-mega-menu__link-en img {
    width: 19.6rem;
  }

  .p-mega-menu__link--community .p-mega-menu__link-en img {
    width: 20.3rem;
  }

  .p-mega-menu__link--faq .p-mega-menu__link-en img {
    width: 4.1rem;
  }

  .p-mega-menu__link--contact .p-mega-menu__link-en img {
    width: 7.7rem;
  }

  .p-mega-menu__link-ja {
    font-size: 1.5rem;
  }

  .p-mega-menu__cta {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding: 1.2rem 0 0;
    position: relative;
    z-index: 1;
  }

  .p-mega-menu__cta-btn {
    display: flex;
    align-items: center;
    width: 100%;
    height: 6.4rem;
    border-radius: 10rem;
    padding: 0 1.6rem 0 2rem;
    color: #fff;
  }

  .p-mega-menu__cta-btn--blue {
    background-color: #0049a4;
  }

  .p-mega-menu__cta-btn--orange {
    background-color: #f86019;
  }

  .p-mega-menu__cta-btn-icon {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
  }

  .p-mega-menu__cta-btn-icon img {
    width: 100%;
    height: 100%;
  }

  .p-mega-menu__cta-btn-label {
    flex: 1;
    font-weight: 700;
    font-size: 1.4rem;
    text-align: center;
    letter-spacing: 0.04em;
  }

  .p-mega-menu__cta-btn-arrow {
    flex-shrink: 0;
    width: 3.2rem;
    height: 3.2rem;
  }

  .p-mega-menu__cta-btn-arrow img {
    width: 100%;
    height: 100%;
  }

  /* --- Background decorations (hide on SP) --- */
  .p-bg-side01,
  .p-bg-side02,
  .p-bg-side03 {
    display: none;
  }

  main::after {
    top: 285rem;
    width: 100%;
    height: calc(100vw * 7916 / 375);
    left: 0;
    background: url("../images/background.png") top center / 100% auto
      no-repeat;
  }

  /* --- MV --- */
  .p-mv {
    height: auto;
    max-height: none;
    min-height: auto;
    padding-bottom: 4rem;
    background-image: url("../images/mv-bg-sp.jpg");
  }

  .p-mv__content {
    padding-top: 10.9rem;
    padding-left: 2.9rem;
    padding-right: 2.9rem;
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }

  .p-mv__text {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .p-mv__title {
    margin-bottom: 0;
  }

  .p-mv__title img {
    width: calc(100vw - 5.8rem);
    max-width: none;
  }

  .p-mv__subtitle {
    font-size: 1.6rem;
    line-height: 1.8;
  }

  .p-mv__badges {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 0;
  }

  .p-mv__badge {
    width: 10.1rem;
    max-width: none;
    height: 10.1rem;
    max-height: none;
  }

  .p-mv__actions {
    flex-direction: column;
    gap: 1.6rem;
  }

  .p-mv__cta {
    width: 100%;
    max-width: 31.7rem;
    height: 6.4rem;
    max-height: none;
    padding: 0 1.8rem;
  }

  .p-mv__cta-icon {
    width: 4rem;
    max-width: none;
    height: 4rem;
    max-height: none;
  }

  .p-mv__cta-label {
    font-size: 1.6rem;
  }

  .p-mv__cta-arrow {
    width: 3.2rem;
    max-width: none;
    height: 3.2rem;
    max-height: none;
  }

  .p-mv__scroll {
    display: none;
  }

  /* --- News --- */
  .p-news {
    padding: 5rem 0 0;
  }

  .p-news__inner {
    flex-direction: column;
    gap: 2.4rem;
  }

  .p-news__heading {
    width: auto;
    max-width: none;
    padding: 0 2.9rem;
    margin-bottom: 0;
    border-right: none;
  }

  .p-news__heading.c-section-heading {
    margin-bottom: 0;
  }

  .p-news__list-wrap {
    border-left: none;
    padding: 0 2.9rem;
  }

  .c-section-heading {
    margin-bottom: 3.2rem;
  }

  .c-section-heading__title--news {
    width: auto;
    height: auto;
    margin-bottom: 0.8rem;
  }

  .c-section-heading__title--news img {
    height: 2.5rem;
    width: auto;
  }

  .c-section-heading__title {
    margin-bottom: 0.8rem;
  }

  .p-news__item {
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.6rem 0;
  }

  .p-news__item:first-child {
    border-top: 1px solid #b9ced6;
  }

  .p-news__date {
    font-size: 1.5rem;
  }

  .p-news__text {
    font-size: 1.5rem;
  }

  .p-news__line-top,
  .p-news__line-bottom {
    display: none;
  }

  /* --- Background decoration --- */
  .l-bg-gradient {
    margin-bottom: 0;
  }

  .l-bg-gradient__deco {
    top: 11rem;
    left: 0.5rem;
  }

  .l-bg-gradient__text {
    height: 4.8rem;
    width: auto;
  }

  .p-spread-deco--about {
    margin-top: 8rem;
  }

  /* --- About --- */
  .p-about {
    padding: 16rem 0 5.6rem;
  }

  .p-about__inner {
    flex-direction: column;
    gap: 3.2rem;
    padding: 0 2.9rem;
  }

  .p-about__heading {
    width: auto;
  }

  .p-about__title {
    font-size: 2.4rem;
    font-weight: 700;
  }

  .p-about__body {
    max-width: none;
    padding-top: 0;
  }

  .p-about__body br {
    display: none;
  }

  .p-about__body p {
    font-size: 1.5rem;
    line-height: 1.8;
  }

  /* --- About cards (5 cards SP) --- */
  .p-about__cards {
    margin-top: 4rem;
    padding: 0 2.9rem;
  }

  .p-about__cards--stack {
    margin-bottom: 0;
  }

  .p-about__cards-row {
    flex-direction: column;
    gap: 1.6rem;
  }

  .p-about__cards-row--center {
    gap: 1.6rem;
  }

  .p-about__card {
    width: 100%;
    min-height: auto;
    padding: 2.4rem;
    border-radius: 1.2rem;
  }

  .p-about__card-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }

  .p-about__card-text {
    font-size: 1.4rem;
  }

  .p-about__card--unified {
    padding: 0;
  }

  .p-about__detail-item {
    padding: 2.4rem;
  }

  .p-about__detail-item {
    flex-direction: column;
  }

  .p-about__detail-title {
    width: auto;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }

  /* --- Community & Events (SP) --- */
  .p-community {
    padding: 0;
  }

  .p-community__inner {
    padding: 0 2.9rem;
  }

  .p-community__cards {
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 0;
  }

  .p-community__card {
    width: 100%;
    height: auto;
    min-height: auto;
    border-radius: 1.2rem;
    padding: 1.6rem 2.4rem 2.4rem;
  }

  .p-community__card-title {
    font-size: 1.8rem;
    margin-top: 1.6rem;
  }

  /* --- Schedule card (SP) --- */
  .p-overview__schedule-card {
    margin-top: 3.2rem;
  }

  .p-overview__schedule-card-title {
    font-size: 2.1rem;
  }

  .p-overview__schedule-card-wrap {
    padding: 2.4rem 2rem;
  }

  .p-overview__schedule-card-scroll {
    overflow-x: visible;
  }

  .p-overview__schedule-card-img {
    min-width: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .p-overview__schedule-card-scrollbar {
    display: none;
  }

  .p-overview__schedule-card-wrap::after {
    display: none;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
  }

  /* --- Examples (SP) --- */
  .p-overview__examples {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .p-overview__examples-title {
    font-size: 1.8rem;
  }

  .p-overview__examples-desc {
    font-size: 1.4rem;
  }

  .p-overview__examples-list {
    flex-direction: column;
    gap: 0.8rem;
    font-size: 1.4rem;
  }

  /* --- Contact form embed (SP) --- */
  .p-contact__form-embed {
    min-height: 20rem;
    padding: 0;
  }

  /* --- Footer --- */
  .l-footer {
    padding: 0 2.9rem 4rem;
  }

  .l-footer__logos {
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }

  .l-footer__logo-spread {
    height: 3rem;
    margin-top: 0;
  }

  .l-footer__logo-mext {
    height: 4.2rem;
  }

  .l-footer__copyright {
    font-size: 1.2rem;
  }

  /* --- CTA Banner --- */
  .c-cta-banner {
    padding: 0 0 5.6rem;
    margin-bottom: 0;
  }

  .c-cta-banner--before-contact {
    padding-bottom: 5.6rem;
  }

  .c-cta-banner--before-support {
    padding: 0;
  }

  .c-cta-banner__inner {
    border-radius: 0;
    padding: 4rem 2.9rem;
    gap: 2.4rem;
    background: url("../images/bg-cv-sp.png") center / cover no-repeat;
  }

  .c-cta-banner__title {
    font-size: 2.1rem;
  }

  .c-cta-banner__note {
    font-size: 1.4rem;
  }

  .c-cta-banner__buttons {
    flex-direction: column;
    gap: 1.6rem;
    max-width: 31.7rem;
  }

  .c-cta-banner__btn {
    width: 100%;
    height: 7.6rem;
    padding: 0 1.6rem 0 2.4rem;
  }

  .c-cta-banner__btn-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.8rem;
    margin-right: 1.6rem;
  }

  .c-cta-banner__btn-icon img {
    width: 2.4rem;
    height: 2.4rem;
  }

  .c-cta-banner__btn-en {
    font-size: 1rem;
  }

  .c-cta-banner__btn-en img {
    height: 1rem;
    width: auto;
  }

  .c-cta-banner__btn-ja {
    font-size: 1.8rem;
  }

  .c-cta-banner__btn-arrow {
    width: 3.2rem;
    height: 3.2rem;
  }

  /* --- Support --- */
  .p-support {
    padding: 5.6rem 0;
    margin-top: 0;
  }

  .p-support__inner {
    padding: 0 2.9rem;
  }

  .p-support__overview {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
    padding-left: 0;
    align-items: flex-start;
  }

  .p-support__diagram {
    width: 31.7rem;
    max-width: 100%;
  }

  .p-support__desc {
    max-width: none;
  }

  .p-support__desc p {
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .p-support__heading {
    margin-bottom: 3.2rem;
  }

  .p-support__label-line {
    width: 2.4rem;
  }

  .p-support__label-text {
    font-size: 1.4rem;
  }

  .p-support__cards {
    flex-direction: column;
    gap: 1.6rem;
  }

  .p-support__card {
    width: 100%;
    min-height: auto;
    border-radius: 1.2rem;
    padding: 1.6rem 1.6rem 2.4rem 2.4rem;
  }

  .p-support__card-icon {
    width: 5.6rem;
    height: 5.6rem;
  }

  .p-support__card-icon img {
    width: 4rem;
    height: 4rem;
  }

  .p-support__card-title {
    font-size: 1.8rem;
    margin-top: 4.8rem;
  }

  .p-support__card-text {
    font-size: 1.4rem;
  }

  .p-support__card {
    width: 100%;
    min-height: auto;
    border-radius: 1.2rem;
    padding: 1.6rem 1.6rem 2.4rem 2.4rem;
  }

  .p-support__card-icon {
    top: 1.6rem;
    right: 1.6rem;
    width: 5.6rem;
    height: 5.6rem;
  }

  .p-support__card-icon img {
    width: 4rem;
    height: 4rem;
  }

  .p-support__card-title {
    margin-top: 5.2rem;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }

  .p-support__card-text {
    font-size: 1.4rem;
  }

  .p-support__deco {
    display: none;
  }

  /* --- Overview --- */
  .p-overview {
    padding: 5.6rem 0 4rem;
  }

  .p-overview__inner {
    padding: 0 2.9rem;
  }

  .p-overview .c-section-heading {
    margin-bottom: 3.2rem;
  }

  .p-overview__block {
    border-radius: 1.2rem;
    padding: 4rem 2rem;
    margin-bottom: 1.6rem;
  }

  .p-overview__block-title {
    font-size: 2.1rem;
    margin-bottom: 2rem;
  }

  .p-overview__block-desc {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .p-overview__schedule {
    margin-bottom: 2rem;
  }

  .p-overview__schedule-title {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }

  .p-overview__table-wrap {
    position: relative;
    overflow: hidden;
  }

  .p-overview__table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .p-overview__table-scroll::-webkit-scrollbar {
    display: none;
  }

  .p-overview__scrollbar-track {
    margin-top: 1.2rem;
    height: 0.4rem;
    border-radius: 10rem;
    background-color: #e4edf0;
    position: relative;
    overflow: hidden;
  }

  .p-overview__scrollbar-thumb {
    height: 100%;
    border-radius: 10rem;
    background-color: #b9cde6;
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    transition: left 0.1s ease;
  }

  .p-overview__table-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2rem;
    height: 100%;
    background: linear-gradient(
      to left,
      rgba(115, 115, 115, 0.3) 0%,
      transparent 100%
    );
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
  }

  .p-overview__table {
    min-width: 34.6rem;
  }

  .p-overview__table th,
  .p-overview__table td {
    font-size: 1.4rem;
    padding: 1.2rem;
  }

  .c-block {
    border-radius: 1.2rem;
    padding: 4rem 2rem;
    margin-bottom: 1.6rem;
    overflow: hidden;
  }

  .c-block__title {
    font-size: 2.1rem;
    margin-bottom: 2rem;
  }

  .c-dl__row {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.6rem 0;
  }

  .c-dl__row dt {
    width: auto;
    font-size: 1.6rem;
  }

  .c-dl__row dd {
    font-size: 1.5rem;
  }

  .c-dl__row:last-child {
    border-bottom: none;
  }

  .c-note {
    padding: 1.6rem 1.2rem;
  }

  .c-note p {
    font-size: 1.4rem;
  }

  .c-divider {
    margin: 2rem 0;
  }

  .c-table th,
  .c-table td {
    font-size: 1.4rem;
    padding: 1.2rem;
  }

  .c-table {
    min-width: 34.6rem;
    width: max-content;
  }

  .p-overview__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    position: relative;
  }

  .c-section-heading__title img {
    display: block;
    height: auto;
    max-width: 100%;
  }

  .p-news .c-section-heading__title img {
    width: 8.4rem;
  }

  .p-about .c-section-heading__title img {
    width: 18.5rem;
  }

  .p-support .c-section-heading__title img {
    width: 22.9rem;
  }

  .p-overview .c-section-heading__title img {
    width: 30.7rem;
  }

  .p-community .c-section-heading__title img {
    width: auto;
    height: 6.8rem;
  }

  /* --- FAQ --- */
  .p-faq {
    padding: 5.9rem 0 5.4rem;
  }

  .p-faq__inner {
    flex-direction: column;
    padding: 0 2.9rem;
    gap: 0;
  }

  .p-faq .c-section-heading__title img {
    width: 6.4rem;
  }

  .p-faq .c-section-heading {
    margin-bottom: 3.2rem;
  }

  .p-faq__heading {
    width: auto;
  }

  .p-faq__list {
    max-width: none;
    gap: 2rem;
  }

  .p-faq__item {
    border-radius: 1.2rem;
    padding: 2.4rem 2rem;
  }

  .p-faq__q-icon {
    align-self: flex-start;
    margin-top: 0.2rem;
  }

  .p-faq__q-text {
    font-size: 1.6rem;
  }

  .p-faq__q-toggle {
    margin-left: 1.6rem;
  }

  .p-faq__answer p {
    font-size: 1.5rem;
  }

  /* --- Contact --- */
  .p-contact {
    border-radius: 1.2rem;
    padding: 4rem 2rem;
    margin: 0 2.9rem 5.9rem;
  }

  .p-contact__heading {
    margin-bottom: 2rem;
  }

  .p-contact .c-section-heading--white {
    margin-bottom: 2rem;
  }

  .p-contact .c-section-heading__title img {
    width: 12rem;
    height: auto;
  }

  .p-contact__section {
    gap: 1.2rem;
  }

  .p-contact__section-title {
    font-size: 1.8rem;
  }

  .p-contact__faq-btn {
    width: 100%;
  }

  .p-contact__divider {
    margin: 2rem 0;
  }

  .p-contact__section-desc {
    font-size: 1.5rem;
  }

  .p-contact__pill-btn {
    width: 100%;
    height: 5.6rem;
    font-size: 1.5rem;
    padding: 0 1.6rem;
  }

  .p-contact__info-title {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }

  .p-contact__info-text {
    font-size: 1.5rem;
  }

  .p-contact__info-note {
    font-size: 1.4rem;
  }

  .p-contact__note-box {
    padding: 1.6rem 1.2rem;
  }

  .p-contact__note-box p {
    font-size: 1.4rem;
  }

  /* --- Spread deco (contact上) --- */
  .p-spread-deco--contact {
    display: block;
    margin-bottom: -0.8rem;
  }

  .p-spread-deco--contact .p-spread-deco__ticker .p-spread-deco__img {
    margin-right: 10rem;
  }

  .p-spread-deco__img {
    height: 4rem;
  }
}
