@charset "UTF-8";

/* =========================================================================
   Claude Code企業研修LP 専用スタイル
   - ベイジ共通CSS（style.css）の上に追加
   - モノクロ・フラットデザイン
   - CSSプレフィックス: cc-
   ========================================================================= */

:root {
  --cc-color-bg: #ffffff;
  --cc-color-bg-alt: #f5f5f5;
  --cc-color-bg-dark: #111111;
  --cc-color-line: #e2e2e2;
  --cc-color-line-strong: #1a1a1a;
  --cc-color-text: #1a1a1a;
  --cc-color-text-inverse: #ffffff;
  --cc-color-claude: #d97757;
  --cc-color-claude-dark: #c25c3d;

  --cc-font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  --cc-font-en: "Noto Serif", "Times New Roman", Georgia, serif;

  --cc-inner-max: 840px;
  --cc-inner-px: 24px;

  --cc-section-py: 90px;
}

/* ------- ヘッダ上書き：透過背景・白ロゴ・白文字・90%縮小 ------- */
.cc-body .l-header,
.cc-body .l-header .p-header {
  background: transparent;
}
.cc-body .l-header {
  zoom: 0.9;
}
.cc-body .p-nav__list {
  gap: 12px;
}
.cc-body .p-nav__list .menu-item {
  margin-left: 8px;
  margin-right: 8px;
}
.cc-body .l-header .p-header__logo img {
  filter: brightness(0) invert(1);
}
.cc-body .p-nav__link,
.cc-body .p-nav__text {
  color: #ffffff;
}
.cc-body .c-button.-type_header a {
  color: #ffffff;
}
.cc-body .c-button.-type_header.-color_inverted a {
  color: #1a1a1a;
}

/* ------- リセット・ベース ------- */
.cc-body {
  font-family: var(--cc-font-jp);
  color: var(--cc-color-text);
  background: var(--cc-color-bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  line-height: 2;
  font-weight: 500;
}

.cc-main,
.cc-main p,
.cc-main li,
.cc-main dt,
.cc-main dd,
.cc-main a,
.cc-main blockquote {
  font-weight: 500;
}

.cc-body * {
  box-sizing: border-box;
}

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

.cc-main {
  display: block;
  padding-top: 0;
}

.cc-inner {
  max-width: var(--cc-inner-max);
  margin: 0 auto;
  padding-left: var(--cc-inner-px);
  padding-right: var(--cc-inner-px);
}

/* ------- 共通：セクション ------- */
.cc-section {
  padding: var(--cc-section-py) 0;
  border-top: 1px solid var(--cc-color-line);
}

.cc-section:nth-of-type(even) {
  background: var(--cc-color-bg-alt);
}

.cc-section__head {
  margin-bottom: 96px;
  text-align: center;
}

.cc-section__label {
  font-family: var(--cc-font-en);
  font-size: 16px;
  letter-spacing: .04em;
  font-weight: 600;
  margin: 0 0 24px;
  color: #777777;
}

.cc-section__title {
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: .02em;
  font-weight: 700;
  margin: 0;
  color: var(--cc-color-text);
  overflow: hidden;
  padding: 0.12em 0;
}

.cc-section__sub {
  margin: 32px 0 0;
  font-size: 16px;
  color: var(--cc-color-text);
}

.cc-h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 24px;
  padding-left: 16px;
  border-left: 4px solid var(--cc-color-line-strong);
  line-height: 1.6;
}

/* ------- ボタン ------- */
.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 18px 32px;
  font-family: var(--cc-font-jp);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: 6px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.cc-btn--primary {
  background: var(--cc-color-claude);
  color: var(--cc-color-text-inverse);
  border: 1px solid var(--cc-color-claude);
}

.cc-btn--primary:hover {
  background: var(--cc-color-claude-dark);
  color: var(--cc-color-text-inverse);
  border-color: var(--cc-color-claude-dark);
}

.cc-btn--secondary {
  background: transparent;
  color: var(--cc-color-line-strong);
  border: 1px solid var(--cc-color-line-strong);
}

.cc-btn--secondary:hover {
  background: var(--cc-color-line-strong);
  color: var(--cc-color-text-inverse);
}

.cc-btn--sm {
  min-width: 0;
  padding: 9px 32px;
  font-size: 17px;
  border-radius: 6px;
}

.cc-btn--xs {
  min-width: 0;
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 6px;
}

.cc-btn--inverse {
  background: var(--cc-color-claude);
  color: var(--cc-color-text-inverse);
  border: 1px solid var(--cc-color-claude);
}

.cc-btn--inverse:hover {
  background: var(--cc-color-claude-dark);
  color: var(--cc-color-text-inverse);
  border-color: var(--cc-color-claude-dark);
}

/* =========================================================================
   Section 1: Hero（ファーストビュー）
   ========================================================================= */
.cc-fv {
  padding: 130px 0 70px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('background.png') center / cover no-repeat,
    var(--cc-color-bg-dark);
  color: var(--cc-color-text-inverse);
  position: relative;
  overflow: hidden;
}

.cc-fv .cc-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cc-fv__eyebrow {
  display: inline-block;
  font-size: 17px;
  letter-spacing: .12em;
  color: var(--cc-color-text-inverse);
  margin: 0 0 40px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  font-weight: 600;
}

.cc-fv__title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .01em;
  margin: 0 0 16px;
}

.cc-fv__title-line {
  display: block;
  overflow: hidden;
  padding: 0.15em 0;
}

.cc-fv__title .cc-fv__title-line--sm,
.cc-fv__title .cc-fv__title-line--sm .cc-fv__char {
  font-size: 56.25%; /* 元サイズの75% × さらに75% */
}

.cc-fv__title .cc-fv__title-line--lg,
.cc-fv__title .cc-fv__title-line--lg .cc-fv__char {
  font-size: 110%;
}

.cc-fv__char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: cc-char-rise 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  will-change: transform, opacity;
}

@keyframes cc-char-rise {
  0% {
    transform: translateY(110%);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.cc-fv__subtitle {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 40px;
  color: rgba(255,255,255,.85);
}

.cc-fv__lead {
  font-size: 17px;
  line-height: 2;
  color: var(--cc-color-text-inverse);
  margin: 0 auto 48px;
  max-width: 720px;
}

.cc-fv__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cc-fv .cc-btn--primary {
  background: var(--cc-color-claude);
  color: var(--cc-color-text-inverse);
  border: 1px solid var(--cc-color-claude);
}

/* FV内CTAは高さを約80%にスリム化 */
.cc-fv .cc-btn--sm {
  padding: 6px 28px;
  font-size: 15px;
}

.cc-fv .cc-btn--primary:hover {
  background: var(--cc-color-claude-dark);
  color: var(--cc-color-text-inverse);
  border-color: var(--cc-color-claude-dark);
}

.cc-fv .cc-btn--secondary {
  color: var(--cc-color-text-inverse);
  border-color: var(--cc-color-text-inverse);
}

.cc-fv .cc-btn--secondary:hover {
  background: var(--cc-color-text-inverse);
  color: var(--cc-color-line-strong);
}

/* h2見出し：スクロールで登場するとき同じ動き */
.cc-reveal-char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  will-change: transform, opacity;
}

.cc-reveal-visible .cc-reveal-char {
  animation: cc-char-rise 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* フェードイン */
.cc-fade {
  opacity: 0;
  transition: opacity 0.9s ease-out;
  will-change: opacity;
}

.cc-fade.is-visible {
  opacity: 1;
}

/* =========================================================================
   Section 2: 課題（Do You Feel This?）
   ========================================================================= */
.cc-issue {
  background: var(--cc-color-bg-alt);
}

.cc-issue .cc-section__head {
  margin-bottom: 48px;
}

.cc-issue__lead {
  font-size: 16px;
  margin: 0 auto 40px;
  max-width: 720px;
  text-align: center;
}

.cc-issue__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.cc-issue__item {
  background: var(--cc-color-bg);
  border: 1px solid var(--cc-color-line);
  padding: 32px;
  border-radius: 4px;
}

/* 5つ目（奇数最後）を中央配置 */
.cc-issue__item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 12px);
  justify-self: center;
}

.cc-issue__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.6;
}

.cc-issue__item p {
  font-size: 15px;
  color: var(--cc-color-text);
  margin: 0;
  line-height: 1.9;
}

.cc-issue__quote {
  margin: 0;
  padding: 36px 40px;
  background: var(--cc-color-bg-dark);
  color: var(--cc-color-text-inverse);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 4px;
}

.cc-issue__quote-text {
  flex: 1 1 auto;
  text-align: left;
}

.cc-issue__quote-strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  margin: 0 0 8px;
}

.cc-issue__quote-sub {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  color: rgba(255,255,255,.85);
}

.cc-issue__quote-cta {
  flex: 0 0 auto;
}

.cc-section-cta {
  margin-top: 56px;
}

/* =========================================================================
   Section 3: サービス概要（Our Service）
   ========================================================================= */
.cc-service .cc-section__head {
  margin-bottom: 48px;
}

.cc-service__intro {
  margin: 0 auto 40px;
  max-width: 860px;
}

.cc-service__intro p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 2;
}

.cc-service__intro p:last-child {
  margin-bottom: 0;
}

.cc-service__target {
  margin-top: 48px;
}

.cc-service__area-lead {
  font-size: 15px;
  color: var(--cc-color-text);
  margin: 0 0 32px;
  max-width: 760px;
}

.cc-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cc-area-card {
  border: 1px solid var(--cc-color-line);
  padding: 32px;
  background: var(--cc-color-bg);
  border-radius: 4px;
}

.cc-area-card__label {
  font-family: var(--cc-font-en);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--cc-color-text);
  margin: 0 0 12px;
  font-weight: 600;
}

.cc-area-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}

.cc-area-card__body {
  font-size: 14px;
  color: var(--cc-color-text);
  line-height: 1.9;
  margin: 0;
}

/* =========================================================================
   Section 4: 研修の構成（Program Structure）
   ========================================================================= */
.cc-program .cc-section__head {
  margin-bottom: 48px;
}

.cc-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--cc-color-line);
}

.cc-step:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.cc-step__num {
  font-family: var(--cc-font-en);
  font-size: 51px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  color: #bbbbbb;
}

.cc-step__label {
  font-size: 13px;
  color: #777;
  margin: 0 0 4px;
  font-weight: 600;
}

.cc-step__title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.6;
}

.cc-step__body p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 2;
}

.cc-step__body p:last-child {
  margin-bottom: 0;
}

.cc-step__example-lead {
  margin: 4px 0 8px !important;
  font-weight: 600;
}

.cc-step__examples {
  margin: 0 0 20px;
  padding: 16px 20px 16px 36px;
  background: var(--cc-color-bg-alt);
  border-left: 3px solid var(--cc-color-line-strong);
  border-radius: 2px;
}

.cc-step__examples li {
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 4px;
}

.cc-step__examples li:last-child {
  margin-bottom: 0;
}

.cc-program__emphasis {
  margin: 48px 0 0;
  padding: 36px 40px;
  background: var(--cc-color-bg-dark);
  color: var(--cc-color-text-inverse);
  border-radius: 4px;
  text-align: center;
}

.cc-program__emphasis p {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}

.cc-program__emphasis-note {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}

.cc-program__emphasis-cta {
  margin-top: 28px;
  text-align: center;
}

/* =========================================================================
   Section 5: 実施までの流れ（Process）
   ========================================================================= */
.cc-flow {
  background: var(--cc-color-bg-alt);
}

.cc-flow .cc-section__head {
  margin-bottom: 77px;
}

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

.cc-flow__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  padding: 0 0 32px;
  border: 0;
  align-items: start;
  position: relative;
}

.cc-flow__item:last-child {
  padding-bottom: 0;
}

.cc-flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 40px;
  bottom: 0;
  width: 4px;
  background: var(--cc-color-line-strong);
}

.cc-flow__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cc-color-bg-dark);
  color: var(--cc-color-text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cc-font-en);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.cc-flow__body {
  margin: 0;
  padding-top: 6px;
}

.cc-flow__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.5;
}

.cc-flow__body p {
  font-size: 15px;
  line-height: 1.95;
  margin: 0 0 12px;
  color: var(--cc-color-text);
}

.cc-flow__body p:last-child {
  margin-bottom: 0;
}

.cc-flow__body ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.cc-flow__body ul li {
  position: relative;
  padding-left: 14px;
  font-size: 15px;
  line-height: 1.9;
}

.cc-flow__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .9em;
  width: 6px;
  height: 1px;
  background: currentColor;
}

/* =========================================================================
   Section 6: 料金（Pricing）
   ========================================================================= */
.cc-pricing .cc-section__head {
  margin-bottom: 48px;
}

.cc-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.cc-price-card {
  border: 1px solid var(--cc-color-line);
  padding: 32px 24px;
  background: var(--cc-color-bg);
  display: flex;
  flex-direction: column;
  border-radius: 4px;
}

.cc-price-card--featured {
  border: 2px solid var(--cc-color-line-strong);
}

.cc-price-card__label {
  font-family: var(--cc-font-en);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--cc-color-text);
  font-weight: 600;
  margin: 0 0 8px;
}

.cc-price-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.5;
}

.cc-price-card__target {
  font-size: 14px;
  color: #777;
  margin: 0 0 20px;
}

.cc-price-card__price {
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cc-color-line);
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 4px;
}

.cc-price-card__price-num {
  font-family: var(--cc-font-en);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.cc-price-card__price-unit {
  font-size: 14px;
  font-weight: 700;
  margin-left: 4px;
}

.cc-price-card__body {
  font-size: 14px;
  color: var(--cc-color-text);
  line-height: 1.9;
  margin: 0;
  flex: 1;
}

.cc-price-notes {
  font-size: 13px;
  color: var(--cc-color-text);
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  line-height: 1.9;
}

.cc-price-notes li {
  padding: 2px 0;
}

.cc-special {
  margin-top: 64px;
}

.cc-special__head {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 32px;
}

.cc-special__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cc-special__card {
  background: var(--cc-color-bg);
  border: 1px solid var(--cc-color-line);
  border-radius: 4px;
  padding: 22px 22px 24px;
}

.cc-special__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 4px;
}

.cc-special__price {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 12px;
}

.cc-special__desc {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* =========================================================================
   Section 7: 選ばれる理由（Our Advantage）
   ========================================================================= */
.cc-reasons {
  background: var(--cc-color-bg-alt);
}

.cc-reason {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--cc-color-line);
}

.cc-reason:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.cc-reason__num {
  font-family: var(--cc-font-en);
  font-size: 51px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  color: #bbbbbb;
}

.cc-reason__title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.6;
}

.cc-reason__body p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 2;
}

.cc-reason__body p:last-child {
  margin-bottom: 0;
}

.cc-reason__note {
  font-size: 13px;
  color: #777;
  margin: 8px 0 0;
}

/* =========================================================================
   Section 8: 講師紹介（Instructor）
   ========================================================================= */
.cc-instructor {
  background: var(--cc-color-bg-alt);
}

.cc-instructor .cc-section__head {
  margin-bottom: 48px;
}

.cc-instructor__card {
  background: var(--cc-color-bg);
  border: 1px solid var(--cc-color-line);
  border-radius: 4px;
  padding: 40px 44px;
}

.cc-instructor__profile {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--cc-color-line);
}

.cc-instructor__name {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.4;
}

.cc-instructor__name-ruby {
  font-size: 14px;
  font-weight: 500;
  color: #777;
  margin-left: 8px;
}

.cc-instructor__role {
  font-size: 14px;
  color: #555;
  margin: 0;
  font-weight: 500;
}

.cc-instructor__body p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 2;
}

.cc-instructor__body p:last-child {
  margin-bottom: 0;
}

.cc-instructor__message {
  margin: 32px 0 0;
  padding: 24px 28px;
  background: var(--cc-color-bg-dark);
  color: var(--cc-color-text-inverse);
  border-radius: 4px;
  border-left: 0;
}

.cc-instructor__message p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  font-style: normal;
}

@media (max-width: 768px) {
  .cc-instructor__card {
    padding: 28px 24px;
  }
  .cc-instructor__name {
    font-size: 22px;
  }
  .cc-instructor__name-ruby {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }
  .cc-instructor__message {
    padding: 20px 22px;
  }
}

/* =========================================================================
   Section 6.5: 参加者の声（Voice）
   ========================================================================= */
.cc-voice {
  background: var(--cc-color-bg-alt);
}

.cc-voice .cc-section__head {
  margin-bottom: 48px;
}

.cc-voice__survey {
  margin: 0 0 48px;
  padding: 24px;
  background: var(--cc-color-bg);
  border: 1px solid var(--cc-color-line);
  border-radius: 4px;
  overflow: hidden;
}

.cc-voice__survey img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.1);
  transform-origin: center;
}

.cc-voice__list {
  columns: 2;
  column-gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cc-voice__item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 20px;
  padding: 22px 24px 24px;
  background: var(--cc-color-bg);
  border: 1px solid var(--cc-color-line);
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--cc-color-text);
}

.cc-voice__item::before {
  content: "\201C";
  display: block;
  font-family: var(--cc-font-en);
  font-size: 40px;
  line-height: 0.5;
  margin-bottom: 2px;
  color: #d6d6d6;
}

.cc-voice__note {
  margin: 28px 0 0;
  font-size: 12px;
  color: #777;
  text-align: left;
}

/* =========================================================================
   Section 8.5: 参考動画
   ========================================================================= */
.cc-video .cc-section__head {
  margin-bottom: 56px;
}

.cc-ref-block {
  margin-bottom: 64px;
}

.cc-ref-block:last-child {
  margin-bottom: 0;
}

.cc-ref-block__head {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 16px;
}

.cc-ref-block__lead {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
  color: var(--cc-color-text);
}

.cc-ref-block__slides {
  margin: 0;
}

.cc-ref-block__slides img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--cc-color-line);
  border-radius: 6px;
}

.cc-video__single {
  max-width: 100%;
  margin: 0 auto;
}

.cc-video__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}

.cc-video__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================================
   Section 9: FAQ
   ========================================================================= */
.cc-faq {
  background: var(--cc-color-bg-alt);
}

.cc-faq .cc-section__head {
  margin-bottom: 58px;
}

.cc-faq__list {
  margin: 0;
}

.cc-faq__item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--cc-color-line);
  margin: 0;
  padding: 28px 0;
}

.cc-faq__item:first-child {
  border-top: 1px solid var(--cc-color-line);
}

.cc-faq__q {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 16px;
}

.cc-faq__a {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--cc-color-text);
}

.cc-faq__mark {
  font-family: var(--cc-font-en);
  font-size: 18px;
  font-weight: 700;
  flex: 0 0 24px;
  line-height: 1.4;
  color: var(--cc-color-line-strong);
}

.cc-faq__a .cc-faq__mark {
  color: var(--cc-color-text);
}

.cc-faq__text {
  flex: 1 1 auto;
  min-width: 0;
}

/* =========================================================================
   Section 10: CTA（クロージング）
   ========================================================================= */
.cc-cta {
  background: #ececec;
  color: var(--cc-color-text);
  padding: var(--cc-section-py) 0;
}

.cc-cta .cc-inner {
  text-align: center;
}

.cc-cta__eyebrow {
  font-family: var(--cc-font-en);
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--cc-color-text);
  margin: 0 0 24px;
  font-weight: 600;
}

.cc-cta__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 32px;
  overflow: hidden;
  padding: 0.12em 0;
}

.cc-cta__lead {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 16px;
  color: var(--cc-color-text);
}

.cc-cta__lead:last-of-type {
  margin-bottom: 48px;
}

.cc-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.cc-cta__notes {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  text-align: left;
  font-size: 13px;
  color: var(--cc-color-text);
  line-height: 1.9;
}

.cc-cta__notes li {
  padding: 2px 0;
}

/* =========================================================================
   レスポンシブ
   ========================================================================= */
@media (max-width: 960px) {
  :root {
    --cc-section-py: 60px;
  }

  .cc-fv {
    padding: 100px 0 60px;
  }
  .cc-fv__eyebrow {
    font-size: 13px;
  }
  .cc-fv__title {
    font-size: 34px;
  }
  .cc-fv__subtitle {
    font-size: 22px;
  }
  .cc-fv__lead {
    font-size: 16px;
  }

  .cc-section__title {
    font-size: 28px;
  }

  .cc-voice__list {
    columns: 1;
  }

  .cc-special__grid {
    grid-template-columns: 1fr;
  }

  .cc-issue__list,
  .cc-area-grid,

  .cc-issue__item:last-child:nth-child(odd) {
    max-width: 100%;
  }

  .cc-price-grid {
    gap: 16px;
  }
  .cc-price-card {
    padding: 24px 16px;
  }
  .cc-price-card__price-num {
    font-size: 34px;
  }

  .cc-step,
  .cc-reason {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 40px 0;
  }
  .cc-step__num,
  .cc-reason__num {
    font-size: 56px;
  }
  .cc-step__title,
  .cc-reason__title {
    font-size: 22px;
  }

  .cc-flow__item {
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding-bottom: 28px;
  }

  .cc-issue__quote {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px 24px;
  }
  .cc-issue__quote-text {
    text-align: center;
  }

  .cc-cta {
    padding: 60px 0;
  }
  .cc-cta__title {
    font-size: 28px;
  }

  .cc-program__emphasis {
    padding: 28px 24px;
  }
}

@media (max-width: 600px) {
  :root {
    --cc-inner-px: 20px;
  }

  .cc-price-grid {
    grid-template-columns: 1fr;
  }
  .cc-price-card {
    padding: 28px 24px;
  }

  .cc-fv__title {
    font-size: 28px;
  }
  .cc-fv__subtitle {
    font-size: 19px;
  }
  .cc-fv__cta {
    flex-direction: column;
  }
  .cc-fv__cta .cc-btn {
    width: 100%;
  }

  .cc-cta__buttons {
    flex-direction: column;
  }
  .cc-cta__buttons .cc-btn {
    width: 100%;
  }

  .cc-issue__quote {
    padding: 28px 20px;
    font-size: 16px;
  }
}
