/* ================================================
   1. リセット & 基本設定
   ================================================ */
* { box-sizing: border-box; }
body, h1, h2, h3, p, ul, ol, dl { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }

:root {
    --primary-color: #004098;    /* 武蔵野ブルー */
    --accent-color: #00a0e9;     /* 爽やかな水色 */
    --cta-color: #ed6d00;        /* 目を引くオレンジ */
    --bg-light-blue: #f0f7ff;
    --text-color: #333;
    --border-color: #ddd;
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #f9f9f9;
    font-size: 18px;
    padding-bottom: 120px; /* 固定ボタン分の余白 */
}

/* --- レイアウト構造 --- */
.page-container { max-width: 1000px; margin: 0 auto; background: transparent; }
.lp-main { width: 100%; background: #fff; box-shadow: 0 5px 25px rgba(0,0,0,0.05); border-radius: 8px; overflow: hidden; }
.section-title { font-size: 32px; font-weight: 900; text-align: center; margin-bottom: 40px; color: var(--primary-color); }

/* --- 共通：中央揃え設定 --- */
.center-text, .why-how-content p, .closing-message, .problem-solution, .video-section .center-text { 
    text-align: center; 
    margin-bottom: 10px; 
}

.problem-solution { 
    font-size: 32px; /* 18pxから大幅に拡大 */
    font-weight: 900; 
    line-height: 1.5;
    color: var(--primary-color); /* 武蔵野ブルーで強調 */
    margin-top: 50px;
}

/* ================================================
   2. セクション別設定
   ================================================ */
/* --- 1. ヘッダー --- */
.header { background: #1E1E1E; padding: 20px; text-align: center; }
.header img { width: 240px; display: block; margin: 0 auto; }

/* --- 2. ファーストビュー（Hero） --- */
.hero {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    background: url('../img/fv.webp') no-repeat center center / cover;
    overflow: hidden;
}
.hero::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.1); z-index: 1; }
.hero .content-wrapper { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }
.hero-sub-title { font-size: 24px; font-weight: 700; margin-bottom: 20px; text-shadow: 1px 1px 5px rgba(0,0,0,0.5); }
.hero-title { font-size: 60px; font-weight: 900; line-height: 1.2; margin-bottom: 30px; text-shadow: 2px 2px 10px rgba(0,0,0,0.6); }
.hero-description { font-size: 22px; font-weight: 700; text-shadow: 1px 1px 5px rgba(0,0,0,0.5); }

/* --- 3. 独立CTAエリア --- */
.hero-cta-area { padding: 60px 20px; text-align: center; background: #fff; border-bottom: 1px solid #eee; }
.cta-container { text-align: center; margin: 30px auto; width: 100%; }

.hero-benefits {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
    padding: 30px;
    border: 3px solid var(--accent-color);
    border-radius: 15px;
    background: var(--bg-light-blue);
}
.hero-benefits p { font-size: 20px; font-weight: 700; color: var(--primary-color); margin-bottom: 12px; }
.hero-benefits p i { color: var(--accent-color); margin-right: 10px; }

/* --- ファーストビュー：タイトル文字サイズ調整 --- */
.hero-title {
    line-height: 1.3; /* 行間を少し詰めて一体感を出す */
}

/* 「4万社から〜」「の作り方」を少し小さく */
.hero-title .small-text {
    font-size: 0.7em; /* 元の60pxに対して約42px */
    font-weight: 700;
}

/* 「採用ブランド」を大きく強調 */
.hero-title .large-text {
    font-size: 1.2em; /* 元の60pxに対して約72px */
    font-weight: 900;
    color: #fff; /* 必要に応じて色を変える場合はここ */
}

/* スマホ用調整（1000px以下） */
@media screen and (max-width: 1000px) {
    .hero-title .small-text {
        font-size: 0.8em; /* スマホタイトル32pxに対して約25px */
    }
    .hero-title .large-text {
        font-size: 1.3em; /* スマホタイトル32pxに対して約41px */
    }
}

/* --- 4. 課題提起（Problem） --- */
.section { padding: 80px 20px; border-top: 1px solid #eee; }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 40px; }
.problem-item {
	background: #fdf2f2;
	padding: 25px;
	border-top: 5px solid #f28100;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	text-align: left;
}
.problem-item strong { display: block; font-size: 24px; color: #f28100; margin-bottom: 10px; font-weight: 900; }
.solution-highlight { display: inline-block; background: #fff8e1; padding: 8px 20px; border: 1px solid #fde488; border-radius: 8px; color: var(--cta-color);
font-size: 1.1em; /* さらに一回り大きく */
}

/* --- 5. 戦略 & 得られる価値 --- */
.strategy-box { display: flex; gap: 30px; margin-top: 40px; }
.strategy-item { flex: 1; background: var(--primary-color); color: #fff; padding: 30px; border-radius: 10px; text-align: left; }
.strategy-item h3 { color: #ffde59; margin-bottom: 15px; font-size: 24px; }

.learnings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.learning-item { background: var(--bg-light-blue); padding: 30px; border-radius: 10px; text-align: center; }
.learning-icon { font-size: 24px; font-weight: 900; background: var(--accent-color); color: #fff; display: inline-block; padding: 5px 15px; border-radius: 5px; margin-bottom: 15px; }

/* --- 6. 講師紹介 --- */
.instructor-profile { display: flex; align-items: center; gap: 30px; margin-bottom: 40px; text-align: left; }
.instructor-profile img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 4px solid var(--accent-color); flex-shrink: 0; }

/* --- 7. 動画 & その他 --- */
.video-wrapper { position: relative; width: 100%; padding-top: 56.25%; margin: 0 auto 40px; max-width: 800px; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.closing-message { border: 2px dashed var(--accent-color); background: #fefefe; padding: 30px; }
.closing-message h3 { color: var(--primary-color); margin-bottom: 20px; font-size: 28px; }

.outline { border: 2px solid var(--primary-color); display: grid; grid-template-columns: 150px 1fr; text-align: left; }
.outline dt { background: var(--primary-color); color: #fff; padding: 15px; font-weight: bold; }
.outline dd { margin-left: 0 !important;
	padding-left: 15px !important;
	padding: 15px; background: #fff; border-bottom: 1px solid #eee; }

/* ================================================
   3. アニメーション & ボタン（キラーン）
   ================================================ */
.btn-moushikomi, .btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-moushikomi:hover { transform: translateY(3px); box-shadow: 0 3px 0 #b35200; opacity: 0.9; }

.btn-moushikomi {
    background: linear-gradient(to bottom, #ff9000 0%, var(--cta-color) 100%);
    color: #fff !important;
    padding: 20px 60px;
    font-size: 26px;
    font-weight: 900;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 6px 0 #b35200;
    max-width: 95%;
}

/* キラーン効果の統合 */
.btn-moushikomi::before, .btn::before {
    content: '';
    position: absolute; top: -100px; left: -150px; width: 150px; height: 300%;
    background-color: rgba(255, 255, 255, 0.5);
    animation: shiny-brite 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes shiny-brite {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    20% { transform: scale(1) rotate(45deg); opacity: 0.6; }
    40% { transform: scale(50) rotate(45deg); opacity: 0; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

/* ================================================
   4. 固定ボタン & レスポンシブ
   ================================================ */
.menu1 {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background-color: rgba(0, 49, 146, 0.95);
    z-index: 9999; padding: 10px 0;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.2);
}
.menu1-container { width: 95%; max-width: 600px; margin: 0 auto; }
.menu1 img { width: 100%; height: auto; display: block; max-height: 80px; object-fit: contain; }

.footer { background: #1E1E1E; padding: 40px 20px; text-align: center; color: #ffffff; margin-top: 0; }

/* ================================================
   文字の多さを解消するビジュアル装飾
   ================================================ */

/* 1. 悩みボックスを吹き出し風にする */
.nayami-box {
    position: relative;
    border-radius: 12px !important;
    border: 2px solid #eee !important;
    border-top: 6px solid var(--cta-color) !important; /* オレンジのアクセント */
    background: #fff !important;
    padding: 30px 20px !important;
    transition: 0.3s;
}

/* 左上に「×」や「！」のアイコンを自動付与 */
.nayami-box::before {
    content: "!";
    position: absolute;
    top: -15px; left: 15px;
    width: 30px; height: 30px;
    background: var(--cta-color);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
}

/* 2. 図解風の矢印をCSSで描画 */
.step-arrow {
    width: 0; height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 30px solid #ddd;
    margin: 30px auto;
}

/* 3. 重要メッセージの「解決感」を出す装飾 */
.problem-solution {
    background: linear-gradient(transparent 60%, #fff8e1 60%); /* マーカー風 */
    display: inline-block;
    width: 100%;
    padding: 20px;
}

/* 4. メリット項目にチェックアイコンを自動付与 */
.learning-item p, .strategy-item p {
    position: relative;
    padding-left: 1.8em;
    text-align: left;
}
.learning-item p::before {
    content: "\f058"; /* FontAwesomeのチェックアイコン */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* 5. 講師プロフィールを円形画像＋背景で図解化 */
.instructor-profile {
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 100px 20px 20px 100px; /* 左側だけ丸く */
}

/* 6. 背景に薄い方眼紙のようなパターンを入れて「資料感」を出す */
.lp-main {
    background-image: 
        linear-gradient(#f9f9f9 1px, transparent 1px),
        linear-gradient(90deg, #f9f9f9 1px, transparent 1px);
    background-size: 30px 30px;
}

/* --- 背景の方眼紙パターン（LP全体またはメインエリアに適用） --- */
.lp-main {
    background-color: #fff;
    background-image: 
        linear-gradient(90deg, rgba(230,230,230,0.5) 1px, transparent 1px),
        linear-gradient(rgba(230,230,230,0.5) 1px, transparent 1px);
    background-size: 20px 20px; /* 方眼のサイズ */
}

/* --- メッセージユニット全体の調整 --- */
.solution-visual-unit {
    text-align: center;
    margin: 60px auto;
    padding: 0 20px;
    max-width: 800px;
}

/* 下向き矢印の再定義 */
.step-arrow {
    width: 0; height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 25px solid #ccc;
    margin: 0 auto 30px;
}

/* テキスト全体のコンテナ */
.problem-solution-container {
    display: inline-block;
    width: 100%;
}

.solution-text-top, .solution-text-bottom {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    margin: 10px 0;
    line-height: 1.4;
}

/* 画像のような「丸角のオレンジ枠付きボックス」 */
.solution-highlight-box {
    display: inline-block;
    background-color: #fffde6; /* 薄い黄色 */
    color: var(--cta-color);   /* オレンジ */
    font-size: 34px;           /* メインメッセージを大きく */
    font-weight: 900;
    padding: 15px 40px;
    border: 2px solid #ffeeba; /* 枠線 */
    border-radius: 15px;       /* 丸角 */
    margin: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    line-height: 1.2;
}

/* 「追う」採用から「選ばれる」採用へ。セクションの調整 */
.why-how {
    margin-bottom: 20px !important; /* ★ここを20pxに設定 */
    padding-bottom: 0 !important;   /* paddingが邪魔をしている場合があるため0に調整 */
}

/* --- 講師紹介：画像を2つ並べるための設定 --- */
.instructor-images {
    display: flex;
    gap: 10px; /* 画像同士の隙間 */
    flex-shrink: 0;
}

.instructor-images img {
    width: 120px !important;  /* 2枚並べるので少しサイズを調整 */
    height: 120px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 4px solid var(--accent-color) !important;
}

/* 講師紹介ボックス全体のレイアウト調整 */
.instructor-profile {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 20px; /* 全体を丸角に */
}

/* --- スマホ用レスポンシブ調整 --- */
@media screen and (max-width: 1000px) {
    .solution-text-top, .solution-text-bottom {
        font-size: 20px;
    }
    .solution-highlight-box {
        font-size: 22px;
        padding: 12px 20px;
        width: 100%; /* スマホでは横いっぱいに */
        box-sizing: border-box;
    }
    .solution-visual-unit {
        margin: 40px auto;
    }
	/* 講師紹介のコンテナを縦並びに */
    .instructor-profile {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px !important;
    }

    /* 画像を入れる箱も縦並びに変更 */
    .instructor-images {
        flex-direction: column; /* ここで縦並びにします */
        align-items: center;    /* 中央寄せ */
        gap: 15px;              /* 画像同士の上下の隙間 */
        margin-bottom: 20px;    /* テキストとの間の余白 */
    }

    /* 画像のサイズ調整 */
    .instructor-images img {
        width: 150px !important; /* 縦並びなので少し大きめに戻して見やすく */
        height: 150px !important;
    }

    .instructor-text {
        text-align: center;
    }
}

/* --- スマホ時の文字密度調整 --- */
@media screen and (max-width: 1000px) {
    .problem-grid {
        gap: 30px; /* 項目間の余白を広げて圧迫感を消す */
    }
    .problem-solution {
        font-size: 20px !important;
    }
}

@media screen and (max-width: 1000px) {
    body { padding-bottom: 100px; }
    .hero-title { font-size: 32px; }
    .hero-sub-title { font-size: 18px; }
    .section-title { font-size: 24px; }
    .btn-moushikomi { width: 95%; padding: 15px 10px; font-size: 18px; text-align: center; }
    .hero-cta-area { padding: 40px 15px; }
    .hero-benefits { width: 100%; padding: 20px; }
    .hero-benefits p { font-size: 16px; }
    .strategy-box { flex-direction: column; gap: 15px; }
    .instructor-profile { flex-direction: column; text-align: center; }
    .outline { grid-template-columns: 1fr; }
    .problem-item strong { font-size: 21px; }
    .problem-item { font-size: 16px; 
	}
	.problem-solution {
        font-size: 24px;
    }
	.solution-highlight {
        font-size: 1.0em;
        padding: 5px 10px;
    }
}

@media screen and (min-width: 1001px) {
    .page-container { display: block; }
    .lp-main { max-width: 900px; margin: 0 auto; }
}

/* --- 講師紹介：カード型レイアウトの統合設定 --- */
.instructor-profile.card-layout {
    flex-direction: column; /* PC/スマホ共通で縦並び */
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
}

.instructor-text-top h3 {
    font-size: 20px;
    color: var(--text-color);
    margin: 0;
}

.instructor-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
}

.instructor-images img {
    width: 130px !important;
    height: 130px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 4px solid var(--accent-color) !important;
}

.instructor-name {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.instructor-desc {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* --- スマホ用：画像を縦に並べる（既存のメディアクエリ内へ） --- */
@media screen and (max-width: 1000px) {
    .instructor-images {
        flex-direction: column; /* スマホのみ画像を縦に */
        align-items: center;
        gap: 15px;
    }
    
    .instructor-images img {
        width: 150px !important; /* スマホでは少し大きく */
        height: 150px !important;
    }

    .instructor-name {
        font-size: 20px;
    }
}
/* --- 講師紹介：カード型レイアウト（PC・スマホ共通） --- */
.card-layout {
    flex-direction: column !important; /* 強制的に縦並びにする */
    text-align: center !important;
    padding: 30px 20px !important;
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 20px;
    display: flex;
    align-items: center;
}

/* 肩書き（会社名） */
.instructor-text-top h3 {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 700;
}

/* 画像エリア */
.instructor-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px; /* 写真と名前の間の距離 */
}

.instructor-images img {
    width: 140px !important;
    height: 140px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 4px solid var(--accent-color) !important;
}

/* 名前 */
.instructor-name {
    font-size: 26px !important;
    font-weight: 900 !important;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

/* プロフィール説明文 */
.instructor-desc {
    font-size: 16px;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

/* --- スマホ専用設定（メディアクエリ内へ） --- */
@media screen and (max-width: 1000px) {
    .instructor-images {
        flex-direction: column; /* スマホでは写真2枚を縦に並べる */
        align-items: center;
    }
    .instructor-images img {
        width: 150px !important;
        height: 150px !important;
    }
    .instructor-name {
        font-size: 22px !important;
    }
    .instructor-text-top h3 {
        font-size: 16px;
    }
}
/* ================================================
   講師紹介：統合レイアウト（PC/スマホ共通）
   ================================================ */
.card-layout {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    padding: 30px 20px !important;
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 20px;
}

.instructor-text-top h3 {
    font-size: 18px;
    color: #666;
    font-weight: 700;
    margin-bottom: 20px;
}

/* 2人並ぶ時の横並び設定（PC版） */
.instructor-flex-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

/* ★写真と名前のセット★ */
.instructor-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* 写真と名前の間の距離 */
}

.instructor-unit img {
    width: 140px !important;
    height: 140px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 4px solid var(--accent-color);
}

.instructor-name {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: var(--primary-color);
    margin: 0 !important; /* 余計な隙間をカット */
}

.instructor-desc {
    font-size: 16px;
    max-width: 650px;
    margin-top: 15px;
    line-height: 1.6;
}

/* ================================================
   スマホ調整（1000px以下）
   ================================================ */
@media screen and (max-width: 1000px) {
    /* スマホでは2人の写真を縦に並べる */
    .instructor-flex-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .instructor-unit img {
        width: 150px !important;
        height: 150px !important;
    }

    .instructor-name {
        font-size: 20px !important;
    }

    .instructor-text-top h3 {
        font-size: 16px;
    }
}

/* ================================================
   セミナー概要とクロージングメッセージの間の余白調整
   ================================================ */

/* 表（dl.outline）の下に30pxの余白を追加 */
.outline {
    margin-bottom: 30px !important;
}

/* もし上の設定だけで足りない場合は、メッセージ側の上の余白も調整 */
.closing-message {
    margin-top: 30px !important;
}
