/* ==========================================================
// style.css - 最終整理版
// ========================================================== */


/* A. BASE & UTILITIES (基本リセット、Webフォント、レイアウト) */

body {
    font-family: 'M PLUS 2', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f8f8; /* クリーンな背景 */
    line-height: 1.6;
}

/* コンテンツ幅の制限 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* セクションの共通スタイル */
.section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 40px;
    color: #f06292; /* アクセントカラー */
}

/* 基本要素 */
img {
    width: 100%;
}
strong {
    font-weight: 700; /* 強調は太字にする */
}
.sp-d-none {
    /* モバイル非表示ユーティリティはメディアクエリに集約 */
}

/* 必須マークの共通スタイルと折り返し防止 */
.required {
    white-space: nowrap; /* ★必須部分の折り返しを防ぐ */
    color: #f06292;
    font-size: 0.8em;
    font-weight: 700;
    margin-left: 5px;
    background-color: #ffebee;
    padding: 2px 6px;
    border-radius: 4px;
}


/* ==========================================================
// B. I. HERO SECTION (メインビジュアル)
// ========================================================== */

.hero-section {
    height: 90vh; 
    min-height: 500px;
    background-color: #1a1a1a; 
    background-image: url('img/hero.png'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 0 5%; 
    position: relative; 
    overflow: hidden;
    color: #fff; 
}
/* 背景動画の設定 */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1; 
}
/* ヒーローコンテンツのスタイル */
.hero-content {
    z-index: 10;
    padding: 20px;
    position: relative;
}
/* 左右の要素の設定 */
.hero-left, .hero-right {
    flex: 1; 
    padding: 20px;
    z-index: 10; 
}
.hero-right {
    text-align: right; 
}
.hero-left {
    text-align: left;
}

.main-catch {
    font-size: 5em;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.sub-catch {
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: 700;
}

/* CTAボタンの共通スタイル */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f06292; 
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #e91e63;
}

/* フォーム直前のモデル募集リンク（ボタン） */
.model-recruit-link-bottom {
    margin: 50px auto;
    text-align: center;
}
.model-button {
    background-color: #64b5f6; /* 青みがかった色で差別化 */
    padding: 15px 40px;
    font-size: 1.1em;
}
.model-button:hover {
    background-color: #2196f3;
}
/* Heroセクション上部のモデル募集リンク */
.model-recruit-link-top {
    font-size: 0.9em;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0.8;
}
.model-recruit-link-top a {
    color: #fff; /* 白文字 */
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s;
}
.model-recruit-link-top a:hover {
    opacity: 1;
}


/* ==========================================================
// C. II. PROBLEM SOLVER & III. STANCE (特徴/両立)
// ========================================================== */

.problem-solver-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}
.problem-solver-section .container {
    max-width: 800px; 
    display: block; 
}
.feature-item {
    margin: 0 auto 20px; 
    padding: 20px 25px;
    background-color: #ffffff; 
    border-radius: 8px; 
    text-align: left;
    display: flex; /* アイコンとテキストを横並び */
    align-items: flex-start; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); 
}
.risk-free-image {
    max-width: 600px; 
    width: 90%;
    margin: 0 auto 50px; 
    display: block; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); 
    border-radius: 8px; 
}
.feature-item h2 {
    font-size: 1.15em;
    font-weight: 700;
    color: #f06292;
    margin: 0;
    flex-shrink: 0; 
    position: relative;
    margin-bottom: 20px;
}
.feature-item p {
    flex-grow: 1; 
    font-size: 1em;
    margin-left: 20px;
    margin-top: 0; 
}


/* ==========================================================
// D. V. DIVERSITY (活動の多様性)
// ========================================================== */

.diversity-section {
    background-color: #fff;
    padding: 80px 0;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1em;
    color: #555;
}

/* ビジョンカードの2列グリッド */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px; 
    margin: 0 auto;
    max-width: 1000px; 
}

/* ビジョンカードのデザイン */
.vision-item {
    text-align: left;
    padding: 25px;
    background-color: #fcfcfc;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.vision-item:hover {
    box-shadow: 0 8px 25px rgba(240, 98, 146, 0.15); 
    transform: translateY(-3px);
}

.vision-title {
    font-size: 1.25em;
    font-weight: 800;
    color: #f06292; 
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 5px; 
}

/* 活動スタイルカード */
.activity-styles {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 30px;
}

.style-card {
    flex: 1;
    padding: 30px 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.style-card h3 {
    color: #f06292;
}

.activity-message {
    font-size: 1.1em;
    font-weight: 500;
}


/* ==========================================================
// E. VII. FLOW & VIII. CLOSING (要項・フロー・誘導)
// ========================================================== */

.flow-closing-section {
    background-color: #f0f0f0;
    padding: 80px 0;
}

/* 募集要項リスト */
.requirements-list {
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: left;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.requirements-list ul {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    font-size: 1.05em;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.requirements-list li::before {
    content: '★'; 
    color: #f06292;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.requirements-list .note {
    font-size: 0.9em;
    color: #999;
    text-align: center;
    margin-top: 15px;
}

/* 選考フローのスタイル (最終リスト型) */
.flow-list {
    list-style: none;
    max-width: 500px; 
    margin: 50px auto;
    padding: 0;
    text-align: left;
}
.flow-list li {
    padding: 25px 0;
    margin-bottom: 5px;
    border-bottom: 1px solid #ddd;
}
.flow-list li:last-child {
    border-bottom: none;
}
.flow-number {
    display: inline-block;
    font-size: 2em;
    font-weight: 900;
    color: #f06292;
    margin-right: 15px;
    width: 20px;
}
.flow-title-item {
    display: inline-block;
    font-size: 1.4em;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}
.flow-description {
    font-size: 1em;
    color: #555;
    margin: 5px 0 0 40px;
    line-height: 1.5;
}


/* 最終CTA (誘導エリア) */
.final-cta-sub {
    font-weight: 700;
    font-size: 2em;
    color: #f06292;
}
.final-cta-image {
    max-width: 800px; 
    width: 90%;
    margin: 50px auto 60px; 
    display: block; 
    border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); 
    filter: brightness(1.1); 
}


/* ==========================================================
// F. FORM STYLES (自前フォームを使用する場合のスタイル)
// ========================================================== */

.form-instruction {
    font-size: 1.5em;
    color: #333;
    border-bottom: 2px solid #f06292;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.entry-form-placeholder {
    margin-top: 50px;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.application-form {
    text-align: left;
    max-width: 600px;
    margin: 30px auto 0;
}

.form-group {
    margin-bottom: 25px;
}

/* フォームのラベル */
.form-group label, .form-agreement label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
    font-size: 1.05em;
}

/* テキスト/数値入力欄とテキストエリア */
.form-group input[type="text"],
.form-group input[type="number"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.3s;
    font-family: 'M PLUS 2', sans-serif;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #f06292;
    outline: none;
    box-shadow: 0 0 5px rgba(240, 98, 146, 0.5);
}

/* 年齢と都道府県の横並び */
.half-width {
    width: 48%;
    display: inline-block;
    vertical-align: top;
}
.half-width:first-of-type {
    margin-right: 4%;
}

/* ファイル入力 */
.file-upload-group {
    border: 2px dashed #f06292;
    padding: 20px;
    border-radius: 10px;
}
.file-upload-group .file-note {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
}
.file-inputs {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.file-input-item {
    flex: 1;
}
.file-input-item label {
    font-weight: 500;
    font-size: 0.9em;
    color: #f06292;
    margin-bottom: 5px;
}
.file-input-item input[type="file"] {
    width: 100%;
    border: 1px solid #ddd;
    padding: 8px;
    background-color: #fff;
    border-radius: 4px;
}

/* SNSアカウント */
.sns-platform-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.radio-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.radio-item input[type="radio"] {
    margin-right: 5px;
    accent-color: #f06292;
}
#sns-id {
    width: 100%;
    margin-top: 10px;
    order: 10;
}

/* 同意チェックボックス */
.form-agreement {
    margin-top: 30px;
    text-align: center;
}
.agreement-label {
    display: inline-flex;
    align-items: flex-start;
    gap: 5px;
    cursor: pointer;
    font-size: 1em;
    max-width: 90%;
    margin: 0 auto;
    text-align: left;
    font-weight: 500;
    color: #333;
}
.form-agreement input[type="checkbox"] {
    margin-right: 0;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #f06292;
}
.agreement-required {
    margin-left: 8px; 
}

/* 送信ボタン */
.submit-button {
    width: 100%;
    margin-top: 40px;
    padding: 18px;
    font-size: 1.1em;
}


/* ==========================================================
// G. X. FOOTER
// ========================================================== */

.footer {
    padding: 30px 0;
    background-color: #1a1a1a;
    color: #aaa;
    font-size: 0.9em;
}

.footer nav a {
    color: #aaa;
    margin-left: 15px;
    text-decoration: none;
}


/* ==========================================================
// H. RESPONSIVE DESIGN (Media Queries)
// ========================================================== */

@media (max-width: 768px) {
    /* 共通 */
    .section {
        padding: 50px 0;
    }
    .sp-d-none{
        display: none;
    }
    
    /* Hero */
    .hero-section {
        flex-direction: column; 
        text-align: center;
        padding: 50px 20px; 
        height: auto;
    }
    .hero-left, .hero-right {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    .main-catch {
        font-size: 2em; 
        text-align: center; 
    }
    
    /* Problem Solver */
    .problem-solver-section .container {
        flex-direction: column; 
    }
    .feature-item {
        flex-direction: column; 
        align-items: flex-start;
        padding: 20px 15px;
        width: 90%;
        margin: 0 auto 20px;
    }
    .feature-item h2 {
        width: 100%; 
        margin-bottom: 5px;
        padding-left: 0;
    }
    .feature-item p {
        margin-left: 0;
    }
    
    /* Diversity */
    .activity-styles {
        flex-direction: column;
    }
    .vision-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    /* Flow */
    .flow-title-item {
        font-size: 1.2em;
    }
    .flow-description {
        margin-left: 35px;
    }
    
    /* Form */
    .half-width {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 25px;
    }
    .file-inputs {
        flex-direction: column;
        gap: 20px;
    }
    .sns-platform-group {
        gap: 10px;
    }
}