/* ==========================================
     CSS Variables (カスタムプロパティ)
     ========================================== */
:root {
  /* 和紙風背景（差し替え時はこのパスを変更してください） */
  --bg-paper-image: url("../image/background-paper.png");
  --bg-paper: #f2efe9; /* 和紙風の背景色（フォールバック） */
  --navy-color: #264378; /* メインのネイビー */
  --red-color: #c02026; /* アクセントの赤 */
  --orange-color: #fe9409; /* 特徴円のオレンジ */
  --peach-color: #f6bb6c; /* 特徴円のピークス */
  --text-main: #000000; /* 基本のテキスト色 */
  --font-base: "Hiragino Sans", "ヒラギノ角ゴ", sans-serif;
}

/* ==========================================
       Reset & Base Styles
       ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-base);
  color: var(--text-main);
  background-color: var(--bg-paper);
  background-image: var(--bg-paper-image);
  background-repeat: repeat;
  background-position: 0 0;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* 鉤括弧「」の余白を詰める（.large-text 内のみ） */
.large-text .quote-open {
  margin-left: -0.5em;
}
.large-text .quote-close {
  margin-right: -0.3em;
}

/* 共通のコンテンツ幅コンテナ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* ==========================================
       1. Hero Section (上部エリア)
       ========================================== */
.hero-section {
  padding-top: 40px;
  position: relative;
}

/* PHPロゴ (仮実装) */
.logo {
  margin-bottom: 60px;
}
.logo a {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}
.logo img {
  display: block;
  height: auto;
  max-height: 48px;
}

.hero-content {
  position: relative;
  min-height: 520px; /* 画像を配置するための高さを確保 */
}

.hero-sp-visual {
  max-width: 768px;
  margin: 0 auto;
}

/* 左側：テキストエリア */
.hero-text-box {
  width: 100%;
  max-width: 720px;
  position: relative;
  z-index: 20;
  text-align: left;
}

.catch {
  font-size: 28px;
  font-weight: 700;
  color: #555555;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.sub-catch {
  font-size: 28px;
  font-weight: 700;
  color: #1f4694;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.main-title {
  font-size: 40px;
  font-weight: 700;
  color: #1f4694;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.main-title .large-text {
  font-size: 70px;
  font-weight: 800;
  color: #1f4694;
  display: inline-block;
  margin-bottom: 0;
  line-height: 1;
  white-space: nowrap; /* 「松下幸之助」の途中で折り返さない */
}

.main-title .red-text {
  font-size: 70px;
  font-weight: 700;
  color: #e34b32;
  line-height: 1;
  margin-left: 0.2em;
}

.lead {
  font-size: 28px;
  font-weight: 700;
  color: #555555;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.lead-emphasis {
  color: #e34b32;
}

/* 画像プレースホルダーの共通設定 */
.person-placeholder,
.game-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

/* 人物画像（透過画像のため枠・背景なし） */
.person-placeholder {
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 760px;
  height: 760px;
  z-index: 1;
  overflow: visible;
}

/* ゲーム画像（透過画像のため枠・背景なし） */
.game-placeholder {
  position: absolute;
  left: 0;
  bottom: -200px;
  width: 800px;
  /* height: 360px; */
  z-index: 20;
  overflow: visible;
}

.person-placeholder img,
.game-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
  display: block;
}

/* ==========================================
       2. Navy Section (斜め背景・下部エリア)
       ========================================== */
.navy-section-wrapper {
  position: relative;
  margin-top: -3vw;
  z-index: 10;
}

.navy-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--navy-color);
  clip-path: polygon(
    0 0,
    50% 10vw,
    100% 0,
    100% calc(100% - 10vw),
    50% 100%,
    0 calc(100% - 10vw)
  );
  z-index: 1;
}

.navy-inner {
  position: relative;
  z-index: 2;
  padding-top: 12vw;
  padding-bottom: 8vw;
}

/* --- 購入ボタン（画面右下固定・一番上だけ非表示、スクロール後は常に表示） --- */
.buy-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 150px;
  height: 150px;
  background-color: #8b1317;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.2s,
    background-color 0.2s,
    opacity 0.35s ease;
  z-index: 9998;
  opacity: 1;
}
.buy-button.is-at-top {
  opacity: 0;
  pointer-events: none;
}

.buy-button:hover {
  transform: translateY(-5px);
  background-color: var(--red-color);
}

.buy-button img {
  width: 70px;
  height: 70px;
  margin-bottom: 0px;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.4));
}

.buy-button span {
  font-size: 17px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* --- 3つの特徴円 --- */
.features-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
  margin-top: 60px;
}

.feature-circle {
  width: 220px;
  height: 220px;
  background-color: var(--orange-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--navy-color);
  font-weight: 700;
  box-shadow: 0 0 0 8px #d87b00;
}

.feature-circle .small {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 5px;
}

.feature-circle .large {
  font-size: 48px;
  line-height: 1.4;
}

/* --- 下部説明テキスト --- */
.description-text {
  color: white;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0.5px;
}

.description-text p {
  margin-bottom: 1.65em;
}
.description-text p:last-child {
  margin-bottom: 0;
}

/* ==========================================
       3. Founder Section (創業者紹介エリア)
       ========================================== */
.founder-section {
  padding: 8vw 0 6vw;
  position: relative;
  z-index: 5;
}

.title-block-orange {
  background-color: var(--orange-color);
  color: white;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: 0.08em;
  border: 4px solid #d87b00;
}

.founder-title {
  margin-bottom: 100px;
}

.founder-content {
  display: flex;
  gap: 60px;
  align-items: stretch;
  justify-content: flex-end;
}

.founder-left {
  width: 40%;
  display: flex;
}

.founder-left .founder-card {
  flex: 1;
  background-color: var(--orange-color);
  margin: 0 30px;
}

.founder-card {
  position: relative;
  color: var(--text-main);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: visible;
}

.founder-card::before {
  content: "";
  display: block;
  height: 200px;
}

.founder-img-placeholder {
  width: calc(100% + 80px);
  margin-left: -40px;
  box-sizing: border-box;
}

.founder-img-book {
  width: 100%;
  display: block;
}

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

.founder-profile {
  background-color: var(--orange-color);
  padding: 28px 30px 36px;
  color: var(--text-main);
}

.founder-profile h3 {
  font-size: 36px;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.08em;
  text-align: center;
}

.founder-profile p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin: 0;
  color: var(--text-main);
}

.founder-right {
  width: 50%;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}

.founder-right p {
  margin-bottom: 30px;
}

.founder-right p.mb-0 {
  margin-bottom: 0;
}

.highlight-box {
  background-color: #f6bb6c;
  padding: 30px;
  margin-bottom: 30px;
  color: var(--text-main);
}

.highlight-box p {
  margin-bottom: 0;
}

/* ==========================================
       4. Next Navy Section & Game Appeal
       ========================================== */
.next-navy-wrapper {
  position: relative;
  z-index: 10;
}

.next-navy-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--navy-color);
  clip-path: polygon(
    0 0,
    50% 10vw,
    100% 0,
    100% calc(100% - 10vw),
    50% 100%,
    0 calc(100% - 10vw)
  );
  z-index: 1;
}

.next-navy-inner {
  position: relative;
  z-index: 2;
  padding-top: 12vw;
  padding-bottom: 11vw;
}

.bridge-title {
  margin-top: -8vw;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}

.game-appeal-content {
  display: flex;
  gap: 20px;
  margin-top: 0;
  margin-bottom: 100px;
  align-items: flex-start;
}

.game-appeal-left {
  width: 50%;
}

.board-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  overflow: visible;
}

.board-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.game-appeal-right {
  width: 50%;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.2;
}

.game-appeal-right p {
  margin-bottom: 25px;
}

.text-orange {
  color: var(--orange-color);
}

.center-text-block {
  max-width: 960px;
  margin-top: 40px;
  margin-inline: auto;
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  text-align: left;
}

.center-text-block p {
  margin-bottom: 0;
}

.drama-list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-inline: auto;
}

.drama-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.drama-img-placeholder {
  width: 48%;
  aspect-ratio: 1 / 1;
  overflow: visible;
  flex-shrink: 0;
}

.drama-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.drama-content {
  width: 52%;
  color: white;
}

.drama-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.drama-number {
  width: 50px;
  height: 50px;
  background-color: var(--orange-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.drama-title {
  color: var(--peach-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  /* letter-spacing: 0.03em; */
}

.drama-desc {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}

.drama-desc p {
  margin-bottom: 28px;
}
.drama-desc p:last-child {
  margin-bottom: 0;
}

/* ==========================================
       5. Special Bonus Section (特別特典エリア)
       ========================================== */
.special-bonus-section {
  padding: 6vw 0 8vw;
  position: relative;
  z-index: 5;
}

.bonus-box {
  background-image: url("../image/sec5-book-bg.png");
  background-image: image-set(
    url("../image/sec5-book-bg.png") 1x,
    url("../image/sec5-book-bg@2x.png") 2x
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px;
  padding: 60px 100px;
  position: relative;
}

.bonus-label {
  background-color: var(--orange-color);
  color: white;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto 30px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  border: 4px solid #d87b00;
}

.bonus-subtitle {
  color: var(--navy-color);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
}

.bonus-content {
  display: flex;
  position: relative;
  padding-right: 300px;
}

.bonus-left {
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  line-height: 2;
}

.bonus-left p {
  margin-bottom: 20px;
}

.bonus-list-box {
  background-color: white;
  border-radius: 12px;
  padding: 25px 50px;
  margin-bottom: 25px;
  /* box-shadow: 0 5px 15px rgba(0,0,0,0.05); */
  position: relative;
  z-index: 1;
  width: 120%;
}

.bonus-list-box .list-title {
  color: var(--navy-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}

.bonus-list-box ul {
  list-style: none;
  padding-left: 0;
  line-height: 1.6;
}

.bonus-list-box li {
  position: relative;
  padding-left: 1.2em;
}

.bonus-list-box li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 12px;
  color: var(--text-main);
  top: 0.3em;
}

.book-placeholder {
  width: 370px;
  height: 470px;
  transform: rotate(3deg);
  overflow: visible;
  position: absolute;
  right: -65px;
  bottom: -20px;
  z-index: 5;
}

.book-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ==========================================
       6. Voice Section (体験者の声エリア)
       ========================================== */
.voice-section {
  padding: 0 0 10vw;
  position: relative;
  z-index: 5;
}

.voice-section .container {
  max-width: 1360px;
}

.voice-box {
  border: 3px solid var(--navy-color);
  padding: 100px 60px;
  margin: 0 20px; /* ボックスの外側に少し余白 */
  background-color: transparent; /* 和紙背景を透かす */
}

.voice-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy-color);
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  letter-spacing: 2px;
}

/* タイトルの下の線 */
.voice-title::after {
  content: "";
  display: block;
  width: 440px;
  height: 3px;
  background-color: var(--navy-color);
  margin: 20px auto 0;
}

.voice-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.voice-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-right: 220px; /* 画像200px + gap40px（左画像レイアウト時、右余白） */
}

/* 偶数番目はアイコンを右側に配置 */
.voice-item.reverse {
  flex-direction: row-reverse;
  padding-right: 0;
  padding-left: 220px; /* 画像200px + gap40px（右画像レイアウト時、左余白） */
}

.voice-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

/* アイコン画像を綺麗にフィットさせる */
.voice-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.voice-content {
  flex-grow: 1;
}

.voice-item-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.voice-item-attr {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.voice-item-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}

/* 体験者の声 カラーバリエーション */
.color-navy {
  color: var(--navy-color);
}
.bg-navy {
  background-color: var(--navy-color);
}

.color-orange {
  color: var(--orange-color);
}
.bg-orange {
  background-color: var(--orange-color);
}

.color-green {
  color: #2c5e4e;
}
.bg-green {
  background-color: #2c5e4e;
}

.color-red {
  color: #8b1317;
}
.bg-red {
  background-color: #8b1317;
}

.color-peach {
  color: #f9ce90;
}
.bg-peach {
  background-color: #f9ce90;
}

/* ==========================================
       7. Download Section (動画・資料ダウンロードエリア)
       ========================================== */
.download-section {
  position: relative;
  z-index: 5;
}

.video-area {
  position: relative;
  padding-top: 20px; /* 上のエリアとの余白 */
}

/* 動画エリアの下半分をネイビーにする */
.video-bg-half {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--navy-color);
  z-index: 1;
}

.relative-z {
  position: relative;
  z-index: 2;
}

.video-wrapper {
  /* max-width: 960px; */
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background-color: #000;
}

/* レスポンシブ動画対応 (16:9を維持) */
.video-responsive {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 の比率 */
  background-color: #434c5e;
  overflow: hidden;
}

/* iframeが追加された場合も自動でサイズが合うように設定 */
.video-responsive iframe,
.video-responsive .video-mockup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 動画プレースホルダー用のモックアップスタイル */
.video-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
}

/* 動画プレイヤーのコントロールバー(擬似) */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 44px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 20px;
  box-sizing: border-box;
  font-weight: normal;
  font-family: sans-serif;
}

.play-icon-mock {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent white;
}

.time-text {
  font-size: 12px;
}

.seek-bar-bg {
  flex-grow: 1;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
}

.seek-bar-current {
  width: 30%;
  height: 100%;
  background-color: #c02026;
}

.download-text-area {
  background-color: var(--navy-color);
  padding: 100px 0 180px; /* 下のボックスが被る分、下部余白を大きめに取る */
}

.text-center {
  text-align: center;
}

.download-title {
  color: var(--peach-color);
  font-size: 32px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}

/* 見出しの下線 */
.download-title::after {
  content: "";
  display: block;
  width: 440px;
  height: 3px;
  background-color: var(--peach-color);
  margin: 20px auto 0;
}

.download-desc {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 40px;
}

.download-btn {
  display: inline-block;
  text-decoration: none;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.download-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}
.download-btn img {
  display: block;
}

/* ==========================================
       8. Product Section (商品情報エリア)
       ========================================== */
.product-section {
  position: relative;
  z-index: 10;
  margin-top: -80px; /* ネイビー背景に被せるために上に引き上げる */
  padding-bottom: 100px;
}

.product-section::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 70%;
  background-color: var(--navy-color);
  z-index: -1;
  pointer-events: none;
}

.product-container {
  position: relative;
  z-index: 2;
}

/* 動画＆ダウンロードが hidden のときのみ：ネガティブマージンを解消し上余白を確保 */
.game-lp-wrapper:has(.download-section[hidden]) .product-section {
  margin-top: 0;
}
.game-lp-wrapper:has(.download-section[hidden]) .product-container {
  padding-top: 100px;
}

.product-box {
  background-image: url("../image/sec6-bg.png");
  background-image: image-set(
    url("../image/sec6-bg.png") 1x,
    url("../image/sec6-bg@2x.png") 2x
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 80px;
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.product-left {
  width: 58%;
}

.product-img-placeholder {
  width: 100%;
  overflow: visible;
}

.product-img-placeholder img {
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-right {
  width: 42%;
  color: var(--navy-color);
}

.product-logo {
  margin-bottom: 20px;
  padding: 0 10px;
  text-align: center;
  line-height: 0;
}

.product-logo img {
  width: 100%;
  height: auto;
  display: inline-block;
}

.product-bonus-text {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.product-specs {
  border: 2px solid #707070;
  padding: 15px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  color: var(--text-main);
}

.spec-item {
  width: 45%;
  font-size: 15px;
  font-weight: 700;
}

.product-specs .spec-item:nth-child(2n) {
  width: 55%;
}

.faq-button-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.faq-button {
  display: inline-block;
  background-color: var(--orange-color);
  color: white;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  border: 4px solid #d87b00;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

.faq-button:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* ==========================================
       9. FAQ Section (よくある質問エリア)
       ========================================== */
.faq-section {
  padding-bottom: 10vw;
  position: relative;
  z-index: 5;
  margin-top: -30px; /* 上のボタンとの距離を自然に詰める */
}

.faq-container {
  max-width: 960px; /* テキストが横に広がりすぎないよう少し絞る */
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #d3c7b6; /* 和紙に馴染む薄い茶色の線 */
  padding: 35px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-q {
  color: #8b1317; /* 画像のような赤茶色 */
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}

.faq-a {
  color: var(--text-main);
  font-size: 18px;
  font-weight: 700; /* Aのテキストも太字にして強調 */
  line-height: 2;
  letter-spacing: 0.03em;
}

/* ==========================================
       10. Message Section (最後のメッセージエリア)
       ========================================== */
.message-section {
  background-color: var(--navy-color);
  padding-top: 80px;
  padding-bottom: 40%; /* 下にイラストがはみ出す分の余白 */
  position: relative;
  z-index: 5;
}

.message-title {
  color: var(--peach-color);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: 2px;
}

.message-content {
  max-width: 960px;
  margin: 0 auto;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
  padding: 0 20px;
}

.message-content p {
  margin-bottom: 36px;
}

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

.message-illustration {
  position: absolute;
  left: 50%;
  bottom: -60px; /* 次のセクション側へかぶせる量 */
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  display: flex;
  justify-content: center;
  align-items: flex-end; /* イラストを底辺に揃える */
  padding: 0 20px;
  z-index: 10;
}

.illustration-placeholder {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: visible;
}

.illustration-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

/* ==========================================
       11. Related Section (関連リンクエリア)
       ========================================== */
.related-section {
  padding: 10vw 0;
  position: relative;
  z-index: 5;
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.related-card {
  background-color: white;
  border: 20px solid var(--navy-color);
  padding: 40px 50px;
  display: flex;
  gap: 40px;
  align-items: stretch; /* 画像列とテキスト列の高さを揃える */
  min-height: 360px; /* 3枚のカードの高さを揃えるベース値 */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-card.last-card {
  margin-top: 80px;
  padding: 40px 50px 40px 20px;
}

.related-img-col {
  width: 42%;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end; /* 画像を左寄せ */
}

.related-text-col {
  width: 58%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.related-catch {
  color: var(--navy-color);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
  width: 100%;
}

.related-catch--small {
  font-size: 24px;
}

.related-title {
  color: var(--navy-color);
  font-size: 68px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  text-align: left;
  width: 100%;
}

.related-title span {
  display: block;
  font-size: 42px;
  text-align: left;
}

.related-title--reverse {
  font-size: 42px;
}

.related-title--reverse span {
  font-size: 68px;
}

.related-desc {
  color: var(--navy-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 0; /* ボタンがない場合の調整 */
}

.related-btn {
  display: flex;
  justify-content: center;
  text-decoration: none;
  margin-top: 25px;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.related-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}
.related-btn img {
  display: block;
  max-width: 94%;
}

.related-img-landscape {
  width: 100%;
}

/* ==========================================
       12. Footer (フッター)
       ========================================== */
.site-footer {
  background-color: var(--navy-color);
  padding: 48px 20px 40px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 24px;
}
.footer-logo a {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}
.footer-logo img {
  display: inline-block;
  height: auto;
  max-height: 44px;
  width: auto;
}

.footer-nav {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
}

.footer-nav a {
  color: white;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-nav-sep {
  color: white;
  margin: 0 10px;
  font-weight: 400;
}

.footer-copy {
  color: white;
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}

/* ==========================================
       13. 購入ポップアップ
       ========================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.25s,
    opacity 0.25s;
}

.popup-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.popup-overlay.is-open .popup-box {
  transform: scale(1);
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.popup-box {
  position: relative;
  width: 100%;
  max-width: 860px;
  background-image: url("../image/pop-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #d3c2ae;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  padding: 48px 56px 44px;
  transform: scale(0.95);
  transition: transform 0.25s ease-out;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: none;
  color: #555;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.popup-close:hover {
  background-color: rgba(0, 0, 0, 0.08);
  color: #333;
}

.popup-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.popup-btn {
  display: block;
  width: 100%;
  max-width: 356px;
  text-decoration: none;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

.popup-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.popup-btn img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

/* ==========================================
       スクロールフェードイン（視界に入ったらふわっと表示）
       ========================================== */
.js-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
       PCのみ / SPのみ 表示切り替え
       ========================================== */
.sp-only {
  display: none !important;
}

/* ==========================================
       Responsive (スマホ対応)
       ========================================== */

/* コンテンツ幅より狭いときの詰まり緩和（769px〜1024px） */
@media (max-width: 1024px) {
  .container {
    padding: 0 7%;
  }

  /* ─── ヒーロー：788px〜1024px も SP 同様に1枚画像で表示 ─── */
  .hero-section .hero-text-box,
  .hero-section .person-placeholder,
  .hero-section .game-placeholder {
    display: none !important;
  }
  .hero-section .hero-sp-visual {
    display: block !important;
  }
  .hero-sp-visual img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ─── ヒーローエリアのタブレット対応 ─── */
  .logo {
    margin-bottom: 30px;
  }
  .hero-content {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    margin-bottom: -24vw;
    z-index: 20;
  }

  /* ネイビーセクションの上部余白を調整 */
  .navy-section-wrapper {
    margin-top: -4vw;
  }

  .navy-inner {
    padding-top: 20vw;
    padding-bottom: 15vw;
  }
  .next-navy-inner {
    padding-bottom: 15vw;
  }

  .founder-card::before {
    display: none;
  }
  .founder-profile {
    text-align: center;
  }
  .founder-section {
    padding: 8vw 0 15vw;
  }

  .bonus-box {
    padding: 40px;
  }
  .bonus-list-box {
    width: 100%;
  }
  .bonus-list-box ul {
    width: 70%;
  }

  /* 体験者の声：左右余白を0に・アバター縮小 */
  .voice-box {
    padding: 40px;
  }
  .voice-item {
    padding-right: 0;
  }
  .voice-item.reverse {
    padding-left: 0;
  }
  .voice-avatar {
    width: 140px;
    height: 140px;
  }
  .book-placeholder {
    bottom: auto;
    top: 0%;
    max-width: 40%;
    height: auto;
  }
  .product-img-placeholder {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
  }
  .product-logo img {
    width: 60%;
    max-width: 400px;
    margin: 0 auto 30px;
  }
  .product-specs {
    text-align: center;
  }

  /* メッセージ：下余白のみ縮小 */
  .message-section {
    padding-bottom: 400px;
  }

  /* 2カラム → 1カラム */
  .founder-content {
    flex-direction: column;
    gap: 40px;
  }
  .founder-left,
  .founder-right {
    width: 100%;
  }
  .founder-left .founder-card {
    margin: 0 auto;
  }
  .founder-img-placeholder {
    width: 100%;
    margin-left: 0;
  }

  .game-appeal-content {
    flex-direction: column;
    gap: 30px;
  }
  .game-appeal-left,
  .game-appeal-right {
    width: 100%;
  }
  .game-appeal-left {
    width: 80%;
    margin: 0 auto;
  }

  .drama-item {
    flex-direction: column;
    gap: 24px;
  }
  .drama-img-placeholder,
  .drama-content {
    width: 100%;
  }
  .drama-img-placeholder {
    max-width: 400px;
    margin: 0 auto;
  }

  .bonus-content {
    flex-direction: column;
    padding-right: 0;
  }

  .product-box {
    flex-direction: column;
    gap: 40px;
    padding: 40px;
  }
  .product-left,
  .product-right {
    width: 100%;
  }

  .related-card {
    flex-direction: column;
    gap: 32px;
  }
  .related-img-col,
  .related-text-col {
    width: 100%;
    justify-content: center;
  }
  .related-catch {
    text-align: center;
  }
  .related-title {
    text-align: center;
  }
  .related-title span {
    text-align: center;
  }
  .related-title--reverse {
    text-align: center;
  }
  .related-desc {
    text-align: center;
  }
}

@media (max-width: 850px) {
  .feature-circle {
    width: 180px;
    height: 180px;
    box-shadow: 0 0 0 6px #d87b00;
  }

  /* ─── ヒーロー追加縮小（769px〜850px） ─── */
  .catch {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .sub-catch {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .main-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .main-title .large-text {
    font-size: 46px;
  }
  .main-title .red-text {
    font-size: 46px;
  }
  .lead {
    font-size: 20px;
  }
  .person-placeholder {
    width: 45%;
    max-width: 360px;
    right: -3%;
    top: 0;
  }
  .game-placeholder {
    width: 90%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  /* PCのみ / SPのみ 表示切り替え */
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: revert !important;
  }

  .features-row {
    gap: 15px;
  }
  .feature-circle {
    width: 100px;
    height: 100px;
    box-shadow: 0 0 0 3px #d87b00;
  }
  .feature-circle .small {
    font-size: 12px;
    margin-bottom: 0;
    letter-spacing: -0.05em;
  }
  .feature-circle .large {
    font-size: 24px;
  }

  /* SP時にbrを無効化するユーティリティ */
  .sp-br-none br,
  br.sp-br-none {
    display: none;
  }

  .container {
    padding: 0 7%;
  }
  .hero-section {
    padding-top: 20px;
  }
  .logo {
    width: 20%;
    max-width: 100px;
    margin-bottom: 20px;
  }
  .logo img {
    width: 100px;
    height: auto;
  }
  .hero-content-wrapper {
    padding: 0 2%;
  }
  .hero-content {
    margin-top: 10vw;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: -24vw;
    z-index: 20;
  }
  .hero-text-box {
    width: 100%;
    max-width: 100%;
    text-align: left;
    margin-bottom: 24px;
    padding-right: 0;
  }
  .catch {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .sub-catch {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .main-title {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 2.2;
  }
  .main-title .large-text,
  .main-title .red-text {
    font-size: 34px;
  }
  .main-title .large-text {
    white-space: normal;
    display: inline;
    margin-bottom: 10px;
  }
  .lead {
    font-size: 18px;
  }
  .person-placeholder {
    right: -90px;
    bottom: -120px;
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 260px;
    margin: 0 auto;
    z-index: 1;
  }
  .person-placeholder img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    object-position: center bottom;
  }
  .game-placeholder {
    left: auto;
    right: auto;
    bottom: -190px;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 160px;
    margin: -60px 0 0;
    padding: 0 10px;
    transform: none;
  }
  .game-placeholder img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    object-position: center bottom;
  }
  .navy-section-wrapper {
    margin-top: -6vw;
  }
  .navy-bg {
    clip-path: polygon(
      0 0,
      50% 12vw,
      100% 0,
      100% calc(100% - 12vw),
      50% 100%,
      0 calc(100% - 12vw)
    );
  }
  .navy-inner {
    padding-top: 15vw;
    padding-bottom: 15vw;
  }
  .buy-button {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 4px);
    right: 14px;
    width: 90px;
    height: 90px;
    opacity: 1;
    pointer-events: auto;
    touch-action: manipulation;
  }
  .buy-button img {
    width: 28px;
    height: 28px;
    margin-bottom: 2px;
  }
  .buy-button span {
    font-size: 12px;
  }
  .features-row {
    gap: 15px;
  }
  .description-text {
    text-align: left;
    font-size: 14px;
  }
  .description-text br {
    display: none;
  }
  .title-block-orange {
    font-size: 18px;
    padding: 10px;
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    word-break: break-word;
  }
  .founder-section {
    padding-top: 15vw;
    padding-bottom: 20vw;
  }
  .founder-title {
    margin-bottom: 40px;
  }
  .founder-content {
    flex-direction: column;
    gap: 40px;
  }
  .founder-left .founder-card {
    margin: 0 auto;
  }
  .founder-card::before {
    display: none;
  }
  .founder-left,
  .founder-right {
    width: 100%;
  }
  .founder-img-placeholder {
    width: 100%;
    margin-left: 0;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    min-height: auto;
  }
  .founder-img-book,
  .founder-img-portrait {
    margin-left: 0;
  }
  .founder-profile {
    padding: 15px;
  }
  .founder-profile h3 {
    font-size: 24px;
  }
  .founder-profile p {
    font-size: 16px;
    letter-spacing: 0.03em;
    text-align: center;
  }
  .founder-right {
    font-size: 14px;
  }
  .highlight-box {
    padding: 20px;
  }
  .next-navy-inner {
    padding-top: 0;
    padding-bottom: 20vw;
  }
  .next-navy-bg {
    clip-path: polygon(
      0 0,
      50% 12vw,
      100% 0,
      100% calc(100% - 12vw),
      50% 100%,
      0 calc(100% - 12vw)
    );
    margin-top: 10vw;
  }
  .bridge-title {
    margin-top: -6vw;
    margin-bottom: 40px;
  }
  .game-appeal-content {
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 60px;
    gap: 30px;
  }
  .game-appeal-left,
  .game-appeal-right {
    width: 100%;
  }
  .game-appeal-right {
    font-size: 14px;
    letter-spacing: 0.03em;
  }
  .center-text-block {
    margin-top: 30px;
    font-size: 14px;
    letter-spacing: 0.03em;
  }
  .drama-list {
    margin-top: 50px;
    gap: 80px;
  }
  .drama-item {
    flex-direction: column;
    gap: 20px;
  }
  .drama-header {
    gap: 10px;
  }
  .drama-number {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
  .drama-title {
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 1.4;
  }
  .drama-desc {
    font-size: 14px;
    letter-spacing: 0.03em;
  }
  .drama-img-placeholder,
  .drama-content {
    width: 100%;
  }
  .drama-img-placeholder {
    max-width: 400px;
    width: 90%;
    margin: 0 auto;
  }
  .special-bonus-section {
    padding: 25vw 0 15vw;
  }
  .bonus-box {
    padding: 30px 20px;
  }
  .bonus-label {
    font-size: 18px;
    padding: 10px;
    max-width: 100%;
    border-radius: 8px;
    word-break: break-word;
  }
  .bonus-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 800;
  }
  .bonus-content {
    padding-right: 0;
    flex-direction: column-reverse;
  }
  .bonus-left {
    text-align: left;
    font-size: 14px;
  }
  .bonus-left br {
    display: none;
  }
  .bonus-list-box {
    width: 100%;
    padding: 20px;
  }
  .bonus-list-box .list-title {
    font-size: 18px;
  }
  .bonus-list-box ul {
    width: 100%;
  }
  .bonus-list-box li {
    margin-bottom: 8px;
  }
  .bonus-list-box li::before {
    font-size: 8px;
    top: 0.6em;
  }
  .book-placeholder {
    position: relative;
    right: auto;
    bottom: auto;
    top: auto;
    margin: 0 auto;
    transform: rotate(2deg);
    width: 200px;
    max-width: 100%;
    height: 280px;
  }

  /* 体験者の声エリアのスマホ対応 */
  .voice-section {
    padding-bottom: 15vw;
  }
  .voice-box {
    padding: 30px 20px;
    margin: 0;
  }
  .voice-title {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .voice-list {
    gap: 40px;
  }
  .voice-title::after {
    width: 100%;
    margin-top: 10px;
  }
  .voice-item,
  .voice-item.reverse {
    flex-direction: column;
    gap: 20px;
    padding-right: 0;
    padding-left: 0;
  }
  .voice-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }
  .voice-item-title {
    font-size: 16px;
    text-align: center;
  }
  .voice-item-attr {
    text-align: center;
    font-size: 16px;
  }
  .voice-item-text {
    text-align: left;
    font-size: 14px;
  }

  /* ダウンロードエリアのスマホ対応 */
  .download-title {
    display: block;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .download-title::after {
    width: 100%;
    margin-top: 10px;
  }
  .download-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .download-btn {
    padding: 0;
    font-size: 16px;
    width: 90%;
    max-width: 320px;
  }
  .download-btn img {
    max-width: 100%;
    height: auto;
  }
  .download-text-area {
    padding: 20vw 0 30vw;
  }
  .video-mockup {
    font-size: 14px;
  }

  /* 商品エリアのスマホ対応 */
  .product-section {
    margin-top: -60px;
  }
  .game-lp-wrapper:has(.download-section[hidden]) .product-section {
    margin-top: 0;
  }
  .game-lp-wrapper:has(.download-section[hidden]) .product-container {
    padding-top: 15vw;
  }
  .product-box {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
    margin-bottom: 0;
  }
  .product-left,
  .product-right {
    width: 100%;
  }
  .product-img-placeholder {
    width: 90%;
  }
  .product-logo img {
    max-width: 240px;
    width: 100%;
    margin: 0 auto;
  }
  .product-bonus-text {
    font-size: 14px;
  }
  .product-specs {
    flex-direction: column;
    gap: 10px;
  }
  .product-specs .spec-item:nth-child(2n) {
    width: 100%;
  }
  .spec-item {
    width: 100%;
  }

  .faq-button {
    font-size: 16px;
    padding: 15px 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    word-break: break-word;
  }

  /* よくある質問エリアのスマホ対応 */
  .faq-section {
    margin-top: -10px;
  }
  .faq-button-wrapper {
    margin-bottom: 10vw;
  }
  .faq-item {
    padding: 25px 0;
  }
  .faq-q {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .faq-a {
    font-size: 14px;
    line-height: 1.8;
  }

  /* メッセージエリアのスマホ対応 */
  .message-section {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .message-title {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .message-content {
    font-size: 14px;
    line-height: 2;
  }
  .message-content br {
    display: none; /* スマホでは意図的な改行を無効化 */
  }
  .message-illustration {
    position: relative;
    left: auto;
    bottom: -8vw;
    transform: none;
    margin-top: 0;
    padding: 0;
  }
  .illustration-placeholder {
    aspect-ratio: 0;
  }
  .illustration-placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: inherit;
    display: block;
  }

  /* 関連リンクエリアのスマホ対応 */
  .related-section {
    padding: 20vw 0 15vw;
  }
  .related-card {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
    border-width: 5px;
    min-height: auto;
  }
  .related-img-col,
  .related-text-col {
    width: 100%;
    align-items: center; /* スマホ時は中央揃え */
    text-align: center;
  }
  .related-img-placeholder {
    width: 60%;
    max-width: 280px;
    margin: 0 auto;
  }
  .last-card .related-img-placeholder {
    width: 80%;
  }
  .related-catch {
    text-align: center;
    font-size: 20px;
  }
  .related-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 10px;
  }
  .related-title span {
    text-align: center;
    font-size: 20px;
  }
  .related-title--reverse {
    font-size: 20px;
  }
  .related-title--reverse span {
    font-size: 24px;
  }
  .related-desc {
    text-align: left; /* 長文は左揃えが読みやすい */
    font-size: 14px;
  }
  .related-btn {
    width: 100%;
    max-width: 300px;
  }
  .related-card.last-card {
    padding: 30px 20px;
    margin-top: 6vw;
  }

  /* フッターのスマホ対応 */
  .site-footer {
    padding: 36px 16px 32px;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
  .footer-logo img {
    max-height: 40px;
    width: auto;
    max-width: 100px;
  }
  .footer-nav {
    font-size: 12px;
    margin-bottom: 16px;
    line-height: 2;
  }
  .footer-nav-sep {
    margin: 0 6px;
  }
  .footer-copy {
    font-size: 11px;
  }
}
