/* Start custom CSS for html, class: .elementor-element-79701f6 *//* --- デザイン・コア設定 --- */
:root {
    --accent-gold: #c5a059;
    --accent-red: #c0392b;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-sand: #fdfaf5;
    --bg-white: #ffffff;
}

html { scroll-behavior: smooth; }

.lp-wrap {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ヒーロー */
.hero-block {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding: 60px 20px;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), 
                url('https://crystalconference.org/wp-content/uploads/2025/07/e92512132610dd098d357f2155bf891a.jpg') center/cover;
}
.hero-block h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); margin: 10px 0; color: var(--accent-gold); text-shadow: 2px 2px 15px rgba(0,0,0,0.8); font-family: serif; }

/* セクション共通 */
.lp-section { padding: 80px 20px; max-width: 1000px; margin: 0 auto; }

/* ★H2セクションタイトル：スマホ対応 */
.section-title { 
    text-align: center; 
    margin-bottom: 50px; 
    font-size: 2rem; /* PCサイズ */
    color: var(--text-dark); 
    position: relative; 
    padding-bottom: 15px; 
    letter-spacing: 0.05em;
}
.section-title::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 50px; height: 2px; background: var(--accent-gold); }

/* カード */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.plan-card { background: var(--bg-white); border: 1px solid #eee; border-radius: 16px; padding: 40px 30px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.plan-card.featured { border: 2px solid var(--accent-gold); transform: scale(1.03); }

/* テーブル */
.info-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; background: #fff; }
.info-table th, .info-table td { border: 1px solid #eee; padding: 15px; }
.info-table th { background: var(--bg-sand); color: var(--accent-gold); width: 30%; }

/* Q&A */
.qa-item { margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.qa-q { font-weight: bold; color: var(--accent-gold); display: flex; gap: 10px; margin-bottom: 10px; }
.qa-q::before { content: "Q."; color: var(--accent-gold); }
.qa-a { display: flex; gap: 10px; font-size: 0.95rem; }
.qa-a::before { content: "A."; font-weight: bold; color: #999; }

/* その他 */
.price-highlight-box { background: var(--bg-sand); border: 1px solid #f0e6d6; padding: 30px; border-radius: 12px; display: flex; justify-content: space-around; text-align: center; margin-bottom: 30px; }
.payment-notice { margin: 40px 0; padding: 30px; border-left: 5px solid var(--accent-gold); background: #fafafa; }
.cancel-card { background: #fff; border: 2px solid #fee2e2; padding: 40px; border-radius: 16px; }
.btn-gold { display: block; background: #222; color: #fff !important; text-decoration: none; font-weight: bold; padding: 18px; border-radius: 50px; transition: 0.3s; margin-top: 20px; text-align: center; }
.btn-gold:hover { background: var(--accent-gold); transform: translateY(-3px); }
.iframe-container { position: relative; width: 100%; padding-top: 120%; overflow: hidden; }
.iframe-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* --- モバイル対応 (max-width: 768px) --- */
@media (max-width: 768px) {
    .lp-section { padding: 60px 15px; } /* 余白を少し詰める */
    
    /* ★タイトルサイズを小さく調整 */
    .section-title { 
        font-size: 1.5rem; 
        margin-bottom: 35px;
    }
    
    .hero-block h1 { font-size: 2.5rem; } /* ヒーロー文字も調整 */
    .price-highlight-box { flex-direction: column; gap: 20px; padding: 20px; }
    .plan-card.featured { transform: none; } /* スマホでは拡大を解除して横幅を揃える */
    .info-table th, .info-table td { padding: 10px; font-size: 0.85rem; }
    .info-table th { width: 35%; }
    .btn-gold { padding: 15px; font-size: 1rem; }
}

/* --- 追加：お申し込みセクション --- */
.entry-section {
    padding: 80px 20px;
    text-align: center;
}

.entry-section .section-title {
    margin-bottom: 20px;
}

.entry-section .sub-text {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #666;
}

/* ボタン3つを横並びにする設定 */
.entry-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.entry-btn-group .btn-gold {
    flex: 1;
    margin-top: 0; /* 既存設定の上書き */
}

/* 最新情報リンクの設定 */
.info-link-wrap {
    margin-top: 20px;
}

.info-link {
    display: inline-block;
    color: #c5a059; /* 既存の--accent-gold */
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s;
    cursor: pointer;
}

.info-link:hover {
    color: #c0392b; /* ホバー時にアクセントレッドへ変化 */
    text-decoration: underline;
}

/* モバイル対応：768px以下でボタンを縦並びにする */
@media (max-width: 768px) {
    .entry-btn-group {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .entry-section {
        padding: 60px 20px;
    }
}


/* --- 講師プロフィールセクション統合CSS --- */

/* 2人分を包むコンテナ */
.instructor-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px; /* カード同士の基本の距離 */
    max-width: 900px;
    margin: 0 auto;
}

.profile-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0e6d6; /* 統一感を出すための薄い枠線 */
}

/* 2人目のカード（secondary）の調整 */
/* PCでは1人目と同じ見せ方、スマホで区別しやすくするための余白を設定 */
.profile-card.secondary {
    margin-top: 20px;
}

.profile-photo-area {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.photo-frame {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border: 1px solid #eee;
    padding: 10px;
    background: #fff;
    border-radius: 8px; /* 信頼感のある角丸四角 */
}

.photo-frame img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    filter: sepia(10%) contrast(105%); /* 少し温かみのあるトーンに（任意） */
}

.instructor-name {
    margin-top: 20px;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

.instructor-name span {
    display: block; /* 英語名を改行させる */
    font-size: 0.9rem;
    font-weight: normal;
    color: #666;
    margin-top: 5px;
}

.profile-text-area {
    flex: 1.8; /* 文章量を考慮し少し広めに設定 */
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
}

.profile-text-area p {
    margin-top: 0;
}

/* --- スマホ対応 (max-width: 768px) --- */
@media (max-width: 768px) {
    .instructor-wrapper {
        gap: 30px;
    }
    
    .profile-card {
        padding: 30px 20px;
        gap: 20px;
    }

    .profile-card.secondary {
        margin-top: 10px;
        /* スマホで2人目の境界をはっきりさせる場合はここを調整 */
    }

    .profile-photo-area {
        min-width: 100%; /* 写真を中央に */
    }

    .profile-text-area {
        font-size: 0.9rem;
        min-width: 100%;
    }
    
    .instructor-name {
        font-size: 1.2rem;
    }
}/* End custom CSS */