/* =========================================
   single.css — 固定ページ・シングル共通スタイル
   .about_section / .steps / .faq_* / .page_hero / シングル共通
   アーカイブのスタイルはここに書かない
========================================= */

/* =========================================
   About ページ
========================================= */
.about_section { padding: 70px 0; }
.about_section:nth-child(even) { background: var(--es-gray-bg); }

/* Steps */
.steps { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.step {
    text-align: center; flex: 1; min-width: 140px; max-width: 200px;
    padding: 0 10px; position: relative;
}
.step::after {
    content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; right: -10px; top: 50%; transform: translateY(-60%);
    color: var(--es-green-light); font-size: 1.2rem;
}
.step:last-child::after { display: none; }
.step_num {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--es-green); color: #fff;
    font-size: 1.4rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px; font-family: var(--es-font-en);
}
.step_label { font-family: var(--es-font-title); font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
.step_desc { font-size: 0.82rem; color: #666; line-height: 1.6; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature_card {
    background: #fff; border-radius: 15px; padding: 30px 25px;
    text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid #eee;
}
.feature_icon { font-size: 2.5rem; color: var(--es-green); margin-bottom: 15px; }
.feature_title { font-family: var(--es-font-title); font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; }
.feature_desc { font-size: 0.88rem; color: #666; line-height: 1.7; }

/* FAQ */
#faq { scroll-margin-top: 100px; }
.faq_list { max-width: 800px; margin: 0 auto; }
.faq_item { border: 1px solid #e8e8e8; border-radius: 10px; margin-bottom: 15px; overflow: hidden; }
.faq_q {
    display: flex; align-items: flex-start; gap: 15px;
    padding: 20px 25px; cursor: pointer;
    background: #fff; transition: background 0.2s;
}
.faq_q:hover { background: #f6fdf8; }
.faq_q_icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--es-green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem; flex-shrink: 0; margin-top: 1px;
}
.faq_q_text { font-weight: 700; line-height: 1.6; flex-grow: 1; }
.faq_q_arrow { color: var(--es-green); transition: transform 0.3s; margin-top: 3px; flex-shrink: 0; }
.faq_item.open .faq_q_arrow { transform: rotate(180deg); }
.faq_a { display: none; padding: 0 25px 20px 68px; font-size: 0.92rem; color: #555; line-height: 1.8; }
.faq_item.open .faq_a { display: block; }

/* Company Table */
.company_table { max-width: 700px; margin: 0 auto; width: 100%; border-collapse: collapse; }
.company_table th,
.company_table td { padding: 16px 20px; border-bottom: 1px solid #eee; text-align: left; vertical-align: top; }
.company_table th { width: 160px; font-family: var(--es-font-title); font-weight: 700; color: var(--es-green); font-size: 0.9rem; white-space: nowrap; }
.company_table td { font-size: 0.95rem; color: #444; }

/* About CTA */
.about_cta { padding: 70px 0; background: linear-gradient(135deg, #e0f2e9 0%, #d4ebe2 100%); text-align: center; }
.about_cta p { font-size: 1.1rem; margin-bottom: 30px; }

/* =========================================
   Contact ページ
========================================= */
#contact_main { padding: 80px 0 100px; }
.contact_intro { text-align: center; max-width: 620px; margin: 0 auto 60px; font-size: 1rem; color: #555; line-height: 1.9; }
.contact_methods { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 820px; margin: 0 auto 70px; }
.contact_method_card { border-radius: 20px; padding: 40px 30px; text-align: center; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.contact_method_card.line_card { background: linear-gradient(135deg, #e8f8ef 0%, #d0f0e0 100%); border: 2px solid #b2dfcc; }
.contact_method_card.form_card { background: linear-gradient(135deg, #f0f8ff 0%, #e0f0fa 100%); border: 2px solid #b8d8ef; }
.method_icon { font-size: 3rem; margin-bottom: 16px; }
.line_card .method_icon { color: #06c755; }
.form_card .method_icon { color: var(--es-blue); }
.method_title { font-family: var(--es-font-title); font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.method_desc { font-size: 0.88rem; color: #666; line-height: 1.75; margin-bottom: 24px; }
.method_badge { display: inline-block; background: var(--es-green); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 16px; }
.btn_contact {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 50px;
    font-family: var(--es-font-title); font-size: 1rem; font-weight: 700; color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18); transition: all 0.3s;
    width: 100%; justify-content: center;
}
.btn_contact:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
.btn_contact_line { background: #06c755; }
.btn_contact_form { background: linear-gradient(135deg, var(--es-blue) 0%, #005b97 100%); }
.contact_note_box { max-width: 820px; margin: 0 auto; background: var(--es-gray-bg); border-radius: 15px; padding: 35px 40px; }
.contact_note_box h3 { font-family: var(--es-font-title); font-size: 1.05rem; font-weight: 700; color: var(--es-green); margin-bottom: 18px; }
.contact_note_box ul { list-style: none; }
.contact_note_box li { display: flex; gap: 10px; font-size: 0.9rem; color: #555; line-height: 1.7; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #eee; }
.contact_note_box li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact_note_box li i { color: var(--es-green); flex-shrink: 0; margin-top: 4px; }
.note_faq_link { display: inline-block; margin-top: 20px; color: var(--es-green); font-size: 0.9rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.note_faq_link:hover { color: var(--es-green-light); }

/* =========================================
   シングルページ共通
========================================= */
.single_event_wrap,
.single_supporter_wrap { max-width: 860px; margin: 0 auto; padding: 60px 0; }

.single_thumb { position: relative; border-radius: 15px; overflow: hidden; margin-bottom: 24px; }
.single_thumb_img { width: 100%; height: auto; display: block; }
.single_thumb .status_badge { top: 16px; right: 16px; font-size: 0.85rem; padding: 6px 14px; }
.status_badge.few { background: var(--es-orange); }

/* タイトル */
.single_event_title {
    font-family: var(--es-font-title);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 12px 0 24px;
    color: var(--es-text);
}

/* =========================================
   イベントメタ情報カード
========================================= */
.event_meta_card {
    background: #fafafa;
    border-radius: 12px;
    padding: 24px 16px;
    margin-bottom: 36px;
}

.event_meta_row {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    gap: 16px;
}

/* アイコン */
.event_meta_icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--es-green);
    flex-shrink: 0;
}

/* ラベル */
.event_meta_label {
    width: 90px;
    flex-shrink: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--es-green);
    font-family: var(--es-font-title);
    letter-spacing: 0.05em;
}

/* 値 */
.event_meta_value {
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
    flex: 1;
}

/* 料金バッジ */
.event_meta_fee { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.fee_item { display: flex; align-items: center; gap: 8px; }
.fee_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
}
.fee_badge--male   { background: #29b6f6; }
.fee_badge--female { background: #ec407a; }
.fee_price {
    font-weight: 700;
    font-size: 1.05rem;
    color: #444;
}

/* =========================================
   イベント CTA
========================================= */
.single_event_cta { margin-top: 36px; text-align: center; }
.single_event_cta_note { margin-top: 12px; font-size: 0.82rem; color: #999; }

/* =========================================
   本文エリア
========================================= */
.single_content { line-height: 1.9; color: #444; margin-top: 40px; padding-top: 40px; border-top: 1px solid #eee; }
.single_content h2 {
    font-family: var(--es-font-title);
    font-size: 1.15rem; font-weight: 700;
    color: var(--es-green);
    border-left: 4px solid var(--es-green);
    padding-left: 12px;
    margin: 28px 0 14px;
}
.single_content h3 { font-size: 1rem; font-weight: 700; margin: 20px 0 10px; }
.single_content p { margin-bottom: 14px; }
.single_content ul,
.single_content ol { padding-left: 1.4em; margin-bottom: 14px; }
.single_content ul { list-style: disc; }
.single_content ol { list-style: decimal; }
.single_content li { margin-bottom: 6px; }

.single_back_btn { text-align: center; margin-top: 60px; padding-bottom: 80px; }

/* お知らせシングル */
#single-news .es-inner { max-width: 860px; padding-top: 60px; padding-bottom: 80px; }
.single_news_header { display: flex; align-items: center; gap: 12px; margin-bottom: 30px; }

/* =========================================
   SP（768px以下）
========================================= */
@media screen and (max-width: 768px) {
    .steps { gap: 20px; }
    .step { max-width: 100%; flex: 0 0 calc(50% - 10px); }
    .step::after { display: none; }
    .features { grid-template-columns: 1fr; gap: 20px; }
    .company_table th { width: 110px; }
    .faq_a { padding-left: 25px; }

    #contact_main { padding: 50px 0 70px; }
    .contact_methods { grid-template-columns: 1fr; gap: 20px; }
    .contact_method_card { padding: 30px 20px; }
    .contact_note_box { padding: 25px 20px; }

    /* イベントシングル SP */
    .single_event_title { font-size: 1.3rem; }
    .event_meta_card { padding: 16px 10px; }
    .event_meta_row { gap: 10px; padding: 10px; align-items: flex-start; }
    .event_meta_icon { margin-top: 2px; }
    .event_meta_label { width: 70px; font-size: 0.85rem; }
    .event_meta_value { font-size: 0.9rem; }
    .event_meta_fee { flex-direction: column; gap: 8px; align-items: flex-start; }
    .fee_badge { font-size: 0.75rem; padding: 4px 10px; }
    .single_event_cta .btn_huge { font-size: 1rem; padding: 18px 24px; width: 100%; }
}
