:root {
  --one-unit: 1vw;
  --browser-zoom: 1;
  --section-max-width: 9999px;
  --spx-stopper-max: 9999px;
  --spx-stopper-min: 0px;
  --scrollbar-width: 0px;
  --full-viewport: calc(100 * var(--one-unit) * var(--browser-zoom));
  --scaling-factor: clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));
  --theme-spx-ratio: calc(var(--scaling-factor) / 1280);
  --color_11: 255, 255, 255;
  --color_15: 0, 0, 0;
  --color_14: 79, 79, 79;
  --color_18: 26, 106, 255;
  --color_13: 148, 148, 148;
  --site-top-offset: 0px;
  --site-width: 980px;
  --font_2: normal normal normal calc(42 * var(--theme-spx-ratio)) / 1.3em "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font_9: normal normal normal calc(14 * var(--theme-spx-ratio)) / 1.6em "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  min-height: 100%;
  font-family: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  background: rgb(var(--color_11));
  color: rgb(var(--color_15));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: calc(var(--site-top-offset) + 16px);
  width: auto;
  height: auto;
  z-index: 100002;
  padding: 12px 20px;
  background: #fff;
  border: 2px solid #116dff;
  border-radius: 4px;
  clip: auto;
}

.site-root {
  padding-top: var(--site-top-offset);
  position: relative;
}

/* ヘッダー */
.site-header {
  position: relative;
  z-index: 10;
}

.site-header__inner {
  max-width: 100%;
  padding: 1%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  justify-items: center;
  gap: 0;
  min-height: clamp(55px, 10.8vw, 120px);
}

.site-title {
  margin: 0;
  text-align: center;
  width: min(81%, 800px);
  font-weight: 800;
  font-style: normal;
  font-size: clamp(28px, calc(42 * (100vw / 1280)), 54px);
  line-height: 1.3;
  color: rgb(var(--color_15));
  letter-spacing: 0.1em;
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* 横並びメニュー stylableCss */
.nav-desktop {
  width: min(71.2%, 900px);
  margin-top: 1.5%;
}

.nav-desktop__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: calc(100% + 8px);
  margin-left: -4px;
  margin-right: -4px;
}

.nav-desktop__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  margin: 4px;
  border: 2px solid #000;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  border-top: 2px solid rgba(255, 255, 255, 0);
  color: #000;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4em;
  letter-spacing: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.nav-desktop__link:hover {
  border-bottom: 2px solid #000;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.nav-desktop__link.is-current {
  border-bottom: 2px solid #000;
  border-top: 2px solid rgba(255, 255, 255, 0);
}

/* ハンバーガー: デスクトップでは非表示 */
.hamburger-btn {
  display: none;
  position: absolute;
  right: 3.6%;
  top: 50%;
  transform: translateY(-50%);
  width: 31px;
  height: 31px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: #000;
}

.site-header__socials {
  position: absolute;
  right: 3.6%;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-header__social {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.site-header__social:hover {
  transform: scale(1.06);
  background: rgba(0, 0, 0, 0.06);
}

.site-header__social-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (min-width: 751px) {
  .site-header__socials {
    gap: 12px;
  }

  .site-header__social {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 750px) {
  .site-header__socials {
    right: calc(3.6% + 42px);
  }
}

.hamburger-btn__svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* デスクトップ: スクロール後にヘッダーを出す浮動メニューボタン */
.scroll-header-backdrop {
  display: none;
}

.scroll-nav-fab {
  display: none;
}

@media (min-width: 751px) {
  .scroll-header-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100004;
    background: rgba(var(--color_15), 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s;
  }

  .scroll-header-backdrop.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .scroll-nav-fab {
    display: flex;
    position: fixed;
    right: clamp(12px, 2vw, 28px);
    bottom: clamp(16px, 4vw, 32px);
    z-index: 100006;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgb(var(--color_11));
    color: rgb(var(--color_15));
    border: 2px solid rgb(var(--color_15));
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .scroll-nav-fab:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
  }

  .scroll-nav-fab__icon {
    width: 24px;
    height: 24px;
    display: block;
  }

  .site-header.site-header--reveal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100005;
    background: rgb(var(--color_11));
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.12);
    animation: scroll-header-reveal 0.32s ease;
  }
}

@keyframes scroll-header-reveal {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 750px) {
  .scroll-header-backdrop,
  .scroll-nav-fab {
    display: none !important;
  }
}

/* ヒーローセクション */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-section__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.234356689453125;
}

@media (max-width: 750px) {
  .hero-section__media {
    aspect-ratio: 1 / 0.48818108974358976;
  }
}

.hero-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.hero-section {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
}

.hero-section__media {
  grid-area: 1 / 1;
}

.hero-section__btn-wrap {
  grid-area: 1 / 1;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero-section__btn-wrap > * {
  pointer-events: auto;
}

.hero-section__btn-wrap--center {
  justify-content: center;
}

.hero-section__btn-wrap--start {
  justify-content: flex-start;
}

.hero-section--voice .hero-section__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(55, 55, 55, 0.28);
  pointer-events: none;
}

/* ボタン（SiteButton 変数近似） */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  width: 100%;
  padding: max(0.5px, calc(0.0015625 * (100vw - var(--scrollbar-width))))
    max(0.5px, calc(0.0015625 * (100vw - var(--scrollbar-width))));
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: max(0.5px, calc(0.0265625 * (100vw - var(--scrollbar-width))));
  font-weight: 800;
  line-height: 1.6em;
  text-align: center;
  color: rgb(var(--color_11));
  background: rgba(var(--color_11), 0);
  border: 0 solid rgb(var(--color_15));
  transition: color 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
}

@media (max-width: 750px) {
  .btn-cta {
    padding: max(0.5px, calc(0.0015615 * (100vw - var(--scrollbar-width))))
      max(0.5px, calc(0.0015615 * (100vw - var(--scrollbar-width))));
    font-size: max(0.5px, calc(0.0641026 * (100vw - var(--scrollbar-width))));
  }
}

.btn-cta--transparent:hover {
  background: rgba(var(--color_15), 0.4);
  color: rgb(var(--color_11));
}

.btn-cta--subtle {
  background: rgba(var(--color_15), 0.1);
}

.btn-cta--subtle:hover {
  background: rgba(var(--color_15), 0.4);
}

.btn-cta--soon {
  background: rgba(var(--color_15), 0.2);
}

.btn-cta--soon:hover {
  background: rgba(var(--color_15), 0.4);
}

/* フッター */
.site-footer {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.site-footer__text {
  margin: 0;
  width: 62.5%;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 750px) {
  .site-footer__text {
    font-size: 10px;
  }
}

.site-footer__link {
  text-decoration: underline;
}

.site-footer__link:hover {
  color: rgb(var(--color_18));
}

/* アクセシビリティ用アンカー（元ページと同様スクリーンリーダー向け） */
.scroll-anchor {
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
}

/* モバイルメニュー */
.mobile-menu-layer {
  position: fixed;
  inset: 0;
  z-index: 100001;
  pointer-events: none;
}

.mobile-menu-layer:not([hidden]) {
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  top: var(--site-top-offset);
  background: rgba(var(--color_15), 0.8);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-menu-layer.is-open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: var(--site-top-offset);
  right: 0;
  left: auto;
  width: min(300px, 100vw);
  height: calc(100vh - var(--site-top-offset));
  background: rgba(var(--color_15), 0.8);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  overflow: hidden;
}

@media (max-width: 750px) {
  .mobile-menu-panel {
    width: 100vw;
    max-width: 100vw;
  }
}

.mobile-menu-layer.is-open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-nav {
  flex: 1;
  overflow-y: auto;
  padding: 100px 0 200px;
  width: 60%;
  margin: 0 auto;
  align-self: flex-start;
}

@media (max-width: 750px) {
  .mobile-menu-nav {
    width: 46.15%;
  }
}

.mobile-menu-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-nav__link {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  color: rgb(var(--color_11));
  border-radius: 90px;
}

.mobile-menu-nav__link.is-current {
  color: rgb(var(--color_18));
}

.mobile-menu-close {
  position: sticky;
  align-self: flex-end;
  margin: 40px 40px 0 auto;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  z-index: 2;
}

.mobile-menu-close svg {
  width: 100%;
  height: 100%;
  fill: rgb(var(--color_11));
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 750px) {
  .nav-desktop {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    justify-items: start;
    padding: 0 0 0 4.5%;
    min-height: 55px;
  }

  .site-title {
    width: 65%;
    text-align: left;
    font-size: clamp(16px, 10vw, 38px);
    letter-spacing: 0;
  }
}

@media (min-width: 751px) {
  .mobile-menu-layer {
    display: none !important;
  }
}

@media (min-width: 751px) and (max-width: 1000px) {
  .site-header__inner {
    min-height: 90px;
  }

  .site-title {
    font-size: clamp(20px, 4vw, 42px);
  }
}

.subpage-main {
  padding: clamp(24px, 4vw, 48px) 4.5% 80px;
  max-width: var(--site-width);
  margin: 0 auto;
}

.subpage-title {
  margin: 0 0 1rem;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.1em;
}

.subpage-lead {
  margin: 0 0 1.5rem;
  font-size: 16px;
  line-height: 1.7;
  color: rgb(var(--color_14));
}

.subpage-back {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 14px;
  text-decoration: underline;
  color: rgb(var(--color_18));
}

.subpage-back:hover {
  opacity: 0.85;
}

/* Coming soon ヒーロー（Subscription / Voice / Brand 共通） */
.coming-soon-main {
  padding: 0;
  margin: 0;
}

.voice-page .coming-soon-hero {
  justify-content: flex-start;
  padding: clamp(24px, 5vw, 56px) 0 clamp(72px, 10vw, 120px);
}

.voice-page .coming-soon-hero__bg {
  background: #ffffff;
  background-image: none;
}

.voice-page__inner {
  width: min(var(--site-width), calc(100% - 9%));
  margin: 0 auto;
}

.voice-page .coming-soon-hero__content {
  padding: 0;
  justify-content: center;
  align-items: flex-start;
}

.voice-page .coming-soon-hero__title {
  color: rgb(var(--color_15));
  text-shadow: none;
  font-size: clamp(28px, 7vw, 46px);
  letter-spacing: 0.12em;
  margin-bottom: clamp(18px, 4vw, 28px);
}

.voice-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 751px) {
  .voice-reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 1100px) {
  .voice-reviews__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.voice-review-card {
  background: #edf1f4;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.voice-review-card__meta {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.voice-review-card__meta span {
  font-weight: 600;
  margin-left: 2px;
}

.voice-review-card__sub {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.78);
}

.voice-review-card__body {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.86);
}

.coming-soon-hero {
  position: relative;
  min-height: max(0.5px, calc(100vh - clamp(96px, 16vw, 150px)));
  min-height: max(0.5px, calc(100dvh - clamp(96px, 16vw, 150px)));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.coming-soon-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0c8a9e;
  background-image: url("images/サブス.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.coming-soon-hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-soon-hero__title {
  margin: 0;
  max-width: 95vw;
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(32px, min(11vw, max(0.5px, calc(0.0875 * (100vw - var(--scrollbar-width))))), 112px);
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}

.coming-soon-hero__foot {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0;
  text-align: center;
}

.coming-soon-hero__back {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: rgb(var(--color_15));
  text-decoration: underline;
  text-underline-offset: 3px;
}

.coming-soon-hero__back:hover {
  opacity: 0.92;
}

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

/* Profile ページ（コンクリート背景・画像レイアウト準拠） */
.profile-page {
  margin: 0;
  padding: clamp(28px, 4.5vw, 56px) 0 clamp(48px, 8vw, 88px);
  background-color: #c9c9c9;
  background-image: url("images/コンクリートの壁.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: #141414;
  font-family: "Noto Sans JP", "DM Sans", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.profile-page__inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 4.5%, 32px);
}

.profile-hero {
  position: relative;
  margin: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.35rem, 2.75vw, 2rem) 0 clamp(1.35rem, 2.75vw, 2rem);
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
}

.profile-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 34%);
  gap: clamp(1rem, 3vw, 2.25rem);
  align-items: start;
}

.profile-hero__figure {
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: min(320px, 100%);
}

.profile-hero__photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

.profile-hero__title {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  transform: translateY(calc(-100% - 2px));
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(26px, min(42px, max(0.5px, calc(0.028 * (100vw - var(--scrollbar-width))))), 42px);
  line-height: 1;
  letter-spacing: 0.08em;
  color: #000;
}

.profile-hero__role {
  margin: 0 0 clamp(0.85rem, 2vw, 1.15rem);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.5;
  font-weight: 700;
  color: #000;
}

.profile-hero__row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(0.6rem, 1.75vw, 1.25rem);
  margin: 0 0 clamp(0.85rem, 2vw, 1.15rem);
}

.profile-hero__name-ja {
  margin: 0;
  font-weight: 700;
  font-size: clamp(40px, min(88px, max(0.5px, calc(0.055 * (100vw - var(--scrollbar-width))))), 88px);
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: #000;
}

.profile-hero__name-en {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(16px, min(34px, max(0.5px, calc(0.022 * (100vw - var(--scrollbar-width))))), 34px);
  line-height: 1.12;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  color: #000;
  flex-shrink: 0;
  align-self: center;
}

.profile-hero__tagline {
  margin: 0 0 clamp(0.55rem, 1.25vw, 0.85rem);
  font-weight: 700;
  font-size: clamp(15px, 1.85vw, 18px);
  line-height: 1.45;
  color: #000;
}

.profile-hero__meta {
  margin: 0;
  font-size: clamp(13px, 1.55vw, 15px);
  line-height: 1.6;
  font-weight: 400;
  color: #000;
}

.profile-divider {
  margin: clamp(1.25rem, 3vw, 2rem) 0 clamp(1.5rem, 3.5vw, 2.25rem);
  border: none;
  border-top: 1px solid #000;
  opacity: 0.85;
}

.profile-career {
  margin: 0;
}

.profile-career__title {
  margin: 0 0 clamp(0.85rem, 2vw, 1.25rem);
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(19px, 2.5vw, 26px);
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #000;
}

.profile-timeline {
  margin: 0;
  padding: 0 0 0 1.2em;
  font-size: clamp(15px, 1.65vw, 16px);
  line-height: 1.8;
  color: #141414;
}

.profile-timeline li {
  margin: 0 0 0.55em;
}

.profile-timeline li:last-child {
  margin-bottom: 0;
}

.profile-back {
  margin: clamp(2rem, 5vw, 3rem) 0 0;
}

.profile-page .subpage-back {
  color: rgb(var(--color_18));
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.profile-sponsors {
  margin: clamp(2.25rem, 6vw, 3.75rem) 0 0;
}

.profile-sponsors__title {
  margin: 0 0 clamp(0.85rem, 2vw, 1.25rem);
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: clamp(19px, 2.5vw, 28px);
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: #000;
}

.profile-sponsors__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 751px) {
  .profile-sponsors__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 1100px) {
  .profile-sponsors__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.profile-sponsor-card {
  display: grid;
  grid-template-rows: 88px auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: #edf1f4;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.profile-sponsor-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.profile-sponsor-card__logo {
  width: 100%;
  height: 88px;
  object-fit: contain;
  display: block;
}

.profile-sponsor-card__logo--text {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.82);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  border: 1px dashed rgba(0, 0, 0, 0.18);
}

.profile-sponsor-card__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.86);
  word-break: break-word;
}

/* Lessons: LINE 予約リンク */
.lessons-package__cta {
  margin: 14px 0 0;
}

.lessons-line-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.85);
  background: #06c755;
  color: #000;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.lessons-line-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  background: #08d85c;
}

@media (max-width: 600px) {
  .profile-hero__inner {
    grid-template-columns: 1fr;
  }

  .profile-hero__figure {
    justify-self: center;
    max-width: min(280px, 88vw);
    order: 1;
    margin-top: 0.5rem;
  }

  .profile-hero__text {
    order: 0;
  }

  .profile-hero__title {
    position: static;
    transform: none;
    margin: 0 0 0.75rem;
    text-align: right;
  }

  .profile-hero__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-hero__name-en {
    margin-top: 0.25rem;
  }
}

/* Message ページ（Wix blank 相当: ヒーロー＋白文字＋スローガン） */
.message-main {
  padding: 0;
  margin: 0;
}

.message-hero {
  --message-hero-min-h: max(0.5px, calc(0.594525 * (100vw - var(--scrollbar-width))));
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: var(--message-hero-min-h);
  color: #fff;
}

@media (max-width: 750px) {
  .message-hero {
    --message-hero-min-h: max(0.5px, calc(0.9949513 * (100vw - var(--scrollbar-width))));
  }
}

@media (min-width: 751px) and (max-width: 1000px) {
  .message-hero {
    --message-hero-min-h: max(0.5px, calc(0.5072839 * (100vw - var(--scrollbar-width))));
  }
}

.message-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.message-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.message-hero__img-dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.message-hero__content {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  min-height: var(--message-hero-min-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4.5%, 2rem);
  gap: clamp(1.75rem, 4.5vw, 3rem);
}

.message-hero__headline {
  box-sizing: border-box;
  width: min(55.390625%, 542px);
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 750px) {
  .message-hero__headline {
    width: min(80.42138569555189%, 100%);
  }
}

.message-hero__richtext {
  box-sizing: border-box;
  align-self: center;
  width: min(1100px, 100%);
  max-width: min(1100px, 100%);
  margin: 0;
  padding: 0;
  text-align: center;
  overflow: visible;
}

@media (max-width: 750px) {
  .message-hero__richtext {
    max-width: 100%;
  }
}

.message-hero__p {
  margin: 0 auto 0.35em;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: max(0.5px, calc(0.0109375 * (100vw - var(--scrollbar-width))));
  line-height: 1.6;
  color: #fff;
  white-space: nowrap;
  width: max-content;
  max-width: none;
}

.message-hero__p:last-child {
  margin-bottom: 0;
}

@media (max-width: 750px) {
  .message-hero__p {
    font-size: max(0.5px, calc(0.025641 * (100vw - var(--scrollbar-width))));
  }
}

.message-hero__h3 {
  margin: 0;
  width: max-content;
  max-width: 100%;
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: max(0.5px, min(calc(0.0546875 * (100vw - var(--scrollbar-width))), 76px));
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 750px) {
  .message-hero__h3 {
    font-size: max(0.5px, calc(0.0794001 * (100vw - var(--scrollbar-width))));
    white-space: normal;
  }
}

/* Lessons & Guides ページ */
.lessons-main {
  padding: 0;
  margin: 0;
}

.lessons-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: max(0.5px, calc(0.1328125 * (100vw - var(--scrollbar-width))));
  color: #fff;
}

.lessons-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lessons-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.lessons-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--color_13), 0.4);
  pointer-events: none;
}

.lessons-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: clamp(1rem, 3vw, 2rem);
}

.lessons-hero__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  color: #fff;
  font-size: clamp(17px, min(60px, max(0.5px, calc(0.028125 * (100vw - var(--scrollbar-width))))), 60px);
}

@media (max-width: 1000px) {
  .lessons-hero__title {
    font-size: clamp(17px, min(60px, max(0.5px, calc(0.0390625 * (100vw - var(--scrollbar-width))))), 60px);
  }
}

@media (max-width: 750px) {
  .lessons-hero__title {
    font-size: clamp(17px, min(60px, max(0.5px, calc(0.0512821 * (100vw - var(--scrollbar-width))))), 60px);
  }
}

.lessons-split {
  background: rgb(var(--color_11));
  color: rgb(var(--color_15));
}

.lessons-split__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5.5vw, 4.25rem);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 4.5%, 2rem);
  align-items: start;
}

@media (max-width: 750px) {
  .lessons-split__inner {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.25rem);
    min-height: 0;
  }
}

.lessons-split__h2 {
  margin: 0 0 clamp(0.75rem, 2vw, 1.15rem);
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(26px, min(60px, max(0.5px, calc(0.0359375 * (100vw - var(--scrollbar-width))))), 60px);
  line-height: 1.4;
  text-align: left;
}

.lessons-split__body p {
  margin: 0 0 0.65em;
  font-size: 16px;
  line-height: 1.72;
}

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

.lessons-split__col--packages .lessons-packages {
  max-width: none;
  margin: 0;
  padding: 0;
}

.lessons-packages {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(1rem, 2.5vw, 1.75rem) clamp(1.25rem, 4.5%, 2rem)
    clamp(1.25rem, 3.5vw, 2.25rem);
}

.lessons-package {
  border-top: 1px solid rgba(var(--color_15), 0.2);
  padding: clamp(0.85rem, 2vw, 1.35rem) 0;
}

.lessons-package:first-child {
  border-top: none;
  padding-top: 0;
}

.lessons-package__title {
  margin: 0 0 0.55rem;
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, min(24px, max(0.5px, calc(0.015625 * (100vw - var(--scrollbar-width))))), 24px);
  line-height: 1.5;
}

.lessons-package__body p {
  margin: 0 0 0.35em;
  font-size: 16px;
  line-height: 1.6;
}

.lessons-carousel-section {
  background: rgb(var(--color_11));
  padding: 0 0 clamp(3rem, 6vw, 5rem);
}

.lessons-carousel {
  max-width: 100%;
  margin: 0 auto;
}

.lessons-carousel__viewport {
  overflow: hidden;
  width: 100%;
}

.lessons-carousel__track {
  display: flex;
  flex-direction: row;
  transition: transform 0.45s cubic-bezier(0.87, 0, 0.13, 1);
  will-change: transform;
}

.lessons-slide {
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 100%;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.lessons-slide--guide {
  padding: 0;
  /* min-height だけだと中身の高さに引っ張られるため、高さを明示して背景帯を固定 */
  height: min(24vw, 260px);
  min-height: 200px;
  max-height: 260px;
  position: relative;
  display: block;
  overflow: hidden;
}

.lessons-slide__guide-bg {
  position: absolute;
  inset: 0;
  background-color: #f0e8e2;
  background-image: url("images/グラデーションの背景.webp");
  background-size: cover;
  background-position: 50% 65%;
}

.lessons-slide__guide-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 38rem;
  height: 100%;
  max-height: 100%;
  box-sizing: border-box;
  padding: 0.65rem clamp(1.25rem, 7vw, 4rem);
  text-align: left;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.lessons-slide__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

@media (max-width: 600px) {
  .lessons-slide__media {
    grid-template-columns: 1fr;
  }
}

.lessons-slide__img {
  width: 100%;
  height: clamp(160px, 28vw, 280px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.lessons-slide__panel {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 0 1rem;
}

.lessons-slide__h2 {
  margin: 0 0 0.75rem;
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, min(48px, max(0.5px, calc(0.028125 * (100vw - var(--scrollbar-width))))), 48px);
  line-height: 1.3;
}

.lessons-slide--guide .lessons-slide__h2 {
  margin: 0 0 0.45rem;
  color: #0a0a0a;
  font-family: "Plus Jakarta Sans", "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.lessons-slide__text p {
  margin: 0 0 0.75em;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 750px) {
  .lessons-slide__text p {
    font-size: 16px;
  }
}

.lessons-slide--guide .lessons-slide__text {
  flex-shrink: 0;
}

.lessons-slide--guide .lessons-slide__text p {
  margin: 0 0 0.28em;
  color: #111;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(12px, 1.25vw, 15px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.lessons-slide--guide .lessons-slide__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 750px) {
  .lessons-slide--guide {
    height: min(42vw, 240px);
    max-height: 240px;
    min-height: 180px;
  }

  .lessons-slide--guide .lessons-slide__text p {
    font-size: clamp(11px, 3.2vw, 14px);
    font-weight: 700;
  }
}

.lessons-slide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 12px 28px;
  border-radius: 999px;
  background: rgb(61, 155, 233);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.lessons-slide__btn:hover {
  filter: brightness(1.06);
}

.lessons-slide__btn--guide {
  margin-top: 0.5rem;
  padding: 8px 22px;
  border-radius: 50px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  align-self: flex-start;
  flex-shrink: 0;
}

.lessons-slide__btn--guide:hover {
  filter: brightness(0.88);
}
