:root {
  --blue: #1e88e5;
  --blue-deep: #1565c0;
  --yellow-marker: #ffd600;
  --text: #1a1a1a;
  --font: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic UI", sans-serif;
  --feature-icon: #1e88e5;
  --feature-navy: #003366;
  --feature-font: "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", sans-serif;
  --content-gutter: clamp(1rem, 5vw, 3.25rem);
  --header-bg: rgba(255, 255, 255, 0.72);
  --header-bg-solid: rgba(255, 255, 255, 0.88);
  --header-shadow: 0 1px 0 rgba(0, 51, 102, 0.06);
  --cta-orange-a: #ff9a35;
  --cta-orange-b: #f55a1a;
  --cta-line-green: #06c755;
}

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

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: #fff;
}

/* モバイル下部固定CTA（index.php のみ） */
.mobile-fixed-cta-bar {
  display: none;
}

.mobile-fixed-cta {
  display: none;
}

/* 768px まで：スマホ・タブレット縦など（720px だと端末によっては表示されない） */
@media (max-width: 768px) {
  .mobile-fixed-cta-bar {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 390;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -3px 20px rgba(0, 51, 102, 0.12);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mobile-fixed-cta__lead {
    margin: 0;
    padding: 0.4rem var(--content-gutter) 0.32rem;
    font-family: var(--feature-font);
    font-weight: 800;
    font-size: clamp(0.78rem, 3.4vw, 0.92rem);
    line-height: 1.35;
    text-align: center;
    color: var(--blue);
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(0, 51, 102, 0.1);
    text-shadow:
      0 0 8px rgba(255, 255, 255, 1),
      0 0 18px rgba(255, 255, 255, 0.96),
      0 0 32px rgba(255, 255, 255, 0.9),
      2px 0 5px rgba(255, 255, 255, 0.98),
      -2px 0 5px rgba(255, 255, 255, 0.98),
      0 2px 5px rgba(255, 255, 255, 0.98),
      0 -2px 5px rgba(255, 255, 255, 0.98);
  }

  .mobile-fixed-cta__lead-icon {
    margin-right: 0.22em;
    font-style: normal;
  }

  .mobile-fixed-cta {
    display: flex !important;
    align-items: stretch;
    gap: 0.45rem;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    padding: 0.42rem var(--content-gutter);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  body:has(.mobile-fixed-cta-bar) {
    padding-bottom: calc(6.95rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-fixed-cta__btn {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.38rem;
    min-height: 3.2rem;
    padding: 0.42rem 0.55rem;
    border-radius: 0.65rem;
    text-decoration: none;
    font-family: var(--feature-font);
    font-weight: 800;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.96);
    box-shadow:
      0 3px 0 rgba(0, 0, 0, 0.14),
      0 5px 14px rgba(0, 0, 0, 0.1);
    transition:
      transform 0.12s ease,
      filter 0.12s ease;
  }

  .mobile-fixed-cta__btn:active {
    transform: translateY(1px);
    filter: brightness(0.97);
  }

  .mobile-fixed-cta__btn--trial {
    background: linear-gradient(180deg, var(--cta-orange-a) 0%, var(--cta-orange-b) 100%);
    box-shadow:
      0 3px 0 rgba(180, 70, 0, 0.42),
      0 5px 14px rgba(0, 0, 0, 0.1);
  }

  .mobile-fixed-cta__btn--line {
    background: linear-gradient(180deg, #12d773 0%, #05b34a 100%);
    box-shadow:
      0 3px 0 rgba(4, 110, 55, 0.48),
      0 5px 14px rgba(0, 0, 0, 0.1);
  }

  .mobile-fixed-cta__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.12;
    gap: 0.03rem;
    flex: 1;
    min-width: 0;
  }

  .mobile-fixed-cta__label-line {
    display: block;
    font-size: clamp(0.74rem, 3.25vw, 0.9rem);
    letter-spacing: 0.02em;
  }

  .mobile-fixed-cta__icon {
    flex-shrink: 0;
    font-size: 1.42rem;
    line-height: 1;
    font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
    opacity: 0.96;
  }

  .mobile-fixed-cta__icon--img {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
  }

  .mobile-fixed-cta__line-img {
    display: block;
    width: 36px;
    height: auto;
  }

  .mobile-fixed-cta__btn:focus-visible {
    outline: 2px solid rgba(30, 136, 229, 0.65);
    outline-offset: 2px;
  }
}

/* お問い合わせなどのスクロール用アンカー（視覚的なブロックは持たない） */
.knock-page-anchor {
  scroll-margin-top: 5rem;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.page {
  background: #ffffff;
  padding: clamp(1.6rem, 4.6vw, 2.6rem) 0 clamp(2.2rem, 6vw, 3.4rem);
}

.page__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

.page__title {
  margin: 0 0 0.9rem;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(0, 51, 102, 0.95);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}

.page__lead {
  margin: 0 0 1.4rem;
  font-family: var(--feature-font);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.8;
}

.page__section {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(0, 51, 102, 0.12);
}

.page__section h2 {
  margin: 0 0 0.6rem;
  font-family: var(--feature-font);
  font-weight: 900;
  color: rgba(0, 51, 102, 0.95);
  font-size: 1.1rem;
}

.page__section p,
.page__section li {
  font-family: var(--feature-font);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
}

.page__section ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.page__contact a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.page__contact-actions {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.page__contact-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  border: 2px solid rgba(0, 51, 102, 0.2);
  color: rgba(0, 51, 102, 0.95);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.page__contact-action:hover,
.page__contact-action:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 51, 102, 0.12);
}

.page__contact-action__main {
  font-size: 1.02rem;
}

.page__contact-action__sub {
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.75;
}

.page__contact-action--mail {
  background: #ffffff;
  border-color: rgba(0, 51, 102, 0.28);
}

.page__contact-action--line {
  background: var(--cta-line-green);
  border-color: rgba(4, 110, 55, 0.35);
  color: #fff;
  box-shadow: 0 3px 0 rgba(4, 110, 55, 0.45);
}

.page__contact-action--trial {
  background: linear-gradient(180deg, var(--cta-orange-a) 0%, var(--cta-orange-b) 100%);
  border-color: rgba(200, 90, 0, 0.45);
  color: #fff;
  box-shadow: 0 3px 0 rgba(180, 70, 0, 0.45);
}

.page__contact-action--mail.page__contact-action--disabled {
  pointer-events: none;
  opacity: 0.55;
  cursor: not-allowed;
}

.page__contact-branch {
  margin: 1.1rem 0 0;
  padding: 0;
  border: none;
  max-width: 28rem;
}

.page__contact-branch__legend {
  padding: 0;
  margin: 0 0 0.5rem;
  font-family: var(--feature-font);
  font-weight: 900;
  font-size: 0.95rem;
  color: rgba(0, 51, 102, 0.95);
}

.page__contact-branch__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.page__contact-branch__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.78);
}

.page__contact-branch__input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--blue);
}

.page__contact-channels-root {
  margin-top: 0.85rem;
}

.page__contact-actions--channels {
  margin-top: 0.85rem;
}

.page__contact-note {
  margin: 0.85rem 0 0;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.62);
}

.page__contact-note--warn {
  color: rgba(140, 50, 0, 0.92);
}

.page__contact-noscript-mails {
  margin: 0.4rem 0 0;
  padding-left: 1.2rem;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.7;
}

.page__contact-noscript-mails a {
  color: var(--blue);
}

.line-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.line-modal.is-open {
  display: flex !important;
}

.line-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 60, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.line-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 22rem;
  padding: 1.35rem 1.25rem 1.15rem;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 30, 60, 0.22);
  border: 1px solid rgba(0, 51, 102, 0.1);
}

.line-modal__title {
  margin: 0 0 0.45rem;
  font-family: var(--feature-font);
  font-weight: 900;
  font-size: 1.15rem;
  color: rgba(0, 51, 102, 0.96);
  text-align: center;
}

.line-modal__lead {
  margin: 0 0 1rem;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.62);
  text-align: center;
}

.line-modal__choices {
  display: grid;
  gap: 0.65rem;
}

.line-modal__choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-family: var(--feature-font);
  font-weight: 900;
  text-align: center;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  border: 2px solid transparent;
}

.line-modal__choice:focus-visible {
  outline: 2px solid rgba(30, 136, 229, 0.65);
  outline-offset: 2px;
}

.line-modal__choice:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.line-modal__choice--nagara {
  background: rgba(0, 51, 102, 0.06);
  border-color: rgba(0, 51, 102, 0.22);
  color: rgba(0, 51, 102, 0.95);
}

.line-modal__choice--ogaki {
  background: rgba(6, 199, 85, 0.12);
  border-color: rgba(6, 160, 70, 0.35);
  color: rgba(0, 90, 40, 0.95);
}

.line-modal__choice-main {
  font-size: 1.02rem;
}

.line-modal__choice-sub {
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.78;
}

.line-modal__empty {
  margin: 0 0 0.75rem;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(140, 40, 20, 0.95);
  text-align: center;
}

.line-modal__cancel {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.55rem;
  border: none;
  border-radius: 0.5rem;
  background: rgba(0, 51, 102, 0.06);
  font-family: var(--feature-font);
  font-weight: 800;
  font-size: 0.9rem;
  color: rgba(0, 51, 102, 0.85);
  cursor: pointer;
}

.line-modal__cancel:hover,
.line-modal__cancel:focus-visible {
  background: rgba(0, 51, 102, 0.1);
  outline: none;
}

.page__contact-alert {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.65;
}

.page__contact-alert--success {
  background: rgba(30, 136, 229, 0.1);
  border: 1px solid rgba(30, 136, 229, 0.35);
  color: rgba(0, 51, 102, 0.92);
}

.page__contact-alert--error {
  background: rgba(200, 60, 40, 0.08);
  border: 1px solid rgba(200, 60, 40, 0.35);
  color: rgba(90, 20, 10, 0.95);
}

.page__contact-alert--error ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
}

.page__contact-form {
  max-width: 36rem;
  margin: 0 0 0.25rem;
  padding: 0;
  scroll-margin-top: 4.5rem;
}

.page__contact-form__title {
  margin: 1.1rem 0 0.65rem;
  font-family: var(--feature-font);
  font-weight: 900;
  font-size: 1.05rem;
  color: rgba(0, 51, 102, 0.95);
}

.page__form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.page__form-row {
  margin-bottom: 0.85rem;
}

.page__form-label {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--feature-font);
  font-weight: 800;
  font-size: 0.88rem;
  color: rgba(0, 51, 102, 0.9);
}

.page__form-req {
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(180, 50, 30, 0.95);
}

.page__form-input,
.page__form-textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(0, 51, 102, 0.22);
  border-radius: 0.45rem;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.85);
  background: #fff;
}

.page__form-input:focus-visible,
.page__form-textarea:focus-visible {
  outline: 2px solid rgba(30, 136, 229, 0.45);
  outline-offset: 1px;
  border-color: rgba(30, 136, 229, 0.55);
}

.page__form-textarea {
  min-height: 9rem;
  resize: vertical;
  line-height: 1.65;
}

.page__form-note {
  margin: 0.5rem 0 0;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.55);
}

.page__form-note a {
  color: var(--blue);
}

.page__form-actions {
  margin-top: 1rem;
}

.page__form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 0.75rem 1.4rem;
  border: none;
  border-radius: 0.65rem;
  font-family: var(--feature-font);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, var(--cta-orange-a) 0%, var(--cta-orange-b) 100%);
  box-shadow: 0 3px 0 rgba(180, 70, 0, 0.45);
}

.page__form-submit:hover,
.page__form-submit:focus-visible {
  filter: brightness(1.03);
  outline: none;
}

.page__updated {
  margin-top: 0.75rem;
  font-family: var(--feature-font);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.55);
}

.page__breadcrumb {
  margin: 0 0 1rem;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.55);
}

.page__breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.page__breadcrumb a:hover {
  text-decoration: underline;
}

.page__back {
  font-family: var(--feature-font);
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
}

.page__back:hover {
  text-decoration: underline;
}

.page__nav-bottom {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 51, 102, 0.12);
}

/* 校舎紹介LP（campus-nagara.php） */
.campus-lp {
  background: #ffffff;
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.campus-lp__hero {
  background: linear-gradient(165deg, rgba(232, 244, 255, 0.92) 0%, rgba(255, 255, 255, 0.98) 42%, #ffffff 100%);
  padding: clamp(1rem, 3vw, 1.5rem) 0 clamp(1.75rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgba(0, 51, 102, 0.08);
}

.campus-lp__hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

.campus-lp__breadcrumb {
  margin-bottom: 0.65rem;
}

.campus-lp__eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--feature-font);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 51, 102, 0.55);
}

.campus-lp__title {
  margin: 0 0 0.75rem;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(0, 51, 102, 0.96);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
}

.campus-lp__lead {
  margin: 0 0 1.35rem;
  max-width: 52rem;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.68);
}

.campus-lp__kv {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: stretch;
}

@media (min-width: 768px) {
  .campus-lp__kv {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }
}

.campus-lp__photo {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 51, 102, 0.08);
  box-shadow: 0 12px 36px rgba(0, 51, 102, 0.1);
}

.campus-lp__photo img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.campus-lp__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  align-content: start;
}

@media (max-width: 767px) {
  .campus-lp__facts {
    grid-template-columns: 1fr;
  }
}

.campus-lp__fact {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.85rem;
  background: #ffffff;
  border: 1px solid rgba(0, 51, 102, 0.1);
  box-shadow: 0 2px 12px rgba(0, 51, 102, 0.06);
}

.campus-lp__fact-icon {
  flex-shrink: 0;
  font-size: 1.55rem;
  color: rgba(0, 51, 102, 0.72);
  line-height: 1;
}

.campus-lp__fact-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.campus-lp__fact-label {
  font-family: var(--feature-font);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(0, 51, 102, 0.55);
}

.campus-lp__fact-value {
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.78);
}

.campus-lp__jump {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.campus-lp__jump-link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-family: var(--feature-font);
  font-weight: 800;
  font-size: 0.82rem;
  text-decoration: none;
  color: rgba(0, 51, 102, 0.92);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 51, 102, 0.14);
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
}

.campus-lp__jump-link:hover,
.campus-lp__jump-link:focus-visible {
  background: #ffffff;
  border-color: rgba(0, 51, 102, 0.28);
  transform: translateY(-1px);
}

.campus-lp__jump-link--accent {
  background: linear-gradient(180deg, var(--cta-orange-a) 0%, var(--cta-orange-b) 100%);
  border-color: rgba(200, 90, 0, 0.4);
  color: #fff;
  box-shadow: 0 2px 0 rgba(180, 70, 0, 0.35);
}

.campus-lp__jump-link--accent:hover,
.campus-lp__jump-link--accent:focus-visible {
  color: #fff;
  filter: brightness(1.03);
}

.campus-lp__main {
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
}

.campus-lp__container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

.campus-lp__block {
  margin-bottom: clamp(2rem, 5vw, 2.75rem);
  scroll-margin-top: 5rem;
}

.campus-lp__block-head {
  margin-bottom: 1rem;
}

.campus-lp__block-title {
  margin: 0 0 0.35rem;
  font-family: var(--feature-font);
  font-weight: 900;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  color: rgba(0, 51, 102, 0.96);
  letter-spacing: 0.02em;
}

.campus-lp__block-sub {
  margin: 0;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.55;
}

.campus-lp__block--program {
  padding: clamp(1.25rem, 3vw, 1.65rem);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(248, 252, 255, 0.98) 0%, rgba(232, 244, 255, 0.35) 100%);
  border: 1px solid rgba(0, 51, 102, 0.08);
}

.campus-lp__program-lead {
  margin: 0 0 1rem;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.68);
}

.campus-lp__link-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.campus-lp__link-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 0.65rem;
  font-family: var(--feature-font);
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  color: rgba(0, 51, 102, 0.95);
  background: #ffffff;
  border: 2px solid rgba(0, 51, 102, 0.14);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.campus-lp__link-chip:hover,
.campus-lp__link-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 51, 102, 0.28);
  box-shadow: 0 4px 14px rgba(0, 51, 102, 0.1);
}

.campus-lp__access-card {
  padding: clamp(1.15rem, 3vw, 1.45rem);
  border-radius: 1rem;
  border-left: 4px solid rgba(0, 51, 102, 0.35);
  background: rgba(248, 252, 255, 0.95);
  border-top: 1px solid rgba(0, 51, 102, 0.08);
  border-right: 1px solid rgba(0, 51, 102, 0.08);
  border-bottom: 1px solid rgba(0, 51, 102, 0.08);
}

.campus-lp__access-card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.campus-lp__access-icon {
  font-size: 1.5rem;
  color: rgba(0, 51, 102, 0.75);
}

.campus-lp__access-title {
  margin: 0;
  font-family: var(--feature-font);
  font-weight: 900;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(0, 51, 102, 0.95);
}

.campus-lp__access-text {
  margin: 0 0 0.65rem;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.68);
}

.campus-lp__access-note {
  margin: 0;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.52);
}

.campus-lp__faq-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .campus-lp__faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.campus-lp__faq-card {
  margin: 0;
  padding: 1rem 1rem;
  border-radius: 0.85rem;
  background: #ffffff;
  border: 1px solid rgba(0, 51, 102, 0.1);
  box-shadow: 0 4px 16px rgba(0, 51, 102, 0.06);
}

.campus-lp__faq-q {
  margin: 0 0 0.5rem;
  font-family: var(--feature-font);
  font-weight: 900;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(0, 51, 102, 0.94);
}

.campus-lp__faq-a {
  margin: 0;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.68);
}

.campus-lp__faq-a a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.campus-lp__cta-band {
  margin: clamp(2rem, 5vw, 2.75rem) calc(-1 * var(--content-gutter)) 0;
  padding: clamp(1.75rem, 4vw, 2.5rem) var(--content-gutter);
  background: linear-gradient(165deg, rgba(255, 248, 240, 0.95) 0%, rgba(255, 252, 248, 0.98) 40%, rgba(232, 244, 255, 0.45) 100%);
  border-top: 1px solid rgba(0, 51, 102, 0.08);
  border-bottom: 1px solid rgba(0, 51, 102, 0.06);
  scroll-margin-top: 5rem;
}

.campus-lp__cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.campus-lp__cta-title {
  margin: 0 0 0.65rem;
  font-family: var(--feature-font);
  font-weight: 900;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(0, 51, 102, 0.96);
  line-height: 1.35;
}

.campus-lp__cta-lead {
  margin: 0 0 1rem;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.68);
}

.campus-lp__cta-actions {
  margin-top: 0.5rem;
}

.campus-lp__nav-bottom {
  margin-top: clamp(1.5rem, 4vw, 2rem);
}

.campus-lp__staff-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .campus-lp__staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.campus-lp__staff-grid--single {
  grid-template-columns: 1fr;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.campus-lp__staff-card {
  margin: 0;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(0, 51, 102, 0.1);
  box-shadow: 0 6px 22px rgba(0, 51, 102, 0.07);
}

.campus-lp__staff-card-head {
  display: flex;
  align-items: center;
  gap: clamp(0.95rem, 2.5vw, 1.15rem);
  margin-bottom: 0.75rem;
}

.campus-lp__staff-photo-wrap {
  flex-shrink: 0;
  width: clamp(6.5rem, 22vw, 9rem);
  height: clamp(6.5rem, 22vw, 9rem);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 51, 102, 0.12);
  box-shadow: 0 4px 14px rgba(0, 51, 102, 0.1);
  background: rgba(232, 244, 255, 0.5);
}

.campus-lp__staff-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.campus-lp__staff-names {
  min-width: 0;
}

.campus-lp__staff-name {
  margin: 0 0 0.15rem;
  font-family: var(--feature-font);
  font-weight: 900;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  color: rgba(0, 51, 102, 0.95);
}

.campus-lp__staff-role {
  margin: 0;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.82rem;
  color: rgba(0, 51, 102, 0.55);
}

.campus-lp__staff-bio {
  margin: 0;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.68);
}

.campus-lp__media-split {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .campus-lp__media-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

.campus-lp__media-panel {
  margin: 0;
  padding: clamp(1.1rem, 2.5vw, 1.35rem);
  border-radius: 1rem;
  background: rgba(248, 252, 255, 0.98);
  border: 1px solid rgba(0, 51, 102, 0.1);
}

.campus-lp__media-panel--accent {
  background: linear-gradient(145deg, rgba(255, 250, 252, 0.98) 0%, rgba(232, 244, 255, 0.55) 100%);
}

.campus-lp__media-panel-title {
  margin: 0 0 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-family: var(--feature-font);
  font-weight: 900;
  font-size: 1rem;
  color: rgba(0, 51, 102, 0.94);
}

.campus-lp__media-panel-icon {
  font-size: 1.35rem;
  color: rgba(0, 51, 102, 0.72);
}

.campus-lp__media-panel-text {
  margin: 0 0 0.55rem;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.68);
}

.campus-lp__media-panel-text:last-of-type {
  margin-bottom: 0;
}

.campus-lp__media-panel-text a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.campus-lp__media-actions {
  margin: 0.85rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
}

.campus-lp__btn-external {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  border-radius: 0.65rem;
  font-family: var(--feature-font);
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  color: rgba(0, 51, 102, 0.96);
  background: #ffffff;
  border: 2px solid rgba(0, 51, 102, 0.18);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.campus-lp__btn-external:hover,
.campus-lp__btn-external:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 51, 102, 0.1);
}

.campus-lp__btn-external-icon {
  font-size: 1.05rem;
  opacity: 0.75;
}

.campus-lp__btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  border-radius: 0.65rem;
  font-family: var(--feature-font);
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(188, 24, 136, 0.25);
  transition: transform 0.15s ease;
}

.campus-lp__btn-instagram:hover,
.campus-lp__btn-instagram:focus-visible {
  transform: translateY(-1px);
}

.campus-lp__instagram-embed-container {
  max-width: 540px;
  margin: clamp(0.75rem, 2vw, 1.25rem) auto 0;
  /* 埋め込み iframe 内の余白はInstagram側のため、枠の高さを抑えて空白を目立たなくする */
  overflow: hidden;
  border-radius: 12px;
  line-height: 0;
}

.campus-lp__instagram-iframe {
  display: block;
  width: 100%;
  /* プロフィール＋グリッド程度に合わせる（650px 固定だと下半分が空きやすい） */
  height: clamp(360px, 68vmin, 460px);
  max-height: min(460px, 85vh);
  border: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 12px;
  vertical-align: bottom;
}

@media (max-width: 480px) {
  .campus-lp__instagram-iframe {
    height: clamp(340px, 72vmin, 420px);
    max-height: min(420px, 70vh);
  }
}

.campus-lp__instagram-follow-wrap {
  margin: clamp(1rem, 2.5vw, 1.25rem) 0 0;
  text-align: center;
}

.campus-lp__btn-instagram-follow {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-family: var(--feature-font);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(188, 24, 136, 0.25);
  transition: transform 0.15s ease;
}

.campus-lp__btn-instagram-follow:hover,
.campus-lp__btn-instagram-follow:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.campus-lp__media-actions--after-embed {
  margin-top: 0.85rem;
}

.campus-lp__media-panel--feed .campus-lp__media-panel-text--compact {
  margin-bottom: 0.65rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.55);
}

.campus-lp__feed-empty {
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.65rem;
  background: rgba(0, 51, 102, 0.04);
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.58);
}

.campus-lp__feed-empty a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* 長良校LP: フィードは TOP の .news__track / .blog__track と同じカードグリッド */
.campus-lp__feed-track {
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 2vw, 0.95rem);
  align-items: stretch;
  width: 100%;
  margin: 0 0 0.55rem;
  max-height: min(32rem, 65vh);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.15rem 0.05rem 0.35rem;
  box-sizing: border-box;
}

.campus-lp__feed-track > .news-card,
.campus-lp__feed-track > .blog-card {
  display: grid;
  align-items: start;
  column-gap: clamp(0.65rem, 2.2vw, 1rem);
  row-gap: 0.3rem;
  grid-template-columns: minmax(3.75rem, min(26vw, 8.25rem)) minmax(0, 1fr);
}

.campus-lp__feed-track > .news-card {
  grid-template-rows: auto auto auto;
}

.campus-lp__feed-track > .blog-card {
  grid-template-rows: auto auto;
}

.campus-lp__feed-track .news-card__thumb,
.campus-lp__feed-track .blog-card__thumb {
  grid-column: 1;
  grid-row: 1 / -1;
  width: 100%;
  margin-bottom: 0;
  aspect-ratio: 1 / 1;
  align-self: start;
}

.campus-lp__feed-track .news-card__top {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
  align-items: flex-start;
}

.campus-lp__feed-track .news-card__title {
  grid-column: 2;
  grid-row: 2;
  margin-bottom: 0;
}

.campus-lp__feed-track .news-card__text {
  grid-column: 2;
  grid-row: 3;
  margin-bottom: 0;
  min-width: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.campus-lp__feed-track .blog-card__meta {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
  align-items: flex-start;
}

.campus-lp__feed-track .blog-card__title {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.campus-lp__feed-track .blog-card__arrow {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
}

.campus-lp__feed-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
  max-width: min(100%, 78%);
}

@media (max-width: 480px) {
  .campus-lp__feed-tags {
    max-width: 100%;
    justify-content: flex-start;
  }

  .campus-lp__feed-track .news-card__top,
  .campus-lp__feed-track .blog-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
}

.campus-lp__feed-archive {
  margin: 0 0 0.65rem;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.82rem;
}

.campus-lp__feed-archive a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.campus-lp__feed-archive-sep {
  margin: 0 0.2rem;
  color: rgba(0, 0, 0, 0.35);
}

.campus-lp__feed-footnote {
  margin-top: 0.35rem !important;
  margin-bottom: 0.55rem !important;
  font-size: 0.82rem !important;
  line-height: 1.6 !important;
  color: rgba(0, 0, 0, 0.55) !important;
}

.campus-lp__link-chip--block {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.campus-lp__address-line {
  margin: 0 0 0.75rem;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.78);
}

.campus-lp__map-embed-wrap {
  position: relative;
  margin: 0 0 0.85rem;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: min(380px, 58vh);
  min-height: 200px;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(0, 51, 102, 0.12);
  box-shadow: 0 6px 22px rgba(0, 51, 102, 0.09);
  background: rgba(232, 244, 255, 0.35);
}

.campus-lp__map-iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.campus-lp__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--feature-font);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.campus-lp__map-link:hover,
.campus-lp__map-link:focus-visible {
  color: rgba(0, 51, 102, 0.85);
}

.campus-lp__map-link-icon {
  font-size: 1.15rem;
  text-decoration: none;
}

/* お知らせ・ブログ TOP：カードをリンク化 */
a.news-card,
a.blog-card {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  min-width: 0;
  height: auto;
}

a.news-card:focus-visible,
a.blog-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.news__actions,
.blog__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(0.75rem, 2.2vw, 1.1rem);
}

.news__more-btn,
.blog__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-width: 12rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  border: 2px solid rgba(30, 136, 229, 0.35);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  font-family: var(--feature-font);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.news__more-btn:hover,
.blog__more-btn:hover {
  background: rgba(30, 136, 229, 0.1);
  border-color: var(--blue);
  color: var(--blue-deep);
}

/* 一覧・アーカイブ */
.archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.archive-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: clamp(0.75rem, 2vw, 1.1rem);
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 51, 102, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.archive-card:hover {
  border-color: rgba(30, 136, 229, 0.35);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.archive-card__thumb {
  flex: 0 0 clamp(7.5rem, 28vw, 11rem);
  aspect-ratio: 16 / 9;
  border-radius: 0.65rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(30, 136, 229, 0.12) 0%, rgba(30, 136, 229, 0.06) 100%);
  border: 1px solid rgba(0, 51, 102, 0.08);
}

.archive-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-card__thumb--placeholder img {
  object-fit: contain;
  padding: 0.45rem 0.4rem;
  box-sizing: border-box;
}

.archive-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.archive-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-family: var(--feature-font);
  font-weight: 800;
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.45);
}

.archive-card__title {
  font-family: var(--feature-font);
  font-weight: 900;
  color: rgba(0, 51, 102, 0.95);
  font-size: 1rem;
  line-height: 1.35;
}

.archive-card__summary {
  margin: 0;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.62);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 520px) {
  .archive-card {
    flex-direction: column;
  }

  .archive-card__thumb {
    flex: 0 0 auto;
    width: 100%;
  }
}

.archive-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  font-family: var(--feature-font);
  font-weight: 800;
}

.archive-pager__link {
  color: var(--blue);
  text-decoration: none;
}

.archive-pager__link:hover {
  text-decoration: underline;
}

.archive-pager__info {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
}

/* 記事詳細 */
.article-detail__head {
  margin-bottom: 1rem;
}

.article-detail__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.article-detail__date {
  font-family: var(--feature-font);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.45);
  font-size: 0.88rem;
}

.article-detail__title {
  margin: 0;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(0, 51, 102, 0.95);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.35;
}

.article-detail__thumb-row {
  margin-bottom: 1.25rem;
}

.article-detail__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(0, 51, 102, 0.1);
  background: linear-gradient(180deg, rgba(30, 136, 229, 0.1) 0%, rgba(30, 136, 229, 0.04) 100%);
}

.article-detail__thumb img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.article-detail__thumb--placeholder img {
  object-fit: contain;
  padding: 1.25rem 1rem;
  max-width: min(100%, 28rem);
  margin: 0 auto;
  box-sizing: border-box;
}

.article-body {
  font-family: var(--feature-font);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.78);
  line-height: 1.85;
  font-size: 0.95rem;
}

.article-body p {
  margin: 0 0 1em;
}

.article-body h2,
.article-body h3 {
  font-family: var(--feature-font);
  font-weight: 900;
  color: rgba(0, 51, 102, 0.95);
  margin: 1.35em 0 0.5em;
  line-height: 1.35;
}

.article-body h2 {
  font-size: 1.15rem;
}

.article-body h3 {
  font-size: 1.05rem;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1em;
  padding-left: 1.35rem;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.article-body a {
  color: var(--blue);
}

.article-toc {
  margin: 0 0 1.35rem;
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 51, 102, 0.12);
  background: rgba(30, 136, 229, 0.06);
}

.article-toc__title {
  margin: 0 0 0.65rem;
  font-family: var(--feature-font);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: rgba(0, 51, 102, 0.95);
}

.article-toc__list {
  margin: 0;
  padding-left: 1.15rem;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.75);
}

.article-toc__item {
  margin: 0.35rem 0;
}

.article-toc__item--h3 {
  list-style-type: circle;
  margin-left: 0.5rem;
}

.article-toc__link {
  color: var(--blue);
  text-decoration: none;
}

.article-toc__link:hover {
  text-decoration: underline;
}

.article-section {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 51, 102, 0.1);
}

.article-section__heading {
  margin: 0 0 0.75rem;
  font-family: var(--feature-font);
  font-weight: 900;
  color: rgba(0, 51, 102, 0.95);
  font-size: 1.12rem;
  line-height: 1.4;
}

.article-section__figure {
  margin: 0 0 1rem;
  border-radius: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(0, 51, 102, 0.08);
}

.article-section__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.article-section__ref {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

/* 悩み〜選ばれる理由：共通背景 */
.haikei-bg {
  background-image: url("assets/haikei.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

@media (max-width: 720px) {
  .haikei-bg {
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100% auto;
  }
}

.haikei-bg .worries,
.haikei-bg .solve,
.haikei-bg .dayflow,
.haikei-bg .voices,
.haikei-bg .pricing,
.haikei-bg .reasons {
  background: transparent;
}

.haikei-bg .worries::before {
  content: none;
}

.campus {
  position: relative;
  width: 100%;
  background: transparent;
  padding: clamp(1.2rem, 3.8vw, 1.9rem) 0 clamp(0.9rem, 3vw, 1.35rem);
}

.campus--after-pricing {
  padding-top: clamp(0.9rem, 3.2vw, 1.6rem);
}

.campus__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

.campus__title {
  margin: 0 0 clamp(0.8rem, 2.4vw, 1.1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(0, 51, 102, 0.9);
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
}

.campus__title-icon {
  color: var(--blue);
  font-size: 1.55em;
  line-height: 1;
  transform: translateY(1px);
}

.campus__title-slash {
  color: rgba(0, 51, 102, 0.55);
  margin-left: 0.1rem;
}

.campus__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.8rem, 2.4vw, 1.25rem);
  align-items: stretch;
}

.campus-card {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(0, 51, 102, 0.08);
  border-radius: 1rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  padding: clamp(0.8rem, 2.2vw, 1.05rem);
  display: grid;
  grid-template-rows: auto auto auto;
  row-gap: 0.7rem;
  align-content: start;
  color: inherit;
}

.campus-card__name {
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 900;
  color: rgba(0, 51, 102, 0.95);
  letter-spacing: 0.02em;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
}

.campus-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, rgba(30, 136, 229, 0.12) 0%, rgba(30, 136, 229, 0.06) 100%);
  border: 1px solid rgba(0, 51, 102, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.campus-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.campus-card__link {
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 0.02em;
  font-size: 0.98rem;
}

.campus-card:hover {
  transform: translateY(-1px);
  transition: transform 0.18s ease;
}

@media (max-width: 720px) {
  .campus__grid {
    grid-template-columns: 1fr;
  }
}

.worries {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 40%, #ffffff 100%);
  padding: clamp(1.4rem, 3.8vw, 2.4rem) 0 clamp(1.4rem, 3.8vw, 2.4rem);
}

/* カード背後の水色・水彩風ウェーブ */
.worries::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(112%, 1200px);
  height: min(78%, 420px);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 70% 55% at 45% 50%, rgba(180, 220, 250, 0.75) 0%, transparent 68%),
    radial-gradient(ellipse 55% 50% at 18% 55%, rgba(200, 232, 255, 0.55) 0%, transparent 62%),
    radial-gradient(ellipse 48% 48% at 82% 48%, rgba(190, 228, 252, 0.5) 0%, transparent 58%),
    radial-gradient(ellipse 90% 35% at 50% 72%, rgba(165, 210, 245, 0.35) 0%, transparent 72%);
  filter: blur(0.5px);
  pointer-events: none;
  z-index: 0;
}

.worries__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

.news {
  position: relative;
  width: 100%;
  background: transparent;
  padding: clamp(0.9rem, 3.2vw, 1.6rem) 0 clamp(1.2rem, 4vw, 2.1rem);
}

.news__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

.news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: clamp(0.6rem, 2vw, 0.85rem);
}

.news__title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(0, 51, 102, 0.95);
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
}

.news__icon {
  color: var(--blue);
  font-size: 1.55em;
  line-height: 1;
}

.news__more {
  text-decoration: none;
  font-family: var(--feature-font);
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.news__panel {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(0, 51, 102, 0.08);
  border-radius: 1rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  padding: clamp(0.75rem, 2.2vw, 1.05rem);
  overflow: hidden;
}

.news__track,
.blog__track {
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 2vw, 0.95rem);
  align-items: stretch;
  width: 100%;
}

.news-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 51, 102, 0.08);
  border-radius: 0.85rem;
  padding: 0.85rem 0.95rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
  width: 100%;
  min-width: 0;
}

.news-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}

.news-card__date {
  font-family: var(--feature-font);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.45);
  font-size: 0.84rem;
}

.news-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  font-family: var(--feature-font);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.news-card__tag--pink {
  background: rgba(255, 106, 168, 0.14);
  color: #ff3e96;
}

.news-card__tag--green {
  background: rgba(6, 199, 85, 0.14);
  color: #0d9b4e;
}

.news-card__tag--blue {
  background: rgba(30, 136, 229, 0.14);
  color: var(--blue);
}

.news-card__tag--branch {
  background: rgba(0, 51, 102, 0.08);
  color: rgba(0, 51, 102, 0.78);
}

.news-card__title {
  font-family: var(--feature-font);
  font-weight: 900;
  color: rgba(0, 51, 102, 0.95);
  letter-spacing: 0.01em;
  font-size: 0.98rem;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.news-card__text {
  font-family: var(--feature-font);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* お知らせは縦並びのため横スクロール用「次へ」は非表示 */
.news__next {
  display: none;
}

.blog {
  position: relative;
  width: 100%;
  background: transparent;
  padding: clamp(1.1rem, 3.6vw, 1.9rem) 0 clamp(1.4rem, 4.4vw, 2.3rem);
}

.blog__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

.blog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: clamp(0.6rem, 2vw, 0.85rem);
}

.blog__title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(0, 51, 102, 0.95);
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
}

.blog__icon {
  color: var(--blue);
  font-size: 1.55em;
  line-height: 1;
}

.blog__more {
  text-decoration: none;
  font-family: var(--feature-font);
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.blog__panel {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(0, 51, 102, 0.08);
  border-radius: 1rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  padding: clamp(0.75rem, 2.2vw, 1.05rem);
  overflow: hidden;
}

.blog-card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 51, 102, 0.08);
  border-radius: 0.95rem;
  padding: 0.75rem 0.85rem 0.85rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
  width: 100%;
  min-width: 0;
}

.blog-card__thumb,
.news-card__thumb {
  border-radius: 0.75rem;
  background: linear-gradient(180deg, rgba(30, 136, 229, 0.12) 0%, rgba(30, 136, 229, 0.06) 100%);
  border: 1px solid rgba(0, 51, 102, 0.08);
  overflow: hidden;
}

.blog-card__thumb img,
.news-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__thumb--placeholder img,
.news-card__thumb--placeholder img {
  object-fit: contain;
  padding: 0.7rem 0.6rem;
  box-sizing: border-box;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}

.blog-card__date {
  font-family: var(--feature-font);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.45);
  font-size: 0.84rem;
}

.blog-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  font-family: var(--feature-font);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}

.blog-card__tag--gray {
  background: rgba(0, 51, 102, 0.08);
  color: rgba(0, 51, 102, 0.78);
}
.blog-card__tag--blue {
  background: rgba(30, 136, 229, 0.14);
  color: var(--blue);
}
.blog-card__tag--pink {
  background: rgba(255, 106, 168, 0.14);
  color: #ff3e96;
}
.blog-card__tag--green {
  background: rgba(6, 199, 85, 0.14);
  color: #0d9b4e;
}

.blog-card__title {
  font-family: var(--feature-font);
  font-weight: 900;
  color: rgba(0, 51, 102, 0.95);
  letter-spacing: 0.01em;
  font-size: 0.98rem;
  line-height: 1.35;
  padding-right: 1.4rem;
}

.blog-card__arrow {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  color: rgba(30, 136, 229, 0.6);
}

/*
 * TOP お知らせ・ブログ: カードを縦に積み、各カードは左に正方形サムネ・右に日付・タグ・タイトル（＋概要）
 * （.news__track / .blog__track は flex 縦方向）
 */
.news__track > .news-card,
.blog__track > .blog-card {
  display: grid;
  align-items: start;
  column-gap: clamp(0.65rem, 2.2vw, 1rem);
  row-gap: 0.3rem;
  grid-template-columns: minmax(3.75rem, min(26vw, 8.25rem)) minmax(0, 1fr);
}

.news__track > .news-card {
  grid-template-rows: auto auto auto;
}

.blog__track > .blog-card {
  grid-template-rows: auto auto;
}

.news__track .news-card__thumb,
.blog__track .blog-card__thumb {
  grid-column: 1;
  grid-row: 1 / -1;
  width: 100%;
  margin-bottom: 0;
  aspect-ratio: 1 / 1;
  align-self: start;
}

.news__track .news-card__top {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
}

.news__track .news-card__title {
  grid-column: 2;
  grid-row: 2;
  margin-bottom: 0;
}

.news__track .news-card__text {
  grid-column: 2;
  grid-row: 3;
  margin-bottom: 0;
  min-width: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.blog__track .blog-card__meta {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
}

.blog__track .blog-card__title {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* ブログも縦並びのため横スクロール用「次へ」は非表示 */
.blog__next {
  display: none;
}

.worries__title {
  margin: 0 0 clamp(0.9rem, 2.25vw, 1.35rem);
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
}

.worries__title-accent {
  color: var(--blue);
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  margin-left: 0.06em;
  margin-right: 0.06em;
  vertical-align: -0.06em;
}

.worries__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.55rem, 1.35vw, 1rem);
  align-items: stretch;
}

.worry {
  display: flex;
  min-width: 0;
}

.worry__bubble {
  width: 100%;
  background: #ffffff;
  border-radius: 63% 37% 54% 46% / 48% 46% 54% 52%;
  box-shadow: 0 4px 14px rgba(30, 80, 140, 0.06);
  padding: clamp(0.65rem, 1.4vw, 0.85rem) clamp(0.55rem, 1.2vw, 0.75rem)
    clamp(0.65rem, 1.4vw, 0.85rem) clamp(0.5rem, 1vw, 0.65rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.35rem, 1vw, 0.55rem);
}
@media (max-width: 720px) {
  .worry__bubble {
    justify-content: center;
    gap: 30px;
  }
}

.worry__text {
  margin: 0;
  font-family: var(--feature-font);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  font-size: clamp(0.72rem, 1.1vw, 0.86rem);
  line-height: 1.55;
  flex: 1 1 auto;
  min-width: 0;
}
@media (max-width: 720px) {
  .worry__text {
    text-align: center;
  }
}
.worry__person {
  position: relative;
  flex: 0 0 auto;
  width: clamp(52px, 5.5vw, 72px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: white;
  overflow: hidden;
}

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

.worries__arrow {
  margin: clamp(0.95rem, 2.4vw, 1.3rem) auto 0;
  width: clamp(2.1rem, 4.8vw, 2.8rem);
  height: auto;
}

@media (max-width: 1080px) {
  .worries__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.65rem, 2vw, 1rem);
  }

  .worry__text {
    font-size: clamp(0.78rem, 1.55vw, 0.92rem);
  }

  .worry__person {
    width: clamp(64px, 10vw, 80px);
  }
}

@media (max-width: 520px) {
  .worries__row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .worry__bubble {
    border-radius: 1.15rem;
    padding: 0.85rem 1rem;
  }

  .worry__text {
    font-size: clamp(0.82rem, 3.6vw, 0.95rem);
  }

  .worry__person {
    width: 72px;
  }
}

.solve {
  position: relative;
  width: 100%;
  background: #f4f8ff;
  padding: clamp(1.5rem, 4.2vw, 2.6rem) 0 clamp(2.1rem, 5.2vw, 3.2rem);
}

.solve__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px var(--content-gutter);
  border-radius: 30px;
  background: white;
}
@media (max-width: 720px) {
  .solve__inner {
    width: 90%;
    margin: 0 auto;
  }
}

.solve__title {
  margin: 0 0 clamp(1rem, 2.8vw, 1.6rem);
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  font-size: clamp(1.3rem, 2.9vw, 2rem);
}

.solve__title-brand {
  color: var(--blue);
  font-size: 2.5rem;
}

.solve__title-big {
  font-size: 2.5rem;
}

.solve__title-row {
  display: inline;
}

@media (max-width: 720px) {
  .solve__title-row--lead {
    display: block;
  }
}

.solve__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2.6vw, 1.6rem);
}

.solve-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.15rem;
  overflow: hidden;
  padding: clamp(0.75rem, 1.9vw, 1rem);
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
}

.solve-card__label {
  margin: 0 0 0.6rem;
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 900;
  color: var(--blue);
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  letter-spacing: 0.02em;
}

.solve-card__media {
  border-radius: 0.9rem;
  overflow: hidden;
  background: #e9f2ff;
}

.solve-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}

.solve-card__text {
  margin: 0.75rem 0 0;
  text-align: left;
  font-family: var(--feature-font);
  font-weight: 700;
  color: #1a1a1a;
  font-size: clamp(0.86rem, 1.25vw, 0.98rem);
  line-height: 1.55;
}

@media (max-width: 960px) {
  .solve__cards {
    grid-template-columns: 1fr;
  }

  .solve-card {
    max-width: 40rem;
    margin: 0 auto;
  }
}

.dayflow {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: clamp(1.6rem, 4.6vw, 2.8rem) 0 clamp(1.6rem, 4.6vw, 2.8rem);
}

.dayflow__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

.dayflow__title {
  margin: 0 0 clamp(0.9rem, 2.6vw, 1.4rem);
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
}

.dayflow__title-num {
  font-size: 2.5rem;
  color: var(--blue);
  margin-right: 0.05em;
}

.dayflow__track {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(9.2rem, 1fr);
  gap: clamp(0.6rem, 1.7vw, 1.15rem);
  align-items: start;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 0 0.4rem;
  position: relative;
}

.dayflow__track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 1.4rem;
  border-top: 2px dotted rgba(30, 136, 229, 0.35);
  pointer-events: none;
}

.dayflow__item {
  position: relative;
  text-align: center;
}

.dayflow__item:not(:last-child)::after {
  content: none;
}

.dayflow__time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.25rem;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  background: var(--blue);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 900;
  color: #fff;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  margin: 0 auto 0.7rem;
  position: relative;
  z-index: 1;
}

.dayflow__card {
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid rgba(0, 51, 102, 0.12);
  border-radius: 1rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  padding: 0.55rem 0.65rem 0.7rem;
}

.dayflow__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #e9f2ff;
  border: 1px solid rgba(0, 51, 102, 0.08);
}

.dayflow__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dayflow__label {
  margin-top: 0.55rem;
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 800;
  color: #1a1a1a;
  font-size: 0.92rem;
  line-height: 1.35;
}

.dayflow__note {
  margin: 0.75rem 0 0;
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.9rem;
}

.voices {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: clamp(1.8rem, 5vw, 3rem) 0 clamp(1.8rem, 5vw, 3rem);
}

.voices__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

.voices__title {
  margin: 0 0 clamp(1rem, 2.8vw, 1.6rem);
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  font-size: clamp(1.3rem, 2.8vw, 1.95rem);
}

.voices__title-accent {
  color: var(--blue);
}

.voices__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2.2vw, 1.35rem);
  align-items: stretch;
}

.voice {
  position: relative;
  display: block;
  padding: 1.05rem 1.05rem 1.15rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.voice__head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
}

.voice__media {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  align-self: start;
  flex: 0 0 auto;
}

.voice__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.voice__body {
  width: 100%;
  margin-top: 0.1rem;
}

.voice__name {
  text-align: left;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: rgba(0, 51, 102, 0.88);
  font-size: 1.1rem;
}

.voice__divider {
  height: 2px;
  width: 100%;
  margin: 0.8rem 0 0.65rem;
  background: rgba(30, 136, 229, 0.18);
  border-radius: 999px;
}

.voice__section {
  position: relative;
  margin: 0.65rem 0 0.35rem;
  padding: 0.35rem 0.45rem 0.35rem 0.6rem;
  border-radius: 0.5rem;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.01em;
  font-size: 0.85rem;
}

.voice__section--orange {
  color: #b84a00;
  background: rgba(245, 90, 26, 0.12);
}

.voice__section--green {
  color: #1f7a4a;
  background: rgba(6, 199, 85, 0.1);
}

.voice__text {
  margin: 0;
  font-family: var(--feature-font);
  color: #1a1a1a;
  line-height: 1.7;
  font-size: 0.8rem;
}

.voice__section + .voice__text {
  margin-bottom: 0.35rem;
}

.voices__note {
  margin: 0.85rem 0 0;
  text-align: center;
  font-family: var(--feature-font);
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.88rem;
}

.pricing {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: clamp(2rem, 5.4vw, 3.25rem) 0 clamp(2.25rem, 6vw, 3.5rem);
}

.pricing__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

.pricing__title {
  margin: 0;
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.pricing__subtitle {
  margin: 0.45rem 0 1.25rem;
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.95rem;
}

.pricing__top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2.2vw, 1.35rem);
  align-items: stretch;
}

.plan {
  border-radius: 0.9rem;
  background: #fff;
  border: 2px solid rgba(0, 51, 102, 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.plan__head {
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  padding: 0.7rem 0.6rem;
  font-size: 1.02rem;
}

.plan__head--blue {
  background: linear-gradient(180deg, #3d87c9 0%, #2f74b5 100%);
}

.plan__head--green {
  background: linear-gradient(180deg, #5dbb7b 0%, #2f9c57 100%);
}

.plan__body {
  padding: 1.05rem 1.1rem 1.1rem;
}

.plan__time {
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.plan__term {
  text-align: center;
  font-family: var(--feature-font);
  color: rgba(0, 51, 102, 0.72);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

.plan__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--feature-font);
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.plan__price-label {
  font-weight: 900;
  font-size: 0.95rem;
}

.plan__price-amount {
  font-weight: 900;
  font-size: 2.35rem;
  letter-spacing: 0.02em;
}

.plan__price-unit {
  font-weight: 900;
  font-size: 1.05rem;
}

.plan__price-tax {
  font-weight: 800;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.55);
}

.plan__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  font-family: var(--feature-font);
  font-weight: 800;
  color: rgba(0, 51, 102, 0.92);
  font-size: 0.92rem;
}

.plan__list li {
  position: relative;
  padding-left: 1.1rem;
}

.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(0, 51, 102, 0.6);
  transform: translateY(-50%);
}

.plan--trial {
  border: 2px solid rgba(245, 90, 26, 0.28);
}

.trial {
  padding: 1.05rem 1.1rem 1.1rem;
  height: 100%;
  display: grid;
  align-content: start;
}

.trial__title {
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #e04b22;
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.trial__list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  font-family: var(--feature-font);
  font-weight: 900;
  color: rgba(0, 51, 102, 0.9);
}

.trial__list li {
  position: relative;
  padding-left: 1.15rem;
}

.trial__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(0, 51, 102, 0.55);
  transform: translateY(-50%);
}

.trial__btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  font-family: var(--feature-font);
  font-weight: 900;
  color: #fff;
  border-radius: 0.7rem;
  padding: 0.85rem 0.9rem;
  background: linear-gradient(180deg, var(--cta-orange-a) 0%, var(--cta-orange-b) 100%);
  box-shadow:
    0 3px 0 rgba(180, 70, 0, 0.45),
    0 10px 22px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.92);
}

.trial__chev {
  display: inline-flex;
  opacity: 0.95;
}

.pricing__meta {
  margin: 0.8rem 0 1.25rem;
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.55);
}

.pricing__accordion {
  margin-top: 0.8rem;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--feature-font);
  font-weight: 900;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(180deg, #4aa3d4 0%, #2f74b5 100%);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 0.8rem;
  padding: 0.95rem 1rem;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.pricing__accordion-btn:hover {
  filter: brightness(1.02);
}

.pricing__accordion-icon {
  width: 0.65rem;
  height: 0.65rem;
  border-right: 3px solid rgba(255, 255, 255, 0.95);
  border-bottom: 3px solid rgba(255, 255, 255, 0.95);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  margin-top: -0.15rem;
}

.pricing__accordion-btn[aria-expanded="true"] .pricing__accordion-icon {
  transform: rotate(-135deg);
  margin-top: 0.1rem;
}

.pricing__accordion-panel {
  margin-top: 0.85rem;
  background: #fff;
  border: 2px solid rgba(0, 51, 102, 0.14);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.pricing__table-image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .pricing__top {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
  }

  .plan {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    min-width: 0;
    justify-self: stretch;
    box-sizing: border-box;
  }

  .pricing__accordion {
    max-width: 100%;
  }
}

.reasons {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: clamp(1.9rem, 5.2vw, 3.1rem) 0 clamp(1.6rem, 4.8vw, 3rem);
}

.reasons__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

.reasons__title {
  margin: 0 0 clamp(1rem, 2.8vw, 1.55rem);
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(0, 51, 102, 0.95);
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
}

.reasons__title-brand {
  color: var(--blue);
  font-size: 2.5rem;
}

.reasons__title-accent {
  color: var(--blue);
  font-size: 2.5rem;
}

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.7rem, 2vw, 1.1rem);
  align-items: start;
}

.reason {
  text-align: left;
}

.reason__icon {
  width: 46px;
  height: 46px;
  color: var(--blue);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.45rem;
}

.reason__gicon {
  font-family: "Material Symbols Rounded";
  font-weight: 500;
  font-style: normal;
  font-size: 46px;
  line-height: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: currentColor;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.reason__icon svg {
  display: none;
}

.reason__headline {
  margin: 0 0 0.4rem;
  font-family: var(--feature-font);
  font-weight: 900;
  color: rgba(0, 51, 102, 0.95);
  letter-spacing: 0.01em;
  font-size: 0.98rem;
  line-height: 1.25;
  text-align: center;
}

.reason__text {
  margin: 0;
  font-family: var(--feature-font);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}

.reason__note {
  margin-top: 0.35rem;
  font-family: var(--feature-font);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .reasons__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .reason {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 0.85rem;
    row-gap: 0.35rem;
    align-items: start;
    min-width: 0;
  }

  .reason__icon {
    grid-column: 1;
    grid-row: 1 / -1;
    margin: 0.05rem 0 0;
    align-self: start;
  }

  .reason__headline {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .reason__text {
    grid-column: 2;
    grid-row: 2;
  }
}

.faq {
  position: relative;
  width: 100%;
  padding: clamp(2rem, 5.5vw, 3.25rem) 0 clamp(2.2rem, 6vw, 3.5rem);
}

.faq__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

.faq__title {
  margin: 0 0 clamp(1rem, 2.8vw, 1.6rem);
  text-align: center;
  font-family: var(--feature-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(0, 51, 102, 0.95);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.faq__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(0.9rem, 2.4vw, 1.4rem);
  align-items: start;
}

.faq__list {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(0, 51, 102, 0.12);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(0, 51, 102, 0.12);
}

.faq-item__q {
  width: 100%;
  display: grid;
  grid-template-columns: 22px 1fr 28px;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-item__qmark {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(30, 136, 229, 0.12);
  color: var(--blue);
  font-family: var(--feature-font);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.faq-item__qtext {
  font-family: var(--feature-font);
  color: rgba(0, 51, 102, 0.95);
  letter-spacing: 0.01em;
  font-size: 1.1rem;
}

.faq-item__plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  position: relative;
  justify-self: end;
  border-radius: 999px;
  background: rgba(30, 136, 229, 0.12);
  border: 1px solid rgba(30, 136, 229, 0.25);
}

.faq-item__plus::before,
.faq-item__plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.faq-item__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__q[aria-expanded="true"] .faq-item__plus::after {
  opacity: 0;
}

/* 開いているときは “−” がはっきり見えるように少し強調 */
.faq-item__q[aria-expanded="true"] .faq-item__plus::before {
  transform: translate(-50%, -50%) scaleX(1.05);
}

.faq-item__a {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.75rem;
  padding: 0 1rem 0.95rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.22s ease, opacity 0.18s ease;
}

.faq-item__q[aria-expanded="true"] + .faq-item__a {
  max-height: 260px;
  opacity: 1;
}

.faq-item__amark {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(0, 51, 102, 0.08);
  color: rgba(0, 51, 102, 0.95);
  font-family: var(--feature-font);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 0.1rem;
}

.faq-item__a p {
  margin: 0;
  font-family: var(--feature-font);
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.7;
}

.faq__cta-box {
  background: linear-gradient(180deg, #2f74b5 0%, #1e88e5 100%);
  border-radius: 1rem;
  padding: 1.1rem 1.1rem 1.1rem;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  display: grid;
  grid-template-columns: 1fr minmax(140px, 170px);
  gap: 0.75rem;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.faq__cta-title {
  font-family: var(--feature-font);
  letter-spacing: 0.02em;
  font-size: 0.9rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  text-align: center;
}

.faq__cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--feature-font);
  font-weight: 900;
  color: #fff;
  background: var(--cta-line-green);
  border-radius: 0.75rem;
  padding: 0.85rem 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 3px 0 rgba(4, 110, 55, 0.5);
  margin: 0 auto;
}

.faq__cta-illust {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 110px;
  border-radius: 0.85rem;
  overflow: hidden;
}

.faq__cta-illust-img {
  width: 100%;
  height: auto;
  max-height: clamp(105px, 22vw, 150px);
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

@media (max-width: 980px) {
  .faq__layout {
    grid-template-columns: 1fr;
  }

  .faq__cta-box {
    grid-template-columns: 1fr minmax(110px, 130px);
  }

  .faq__cta-illust {
    min-height: 95px;
  }

  .faq__cta-illust-img {
    max-height: clamp(90px, 28vw, 120px);
  }
}

.cta-banner {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: clamp(1.2rem, 4vw, 2.1rem) 0 clamp(1.6rem, 5vw, 2.6rem);
}

.cta-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

.cta-banner__link {
  display: block;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(0, 51, 102, 0.12);
}

.cta-banner__link:hover {
  filter: brightness(1.01);
}

.cta-banner__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 7097 / 3047;
}

@media (max-width: 720px) {
  .cta-banner__img {
    aspect-ratio: 3953 / 5976;
  }
}

.site-footer {
  background: #0071d1;
  color: rgba(255, 255, 255, 0.92);
  padding: 1.75rem 0 1.25rem;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  gap: 1.25rem;
  align-items: start;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.site-footer__logo img {
  aspect-ratio: 2329 / 538;
  height: 2.2rem;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
}

.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-family: var(--feature-font);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.site-footer__cta {
  display: grid;
  gap: 0.6rem;
}

.site-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--feature-font);
  font-weight: 900;
  border-radius: 0.75rem;
  padding: 0.8rem 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.site-footer__cta-btn--trial {
  background: linear-gradient(180deg, var(--cta-orange-a) 0%, var(--cta-orange-b) 100%);
  color: #fff;
  box-shadow: 0 3px 0 rgba(180, 70, 0, 0.55);
}

.site-footer__cta-btn--line {
  background: var(--cta-line-green);
  color: #fff;
  box-shadow: 0 3px 0 rgba(4, 110, 55, 0.55);
}

.site-footer__bottom {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__note {
  font-family: var(--feature-font);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.site-footer__copy {
  font-family: var(--feature-font);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 980px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__nav ul {
    grid-template-columns: 1fr;
  }

  .site-footer__cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .voices__cards {
    grid-template-columns: 1fr;
  }

  .voice {
    max-width: 44rem;
    margin: 0 auto;
  }

  .voice {
    padding: 1rem 1rem 1.1rem;
  }

  .voice__media {
    width: 78px;
    height: 78px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--header-shadow);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 0.55rem var(--content-gutter);
  min-height: 3.5rem;
  max-width: none;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.site-header__logo img {
  display: block;
  /* 実ファイル logo-knock.png は 2329×538。width/height 属性と一致させないと aspect-ratio ヒントが狂い潰れる */
  aspect-ratio: 2329 / 538;
  width: clamp(160px, 22vw, 280px);
  height: auto;
  max-height: 3.1rem;
  max-width: min(72vw, 320px);
  object-fit: contain;
}

.site-header__nav .site-header__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.35rem, 1.2vw, 1rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__nav .site-header__nav-list > .site-header__item {
  position: relative;
  list-style: none;
}

.site-header__nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.12em;
  margin: 0;
  padding: 0.25rem 0.35rem;
  border: none;
  border-radius: 0.35rem;
  background: transparent;
  cursor: pointer;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: clamp(0.78rem, 1.25vw, 0.92rem);
  color: var(--feature-navy);
  white-space: nowrap;
}

.site-header__nav-trigger:hover,
.site-header__nav-trigger:focus-visible {
  color: var(--blue);
  background: rgba(0, 51, 102, 0.05);
  outline: none;
}

.site-header__nav-link {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.25rem 0.35rem;
  border-radius: 0.35rem;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: clamp(0.78rem, 1.25vw, 0.92rem);
  color: var(--feature-navy);
  text-decoration: none;
  white-space: nowrap;
}

.site-header__nav-link:hover,
.site-header__nav-link:focus-visible {
  color: var(--blue);
  background: rgba(0, 51, 102, 0.05);
  outline: none;
}

.site-header__nav-chevron {
  font-size: 1.15em;
  line-height: 1;
  transition: transform 0.2s ease;
}

.site-header__item--has-dropdown.is-dropdown-open .site-header__nav-chevron {
  transform: rotate(180deg);
}

.site-header__subnav {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 13.75rem;
  margin: 0;
  /* 上パディングでトリガー直下の移動を受け止め、ホバーが途切れにくくする */
  padding: 0.45rem 0 0.35rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 51, 102, 0.1);
  border-radius: 0.65rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  z-index: 220;
}

.site-header__subnav a {
  display: block;
  padding: 0.45rem 1rem;
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--feature-navy);
  text-decoration: none;
  white-space: nowrap;
}

.site-header__subnav a:hover,
.site-header__subnav a:focus-visible {
  color: var(--blue);
  background: rgba(30, 136, 229, 0.08);
}

.site-header__nav a {
  font-family: var(--feature-font);
  font-weight: 700;
  font-size: clamp(0.8rem, 1.35vw, 0.95rem);
  color: var(--feature-navy);
  text-decoration: none;
  white-space: nowrap;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  color: var(--blue);
}

.site-header__menu-btn {
  display: none;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 0.35rem;
  background: transparent;
  cursor: pointer;
  color: var(--feature-navy);
}

.site-header__menu-btn:hover,
.site-header__menu-btn:focus-visible {
  background: rgba(0, 51, 102, 0.06);
  outline: none;
}

.site-header__menu-btn-lines {
  display: block;
  position: relative;
  width: 1.35rem;
  height: 12px;
}

.site-header__menu-btn-lines::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
  transform-origin: center;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
}

.site-header__menu-btn-lines::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  opacity: 0;
  transform: translateY(-50%) rotate(-45deg) scaleX(0.35);
  transform-origin: center;
  transition:
    opacity 0.28s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.site-header.is-nav-open .site-header__menu-btn-lines::before {
  box-shadow: none;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.site-header.is-nav-open .site-header__menu-btn-lines::after {
  opacity: 1;
  transform: translateY(-50%) rotate(-45deg) scaleX(1);
}

@media (max-width: 720px) {
  .site-header__menu-btn {
    display: inline-flex;
  }

  .site-header__nav {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 0.75rem var(--content-gutter) 1.1rem;
    background: var(--header-bg-solid);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 51, 102, 0.1);
    border-top: 1px solid rgba(0, 51, 102, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transform-origin: top center;
    transition:
      opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-header.is-nav-open .site-header__nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header__nav .site-header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .site-header__nav-trigger {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    text-align: left;
  }

  .site-header__nav-link {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    font-size: 0.95rem;
  }

  .site-header__subnav {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    margin: 0 0 0.25rem 0.65rem;
    padding: 0 0 0.25rem 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: rgba(0, 51, 102, 0.03);
  }

  .site-header__subnav a {
    padding: 0.4rem 0.65rem;
    font-size: 0.9rem;
    white-space: normal;
  }

  .site-header__nav a {
    display: block;
    padding: 0.35rem 0;
    font-size: 0.95rem;
  }
}

@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
  .site-header__nav {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__menu-btn-lines::before,
  .site-header__menu-btn-lines::after {
    transition: none;
  }
}

/* ヒーローと直下の特徴ブロックをまとめ、PCでは絶対配置の基準にする */
.hero-area {
  position: relative;
  width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: clamp(320px, 56vw, 520px);
  aspect-ratio: 1024 / 682;
  overflow: hidden;
  background: #fff;
  scroll-margin-top: 4.5rem;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__foreground {
  position: relative;
  z-index: 3;
  width: 100%;
  box-sizing: border-box;
}

/* ヒーロー下部の境目を自然にする白フェード */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(48px, 9vw, 120px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 55%, #ffffff 100%);
  pointer-events: none;
  z-index: 2; /* wave(1)より上、grain(2)と同階層 */
}

/* 教室写真（左の白フェード付き素材なら photo-masked-reference、全面写真なら hero-photo に変更） */
.hero__photo {
  position: absolute;
  inset: 0;
  background-color: #e8e8e8;
  background-image: url("assets/photo-masked-reference.png");
  background-size: cover;
  background-position: center right;
  z-index: 0;
}

.hero__wave {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("assets/blue_back.png");
  background-size: cover;
  background-position: center right;
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.45) 35%, transparent 55%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.45) 35%, transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 150px 0;
  padding-inline: var(--content-gutter);
}

.hero__intro {
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 721px) {
  .hero__title {
    order: 1;
  }

  .hero__tagline {
    order: 2;
  }

  .hero__subtitle {
    order: 3;
  }
}

.hero__tagline {
  margin: 0;
  font-weight: 500;
  font-size: var(--hero-lead-size, clamp(0.8rem, 1.65vw, 1rem));
  line-height: 1.65;
  color: var(--text);
}

.hero__subtitle {
  margin: 1rem 0 0;
  font-weight: 500;
  font-size: var(--hero-lead-size, clamp(0.8rem, 1.65vw, 1rem));
  line-height: 1.65;
  color: var(--text);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.35em;
}

@media (min-width: 721px) {
  .hero__tagline {
    margin-top: 1rem;
  }

  .hero__subtitle {
    margin-top: 0.35rem;
  }
}

.hero__title {
  margin: 0;
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--text);
}

.hero__title-line {
  display: block;
}

.hero__title-line--second {
  position: relative;
  display: inline-block;
  padding-bottom: 0.35em;
}

.hero__title-accent {
  color: var(--blue);
}

.hero__title-underline {
  position: absolute;
  left: -0.15em;
  right: -0.2em;
  bottom: 0.02em;
  height: 0.42em;
  color: var(--yellow-marker);
  pointer-events: none;
}

.hero__title-underline svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__underline-path {
  filter: drop-shadow(0 1px 0 rgba(245, 213, 71, 0.35));
}

.hero__features {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(0.45rem, 1.55vw, 1rem);
  margin: clamp(0.65rem, 2vw, 1rem) 0 0;
  padding: 0;
  width: 100%;
  max-width: min(100%, 52rem);
  list-style: none;
}

.feature-bubble {
  flex: 0 0 auto;
}

.feature-bubble__disc {
  width: clamp(6.25rem, 16.5vw, 9rem);
  height: clamp(6.25rem, 16.5vw, 9rem);
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 4px 18px rgba(0, 51, 102, 0.12),
    0 2px 5px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.48em 0.4em 0.52em;
  gap: 0.12em;
}

.feature-bubble__icon {
  /* width: clamp(2.05rem, 5.2vw, 2.85rem);
  height: clamp(2.05rem, 5.2vw, 2.85rem); */
  width: 60px;
  height: auto;
  flex-shrink: 0;
  color: var(--feature-icon);
}

.feature-bubble__gicon {
  font-family: "Material Symbols Rounded";
  font-weight: 500;
  font-style: normal;
  font-size: 45px;
  line-height: 1;
  display: block;
  color: var(--feature-icon);
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  transform: translateY(-2px);
}

@supports not (font-variation-settings: normal) {
  .feature-bubble__gicon {
    font-family: inherit;
  }
}

.feature-bubble__text {
  font-family: var(--feature-font);
  color: var(--feature-navy);
  line-height: 1.22;
  display: block;
  width: 100%;
}

.feature-bubble__text--primary {
  font-weight: 700;
  font-size: clamp(0.78rem, 1.85vw, 1.02rem);
  letter-spacing: 0.02em;
}

.feature-bubble__text--secondary {
  font-weight: 700;
  font-size: clamp(0.7rem, 1.58vw, 0.88rem);
  letter-spacing: 0.01em;
}

.feature-bubble__note {
  font-weight: 500;
  font-size: 0.9em;
  letter-spacing: 0;
}

.hero__features-block {
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.hero__features-block .hero__features-scroller,
.hero__features-block .hero__features {
  pointer-events: auto;
}

.hero__features-scroller {
  overflow: visible;
}

.hero__features-heading {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
}

/* タブレット〜狭いPC：特徴5つはモバイル同様。FV上に重ねると満足度バッジと被るため1400px以下はこちら */
@media (min-width: 721px) and (max-width: 1400px) {
  .hero__features-block {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    pointer-events: auto;
    margin: -1.1rem 0 24px 0;
    padding: 0.35rem 0 0.25rem;
  }

  .hero__features-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.42rem;
    padding: 0.55rem var(--content-gutter) 0.45rem;
    font-family: var(--feature-font);
    font-weight: 800;
    font-size: clamp(0.98rem, 2.4vw, 1.12rem);
    letter-spacing: 0.02em;
    line-height: 1.35;
    color: var(--feature-navy);
    text-align: center;
    pointer-events: auto;
  }

  .hero__features-heading__icon {
    flex-shrink: 0;
    font-size: 1.35em;
    line-height: 1;
    color: var(--blue);
    font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
  }

  @supports not (font-variation-settings: normal) {
    .hero__features-heading__icon {
      font-family: inherit;
    }
  }

  .hero__features-heading__label {
    display: block;
  }

  .hero__features-scroller {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .hero__features-scroller::-webkit-scrollbar {
    display: none;
  }

  .hero__features-block .hero__features {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.65rem;
    margin: 0;
    padding: 0.35rem var(--content-gutter) 0.55rem;
    max-width: none;
  }

  .hero__features-block .feature-bubble {
    flex: 0 0 auto;
    width: 9rem;
    scroll-snap-align: center;
  }

  .hero__features-block .feature-bubble__disc {
    width: 100%;
    height: auto;
    min-height: 9.25rem;
    border-radius: 1.05rem;
    padding: 0.85rem 0.55rem 0.85rem;
    box-shadow:
      0 6px 20px rgba(0, 51, 102, 0.1),
      0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .hero__features-block .feature-bubble__gicon {
    font-size: 2.35rem;
    transform: translateY(0);
    margin-bottom: 0.15rem;
  }

  .hero__features-block .feature-bubble__text--primary {
    font-size: clamp(0.78rem, 1.8vw, 0.9rem);
  }

  .hero__features-block .feature-bubble__text--secondary {
    font-size: clamp(0.72rem, 1.65vw, 0.82rem);
    margin-top: 0.08rem;
  }

  .hero__features-pagination {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 0.42rem;
    padding: 0.25rem var(--content-gutter) 0.45rem;
    pointer-events: auto;
  }

  .hero__features-dot {
    flex-shrink: 0;
    width: 0.42rem;
    height: 0.42rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 51, 102, 0.22);
    cursor: pointer;
    transition:
      width 0.2s ease,
      background 0.2s ease,
      border-radius 0.2s ease;
  }

  .hero__features-dot.is-active {
    width: 1.2rem;
    border-radius: 999px;
    background: rgba(30, 136, 229, 0.95);
  }

  .hero__features-dot:focus-visible {
    outline: 2px solid rgba(30, 136, 229, 0.55);
    outline-offset: 2px;
  }
}

/* 広いPCのみ：FV上に5特徴を絶対配置しドット非表示（狭い幅では絶対配置をやめて被りを防止） */
@media (min-width: 1401px) {
  .hero__features-block {
    position: absolute;
    left: var(--content-gutter);
    right: auto;
    top: 400px;
    width: calc(100% - 2 * var(--content-gutter));
    max-width: 52rem;
    pointer-events: none;
  }

  .hero__features-pagination {
    display: none !important;
  }
}

.hero__cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: clamp(0.55rem, 1.6vw, 1rem) var(--content-gutter);
  padding-top: clamp(0.45rem, 1.2vw, 0.75rem);
  pointer-events: none;
}

.hero__cta-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

.hero__cta-spark {
  position: absolute;
  width: 0.45rem;
  height: 0.45rem;
  background: #fff;
  border-radius: 1px;
  box-shadow: 0 0 0 2px rgba(255, 214, 0, 0.55);
  transform: rotate(45deg);
  opacity: 0.92;
}

.hero__cta-spark:nth-child(1) {
  left: 12%;
  top: 18%;
}

.hero__cta-spark:nth-child(2) {
  left: 42%;
  top: 8%;
}

.hero__cta-spark:nth-child(3) {
  right: 28%;
  top: 22%;
}

.hero__cta-spark:nth-child(4) {
  right: 8%;
  top: 12%;
}

.hero__cta-inner {
  position: relative;
  top:20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.55rem, 1.75vw, 1.35rem);
  max-width: 72rem;
  margin: 0 auto;
  pointer-events: auto;
}

.hero__cta-emblem {
  flex-shrink: 0;
  width: clamp(4.75rem, 14vw, 17rem);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.18));
  position: relative;
    bottom: 25px;
}

.hero__cta-actions {
  flex: 1 1 280px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.45rem, 1.15vw, 0.85rem);
  min-width: 0;
  max-width: 50rem;
}


.hero__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--feature-font);
  border-radius: 0.7rem;
  min-height: 3.35rem;
  transition:
    transform 0.12s ease,
    filter 0.12s ease;
}

.hero__cta-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.hero__cta-btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.hero__cta-btn--trial {
  flex-direction: column;
  padding: 0.5rem 0.85rem 0.55rem;
  background: linear-gradient(180deg, var(--cta-orange-a) 0%, var(--cta-orange-b) 100%);
  color: #fff;
  text-align: center;
  box-shadow:
    0 3px 0 rgba(180, 70, 0, 0.45),
    0 6px 16px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.hero__cta-btn--trial .hero__cta-btn__sub {
  display: block;
  font-size: clamp(0.65rem, 1.35vw, 0.78rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.2rem;
  opacity: 0.98;
}

.hero__cta-btn--trial .hero__cta-btn__mainrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

.hero__cta-btn__calendar {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  line-height: 1;
  opacity: 0.95;
}

.hero__cta-btn--trial .hero__cta-btn__label {
  font-size: clamp(0.82rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.hero__cta-btn--line {
  flex-direction: row;
  padding: 0.45rem 0.75rem 0.45rem 0.55rem;
  gap: 0.45rem;
  background: var(--cta-line-green);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 3px 0 rgba(4, 110, 55, 0.5),
    0 6px 16px rgba(0, 0, 0, 0.12);
}

.hero__cta-btn--line .hero__cta-btn__line-mark {
  flex-shrink: 0;
  display: flex;
  line-height: 0;
}

.hero__cta-line-icon {
  display: block;
  width: 40px;
  height: auto;
}
@media (max-width: 720px) {
  .hero__cta-line-icon {
    width: 25px;
  }
}
.hero__cta-btn--line .hero__cta-btn__line-text {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.hero__cta-btn--line .hero__cta-btn__label {
  font-size: clamp(0.8rem, 1.7vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.hero__cta-btn__chev {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: inherit;
  opacity: 0.95;
}

.hero__cta-pill {
  position: relative;
  margin: clamp(0.7rem, 2vw, 1rem) auto 0;
  max-width: 76rem;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(255, 255, 255, 0.98);
  border-radius: 999px;
  padding: clamp(0.5rem, 1.3vw, 0.7rem) clamp(0.75rem, 2vw, 1.25rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.6rem, 1.4vw, 0.95rem);
  pointer-events: auto;
}

.hero__cta-pill__chara {
  width: 40px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

@media (max-width: 720px) {
  .hero__cta-pill__chara {
    width: 60px;
  }
}
.hero__cta-pill__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.55rem, 1.8vw, 1.15rem);
  font-family: var(--feature-font);
  color: var(--feature-navy);
  font-weight: 800;
  font-size: clamp(0.78rem, 1.35vw, 0.95rem);
  line-height: 1.2;
}

.hero__cta-pill__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.hero__cta-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  color: #1e88e5;
}

.hero__cta-footnote {
  display: none;
  width: 100%;
  margin: 0.85rem 0 0;
  padding: 0;
  font-family: var(--feature-font);
  font-weight: 800;
  font-size: clamp(0.78rem, 3.2vw, 0.9rem);
  line-height: 1.45;
  text-align: center;
  color: var(--blue);
  letter-spacing: 0.02em;
}

.hero__cta-footnote__glyph {
  margin-right: 0.2em;
}

@media (max-width: 800px) {
  .hero__cta-inner {
    flex-direction: column;
    align-items: stretch;
    top: 0;
    gap: 0.28rem;
    justify-content: flex-start;
  }

  .hero__cta-emblem {
    width: clamp(5rem, 42vw, 7rem);
    margin: 0 auto;
    bottom: 0;
  }

  .hero__cta-actions {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    max-width: none;
  }

  .hero__cta-pill {
    border-radius: 1.25rem;
    padding: 0.65rem 0.9rem;
    margin-top: 0.28rem;
  }

  .hero__cta-pill__list {
    justify-content: left;
    row-gap: 0.5rem;
  }

  .hero__cta-spark:nth-child(1) {
    left: 6%;
  }

  .hero__cta-spark:nth-child(4) {
    right: 4%;
  }
}

/* モバイルTOPヒーロー（FV）：キャッチ→見出し→サブ→左寄せCTA→フッターテキスト */
@media (max-width: 720px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    --hero-mobile-text-glow:
      0 0 8px rgba(255, 255, 255, 1),
      0 0 18px rgba(255, 255, 255, 0.96),
      0 0 32px rgba(255, 255, 255, 0.9),
      0 0 48px rgba(255, 255, 255, 0.65),
      2px 0 5px rgba(255, 255, 255, 0.98),
      -2px 0 5px rgba(255, 255, 255, 0.98),
      0 2px 5px rgba(255, 255, 255, 0.98),
      0 -2px 5px rgba(255, 255, 255, 0.98),
      1px 1px 4px rgba(255, 255, 255, 0.96),
      -1px -1px 4px rgba(255, 255, 255, 0.96);
    aspect-ratio: unset;
    /* 文言〜CTA を詰め、背景だけ縦長になるのを防ぐ（hero__backdrop が全面を塗る） */
    min-height: min(52vh, 440px);
    border-radius: 0 0 1.75rem 1.75rem;
    overflow: hidden;
  }

  .hero__foreground {
    flex: 0 0 auto;
    width: 100%;
  }

  .hero::after {
    height: clamp(36px, 7vw, 88px);
  }

  .hero__photo {
    background-position: center 38%;
  }

  /* モバイルでは blue_back のオーバーレイを出さない */
  .hero__wave {
    background-image: none;
    filter: none;
    opacity: 1;
  }

  .hero__content {
    padding: 30px 0 clamp(0.85rem, 3vw, 1.25rem);
    padding-inline: var(--content-gutter);
  }

  .hero__intro {
    max-width: 100%;
  }

  .hero__tagline {
    margin: 0 0 0.35rem;
    color: var(--blue);
    font-weight: 700;
    font-size: clamp(0.93rem, 4.1vw, 1.06rem);
    letter-spacing: 0.03em;
    line-height: 1.5;
    text-shadow: var(--hero-mobile-text-glow);
  }

  .hero__title {
    font-size: clamp(1.82rem, 9.2vw, 3.45rem);
    line-height: 1.3;
    text-shadow: var(--hero-mobile-text-glow);
  }

  .hero__subtitle {
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-start;
    gap: 0.08rem 0;
    margin-top: 0.5rem;
    font-size: clamp(0.93rem, 4.15vw, 1.08rem);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.82);
    max-width: 100%;
    text-shadow: var(--hero-mobile-text-glow);
  }

  .hero__underline-path {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.98))
      drop-shadow(0 0 20px rgba(255, 255, 255, 0.9))
      drop-shadow(0 0 36px rgba(255, 255, 255, 0.68))
      drop-shadow(0 1px 0 rgba(245, 213, 71, 0.35));
  }

  .hero__features-block {
    pointer-events: auto;
    margin: -1.1rem 0 24px 0;
    padding: 0.35rem 0 0.25rem;
  }

  .hero__features-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.42rem;
    padding: 0.55rem var(--content-gutter) 0.45rem;
    font-family: var(--feature-font);
    font-weight: 800;
    font-size: clamp(0.98rem, 4.1vw, 1.12rem);
    letter-spacing: 0.02em;
    line-height: 1.35;
    color: var(--feature-navy);
    text-align: center;
    pointer-events: auto;
  }

  .hero__features-heading__icon {
    flex-shrink: 0;
    font-size: 1.35em;
    line-height: 1;
    color: var(--blue);
    font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
  }

  @supports not (font-variation-settings: normal) {
    .hero__features-heading__icon {
      font-family: inherit;
    }
  }

  .hero__features-heading__label {
    display: block;
  }

  .hero__features-scroller {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .hero__features-scroller::-webkit-scrollbar {
    display: none;
  }

  .hero__features-block .hero__features {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.65rem;
    margin: 0;
    padding: 0.35rem var(--content-gutter) 0.55rem;
    width: max-content;
    max-width: none;
  }

  .hero__features-block .feature-bubble {
    flex: 0 0 auto;
    width: 9rem;
    scroll-snap-align: center;
  }

  .hero__features-block .feature-bubble__disc {
    width: 100%;
    height: auto;
    min-height: 9.25rem;
    border-radius: 1.05rem;
    padding: 0.85rem 0.55rem 0.85rem;
    box-shadow:
      0 6px 20px rgba(0, 51, 102, 0.1),
      0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .hero__features-block .feature-bubble__gicon {
    font-size: 2.35rem;
    transform: translateY(0);
    margin-bottom: 0.15rem;
  }

  .hero__features-block .feature-bubble__text--primary {
    font-size: clamp(0.78rem, 3.2vw, 0.9rem);
  }

  .hero__features-block .feature-bubble__text--secondary {
    font-size: clamp(0.72rem, 3vw, 0.82rem);
    margin-top: 0.08rem;
  }

  .hero__features-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.42rem;
    padding: 0.25rem var(--content-gutter) 0.45rem;
    pointer-events: auto;
  }

  .hero__features-dot {
    flex-shrink: 0;
    width: 0.42rem;
    height: 0.42rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 51, 102, 0.22);
    cursor: pointer;
    transition:
      width 0.2s ease,
      background 0.2s ease,
      border-radius 0.2s ease;
  }

  .hero__features-dot.is-active {
    width: 1.2rem;
    border-radius: 999px;
    background: rgba(30, 136, 229, 0.95);
  }

  .hero__features-dot:focus-visible {
    outline: 2px solid rgba(30, 136, 229, 0.55);
    outline-offset: 2px;
  }

  .hero__cta {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    flex: 0 0 auto;
    margin-top: clamp(0.45rem, 2vw, 0.85rem);
    padding: 0.35rem var(--content-gutter) 0.55rem;
    pointer-events: auto;
  }

  .hero__cta-sparks {
    display: none;
  }

  .hero__cta-emblem {
    display: none !important;
  }

  .hero__cta-pill {
    display: none !important;
  }

  .hero__cta-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 60%;
    margin: 0;
    top: 0;
    gap: 0.35rem;
  }

  .hero__cta-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    width: 100%;
    max-width: 19.5rem;
    margin: 0;
  }

  .hero__cta-btn {
    border-radius: 999px;
    width: 100%;
    min-height: 3.15rem;
    box-sizing: border-box;
  }

  .hero__cta-btn--trial {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding: 0.62rem 1rem 0.62rem 0.85rem;
    text-align: left;
  }

  .hero__cta-btn--trial .hero__cta-btn__sub {
    display: none;
  }

  .hero__cta-btn__calendar {
    display: inline-flex;
    flex-shrink: 0;
    margin-right: 0.15rem;
  }

  .hero__cta-btn--trial .hero__cta-btn__mainrow {
    justify-content: flex-start;
    gap: 0.45rem;
    flex: 1;
    min-width: 0;
  }

  .hero__cta-btn--trial .hero__cta-btn__label {
    flex: 1;
    text-align: center;
    font-size: clamp(0.82rem, 3.5vw, 0.95rem);
  }

  .hero__cta-btn--line {
    justify-content: flex-start;
    padding-left: 0.65rem;
    padding-right: 0.85rem;
  }

  .hero__cta-btn--line .hero__cta-btn__label {
    text-align: left;
    font-size: clamp(0.82rem, 3.5vw, 0.95rem);
  }

  .hero__cta-footnote {
    display: block;
    margin-top: 0.65rem;
    max-width: 19.5rem;
    align-self: center;
    text-align: center;
    text-shadow: var(--hero-mobile-text-glow);
  }
}

@media (max-width: 520px) {
  .hero__cta-inner {
    gap: 0.22rem;
  }

  .hero__cta-btn {
    min-height: 3.1rem;
    height: auto;
  }

  .feature-bubble__disc {
    width: clamp(5.35rem, 24vw, 6.85rem);
    height: clamp(5.35rem, 24vw, 6.85rem);
  }

  .feature-bubble__icon {
    width: clamp(1.85rem, 9vw, 2.35rem);
    height: clamp(1.85rem, 9vw, 2.35rem);
  }

  .feature-bubble__text--primary {
    font-size: clamp(0.72rem, 3.15vw, 0.88rem);
  }

  .feature-bubble__text--secondary {
    font-size: clamp(0.64rem, 2.85vw, 0.78rem);
  }
}

/* ------------------------------
   Scroll reveal (上下左右フェードイン)
------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

[data-reveal="up"] {
  transform: translate3d(0, 18px, 0);
}
[data-reveal="down"] {
  transform: translate3d(0, -18px, 0);
}
[data-reveal="left"] {
  transform: translate3d(18px, 0, 0);
}
[data-reveal="right"] {
  transform: translate3d(-18px, 0, 0);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
