/* ====================================================================
   Board Game de Carbon Neutral – External Stylesheet
   Responsive-first, mobile-friendly design
   ==================================================================== */
:root {
  --accent:        #14b8a6;
  --accent-dark:   #0d9488;
  --accent-light:  #ecfdf5;
  --bg:            #ffffff;
  --text:          #1f2937;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  line-height: 1.6;
}

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

/* Layout */
.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

header,
section,
footer {
  padding: 6rem 0;
}

/* Hero */
.hero {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.hero-text p {
  margin-bottom: 2rem;
  max-width: 65ch;
}

.hero-img {
  flex: 0 1 420px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #FF7F0E;
  color: #fff;
  padding: .75rem 2rem;
  border-radius: .5rem;
  text-decoration: none;
  font-weight: 500;
  transition: background .3s;
}

.btn:hover {
  background: var(--accent-dark);
}

/* Grids & Cards */
.feature-grid,
.role-grid,
.plan-grid,
.gallery-grid {
  display: grid;
  gap: 2rem;
  justify-items: center;
}

.feature-card,
.role-card,
.plan-card {
  background: var(--accent-light);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.feature-card {
 background: #F9F7F3; 
}

.icon {
  font-size: 2.5rem;
  margin-bottom: .5rem;
}

.feature-card h3,
.role-card h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

/* プレイヤーの役割を2列×3行レイアウトに */
#roles .role-grid {
  display: grid;  
  grid-template-columns: repeat(3, 1fr);  /* 2列 */
  gap: 2rem;                              /* カード間の隙間 */
}

/* スマホでは1列に */
@media (max-width: 600px) {
  #roles .role-grid {
    grid-template-columns: 1fr;
  }
}


.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.plan-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

/* Plans redesign */
.plan-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border .25s, box-shadow .25s, transform .25s;
  width: 100%;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(20, 184, 166, .15);
}

.plan-card h3 {
  font-size: 1.5rem;
  margin: 0;
}

.plan-card ul {
  list-style: disc inside;
  margin: 0 0 1rem;
}

.plan-card li {
  margin-bottom: .35rem;
}

.plan-card .btn {
  align-self: flex-start;
}

.plan-grid .plan-card:nth-child(1) {
  border-color: var(--accent);
  box-shadow: 0 16px 36px rgba(20, 184, 166, .25);
  position: relative;
  overflow: hidden;
}

.plan-grid .plan-card:nth-child(1)::before {
  content: "人気";
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .35rem .9rem;
  border-radius: 0 1rem 0 1rem;
  letter-spacing: .05em;
}

.plan-grid .plan-card:nth-child(1) li::marker {
  color: var(--accent);
}

/* FAQ */
#faq details {
  background: var(--accent-light);
  padding: 1rem 1.5rem;
  border-radius: .75rem;
  margin-bottom: 1rem;
}

#faq summary {
  cursor: pointer;
  font-weight: 500;
}

#faq p {
  margin-top: .5em;
}

/* CTA */
.cta {
  text-align: center;
}

.cta h2 {
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 2rem;
}

/* Footer */
footer {
  color: #fff;
  text-align: center;
  overflow: hidden;
  min-height: 220px;
  position: relative;
}

footer .container {
  position: relative;
  z-index: 1;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.kkc.co.jp/wp-content/uploads/KIMG20240910_115544068-2048x1536.jpg") center/cover no-repeat;
  filter: blur(8px) brightness(.5);
  transform: scale(1.1);
  z-index: 0;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

/* Achievements */
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.achievement-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
}

.achievement-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.achievement-card h3 {
  padding: 1rem 1rem .25rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.achievement-card p {
  padding: 0 1rem 1rem;
  font-size: .9rem;
  line-height: 1.6;
}

/* About image responsive */
#about {
  /* 下方向に 4rem のマージンを確保 */
  margin-bottom: 4rem;
}

#about .hero-img img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 12px;
}

/* Media queries */
@media (max-width: 1024px) {
  header,
  section,
  footer {
    padding: 4rem 0;
  }

  .hero-img {
    flex-basis: 360px;
  }
}

@media (max-width: 600px) {
  header,
  section,
  footer {
    padding: 3rem 0;
  }

  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-img {
    flex-basis: 260px;
  }

  .feature-grid,
  .role-grid,
  .plan-grid,
  .gallery-grid {
    gap: 1.5rem;
  }

  .gallery-grid img {
    height: 160px;
    object-fit: cover;
  }
}


section.container.hero {
  background: #F9F7F3;
  border-radius: 1rem;
}

@media (max-width: 600px) {
  section.container.hero {
    padding-left: 1em;
    padding-right: 1em;
  }
}

h1.title {
  margin-bottom: .5em;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.list {
  padding-left: 1rem;
}

.site-header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,0.15); /* 85% transparent */
    backdrop-filter:blur(6px);
    box-shadow:0 2px 4px rgba(0,0,0,.05);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1rem 1.5rem;
    z-index:1000;
}
.site-header .logo{font-weight:700;font-size:1.125rem;white-space:nowrap;}
.site-header nav{display:flex;gap:1.5rem;}
.site-header a{color:var(--text);text-decoration:none;font-weight:500;transition:color .2s;}
.site-header a:hover{color:var(--accent);}
@media(max-width:600px){.site-header nav{gap:1rem;font-size:.9rem;}}

/* --- Hero --- */
.small-hero{display:flex;flex-direction:column;text-align:center;padding:4rem 0;gap:2rem;align-items:center}
.small-hero h1{font-size:clamp(2.25rem,4vw,3.5rem);margin:0}
.hero-logo{width:160px;height:auto}
.small-hero p{max-width:40ch}
@media (min-width:768px){
  .small-hero{flex-direction:row;text-align:left;gap:3rem}
  .hero-logo{margin:0}
}

/* --- Case Cards --- */
.case-grid{display:grid;gap:2rem;margin-top:2rem;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));}
.case-card{background:#fff;border:1px solid #e2e8f0;border-radius:1.25rem;overflow:hidden;text-decoration:none;color:inherit;transition:transform .25s,box-shadow .25s,border-color .25s;display:flex;flex-direction:column;min-height:100%}
.case-card:hover{transform:translateY(-6px);box-shadow:0 16px 36px rgba(20,184,166,.18);border-color:var(--accent)}
.case-card img{width:100%;height:200px;object-fit:cover}
.case-body{padding:1.5rem 1.25rem;flex:1;display:flex;flex-direction:column}
.case-body h3{font-size:1.25rem;font-weight:600;margin-bottom:.25rem;line-height:1.4}
.update-date{font-size:.85rem;color:#6b7280;margin-bottom:.75rem}
.case-desc{font-size:.95rem;line-height:1.6;flex:1}
.case-more{margin-top:1rem;font-weight:500;color:var(--accent-dark);display:inline-flex;align-items:center;gap:.25rem}
.case-more::after{content:"→";transition:transform .25s}
.case-card:hover .case-more::after{transform:translateX(4px)}

/* Reveal アニメーション (カードに適用) */
.reveal{opacity:0;transform:translateY(40px);transition:all .8s ease-out}
.reveal.active{opacity:1;transform:none}

/* Home link */
.home-link{color:var(--accent-dark);font-weight:500;text-decoration:underline;}

/* Hero layout – mobile first */
.hero-single {
  flex-direction: column; /* モバイルは縦並び */
  text-align: center;
}

/* === Desktop (PC) layout === */
@media (min-width: 768px) {
  .hero-single {
    flex-direction: row; /* 横並び */
    text-align: left;
    gap: 3rem;
  }
  .hero-single .hero-text {
    text-align: left; /* テキストを左寄せ */
  }
}

/* Stats */
.stats-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.stats-item {
  background: var(--accent-light);
  padding: 1.5rem;
  border-radius: 1rem;
}
.stats-item h3 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
  color: var(--accent-dark);
  line-height: 1;
}
.stats-item p {
  font-size: 0.9rem;
}

/* Home link section */
#back-home {
  text-align: center;
}
#back-home a {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 500;
}
/* === Gallery bigger images === */
#gallery .gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
@media (min-width: 768px) {
  #gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* PC では 2 列固定で大きく */
  }
}
#gallery .gallery-grid img {
  height: 320px;           /* 画像高さを拡大 */
  object-fit: cover;
}

/* ヘッダーの問い合わせボタン */
.site-header nav .btn-contact {
  /* ボタン風に見せる */
  display: inline-block;
  background: #FF7F0E;         /* アクセントカラー */
  color: #fff;                       /* 文字色は白 */
  padding: .5rem 1rem;               /* 適度な余白 */
  border-radius: .5rem;              /* 角丸 */
  font-weight: 500;                  /* 強調 */
  text-decoration: none;             /* 下線を消す */
  transition: background .3s, transform .2s;
  /* 左側のリンクとスペースをつくる */
  margin-left: 1.5rem;
}

/* ホバー時 */
.site-header nav .btn-contact:hover {
  background: var(--accent-dark);    /* 濃いアクセント */
  transform: translateY(-2px);
}

/* About セクション内のボタンに余白を追加 */
#about .hero-text .btn {
  margin-top: 1.5rem;
}

/* ボタン内のSVGアイコン */
.btn svg {
  width: 1em;              
  height: 1em;
  margin-left: 0.5em;      
  vertical-align: text-bottom;
  fill: currentColor;      
}

/* スマホ版では「実績」と「お問い合わせ」（ナビ全体）を非表示 */
@media (max-width: 600px) {
  /* デスクトップ用ナビ */
  .site-header .desktop-nav {
    display: none;
  }
}

/* ───────────────────────────────────────
   「資料ダウンロード」ボタン：初期を緑、ホバーをオレンジに
   ─────────────────────────────────────── */
#about .hero-text .btn {
  background: var(--accent-dark);    /* 初期を緑（--accent-dark: #0d9488） */
  transition: background .3s;
}
#about .hero-text .btn:hover {
  background: #FF7F0E;               /* ホバー時オレンジ */
}


/* Footer About の本文横幅を調整 */
.footer-about p {
  /* 最大行長を約40文字分に */
  max-width: 40em;
  /* モバイルでは90%、それ以外は最大40em */
  width: min(90%, 40em);
  margin: 0 auto;      /* 中央寄せ */
  padding: 0 1rem;     /* 左右に余白 */
}

/* ヘッダーのナビリンクを縦中央揃え */
.site-header .desktop-nav {
  display: flex;         /* 既に指定があれば不要 */
  align-items: center;   /* アイテムを縦中央に */
}

/* リンク自体も縦中央揃えにする */
.site-header .desktop-nav a,
.site-header .desktop-nav .btn-contact {
  display: flex;
  align-items: center;
}

/* エネがえるカードスタイル */
#enegaeru {
  background: linear-gradient(135deg, #e6f7f2, #c6f0e8);
  padding: 4rem 0;
  margin-bottom: 2em;
}

.enegaeru-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 2.5rem 2rem;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

/* 小さなバッジ */
.enegaeru-badge {
  position: absolute;
  top: -10px;
  left: -10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
}

/* タイトル */
.enegaeru-title {
  font-size: 1.75rem;
  color: var(--accent-dark);
  margin-bottom: 1rem;
  text-align: center;
}

/* テキスト */
.enegaeru-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1.75rem;
  text-align: center;
}

/* ボタン */
.enegaeru-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.enegaeru-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* モバイル対応 */
@media (max-width: 600px) {
  #enegaeru { padding: 3rem 0; }
  .enegaeru-card { padding: 2rem 1rem; }
  .enegaeru-title { font-size: 1.5rem; }
  .enegaeru-text { font-size: 0.9rem; }
  .enegaeru-btn { width: 100%; text-align: center; }
}

@media (max-width: 600px) {
  /* セクション全体を横幅100%に */
  #enegaeru.container {
    width: 100% !important;
    margin-inline: 0;
    padding: 3rem 0;  /* 上下の余白はお好みで調整 */
  }

  /* カードも左右余白なしでフル幅表示 */
  .enegaeru-card {
    width: 100%;
    margin: 0;
    border-radius: 0.75rem; /* 端までぴったり見せたい場合は0でもOK */
  }
}

@media (max-width: 600px) {
  /* カードに左右余白を入れてセンター寄せ */
  .enegaeru-card {
    width: calc(100% - 2rem); /* 画面幅から左右1remずつマージンを確保 */
    max-width: none;          /* デスクトップ向けの max-width を解除 */
    margin: 0 auto;           /* センター寄せ */
    padding: 2rem 1rem;       /* 内側の余白も必要に応じて調整 */
    border-radius: 0.75rem;   /* 端を少し丸める */
  }
}

@media (max-width: 600px) {
  /* ヘッダー内のロゴ以外を非表示に */
  .site-header .desktop-nav,
  .site-header .menu-btn,
  .mobile-nav {
    display: none !important;
  }
}


/* ──────────────────────────────
   Concept セクション（3Dイラスト版）
   ────────────────────────────── */
#concept {
  background: #f0f9ff;
  padding: 4rem 0;
  border-radius: 1rem;
}

.concept-wrap {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.concept-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--accent-dark);
  margin-bottom: 1.25rem;
}

.concept-title span {
  font-size: 80%;
}

.concept-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 55ch;
  margin: 0 auto 2.5rem;
  font-weight: bold;
}
.concept-lead span {
  color: #ff7f0e;
  font-weight: 600;
}

/* Grid */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

/* Card */
.concept-item {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

/* Illustration block */
.concept-item .illustration {
  width: 100%;
  max-width: 220px;   /* イラストサイズ */
  margin: 0 auto 1rem;
}
.concept-item .illustration img {
  width: 100%;
  height: auto;
  display: block;
}

/* Text */
.concept-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-dark);
}
.concept-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
}

/* ─── モバイル調整 ───────────────── */
@media (max-width: 600px) {
  #concept { padding: 3rem 1em; }
  .concept-lead { font-size: 1rem; }
  .concept-item { padding: 1.5rem 1rem; }
}

@media (max-width: 600px) {
  /* コンセプト内カードに左右余白を入れてセンター寄せ */
  #concept .concept-item {
    width: calc(100% - 2rem);  /* 左右各1rem分の余白を確保 */
    max-width: none;           /* デスク向けの max-width を解除 */
    margin: 0 auto 1.5rem;     /* 上下は1.5remのマージン */
  }
}

@media (max-width: 600px) {
  /* #about セクション内の画像に左右余白を追加 */
  #about .hero-img {
    padding-inline: 1rem; /* 左右それぞれ1remずつ余白 */
  }
  /* 画像自体が幅100%になるように調整 */
  #about .hero-img img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* Concept セクション内のリスト調整 */
#concept .concept-wrap ul {
  list-style: disc inside;      /* 丸いマーカーを行頭に */
  max-width: 55ch;              /* 行長を抑えて読みやすく */
  margin: 0 auto 2.5rem;        /* 上マージン0、下2.5rem、中央寄せ */
  padding: 0;                   /* デフォルトのパディングをリセット */
}

#concept .concept-wrap ul li {
  margin-bottom: 1rem;          /* アイテム間に余白 */
  line-height: 1.6;             /* 読みやすい行間 */
  color: #475569;               /* 本文より少し薄めの色 */
  font-size: 0.95rem;           /* テキストサイズを少し小さめに */
  text-align: left;
}

@media (max-width: 600px) {
  /* スマホ時のメイン見出しをやや小さく */
  .hero-text h1 {
    font-size: 1.75rem;   /* 必要に応じて 1.5rem～2rem の間で調整 */
    line-height: 1.3;     /* 行間も詰めて改行のズレを軽減 */
  }
}

/* Slider 共通設定 */
.slider {
  position: relative;
  margin-top: 2rem;
}
.slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar {
  display: none;
}

/* 各スライド */
.slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
  margin-right: 1rem;
}
.slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

/* ナビボタン */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
}
.slider-btn.prev { left: 0.5rem; }
.slider-btn.next { right: 0.5rem; }
.slider-btn:hover {
  background: rgba(0,0,0,0.6);
}

/* レスポンシブ幅設定 */
/* モバイル：1枚ずつ (80%幅) */
@media (max-width: 600px) {
  .slide { width: 80%; }
}

/* タブレット以上：2～3枚並べ */
@media (min-width: 601px) and (max-width: 1024px) {
  .slide { width: 45%; }
}
@media (min-width: 1025px) {
  .slide { width: 30%; }
}

@media (min-width: 1025px) {
  .slider-btn {
    width: 3.5rem;                        /* ボタンを大きく */
    height: 3.5rem;
    font-size: 1.5rem;                    /* 矢印アイコンも大きく */
    background: var(--accent);            /* アクセントカラー */
    color: #fff;
    box-shadow: 0 4px 12px rgba(20,184,166,0.4); /* 少し強めの影 */
    transition: background .3s, transform .2s, box-shadow .2s;
  }
  .slider-btn:hover {
    background: var(--accent-dark);
    box-shadow: 0 6px 16px rgba(20,184,166,0.5);
    transform: translateY(-50%); /* scale を外して縦中央のみ保持 */
  }
  .slider-btn.prev {
    left: 1rem;   /* 左右の余白も少し広げ */
  }
  .slider-btn.next {
    right: 1rem;
  }
}

/* ──────────────────────────────
   “ゲームで楽しく学ぶ” ストーリーセクション
   ────────────────────────────── */
#learn {
  background: var(--accent-light);
  padding: 4rem 1em;
  margin-bottom: 4rem;
  border-radius: 1rem;
}
.learn-story {
  max-width: 960px;
  margin: 0 auto;
}
.learn-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--accent-dark);
  margin-bottom: .75rem;
}
.learn-lead {
  text-align: center;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 2.5rem;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.story-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.story-image {
  flex: 0 0 40%;
}
.story-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}
.story-content {
  flex: 1;
}
.story-content p {
  font-size: .95rem;
  line-height: 1.6;
  color: #475569;
}
/* モバイル：縦並び＆中央寄せ */
@media (max-width: 600px) {
  .story-block {
    flex-direction: column;
    text-align: center;
  }
  .story-image {
    width: 80%;
    margin: 0 auto 1rem;
  }
}

/* ストーリー③のお問い合わせボタン上マージン */
#learn .story-block:last-child .story-content .btn {
  margin-top: 1rem;
}

#story p {
  margin-bottom: 1em;
}

.story_flex {
  display: flex;
}

.story_flex ul {
  margin-left: 2em;
  margin-bottom: 1em;
}

@media (min-width: 601px) {
  .story_flex_left {
    width: 50%;
    padding-right: 2em;
  }

  .story_flex img {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .story_flex {
    flex-direction: column;
  }
}

.achievements_more {
  margin-left: 1em;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  margin-top: 1em;
  color: var(--accent-dark);
  transition: .3s;
}

.achievements_more:visited {
  color: var(--accent-dark);
}

.achievements_more:hover {
  color: var(--accent);
}

.pdf {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.pricePage {
  background-color: #f7f7f7;
}
.priceBox {
  max-width: 1200px;
  margin: auto;
  background-color: #f7f7f7;
}
.plan {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.plan-card h2 {
  font-size: 1.8em;
}
.plan-card h3 {
    font-size: 1.4em;
}
.plan ul {
  padding-left: 1.2rem;
}
.plan table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.plan th, .plan td {
  border: 1px solid #ccc;
  padding: 0.5rem;
  text-align: center;
}
.plan .note {
  font-size: 12px;
  color: #555;
}