/* 基本スタイル - エグゼクティブ向けダークテーマ */
body {
    font-family: 'Helvetica Neue', 'Arial', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
    line-height: 1.8;
    color: #e0e0e0; /* 明るいグレーの基本文字色 */
    background-color: #1a1a1a; /* 深いチャコールグレーの背景 */
    margin: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    text-align: center;
    color: #ffffff; /* 見出しは白 */
}

h1 {
    font-size: 2.5em;
    line-height: 1.4;
}

h2 {
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 40px;
    border-bottom: 3px solid #c5b358; /* ゴールドのボーダー */
    padding-bottom: 15px;
}

p {
    margin-bottom: 1.5em;
}

strong {
    color: #c5b358; /* ゴールド */
    font-weight: 700;
}

ul {
    list-style: none;
    padding-left: 0;
}

/* セクションごとのスタイル */
section {
    padding: 60px 20px;
    border-bottom: 1px solid #333; /* セクション間の区切り線 */
}

main section:nth-of-type(even) {
    background-color: #222222; /* 少し明るいチャコールグレー */
}

main section:last-of-type {
    border-bottom: none;
}

/* ヘッダー・ファーストビュー */
.hero {
    background-image: url('header.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* 黒のオーバーレイでシックに */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.hero h1 {
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero .subtitle {
    font-size: 1.2em;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* イベント詳細ボックス */
.event-details {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #c5b358;
    border-radius: 10px;
    padding: 20px 25px;
    margin: 30px auto;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.event-details p {
    margin: 10px 0;
    font-size: 1.2em;
    font-weight: 600;
    color: #fff;
}

.event-details p strong {
    color: #fff;
    margin-right: 10px;
}

/* CTAボタン */
.cta-button {
    display: inline-block;
    background-color: #c5b358;
    color: #1a1a1a; /* ボタンテキストは背景色と同じチャコールグレー */
    padding: 18px 40px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #b3a14b;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(197, 179, 88, 0.5);
}

/* チェックマーク付きリスト */
#for-you ul, #associate-coach ul, #agenda ul, #final-cta ul {
    margin: 30px auto;
    max-width: 600px;
}

#for-you ul li, #associate-coach ul li, #agenda ul li, #final-cta ul li {
    background: none;
    padding-left: 1.5em;
    text-indent: -1.5em;
    margin-bottom: 1em;
    font-size: 1.1em;
}

#for-you ul li::before, #associate-coach ul li::before, #agenda ul li::before, #final-cta ul li::before {
    content: '✅';
    margin-right: 0.5em;
}

.center-text {
    text-align: center;
    font-size: 1.2em;
}

/* 取得ステップ */
.flow-steps {
    margin-top: 40px;
}

.step {
    background-color: rgba(255, 255, 255, 0.05); /* 半透明の背景 */
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #c5b358; /* ゴールド */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step h4 {
    font-size: 1.2em;
    text-align: left;
    color: #e0e0e0;
    margin: 0;
}

/* 講師紹介 */
.profile {
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile-pic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #c5b358;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.profile-text {
    flex-grow: 1;
}

.qualifications-title {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 1em;
}

/* よくあるご質問 */
.faq-item {
    border-top: 1px solid #333;
    padding: 20px 0;
}

.faq-item:first-child {
    border-top: none;
}

.faq-item h4 {
    font-size: 1.2em;
    color: #c5b358; /* ゴールド */
    text-align: left;
    margin: 0 0 10px 0;
}

.faq-item p {
    text-align: left;
    margin: 0;
}

/* 最終CTAセクション */
#contact {
    text-align: center;
    background-color: #111; /* さらに濃い黒で区別 */
}

#contact .event-details {
    background-color: rgba(0, 0, 0, 0.2);
    border-color: #c5b358;
}

#contact .event-details p, #contact .event-details p strong {
    color: #fff;
    text-shadow: none;
}

.small-note {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 15px;
}

/* フッター */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #000;
    color: #aaa;
    font-size: 0.9em;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin: 5px 0;
}

/* スクロールアニメーション */
section, footer .container {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.is-visible, footer .container.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.8em; }
    .hero { padding: 60px 15px; }
    .hero .subtitle { font-size: 1.1em; }
    .cta-button { padding: 15px 30px; font-size: 1.2em; }
    section { padding: 50px 15px; }

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

    .profile-text {
        margin-top: 20px;
    }
}