/* 基本設定 */
html {
    scroll-behavior: smooth;
Font-size: 17px;
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.8;
    color: #2c3e50;
    background-color: #f9fbfd;
    margin: 0;
    padding: 0;
　
}

/* --- ナビゲーションの使い心地向上 --- */
/* --- 新・ナビゲーションデザイン --- */
nav {
    position: sticky;
    top: 0;
    z-index: 99999;
    /* 背景を少し濃くして高級感を出す（ロゴのネイビーとゴールドが映える） */
    background-color: rgba(255, 255, 255, 0.98);
    display: flex;
    justify-content: space-between; /* ロゴは左、メニューは右に */
    align-items: center;
    padding: 10px 5% 5px; /* 上下のパディングを少し削り、左右に5%の余白 */
    width: 100%;
    box-sizing: border-box; /* パディングを含めたサイズ計算 */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    cursor: auto; /* 全体はクリック可能にしない */
}

nav a {
    text-decoration: none;
    /* 文字色はロゴのネイビーに近い「深い青」に変更 */
    color: #3a4f6b; 
    font-size: 0.9rem;
    transition: color 0.3s;
    padding: 8px 10px;
}

nav a:not(.nav-logo):not(.nav-reserve):hover {
    color: #e0d7c6; /* ホバー時はロゴのゴールド系に変更 */
}

/* Heroスライドショーセクション */
.hero {
    position: relative;
    height: 75vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 2s ease-in-out; /* 2秒かけてフェード */
    z-index: 0;
}

.slide.is-active {
    opacity: 1;
    z-index: 1;
}



.hero-subtext {
    display: block;
    margin-top: 20px;
    font-size: 1.1rem;
    letter-spacing: 0.5em;
    color: #e0d7c6;
}

/* コンテンツエリア */
.container {
    max-width: 800px;
    margin: 0 auto 0;
    padding: 20px 40px;
    background-color: #fff;
    position: relative;
    z-index: 5;
    margin-top: 0;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* 2. セクションに見出し用の余白を作る */
.section {
    margin-bottom: 40px;
    /* ここがポイント：ナビゲーションバーの高さ分、上部に余白を確保する */
    scroll-margin-top: 60px; 
}

/* 3. 各h3の見た目を調整 */
h3 {
    font-size: 1.4rem;
    color: #3a4f6b;
    border-bottom: 1px solid #e0e6ed;
    padding-bottom: 10px;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    /* コンテンツの開始位置を少し下げて、視覚的に余裕を持たせる */
    padding-top: 0; 
}

/* お問い合わせボタン */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3a4f6b;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #607d8b;
    transform: translateY(-2px);
}

/* スライドボタンの基本スタイル */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.prev { left: 20px; }
.next { right: 20px; }

/* 文字のコンテナ：画面の真ん中に固定する */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    text-align: center;
    z-index: 2;
    color: #ffffff;
    pointer-events: none; /* スライドボタンのクリックを邪魔しない */
}

/* 各フレーズの設定：配置を安定させる */
.phrase {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
    visibility: hidden;     /* 非表示の時は完全に隠す */
}

.phrase.is-active {
    position: relative;     /* アクティブなものだけ位置を保持 */
    opacity: 1;
    visibility: visible;
    top: auto;
    left: auto;
    transform: none;
}

/* キャッチフレーズのフォントサイズ微調整（真ん中に寄せるため） */
.hero-catchphrase {
    font-size: 2.4rem; /* 2.8より少し小さくして真ん中への収まりを良くする */
    font-weight: bold;
    letter-spacing: 0.2em;
    line-height: 1.5;
    margin: 0 0 10px 0;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    white-space: nowrap;
}

/* 特別な「予約ボタン」のデザイン（ロゴのゴールドを背景に！） */
.nav-reserve {
    font-weight: bold;
    color: #fff !important; /* 文字は白 */
    /* ロゴのゴールドを背景色にする（ここが一番カッコいい！） */
background-color: #b39a6d; 
    /* ...既存の設定... */
    box-shadow: 0 2px 8px rgba(179, 154, 109, 0.3);
    padding: 8px 18px;
    border-radius: 30px; /* 丸みを強くして特別感を出す */
    border: none;
white-space: nowrap;  /* 文字の途中で改行させない */
    display: inline-block; /* 幅をしっかり確保する */
    transition: background-color 0.3s, transform 0.2s;
}

.nav-reserve:hover {
    background-color: #3a4f6b; /* ホバー時はネイビーに切り替わる */
    transform: translateY(-1px);
}

/* リンク以外の場所をクリックした時の動き（JS）を維持するための設定 */
.nav-links::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    cursor: pointer;
}

/* ロゴエリアの設定 */
.nav-logo {
    display: flex;
    align-items: center;
    padding: 0;
    z-index: 100000;
}

.nav-logo img {
    /* 50px から 35px 程度に思い切って減らします */
    height: 50px; 
    /* 横幅は自動計算のまま */
    width: auto; 
    /* 画像が潰れたり伸びたりしないようにする（重要） */
    object-fit: contain; 
}

/* 他のメニューと同じ並びでいい場合は、上記のCSSは不要です */

/* セクション全体の装飾 */
.section-title {
    text-align: center;
    font-size: 2rem;
    color: #3a4f6b;
    margin-bottom: 20px;
}

.section-lead {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* 3カラムのレイアウト */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    border-top: 4px solid #e0d7c6; /* ロゴのゴールドをアクセントに */
}

.benefit-num {
    font-size: 3rem;
    color: rgba(224, 215, 198, 0.3);
    position: absolute;
    top: 10px;
    left: 20px;
    font-weight: bold;

font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
    font-weight: 600; /* 明朝体は少し太めにすると視認性が良くなります */
    font-style: italic; /* もし斜体にしたい場合はこれを追加 */
    letter-spacing: 0.1em;
}

.benefit-item h4 {
    color: #3a4f6b;
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
}

/* --- Reflection Section: Left Aligned, Centered Block --- */
.reflection-section2 {
    background-color: #ffffff;
    padding: 40px 20px;
}

.pain-point-box {
    display: flex;
    flex-direction: column;
    gap: 25px;               /* 各行の間隔を少し調整 */
    width: fit-content;
    margin: 40px auto;
    align-items: flex-start; /* 左に揃える */
   
}

.pain-word {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(2rem, 6vw, 3.5rem); 
    font-weight: 300;
    color: #2c3e50;
    line-height: 1.2;
    letter-spacing: 0.2em;
    margin: 0;
    opacity: 0.9;
    white-space: nowrap;
}

/* 追加した一行のスタイル */
.reflection-sub-text {
    font-size: 1.2rem;       /* 三つの言葉より小さく、本文より少し大きく */
    color: #666;             /* 少し淡い色にしてニュアンスを出す */
    margin-top: 20px;        /* 上に少し隙間を作る */
    letter-spacing: 0.1em;
    font-weight: 400;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .reflection-section2 { padding: 80px 20px; }
    .pain-word { font-size: 1.8rem; letter-spacing: 0.15em; }
    .reflection-sub-text { font-size: 1rem; margin-top: 15px; }
}

/* --- 共感セクション（reflection）のセンターレイアウト --- */
.reflection-section {
    background-color: #ffffff; 
    padding: 40px 0;
    text-align: center;

}

.reflection-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 30px;
    display: block;
}

.reflection-lead {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #555;
}

.distortion-focus {
    max-width: 700px;
    margin: 0 auto 80px;
    padding: 40px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.taichi-philosophy {
    margin: 80px auto;
    max-width: 800px;
}

.philosophy-label {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: #999;
    margin-bottom: 20px;
}

.philosophy-quote {
    font-size: 2.2rem;
    color: #2c3e50;
    margin: 0 0 30px 0;
    font-family: 'Hiragino Mincho ProN', 'MS Mincho', serif; /* 格言らしく明朝体に */
}

.reflection-footer {
    max-width: 800px;
    margin: 80px auto 0;
}

.reflection-footer h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .reflection-title { font-size: 1.5rem; }
    .philosophy-quote { font-size: 1.6rem; }
}

/* 「歪み」の一行を立体的な警告として目立たせる */
#reflection .distortion-focus h3 {
    font-size: 1.8rem;
    color: #b03a2e; /* 警告を促す深い赤 */
    border-left: 5px solid #1a2a3a;
    padding-left: 15px;
    margin-bottom: 25px;
    /* わずかに傾けて「歪み」を視覚化 */
    transform: rotate(-1deg);
    display: inline-block;
    background: rgba(176, 58, 46, 0.05);
    padding: 10px 20px;
}

/* 太極拳の要訣を「浮き島」のように見せる */
#reflection .taichi-philosophy {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 4px;
    /* 柔らかい影で浮き上がらせる */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 50px 0;
    position: relative;
    border: 1px solid rgba(179, 155, 92, 0.2); /* ロゴ系のゴールド色 */
}

/* 引用文の立体感 */
#reflection .philosophy-quote {
    font-size: 2.2rem;
    font-weight: 600;
    color: #b39b5c;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border: none;
    padding: 0;
    margin: 20px 0;
}

#reflection span:not(.text-effort,.text-joy) {
    background: linear-gradient(transparent 60%, rgba(212, 175, 55, 0.3) 0%);
    font-weight: 600;
    padding: 0 5px;
}

#reflection .reflection-title {
    /* 明朝体と優しい色味 */
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 500;
    color: #444a50;
    
    background: #fdfdfd;
    padding: 40px 40px;
    border: 1px solid #e0d7c6;
    border-radius: 2px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);

    /* --- ここが「右寄り」を直す最重要ポイント --- */
    display: block !important;    /* 強制的にブロック要素にする */
    width: 90%;                    /* 横幅を広めに確保 */
    max-width: 1000px;             /* 広がりすぎ防止 */
    
    /* 左右のmarginをautoにすることで、ブラウザが左右均等に余白を配分します */
    margin-left: auto !important;  
    margin-right: auto !important; 
    
    margin-top: 0;
    margin-bottom: 70px;
    /* ------------------------------------------ */

    position: relative;
    line-height: 1.8;
    text-align: center;            /* ボックス内の文字を中央揃えに */
    letter-spacing: 0.15em;
}

/* SHIFTラベルの配色も文字色に合わせて調整 */
#reflection .reflection-title::before {
    content: "SHIFT";
    position: absolute;
    top: -14px;
    left: 40px;
    background: #b39b5c;
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 20px;
    border-radius: 0;
    font-weight: bold;
    letter-spacing: 0.2em;
    box-shadow: 2px 2px 8px rgba(179, 155, 92, 0.2);
}

/* スマホでの微調整 */
@media (max-width: 600px) {
    #reflection .reflection-title {
        width: 100%;               /* スマホでは画面いっぱいに */
        padding: 40px 15px;
    }
}

/* 「努力」：これまでの重みを少し落ち着いたグレーで表現 */


.text-effort {
   
    color: #858c94; /* 控えめなグレー */
    font-weight: inherit; /* 太さは周りに合わせる */
}

/* 「楽しみ」：これからの明るさを、ロゴと同系のゴールドで表現 */
.text-joy {
　　　background: revert;
    color: #b39b5c; /* 落ち着いたゴールド */
    font-weight: 600; /* ここだけ少しだけ太くすると、視線が自然に誘導されます */
}
/* 共感セクションの装飾 */
.empathy-section {
    background-color: #fdfaf5; /* ほんのり温かみのある背景色 */
    padding: 80px 40px;
    border-radius: 15px;
    margin: 40px 0;
	
    Padding-top: 40px;
}

.empathy-title {
    text-align: center;
    color: #3a4f6b;
    font-size: 1.8rem;
    margin-bottom: 40px;
    line-height: 1.4;
}

.empathy-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

/* チェックリスト */
.empathy-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto 60px;
}

.empathy-list li {
    padding: 18px 0 18px 50px;
    position: relative;
    border-bottom: 1px dashed #e0d7c6;
    color: #444;
    font-size: 1.1rem;
}

.empathy-list li::before {
    content: '✔';
    position: absolute;
    left: 15px;
    color: #b39a6d; /* ゴールド */
    font-size: 1.4rem;
    font-weight: bold;
}

/* 下部のメッセージエリア */
.empathy-message {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(58, 79, 107, 0.05);
    border: 1px solid #e0d7c6;
}

.empathy-message h3 {
    border: none; /* 既存のh3の線を消す */
    font-size: 1.5rem;
    color: #3a4f6b;
    margin-bottom: 25px;
    padding: 0;
}

.empathy-conclusion {
    margin-top: 30px;
    font-weight: bold;
    color: #b39a6d;
    font-size: 1.2rem;
}

/* 信念セクションの装飾 */
.statement-section {
    background-color: #3a4f6b; /* ロゴのネイビーを背景に */
    color: #fff;
    padding: 100px 40px;
    margin: 60px 0;
    text-align: center;
}

.statement-container {
    max-width: 900px;
    margin: 0 auto;
}

.tag {
    color: #e0d7c6; /* ゴールド */
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.statement-header h2 {
    color: #e0d7c6;
    font-size: 2.2rem;
    border: none;
    margin-bottom: 40px;
}

.main-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.focus-point {
    border: 1px solid rgba(224, 215, 198, 0.4);
    padding: 30px;
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.05);
}

.focus-point h3 {
    color: #e0d7c6;
    border: none;
    font-size: 1.5rem;
    margin-bottom: 10px;
    padding: 0;
}

.real-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.real-benefits li {
    font-style: italic;
    color: #e0d7c6;
    border-left: 2px solid #e0d7c6;
    padding-left: 15px;
}

.closing-message {
    font-size: 1.1rem;
    line-height: 2;
    border-top: 1px solid rgba(224, 215, 198, 0.2);
    padding-top: 30px;
}

/* レッスンの流れ 全体 */
.flow-section {
    background-color: #fff;
    padding: 100px 0;
}

.section-intro {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.flow-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* 縦のライン */
.flow-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e0d7c6;
}

.flow-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}

.step-label {
    display: inline-block;
    color: #b39a6d;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}

.flow-item h3 {
    color: #3a4f6b;
    font-size: 1.4rem;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

/* ステップのドット */
.flow-item::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 5px;
    width: 10px;
    height: 10px;
    background-color: #3a4f6b;
    border-radius: 50%;
}

/* 推手ハイライトセクションの特別装飾 */
.flow-item.highlight {
    background: #fdfaf5;
    padding: 40px 40px 40px 80px;
    border-radius: 15px;
    border: 1px solid #e0d7c6;
}

.flow-item.highlight::after {
    left: 35px; /* ハイライト内の位置調整 */
    top: 45px;
}

.flow-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
}

.flow-image {
    flex: 1;
}

.flow-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.flow-item.highlight .flow-text {
    flex: 1.5;
}

.highlight-p {
    color: #b39a6d;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* 新ベネフィットセクション全体 */
.benefits-new {
    background-color: #fcfaf7; /* 非常に薄いベージュで落ち着きを */
    padding: 100px 0;
}

.benefit-flex-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

/* 各カードの設定 */
/* 各カードの幅を広げる設定 */
.benefit-card {
    background: #fff;
    padding: 60px 45px;      /* 上下左右の余白をさらに広げて贅沢に */
    width: 31%;              /* 3分割に近い、よりワイドな幅に（以前は30%） */
    min-width: 420px;        /* 最小幅を底上げして、窮屈さを解消 */
    max-width: auto;        /* 広がりすぎない上限を設定して品を保つ */
    
    border: 1px solid #e0d7c6;
    border-radius: 2px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    
    /* センター配置を盤石にするための設定 */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* フレックスコンテナの間隔も調整 */
.benefit-flex-container {
    display: flex;
    justify-content: center;
    gap: 30px;               /* カード同士の間隔を少し詰め、全体としてワイドに見せる */
    flex-wrap: wrap;
    margin-top: 60px;
    width: 95%;              /* コンテナ自体を広く取る */
    margin-left: auto;
    margin-right: auto;
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(179, 155, 92, 0.1);
}

/* 漢字と数字のビジュアル部分 */
.benefit-visual {
    position: relative;
    margin-bottom: 30px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kanji-bg {
    font-family: "Noto Serif JP", serif;
    font-size: 5rem;
    color: rgba(179, 155, 92, 0.15); /* 極めて薄いゴールド */
    position: absolute;
    z-index: 1;
}

.benefit-number {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.2rem;
    color: #b39b5c;
    font-weight: bold;
    letter-spacing: 0.2em;
    z-index: 2;
    border-bottom: 1px solid #b39b5c;
    padding-bottom: 5px;
}

/* カード内のテキスト */
.benefit-card h3 {
    font-family: "Noto Serif JP", serif;
    font-size: 1.4rem;
    color: #444a50; /* 優しいチャコールグレー */
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    text-align: left; /* 説明文は読みやすく左寄せ */
}

/* スマホ対応 */
@media (max-width: 900px) {
    .benefit-card {
        width: 90%;
        margin-bottom: 20px;
    }
}

/* スマホ対応：1つずつの幅をしっかり確保 */
@media (max-width: 1024px) {
    .benefit-card {
        width: 45%;          /* タブレットでは2列に */
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .benefit-card {
        width: 100%;         /* スマホでは画面いっぱいに */
        max-width: none;
        padding: 50px 25px;
	min-width: 100%;
    }
}

/* セクション間の余白を調整（空きすぎを解消） */
.info-section {
    background-color: #fdfaf5;
    padding: 60px 20px; /* 上下の余白を詰める */
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

/* カードヘッダーの文字バランス */
.card-header {
    background: #3a4f6b;
    padding: 25px 15px;
    text-align: center;
}

.eng-title {
    color: #e0d7c6;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 5px;
    Margin-top: 0;
}

.card-header h3 {
    color: #fff;
    font-size: 1.6rem; /* 文字を大きくして視認性アップ */
    margin: 0;
    border: none;
}

/* 料金部分の強調 */
.price-feature {
    background: #fff9ed;
    border: 2px solid #e0d7c6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.price-feature .label {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.price-feature .price {
    font-size: 2.4rem; /* 金額を一番目立たせる */
    font-weight: bold;
    color: #3a4f6b;
}

.price-feature .price small {
    font-size: 1rem;
    margin-left: 4px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 5px;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

/* アクセス情報の整理 */
.access-group {
    margin-bottom: 20px;
}

.access-group h4 {
    color: #b39a6d;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.access-group p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
}

.time-text {
    font-size: 1.3rem !important;
    font-weight: bold;
}

/* CTAエリアの引き締め */
.cta-area {
    text-align: center;
    border-top: 1px solid #e0d7c6;
    padding: 40px 0px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #3a4f6b;
    font-weight: bold;
}

.cta-button-gold {
    display: inline-block;
    background: #b39a6d;
    color: #fff;
    padding: 18px 60px;
    border-radius: 4px; /* あえて少し角を残して誠実さを出す */
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.cta-button-gold:hover {
    background: #3a4f6b;
}

/* 料金部分の特別装飾 */
.price-feature.trial {
    background: #fdfaf5;
    border: 2px solid #b39a6d;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.price-row.main-fee {
    background: #fff;
    padding: 20px 10px;
    border-bottom: 2px solid #3a4f6b;
    align-items: flex-end;
}

.fee-title p {
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
}

.fee-title small {
    color: #666;
    font-size: 0.8rem;
}

.accent {
    color: #b39a6d;
    font-weight: bold;
}

.payment-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #3a4f6b;
    text-align: center;
    font-weight: bold;
    border: 1px dashed #3a4f6b;
    padding: 10px;
}

/* CTAテキストの微調整 */
.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* セパレーターのスタイル */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider::before,
.section-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0d7c6, transparent); /* ロゴのゴールドで細い線を */
    margin: 0 20px;
}

.section-divider img {
    width: 100px;          /* 小さく上品なサイズに固定 */
    height: auto;
    filter: grayscale(0.5); /* さらに色味を落ち着かせる場合 */
}

/* セクション自体の余白を少し詰める（間が空きすぎないように） */
.section {
    padding-top: 40px;
    padding-bottom: 40px;
}

#introduction {
   margin-bottom: 0px;
}

/* flow-sectionの最後とinfo-sectionの始まりを特に意識 */
#lesson-flow {
    padding-bottom: 0px; /* セパレーターに近づける */
    Margin-top: 0px;
}

#info {
    margin-top: 45px;    /* セパレーターに近づける */
}

/* 全体レイアウト */
.price-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto 30px;
    max-width: 900px;
}

/* 料金ボックスの基本形 */
.price-box {
    flex: 1;
    background: #fff;
    border: 1px solid #e0d7c6;
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
}

/* 「First Time」などのタグ */
.price-tag {
    font-family: serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #b39a6d;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.price-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
    border-bottom: none;
}

/* 金額を最も大きく */
.price-amount {
    font-size: 3.5rem; /* 圧倒的に大きく */
    font-weight: bold;
    color: #3a4f6b;
    line-height: 1;
    margin-bottom: 15px;
}

.price-amount .unit {
    font-size: 1.2rem;
    margin-left: 5px;
}

.price-detail {
    color: #666;
    font-size: 0.95rem;
}

/* 無料体験の方を少しだけ強調（背景をわずかに変える） */
.price-box.trial {
    background-color: #fdfaf5;
}

/* 補足情報：文字を小さく、静かに */
.price-footer {
    text-align: center;
    color: #3a4f6b;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* レイアウト */
.access-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    align-items: flex-start;
}

.map-wrapper {
    flex: 1.2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e0d7c6;
    margin-top: 1rem;
}

.access-details {
    flex: 1;
    Margin-top: 0;
}

.meeting-point {
    font-size: 1.2rem;
    color: #3a4f6b;
    margin-top: 10px;
}

.detail-group {
    margin-bottom: 30px;
}

.detail-group h4 {
    color: #b39a6d;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: bold;
}

/* 雨天中止の案内ボックス */
.weather-notice {
    display: flex;
    gap: 15px;
    background: #f0f4f8; /* 爽やかな空をイメージした薄いブルーグレー */
    padding: 20px;
    border-radius: 8px;
    color: #3a4f6b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.weather-notice .icon {
    font-size: 1.5rem;
}

#info {
   Margin-bottom: 40px;
}

#access {
   Margin-top: 40px;
}

.section {
   margin: 40px 0px;
   padding: 40px 20px;
}


/* --- フッターデザイン --- */
.site-footer {
    background-color: #3a4f6b;
    color: #fff;
    padding: 60px 5% 20px;
    margin-top: 80px;
    font-size: 0.9rem;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(224, 215, 198, 0.2);
}

.footer-logo {
    font-family: "YuMincho", serif;
    font-size: 1.5rem;
    color: #e0d7c6;
    margin-bottom: 20px;
}

.footer-desc {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-nav h4, .footer-info h4 {
    color: #e0d7c6;
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.footer-nav ul, .footer-info ul {
    list-style: none;
    padding: 0;
}

.footer-nav li, .footer-info li {
    margin-bottom: 12px;
}

.footer-nav a, .footer-info a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    opacity: 0.7;
}

.footer-nav a:hover, .footer-info a:hover {
    opacity: 1;
    color: #e0d7c6;
}

/* 最下部コピーライト */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

/* ナビゲーションリンクの基本設定（既存のものを微調整） */
.nav-links a {
    position: relative; /* アンダーバーの基準点にするため */
    text-decoration: none;
    color: #3a4f6b;
    padding: 8px 10px;
    transition: color 0.3s;
}

/* アンダーバーの本体（擬似要素で作成） */
.nav-links a::after {
    content: '';
    position: absolute;
    left: 10%;
    bottom: 0;
    width: 0; /* 最初は幅ゼロ */
    height: 2px;
    background-color: #b39a6d; /* ゴールド */
    transition: width 0.3s ease; /* アニメーションで伸びる */
}

/* アクティブ状態、またはホバー時にアンダーバーを伸ばす */
.nav-links a.is-active::after,
.nav-links a:hover::after {
    width: 80%; /* リンクの文字幅に合わせて調整 */
}

/* アクティブな項目の文字色を少し強調する場合 */
.nav-links a.is-active {
    color: #b39a6d;
    font-weight: bold;
}

/* 予約ボタンなどはアンダーバーの対象から外す（HTMLのクラスで制御） */
.nav-reserve::after {
    display: none !important;
}

.about-section {
    background-color: #fff;
    padding: 0px 20px;
}

.about-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 4px; /* あえて少し角を残して誠実さを */
    box-shadow: 20px 20px 0 #fdfaf5; /* 背後に薄いベージュのアクセント */
}

.about-content {
    flex: 1.5;
}

.about-name {
    font-family: "YuMincho", serif;
    font-size: 2rem;
    color: #3a4f6b;
    margin-bottom: 10px;
    border: none; /* 既存のh3スタイルの線を消す */
}

.about-intro {
    font-weight: bold;
    color: #b39a6d;
    margin-bottom: 25px;
}

.about-intro2 {
    Color: #c7ae81;
}

.about-story p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.9;
    color: #444;
}

.contact-section {
    background-color: #fdfaf5; /* ほんのり温かみのある背景 */
    padding-bottom: 100px;
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3, .contact-faq h3 {
    border: none;
    font-size: 1.2rem;
    color: #3a4f6b;
    margin-bottom: 20px;
}

/* メールボタンの装飾 */
.btn-mail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #3a4f6b;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-mail:hover {
    background-color: #b39a6d;
}

.contact-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 15px;
}

/* FAQ（よくある質問）の装飾 */
.contact-faq dl dt {
    font-weight: bold;
    color: #b39a6d;
    margin-bottom: 5px;
}

.contact-faq dl dd {
    margin: 0 0 20px 0;
    font-size: 0.95rem;
    color: #444;
}

/* 自己紹介内のリンクエリア */
.about-links {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px double #e0d7c6; /* 上品な二重線で区切り */
}

.links-label {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    font-weight: bold;
}

.link-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 50px; /* 丸みを持たせて親しみやすく */
    transition: all 0.3s ease;
}

.link-btn .icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Facebookボタン：落ち着いたネイビー */
.link-btn.fb {
    background-color: #f0f2f5;
    color: #1877f2;
    border: 1px solid #1877f2;
}

.link-btn.fb:hover {
    background-color: #1877f2;
    color: #fff;
}

/* ブログボタン：心体見聞録のテーマ色（ゴールド系） */
.link-btn.blog {
    background-color: #fdfaf5;
    color: #b39a6d;
    border: 1px solid #b39a6d;
}

.link-btn.blog:hover {
    background-color: #b39a6d;
    color: #fff;
}

/* インストラクター・プロフィールの名前を小さく調整 */
.about-name {
    font-size: 1.8rem; /* h2全体の基本サイズ（適宜調整） */
    display: flex;
    align-items: baseline; /* 氏名と「講師」の底辺を揃える */
    gap: 0.5em; /* 氏名と「講師」の間の余白（適宜調整） */
}

/* 「古井基宏」の部分 */
.about-name span:not(.coach) {
    font-size: 1.6rem; /* 文字サイズ（元のh2より小さく） */
    font-weight: bold; /* 太字を維持 */
}

/* 「講師」の部分 */
.about-name .coach {
    font-size: 1.4rem; /* 「古井基宏」よりもさらに小さく */
    color: #888; /* 色を薄くする（必要なら） */
    font-weight: normal; /* 細くする（必要なら） */
}

.blog-link {
    color: #4a6fa5; /* 落ち着いた紺色 */
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

/* 万年筆や筆先のような筆致をイメージした下線 */
.blog-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #c0c0c0; /* 銀色のようなグレー */
    transition: width 0.3s ease;
}

.blog-link:hover {
    color: #2a4a7d;
}

.blog-link:hover::after {
    width: 100%;
}

rt {
    font-size: 0.5em; /* ふりがなを小さく */
    color: #888;      /* 色を少し薄くして、メインの文字を邪魔しないようにする */
}

.access-title-bg {
    /* 画像を背景に設定 */
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1)), url('KIMG0252.jpg');
    background-size: cover;
    background-position: center;
    
    /* 余白と装飾 */
    padding: 60px 20px; /* 上下にゆとりを持たせて写真を見せる */
    margin-bottom: 40px;
    text-align: center;
    border-radius: 8px; /* 全体のトーンに合わせて少し角を丸める */
}

.access-title-bg .section-title {
    margin: 0;
    color: white; /* 文字色をハッキリさせる */
    display: inline-block;
    background-color: rgba(0,0,0, 0.5); /* 文字の周りだけさらに白を重ねて読みやすく */
    padding: 10px 30px;
    letter-spacing: 0.1em;
}

/* style.css への追記イメージ */
.highlight-joy {
    background-color: #fff9ed; /* より温かみのある色に変更 */
    border: 2px solid #e0d7c6;
}

.highlight-joy .empathy-conclusion {
    font-size: 1.4rem;
    color: #3a4f6b; /* 信頼のネイビーで締める */
    border-top: 1px double #e0d7c6;
    padding-top: 20px;
    margin-top: 20px;
}

/* 核心セクション：姿勢という物差し */
.core-philosophy {
    background-color: #2c3e50; /* 落ち着いた深いネイビー */
    border-top: 5px solid #b39a6d; /* ゴールドのアクセントライン */
    padding: 100px 40px; /* ゆったりとした余白 */
}

.core-philosophy .focus-point {
    background: rgba(255, 255, 255, 0.05); /* わずかに透ける背景 */
    border: 1px solid #e0d7c6; /* 上品なゴールドの枠線 */
    padding: 40px;
    margin: 40px 0;
}

.core-philosophy h3 {
    color: #e0d7c6; /* ゴールドの文字 */
    border: none;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

/* 「微笑み」フレーズ専用の装飾 */
.smile-phrase {
    display: block;
    text-align: center;
    font-size: 1.8rem;               /* 少し大きめに */
    font-family: "YuMincho", "Hiragino Mincho ProN", serif; /* 柔らかい明朝体 */
    color: #b39a6d;                 /* ロゴのゴールド系 */
    letter-spacing: 0.2em;          /* 文字の間隔を広げてゆったりと */
    padding: 80px 20px;             /* 上下の余白をたっぷり取る */
    font-weight: 500;
    line-height: 1.5;
}

.empathy-title .sub-title {
    display: block;
    font-size: 1.2rem;     /* メインより一回り小さく */
    font-weight: normal;   /* 少し細めにしてメリハリを */
    color: #b39a6d;        /* ゴールド系の色で上品に */
    margin-top: 15px;      /* メインとの間隔 */
    letter-spacing: 0.1em; /* 少しゆったりと */
}

/* 余計な動きを排除した静かなセクション */
.the-three-walls {
    padding: 0px 20px;
    background-color: #fff; /* 背景は潔く白 */

    Margin: 40px 0px 0px 0px;
}

.walls-container {
	padding-bottom: 0px;
 	margin-bottom: 40px;
}

.walls-main-title {
    text-align: center;
    font-size: 2.5rem;
    color: #3a4f6b; /* ロゴのネイビー */
    letter-spacing: 0.3em;
    margin-bottom: 40px;
}

.walls-lead {
    text-align: center;
    max-width: 800px;      /* 文字を大きくする分、横幅も少し広げてバランスを調整 */
    margin: 0 auto 80px;
    line-height: 2;        /* 行間をたっぷり取って、圧迫感を消す */
    color: #333;           /* 以前の #444 より少し濃くして視認性アップ */
    
    /* 文字サイズの調整 */
    font-size: 1.1rem;     /* 以前より一回り大きく。標準が16pxなら約19px相当 */
    font-weight: 500;      /* ほんの少しだけ太くして、言葉に「芯」を通します */
    letter-spacing: 0.05em; /* わずかに文字の間をあけて、思考が入り込む隙間を作る */
}

/* 箇条書きのリスト：装飾を最小限に */
.walls-list {
    max-width: 700px;
    margin: 0 auto;
}

.wall-entry {
    margin-bottom: 60px;
    padding-left: 20px;
    border-left: 1px solid #b39a6d; /* 寄り添うような細い縦線 */
}

.wall-entry h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.wall-entry p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 結論：次の「楽しさ」へと繋ぐ一文 */
.walls-conclusion {
    text-align: center;
    margin-top: 80px;
    padding-top: 40px;
    Padding-bottom: 80px;
    border-top: 1px dotted #ccc;
    line-height: 2;
    Font-size: 1.2rem;
}

.walls-conclusion strong {
    display: block;
    margin-top: 20px;
    font-size: 1.4rem;
    color: #3a4f6b;
    letter-spacing: 0.1em;
}

/* 「楽しくない練習は、続かない。」の最新デザイン */
.sexy-phrase-gold {
    display: inline-block; 
    font-family: "YuMincho", "Hiragino Mincho ProN", serif; /* 柔らかく知的な明朝体 */
    font-size: 1.4rem;      
    color: #333;            
    padding: 15px 40px;     /* 上下に余白を持たせ、言葉を際立たせる */
    position: relative;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* 言葉を上下で挟む、控えめなゴールドのライン */
.sexy-phrase-gold::before,
.sexy-phrase-gold::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #b39a6d, transparent); /* ロゴと同じゴールド */
}
.sexy-phrase-gold::before { top: 0; }
.sexy-phrase-gold::after { bottom: 0; }

/* スマホでは画面幅に合わせて最適化 */
@media (max-width: 600px) {
    .walls-lead {
        font-size: 1.05rem; /* スマホでも「しっかり読める」サイズを維持 */
        text-align: left;   /* 長文になる場合はスマホでは左寄せの方が読みやすいです */
        padding: 0 10px;
    }
}

/* スマホでの見え方を調整 */
@media (max-width: 600px) {
    .sexy-phrase-gold {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
}

/* スマホ対応 */
@media (max-width: 600px) {
    .empathy-title .sub-title {
        font-size: 1rem;
    }
}
/* スマホでの調整 */
@media (max-width: 600px) {
    .smile-phrase {
        font-size: 1.3rem;
        padding: 60px 15px;
        letter-spacing: 0.1em;
    }
}
/* スマホ表示用の調整 */
@media screen and (max-width: 768px) {
    .about-name {
        flex-direction: column; /* スマホでは縦並びに */
        align-items: center; /* 中央揃えに */
        gap: 0; /* 余白をなくす */
        font-size: 1.6rem;
    }
    .about-name span:not(.coach) {
        font-size: 1.4rem;
    }
    .about-name .coach {
        font-size: 0.9rem;
    }
}

/* スマホ表示ではボタンを横いっぱいに */
@media (max-width: 480px) {
    .link-btn {
        width: 100%;
        justify-content: center;
    }
}

/* スマホ対応 */
@media (max-width: 768px) {
    .contact-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* スマホ対応 */
@media (max-width: 768px) {
    .about-flex {
        flex-direction: column;
        gap: 40px;
    }
    .about-image {
        width: 80%;
    }
}

/* スマホ対応 */
@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-nav ul, .footer-info ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
    }
}
/* スマホ対応 */
@media (max-width: 850px) {
    .access-container {
        flex-direction: column;
    }
    .map-wrapper, .access-details {
        width: 100%;
    }
}

/* スマホ対応 */
@media (max-width: 600px) {
    .price-container {
        flex-direction: column;
    }
}

/* スマホ対応 */
@media (max-width: 768px) {
    .flow-content-wrapper {
        flex-direction: column;
    }
    .flow-item.highlight {
        padding: 30px 20px 30px 50px;
    }
    .flow-item::after { left: 15px !important; }
}

/* スマホ対応 */
@media (max-width: 600px) {
    .statement-section { padding: 60px 20px; }
    .statement-header h2 { font-size: 1.5rem; }
    .real-benefits { flex-direction: column; gap: 10px; text-align: left; }
}

/* スマホ用調整 */
@media (max-width: 600px) {
    .empathy-section { padding: 40px 20px; }
    .empathy-title { font-size: 1.4rem; }
    .empathy-list li { font-size: 0.95rem; }
    .sp-only { display: block; }
}

/* スマホではボタンを少し小さく */
@media (max-width: 600px) {
    .slider-btn {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.3); /* スマホは見えやすく少し濃く */
    }
}
/* スマホ対応 */
@media (max-width: 600px) {
.hero-catchphrase {
        font-size: 1.5rem;
        white-space: normal; /* スマホでは改行を許可 */
    }
    .hero { height: 60vh; margin-bottom: 0; }
    .container { margin-top: 0; padding: 40px 20px; border-radius: 0; }
    /* nav a { margin: 0 10px; font-size: 0.8rem; } */
}

/* スマホ対応（メディアクエリ）の中を修正 */
@media (max-width: 600px) {
    nav {
        flex-wrap: wrap;       /* 折り返しを許可する */
        padding: 10px 5px;     /* 上下パディングを詰め、左右も少し空ける */
        gap: 8px 12px;         /* 縦の隙間を8px、横を12pxにする */
    }

    nav a {
        margin: 0;             /* 個別のmarginをリセット */
        font-size: 0.75rem;    /* 文字を少し小さくする */
        padding: 4px 6px;      /* クリックしやすさを保ちつつ幅を詰める */
        flex: 0 1 auto;        /* 幅に合わせて伸縮させる */
    }
}

/* レスポンシブ（スマホ対応）の中を修正 */
@media (max-width: 600px) {
    nav {
        flex-direction: column; /* スマホではロゴとメニューを縦並びに */
        padding: 10px 5%;
    }

.nav-logo img {
        /* 40px から 28px 程度に減らします */
        height: 28px; 
        margin-bottom: 5px;
    }

    .nav-links {
        flex-wrap: wrap; /* スマホではメニューを折り返す */
        justify-content: center;
        gap: 5px 8px;
    }

    nav a {
        font-size: 0.75rem;
        padding: 5px 8px;
    }
}

/* スマホ対応（メディアクエリ）の中を修正 */


@media (max-width: 600px) {
    .slide {
        background-size: contain; /* 画像を切り取らずに収める */
        background-repeat: no-repeat;
        background-color: #f9fbfd; /* サイトの背景色と合わせる */
    }
}