@charset "utf-8";
/* CSS Document */

/* FAQページ専用スタイル */

.faq-page {
    padding: 120px 0 80px; /* ヘッダーの高さ分を考慮 */
}

/* パンくずリスト */
.breadcrumbs ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.breadcrumbs li::after {
    content: '>';
    margin: 0 10px;
    color: #999;
}
.breadcrumbs li:last-child::after {
    content: '';
}
.breadcrumbs a {
    color: #0078d7;
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ページタイトル */
.page-title {
    font-size: 36px;
    text-align: left;
    margin-bottom: 5px;
}
.page-title:after {
    display: none; /* 共通スタイルの下線を消す */
}
.page-subtitle {
    font-size: 18px;
    color: #999;
    text-align: left;
    margin-bottom: 40px;
}

/* カテゴリーナビゲーション */
.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.category-link {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #0078d7;
    color: #0078d7;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.category-link:hover {
    background-color: #0078d7;
    color: #fff;
}

/* 各FAQカテゴリー */
.faq-category {
    margin-bottom: 60px;
}
.category-title {
    font-size: 24px;
    padding-left: 15px;
    border-left: 5px solid #0078d7;
    margin-bottom: 30px;
}

/* お問い合わせ導線 */
.contact-cta {
    margin-top: 80px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: center;
}
.contact-cta h2 {
    font-size: 22px;
    margin-bottom: 15px;
}
.contact-cta p {
    margin-bottom: 30px;
}
.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.tel-icon {
    font-size: 28px;
    color: #0078d7;
    margin-right: 15px;
}
.tel-number {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}
.btn-entry-cta {
    display: inline-block;
    padding: 12px 40px;
    background-color: #0078d7;
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-entry-cta:hover {
    background-color: #005fa3;
}