@charset "UTF-8";

:root {
  --navy: #1F3A5F;
  --navy-mid: #2C4A6E;
  --navy-light: #EAF0F6;
  --rose: #D96A82;
  --rose-light: #F7E4E8;
  --rose-dark: #A83D54;
  --ink: #2A2E33;
  --gray: #5F6B78;
  --line: #DDE3EA;
  --bg: #FBFCFD;
  --closed: #8D96A3;
  --closed-line: #C4CBD3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* body ではなく main.cs-container に限定適用。
   body に直接あてると、body直下の共通ヘッダー/フッター(パーシャル)の文字色・書体まで
   上書きしてしまい、フッターの住所などが薄いグレー・細字に化けるため。 */
main.cs-container {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  display: flow-root; /* 末尾の.cs-back-nav(margin-bottom:80px)がmain外へ相殺されて
                          背景が塗られない(bodyの黒が透ける)のを防ぐ */
}

.wrap {
  max-width: 1200px; /* トップページの.containerと幅を揃える */
  margin: 0 auto;
  padding: 0 16px; /* トップページの.containerと同じ左右余白に揃える */
}

/* ==========================================
   共通ヘッダー干渉対策 ＆ 上部注意書き
   ========================================== */
/* styles.css内の「#siteHeader + main」による一律100pxのパディングをリセット
   これを行うことで、ヘッダー下の不要な黒背景の隙間を消し去ります。
*/
#siteHeader + main.cs-container,
main.cs-container {
  padding-top: 0 !important;
}

.prov {
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: 14px;
  text-align: center;
  padding: 11px 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
  
  /* 固定ヘッダーの裏に隠れないよう、ヘッダーの高さ（100px）分だけ押し下げてピタッと吸着 */
  margin-top: 100px !important; 
  margin-bottom: 0 !important;
}

/* スマホ閲覧時：styles.cssでヘッダーが縮むため、上部余白も70pxに自動最適化 */
@media screen and (max-width: 768px) {
  .prov {
    margin-top: 70px !important;
  }
}

/* 2. もし .prov (ピンクの帯) がある場合とない場合両方に対応する */
.prov + .hero {
    padding-top: 64px !important; /* 帯がある時はヒーロー側のパディングは普通でOK */
  }
  
  /* 3. スマホ表示時の調整 (ヘッダーが少し低くなる場合) */
  @media screen and (max-width: 768px) {
    .hero {
      padding-top: 110px !important; /* スマホでのヘッダー高さに合わせる */
    }
  }

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 140px 0 72px !important;
  position: relative;
  overflow: hidden;
  margin-top: 0 !important; /* 帯との間の隙間をゼロに */
  display: block !important; /* styles.cssの共通.heroが持つdisplay:flex(中央揃え)を上書き */
  text-align: left !important; /* styles.cssの共通.heroが持つtext-align:centerを上書き */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217,106,130,0.14) 0%, transparent 42%),
              radial-gradient(circle at 88% 12%, rgba(255,255,255,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #B7C8DC;
  border: 1px solid rgba(183,200,220,0.4);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}

.hero h1 .accent {
  color: var(--rose);
}

.hero .lead {
  font-size: clamp(15px, 2.2vw, 19px);
  color: #D5DFEA;
  max-width: 680px;
  margin: 0 0 14px;
}

.hero .lead strong {
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid var(--rose);
  padding-bottom: 1px;
}

/* Series Flow */
.series-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0 40px; /* 左端は上のテキストと揃える */
  /* max-widthの制限を外し、.wrap幅いっぱいまで3つを均等（flex:1）に伸ばす */
}

.flow-node {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 20px;
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.flow-node .n {
  font-size: 13px;
  color: var(--rose);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
}

.flow-node .t {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.flow-arrow {
  color: #6B84A0;
  font-size: 20px;
  flex: 0 0 auto;
}

/* CTA / Buttons */
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
}

.btn-primary:hover {
  background: #c95873;
  transform: translateY(-2px);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-note {
  font-size: 14px;
  color: #9FB3C8;
  margin-top: 20px;
}

/* ==========================================
   Section Global
   ========================================== */
section {
  padding: 70px 0;
}

.sec-label {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--rose-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.sec-label i {
  margin-right: 6px;
  font-size: 0.9em;
}

.sec-title {
  font-size: clamp(23px, 3.4vw, 32px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 18px;
}

.sec-intro {
  font-size: 16px;
  color: var(--gray);
  max-width: 100%;
  margin-bottom: 44px;
  overflow-wrap: normal;
}

/* Pain Section */
.pain {
  background: #fff;
  border-top: 1px solid var(--line);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.pain-card {
  background: var(--navy-light);
  border-radius: 10px;
  padding: 26px 24px;
  border-left: 3px solid var(--rose);
}

.pain-card .q {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.5;
}

.pain-card .q i {
  color: var(--rose);
  margin-right: 6px;
}

.pain-card p {
  font-size: 14px;
  color: var(--gray);
}

/* Deliver Section */
.deliver {
  background: var(--navy);
  color: #fff;
}

.deliver .sec-label {
  color: var(--rose);
}

.deliver .sec-title {
  color: #fff;
}

.deliver .sec-intro {
  color: #C6D2DF;
}

.deliver-headline {
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.deliver-headline .hl {
  background: linear-gradient(transparent 62%, rgba(217, 106, 130, 0.45) 62%);
  padding: 0 2px;
}

.deliver-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.deliver-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.deliver-card .tag {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #0F2F4F;
  background: var(--rose-light);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: 700;
  margin-bottom: 14px;
}

.deliver-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 9px;
  line-height: 1.5;
}

.deliver-card h3 i {
  color: var(--rose);
  margin-right: 6px;
}

.deliver-card p {
  font-size: 14px;
  color: #B9C6D4;
}

.deliver-illust {
  display: block;
  width: 76px;
  max-width: 100%;
  height: auto;
  margin: auto auto 0;
  padding-top: 14px;
}

.invest-bars {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.invest-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.invest-bar .bar-label {
  flex: 0 0 22px;
  font-size: 13px;
  font-weight: 700;
  color: #D5DFEA;
}

.bar-track {
  flex: 1;
  height: 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  max-width: 100%;
}

.bar-fill {
  display: block;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--rose-light), var(--rose));
}

.bar-fill.bar-ume {
  width: 33%;
}

.bar-fill.bar-take {
  width: 66%;
}

.bar-fill.bar-matsu {
  width: 100%;
}

.invest-bars-caption {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #9FB3C8;
}

.deliver-foot {
  margin-top: 34px;
  font-size: 15px;
  color: #D5DFEA;
  text-align: center;
  background: rgba(217, 106, 130, 0.12);
  border: 1px solid rgba(217, 106, 130, 0.3);
  border-radius: 8px;
  padding: 18px 20px;
}

.deliver-foot strong {
  color: #fff;
}

/* Program Section */
.program {
  background: var(--bg);
}

.prog-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px 30px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}

.prog-num {
  font-size: 52px;
  font-weight: 700;
  color: var(--navy-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.prog-body h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}

.prog-theme {
  font-size: 13px;
  color: var(--rose-dark);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.prog-desc {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 18px;
}

.prog-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
}

.prog-meta .m {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-weight: 700;
}

.prog-meta .m .lbl {
  color: var(--gray);
  font-weight: 400;
}

.prog-take {
  margin-top: 16px;
  background: var(--rose-light);
  border-radius: 8px;
  padding: 16px 18px;
}

.prog-take-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 12px;
}

.prog-take-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.take-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid rgba(168, 61, 84, 0.18);
  border-radius: 8px;
  padding: 8px 13px 8px 9px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.take-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--rose-dark);
}

.prog-apply {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.prog-apply-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.prog-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}

.prog-apply-btn:hover {
  background: #c95873;
  transform: translateY(-2px);
}

.prog-apply-btn .arw {
  font-size: 16px;
}

.prog-apply-qr {
  width: 132px;
  height: 132px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px; /* QRコード周囲に白いクワイエットゾーンを確保し、読み取り精度を上げる */
  position: relative;
}

.prog-apply-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.prog-apply-note {
  font-size: 13px;
  color: var(--gray);
}

/* 申込締切（QRコードを読み取り不可にし、ボタンを非活性表示にする） */
.prog-apply-qr.is-closed {
  border-color: var(--closed-line);
}

.prog-apply-qr.is-closed img {
  filter: grayscale(1);
  opacity: 0.2;
}

.prog-apply-qr.is-closed::after {
  content: "受付終了";
  position: absolute;
  inset: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 66, 77, 0.62);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.prog-apply-btn.prog-closed-btn {
  background: #EDEFF2;
  color: var(--gray);
  border: 1px solid var(--closed-line);
  font-weight: 700;
  cursor: default;
  pointer-events: none;
}

.prog-apply-btn.prog-closed-btn:hover {
  background: #EDEFF2;
  transform: none;
}

.prog-parts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0 4px;
}

.part {
  background: var(--navy-light);
  border-radius: 8px;
  padding: 14px 15px;
  border-top: 2px solid var(--rose);
}

.part .pnum {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--rose-dark);
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}

.part .pstep {
  font-size: 13px;
  color: var(--gray);
  display: block;
  margin-bottom: 5px;
}

.part .pstep i {
  color: var(--rose);
  margin-right: 4px;
}

.part .ptitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
}

.part .pdesc {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.65;
  margin-top: 7px;
}

@media (max-width: 560px) {
  .prog-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .prog-num {
    font-size: 38px;
  }
  .prog-parts {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .instructor-profile {
    padding: 24px 20px;
    gap: 24px;
  }
  .instructor-image {
    flex: 0 0 120px;
    width: 120px;
    margin: 0 auto;
  }
  .instructor-info {
    min-width: 0;
  }
}

/* Target Section */
.target {
  background: #fff;
  border-top: 1px solid var(--line);
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.target-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.target-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 700;
}

.target-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.target-card p {
  font-size: 14px;
  color: var(--gray);
}

/* Impact Stats Section */
.impact-stats {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.impact-card {
  background: var(--navy-light);
  padding: 30px 24px 26px;
  border-radius: 10px;
  border-left: 3px solid var(--rose);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.impact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-size: 18px;
  margin-bottom: 14px;
}

.impact-eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--rose-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-num {
  display: block;
  font-size: clamp(26px, 3.6vw, 34px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
  white-space: nowrap;
}

.stat-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  text-align: left;
  margin-bottom: 16px;
}

.impact-illust {
  display: block;
  width: 96px;
  max-width: 100%;
  height: auto;
  margin: auto auto 0;
}

.stats-note {
  margin-top: 36px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: var(--rose-dark);
  background: var(--rose-light);
  padding: 20px;
  border-radius: 8px;
}

/* Instructor Section */
.instructor-profile {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-top: 12px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.instructor-image {
  flex: 0 0 200px;
}

.instructor-image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 3px solid var(--rose);
}

.instructor-info {
  flex: 1;
  min-width: 300px;
}

.instructor-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.instructor-title {
  font-size: 14px;
  font-weight: 400;
  color: var(--rose-dark);
}

.instructor-career {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 14px;
}

.instructor-career:last-child {
  margin-bottom: 0;
}

.highlight-text {
  color: var(--navy);
  font-weight: 700;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 1px;
}

/* Next Step Section */
.next-step {
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-top: 2px solid var(--rose);
}

.next-step .sec-label {
  color: var(--rose);
}

.next-step .sec-title {
  color: #fff;
}

.next-step .sec-intro {
  color: #C6D2DF;
}

.cs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 42px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: var(--rose);
  border-radius: 50px;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}

.cs-btn-primary:hover {
  background: #c95873;
  transform: translateY(-2px);
}

/* Apply Section */
.apply {
  background: var(--navy);
  color: #fff;
}

.apply .sec-label {
  color: var(--rose);
}

.apply .sec-title {
  color: #fff;
}

.apply-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 44px;
  align-items: start;
}

@media (max-width: 760px) {
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 6px;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 15px;
  vertical-align: top;
}

.info-table th {
  color: #9FB3C8;
  font-weight: 400;
  width: 120px;
  white-space: nowrap;
}

.info-table td {
  color: #fff;
  font-weight: 700;
}

.info-table td .sub {
  display: block;
  font-size: 13.5px;
  color: #E2E8F0;
  font-weight: 500;
  margin-top: 5px;
}

/* ==========================================
   お申込みBOX & QRコードまわり（重なり・隙間解消版）
   ========================================== */
   .apply-box {
    background: #fff;
    border-radius: 14px;
    padding: 32px 28px;
    color: var(--ink);
    text-align: center;
    display: block !important; /* 強制的にブロック配置にして子要素の崩れを防ぐ */
  }

  .apply-box .free {
    display: inline-block;
    background: var(--rose);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.05em;
  }
  
  .apply-box h3 {
    font-size: 22px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .apply-box p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 22px;
  }
  
  /* QRコードの台座：サイズを固定し、背景を「白」に統一してグレーの隙間を抹消 */
  .qr-box {
    width: 180px !important;      /* 150pxから180pxに広げてカメラの認識率をUP */
    height: 180px !important;     /* 高さを固定して潰れを防止 */
    margin: 0 auto 24px !important; /* 左右中央に寄せ、下要素との余白を24px強制確保 */
    border: 2px dashed var(--line);
    border-radius: 10px;
    background: #ffffff !important; 
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    position: relative !important;
  }
  
  /* QRコード画像：他からの位置干渉を無効化 */
  .qr-box img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    padding: 10px !important;     /* スキャンしやすくするための白枠マージン */
    display: block !important;
    position: static !important;   /* absolute等の位置ズレ干渉を強制リセット */
  }
  
  /* 申込フォームURLリンク：重なりを防ぐため、上の要素と明確に切り離す */
  .apply-url {
    display: block !important;    /* インラインからブロックにして縦並びを保証 */
    clear: both !important;       /* 周りからの回り込みを解除 */
    font-size: 14px;
    color: var(--navy);
    font-weight: 700;
    word-break: break-all;
    background: var(--navy-light);
    border-radius: 6px;
    padding: 12px;
    margin-top: 15px !important;  /* QRコードエリアとの間に安全な余白を空ける */
    margin-bottom: 8px;
  }
  
  .apply-note {
    font-size: 13px;
    color: var(--gray);
  }

  /* お問い合わせ先をグレー系の枠（塗り）に収める */
  .contact-box {
    background: var(--navy-light);
    border-radius: 10px;
    padding: 20px 22px;
    margin: 6px 0 18px;
    text-align: left;
  }

  .contact-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--rose-dark);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }

  .contact-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .contact-line {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.7;
  }

/* ==========================================
   戻るボタン（TSLサイバー・ダークデザイン）
   ========================================== */
.cs-back-nav {
  display: flex;
  justify-content: center;
  margin-top: 60px; /* cs-mt-large 相当 */
  margin-bottom: 80px; /* フッター手前の空間設計 */
}

.cs-back-btn {
  display: inline-block;
  padding: 14px 45px;
  font-family: "Orbitron", sans-serif; /* TSLを象徴する英語フォント */
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--navy); /* 白背景の本編上でも判別できるよう、通常時から視認性のある配色に */
  background: var(--navy-light); /* 枠線なしでもボタンと分かるよう塗りで領域を示す */
  border: none;
  border-radius: 30px;
  transition: color 0.25s ease;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ホバー時はテキストカラーのみ変化 */
.cs-back-btn:hover {
  color: var(--rose-dark);
}

/* ==========================================
   セミナー一覧（seminar/index.html）専用スタイル
   ※LP側のデザインを壊さないよう、一覧ページの .seminar-index-page 傘下に限定適用します
   ========================================== */
   .seminar-index-page {
    background-color: #0b0f19 !important; /* TSL他ページと完全に調和する、吸い込まれるようなダークネイビー */
    padding-top: 140px !important; /* ヘッダーの下に綺麗に潜り込ませる余白 */
    padding-bottom: 100px !important;
    min-height: 100vh;
  }
  
  .seminar-index-page .page-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .seminar-index-page .page-title {
    font-family: "Orbitron", "Noto Sans JP", sans-serif; /* TSLの先進的な英語フォントを適用 */
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.2); /* わずかにネオンのように発光 */
  }
  
  .seminar-index-page .page-lead {
    font-size: 15px;
    color: #a0aec0 !important; /* 暗い背景で見えやすい、洗練されたグレー */
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
  }
  
  /* 横長カードの配置コンテナ */
  .seminar-index-page .seminar-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto 0;
  }
  
  /* 【重要】横長サムネイル（カード）の基本デザイン */
  .seminar-index-page .seminar-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02) !important; /* 透き通る極薄の白背景 */
    border: 1px solid rgba(0, 243, 255, 0.15) !important; /* TSLシアンをベースにした繊細な境界線 */
    padding: 1.75rem 2rem !important;
    border-radius: 10px !important;
    text-decoration: none !important; /* Aタグ標準の下線（アンダーライン）を完全に抹消 */
    color: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  }
  
  /* ホバー時の美しいサイバーエフェクト（青白くネオンのように光り、わずかに浮き上がる） */
  .seminar-index-page .seminar-card:hover {
    background: rgba(0, 243, 255, 0.04) !important;
    border-color: rgba(0, 243, 255, 0.6) !important;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15) !important;
    transform: translateY(-3px) !important;
  }
  
  /* ステータス・日程部分（左側） */
  .seminar-index-page .card-status {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 170px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 1.5rem;
  }
  
  .seminar-index-page .status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    width: fit-content;
    letter-spacing: 0.05em;
  }
  
  /* 申込受付中（TSLシアン、黒文字で引き締める） */
  .seminar-index-page .badge-open {
    background-color: #00f3ff !important;
    color: #0b0f19 !important;
  }
  
  /* 申込終了などのバッジ（今後アーカイブ用） */
  .seminar-index-page .badge-ended {
    background-color: #3f4e64 !important;
    color: #a0aec0 !important;
  }
  
  .seminar-index-page .seminar-date {
    font-family: "Orbitron", sans-serif;
    font-size: 13.5px;
    color: #00f3ff !important;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  
  /* コンテンツ部分（中央） */
  .seminar-index-page .card-content {
    flex-grow: 1;
    padding: 0 2rem;
  }
  
  .seminar-index-page .card-series {
    display: block;
    font-size: 11.5px;
    color: #718096 !important; /* 控えめなグレーで第何回かを表示 */
    margin-bottom: 4px;
    font-weight: 500;
  }
  
  .seminar-index-page .card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #ffffff !important;
    transition: color 0.3s ease;
  }
  
  /* カードホバー時にタイトルだけ青く光る連動エフェクト */
  .seminar-index-page .seminar-card:hover .card-title {
    color: #00f3ff !important;
  }
  
  .seminar-index-page .card-venue {
    font-size: 13px;
    color: #a0aec0 !important;
  }
  
  .seminar-index-page .card-venue i {
    color: #00f3ff !important;
    margin-right: 6px;
  }
  
  /* 詳細矢印ボタン（右側） */
  .seminar-index-page .card-arrow {
    min-width: 130px;
    text-align: right;
  }
  
  .seminar-index-page .arrow-btn {
    font-size: 13px;
    font-weight: 700;
    color: #00f3ff !important;
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
  }
  
  /* ホバー時にボタン部分が綺麗にシアンに反転する */
  .seminar-index-page .seminar-card:hover .arrow-btn {
    background: #00f3ff !important;
    color: #0b0f19 !important;
    border-color: #00f3ff !important;
  }
  
  .seminar-index-page .arrow-btn i {
    transition: transform 0.3s ease;
  }
  
  .seminar-index-page .seminar-card:hover .arrow-btn i {
    transform: translateX(3px);
  }
  
  /* ==========================================
     モバイル対応（レスポンシブ）
     ========================================== */
  @media (max-width: 768px) {
    .seminar-index-page .seminar-card {
      flex-direction: column;
      align-items: flex-start;
      padding: 1.25rem !important;
    }
    
    .seminar-index-page .card-status {
      min-width: auto;
      width: 100%;
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-right: 0;
      padding-bottom: 0.75rem;
      margin-bottom: 0.75rem;
    }
    
    .seminar-index-page .card-content {
      padding: 0;
      margin-bottom: 1rem;
    }
    
    .seminar-index-page .card-arrow {
      width: 100%;
      text-align: left;
    }
    
    .seminar-index-page .arrow-btn {
      width: 100%;
      justify-content: center;
    }
  }