@charset "utf-8";

/* ============================================================
   FAQページ (faq.css)
   ============================================================ */

.faq-page {
    padding: 200px 0 120px;
    background-color: #f7f6ee;
    position: relative;
    overflow: hidden;
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #333;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

/* 中央揃えタイトル（共通デザイン） */
.faq-head {
    text-align: center;
    margin-bottom: 80px;
}

.faq-icon {
    width: 60px;
    height: auto;
    margin: 0 auto 15px;
    display: block;
}

.faq-title-jp {
    font-size: 24px;
    font-weight: 900;
}

.faq-title-en {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #aaa;
    letter-spacing: 0.15em;
    margin-top: 8px;
}

.faq-head::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #f1c40f;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* 背景装飾（共通デザイン） */
.deco-v {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.deco-v4 {
    top: 320px;
    left: -15vw;
    width: 65vw;
    max-width: 900px;
    opacity: 0.7;
}

.deco-v6 {
    right: -10vw;
    bottom: -50px;
    width: 40vw;
    max-width: 600px;
    opacity: 0.8;
}

/* FAQリスト */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.faq-q-icon {
    font-size: 24px;
    font-weight: 900;
    color: #f1c40f;
    line-height: 1;
}

.faq-q-text {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.4;
    margin: 0;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.faq-a-icon {
    font-size: 24px;
    font-weight: 900;
    color: #aaa;
    line-height: 1;
}

.faq-a-text {
    font-size: 15px;
    line-height: 2;
    font-weight: 700;
    color: #444;
    margin: 0;
}

/* レスポンシブ */
@media screen and (max-width: 850px) {
    .faq-page { padding: 60px 0; }
    .faq-item { padding: 20px; }
    .faq-q-text { font-size: 16px; }
}