/* Google Fonts: Zen Maru Gothic */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap');

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

h1 {
    background: transparent !important;
    color: #8e44ad !important;
    font-weight: bold;
    -webkit-background-clip: initial;
    background-clip: initial;
    animation: none;
}

/* 相談支援ページ専用スタイル */
.soudan-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f7fa 0%, #1de9b6 100%); /* ターコイズブルー系グラデーション */
    animation: fadeInBg 1.2s;
}

/* 全体的な中央寄せ設定 */
body {
    text-align: center;
}

/* ヘッダーの中央寄せ */
.site-header {
    text-align: center;
}

.header-inner {
    justify-content: center !important;
    text-align: center;
}

/* メインコンテンツの中央寄せ */
main {
    text-align: center;
}

/* フッターの中央寄せ */
.footer {
    text-align: center;
}

.footer-content {
    justify-content: center;
    text-align: center;
}

.footer-section {
    text-align: center;
}

.footer-bottom {
    text-align: center;
}

/* ナビゲーションメニューの中央寄せ */
.nav-links {
    justify-content: center !important;
    text-align: center;
}

.nav-links li {
    text-align: center;
}

.nav-links a {
    text-align: center;
}

/* サブメニューの中央寄せ */
.submenu {
    text-align: center;
}

.submenu li {
    text-align: center;
}

.submenu a {
    text-align: center;
}

@keyframes fadeInBg {
    from { opacity: 0; }
    to { opacity: 1; }
}

.soudan-bg-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    opacity: 0.7;
    filter: blur(2px) brightness(0.95);
    transition: opacity 0.5s;
}

.consultation-section {
    font-family: 'Zen Maru Gothic', sans-serif;
    position: relative;
    z-index: 1;
    padding: 60px 20px 40px 20px;
    margin-top: 20px;
    background: transparent !important;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s;
    color: #00bfff;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.consultation-section h1 {
    text-align: center;
    color: #00bfff;
    font-size: 2.6rem;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
}

.consultation-section h2 {
    color: #00bfff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.consultation-section h3 {
    text-align: center;
    color: #00bfff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* 営業時間・電話番号セクションの統一スタイル */
.consultation-info-title {
    text-align: center;
    color: #00bfff;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.consultation-info-section {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2fef7 100%);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid #1de9b6;
}

.consultation-info-text {
    color: #1976d2;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.05em;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

.consultation-container {
    display: flex;
    gap: 2.5rem;
    padding: 2.5rem 2rem;
    background: transparent !important;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    align-items: flex-start;
    justify-content: center; /* 水平方向の中央揃え */
    animation: fadeInUp 1.2s 0.2s both;
}

.consultation-image {
    flex: 0 0 45%;
    display: flex;
    align-items: center; /* 垂直方向も中央揃えに */
    justify-content: center;
    padding-top: 2rem;
    text-align: center; /* テキストも中央揃えに */
}

.support-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.13);
    transition: transform 0.3s, box-shadow 0.3s;
}

.support-image:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

/* 相談内容のスタイル */
.consultation-content {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2fef7 100%); /* ターコイズブルー系グラデーション */
    border-radius: 20px;
    padding: 2rem;
    margin: 0;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #1de9b6;
    position: relative;
    overflow: hidden;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.content-image {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    max-width: 40%;
    margin-left: auto;
    margin-right: auto;
}

.top-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
    object-fit: cover;
    border-radius: 10px;
}

.top-image:hover {
    transform: scale(1.03);
}

.section-description {
    color: #4b2306;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 1.3rem;
    background: linear-gradient(90deg, #e0f7fa 60%, #81e9cf 100%); /* ターコイズブルー系グラデーション */
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: left;
}

.staff-title {
    color: #ff69b4;
    font-size: 1.3rem;
    margin: 2rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ff69b4;
    font-weight: bold;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 2px rgba(255,105,180,0.08);
}

.consultation-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.consultation-content ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.08rem;
    color: #492308;
    text-align: left; /* リストアイテム内のテキストは左寄せのまま（読みやすさのため） */
}

/* リスト全体を中央寄せ */
.consultation-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    text-align: center;
    display: inline-block; /* インラインブロックで中央寄せ */
}

.consultation-content ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #e9249e;
    font-size: 1.11rem;
    font-weight: bold;
}

/* 電話番号カードデザイン */
.consultation-tel-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent; /* 背景を透明に */
    border-radius: 14px;
    box-shadow: none; /* 影を削除 */
    padding: 1.2em 1.5em;
    margin: 1em auto 0 auto;
    max-width: 320px;
}

.consultation-tel-link {
    display: flex;
    align-items: center;
    font-size: 1.25em;;
    color: #1976d2;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    padding: 0.2em 0.6em;
    border-radius: 8px;
}

.consultation-tel-link i {
    margin-right: 0.7em;
    font-size: 1.2em;
    color: #f073b1;
}

.consultation-tel-link:hover {
    background: linear-gradient(90deg, #e0f7fa 60%, #1de9b6 100%); /* ターコイズブルー系グラデーション */
    
    color: #0d47a1;
    box-shadow: 0 4px 16px rgba(33,150,243,0.13);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .consultation-container {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 1.5rem;
        justify-content: center; /* フレキシブル対応時も中央揃えに */
        align-items: center; /* 垂直方向も中央揃えに */
    }
    .consultation-image, .consultation-content {
        flex: 0 0 100%;
        padding-left: 0;
    }
    .consultation-image {
        padding-top: 0;
        text-align: center; /* フレキシブル対応時も中央揃えに */
        justify-content: center; /* 水平方向の中央揃えを確実に */
    }
    .support-image {
        max-width: 350px; /* フレキシブル対応時により小さく */
    }
    .content-image {
        max-width: 70%;
    }
    .consultation-info-title {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    .consultation-info-section {
        padding: 0.8rem;
        margin-bottom: 1.2rem;
    }
    .consultation-info-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .consultation-section {
        padding: 30px 5px 20px 5px;
        margin-top: 60px;
    }
    .consultation-section h1 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .consultation-container {
        padding: 1rem 0.5rem;
        gap: 1rem;
        justify-content: center; /* フレキシブル対応時も中央揃えに */
        align-items: center; /* 垂直方向も中央揃えに */
    }
    .consultation-image {
        text-align: center; /* フレキシブル対応時も中央揃えに */
        justify-content: center; /* 水平方向の中央揃えを確実に */
    }
    .support-image {
        max-width: 280px; /* フレキシブル対応時により小さく */
    }
    .content-image {
        margin-bottom: 1rem;
        max-width: 60%;
    }
    .section-description {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
        text-align: left;
    }
    .staff-title {
        font-size: 1.1rem;
        padding-bottom: 0.3rem;
    }
    .consultation-info-title {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.6rem 0;
    }
    .consultation-info-section {
        padding: 0.6rem;
        margin-bottom: 1rem;
    }
    .consultation-info-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .consultation-section {
        padding: 25px 3px 15px 3px;
        margin-top: 50px;
    }
    .consultation-section h1 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    .consultation-container {
        padding: 0.8rem 0.3rem;
        gap: 0.8rem;
        justify-content: center; /* スマホ対応時も中央揃えに */
        align-items: center; /* 垂直方向も中央揃えに */
    }
    .consultation-image {
        text-align: center; /* スマホ対応時も中央揃えに */
        justify-content: center; /* 水平方向の中央揃えを確実に */
    }
    .support-image {
        max-width: 220px; /* スマホ対応時により小さく */
    }
    .content-image {
        margin-bottom: 0.8rem;
        max-width: 50%;
    }
    .section-description {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
        text-align: left;
    }
    .staff-title {
        font-size: 1rem;
        padding-bottom: 0.2rem;
    }
    .consultation-info-title {
        font-size: 1.2rem;
        margin: 1rem 0 0.5rem 0;
    }
    .consultation-info-section {
        padding: 0.5rem;
        margin-bottom: 0.8rem;
    }
    .consultation-info-text {
        font-size: 1rem;
    }
} 

