/* =====================================================================
 * TOP 追加セクション（ROUTE MAKER / ナビ書き出し / 数字訴求）
 * リリース改修 2026-07 追加分。style.css(scss) とは独立して管理する。
 * 視覚言語は LP 本体に合わせる:
 *  - ストロークマーキー（Special Gothic / -webkit-text-stroke）
 *  - 縦書きサイドレール（spot/route/record と同作法）
 *  - 背景の切り返し（赤 #d35b4b・上角丸 28px）
 * ===================================================================== */

.make-section {
  position: relative;
  background: #d35b4b;
  border-radius: 28px 28px 0 0;
  color: #fff;
  padding: 0 0 110px;
  overflow: hidden;
}

/* ---- ストロークマーキー（無限横ループ・guide と同文法） ---- */
.make-marquee {
  overflow: hidden;
  padding: 64px 0 40px;
}

.make-marquee-track {
  display: flex;
  width: max-content;
  animation: make-marquee-scroll 32s linear infinite;
}

.make-marquee-seq {
  display: flex;
  gap: 26px;
  padding-right: 26px;
  align-items: center;
  white-space: nowrap;
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(48px, 8vw, 74px);
  letter-spacing: 0.02em;
}

.make-marquee span.is-stroke {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.65);
}

.make-marquee span.is-fill {
  color: rgba(255, 255, 255, 0.95);
  -webkit-text-stroke: 0 transparent;
}

@keyframes make-marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .make-marquee-track {
    animation: none;
  }
}

/* ---- 本文レイアウト: 縦書きレール + メイン ---- */
.make-inner {
  display: flex;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 6vw 0 0;
}

.make-side-col {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  padding: 10px 18px 34px 16px;
}

.make-side-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
}

.make-main {
  flex: 1 1 auto;
  min-width: 0;
}

/* ---- 見出し（JA 大見出し + EN 小ラベル） ---- */
.make-heading {
  margin-bottom: 48px;
}

.make-ja-main {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.make-en-label {
  margin-top: 14px;
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.7);
}

/* ---- 2 カラム本文 ---- */
.make-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 52px;
}

.make-item .make-mini {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}

.make-item h3 {
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.make-item p {
  font-size: 14px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.92);
}

.make-item .make-accent {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border-left: 3px solid rgba(255, 255, 255, 0.9);
  padding-left: 10px;
}

/* ---- 数字訴求 ---- */
.make-stats {
  margin-top: 84px;
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.make-stat .ms-value {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: #fff;
}

.make-stat .ms-value em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.85);
}

.make-stat .ms-label {
  margin-top: 10px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
}

/* =====================================================================
 * GUIDE への導線（フッター直前）
 * 巨大英字ストローク=デザイン / 和文=情報、hover で赤に満ちる
 * ===================================================================== */
.guide-cta-section {
  position: relative;
  background: #0a0a0a;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
}

.guide-cta {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
  padding: 84px 6vw 92px;
  text-decoration: none;
}

.gc-label {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: #d35b4b;
  margin-bottom: 22px;
}

.gc-row {
  display: flex;
  align-items: center;
  gap: 34px;
}

.gc-en {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(38px, 7.6vw, 88px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  transition: color 0.25s ease, -webkit-text-stroke-color 0.25s ease;
}

.guide-cta:hover .gc-en {
  color: #d35b4b;
  -webkit-text-stroke-color: #d35b4b;
}

.gc-body {
  flex: 1 1 auto;
  min-width: 0;
}

.gc-ja {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f5f4ee;
}

.gc-desc {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.gc-arrow {
  flex: 0 0 auto;
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 30px;
  color: #d35b4b;
  transition: transform 0.22s ease;
}

.guide-cta:hover .gc-arrow {
  transform: translateX(8px);
}

@media (max-width: 720px) {
  .guide-cta {
    padding: 60px 7vw 68px;
  }
  .gc-row {
    flex-wrap: wrap;
    gap: 14px 18px;
  }
  .gc-en {
    font-size: clamp(34px, 11vw, 52px);
    flex-basis: 100%;
  }
  .gc-arrow {
    font-size: 24px;
  }
}

@media (max-width: 720px) {
  .make-section {
    padding-bottom: 84px;
  }
  .make-marquee {
    padding: 48px 0 28px;
  }
  .make-inner {
    padding: 0 7vw;
  }
  .make-side-col {
    display: none; /* SP は縦書きレールを畳む（本体 LP と同運用） */
  }
  .make-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .make-stats {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
