@charset "UTF-8";

/* ============================================================
   1. フォント・ベース設定
   ============================================================ */
.recruit-page, 
.recruit-page body {
    background-color: #0a090c !important;
    font-family: 'Zen Old Mincho', serif !important;
    color: #e5e0db !important;
    margin: 0;
    line-height: 1.8;
}

/* ============================================================
   2. ヘッダー上書き（公式サイトの白をダークに固定）
   ============================================================ */
.recruit-page .main-header {
    background-color: rgba(10, 9, 12, 0.98) !important;
    border-bottom: 1px solid #b38b8b !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8) !important;
}

.recruit-page .main-nav .nav-links a {
    color: #e5e0db !important;
    font-family: 'Cinzel', serif !important;
    font-size: 0.85rem !important;
}

.recruit-page .main-nav .nav-links a.is-active,
.recruit-page .main-nav .nav-links a:hover {
    color: #c5b38a !important;
}

.recruit-page .menu-toggle span {
    background-color: #c5b38a !important;
}

@media (max-width: 768px) {
    .recruit-page .main-nav {
        background-color: rgba(10, 9, 12, 0.98) !important;
    }
}

/* ============================================================
   3. ヒーローエリア & メインビジュアル
   ============================================================ */
.recruit-hero {
    padding-top: 140px;
    text-align: center;
    background-image: 
        radial-gradient(circle at top, rgba(197, 179, 138, 0.05) 0%, transparent 50%),
        url('https://www.transparenttextures.com/patterns/dark-matter.png');
}

.recruit-page h2.gothic-title,
.recruit-page .detail-group h3,
.recruit-page .step-num,
.recruit-page .model-sub,
.recruit-page .entry-title {
    font-family: 'Cinzel', serif !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    color: #c5b38a !important;
    text-transform: uppercase;
}

.recruit-page h2.gothic-title {
    font-size: 3.5rem !important;
    letter-spacing: 0.25em;
    margin: 0;
}

.recruit-page .section-jp-text {
    font-size: 1rem;
    color: #b38b8b !important;
    letter-spacing: 0.4em;
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

/* 目のアップ画像 */
.main-visual-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.main-visual-img {
    width: 100%;
    height: auto;
    border: 1px solid rgba(179, 139, 139, 0.4);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
}

/* ============================================================
   4. 詳細情報 & 選考フロー
   ============================================================ */
.recruit-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.main-intro {
    font-size: 1.2rem;
    color: #b38b8b;
    font-weight: bold;
    margin-bottom: 80px;
}

.detail-group { margin-bottom: 120px; text-align: left; }

.detail-group h3 {
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(179, 139, 139, 0.2);
    padding-bottom: 12px;
    margin-bottom: 40px;
}

.info-list { list-style: none; padding: 0; }
.info-list li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
}
.info-label { width: 180px; color: #b38b8b; font-weight: bold; flex-shrink: 0; }
.info-value.highlight { color: #c5b38a; font-weight: bold; }

.check-list { list-style: none; padding: 0; }
.check-list li { margin-bottom: 15px; padding-left: 30px; position: relative; }
.check-list li::before { content: "✧"; position: absolute; left: 0; color: #c5b38a; }

/* 選考フロー：5つのステップを1行に並べる */
.flow-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 50px;
}

.step {
    padding: 25px 10px;
    border: 1px solid rgba(179, 139, 139, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 180px; /* 高さを揃える */
}

.step h4 {
    font-size: 0.9rem;
    margin: 10px 0;
    line-height: 1.5;
}

/* カッコ内の補足テキスト用 */
.step-sub-text {
    font-size: 0.75rem;
    color: #b38b8b;
    margin-top: auto;
    line-height: 1.4;
}

/* ============================================================
   5. モデル選択グリッド（ENTRY）
   ============================================================ */
.entry-title { font-size: 3rem !important; letter-spacing: 0.3em; margin: 0; text-align: center;}
.entry-sub { color: #b38b8b; margin-top: 10px; margin-bottom: 60px; font-weight: bold; text-align: center;}

.model-selection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.model-card { text-decoration: none; color: inherit; display: block; }

.card-inner {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 179, 138, 0.2);
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.4s;
    height: 100%;
}

.model-card:not(.is-preparing):hover .card-inner {
    background: rgba(197, 179, 138, 0.1);
    border-color: #000000;
    transform: translateY(-8px);
}

.model-image-container {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.model-silhouette {
    max-height: 100%;
    filter: drop-shadow(0 0 10px rgba(179, 139, 139, 0.4));
}

.is-preparing { opacity: 0.4; cursor: not-allowed; }

/* ============================================================
   6. モデルギャラリー（スライド）
   ============================================================ */
.slider-outer {
    max-width: 800px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    border: 1px solid #b38b8b;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
    background-color: #000;
    box-sizing: border-box;
}

.slider-inner {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.slide-item {
    width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
}

.slide-item img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #c5b38a;
    border: 1px solid #c5b38a;
    padding: 15px 10px;
    cursor: pointer;
    z-index: 10;
}

.slider-prev { left: 0; }
.slider-next { right: 0; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #c5b38a;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active { background: #c5b38a; }

/* ============================================================
   7. フッター
   ============================================================ */
.recruit-page .main-footer {
    background-color: #050505 !important;
    border-top: 1px solid #b38b8b !important;
    padding: 80px 20px !important;
}

.recruit-page .footer-nav a { color: #e5e0db !important; }
.recruit-page .copyright { color: #444 !important; }

/* ============================================================
   8. レスポンシブ
   ============================================================ */
@media (max-width: 1024px) {
    .model-selection-grid { grid-template-columns: repeat(2, 1fr); }
    .flow-steps { grid-template-columns: repeat(3, 1fr); gap: 15px; }
}

@media (max-width: 768px) {
    .recruit-page h2.gothic-title { font-size: 2.5rem !important; }
    .model-selection-grid { grid-template-columns: 1fr; }
    .flow-steps { grid-template-columns: 1fr; }
    .slider-dots { display: flex; }
    .info-list li { flex-direction: column; }
    .info-label { width: 100%; margin-bottom: 10px; }
}

/* --- お問い合わせ（マシュマロ）セクション --- */
.contact-box {
    margin-top: 30px;
}

.contact-text {
    color: #b38b8b;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.marshmallow-btn {
    display: inline-block;
    padding: 15px 50px;
    border: 1px solid #c5b38a;
    color: #c5b38a;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
    background: transparent;
}

.marshmallow-btn:hover {
    background-color: #c5b38a;
    color: #0a090c;
    box-shadow: 0 0 15px rgba(197, 179, 138, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .marshmallow-btn {
        width: 100%;
        box-sizing: border-box;
    }
}


/* 応募資格のシンプルリスト用 */
.requirements-list-simple {
    background: rgba(255, 255, 255, 0.03); /* ほんの少し背景を暗くして区別 */
    padding: 20px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.requirements-list-simple p {
    margin-bottom: 15px; /* 項目ごとの隙間 */
    line-height: 1.6;
    font-size: 0.95rem;
    color: #eee;
    text-indent: -1.5em; /* ①などの番号を少し外に出して揃える設定 */
    padding-left: 1.5em;
}

.requirements-list-simple p:last-child {
    margin-bottom: 0;
}

/* スマホ表示での調整 */
@media (max-width: 768px) {
    .requirements-list-simple {
        padding: 15px;
    }
    .requirements-list-simple p {
        font-size: 0.9rem;
    }
}