/* =============================================
   VG オーディション 2026-27 SEASON（v9 - 下部余白大幅増加版）
   vg_lp.css または vg_lp_fixed.css に追加してください
   ============================================= */

#vg_lp_audition_2026 {
    position: relative;
    padding: 60px 0 150px;
    background: linear-gradient(135deg, #e50019 0%, #c10015 100%);
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    #vg_lp_audition_2026 {
        padding: 30px 0 80px;
    }
}

#vg_lp_audition_2026::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    animation: dotAnimation 20s linear infinite;
}

@keyframes dotAnimation {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

#vg_lp_audition_2026 .inner {
    max-width: 1100px;
    width: 91.428571%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* バナー全体（角丸追加） */
.audition_banner {
    background: #fff;
    border-radius: 12px;
    padding: 35px 40px;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .audition_banner {
        padding: 30px 30px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 767px) {
    .audition_banner {
        padding: 20px 15px;
        border-radius: 8px;
    }
}

/* シーズン年 */
.audition_year {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #e50019;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
    .audition_year {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

/* タイトル */
.audition_title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    color: #e50019;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1024px) {
    .audition_title {
        font-size: 40px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 767px) {
    .audition_title {
        font-size: 28px;
        margin-bottom: 18px;
    }
}

/* 応募期間ボックス */
.audition_period_box {
    background: linear-gradient(135deg, #e50019 0%, #c10015 100%);
    border-radius: 12px;
    padding: 22px 30px;
    margin-bottom: 30px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .audition_period_box {
        padding: 18px 15px;
        margin-bottom: 25px;
        border-radius: 10px;
    }
}

.period_label {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
    .period_label {
        font-size: 15px;
        margin-bottom: 8px;
    }
}

/* 日付表示 */
.period_date_simple {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1.6;
}

@media screen and (max-width: 1024px) {
    .period_date_simple {
        font-size: 22px;
    }
}

@media screen and (max-width: 767px) {
    .period_date_simple {
        font-size: 17px;
        line-height: 1.7;
    }
}

/* 選考フロー */
.audition_flow {
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .audition_flow {
        margin-bottom: 25px;
    }
}

.flow_title {
    font-size: 28px;
    font-weight: 900;
    color: #333;
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 15px;
}

@media screen and (max-width: 767px) {
    .flow_title {
        font-size: 22px;
        margin-bottom: 22px;
        padding-bottom: 12px;
    }
}

.flow_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e50019;
    border-radius: 2px;
}

/* タイムライン */
.flow_timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 選考フロー項目 */
.flow_item {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
    .flow_item {
        flex-direction: column;
        padding: 15px 12px;
        gap: 12px;
        border-radius: 8px;
    }
}

.flow_item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.flow_item.highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-color: #ffd5d5;
}

.flow_item.result {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: #d0e9fb;
}

.flow_step {
    background: #e50019;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
    min-width: 90px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .flow_step {
        font-size: 12px;
        padding: 6px 12px;
        min-width: 70px;
    }
}

.flow_item.result .flow_step {
    background: #0284c7;
}

.flow_content {
    flex: 1;
}

.flow_heading {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .flow_heading {
        font-size: 17px;
        margin-bottom: 8px;
    }
}

.flow_date {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

@media screen and (max-width: 767px) {
    .flow_date {
        font-size: 14px;
    }
}

.flow_date strong {
    color: #e50019;
    font-weight: 700;
}

/* オーディション詳細 */
.audition_details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.details_label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.details_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .details_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px 10px;
    }
}

.details_list li {
    font-size: 14px;
    color: #666;
    position: relative;
    padding-left: 18px;
}

@media screen and (max-width: 767px) {
    .details_list li {
        font-size: 13px;
    }
}

.details_list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e50019;
    font-weight: 700;
}

/* 矢印 */
.flow_arrow {
    text-align: center;
    font-size: 24px;
    color: #e50019;
    padding: 6px 0;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .flow_arrow {
        font-size: 20px;
        padding: 5px 0;
    }
}

/* =============================================
   応募資格セクション
   ============================================= */

.audition_requirements_simple {
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .audition_requirements_simple {
        margin-bottom: 25px;
    }
}

.requirements_title {
    font-size: 28px;
    font-weight: 900;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

@media screen and (max-width: 767px) {
    .requirements_title {
        font-size: 22px;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }
}

.requirements_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e50019;
    border-radius: 2px;
}

.requirements_box {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    border-radius: 10px;
    padding: 28px 32px;
    border: 2px solid #e5e5e5;
}

@media screen and (max-width: 767px) {
    .requirements_box {
        padding: 18px 15px;
        border-radius: 8px;
    }
}

.requirements_list_simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements_list_simple li {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .requirements_list_simple li {
        font-size: 14px;
        margin-bottom: 12px;
        padding-left: 22px;
    }
}

.requirements_list_simple li:last-child {
    margin-bottom: 0;
}

.requirements_list_simple li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #e50019;
    font-weight: 700;
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    .requirements_list_simple li::before {
        font-size: 16px;
    }
}

/* メインスタジオ情報（マップアイコン付き） */
.req_detail_inline {
    display: block;
    font-size: 15px;
    color: #555;
    margin-top: 8px;
    padding: 10px 15px;
    background: rgba(229, 0, 25, 0.05);
    border-radius: 6px;
}

@media screen and (max-width: 767px) {
    .req_detail_inline {
        font-size: 13px;
        padding: 8px 12px;
        margin-top: 6px;
    }
}

.req_note_inline {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    line-height: 1.7;
}

@media screen and (max-width: 767px) {
    .req_note_inline {
        font-size: 12px;
        margin-top: 6px;
    }
}

/* =============================================
   VG活動内容セクション
   ============================================= */

.audition_activities_simple {
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .audition_activities_simple {
        margin-bottom: 25px;
    }
}

.activities_title {
    font-size: 28px;
    font-weight: 900;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

@media screen and (max-width: 767px) {
    .activities_title {
        font-size: 22px;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }
}

.activities_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e50019;
    border-radius: 2px;
}

.activities_box {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border-radius: 10px;
    padding: 28px 32px;
    border: 2px solid #ffe5e5;
}

@media screen and (max-width: 767px) {
    .activities_box {
        padding: 18px 15px;
        border-radius: 8px;
    }
}

.activities_list_simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activities_list_simple li {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .activities_list_simple li {
        font-size: 14px;
        margin-bottom: 10px;
        padding-left: 22px;
    }
}

.activities_list_simple li:last-child {
    margin-bottom: 0;
}

.activities_list_simple li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0;
    color: #e50019;
    font-size: 12px;
}

@media screen and (max-width: 767px) {
    .activities_list_simple li::before {
        font-size: 10px;
    }
}

/* =============================================
   活動期間セクション
   ============================================= */

.audition_period_detail {
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
    border-radius: 12px;
    padding: 25px 30px;
    border: 2px solid #e0f2fe;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .audition_period_detail {
        margin-bottom: 25px;
        padding: 18px 15px;
        border-radius: 10px;
    }
}

.period_detail_title {
    font-size: 24px;
    font-weight: 900;
    color: #333;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 12px;
}

@media screen and (max-width: 767px) {
    .period_detail_title {
        font-size: 20px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
}

.period_detail_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0284c7;
    border-radius: 2px;
}

.period_detail_content {
    background: #fff;
    border-radius: 8px;
    padding: 20px 25px;
}

@media screen and (max-width: 767px) {
    .period_detail_content {
        padding: 15px 12px;
        border-radius: 6px;
    }
}

.period_main {
    font-size: 26px;
    font-weight: 900;
    color: #0284c7;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .period_main {
        font-size: 20px;
        margin-bottom: 8px;
    }
}

.period_note {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
    .period_note {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

/* 稼働費テキスト */
.period_payment_simple {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    padding: 10px 15px;
    background: rgba(2, 132, 199, 0.08);
    border-radius: 6px;
}

@media screen and (max-width: 767px) {
    .period_payment_simple {
        font-size: 14px;
        padding: 8px 10px;
    }
}

/* =============================================
   CTA（応募ボタン）
   ============================================= */

.audition_cta {
    text-align: center;
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .audition_cta {
        margin-bottom: 22px;
    }
}

.audition_btn_simple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e50019 0%, #c10015 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    padding: 20px 42px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(229, 0, 25, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .audition_btn_simple {
        font-size: 20px;
        padding: 18px 38px;
    }
}

@media screen and (max-width: 767px) {
    .audition_btn_simple {
        font-size: 16px;
        padding: 15px 25px;
        width: 100%;
        max-width: 320px;
    }
}

.audition_btn_simple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.audition_btn_simple:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(229, 0, 25, 0.4);
}

.audition_btn_simple:hover::before {
    width: 500px;
    height: 500px;
}

.btn_text_simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.btn_main {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}

@media screen and (max-width: 1024px) {
    .btn_main {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .btn_main {
        font-size: 16px;
    }
}

.btn_sub {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
    .btn_sub {
        font-size: 10px;
    }
}

.audition_note {
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}

@media screen and (max-width: 767px) {
    .audition_note {
        font-size: 12px;
        margin-top: 8px;
    }
}

/* お問い合わせ（最終セクション） */
.audition_contact {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 20px 25px;
    text-align: center;
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .audition_contact {
        padding: 15px 12px;
        border-radius: 8px;
    }
}

.contact_label {
    font-size: 14px;
    font-weight: 700;
    color: #999;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
    .contact_label {
        font-size: 13px;
        margin-bottom: 8px;
    }
}

.contact_company {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.6;
}

@media screen and (max-width: 767px) {
    .contact_company {
        font-size: 14px;
        margin-bottom: 6px;
    }
}

.contact_tel {
    font-size: 20px;
    font-weight: 700;
    color: #e50019;
}

@media screen and (max-width: 767px) {
    .contact_tel {
        font-size: 18px;
    }
}

.contact_tel a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact_tel a:hover {
    opacity: 0.7;
}
