/* index */
:root {
--bg-core: #000000;
--bg-panel: #111111;
--bg-panel-light: #181818;

--gold-primary: #d4af37;
--gold-highlight: #fbe68b;
--gold-dark: #8e7018;
--gold-grad: linear-gradient(135deg, #b68d28 0%, #fbe68b 50%, #b68d28 100%);

--text-white: #ffffff;
--text-gray: #cccccc;

--font-main: "Noto Sans JP", sans-serif;
--max-w: 980px;
}

* { box-sizing: border-box; }

body {
margin: 0;
background-color: var(--bg-core);
color: var(--text-gray);
font-family: var(--font-main);
line-height: 1.8;
font-size: 16px;
letter-spacing: 0.05em;
}

h1, h2, h3, h4 {
margin: 0;
color: var(--text-white);
line-height: 1.4;
font-weight: 900;
}

p { margin: 0 0 1.5em; }
a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.8; }
img { max-width: 100%; height: auto; display: block; }

/* Utilities */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }
.text-bold { font-weight: 700; }
.section-spacing { padding: 100px 0; border-bottom: 1px solid #222; }

/* Image Placeholder */
.img-slot {
width: 100%; background: #0a0a0a; border: 1px dashed #444;
display: flex; flex-direction: column; align-items: center; justify-content: center;
color: #666; font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
margin: 30px 0; padding: 20px; min-height: 200px;
}
.img-slot::before { content: "IMAGE AREA"; display: block; margin-bottom: 10px; color: var(--gold-primary); opacity: 0.5; }
.slot-hero { aspect-ratio: 16/9; min-height: 400px; }
.slot-wide { aspect-ratio: 16/9; }
.slot-square { aspect-ratio: 1/1; max-width: 400px; margin: 0 auto; }

/* Components */
.sec-label {
display: inline-block; font-size: 0.9rem; font-weight: 900; color: var(--gold-primary);
border: 1px solid var(--gold-primary); padding: 6px 16px; letter-spacing: 0.15em; margin-bottom: 20px;
}

.btn-gold {
display: block; width: 100%; max-width: 480px; margin: 40px auto 0; padding: 24px 0;
background: var(--gold-grad); color: #000; font-size: 1.3rem; font-weight: 900;
text-align: center; border-radius: 4px; box-shadow: 0 0 20px rgba(182, 141, 40, 0.4);
position: relative; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; line-height: 1;
white-space: nowrap; /* テキストを強制的に一行にする */
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(182, 141, 40, 0.6); }
.btn-gold::after {
content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
animation: shine 3s infinite;
}
@keyframes shine { 0% { left: -100%; } 20% { left: 100%; } 100% { left: 100%; } }

/* --- CSS Diagrams (To reduce "moji-moji") --- */

/* Diagram 1: Comparison Box (Insight) */
.logic-compare {
display: flex; gap: 20px; flex-wrap: wrap; margin: 40px 0;
}
.logic-box {
flex: 1; background: #1a1a1a; padding: 30px; border-radius: 4px; border: 1px solid #333; position: relative;
}
.logic-box.bad { border-top: 4px solid #666; }
.logic-box.good { border-top: 4px solid var(--gold-primary); background: linear-gradient(to bottom, #1a1a1a, #0d0d0d); }
.logic-title { font-weight: 900; font-size: 1.2rem; margin-bottom: 15px; display: block; }
.logic-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.arrow-down { margin: 10px auto; color: #555; font-size: 1.5rem; line-height: 1; }

/* Diagram 2: Equation (Method) */
.equation-visual {
display: flex; align-items: center; justify-content: center; gap: 15px; flex-wrap: wrap;
background: #000; border: 1px solid var(--gold-primary); padding: 30px; margin: 30px 0;
}
.eq-part { text-align: center; }
.eq-circle {
width: 140px; height: 140px; border-radius: 50%; background: #111; border: 2px solid var(--gold-primary);
display: flex; flex-direction: column; align-items: center; justify-content: center;
margin: 0 auto 10px; box-shadow: 0 0 15px rgba(212,175,55,0.1);
}
.eq-label { font-weight: 900; color: #fff; font-size: 1.1rem; line-height: 1.2; }
.eq-sub { font-size: 0.75rem; color: var(--gold-primary); margin-top: 5px; }
.eq-symbol { font-size: 2rem; font-weight: 900; color: #fff; }

/* Diagram 3: Flow (Management) */
.flow-diagram {
display: flex; gap: 2px; margin: 40px 0; overflow-x: auto;
}
.flow-step-vis {
flex: 1; min-width: 150px; background: #111; padding: 20px; position: relative;
border-bottom: 3px solid #333;
}
.flow-step-vis.active { border-bottom-color: var(--gold-primary); background: linear-gradient(to bottom, #111, #1a1600); }
.flow-step-vis::after {
content: "▶"; position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
color: #333; z-index: 1; font-size: 1.2rem;
}
.flow-step-vis:last-child::after { display: none; }
.flow-step-num { font-size: 2.5rem; font-weight: 900; color: rgba(255,255,255,0.1); line-height: 1; margin-bottom: 5px; }
.flow-step-title { font-weight: 900; color: #fff; font-size: 1rem; margin-bottom: 5px; }
.flow-step-desc { font-size: 0.8rem; color: #aaa; line-height: 1.4; }

/* --- Section Specifics --- */
.hero-section { padding: 120px 0 80px; background: radial-gradient(circle at center, #1c1c1c 0%, #000 80%); text-align: center; border-bottom: 4px solid var(--gold-primary); }
.hero-copy { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.2; margin: 20px 0 30px; background: linear-gradient(to bottom, #fff, #bbb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 10px 40px rgba(0,0,0,0.8); }
.hero-badges { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; }
.hero-badge { background: rgba(255,255,255,0.1); border: 1px solid #444; color: #fff; font-size: 0.8rem; padding: 5px 10px; border-radius: 4px; }

.target-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .target-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.target-card { background: var(--bg-panel); border: 1px solid #333; padding: 40px; position: relative; }
.check-list { list-style: none; padding: 0; margin: 20px 0; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-weight: 700; color: var(--text-white); border-bottom: 1px dashed #333; padding-bottom: 15px; }
.check-list li::before { content: "✔"; position: absolute; left: 0; color: var(--gold-primary); font-size: 1.2rem; }

.insight-wrapper { background: var(--bg-panel); padding: 60px 40px; border-left: 5px solid var(--gold-primary); }

.pillar-header { text-align: center; margin-bottom: 60px; }
.pillar-card { background: var(--bg-panel-light); padding: 40px; margin-bottom: 40px; border: 1px solid #333; position: relative; }
.pillar-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gold-primary); }
.pillar-label { font-size: 3rem; font-weight: 900; color: #222; position: absolute; top: 20px; right: 20px; line-height: 1; }
.method-grid { display: grid; gap: 30px; }
@media (min-width: 768px) { .method-grid { grid-template-columns: 1fr 1fr; } }

.offer-section { background: linear-gradient(to bottom, #111 0%, #000 100%); text-align: center; border-top: 4px solid var(--gold-primary); }
.offer-box { border: 1px solid var(--gold-primary); padding: 40px; display: inline-block; background: rgba(212, 175, 55, 0.05); width: 100%; }

.evidence-card { background: var(--bg-panel); padding: 40px; margin-bottom: 30px; border-bottom: 2px solid #333; }
.evidence-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid #333; padding-bottom: 15px; }
.case-tag { background: var(--gold-primary); color: #000; padding: 4px 12px; font-weight: 900; font-size: 0.85rem; text-transform: uppercase; }
.process-box { background: rgba(255,255,255,0.05); padding: 20px; margin: 20px 0; border-left: 3px solid var(--gold-primary); }
.process-label { display: block; font-size: 0.8rem; color: var(--gold-primary); font-weight: 900; margin-bottom: 5px; text-transform: uppercase; }

.footer { text-align: center; padding: 40px 0; font-size: 0.8rem; color: #666; background: #000; border-top: 1px solid #222; }

/* feature all */

/* 既存コンポーネントをページスコープで微調整 */
.vc-page .hero-badges { flex-wrap: wrap; }

/* Offerは section-spacing を付けず、既存offer-sectionに余白を付与 */
.vc-page .offer-section { padding: 100px 0; }

/* Evidence header の折返し（スマホで詰まらないように） */
.vc-page .evidence-header { flex-wrap: wrap; gap: 10px; }

/* --- SP: 必ず1列（差分の明示的担保） --- */
@media (max-width: 767px) {
.vc-page .slot-hero { min-height: 260px; }

/* 2カラム化しうる要素を強制縦積み */
.vc-page .logic-compare { flex-direction: column; }

/* Flowは横スクロールより縦の方が読みやすい想定（1列担保） */
.vc-page .flow-diagram { flex-direction: column; overflow-x: visible; gap: 12px; }
.vc-page .flow-step-vis { min-width: auto; }
.vc-page .flow-step-vis::after { display: none; }
}

/* Feature-all */

.vc-page {
width: 100%;
}

/* 1st View：バッジの折り返しを許可（スマホ想定） */
.vc-page .hero-badges {
flex-wrap: wrap;
}

/* セクション内の強調領域：読みやすさを微調整（共通CSSのトーンは維持） */
.vc-page .insight-wrapper {
margin-top: 30px;
}

/* Offer：ボックスが端まで伸びたときの見た目を安定 */
.vc-page .offer-box {
box-sizing: border-box;
}

/* ===================== */
/* SP（スマホ：必ず1列） */
/* ===================== */
@media (max-width: 767px) {
.vc-page .section-spacing {
padding: 80px 0;
}

.vc-page .hero-section {
padding: 90px 0 60px;
}

.vc-page .slot-hero {
min-height: 260px;
}

/* 比較ボックス：縦積みで1列 */
.vc-page .logic-compare {
flex-direction: column;
}

/* フロー：横スクロールではなく縦積み */
.vc-page .flow-diagram {
flex-direction: column;
overflow-x: visible;
}

.vc-page .flow-step-vis {
min-width: 0;
}

.vc-page .flow-step-vis::after {
display: none;
}

/* 主要カード系：スマホでの余白を少しだけ詰める（トーン維持） */
.vc-page .pillar-card,
.vc-page .target-card,
.vc-page .insight-wrapper,
.vc-page .offer-box,
.vc-page .evidence-card {
padding: 28px 20px;
}

.vc-page .pillar-header {
margin-bottom: 40px;
}
}

/* =========================================
Responsive & Typography Fixes
#ERROR!

/* --- 1. Typography Control (Hero) --- */
.hero-copy-wrapper {
margin-bottom: 30px;
line-height: 1.3;
width: 100%;
}

.hero-line-top {
display: block;
font-size: clamp(1.8rem, 4vw, 2.8rem);
font-weight: 900;
color: #fff;
margin-bottom: 0.2em;
}

.hero-line-main {
display: block;
font-size: clamp(2.4rem, 7vw, 4.5rem);
font-weight: 900;
line-height: 1.2;
}

.hero-line-main .suffix {
font-size: 0.5em;
vertical-align: middle;
margin-left: 0.2em;
}

.hero-line-sub {
display: block;
font-size: clamp(1.6rem, 3.5vw, 2.6rem);
font-weight: 900;
color: #fff;
margin-top: 0.2em;
}

/* --- 2. Line Break Prevention (Global) --- */
.keep-line {
display: inline-block;
white-space: nowrap;
}

/* --- 3. Mobile Specifics --- */
.sp-break {
display: inline;
}

/* スマホ表示時の調整（768px以下） */
@media (max-width: 768px) {
.sp-break {
display: block;
margin-top: 4px;
}

/* ====== 可読性改善：ここが今回の本命修正 ====== */
/* ベース文字を上げる（これに em が連動する） */
.vc-page { font-size: 18px; }

/* 本文は rem をやめ、em でベースに追随させる */
.vc-page p {
font-size: 1.05em;
line-height: 1.9;
text-align: justify;
}

/* 文字が小さく感じやすい周辺要素を底上げ */
.vc-page .flow-step-desc {
font-size: 0.95em;
line-height: 1.55;
}
.vc-page .hero-badge {
font-size: 0.95em;
}
.vc-page .sec-label {
font-size: 0.95em;
}
.vc-page .process-label {
font-size: 0.85em;
}
/* ====== 可読性改善：ここまで ====== */

/* 図解エリアのスマホ対応 */
.equation-visual {
padding: 20px 10px;
}
.vc-page .eq-circle {
width: 110px;
height: 110px;
font-size: 0.85em;
}
.eq-symbol {
font-size: 1.5rem;
margin: 0 5px;
}
}

/* =========================================
Section 02: Targeting (SVG Icons & Grid)
#ERROR!

.vc-target-grid-3 {
display: grid;
gap: 30px;
width: 100%;
grid-template-columns: 1fr;
}

@media (min-width: 768px) {
.vc-target-grid-3 {
grid-template-columns: repeat(3, 1fr);
align-items: stretch;
}
}

.vc-target-card {
background: var(--bg-panel, #111);
border: 1px solid #333;
padding: 40px 20px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
height: 100%;
}

.vc-icon-box {
width: 80px;
height: 80px;
margin-bottom: 20px;
display: flex;
justify-content: center;
align-items: center;
color: var(--gold-primary, #d4af37);
}

.vc-icon-svg {
width: 100%;
height: 100%;
fill: currentColor;
}

/* =========================================
Section 02: Targeting (Force Fix Version)
#ERROR!

.vc-target-grid-force {
display: grid !important;
gap: 30px !important;
width: 100% !important;
grid-template-columns: 100% !important;
box-sizing: border-box !important;
}

@media (min-width: 768px) {
.vc-target-grid-force {
grid-template-columns: repeat(3, 1fr) !important;
align-items: stretch !important;
}
}

.vc-target-card {
background: var(--bg-panel, #111);
border: 1px solid #333;
padding: 40px 20px;
text-align: center;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
height: 100%;
}

.picto-wrap {
height: 60px;
width: 100%;
margin-bottom: 20px;
display: flex !important;
justify-content: center;
align-items: center;
position: relative;
}

.picto-wave span {
display: inline-block !important;
width: 6px !important;
background: var(--gold-primary, #d4af37) !important;
margin: 0 3px !important;
border-radius: 3px;
animation: wave 1.2s infinite ease-in-out;
}
.picto-wave span:nth-child(1) { height: 20px; animation-delay: 0s; }
.picto-wave span:nth-child(2) { height: 40px; animation-delay: 0.1s; }
.picto-wave span:nth-child(3) { height: 30px; animation-delay: 0.2s; }
.picto-wave span:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.picto-wave span:nth-child(5) { height: 20px; animation-delay: 0.4s; }

@keyframes wave {
0%, 100% { transform: scaleY(1); opacity: 0.7; }
50% { transform: scaleY(1.5); opacity: 1; }
}

.picto-chart {
align-items: flex-end !important;
}
.chart-bar {
display: inline-block !important;
width: 14px !important;
background: #444 !important;
margin: 0 5px !important;
border-radius: 2px 2px 0 0;
}
.chart-bar.gold {
background: var(--gold-primary, #d4af37) !important;
box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.picto-glass {
width: 30px !important;
height: 46px !important;
border: 2px solid var(--gold-primary, #d4af37) !important;
border-radius: 4px;
position: relative;
overflow: hidden;
}
.glass-sand {
position: absolute;
left: 0;
width: 100%;
background: var(--gold-primary, #d4af37) !important;
}
.glass-top { top: 0; height: 50%; animation: sand-drop 3s infinite linear; }
.glass-btm { bottom: 0; height: 0%; animation: sand-fill 3s infinite linear; }

@keyframes sand-drop { 0% { height: 50%; } 100% { height: 0%; } }
@keyframes sand-fill { 0% { height: 0%; } 100% { height: 50%; } }
/* --- 画面はみ出し・巨大空白を強制解決するCSS --- */

/* 1. 見出しの文字サイズをスマホに合わせて自動縮小 */
.hero-line-top {
font-size: clamp(1.2rem, 5vw, 2.8rem) !important; /* スマホで最小1.2rem */
white-space: nowrap;
}
.hero-line-main {
font-size: clamp(1.8rem, 8vw, 4.5rem) !important; /* メインコピーを可変に */
white-space: nowrap;
}
.hero-line-sub {
font-size: clamp(1.2rem, 5vw, 2.6rem) !important;
white-space: nowrap;
}

/* 2. ターゲットカードの横幅を100%に固定（はみ出し防止） */
.vc-target-grid-force {
display: grid !important;
grid-template-columns: 100% !important; /* スマホでは強制1列 */
gap: 20px !important;
width: 100% !important;
overflow: hidden !important; /* はみ出しをカット */
}

@media (min-width: 768px) {
.vc-target-grid-force {
grid-template-columns: repeat(3, 1fr) !important; /* PCのみ3列 */
}
}

/* 3. WordPressの勝手な改行による空白を排除 */
.hero-section p, .section-spacing p {
margin-bottom: 1em !important;
}
br {
content: "";
display: block;
margin-bottom: 0;
}

/* 4. 画像スロットのレスポンシブ化 */
.img-slot {
max-width: 100% !important;
height: auto !important;
aspect-ratio: 16 / 9;
}
/* =========================
スマホで「1文字ずつ改行」になるのを抑止
（HTMLとは別で追記）
#ERROR!
.vc-page .vc-target-card .text-white,
.vc-page .vc-target-card .text-sub,
.vc-page .vc-note-box .text-bold{
white-space: normal;
writing-mode: horizontal-tb;
word-break: normal;
overflow-wrap: anywhere;
line-break: strict;
max-width: 100%;
}

/* カード内の横並びが原因で幅が極端に細くなるケースの対策 */
@media (max-width: 768px){
.vc-page .vc-target-card{
flex-direction: column;
}
.vc-page .vc-target-card .text-white,
.vc-page .vc-target-card .text-sub{
width: 100%;
}
}
/* =========================
中央カードのアイコンが消える件の対策（CSS追記）
※以前はinlineでheight指定していたので、0pxになって消えています
#ERROR!
.vc-page .picto-wrap.picto-chart{
display: flex;
align-items: flex-end;
justify-content: center;
gap: 8px;
min-height: 52px;
}

.vc-page .picto-wrap.picto-chart .chart-bar{
display: block;
width: 10px;
height: 20px;
}

.vc-page .picto-wrap.picto-chart .chart-bar:nth-child(2){
height: 35px;
}

.vc-page .picto-wrap.picto-chart .chart-bar:nth-child(3){
height: 50px;
}


/* =========================================================
Vocal Campとは > 理由②：プロ基準での現在地の診断とゴール設計
追記CSS（既存CSSの末尾に追加）
#ERROR!

/* ページ個別：長いタイトルでも崩れないように（このページだけ） */
.vc-page#vc-reason-02 .hero-copy-wrapper {
max-width: 36ch;
margin-left: auto;
margin-right: auto;
}

/* 既存CSSではnowrapが入り得るため、このページのみ折返しを許可 */
.vc-page#vc-reason-02 .hero-line-top,
.vc-page#vc-reason-02 .hero-line-main,
.vc-page#vc-reason-02 .hero-line-sub {
white-space: normal;
overflow-wrap: anywhere;
}

.vc-page#vc-reason-02 .hero-section p {
max-width: 60ch;
margin-left: auto;
margin-right: auto;
color: var(--text-gray);
}

/* Section 01：比較ボックス内の箇条書きの見た目を整える（新規クラス追加なし） */
.vc-page#vc-reason-02 .logic-box ul {
margin: 0 0 1.2em;
padding-left: 1.2em;
}

.vc-page#vc-reason-02 .logic-box li {
margin: 0 0 0.8em;
color: var(--text-white);
font-weight: 700;
line-height: 1.7;
}

.vc-page#vc-reason-02 .logic-box.bad li {
color: #ddd;
}

/* Section 02：長文カードの読みやすさ（h3と本文の密着を解消） */
.vc-page#vc-reason-02 .pillar-card h3 {
margin-bottom: 14px;
font-size: 1.35rem;
}

.vc-page#vc-reason-02 .pillar-card p:last-child {
margin-bottom: 0;
}

/* Section 03：式ブロックの余白を少し強める */
.vc-page#vc-reason-02 .equation-visual {
margin-top: 40px;
}

/* SP微調整（既存のSP方針：1列を維持したまま） */
@media (max-width: 767px) {
.vc-page#vc-reason-02 .hero-copy-wrapper {
max-width: 28ch;
}

.vc-page#vc-reason-02 .logic-box {
padding: 24px 20px;
}

.vc-page#vc-reason-02 .pillar-card h3 {
font-size: 1.2rem;
}

.vc-page#vc-reason-02 .equation-visual {
padding: 22px 14px;
}
}


/* =========================================================
スタジオ一覧：追記CSS（既存CSSの末尾に追加）
#ERROR!

.vc-page#vc-studio-list .hero-section p {
max-width: 60ch;
margin-left: auto;
margin-right: auto;
color: #fff;
opacity: 0.9;
font-size: 1.06em;
line-height: 1.9;
}

.vc-page#vc-studio-list h2 {
font-size: clamp(1.9rem, 3.2vw, 2.7rem);
line-height: 1.25;
margin-top: 18px;
margin-bottom: 24px;
}

.vc-page#vc-studio-list .pillar-card h3 {
font-size: clamp(1.25rem, 2.1vw, 1.7rem);
margin-bottom: 16px;
}

/* リストの見た目を「強い本文」に寄せる（新規クラス追加なし） */
.vc-page#vc-studio-list .pillar-card ul {
margin: 0 0 1.5em;
padding-left: 1.2em;
}

.vc-page#vc-studio-list .pillar-card li {
margin: 0 0 0.7em;
color: var(--text-white);
font-weight: 700;
line-height: 1.75;
}

/* Google Map：全幅・視認性を担保 */
.vc-page#vc-studio-list .pillar-card iframe {
width: 100%;
height: 360px;
border: 0;
border-radius: 4px;
display: block;
margin-top: 16px;
filter: grayscale(45%) contrast(105%);
}

/* CTA：文章が長くても読みやすい幅に制御 */
.vc-page#vc-studio-list .offer-section h2,
.vc-page#vc-studio-list .offer-section p {
max-width: 62ch;
margin-left: auto;
margin-right: auto;
}

/* SP微調整（1列方針は既存踏襲） */
@media (max-width: 767px) {
.vc-page#vc-studio-list {
font-size: 19px; /* スタジオ情報は“読める”が最優先 */
}

.vc-page#vc-studio-list .hero-section {
padding: 100px 0 65px;
}

.vc-page#vc-studio-list .section-spacing {
padding: 86px 0;
}

.vc-page#vc-studio-list .pillar-card {
padding: 28px 20px;
}

.vc-page#vc-studio-list .pillar-card iframe {
height: 300px;
}
}


/* =========================================================
 ↓暫定追加箇所（フォントサイズ対策
 ========================================================= */


.vc-page {
font-size: 17px;
}

.vc-page h2 {
font-size: clamp(28px, 4vw, 40px);
}

.vc-page h3 {
font-size: clamp(22px, 3vw, 28px);
}

.vc-page p {
line-height: 1.8;
}

.vc-page .vc-text-sm {
font-size: 15px;
}

.vc-page .vc-text-md {
font-size: 17px;
}

.vc-page .vc-text-lg {
font-size: 19px;
}

/* =========================================================
 ↑暫定追加箇所ここまで（フォントサイズ対策
 ========================================================= */
/* =========================================
Section 04: THE 3 PILLARS (Ven Diagram)
#ERROR!

/* --- PC表示 (768px以上) --- */
@media (min-width: 768px) {
/* 図全体のコンテナ */
.vc-pillars-diagram {
position: relative;
width: 100%;
max-width: 840px; /* 図の最大幅 */
height: 750px; /* 図全体の高さ */
margin: 80px auto 0;
}

/* 中央のテキスト */
.vc-pillar-center {
position: absolute;
top: 58%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
z-index: 0; /* 円の下に配置 */
width: 300px;
}

/* 各柱の円形スタイル（既存のカードクラスを拡張） */
.vc-target-card.vc-pillar-circle {
position: absolute;
width: 340px !important;
height: 340px !important;
border-radius: 50%; /* 円形にする */
padding: 50px 30px !important;
justify-content: center !important;
z-index: 1;
background: var(--bg-panel, #111);
border: 2px solid var(--gold-primary, #d4af37);
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* 各円の配置 */
.pillar-top {
top: 0;
left: 50%;
transform: translateX(-50%);
}
.pillar-left {
bottom: 0;
left: 0;
}
.pillar-right {
bottom: 0;
right: 0;
}

/* 円の中のテキスト調整 */
.vc-pillar-circle h3 {
font-size: 1.3rem !important;
margin: 15px 0 !important;
}
.vc-pillar-circle p {
font-size: 0.9rem !important;
}
}

/* --- スマホ表示 (767px以下) --- */
@media (max-width: 767px) {
/* ベン図を解除し、通常の縦積みにする */
.vc-pillars-diagram {
display: flex;
flex-direction: column;
gap: 30px;
margin-top: 40px;
height: auto;
}

/* 中央テキストはスマホでは非表示（レイアウトが崩れるため） */
.vc-pillar-center {
display: none;
}

/* 円形を解除し、通常のカードに戻す */
.vc-target-card.vc-pillar-circle {
position: static;
width: 100% !important;
height: auto !important;
border-radius: 10px;
padding: 40px 20px !important;
border-width: 1px;
}
}
/* =========================
VOICE（整理版 / 最新）
- 2列はPCのみ（1024px〜）
- 〜1023pxは1列
- flexのはみ出し（min-width問題）解消
- 見出し1行固定（必要時）
- アイコン（人ピクト）表示
- h3のサイズを抑制
- keep-lineの強制改行をVOICE内だけ無効化
#ERROR!

/* --- Grid --- */
@media (min-width: 1024px) {
.vc-target-grid-force {
display: grid !important;
grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
gap: 28px !important;
}
}
@media (max-width: 1023px) {
.vc-target-grid-force {
display: grid !important;
grid-template-columns: 1fr !important;
gap: 18px !important;
}
}

/* --- Head (タイトル間の詰まりが出る場合のみ) --- */
.vc-page .text-center h2 {
white-space: nowrap;
}

/* --- Card Layout --- */
.vc-review-card {
display: flex;
gap: 22px;
height: 100%;
}

.vc-review-left {
flex: 0 0 96px;
min-width: 96px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.vc-review-right {
flex: 1 1 auto;
min-width: 0 !important; /* 右カラムのはみ出し根絶 */
max-width: 100%;
overflow-wrap: anywhere;
word-break: break-word;
}

/* --- Typography --- */
.vc-review-right h3 {
font-size: 1.02rem !important;
line-height: 1.45 !important;
margin: 0 0 12px !important;
}

.vc-review-right p {
font-size: 0.95rem;
line-height: 1.8;
margin: 0;
}

/* keep-line が他所でnowrapの場合の保険（VOICE内だけ無効化） */
.vc-page .vc-review-right .keep-line {
display: inline !important;
white-space: normal !important;
}

/* --- Icon (人ピクト) --- */
.vc-review-icon {
width: 72px;
height: 72px;
border-radius: 999px;
display: grid;
place-items: center;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.12);
margin-bottom: 14px;
}

.vc-review-icon svg {
width: 36px;
height: 36px;
fill: currentColor;
opacity: 0.95;
max-width: 100%;
}

/* --- Mobile: stack --- */
@media (max-width: 767px) {
.vc-review-card {
flex-direction: column;
text-align: center;
}
.vc-review-left {
flex: none;
min-width: 0;
}
}
/* =========================
VOICE：間隔（余白）だけ増やす追記
※既存CSSの下に置く（上書き用）
#ERROR!

/* セクション見出しとカード群の間隔 */
.vc-page .text-center {
margin-bottom: 44px !important;
}

/* グリッドのカード間（上下左右） */
@media (min-width: 1024px) {
.vc-target-grid-force {
gap: 36px !important;
}
}
@media (max-width: 1023px) {
.vc-target-grid-force {
gap: 22px !important;
}
}

/* カード内の余白（詰まりを解消） */
.vc-review-card {
padding: 30px !important;
gap: 26px !important;
}

/* 左（アイコン/属性）と右（本文）の距離 */
.vc-review-left {
margin-right: 2px; /* 微調整（不要なら消してOK） */
}

/* タイトルと本文の間 */
.vc-review-right h3 {
margin-bottom: 14px !important;
}

/* 本文の行間を少しだけゆるく */
.vc-review-right p {
line-height: 1.85 !important;
}
/* =========================
VOICE：上下カード間隔を詰める
#ERROR!

/* PC */
@media (min-width: 1024px) {
.vc-target-grid-force {
row-gap: 18px !important; /* ← 縦だけ縮める */
}
}

/* タブレット以下 */
@media (max-width: 1023px) {
.vc-target-grid-force {
row-gap: 14px !important;
}
}
/* =========================
VOICE：上下カード間隔をさらに半分
#ERROR!

@media (min-width: 1024px) {
.vc-target-grid-force {
row-gap: 10px !important;
}
}

@media (max-width: 1023px) {
.vc-target-grid-force {
row-gap: 8px !important;
}
}
/* =========================
VOICE：上下余白を限界まで削る
#ERROR!

/* grid の縦間隔を極小 */
@media (min-width: 1024px) {
.vc-target-grid-force {
row-gap: 4px !important;
}
}
@media (max-width: 1023px) {
.vc-target-grid-force {
row-gap: 4px !important;
}
}

/* カード自身の上下マージンを完全除去 */
.vc-review-card {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
/* =========================
TARGETING / VOICE 共通の崩れ対策を整理（SP配慮）
※「vc-target-grid-forceをVOICE専用にしていた上書き」を剥がす設計
#ERROR!

/* ----- section head：見出し下の余白（詰まり解消） ----- */
.vc-page .sec-label + .sec-title,
.vc-page .sec-label + h2,
.vc-page .sec-label + .text-white {
margin-top: 12px;
}

.vc-page .text-center {
margin-bottom: 40px;
}

/* ----- Grid：全セクション共通（TARGETING/INSIGHT等はauto-fitで自然配置） ----- */
.vc-page .vc-target-grid-force {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
column-gap: 28px;
row-gap: 16px;
}

/* SPは必ず1列（読みやすさ優先） */
@media (max-width: 767px) {
.vc-page .vc-target-grid-force {
grid-template-columns: 1fr;
column-gap: 0;
row-gap: 14px;
}
}

/* TARGETINGの「下の空白がデカすぎる」対策（ノート箱の余白を最適化） */
.vc-page .vc-note-box {
margin-top: 18px;
}

/* =========================
VOICE（vc-voice-gridだけ個別に2列固定）
#ERROR!
@media (min-width: 1024px) {
.vc-page .vc-voice-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
column-gap: 28px;
row-gap: 10px;
}
}
@media (max-width: 1023px) {
.vc-page .vc-voice-grid {
grid-template-columns: 1fr;
column-gap: 0;
row-gap: 10px;
}
}
/* =========================
SP崩れまとめ修正（全体）
- iPhone16想定（〜767px）
- containerの左右詰まり/はみ出し
- keep-lineの暴走抑制（SPのみ）
- ボタン/バッジの整列
#ERROR!

/* まず“はみ出し”を止める（img/長文/カード） */
.vc-page img,
.vc-page svg,
.vc-page .vc-target-card,
.vc-page .vc-review-card {
max-width: 100%;
}

/* SP：container左右の余白を確保（詰まり＆はみ出し対策） */
@media (max-width: 767px) {
.vc-page .container {
padding-left: 16px !important;
padding-right: 16px !important;
}
}

/* SP：keep-lineは“折り返し優先”に（分断/崩れ対策） */
@media (max-width: 767px) {
.vc-page .keep-line {
white-space: normal !important;
}
}

/* HERO：バッジがはみ出す/詰まる対策 */
@media (max-width: 767px) {
.vc-page .hero-badges {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}
}

/* HERO：CTAボタンをSPで押しやすく */
@media (max-width: 767px) {
.vc-page .btn-gold {
width: 100%;
max-width: 420px;
display: inline-block;
}
}

/* 見出しブロック：SPで下の余白を適正化 */
@media (max-width: 767px) {
.vc-page .text-center {
margin-bottom: 32px;
}
}

/* =========================
TARGETING / INSIGHT：グリッドSP 1列安定
（vc-target-grid-force共通）
#ERROR!
.vc-page .vc-target-grid-force {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
column-gap: 28px;
row-gap: 16px;
}

@media (max-width: 767px) {
.vc-page .vc-target-grid-force {
grid-template-columns: 1fr;
column-gap: 0;
row-gap: 14px;
}
}

/* Note box：下の空白がデカい/小さいをならす */
.vc-page .vc-note-box {
margin-top: 18px;
}

/* =========================
「3つの理由」：SP崩れ修正（iPhone16で崩れる本丸）
- 図解レイアウト（円配置）をSPでは縦積みに切り替える
- 既存クラスのみ使用
#ERROR!
@media (max-width: 767px) {
.vc-page .vc-pillars-diagram {
display: grid !important;
grid-template-columns: 1fr !important;
gap: 14px !important;
}

/* 中央要素もカードとして上に置く */
.vc-page .vc-pillar-center {
position: static !important;
width: 100% !important;
max-width: none !important;
text-align: center !important;
margin: 0 !important;
padding: 22px 18px !important;
}

/* 3つの円カード（absolute等を無効化して縦積み） */
.vc-page .vc-pillar-circle {
position: static !important;
width: 100% !important;
max-width: none !important;
height: auto !important;
margin: 0 !important;
padding: 22px 18px !important;
}

/* pillar-top/left/rightの位置指定が残っていても無効化 */
.vc-page .pillar-top,
.vc-page .pillar-left,
.vc-page .pillar-right {
top: auto !important;
left: auto !important;
right: auto !important;
bottom: auto !important;
transform: none !important;
}

/* 「3D Voice」見出しのインライン指定をSPで抑える（上書き） */
.vc-page .vc-pillar-center strong {
font-size: 1.35rem !important;
margin-bottom: 8px !important;
}
.vc-page .vc-pillar-center span {
font-size: 0.95rem !important;
line-height: 1.7 !important;
}

/* 理由カード内のh3/pの詰まりを調整 */
.vc-page .vc-pillar-circle h3 {
line-height: 1.45 !important;
margin-top: 10px !important;
margin-bottom: 10px !important;
}
.vc-page .vc-pillar-circle p {
line-height: 1.8 !important;
margin: 0 !important;
}
}

/* =========================
VOICE：SPの詰まり＆見出しサイズを安定
（いまの構造のまま）
#ERROR!
@media (min-width: 1024px) {
.vc-page .vc-voice-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
column-gap: 28px;
row-gap: 10px;
}
}
@media (max-width: 1023px) {
.vc-page .vc-voice-grid {
grid-template-columns: 1fr;
column-gap: 0;
row-gap: 10px;
}
}

.vc-page .vc-voice-head {
margin-bottom: 40px;
}

.vc-page .vc-review-card {
display: flex;
gap: 22px;
height: 100%;
}

.vc-page .vc-review-left {
flex: 0 0 96px;
min-width: 96px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.vc-page .vc-review-right {
flex: 1 1 auto;
min-width: 0 !important;
max-width: 100%;
overflow-wrap: anywhere;
word-break: break-word;
}

.vc-page .vc-review-right h3 {
font-size: 1.02rem !important;
line-height: 1.45 !important;
margin: 0 0 12px !important;
}

.vc-page .vc-review-right p {
font-size: 0.95rem;
line-height: 1.8;
margin: 0;
}

@media (max-width: 767px) {
.vc-page .vc-review-card {
flex-direction: column;
text-align: center;
padding: 24px !important;
}
.vc-page .vc-review-left {
flex: none;
min-width: 0;
}
.vc-page .vc-review-icon {
margin-bottom: 12px;
}
}
/* =========================
3つの理由：SPで「巨大な空白」を潰す（原因：absolute配置の残り）
※いまのHTMLが vc-page なしでも効くように二重指定
#ERROR!

@media (max-width: 767px) {
/* 図解コンテナを“縦積み”に固定 */
.vc-pillars-diagram,
.vc-page .vc-pillars-diagram {
display: grid !important;
grid-template-columns: 1fr !important;
gap: 14px !important;
}

/* 中央（3D Voice）を通常フローへ */
.vc-pillar-center,
.vc-page .vc-pillar-center {
position: static !important;
inset: auto !important;
transform: none !important;
width: 100% !important;
height: auto !important;
margin: 0 !important;
padding: 22px 18px !important;
}

/* 3つの円カード：absolute/固定サイズを解除して通常カード化 */
.vc-pillar-circle,
.vc-page .vc-pillar-circle {
position: static !important;
inset: auto !important;
top: auto !important;
left: auto !important;
right: auto !important;
bottom: auto !important;
transform: none !important;

width: 100% !important;
max-width: none !important;
height: auto !important;
margin: 0 !important;
padding: 22px 18px !important;
}

/* 位置クラス（pillar-top/left/right）が残っていても無効化 */
.pillar-top,
.pillar-left,
.pillar-right,
.vc-page .pillar-top,
.vc-page .pillar-left,
.vc-page .pillar-right {
position: static !important;
inset: auto !important;
transform: none !important;
}
}
/* =========================================
   【重要修正】3つの理由（3 Pillars）の表示崩れ防止
   ========================================= */

/* --- PC表示（768px以上）：ベン図（円形配置） --- */
@media (min-width: 768px) {
  .vc-pillars-diagram {
    position: relative !important;
    height: 750px !important;
    max-width: 840px !important;
    margin: 80px auto 0 !important;
    display: block !important; /* グリッド化を解除 */
  }

  /* 3つの円（強制的に丸く・配置） */
  .vc-target-card.vc-pillar-circle {
    position: absolute !important;
    width: 340px !important;
    height: 340px !important;
    border-radius: 50% !important; /* 確実に丸くする */
    padding: 50px 30px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    z-index: 1;
  }
  
  /* 中央テキスト */
  .vc-pillar-center {
    display: block !important;
    position: absolute !important;
    top: 58% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 300px !important;
    z-index: 0;
  }
}

/* --- スマホ表示（767px以下）：縦積みカード --- */
@media (max-width: 767px) {
  /* コンテナを縦並びに */
  .vc-pillars-diagram {
    display: flex !important;
    flex-direction: column !important;
/* =========================================
   【最終修正】3つの柱（ID指定による強制適用）
   ========================================= */

/* --- PC表示（768px以上）：ベン図 --- */
@media (min-width: 768px) {
  /* コンテナ：絶対配置の基準点としてリセット */
  #vc-pillars-root .vc-pillars-diagram {
    display: block !important; /* GridやFlexを解除 */
    position: relative !important;
    width: 100% !important;
    max-width: 840px !important;
    height: 750px !important;
    margin: 80px auto 0 !important;
  }

  /* 共通カード設定：真ん丸にして中央配置 */
  #vc-pillars-root .vc-target-card.vc-pillar-circle {
    position: absolute !important;
    width: 340px !important;  /* 幅を固定（これで楕円を防ぐ） */
    height: 340px !important; /* 高さも固定 */
    border-radius: 50% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* 左右中央揃え */
    justify-content: center !important; /* 上下中央揃え */
    text-align: center !important; /* テキスト中央揃え */
    padding: 30px !important;
    margin: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important; /* 基本はX軸中央 */
    z-index: 1;
  }

  /* 上の円 */
  #vc-pillars-root .pillar-top {
    top: 0 !important;
    /* transformは基本設定を使用 */
  }
}