@charset "utf-8";
/* CSS Document */

/* =================================== */
/* 0. 基本設定・リセット */
/* =================================== */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin: 0;
    line-height: 1.7;
    color: #333;
}
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}
.section {
    padding: 60px 0;
}
.section__title {
    font-size: 2.2rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
    font-weight: 700;
}

/* =================================== */
/* 1. ファーストビュー (FV) */
/* =================================== */
.fv {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    
    /* ↓↓↓ これが重要です ↓↓↓ */
    overflow: hidden; /* はみ出した動画を隠す */
    
    /* 動画が読み込まれるまでの背景（念のため） */
    background: #000; 
}

.fv__video {
    position: absolute; /* 1. レイヤーを重ねる */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 2. 上下左右中央に配置 */
    
    /* 3. 画面全体を覆う (はみ出すことを許容) */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    
    z-index: 1; /* 4. 一番下に配置 (オーバーレイより下) */
}

.fv__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* 動画の上 */
    background: rgba(0, 0, 0, 0.6); /* シャドウ */
    display: flex;
    align-items: center;
    justify-content: center;
}

.fv__content {
    position: relative;
    z-index: 3; /* オーバーレイの上 */
    max-width: 800px;
    padding: 20px;
}
.fv__title {
    font-size: 3.8rem;
    font-weight: 900;
    margin: 0 0 15px 0;
    line-height: 1.3;
}
.fv__subtitle {
    font-size: 1.4rem;
    margin: 0 0 30px 0;
}
.fv__subtitle strong {
    font-size: 1.6rem;
    color: #00ffff; /* 強調色 */
    display: block;
    margin-top: 10px;
}
.fv__cta-note {
    font-size: 0.9rem;
    display: block;
    margin-top: 10px;
}

/* =================================== */
/* 2. 課題提起 (Problems) */
/* =================================== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}
.problem-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.problem-card__icon {
    font-size: 3rem;
    color: #007bff; /* メインカラー */
    margin-bottom: 15px;
}
.problem-card__title {
    font-size: 1.25rem;
    
    /* 変更点: position: relative を追加して、::before の基準点にします */
    position: relative;
    
    /* 変更点: border-left を削除 */
    /* border-left: 5px solid #00ffff; */
    
    /* 変更点: ::before の幅(5px) + 余白(10px) = 15px のパディングに変更 */
    padding-left: 15px; 
    
    /* 下の本文との余白を調整 */
    margin: 0 0 15px 0; 
}

.problem-card__title::before {
    content: ""; /* 必須 */
    position: absolute; /* 親要素(.problem-card__title)を基準に配置 */
    left: 0; /* 親要素の左端に配置 */
    
    /* 垂直方向の中央揃え */
    top: 50%;
    transform: translateY(-50%);
    
    width: 5px; /* ボーダーの太さ */
    
    /* ↓↓↓ ここで高さを調整します (フォントサイズの約1.2倍) ↓↓↓ */
    height: 1.1em; 
    
    background-color: #007bff;
    border-radius: 2px; /* (お好みで) ボーダーの角を少し丸める */
}

.problem-card__text {
    font-size: 0.95rem;
    text-align: left;
    margin: 0;
}

/* =================================== */
/* 3. ベネフィット (Benefits) */
/* =================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.benefit-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.benefit-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover; /* 画像の比率を保ったままトリミング */
}
.benefit-card__title {
    font-size: 1.3rem;
    padding: 20px 20px 10px 20px;
    margin: 0;
}
.benefit-card__point {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #007bff; /* メインカラー */
    margin-bottom: 5px;
}
.benefit-card__text {
    font-size: 1rem;
    padding: 0 20px 20px 20px;
    margin: 0;
}

/* =================================== */
/* 4. 参加者の声 (Testimonials) - 提案2 */
/* =================================== */
.testimonial-grid {
    display: grid;
    /* 2列グリッド */
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    
    /* 変更点: ::before(引用符)を配置するため */
    position: relative; 
    overflow: hidden; /* 引用符がはみ出ないように */
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 変更点: 引用符アイコンを::beforeで生成 */
.testimonial-card::before {
    content: "“";
    font-family: Georgia, serif; /* 引用符が綺麗なフォント */
    font-size: 8rem; /* 非常に大きく */
    font-weight: 900;
    color: #f0f0f0; /* 薄いグレー */
    
    /* 位置決め */
    position: absolute;
    top: -10px;
    left: 10px;
    z-index: 1; /* 本文より下 */
    line-height: 1;
}

/* 変更点: 本文やフッターがアイコンより手前に来るよう設定 */
.testimonial-card blockquote,
.testimonial-card footer {
    position: relative;
    z-index: 2;
}

.testimonial-card blockquote {
    margin: 0;
    padding: 0;
    border: 0;
}

.testimonial-card__comment {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    
    /* 変更点: 色を黒に戻し、線も削除 */
    color: #333;
    border-bottom: none;
    padding-bottom: 0;
}

.testimonial-card footer {
    text-align: right;
    font-weight: 600;
    color: #555;
    margin-top: 15px;
}

.register__image-wrapper {
    /* 元のdivのインラインスタイル */
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    max-width: 900px; /* PCでの最大幅は900pxを維持 */
}

.register__image {
    /* ↓↓↓ これが最重要の修正です ↓↓↓ */
    max-width: 100%;  /* 画像の幅を親要素(この場合は900px)の100%に制限 */
    height: auto;     /* 画像の縦横比を維持する */
    /* ↑↑↑ ここまで ↑↑↑ */
    
    /* 元のimgのインラインスタイル */
    margin-bottom: 0rem;
    margin-top: -2rem;
    border-radius: 8px;
}

/* =================================== */
/* 5. 開催概要・お申し込み (Register) */
/* =================================== */
.tab-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.tab-nav {
    display: flex;
    border-bottom: 1px solid #ddd;
}
.tab-nav__btn {
    flex: 1;
    padding: 15px 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    color: #555;
    transition: all 0.2s ease;
}
.tab-nav__btn.active {
    background: #fff;
    color: #007bff; /* メインカラー */
    border-bottom: 3px solid #007bff;
    margin-bottom: -1px; /* 枠線を重ねる */
}
.tab-panel {
    display: none; /* JSで制御 */
    padding: 30px;
}
.tab-panel.active {
    display: block;
}
.venue-info__title {
    font-size: 1.5rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
    margin-top: 0;
}
.venue-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.venue-table th,
.venue-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    vertical-align: top;
}
.venue-table th {
    background-color: #f9f9f9;
    width: 25%;
    font-weight: 600;
}
.venue-info__cta {
    text-align: center;
    margin-top: 25px;
}
.venue-divider {
    border: 0;
    border-top: 1px dashed #ccc;
    margin: 40px 0;
}

/* =================================== */
/* 6. フッター (Footer) */
/* =================================== */
.footer {
    background: #333;
    color: #eee;
    padding: 40px 0 20px 0;
}
.footer-contact {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}
.footer-contact__group {
    flex: 1;
}
.footer-contact__group h4 {
    font-size: 1.1rem;
    color: #fff;
    border-bottom: 1px solid #555;
    padding-bottom: 5px;
}
.footer-contact__group p {
    font-size: 0.9rem;
    margin: 5px 0;
}
.footer-copyright {
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #aaa;
}

/* =================================== */
/* 共通コンポーネント: ボタン */
/* =================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
}
.btn--primary {
    background-color: #007bff; /* メインカラー */
    color: #fff;
}
.btn--primary:hover {
    background-color: #0056b3; /* ホバー色 */
}
.btn--secondary {
    background-color: #6c757d; /* サブカラー */
    color: #fff;
}
.btn--secondary:hover {
    background-color: #5a6268;
}
.btn--large {
    font-size: 1.3rem;
    padding: 15px 40px;
}

/* レスポンシブ対応 (768px以下は1列に) */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}