:root {
  --bg-color: #f7f7f4;
  --card-bg: #ffffff;
  --text-color: #1f2937;
  --accent-gray: #d1d5db;
  --accent-red: #e50914;
  --font-en: "Anton", sans-serif;
  --font-jp: "Noto Sans JP", sans-serif;
  --border-color: #e5e7eb;
  --muted-text: #6b7280;
  --soft-bg: #f3f4f6;
}

*{margin:0;padding:0;box-sizing:border-box}
body{
  background-color:var(--bg-color);
  color:var(--text-color);
  font-family:var(--font-jp);
  line-height:1.8;
  overflow-x:hidden;
  letter-spacing:.05em;
}
h1,h2,h3,h4{font-family:var(--font-en);text-transform:uppercase;letter-spacing:.15em;font-weight:normal}
a{text-decoration:none;color:inherit;transition:.3s}
ul{list-style:none}
img{width:100%;height:auto;display:block;}


/* Loader */
#loader{position:fixed;top:0;left:0;width:100%;height:100vh;background:#000;z-index:9999;display:flex;justify-content:center;align-items:center;transition:.8s}
#loader img{width:200px;animation:pulse 1.3s infinite}
@keyframes pulse{0%{opacity:.4}50%{opacity:1}100%{opacity:.4}}
.loaded{opacity:0;visibility:hidden}

/* Header */
header{
  position:fixed;top:0;width:100%;
  padding:15px 5%;
  display:flex;justify-content:space-between;align-items:center;
  z-index:1000;
  background:linear-gradient(to bottom,rgba(0,0,0,.9),transparent);
  transition:.3s;
}
header.scrolled{background:rgba(17,17,17,.96);border-bottom:1px solid rgba(255,255,255,.08)}
.logo img{width:180px;position:relative;z-index:1002}
nav ul{display:flex;gap:20px}
nav a{font-family:var(--font-en);font-size:1rem;letter-spacing:.1em;position:relative;color:#fff}
nav a::after{content:"";position:absolute;bottom:-5px;left:0;width:0;height:1px;background:#fff;transition:.3s}
nav a:hover::after{width:100%}
.btn-header{border:1px solid #fff;padding:8px 25px;font-family:var(--font-jp);font-weight:bold;font-size:.8rem}
.btn-header:hover{background:#fff;color:#000}

/* Hero */
.hero{height:100vh;position:relative;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden}
.hero-bg{position:absolute;inset:0;background:#222;z-index:-1}
.hero-content{z-index:2;padding:0 20px}
.hero h1{font-size:4rem;margin-bottom:20px;text-shadow:0 0 30px rgba(0,0,0,.5)}
.hero p{font-size:1.2rem;color:#ddd;margin-bottom:40px}
.campaign-badge-hero{display:inline-block;background: rgba(230, 0, 35, 0.45);;color:#fff;padding:5px 15px;font-weight:bold;margin-bottom:15px;font-size:.9rem;letter-spacing:.1em}
.btn-main{background:#fff;color:#000;padding:18px 60px;font-size:1.1rem;font-weight:bold;display:inline-block;transition:.3s;cursor:pointer}
.btn-main:hover{background:#ccc;transform:scale(1.02)}
@media (max-width: 768px){
  .hero-bg,
  .hero-bg img{
    width: 100%;
    height: 100vh;
  }
  .hero-bg img{
    object-fit: cover;
    object-position: center;
  }
  .hero p{font-size:0.85rem}
}

/* Common */
.section-padding{padding:100px 5%}
.section-title{text-align:center;font-size:3rem;margin-bottom:60px}
.section-title span{display:block;font-size:1rem;font-family:var(--font-jp);color:var(--muted-text);margin-top:10px;letter-spacing:.05em}

.grid-layout{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;max-width:1200px;margin:0 auto}
.text-content h3{font-size:2.2rem;margin-bottom:25px;line-height:1.3}
.text-content span{display:block;font-size:1rem;font-family:var(--font-jp);color:var(--muted-text);margin-top:10px;letter-spacing:.05em;margin-bottom: 36px;}
.text-content p{margin-bottom:20px;color:#374151}
@media (max-width: 768px){
  .text-content h3{text-align: center;}
  .text-content span{text-align: center; margin-bottom: 24px;}
}
/* =========================
   Mobile spacing tune
   ========================= */
@media (max-width: 768px){
  .section-padding{ padding: 70px 6%; } /* 100px→70px程度に */
  .section-title{ margin-bottom: 36px; }
}

/* Cards / grids */
.grid-3{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:30px;max-width:1200px;margin:0 auto}
.card-base{background:var(--card-bg);border:1px solid var(--border-color)}
.card-img-area{height:250px;width:100%}
.card-content{padding:30px}
.card-content h3{margin-bottom:15px;font-size:1.35rem}
.card-content p{font-size:.9rem;color:#4b5563}

/* News */
.news-list{max-width:800px;margin:0 auto}
.news-item{display:flex;align-items:center;padding:20px 0;border-bottom:1px solid var(--border-color);flex-wrap:wrap;gap:15px}
.news-date{font-family:var(--font-en);color:var(--muted-text);font-size:1rem}
.news-cat{background:#374151;color:#fff;padding:2px 10px;font-size:.7rem;font-weight:bold;font-family:var(--font-en)}
.news-cat.campaign{background:var(--accent-red)}
.news-title{flex:1;color:#111827;text-decoration:underline;text-underline-offset:4px}

/* Swiper program */
.swiper{padding-bottom:50px;max-width:1200px;margin:0 auto}
.swiper-slide{background:var(--card-bg);border:1px solid var(--border-color);padding:40px;text-align:center;height:auto;display:flex;flex-direction:column;justify-content:center}
.swiper-slide h3{font-size:1.5rem}

/* Price */
.price-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:30px;max-width:1000px;margin:0 auto}
.price-card{background:var(--card-bg);border:1px solid var(--border-color);padding:40px 30px;text-align:center;position:relative;transition:.3s}
.price-card:hover{border-color:#666;transform:translateY(-5px)}
.price-card.featured{border:1px solid #111827;box-shadow:0 12px 32px rgba(17,24,39,.08)}
.price-card.featured::before{content:"RECOMMENDED";position:absolute;top:0;left:50%;transform:translate(-50%,-50%);background:#fff;color:#000;padding:5px 15px;font-size:.8rem;font-family:var(--font-en)}
.price-card h3{font-size:1.4rem;margin-bottom:15px;color:#111827}
.price-amount{font-size:2.8rem;font-family:var(--font-en);margin-bottom:10px;color:#111827;letter-spacing:.05em}
.price-tax{font-size:1rem;font-family:var(--font-jp);color:var(--muted-text)}
.price-desc{font-size:.9rem;color:var(--muted-text);border-top:1px solid var(--border-color);padding-top:15px;margin-top:15px}
.admission-box{text-align:center;margin-bottom:50px;background:var(--card-bg);padding:30px;border:1px solid var(--border-color);box-shadow:0 12px 32px rgba(17,24,39,.06);max-width:600px;margin-left:auto;margin-right:auto;position:relative;overflow:hidden}
.admission-box h3{font-size:1.2rem;color:#111827;margin-bottom:10px}
.admission-ribbon{position:absolute;top:15px;right:-30px;transform:rotate(45deg);background:var(--accent-red);color:#fff;width:120px;font-size:.8rem;font-weight:bold}
.old-price{text-decoration:line-through;color:var(--muted-text);font-size:1.2rem;margin-right:15px}
.new-price{color:var(--accent-red);font-size:2.5rem;font-family:var(--font-en)}

/* Column */
.column-card{background:#fff;border:1px solid var(--border-color);transition:.3s}
.column-card:hover{border-color:#666;transform:translateY(-5px)}
.column-date{display:block;font-family:var(--font-en);color:var(--muted-text);font-size:.9rem;margin-bottom:10px}
.column-card h3{font-size:1.2rem;line-height:1.6;margin-bottom:0;font-family:var(--font-jp);text-transform:none;letter-spacing:.02em}
/* TOP COLUMN: 比率で揃える（推奨） */
#column .card-img-area{
  aspect-ratio: 16 / 9; /* ←横長バナーにしたいなら 3/1 か 16/9 */
  height: auto;
  overflow: hidden;
}

#column .card-img-area img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px){
  #column .grid-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  #column .column-card{
    max-width: none;
  }
}

/* Access/CTA */
.access-container{display:flex;flex-wrap:wrap;gap:40px;max-width:1200px;margin:0 auto}
.access-info{flex:1;min-width:300px}
.access-map{flex:1;min-width:300px;height:400px;background:#e5e7eb}
.cta-section{background:#eef2f7;text-align:center}

/* Footer */
footer{background:#080808;padding:80px 5% 30px;border-top:1px solid #222;color:#aaa;font-size:.9rem}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:50px;max-width:1200px;margin:0 auto 60px}
.footer-logo img{width:150px;margin-bottom:20px}
.footer-title{font-family:var(--font-en);font-size:1.2rem;color:#fff;margin-bottom:25px;letter-spacing:.1em}
.footer-links li{margin-bottom:15px}
.footer-links a{position:relative}
.footer-links a::before{content:"\f054";font-family:"Font Awesome 6 Free";font-weight:900;font-size:.7rem;margin-right:10px;color:#555;transition:.3s}
.footer-links a:hover{color:#fff}
.footer-links a:hover::before{color:#fff;margin-right:5px}
.footer-contact p{margin-bottom:15px}
.footer-contact i{width:20px;text-align:center;margin-right:10px;color:#fff}
.footer-sns{display:flex;gap:15px;margin-top:25px}
.footer-sns a{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border:1px solid #333;color:#fff;border-radius:50%;transition:.3s}
.footer-sns a:hover{background:#fff;color:#000;border-color:#fff}
.copyright{text-align:center;border-top:1px solid #222;padding-top:30px;font-size:.8rem}

/* Instagram */
.ascend-ig-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px;max-width:1000px;margin:0 auto}
.ascend-ig-item{display:block;border:1px solid var(--border-color);overflow:hidden;background:#fff}
.ascend-ig-item img{width:100%;height:240px;object-fit:cover;transition:transform .3s ease}
.ascend-ig-item:hover img{transform:scale(1.03)}
.ascend-ig-empty{grid-column:1/-1;text-align:center;color:var(--muted-text);padding:20px;border:1px dashed var(--border-color)}

/* =========================================
   Contact Form Redesign
   白基調 / 視認性改善 / 上質感アップ
========================================= */

/* 全体余白 */
.ascend-contact-form .ascend-form-row,
.cf7-dark-theme .wpcf7-form p {
  margin: 0 0 22px;
}

/* ラベル */
.ascend-contact-form label,
.cf7-dark-theme .wpcf7-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #111;
  letter-spacing: 0.02em;
}

/* 必須 */
.ascend-contact-form .req {
  color: var(--accent-red);
  margin-left: 4px;
}

/* 入力欄共通 */
.ascend-contact-form input,
.ascend-contact-form textarea,
.cf7-dark-theme input[type="text"],
.cf7-dark-theme input[type="email"],
.cf7-dark-theme input[type="tel"],
.cf7-dark-theme textarea,
.cf7-dark-theme select {
  width: 100%;
  padding: 15px 16px;
  background: #fff;
  border: 1px solid #d8dde3;
  color: #111;
  border-radius: 12px;
  outline: none;
  font-size: 1rem;
  line-height: 1.7;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

/* textarea */
.ascend-contact-form textarea,
.cf7-dark-theme textarea {
  min-height: 180px;
  resize: vertical;
}

/* プレースホルダー */
.ascend-contact-form input::placeholder,
.ascend-contact-form textarea::placeholder,
.cf7-dark-theme input::placeholder,
.cf7-dark-theme textarea::placeholder {
  color: #8b95a1;
}

/* フォーカス */
.ascend-contact-form input:focus,
.ascend-contact-form textarea:focus,
.cf7-dark-theme input[type="text"]:focus,
.cf7-dark-theme input[type="email"]:focus,
.cf7-dark-theme input[type="tel"]:focus,
.cf7-dark-theme textarea:focus,
.cf7-dark-theme select:focus {
  border-color: rgba(10, 39, 74, 0.45);
  box-shadow: 0 0 0 4px rgba(10, 39, 74, 0.08);
  background: #fff;
}

/* フォームラップ */
.cf7-dark-theme .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

/* select の見た目 */
.cf7-dark-theme select {
  background-image:
    linear-gradient(45deg, transparent 50%, #666 50%),
    linear-gradient(135deg, #666 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

/* チェックボックス・ラジオ */
.cf7-dark-theme .wpcf7-list-item {
  margin: 0 18px 10px 0;
}

.cf7-dark-theme .wpcf7-checkbox,
.cf7-dark-theme .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.cf7-dark-theme .wpcf7-acceptance label,
.cf7-dark-theme .wpcf7-checkbox label,
.cf7-dark-theme .wpcf7-radio label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  color: #222;
  line-height: 1.7;
}

.cf7-dark-theme input[type="checkbox"],
.cf7-dark-theme input[type="radio"] {
  width: auto;
  margin-top: 0.35em;
  accent-color: var(--accent-red);
}

/* 送信ボタン */
.cf7-dark-theme .wpcf7-submit {
  background: #0f1720;
  color: #fff;
  padding: 16px 44px;
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s ease;
  cursor: pointer;
  border: 1px solid #0f1720;
  border-radius: 999px;
  width: auto;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(15, 23, 32, 0.12);
}

.cf7-dark-theme .wpcf7-submit:hover {
  background: #fff;
  color: #0f1720;
  border-color: #0f1720;
  transform: translateY(-1px);
}

.cf7-dark-theme .wpcf7-spinner {
  vertical-align: middle;
}

/* エラー文 */
.cf7-dark-theme .wpcf7-not-valid-tip {
  color: #c62828;
  font-size: 0.88rem;
  margin-top: 8px;
  line-height: 1.6;
}

/* レスポンスメッセージ */
.cf7-dark-theme .wpcf7-response-output {
  margin: 24px 0 0 !important;
  padding: 15px 18px !important;
  border-radius: 12px;
  color: #111;
  background: #f6f8fa;
  border: 1px solid #d9e0e7;
  line-height: 1.7;
}

/* 送信成功 */
.cf7-dark-theme .wpcf7 form.sent .wpcf7-response-output {
  background: #f1f8f3;
  border-color: #8db79a;
  color: #183c22;
}

/* エラー */
.cf7-dark-theme .wpcf7 form.invalid .wpcf7-response-output,
.cf7-dark-theme .wpcf7 form.failed .wpcf7-response-output,
.cf7-dark-theme .wpcf7 form.aborted .wpcf7-response-output {
  background: #fff5f5;
  border-color: #d89a9a;
  color: #7a1f1f;
}

/* 入力エラー時の枠 */
.cf7-dark-theme .wpcf7-not-valid {
  border-color: #d45b5b !important;
  background: #fffdfd;
}

/* フォーム全体に薄い面を作る場合 */
.ascend-contact-form,
.cf7-dark-theme .wpcf7-form {
  color: #111;
}

/* モバイル微調整 */
@media screen and (max-width: 768px) {
  .ascend-contact-form .ascend-form-row,
  .cf7-dark-theme .wpcf7-form p {
    margin-bottom: 18px;
  }

  .ascend-contact-form input,
  .ascend-contact-form textarea,
  .cf7-dark-theme input[type="text"],
  .cf7-dark-theme input[type="email"],
  .cf7-dark-theme input[type="tel"],
  .cf7-dark-theme textarea,
  .cf7-dark-theme select {
    padding: 14px 14px;
    font-size: 16px;
  }

  .cf7-dark-theme .wpcf7-submit {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 16px 20px;
  }
}
/* Mobile nav */
.hamburger{display:none;font-size:1.8rem;cursor:pointer;position:relative;z-index:1002}
@media (max-width:768px){
  .hero h1{font-size:2rem}
  .grid-layout{grid-template-columns:1fr}
  .btn-header{display:none}
  .news-item{flex-direction:column;align-items:flex-start;gap:5px}
  .footer-grid{gap:30px}
  .hamburger{display:block;color:#fff}
  nav{
    position:fixed;top:0;left:0;width:100%;height:100vh;background:rgba(0,0,0,.95);
    display:flex;justify-content:center;align-items:center;
    opacity:0;pointer-events:none;transition:opacity .3s ease-in-out;z-index:1001
  }
  nav.active{opacity:1;pointer-events:auto}
  nav ul{flex-direction:column;gap:40px;text-align:center}
  nav a{font-size:1.8rem}
}
/* --- EFFECTS --- */
.effects-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid #333;
}
.effect-item {
  flex: 1;
  min-width: 300px;
  padding: 50px;
  text-align: center;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}
.effect-item:last-child {
  border-right: none;
}
.effect-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #111827;
}
.effect-item h3 {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
}
/* =========================
   OWNER SECTION: デザイン統一FIX
   ========================= */

/* OWNERの見出しは日本語用に戻す（Anton/uppercase/広すぎる字間を無効化） */
#owner h3 {
  font-family: var(--font-jp);
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.45;
}

/* OWNER本文の読みやすさ（字間・行間・色） */
#owner .text-content p {
  font-family: var(--font-jp);
  letter-spacing: 0.02em;
  line-height: 2.0;
  color: #374151;
}

/* 署名ブロックの見た目を締める */
#owner .owner-sign {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
  font-family: var(--font-en);
  letter-spacing: 0.08em;
  color:#111827;
}
#owner .owner-sign span {
  font-family: var(--font-jp);
  letter-spacing: 0.04em;
  color: var(--muted-text);
}

/* 画像側を“カードっぽく”統一（MISSION等と揃える） */
#owner .owner-visual .card-img-area {
  height: 520px;
  border: 1px solid var(--border-color);
  background: #fff;
  overflow: hidden;
}
#owner .owner-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02); /* 少しだけ迫力を出す */
}

/* OWNER全体の余白・バランス調整 */
#owner.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}
#owner .grid-layout {
  gap: 60px;
}

/* モバイル調整 */
@media (max-width: 768px) {
  #owner h3 {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  #owner .owner-visual .card-img-area {
    height: 360px;
  }
  #owner.section-padding {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

/* =========================
   Single Post (投稿詳細) readability
   ========================= */

/* 投稿本文のラッパー（テーマ側で .p-body-text を使っている前提）
   もし違う場合は .p-body-text を .entry-content に置き換えてOK */
.p-body-text{
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 2.05;
  letter-spacing: 0.02em;
  color: #2a2a2a;
}

/* 見出し（本文内 h2/h3 など） */
.p-body-text h2,
.p-body-text h3,
.p-body-text h4{
  font-family: var(--font-jp);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.5;
  margin: 2.0em 0 0.8em;
}

.p-body-text h2{
  font-size: 1.55rem;
  padding-bottom: .5em;
  border-bottom: 1px solid #2a2a2a;
}
.p-body-text h3{ font-size: 1.25rem; }
.p-body-text h4{ font-size: 1.1rem; opacity: .95; }

/* 段落・リンク */
.p-body-text p{ margin: 0 0 1.2em; }
.p-body-text a{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  opacity: .95;
}
.p-body-text a:hover{ opacity: 1; }

/* ✅ 箇条書きを復活（全体 ul{list-style:none} を上書き） */
.p-body-text ul,
.p-body-text ol{
  margin: 0 0 1.2em 1.3em;
  padding-left: 1.0em;
  list-style-position: outside;
}
.p-body-text ul{ list-style: disc; }   /* ・を出す */
.p-body-text ol{ list-style: decimal; }

.p-body-text li{
  margin: .5em 0;
  color: #d8d8d8;
}

/* ネストも見やすく */
.p-body-text ul ul{ list-style: circle; margin-top: .6em; }
.p-body-text ol ol{ margin-top: .6em; }

/* 引用・区切り */
.p-body-text blockquote{
  border-left: 3px solid #444;
  padding: 0.8em 1em;
  margin: 1.4em 0;
  color: #cfcfcf;
  background: #0c0c0c;
}
.p-body-text hr{
  border: none;
  border-top: 1px solid #2a2a2a;
  margin: 2em 0;
}

/* 画像の余白 */
.p-body-text img{
  border: 1px solid #222;
  margin: 1.2em 0;
}

/* コード */
.p-body-text code{
  background: #0d0d0d;
  border: 1px solid #222;
  padding: .15em .35em;
  border-radius: 6px;
  font-size: .95em;
}
.p-body-text pre{
  background: #0d0d0d;
  border: 1px solid #222;
  padding: 1em;
  border-radius: 14px;
  overflow: auto;
  margin: 1.4em 0;
}

/* モバイル */
@media (max-width: 768px){
  .p-body-text{
    font-size: 1rem;
    line-height: 2.0;
    padding: 0 2%;
  }
}
/* --- NEWS category color --- */
.news-cat.event {
  background: #444;
}

.news-cat.info {
  background: #333;
}

.news-cat.campaign {
  background: var(--accent-red);
}
/* --- Pagination --- */
.page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 8px 14px;
  border: 1px solid #333;
  color: #ccc;
  transition: .3s;
}

.page-numbers:hover {
  border-color: #fff;
  color: #fff;
}

.page-numbers.current {
  background: #fff;
  color: #000;
  border-color: #fff;
}
/* --- News Single Content --- */
.news-content {
  font-family: var(--font-jp);
  line-height: 2.0;
  letter-spacing: .04em;
  color: #dcdcdc;
}

.news-content h2,
.news-content h3 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-family: var(--font-jp);
  text-transform: none;
  letter-spacing: .05em;
}

.news-content p {
  margin-bottom: 20px;
}

.news-content ul,
.news-content ol {
  margin: 20px 0 20px 20px;
}

.news-content li {
  margin-bottom: 8px;
  list-style: disc;
}

.news-content img {
  max-width: 100%;
  height: auto;
  margin: 40px 0;
}
/* =========================
   SINGLE NEWS / POST READABILITY FIX
   ========================= */
.news-single,
.post-single {
  padding-top: 140px; /* header固定分 */
}

/* コンテンツ幅を整える */
.news-single .single-wrap,
.post-single .single-wrap{
  max-width: 920px;
  margin: 0 auto;
}

/* タイトル周り（Antonの悪影響を止める） */
.news-single .single-title,
.post-single .single-title{
  font-family: var(--font-jp);
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 800;
  line-height: 1.35;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 10px 0 18px;
}

/* メタ情報（日時・バッジ等） */
.single-meta{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 24px;
  color:#aaa;
  font-size: .95rem;
}
.single-badge{
  display:inline-block;
  border:1px solid #333;
  background:#111;
  padding:4px 10px;
  font-family: var(--font-en);
  letter-spacing:.12em;
  font-size:.75rem;
}
.single-badge.info{ border-color:#333; }
.single-badge.event{ border-color:#666; }
.single-badge.campaign{ border-color: var(--accent-red); }

/* アイキャッチ */
.single-thumb{
  margin: 20px 0 34px;
  border:1px solid #222;
  background:#0d0d0d;
  overflow:hidden;
}
.single-thumb img{
  width:100%;
  height:auto;
  display:block;
}

/* 本文（可読性の核） */
.entry-content{
  color:rgb(22, 22, 22);
  letter-spacing: .02em;
  line-height: 2.05;
  font-size: 1rem;
}
.entry-content p{
  margin: 0 0 18px;
}

/* 見出し：Anton/uppercaseを止めて和文に最適化 */
.entry-content h2,
.entry-content h3,
.entry-content h4{
  font-family: var(--font-jp);
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 800;
  line-height: 1.5;
  margin: 34px 0 14px;
  color:#1d1d1d;
}
.entry-content h2{ font-size: 1.35rem; border-left: 3px solid var(--accent-red); padding-left: 12px; }
.entry-content h3{ font-size: 1.2rem; }
.entry-content h4{ font-size: 1.05rem; opacity:.95; }

/* これが「liの・が効かない」直し（グローバルul{list-style:none}を本文だけ上書き） */
.entry-content ul{
  list-style: disc;
  padding-left: 1.4em;
  margin: 0 0 18px;
}
.entry-content ol{
  list-style: decimal;
  padding-left: 1.6em;
  margin: 0 0 18px;
}
.entry-content li{
  margin: 8px 0;
  color:#4a4a4a;
}
.entry-content ul ul{ list-style: circle; margin-top: 8px; }
.entry-content ol ol{ list-style: lower-alpha; margin-top: 8px; }

/* 引用・区切り */
.entry-content blockquote{
  margin: 22px 0;
  padding: 18px 18px 18px 16px;
  border-left: 3px solid #444;
  background:#0d0d0d;
  color:#ccc;
}
.entry-content hr{
  border:0;
  height:1px;
  background:#222;
  margin: 30px 0;
}

/* リンク */
.entry-content a{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* 下部ナビ */
.single-nav{
  margin-top: 46px;
  padding-top: 22px;
  border-top:1px solid #222;
  display:flex;
  justify-content:space-between;
  gap:16px;
}
.single-nav a{
  border:1px solid #333;
  padding:12px 16px;
  background:#eeeeee;
}
.single-nav a:hover{ border-color:#666; }

/* SP */
@media (max-width: 768px){
  .news-single, .post-single { padding-top: 110px; }
  .news-single .single-wrap, .post-single .single-wrap { padding: 0 2.5%; }
}
/* 固定ページ/投稿本文だけ 箇条書きを復活 */
.p-body-text ul { list-style: disc; padding-left: 1.2em; margin: 1em 0; }
.p-body-text ol { list-style: decimal; padding-left: 1.2em; margin: 1em 0; }
.p-body-text li { margin: .4em 0; }
.p-body-text li::marker { color: #bdbdbd; }
/* =========================
   Post/Page Content Typo (Readability + Lists)
   ========================= */
.entry-content,
.p-body-text,
.wp-block-post-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 2.0;
  letter-spacing: 0.02em;
  color: #3c3c3c;
}

/* 見出し（固定ページ本文用） */
.entry-content h2,
.p-body-text h2,
.wp-block-post-content h2{
  font-family: var(--font-jp);
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 2.2em 0 0.8em;
}
.entry-content h3,
.p-body-text h3,
.wp-block-post-content h3{
  font-family: var(--font-jp);
  text-transform: none;
  letter-spacing: 0.03em;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 1.6em 0 0.7em;
}

/* ✅ ここが重要：ul/ol の list-style を本文だけ復活 */
.entry-content ul,
.p-body-text ul,
.wp-block-post-content ul{
  list-style: disc;
  margin: 0.8em 0 1.2em 1.2em;
  padding-left: 1.2em;
}
.entry-content ol,
.p-body-text ol,
.wp-block-post-content ol{
  list-style: decimal;
  margin: 0.8em 0 1.2em 1.2em;
  padding-left: 1.2em;
}
.entry-content li,
.p-body-text li,
.wp-block-post-content li{
  margin: 0.35em 0;
}
.entry-content a,
.p-body-text a,
.wp-block-post-content a{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* 引用や区切り */
.entry-content blockquote,
.p-body-text blockquote,
.wp-block-post-content blockquote{
  border-left: 3px solid #444;
  padding: 0.8em 1em;
  margin: 1.2em 0;
  color: #cfcfcf;
  background: #0f0f0f;
}
.entry-content hr,
.p-body-text hr,
.wp-block-post-content hr{
  border: 0;
  border-top: 1px solid #222;
  margin: 2em 0;
}
.entry-content ul{ list-style: disc; margin: 0.8em 0 1.2em 1.2em; padding-left: 1.2em; }
.entry-content ol{ list-style: decimal; margin: 0.8em 0 1.2em 1.2em; padding-left: 1.2em; }
.entry-content li{ margin: 0.35em 0; }
.mission-hero{ overflow:hidden; }
.mission-hero > img{ width:100%; height:100%; object-fit:cover; object-position:center; display:block; }

@media (max-width:768px){
  .mission-hero{ height:260px !important; } /* style指定を上書き */
}
.card-article{ padding:34px; border:1px solid #333; }
@media (max-width:768px){ .card-article{ padding:10px; } }
/* COLUMN 画像 角丸削除 */
.column-card img,
#column .card-img-area img,
.post-single .single-thumb img{
  border-radius: 0 !important;
}
/* Contact Form 7 Select 修正 */
.asc-cf7__field select,
.asc-cf7 select,
.wpcf7-form select {
  width: 100%;
  height: 56px;
  padding: 0 48px 0 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
}

/* IE対策 */
.asc-cf7__field select::-ms-expand,
.asc-cf7 select::-ms-expand,
.wpcf7-form select::-ms-expand {
  display: none;
}

/* option の文字色 */
.asc-cf7__field select option,
.asc-cf7 select option,
.wpcf7-form select option {
  color: #111;
  background: #fff;
}

/* focus */
.asc-cf7__field select:focus,
.asc-cf7 select:focus,
.wpcf7-form select:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.18);
  background: rgba(255,255,255,0.1);
}

/* 矢印を自作 */
.asc-cf7__field {
  position: relative;
}

.asc-cf7__field:has(select)::after {
  content: "";
  position: absolute;
  right: 16px;
  top: calc(50% + 12px);
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,0.75);
  border-bottom: 2px solid rgba(255,255,255,0.75);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

/* スマホ調整 */
@media (max-width: 768px) {
  .asc-cf7__field select,
  .asc-cf7 select,
  .wpcf7-form select {
    height: 52px;
    font-size: 16px;
  }

  .asc-cf7__field:has(select)::after {
    right: 14px;
  }
}
.access-map iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}

@media (max-width: 1024px) {
  .access-map iframe {
    height: 420px;
  }
}

.trial-campaign-box{
  max-width: 720px;
  margin: 22px auto 42px;
  padding: 22px 24px;
  border: 1px solid #2f2f2f;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
  text-align: center;
}

.trial-campaign-price{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.trial-label{
  font-size: 0.95rem;
  color: #8c8c8c;
  letter-spacing: 0.08em;
}

.trial-campaign-price strong{
  font-size: 2rem;
  line-height: 1;
  color: #1e1e1e;
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}

.trial-campaign-text{
  margin-top: 10px;
  color: var(--accent-red);
  font-weight: 700;
  font-size: 0.98rem;
}

.price-info-wrap{
  max-width: 1000px;
  margin: 40px auto 0;
}

.price-info-box{
  background: rgba(24, 24, 24, 0.9);
  border: 1px solid #2e2e2e;
  padding: 28px 30px;
}

.price-subtitle{
  margin: 0 0 16px;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.04em;
}

.price-info-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.price-info-list li{
  position: relative;
  padding-left: 1.2em;
  color: #d8d8d8;
  line-height: 1.8;
}

.price-info-list li::before{
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-red);
}

.price-notes{
  margin-top: 18px;
  padding: 20px 4px 0;
  border-top: 1px solid #2a2a2a;
}

.price-notes p{
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.9;
  color: #8e8e8e;
}

.price-notes p:last-child{
  margin-bottom: 0;
}

@media (max-width: 768px){
  .trial-campaign-box{
    margin: 18px auto 34px;
    padding: 18px 16px;
  }

  .trial-campaign-price strong{
    font-size: 1.7rem;
  }

  .price-info-box{
    padding: 22px 18px;
  }

  .price-subtitle{
    font-size: 1rem;
  }

  .price-info-list li{
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .price-notes p{
    font-size: 0.84rem;
    line-height: 1.8;
  }
}

/* ===== 2026 light content refresh ===== */
.section-padding{background:transparent;}
#mission,#why,#effects,#program,#price,#column,#news,#instagram,#access,#owner{background:#fff !important;color:#111827;}
#effects .effects-container{background:#fff;border:1px solid var(--border-color);}
#effects .effect-item{background:#fff;border-right:1px solid var(--border-color);border-bottom:1px solid var(--border-color);}
#effects .effect-item h3{color:#111827;}
#effects .effect-item p{color:#4b5563;}
#access .access-info,#access .access-info h3,#access .access-info p,#access .access-info strong,#access .section-title,#access .section-title span{color:#111827 !important;}
#access .access-info p{color:#374151 !important;}
#access .access-info > div{border-top:1px solid var(--border-color) !important;}
#owner{background:#fff !important;}
#owner h3{color:#111827;}
.cta-section .section-title,.cta-section .section-title span,.cta-section p{color:#111827 !important;}
.cta-section p{color:#374151 !important;}
@media (max-width:768px){
  #effects .effect-item:last-child{border-right:1px solid var(--border-color);}
}


/* ===== 2026 premium light refinement v1.1.2 ===== */
:root{
  --text-color:#18212f;
  --muted-text:#5b6472;
  --border-color:#d9dee6;
  --soft-bg:#f3f1ec;
}
body{color:var(--text-color);background:#f6f4ef;}
.hero h1{color:#fff !important;text-shadow:0 10px 30px rgba(0,0,0,.42),0 0 18px rgba(0,0,0,.28);}
.hero p{color:#f3f4f6;}
.section-title,.text-content h3,.card-content h3,.price-card h3,.effect-item h3,.access-info h3{color:#111827;}
.section-title span,.text-content span,.news-date,.price-notes p,.price-card p,.column-card p,.card-content p,.effect-item p,.access-info p,.cta-section p{color:#4b5563 !important;}
#mission{background:#ffffff !important;}
#why{background:#f8f6f1 !important;}
#owner{background:#ffffff !important;}
#effects{background:#f3f1ec !important;}
#program{background:#ffffff !important;}
#price{background:#f8f6f1 !important;}
#access{background:#ffffff !important;}
.cta-section{background:linear-gradient(180deg,#f3f1ec 0%,#ebe6dc 100%) !important;border-top:1px solid rgba(17,24,39,.06);border-bottom:1px solid rgba(17,24,39,.06);}
#column{background:#ffffff !important;}
#news{background:#f8f6f1 !important;}
#instagram{background:#ffffff !important;}
#mission,#why,#owner,#effects,#program,#price,#access,#column,#news,#instagram{position:relative;}
#mission::before,#why::before,#owner::before,#effects::before,#program::before,#price::before,#access::before,#column::before,#news::before,#instagram::before{content:"";position:absolute;left:5%;right:5%;top:0;border-top:1px solid rgba(17,24,39,.06);}
#mission::before{display:none;}
.effects-container{border-color:#d8dde5;box-shadow:0 12px 36px rgba(17,24,39,.04);}
.effect-item{border-color:#d8dde5;background:rgba(255,255,255,.78);}
.effect-icon{color:#111827 !important;}
.effect-item p{font-size:.95rem;line-height:1.9;}
#owner .text-content p{color:#334155;}
#access .access-info,#access .access-info h3,#access .access-info p,#access .access-info strong,#access .section-title,#access .section-title span{color:#111827 !important;}
#access .access-info p{color:#334155 !important;}
.btn-main{background:#111827;color:#fff;border:1px solid #111827;border-radius:999px;box-shadow:0 10px 25px rgba(17,24,39,.16);padding:16px 42px;letter-spacing:.08em;}
.btn-main:hover{background:#1f2937;color:#fff;transform:translateY(-2px);box-shadow:0 16px 32px rgba(17,24,39,.20);}
.hero .btn-main{background:#fff;color:#111827;border-color:#fff;box-shadow:0 14px 34px rgba(0,0,0,.24);}
.hero .btn-main:hover{background:#f3f4f6;color:#111827;}
.news-list + div .btn-main, .btn-viewall, a.btn-main[href*="ascend_news"]{background:#111827;color:#fff;border-color:#111827;}
header.scrolled nav a, header.scrolled .btn-header, header.scrolled .hamburger{color:#fff;}
header.scrolled .btn-header{border-color:rgba(255,255,255,.7);}
header.scrolled .btn-header:hover{background:#fff;color:#000;}
@media (max-width:768px){
  .hero h1{font-size:2.1rem;color:#fff !important;}
  .btn-main{padding:14px 28px;}
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== hero slider upgrade v1.1.3 ===== */
.hero.hero-slider{
  min-height:100svh;
  min-height:100vh;
  position:relative;
  isolation:isolate;
  background:#111;
}
.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}
.hero-slide,
.hero-overlay{
  position:absolute;
  inset:0;
}
.hero-slide{
  opacity:0;
  transition:opacity 1.4s ease, transform 6.5s ease;
  transform:scale(1.06);
  background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;
  will-change:opacity, transform;
}
.hero-slide.is-active{
  opacity:1;
  transform:scale(1);
}
.hero-slide-1{ background-image:url('../img/hero.webp'); }
.hero-slide-2{ background-image:url('../img/hero02.webp'); }
.hero-overlay{
  z-index:1;
  background:linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.16) 38%, rgba(0,0,0,.34) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  width:min(100%, 980px);
  margin:0 auto; 
}
.hero-logo-wrap{
  width:min(250px, 48vw);
  margin:0 auto 24px;
}
.hero-logo-wrap img{
  width:100%;
  height:auto;
  display:block;
}
.hero h1{
  color:#fff !important;
  text-shadow:0 14px 34px rgba(0,0,0,.35),0 3px 12px rgba(0,0,0,.32);
}
.hero p{
  color:rgba(255,255,255,.96);
  text-shadow:0 2px 10px rgba(0,0,0,.22);
}
@media (max-width: 768px){
  .hero.hero-slider{
    min-height:92svh;
  }
  .hero-slide-1{ background-image:url('../img/hero-sp.webp'); background-position:center top; }
  .hero-slide-2{ background-image:url('../img/hero-sp02.webp'); background-position:center top; }
  .hero-logo-wrap{ width:min(210px, 54vw); margin-bottom:18px; }
  .campaign-badge-hero{ margin-bottom:12px; }
  .hero-content{
  margin:40% auto 0; 
}
}
/* ===== OWNER 画像 cover化 ===== */
#owner .owner-visual .card-img-area {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#owner .owner-visual .card-img-area img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* 高さが無い場合の保険（必要に応じて調整） */

#owner .owner-visual .card-img-area img {
  object-fit: cover !important;
}
@media screen and (max-width: 768px) {
  #owner .owner-visual {
    height: auto !important;
    min-height: auto !important;
  }

  #owner .owner-visual .card-img-area {
    height: auto !important;
  }

  #owner .owner-visual .card-img-area img {
    height: auto !important;
    min-height: 0 !important;
    object-fit: cover;
  }
}

.cv-sticky-btn {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #0b57d0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cv-sticky-btn:hover {
  transform: translateY(-2px);
}

.cv-sticky-btn:active {
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .cv-sticky-btn {
    display: flex;
  }
}

@media screen and (min-width: 769px) {
  .cv-sticky-btn {
    display: flex;
    left: auto;
    right: 24px;
    bottom: 24px;
    width: auto;
    min-width: 240px;
    padding: 16px 24px;
  }
}
.cv-sticky-btn {
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.cv-sticky-btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
}

.cv-sticky-btn {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #0b57d0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.02em;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.cv-sticky-btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
}

@media screen and (min-width: 769px) {
  .cv-sticky-btn {
    display: none;
  }
}
.cv-sticky-btn {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(22, 22, 22, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.cv-sticky-btn::after {
  content: "→";
  margin-left: 8px;
  font-size: 14px;
}

.cv-sticky-btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
}

@media screen and (min-width: 769px) {
  .cv-sticky-btn {
    display: none;
  }
}

/* =========================================
   FAQ SECTION
========================================= */
.faq-section {
  position: relative;
  padding: 96px 0;
  background:
    linear-gradient(180deg, #fcfcfa 0%, #f7f5f0 100%);
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0,0,0,0.035) 0%, rgba(0,0,0,0) 72%);
  pointer-events: none;
}

.faq-container {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.faq-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.faq-eyebrow {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8d1f24;
}

.faq-title {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.2;
  color: #1c1c1c;
  letter-spacing: 0.04em;
}

.faq-lead {
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: rgba(255,255,255,0.92);
  border: 1px solid #e7e2d8;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.06);
  border-color: #ddd4c6;
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 28px 72px 28px 28px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.faq-q {
  display: block;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.7;
  color: #1c1c1c;
  letter-spacing: 0.01em;
}

.faq-icon {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #1c1c1c;
  border-radius: 999px;
  transition: transform 0.28s ease, opacity 0.28s ease, background 0.28s ease;
}

.faq-icon::before {
  width: 18px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 18px;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  padding: 0 28px;
}

.faq-item.is-open .faq-answer-inner {
  padding-bottom: 28px;
}

.faq-answer p,
.faq-answer li {
  font-size: 1rem;
  line-height: 1.95;
  color: #444;
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p {
  margin-top: 14px;
}

.faq-answer ul {
  margin: 14px 0;
  padding-left: 1.3em;
}

.faq-answer li + li {
  margin-top: 6px;
}

.faq-answer strong {
  color: #1c1c1c;
  font-weight: 700;
}

/* 白背景セクションとのつなぎを綺麗に */
#faq + section,
#faq + .cta,
#faq + .contact-cta {
  margin-top: 0;
}

/* =========================================
   TABLET
========================================= */
@media screen and (max-width: 1024px) {
  .faq-section {
    padding: 84px 0;
  }

  .faq-question {
    padding: 24px 64px 24px 24px;
  }

  .faq-answer-inner {
    padding: 0 24px;
  }

  .faq-item.is-open .faq-answer-inner {
    padding-bottom: 24px;
  }
}

/* =========================================
   MOBILE
========================================= */
@media screen and (max-width: 768px) {
  .faq-section {
    padding: 72px 0;
  }

  .faq-container {
    width: min(100%, calc(100% - 24px));
  }

  .faq-heading {
    margin-bottom: 34px;
  }

  .faq-eyebrow {
    margin-bottom: 10px;
    font-size: 0.74rem;
  }

  .faq-lead {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .faq-list {
    gap: 14px;
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-question {
    padding: 20px 52px 20px 18px;
  }

  .faq-q {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .faq-icon {
    right: 18px;
    width: 16px;
    height: 16px;
  }

  .faq-icon::before {
    width: 16px;
  }

  .faq-icon::after {
    height: 16px;
  }

  .faq-answer-inner {
    padding: 0 18px;
  }

  .faq-item.is-open .faq-answer-inner {
    padding-bottom: 20px;
  }

  .faq-answer p,
  .faq-answer li {
    font-size: 0.95rem;
    line-height: 1.85;
  }
}

.entry-content h2, .p-body-text h2, .wp-block-post-content h2 {
  /* color: #ffffff; */
}

/* =========================
   Column archive / pagination
   ========================= */
.archive-shell{max-width:1100px;margin:0 auto}
.archive-head{max-width:760px;margin:0 auto 42px;text-align:center}
.archive-lead{color:#4b5563;font-size:1rem;line-height:2;margin:18px 0 0}
.archive-link-wrap{margin-top:34px;text-align:center}
.btn-outline{background:transparent !important;color:#111827 !important;border:1px solid rgba(17,24,39,.16)}
.btn-outline:hover{border-color:#111827;background:#111827 !important;color:#fff !important}
.ascend-pagination{margin-top:46px;display:flex;justify-content:center}
.ascend-pagination .nav-links{display:flex;align-items:center;justify-content:center;gap:10px;flex-wrap:wrap;list-style:none;padding:0;margin:0}
.ascend-pagination .page-numbers{min-width:44px;height:44px;padding:0 14px;display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(17,24,39,.12);background:#fff;color:#111827;text-decoration:none;font-family:var(--font-en);font-size:.95rem;transition:.25s}
.ascend-pagination .page-numbers.current,
.ascend-pagination .page-numbers:hover{background:#111827;color:#fff;border-color:#111827}
@media (max-width: 767px){
  .archive-head{margin-bottom:32px}
  .archive-lead{font-size:.94rem;line-height:1.9}
  .ascend-pagination .page-numbers{min-width:40px;height:40px;padding:0 12px}
}

/* COLUMN ARCHIVE: サムネイル高さ統一 */
.archive-shell .column-card .card-img-area{
  height:220px;
  overflow:hidden;
}
.archive-shell .column-card .card-img-area img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
@media (max-width:768px){
  .archive-shell .column-card .card-img-area{
    height:200px;
  }
}
/* =========================================
   PERSONAL SECTION
========================================= */
.personal-section{
  background:#fff;
}

.personal-section .section-title{
  margin-bottom: 26px;
}

.personal-section .section-title span{
  max-width: 720px;
  margin: 14px auto 0;
  line-height: 1.8;
}

.personal-intro{
  max-width: 1200px;
  margin: 0 auto;
}

.personal-main{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: 56px;
  align-items: start;
  margin-top: 50px;
}

.personal-copy{
  min-width: 0;
}

.personal-lead{
  font-size: 1rem;
  line-height: 2;
  color: #374151;
  margin-bottom: 34px;
}

.personal-points{
  display: grid;
  gap: 26px;
}

.personal-point{
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid var(--border-color);
}

.personal-point:first-child{
  padding-top: 0;
  border-top: 0;
}

.personal-point-no{
  font-family: var(--font-en);
  font-size: 1.5rem;
  line-height: 1;
  color: #c5cad1;
  letter-spacing: .05em;
}

.personal-point-body h3{
  font-size: 1.12rem;
  margin-bottom: 10px;
  color: #111827;
}

.personal-point-body p{
  margin: 0;
  font-size: .95rem;
  line-height: 1.9;
  color: #4b5563;
}

.personal-visual{
  min-width: 0;
}

.personal-image-box{
  height: 100%;
  min-height: 560px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: #f3f4f6;
}

.personal-image-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.personal-bottom{
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 48px;
  padding: 28px 32px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: #fafaf8;
}

.personal-bottom-price{
  min-width: 180px;
}

.personal-bottom-label{
  display: block;
  font-family: var(--font-en);
  font-size: .82rem;
  letter-spacing: .14em;
  color: var(--muted-text);
  margin-bottom: 8px;
}

.personal-bottom-amount{
  font-family: var(--font-en);
  font-size: 2.4rem;
  line-height: 1;
  color: #111827;
  letter-spacing: .03em;
  white-space: nowrap;
}

.personal-bottom-amount span{
  font-family: var(--font-jp);
  font-size: 1rem;
  color: var(--muted-text);
  margin-left: 6px;
}

.personal-bottom-text p{
  margin: 0;
  font-size: .95rem;
  line-height: 1.9;
  color: #4b5563;
}

.personal-bottom-action{
  text-align: right;
}

.personal-btn{
  min-width: 280px;
  text-align: center;
}

@media (max-width: 1024px){
  .personal-main{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .personal-image-box{
    min-height: 460px;
  }

  .personal-bottom{
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .personal-bottom-price{
    min-width: 0;
  }

  .personal-bottom-action{
    text-align: center;
  }
}

@media (max-width: 768px){
  .personal-section .section-title{
    margin-bottom: 20px;
  }

  .personal-main{
    margin-top: 34px;
    gap: 28px;
  }

  .personal-lead{
    font-size: .95rem;
    line-height: 1.9;
    margin-bottom: 28px;
  }

  .personal-point{
    grid-template-columns: 46px 1fr;
    gap: 12px;
    padding-top: 18px;
  }

  .personal-point-no{
    font-size: 1.2rem;
  }

  .personal-point-body h3{
    font-size: 1rem;
    line-height: 1.6;
  }

  .personal-point-body p{
    font-size: .92rem;
    line-height: 1.8;
  }

  .personal-image-box{
    min-height: 360px;
  }

  .personal-bottom{
    margin-top: 34px;
    padding: 22px 18px;
  }

  .personal-bottom-amount{
    font-size: 2rem;
  }

  .personal-btn{
    width: 100%;
    min-width: 0;
  }
}