/* =========================================
   基本設定・リセット
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Yu Gothic', '游ゴシック', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fcfcfc; /* 真っ白より少し目に優しい白 */
    letter-spacing: 0.03em;
}

/* 強調文字（ゴールド系で高級感） */
.bold {
    font-weight: bold;
}
.orange {
    color: #b8860b; /* ダークゴールデンロッドに変更 */
    font-weight: bold;
}

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

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* =========================================
   ヘッダー
   ========================================= */
.header {
    background: #0f172a; /* 深いネイビー（高級感・夜のイメージ） */
    padding: 0; /* 画像を全面に出すためパディング調整 */
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-pc { display: block; }
.header-sp { display: none; }

/* =========================================
   共通セクションタイトル
   ========================================= */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    /* 高級感のあるグラデーション背景 */
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: #fff;
    padding: 25px 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border-bottom: 4px solid #c5a059; /* ゴールドのライン */
}

.section-sub-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #1e3a8a; /* ネイビー */
    position: relative;
    padding-bottom: 20px;
}

.section-sub-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #c5a059; /* ゴールド */
}

/* =========================================
   ごあいさつセクション
   ========================================= */
.greeting {
    background: #fff;
}

.greeting-content {
    display: flex;
    align-items: center; /* 中央揃えに変更 */
    gap: 50px;
    flex-direction: row-reverse; /* 写真を右、文章を左（PC時） */
}

.greeting-text {
    flex: 3;
}

.greeting-text p {
    font-size: 16px;
    margin-bottom: 25px;
}

.greeting-image {
    flex: 2;
}

/* 画像プレースホルダー */
.image-placeholder {
    width: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden; /* 角丸を画像に適用 */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* ふんわりした影 */
}

/* =========================================
   ゲスト講師紹介セクション
   ========================================= */
.guest-speaker {
    background: #f8fafc; /* 薄いブルーグレー */
}

.speaker-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.speaker-image {
    flex: 1;
}

.speaker-text {
    flex: 2;
}

.speaker-text-only .speaker-text {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================
   対象者セクション
   ========================================= */
.target-audience {
    background: #1e3a8a; /* 背景をネイビーにして反転させる */
    color: #fff;
    padding-bottom: 60px;
}

.target-audience .section-sub-title {
    color: #fff; /* 文字色を白に */
}
.target-audience .section-sub-title::after {
    background: #c5a059;
}

.audience-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.audience-box {
    background: #fff;
    color: #333;
    padding: 40px 30px;
    border-radius: 8px;
    /* 上部にゴールドのアクセントライン */
    border-top: 5px solid #c5a059; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.audience-box h3 {
    font-size: 1.4rem;
    text-align: center;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.summary-box {
    text-align: center;
    margin-top: 40px;
}

.summary-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    line-height: 2;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    display: inline-block;
}

.summary-text .highlight {
    color: #c5a059;
    font-weight: bold;
    font-size: 1.5rem;
}

/* =========================================
   特徴セクション
   ========================================= */
.features {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列固定（崩れる場合はレスポンシブで調整） */
    gap: 30px;
}

.feature-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    margin-top: 40px; /* アイコンを突き出させるため */
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c5a059 0%, #b8860b 100%); /* ゴールドグラデーション */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    /* ボックスの上に飛び出させる配置 */
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(184, 134, 11, 0.3);
}

.feature-box h3 {
    text-align: center;
    font-size: 1.3rem;
    color: #0f172a;
    margin-top: 40px; /* アイコン分の余白 */
    margin-bottom: 20px;
    font-weight: bold;
}

/* =========================================
   セミナー内容（Agenda）
   ========================================= */
.agenda {
    background: #fdfbf7; /* ほんのりゴールドがかった白 */
}

.agenda-list {
    max-width: 800px;
    margin: 0 auto;
}

.agenda-item {
    background: white;
    padding: 25px;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-radius: 8px;
    /* 左側にゴールドの線を入れる */
    border-left: 6px solid #c5a059;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s;
}

.agenda-item:hover {
    transform: translateX(5px);
}

.checkmark {
    width: 24px;
    height: 24px;
    /* アイコンの色変更が必要ならSVG側かfilterで調整 */
}

/* =========================================
   開催案内 & 最後に
   ========================================= */
.seminar-info {
    background: #0f172a; /* ダークネイビー */
    color: #fff;
}
.seminar-info .section-title {
    background: none;
    box-shadow: none;
    border-bottom: none;
    margin-bottom: 20px;
}

.event-details {
    background: #fff;
    color: #333;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.event-details h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 30px;
}

.event-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    border: 1px solid #ddd;
}

.event-label {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: bold;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    width: 30%;
}

.event-value {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

/* CTAボタン */
.button-container {
    text-align: center;
    margin-top: 40px;
}

.btn-cta {
    display: inline-block;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #c5a059 0%, #b8860b 100%);
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.6);
}

.btn-cta:hover::before {
    left: 100%;
}

/* ボタンのパルスアニメーション */
@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(197, 160, 89, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(197, 160, 89, 0.6);
    }
    100% {
        box-shadow: 0 5px 20px rgba(197, 160, 89, 0.4);
    }
}

.btn-cta {
    animation: pulse 2s infinite;
}

.btn-cta:hover {
    animation: none;
}

/* 最後のセクション */
.last-section {
    background: #fff;
}

.last-section-text {
    background: #fff;
    padding: 50px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    line-height: 2;
}

/* フッター */
.footer {
    background: #000;
    color: #888;
    padding: 40px 0;
    font-size: 0.9rem;
    text-align: center;
}

.legal-links {
    margin-bottom: 15px;
}

.legal-links a {
    color: #888;
    text-decoration: none;
}

.legal-links a:hover {
    color: #c5a059;
}

/* =========================================
   レスポンシブ (スマホ)
   ========================================= */
@media (max-width: 768px) {
    /* 表示切り替え */
    .header-pc { display: none; }
    .header-sp { display: block; }
    .sp-only { display: block; }
    .pc-only { display: none; }
    .summary-image-pc { display: none; }
    .summary-image-sp { display: block; margin: 0 auto; }

    /* レイアウト調整 */
    .container { padding: 0 15px; }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        padding: 20px 10px;
    }
    
    .section-sub-title {
        font-size: 1.4rem;
    }
    
    .greeting-content {
        flex-direction: column; /* 写真を上に */
        gap: 30px;
    }
    
    .greeting-text p {
        font-size: 15px;
    }
    
    .speaker-content {
        flex-direction: column;
        padding: 20px;
    }
    
    .audience-boxes {
        grid-template-columns: 1fr;
    }
    
    .audience-box {
        padding: 30px 20px;
    }
    
    .audience-box h3 {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 60px; /* アイコンの飛び出し分を考慮 */
    }
    
    .feature-box h3 {
        font-size: 1.2rem;
    }
    
    .agenda-item {
        font-size: 1rem;
        padding: 20px;
    }
    
    .event-details {
        padding: 30px 20px;
    }
    
    .event-details h3 {
        font-size: 1.4rem;
    }
    
    .event-table, .event-table tbody, .event-table tr, .event-table td {
        display: block;
        width: 100%;
    }
    
    .event-label {
        width: 100%;
        background: #e2e8f0;
        text-align: center;
        padding: 15px;
    }
    
    .event-value {
        text-align: center;
    }
    
    .last-section-text {
        padding: 20px;
    }
    
    .summary-text {
        font-size: 1.1rem;
        padding: 20px;
        line-height: 1.8;
    }
    
    .summary-text .highlight {
        font-size: 1.2rem;
    }
    
    .summary-text br {
        display: none;
    }
    
    .btn-cta {
        padding: 18px 35px;
        font-size: 1rem;
    }
}
