@charset "utf-8";

/* ==========================================================================
   Q&Aページ専用スタイル (qa.css)
   ========================================================================== */

/* ▼▼▼ 見出しのデザイン（他ページと統一） ▼▼▼ */
.f_page {
    font-size: 22px;
    font-weight: bold;
    color: #888;
    border-bottom: 3px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    text-align: center;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* Q&A用スタイル定義 */
.monde-qa-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 60px 0;
    color: #333;
    line-height: 1.6;
}

.monde-qa-category {
    margin-bottom: 40px;
}

.monde-qa-category h3 {
    font-size: 18px;
    border-left: 5px solid #006400; /* ブランドカラーの緑 */
    padding-left: 15px;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

/* アコーディオン（開閉）スタイル */
.monde-details {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.monde-details[open] {
    border-color: #999;
}

.monde-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px; /* タップしやすいサイズ */
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    list-style: none;
}

.monde-summary::-webkit-details-marker {
    display: none;
}

.monde-q-icon {
    color: #cc0000;
    margin-right: 10px;
    font-weight: bold;
}

.monde-toggle-icon {
    font-size: 14px;
    color: #888;
    transition: transform 0.3s;
}

.monde-details[open] .monde-toggle-icon {
    transform: rotate(45deg);
}

.monde-answer {
    padding: 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #444;
    line-height: 1.8;
}

.monde-answer a {
    color: #006400;
    text-decoration: underline;
    font-weight: bold;
}
.monde-answer a:hover {
    color: #cc0000;
    text-decoration: none;
}

/* Q&A下部の誘導リンクスタイル */
.monde-qa-bottom-link {
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
    line-height: 1.8;
    padding: 0 10px;
}
.monde-qa-bottom-link a {
    color: #006400;
    text-decoration: underline;
    font-weight: bold;
}
.monde-qa-bottom-link a:hover {
    color: #cc0000;
    text-decoration: none;
}

/* お問い合わせ誘導エリア（CTA）共通デザイン */
.common-cta-area {
    background-color: #f5f5f5;
    padding: 50px 0;
    text-align: center;
    border-top: 5px solid #006400;
    width: 100%;
    margin-top: 40px;
}
.common-cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.common-cta-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}
.common-cta-text {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
}
.common-cta-btn {
    display: inline-block;
    background-color: #cc0000;
    color: #fff !important;
    padding: 20px 60px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.common-cta-btn:hover {
    background-color: #aa0000;
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 1;
}
.common-cta-note {
    font-size: 13px;
    margin-top: 15px;
    color: #666;
}

/* 電話番号ポップアップ・ヘッダー用 CSS */
.breadcrumb-tel-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-top: 5px;
    border-bottom: none;
    padding-bottom: 10px;
}
#pankuzu { margin: 0 !important; padding: 0; }
.head-tel-btn a {
    display: inline-flex; align-items: center;
    background-color: #8fc31f; color: #fff !important;
    text-decoration: none; padding: 5px 22px 5px 18px; border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); line-height: 1.2;
}
.head-tel-btn a:hover {
    background-color: #7aad13; transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}
@keyframes phone-ring {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-15deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}
.head-tel-btn a:hover .tel-icon-svg { animation: phone-ring 0.4s ease-in-out; }
.tel-text-box { display: flex; flex-direction: column; align-items: flex-start; margin-left: 10px; }
.tel-label { font-size: 10px; font-weight: normal; opacity: 0.95; letter-spacing: 0.05em; text-shadow: 0 1px 1px rgba(0,0,0,0.1); }
.tel-number { font-size: 17px; font-weight: bold; letter-spacing: 0.05em; font-family: "Helvetica Neue", Arial, sans-serif; text-shadow: 0 1px 1px rgba(0,0,0,0.1); }
.tel-icon-svg { width: 22px; height: 22px; transition: all 0.3s; }
.head-tel-btn .tel-icon-svg { fill: #fff; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1)); }

.tel-popup-trigger { margin-bottom: 30px; }
.tel-popup-trigger a {
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: bold; color: #333;
    text-decoration: none; cursor: pointer; transition: all 0.3s;
}
.tel-popup-trigger .tel-icon-svg { fill: #8fc31f; width: 28px; height: 28px; margin-right: 12px; }
.tel-popup-trigger a:hover { opacity: 0.7; transform: scale(1.05); }
.tel-popup-trigger a:hover .tel-icon-svg { animation: phone-ring 0.4s ease-in-out; }

.zoom-anim-dialog {
    background: white; padding: 30px; text-align: center;
    max-width: 300px; margin: 40px auto; position: relative;
    border-radius: 8px; box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.zoom-anim-dialog h3 { font-size: 18px; font-weight: bold; margin-bottom: 10px; color: #006400; }
.zoom-anim-dialog img { margin: 15px 0; border: 1px solid #ccc; }
.sp-call-btn { display: none; }

@media (max-width: 768px) {
    .f_page { font-size: 20px; margin-bottom: 30px; }
    .common-cta-btn { padding: 15px 30px; width: 90%; box-sizing: border-box; }
    .common-cta-text { font-size: 15px; }
    .breadcrumb-tel-wrap { padding: 0 5px 10px; }
    .head-tel-btn { margin-top: 10px; margin-left: auto; }
    .tel-popup-trigger a { font-size: 22px; }
    .tel-popup-trigger .tel-icon-svg { width: 22px; height: 22px; }
    .sp-call-btn {
        display: block; margin-top: 20px; background: #cc0000;
        color: white !important; padding: 12px; border-radius: 5px;
        text-decoration: none; font-weight: bold; font-size: 16px;
    }
}