/* ======================================
   ライフコンパス カスタムスタイル
   洗練されたモダンデザイン
====================================== */

/* 基本設定 */
:root {
    /* メインカラー：深いネイビー */
    --lc-primary: #1a2e4a;
    --lc-primary-light: #2c4a6e;
    --lc-primary-dark: #0f1c2d;
    
    /* アクセントカラー：上品なコーラル */
    --lc-accent: #faf8f5;
    --lc-accent-color: #d9654e;
    --lc-accent-color-light: #e8856c;
    --lc-accent-color-dark: #c04a32;
    
    /* セカンダリ：落ち着いたティールグリーン */
    --lc-secondary: #2a7d6e;
    --lc-secondary-light: #3d9b89;
    --lc-secondary-dark: #1f5d52;
    
    /* ターシャリ：ダークブラウン */
    --lc-tertiary: #6b5344;
    --lc-tertiary-light: #8b7355;
    
    /* ウォーム：ダークゴールド */
    --lc-warm: #b8920f;
    --lc-warm-light: #d4ac1a;
    
    /* テキスト - コントラスト強化 */
    --lc-text: #1a1a1a;
    --lc-text-dark: #0d0d0d;
    --lc-text-muted: #4a4a4a;
    --lc-text-light: #666666;
    --lc-bg-light: #faf9f7;
    --lc-bg-cream: #f5f3ef;
    
    /* グラデーション用 */
    --lc-gradient-1: linear-gradient(135deg, #1a2e4a 0%, #2a7d6e 100%);
    --lc-gradient-2: linear-gradient(135deg, #d9654e 0%, #b8920f 100%);
    --lc-gradient-3: linear-gradient(135deg, #2a7d6e 0%, #1a2e4a 100%);
}

/* フォント設定 */
body {
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    color: var(--lc-text);
    line-height: 1.9;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 見出しフォント */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Noto Sans JP", "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    color: var(--lc-text-dark);
    letter-spacing: 0.02em;
}

/* 本文の読みやすさ向上 */
p {
    color: var(--lc-text);
    line-height: 2;
    letter-spacing: 0.03em;
}

.text-muted {
    color: var(--lc-text-muted) !important;
}

.small, small {
    color: var(--lc-text-light);
}

/* ナビゲーション */
.navbar-brand {
    color: var(--lc-primary) !important;
    font-weight: 700;
}

.nav-link {
    color: var(--lc-text) !important;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--lc-primary) !important;
}

/* ======================================
   SPメニューボタン
====================================== */
.sp-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 8px 0;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.sp-menu-btn-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--lc-primary);
    transition: color 0.3s;
}

.sp-menu-btn-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sp-menu-btn-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--lc-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.sp-menu-btn-icon span:first-child {
    transform-origin: left center;
}

.sp-menu-btn-icon span:last-child {
    transform-origin: left center;
}

/* メニューオープン時 */
.sp-menu-open .sp-menu-btn-text {
    color: #fff;
}

.sp-menu-open .sp-menu-btn-icon span {
    background: #fff;
}

.sp-menu-open .sp-menu-btn-icon span:first-child {
    transform: rotate(45deg) translateY(-1px);
}

.sp-menu-open .sp-menu-btn-icon span:last-child {
    transform: rotate(-45deg) translateY(1px);
}

/* ======================================
   SPフルスクリーンメニュー
====================================== */
.sp-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--lc-primary);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.sp-menu-open .sp-menu {
    transform: translateX(0);
}

.sp-menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 100px 40px 60px;
}

.sp-menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sp-menu-logo-text {
    color: #fff;
    font-size: 1.25rem;
    font-weight: bold;
}

.sp-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sp-menu-nav li {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease;
}

.sp-menu-open .sp-menu-nav li {
    opacity: 1;
    transform: translateX(0);
}

.sp-menu-open .sp-menu-nav li:nth-child(1) { transition-delay: 0.1s; }
.sp-menu-open .sp-menu-nav li:nth-child(2) { transition-delay: 0.15s; }
.sp-menu-open .sp-menu-nav li:nth-child(3) { transition-delay: 0.2s; }
.sp-menu-open .sp-menu-nav li:nth-child(4) { transition-delay: 0.25s; }
.sp-menu-open .sp-menu-nav li:nth-child(5) { transition-delay: 0.3s; }
.sp-menu-open .sp-menu-nav li:nth-child(6) { transition-delay: 0.35s; }
.sp-menu-open .sp-menu-nav li:nth-child(7) { transition-delay: 0.4s; }

.sp-menu-nav a {
    display: block;
    padding: 16px 0;
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: padding-left 0.3s;
}

.sp-menu-nav a:hover {
    padding-left: 10px;
    color: #fff;
}

.sp-menu-footer {
    margin-top: auto;
    padding-top: 40px;
    opacity: 0;
    transition: opacity 0.4s ease 0.5s;
}

.sp-menu-open .sp-menu-footer {
    opacity: 1;
}

/* スクロール無効化 */
body.sp-menu-open {
    overflow: hidden;
}

/* ヒーローセクション */
.hero-section {
    background: linear-gradient(160deg, #faf9f7 0%, #f5f3ef 50%, #fff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(90, 143, 123, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(232, 133, 108, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section h1 {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--lc-text-dark);
    line-height: 1.6;
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 2.4rem;
    }
}

/* ヒーロー特徴アイコン */
.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    border-radius: 16px;
    padding: 0.75rem 1.25rem 0.75rem 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hero-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 1.5rem;
    color: #fff;
}

.hero-feature-teal { background: linear-gradient(135deg, #2a7d6e, #3d9b89); }
.hero-feature-coral { background: linear-gradient(135deg, #d9654e, #e88660); }
.hero-feature-gold { background: linear-gradient(135deg, #b8920f, #d4ac1a); }

.hero-feature-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lc-text-dark);
}

@media (max-width: 767px) {
    .hero-features {
        gap: 0.75rem;
    }
    
    .hero-feature-item {
        padding: 0.6rem 1rem 0.6rem 0.6rem;
    }
    
    .hero-feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        border-radius: 12px;
    }
    
    .hero-feature-text {
        font-size: 0.9rem;
    }
}

/* セクション */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lc-text-dark);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--lc-secondary);
    position: relative;
    letter-spacing: 0.03em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--lc-accent-color);
}

/* カード */
.card {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1rem;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.12);
    transform: translateY(-4px);
}

/* 安心ポイント */
.trust-point {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #e8e4df;
    transition: all 0.3s ease;
}

.trust-point:hover {
    border-color: var(--lc-secondary);
    box-shadow: 0 8px 30px rgba(30, 58, 95, 0.08);
}

.trust-point i {
    font-size: 2.5rem;
    color: var(--lc-secondary);
    margin-bottom: 0.75rem;
}

/* ボタン */
.btn-primary {
    background: var(--lc-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 46, 74, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 46, 74, 0.35);
    background: var(--lc-primary-light);
}

.btn-outline-primary {
    color: var(--lc-primary);
    border: 2px solid var(--lc-primary);
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--lc-primary);
    border-color: var(--lc-primary);
    transform: translateY(-2px);
}

/* アクセントボタン */
.btn-accent {
    background: var(--lc-accent-color);
    border: none;
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 101, 78, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 101, 78, 0.4);
    background: var(--lc-accent-color-dark);
    color: #fff;
}

/* キーポイントバッジ */
.key-point-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: var(--lc-text-dark);
    padding: 0.6rem 1.25rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0.25rem;
    border: 1px solid #e8e4df;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.key-point-badge:hover {
    border-color: var(--lc-secondary);
    box-shadow: 0 4px 12px rgba(90, 143, 123, 0.12);
}

.key-point-badge i {
    margin-right: 0.4rem;
    color: var(--lc-secondary);
}

/* ターゲットユーザーセクション */
.target-users {
    background: var(--lc-primary);
    color: #fff;
    padding: 1.25rem 0;
    position: relative;
}

.target-users::before {
    display: none;
}

.target-users-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
}

.target-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.target-tag:hover {
    background: rgba(255, 255, 255, 0.25);
}

.target-tag i {
    color: var(--lc-warm-light);
}

/* アクセントハイライト */
.accent-highlight {
    color: var(--lc-accent-color);
    font-weight: 600;
}

.accent-bg {
    background-color: var(--lc-accent-color);
    color: #fff;
}

/* CTA セクション */
.cta-section {
    background-color: var(--lc-accent);
    border-radius: 0.5rem;
    padding: 2rem;
}

.cta-section .cta-note {
    font-size: 0.875rem;
    color: var(--lc-text-muted);
}

/* フロー */
.flow-step {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.flow-step::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--lc-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* FAQ */
.accordion-button:not(.collapsed) {
    background: var(--lc-bg-cream);
    color: var(--lc-primary);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(30, 58, 95, 0.15);
}

/* ニュース・コラム一覧 */
.article-list .article-item {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.article-list .article-item:last-child {
    border-bottom: none;
}

.article-date {
    font-size: 0.875rem;
    color: var(--lc-text-muted);
}

/* フォーム */
.form-control:focus {
    border-color: var(--lc-secondary);
    box-shadow: 0 0 0 0.25rem rgba(90, 143, 123, 0.15);
}

.form-control {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #d5d1cc;
    transition: all 0.3s ease;
}

.form-control:hover {
    border-color: var(--lc-secondary-light);
}

/* フッター */
footer {
    background: var(--lc-bg-cream);
    border-top: 1px solid #e8e4df;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--lc-secondary) !important;
}

/* ユーティリティ */
.text-primary {
    color: var(--lc-primary) !important;
}

.text-gradient {
    background: var(--lc-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-accent {
    background: var(--lc-bg-cream);
}

.bg-gradient-primary {
    background: var(--lc-gradient-1);
}

.bg-gradient-accent {
    background: var(--lc-gradient-2);
}

/* ======================================
   斜めカットセクション
====================================== */
.section-skew {
    position: relative;
    padding: 5rem 0;
    margin: 3rem 0;
}

.section-skew::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--lc-bg-cream);
    transform: skewY(-3deg);
    z-index: -1;
}

.section-skew-reverse::before {
    transform: skewY(3deg);
}

.section-skew-primary::before {
    background: var(--lc-primary);
}

.section-skew-primary {
    color: #fff;
}

/* 斜めカット画像 */
.img-skew {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.img-skew-reverse {
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

/* ======================================
   写真ギャラリー・グリッド
====================================== */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.photo-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.photo-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .photo-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    aspect-ratio: 4/3;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.08);
}

.photo-item-tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.photo-item-wide {
    grid-column: span 2;
}

/* 写真キャプション */
.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 0.9rem;
}

/* ======================================
   おしゃれな枠・カード
====================================== */
.frame-diagonal {
    position: relative;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
}

.frame-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--lc-gradient-1);
    transform: skewX(-45deg);
    transform-origin: top left;
}

.frame-accent-corner {
    position: relative;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #e8e4df;
}

.frame-accent-corner::before,
.frame-accent-corner::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--lc-accent-color);
}

.frame-accent-corner::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
    border-radius: 1rem 0 0 0;
}

.frame-accent-corner::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 1rem 0;
}

/* サイドライン付きテキスト */
.text-side-line {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.text-side-line::before {
    content: '';
    width: 4px;
    height: 1.5em;
    background: var(--lc-gradient-1);
    border-radius: 2px;
}

/* ======================================
   写真と文章の交互レイアウト
====================================== */
.content-with-photo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.content-with-photo.reverse {
    direction: rtl;
}

.content-with-photo.reverse > * {
    direction: ltr;
}

.content-photo {
    position: relative;
}

.content-photo img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.content-photo::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--lc-accent-color);
    border-radius: 1rem;
    z-index: -1;
}

.content-with-photo.reverse .content-photo::before {
    left: -20px;
    right: 20px;
}

@media (max-width: 768px) {
    .content-with-photo {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-with-photo.reverse {
        direction: ltr;
    }
    
    .content-photo::before {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }
}

/* ======================================
   装飾的な区切り線
====================================== */
.divider-diagonal {
    height: 80px;
    background: linear-gradient(to right bottom, var(--lc-bg-light) 49%, var(--lc-bg-cream) 50%);
}

.divider-wave {
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23faf9f7'/%3E%3C/svg%3E");
    background-size: cover;
}

/* アニメーション（控えめに調整） */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* ======================================
   テキスト読みやすさ強化
====================================== */

/* カード内のテキスト */
.card-title {
    font-weight: 700;
    color: var(--lc-text-dark);
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.card-text {
    color: var(--lc-text);
    line-height: 1.9;
}

/* リストのテキスト */
ul li, ol li {
    color: var(--lc-text);
    line-height: 1.9;
}

.list-unstyled li {
    padding: 0.25rem 0;
}

/* テーブル */
.table {
    color: var(--lc-text);
}

.table th {
    font-weight: 600;
    color: var(--lc-text-dark);
}

/* アラート */
.alert {
    font-weight: 500;
    color: var(--lc-text-dark);
}

/* ページヘッダーのテキスト */
.bg-accent h1 {
    font-weight: 700;
    letter-spacing: 0.03em;
}

.bg-accent .text-muted {
    color: var(--lc-text-muted) !important;
    font-weight: 500;
}

/* trust-point内のテキスト */
.trust-point h5 {
    font-weight: 700;
    color: var(--lc-text-dark);
}

.trust-point p {
    color: var(--lc-text-muted);
    font-weight: 500;
}

/* content-with-photo内 */
.content-text h2, 
.content-text .h4 {
    color: var(--lc-text-dark);
    font-weight: 700;
}

.content-text p {
    color: var(--lc-text);
}

/* フロー */
.flow-step h5 {
    font-weight: 700;
    color: var(--lc-text-dark);
}

/* CTA */
.cta-section h3 {
    font-weight: 700;
    color: var(--lc-text-dark);
}

.cta-section p {
    color: var(--lc-text-muted);
    font-weight: 500;
}

/* FAQ accordion */
.accordion-button {
    font-weight: 600;
    color: var(--lc-text-dark);
}

.accordion-body {
    color: var(--lc-text);
    line-height: 1.9;
}

/* フッター */
footer {
    color: var(--lc-text);
}

footer h5, footer h6 {
    font-weight: 700;
    color: var(--lc-text-dark);
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .section-skew {
        padding: 3rem 0;
        margin: 2rem 0;
    }
    
    .section-skew::before {
        transform: skewY(-2deg);
    }
    
    .floating-cta {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-cta-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ======================================
   追尾するお問い合わせボタン
====================================== */
.floating-cta {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--lc-accent-color) 0%, #e88660 100%);
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(217, 101, 78, 0.4);
    transition: all 0.3s ease;
    animation: pulse-float 2s ease-in-out infinite;
}

.floating-cta-btn:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(217, 101, 78, 0.5);
}

.floating-cta-btn i {
    font-size: 1.2rem;
}

.floating-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--lc-secondary) 0%, var(--lc-secondary-light) 100%);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(42, 125, 110, 0.4);
    transition: all 0.3s ease;
}

.floating-cta-phone:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(42, 125, 110, 0.5);
}

@keyframes pulse-float {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(-5px);
    }
}

/* ======================================
   カラフルアイコン・装飾
====================================== */

/* アイコンにカラフルなグラデーション背景 */
.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.icon-circle-coral {
    background: linear-gradient(135deg, #d9654e 0%, #e88660 100%);
}

.icon-circle-teal {
    background: linear-gradient(135deg, #2a7d6e 0%, #3d9b89 100%);
}

.icon-circle-navy {
    background: linear-gradient(135deg, #1a2e4a 0%, #2c4a6e 100%);
}

.icon-circle-gold {
    background: linear-gradient(135deg, #b8920f 0%, #d4ac1a 100%);
}

.icon-circle-purple {
    background: linear-gradient(135deg, #6b5093 0%, #8e72b8 100%);
}

.icon-circle-pink {
    background: linear-gradient(135deg, #d96b8c 0%, #e892a8 100%);
}

/* カードのカラフルなトップボーダー */
.card-colorful {
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card-colorful::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.card-colorful:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card-colorful.border-coral::before {
    background: linear-gradient(90deg, #d9654e, #e88660);
}

.card-colorful.border-teal::before {
    background: linear-gradient(90deg, #2a7d6e, #3d9b89);
}

.card-colorful.border-navy::before {
    background: linear-gradient(90deg, #1a2e4a, #2c4a6e);
}

.card-colorful.border-gold::before {
    background: linear-gradient(90deg, #b8920f, #d4ac1a);
}

.card-colorful.border-purple::before {
    background: linear-gradient(90deg, #6b5093, #8e72b8);
}

.card-colorful.border-pink::before {
    background: linear-gradient(90deg, #d96b8c, #e892a8);
}

/* テキストのカラフルグラデーション */
.text-gradient-coral {
    background: linear-gradient(135deg, #d9654e, #e88660);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-teal {
    background: linear-gradient(135deg, #2a7d6e, #3d9b89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* カラフルな番号バッジ */
.number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.number-badge-1 { background: linear-gradient(135deg, #d9654e, #e88660); }
.number-badge-2 { background: linear-gradient(135deg, #2a7d6e, #3d9b89); }
.number-badge-3 { background: linear-gradient(135deg, #b8920f, #d4ac1a); }
.number-badge-4 { background: linear-gradient(135deg, #1a2e4a, #2c4a6e); }
.number-badge-5 { background: linear-gradient(135deg, #6b5093, #8e72b8); }

/* 安心ポイントのカラフル化 */
.trust-point {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.trust-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-point i {
    font-size: 2.5rem;
    background: var(--lc-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-point:nth-child(1) i {
    background: linear-gradient(135deg, #2a7d6e, #3d9b89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-point:nth-child(2) i {
    background: linear-gradient(135deg, #d9654e, #e88660);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-point:nth-child(3) i {
    background: linear-gradient(135deg, #b8920f, #d4ac1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* フローステップのカラフル化 */
.flow-step::before {
    background: linear-gradient(135deg, var(--lc-accent-color) 0%, var(--lc-secondary) 100%) !important;
}

.flow-step[data-step="1"]::before { background: linear-gradient(135deg, #d9654e, #e88660) !important; }
.flow-step[data-step="2"]::before { background: linear-gradient(135deg, #2a7d6e, #3d9b89) !important; }
.flow-step[data-step="3"]::before { background: linear-gradient(135deg, #b8920f, #d4ac1a) !important; }
.flow-step[data-step="4"]::before { background: linear-gradient(135deg, #1a2e4a, #2c4a6e) !important; }
.flow-step[data-step="5"]::before { background: linear-gradient(135deg, #6b5093, #8e72b8) !important; }

/* 背景の装飾ドット */
.bg-dots {
    position: relative;
}

.bg-dots::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--lc-accent-color) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.15;
    z-index: 0;
}

/* 虹色のアンダーライン */
.rainbow-underline {
    position: relative;
    display: inline-block;
}

.rainbow-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d9654e, #b8920f, #2a7d6e, #1a2e4a, #6b5093);
    border-radius: 3px;
}

/* キーポイントバッジのカラフル化 */
.key-point-badge:nth-of-type(1) {
    background: linear-gradient(135deg, rgba(42, 125, 110, 0.15), rgba(61, 155, 137, 0.1));
    border-color: var(--lc-secondary);
}

.key-point-badge:nth-of-type(2) {
    background: linear-gradient(135deg, rgba(217, 101, 78, 0.15), rgba(232, 134, 96, 0.1));
    border-color: var(--lc-accent-color);
}

.key-point-badge:nth-of-type(3) {
    background: linear-gradient(135deg, rgba(184, 146, 15, 0.15), rgba(212, 172, 26, 0.1));
    border-color: var(--lc-warm);
}

/* ======================================
   AOS カスタムアニメーション
====================================== */

[data-aos="fade-up-scale"] {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition-property: opacity, transform;
}

[data-aos="fade-up-scale"].aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

[data-aos="slide-right"] {
    opacity: 0;
    transform: translateX(-50px);
    transition-property: opacity, transform;
}

[data-aos="slide-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="slide-left"] {
    opacity: 0;
    transform: translateX(50px);
    transition-property: opacity, transform;
}

[data-aos="slide-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);}

/* ======================================
   フローカード（大きなアイコン付き）
====================================== */
.flow-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.flow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.flow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
}

.flow-card:nth-child(1)::before { background: linear-gradient(180deg, #d9654e, #e88660); }
.flow-card:nth-child(2)::before { background: linear-gradient(180deg, #2a7d6e, #3d9b89); }
.flow-card:nth-child(3)::before { background: linear-gradient(180deg, #b8920f, #d4ac1a); }
.flow-card:nth-child(4)::before { background: linear-gradient(180deg, #6b5093, #8e72b8); }
.flow-card:nth-child(5)::before { background: linear-gradient(180deg, #d96b8c, #e892a8); }

/* フローカード画像 */
.flow-card-image {
    flex-shrink: 0;
    width: 180px;
    height: 140px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.flow-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flow-card:hover .flow-card-image img {
    transform: scale(1.05);
}

.flow-card-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 24px;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.flow-icon-coral { background: linear-gradient(135deg, #d9654e, #e88660); }
.flow-icon-teal { background: linear-gradient(135deg, #2a7d6e, #3d9b89); }
.flow-icon-gold { background: linear-gradient(135deg, #b8920f, #d4ac1a); }
.flow-icon-purple { background: linear-gradient(135deg, #6b5093, #8e72b8); }
.flow-icon-pink { background: linear-gradient(135deg, #d96b8c, #e892a8); }
.flow-icon-navy { background: linear-gradient(135deg, #1a2e4a, #2c4a6e); }

.flow-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--lc-text-dark);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.flow-card-content {
    flex: 1;
}

.flow-card-content h3 {
    color: var(--lc-text-dark);
    font-weight: 700;
}

.flow-card-content p {
    color: var(--lc-text-muted);
    line-height: 1.9;
}

.flow-card-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.flow-card-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--lc-text-muted);
    background: var(--lc-bg-light);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.flow-card-points span i {
    color: var(--lc-secondary);
    font-size: 0.8rem;
}

/* インフォボックス */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--lc-secondary);
}

.info-box-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lc-secondary), var(--lc-secondary-light));
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
}

.info-box-content h5 {
    color: var(--lc-text-dark);
    font-weight: 700;
}

.info-box-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-box-list span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--lc-text);
}

.info-box-list span i {
    font-size: 1rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .flow-card {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .flow-card-image {
        width: 100%;
        height: 160px;
        order: -1;
    }
    
    .flow-card-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
        font-size: 2rem;
    }
    
    .flow-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        top: -5px;
        right: -5px;
    }
    
    .flow-card-points {
        flex-direction: column;
    }
    
    .info-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ======================================
   サービスカード（大きなアイコン付き）
====================================== */
.service-card {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.05;
    transform: translate(30%, -30%);
}

.service-card:nth-child(1)::before { background: #d9654e; }
.service-card:nth-child(2)::before { background: #2a7d6e; }
.service-card:nth-child(3)::before { background: #b8920f; }
.service-card:nth-child(4)::before { background: #6b5093; }

.service-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    min-width: 120px;
    border-radius: 28px;
    font-size: 3rem;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.05) rotate(-3deg);
}

.service-icon-coral { background: linear-gradient(135deg, #d9654e, #e88660); }
.service-icon-teal { background: linear-gradient(135deg, #2a7d6e, #3d9b89); }
.service-icon-gold { background: linear-gradient(135deg, #b8920f, #d4ac1a); }
.service-icon-purple { background: linear-gradient(135deg, #6b5093, #8e72b8); }
.service-icon-pink { background: linear-gradient(135deg, #d96b8c, #e892a8); }
.service-icon-navy { background: linear-gradient(135deg, #1a2e4a, #2c4a6e); }

.service-card-content {
    flex: 1;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lc-text-dark);
    margin-bottom: 1rem;
}

.service-card-desc {
    color: var(--lc-text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.service-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-2px);
}

.feature-badge i {
    font-size: 0.9rem;
}

.feature-coral {
    background: linear-gradient(135deg, rgba(217, 101, 78, 0.12), rgba(232, 134, 96, 0.08));
    color: #c04a32;
}
.feature-coral i { color: #d9654e; }

.feature-teal {
    background: linear-gradient(135deg, rgba(42, 125, 110, 0.12), rgba(61, 155, 137, 0.08));
    color: #1f5d52;
}
.feature-teal i { color: #2a7d6e; }

.feature-gold {
    background: linear-gradient(135deg, rgba(184, 146, 15, 0.12), rgba(212, 172, 26, 0.08));
    color: #8b6f0a;
}
.feature-gold i { color: #b8920f; }

.feature-purple {
    background: linear-gradient(135deg, rgba(107, 80, 147, 0.12), rgba(142, 114, 184, 0.08));
    color: #5a4280;
}
.feature-purple i { color: #6b5093; }

/* おすすめカード */
.recommend-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.recommend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.recommend-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.recommend-card p {
    color: var(--lc-text-dark);
    font-weight: 600;
    line-height: 1.7;
    margin: 0;
}

/* レスポンシブ：サービスカード */
@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }
    
    .service-card-icon {
        width: 100px;
        height: 100px;
        min-width: 100px;
        font-size: 2.5rem;
    }
    
    .service-card-features {
        justify-content: center;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .recommend-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}
/* ======================================
   安心ポイントカード（カラフル版）
====================================== */
.trust-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.08;
}

.trust-card:nth-child(1)::before { background: #2a7d6e; }
.trust-card:nth-child(2)::before { background: #d9654e; }
.trust-card:nth-child(3)::before { background: #b8920f; }

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.trust-card:hover .trust-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.trust-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 24px;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.trust-icon-teal { background: linear-gradient(135deg, #2a7d6e, #3d9b89); }
.trust-icon-coral { background: linear-gradient(135deg, #d9654e, #e88660); }
.trust-icon-gold { background: linear-gradient(135deg, #b8920f, #d4ac1a); }
.trust-icon-purple { background: linear-gradient(135deg, #6b5093, #8e72b8); }
.trust-icon-navy { background: linear-gradient(135deg, #1a2e4a, #2c4a6e); }

.trust-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lc-text-dark);
    margin-bottom: 1rem;
}

.trust-card-desc {
    color: var(--lc-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.trust-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.trust-badge-teal {
    background: linear-gradient(135deg, rgba(42, 125, 110, 0.12), rgba(61, 155, 137, 0.08));
    color: #1f5d52;
}
.trust-badge-teal i { color: #2a7d6e; }

.trust-badge-coral {
    background: linear-gradient(135deg, rgba(217, 101, 78, 0.12), rgba(232, 134, 96, 0.08));
    color: #c04a32;
}
.trust-badge-coral i { color: #d9654e; }

.trust-badge-gold {
    background: linear-gradient(135deg, rgba(184, 146, 15, 0.12), rgba(212, 172, 26, 0.08));
    color: #8b6f0a;
}
.trust-badge-gold i { color: #b8920f; }

/* レスポンシブ：トラストカード */
@media (max-width: 768px) {
    .trust-card {
        padding: 2rem 1.5rem;
    }
    
    .trust-card-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }
    
    .trust-card-title {
        font-size: 1.1rem;
    }
    
    .trust-card-desc {
        font-size: 0.9rem;
    }
}

/* ======================================
   お悩みカード（カラフル版）
====================================== */
.worry-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.worry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}

.worry-card:nth-child(1)::before,
.col-md-6:nth-child(1) .worry-card::before { background: linear-gradient(180deg, #d9654e, #e88660); }
.col-md-6:nth-child(2) .worry-card::before { background: linear-gradient(180deg, #2a7d6e, #3d9b89); }
.col-md-6:nth-child(3) .worry-card::before { background: linear-gradient(180deg, #b8920f, #d4ac1a); }
.col-md-6:nth-child(4) .worry-card::before { background: linear-gradient(180deg, #6b5093, #8e72b8); }

.worry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.worry-card:hover .worry-card-icon {
    transform: scale(1.1);
}

.worry-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 20px;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.worry-icon-coral { background: linear-gradient(135deg, #d9654e, #e88660); }
.worry-icon-teal { background: linear-gradient(135deg, #2a7d6e, #3d9b89); }
.worry-icon-gold { background: linear-gradient(135deg, #b8920f, #d4ac1a); }
.worry-icon-purple { background: linear-gradient(135deg, #6b5093, #8e72b8); }

.worry-card-content {
    flex: 1;
}

.worry-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lc-text-dark);
    margin-bottom: 0.75rem;
}

.worry-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.worry-card-list li {
    display: flex;
    align-items: center;
    color: var(--lc-text-muted);
    padding: 0.35rem 0;
    font-size: 0.95rem;
}

.worry-card-list li i {
    font-size: 1.5rem;
    margin-right: 0.25rem;
    color: var(--lc-text-light);
}

/* レスポンシブ：お悩みカード */
@media (max-width: 768px) {
    .worry-card {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        text-align: center;
    }
    
    .worry-card-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 1.8rem;
        margin: 0 auto;
    }
    
    .worry-card-title {
        font-size: 1.1rem;
    }
    
    .worry-card-list {
        text-align: left;
    }
    
    .worry-card-list li {
        font-size: 0.9rem;
    }
}
/* ======================================
   フロータイムライン（挿絵付き）
====================================== */
.flow-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.flow-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #d9654e, #2a7d6e, #b8920f, #6b5093);
    border-radius: 4px;
}

.flow-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.flow-timeline-item:last-child {
    margin-bottom: 0;
}

.flow-timeline-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 50%;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.flow-timeline-item:hover .flow-timeline-icon {
    transform: scale(1.1);
}

.flow-icon-coral { background: linear-gradient(135deg, #d9654e, #e88660); }
.flow-icon-teal { background: linear-gradient(135deg, #2a7d6e, #3d9b89); }
.flow-icon-gold { background: linear-gradient(135deg, #b8920f, #d4ac1a); }
.flow-icon-purple { background: linear-gradient(135deg, #6b5093, #8e72b8); }

.flow-timeline-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--lc-text-dark);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.flow-timeline-content {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.flow-timeline-item:hover .flow-timeline-content {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.flow-timeline-image {
    width: 120px;
    height: 120px;
    min-width: 120px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--lc-bg-light);
}

.flow-timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flow-timeline-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flow-timeline-text h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lc-text-dark);
    margin-bottom: 0.5rem;
}

.flow-timeline-text p {
    color: var(--lc-text-muted);
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* レスポンシブ：フロータイムライン */
@media (max-width: 768px) {
    .flow-timeline::before {
        left: 30px;
    }
    
    .flow-timeline-item {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .flow-timeline-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
    }
    
    .flow-timeline-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        top: -5px;
        right: -5px;
    }
    
    .flow-timeline-content {
        flex-direction: column;
        margin-left: 30px;
        padding: 1rem;
    }
    
    .flow-timeline-image {
        width: 100%;
        height: 150px;
    }
    
    .flow-timeline-text h5 {
        font-size: 1.1rem;
    }
    
    .flow-timeline-text p {
        font-size: 0.9rem;
    }
}

/* ======================================
   お問い合わせページ（カラフル版）
====================================== */

/* 安心メッセージ */
.contact-assurance {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.assurance-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.assurance-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    font-size: 1.3rem;
    color: #fff;
}

.assurance-icon-teal { background: linear-gradient(135deg, #2a7d6e, #3d9b89); }
.assurance-icon-coral { background: linear-gradient(135deg, #d9654e, #e88660); }
.assurance-icon-gold { background: linear-gradient(135deg, #b8920f, #d4ac1a); }

.assurance-text {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.assurance-text strong {
    color: var(--lc-text-dark);
    font-weight: 700;
}

.assurance-text span {
    color: var(--lc-text-muted);
    font-size: 0.8rem;
}

/* 送信完了 */
.contact-success {
    background: #fff;
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a7d6e, #3d9b89);
    color: #fff;
    font-size: 3rem;
    box-shadow: 0 15px 40px rgba(42, 125, 110, 0.3);
}

/* フォームカード */
.contact-form-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    background: linear-gradient(135deg, var(--lc-primary), var(--lc-primary-light));
    color: #fff;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-form-header i {
    font-size: 1.3rem;
}

.contact-form-body {
    padding: 2rem;
}

.form-group-custom {
    margin-bottom: 1.5rem;
}

.form-label-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--lc-text-dark);
    margin-bottom: 0.5rem;
}

.form-label-custom i {
    color: var(--lc-secondary);
}

.required-badge {
    background: linear-gradient(135deg, #d9654e, #e88660);
    color: #fff;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    font-weight: 600;
}

.form-control-lg {
    border-radius: 12px;
    border: 2px solid #e8e8e8;
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
}

.form-control-lg:focus {
    border-color: var(--lc-secondary);
    box-shadow: 0 0 0 4px rgba(42, 125, 110, 0.1);
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--lc-text-light);
}

.form-hint i {
    color: var(--lc-warm);
}

.form-check-custom {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--lc-bg-light);
    border-radius: 12px;
}

.form-check-custom .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0;
}

.form-check-custom .form-check-label {
    font-size: 0.95rem;
    color: var(--lc-text);
}

.form-check-custom .form-check-label a {
    color: var(--lc-secondary);
    font-weight: 600;
}

.btn-xl {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(217, 101, 78, 0.3);
}

.btn-xl:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(217, 101, 78, 0.4);
}

/* 連絡方法カード */
.contact-method-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}

.contact-method-teal::before {
    background: linear-gradient(180deg, #2a7d6e, #3d9b89);
}

.contact-method-coral::before {
    background: linear-gradient(180deg, #d9654e, #e88660);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 16px;
    font-size: 1.8rem;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-method-teal .contact-method-icon {
    background: linear-gradient(135deg, #2a7d6e, #3d9b89);
}

.contact-method-coral .contact-method-icon {
    background: linear-gradient(135deg, #d9654e, #e88660);
}

.contact-method-card:hover .contact-method-icon {
    transform: scale(1.1);
}

.contact-method-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--lc-text-muted);
    margin-bottom: 0.25rem;
}

.contact-method-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lc-text-dark);
    margin-bottom: 0.25rem;
}

.contact-method-note {
    font-size: 0.85rem;
    color: var(--lc-text-light);
}

/* レスポンシブ：お問い合わせ */
@media (max-width: 768px) {
    .contact-assurance {
        flex-direction: column;
    }
    
    .assurance-item {
        min-width: 100%;
    }
    
    .contact-form-body {
        padding: 1.5rem;
    }
    
    .btn-xl {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .contact-method-card {
        padding: 1.25rem;
    }
    
    .contact-method-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 1.5rem;
    }
    
    .contact-method-value {
        font-size: 1rem;
    }
}

/* ======================================
   新着情報セクション（トップページ）
====================================== */
.news-section {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.news-ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.news-label {
    background: var(--lc-primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-label i {
    font-size: 1rem;
}

.news-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.news-list::-webkit-scrollbar {
    display: none;
}

.news-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.news-date {
    color: var(--lc-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.news-list a {
    color: var(--lc-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.news-list a:hover {
    color: var(--lc-secondary);
}

.news-more {
    color: var(--lc-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
}

.news-more:hover {
    color: var(--lc-secondary-dark);
}

/* スマホ表示時 */
@media (max-width: 767.98px) {
    .news-ticker-wrapper {
        flex-wrap: wrap;
    }
    
    .news-label {
        width: 100%;
        justify-content: center;
    }
    
    .news-ticker {
        width: 100%;
    }
    
    .news-list {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .news-list li {
        white-space: normal;
        flex-wrap: wrap;
    }
    
    .news-list a {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .news-more {
        width: 100%;
        justify-content: center;
        padding: 0.5rem;
        background: #f5f5f5;
        border-radius: 6px;
    }
}

/* ======================================
   SNSリンク（フッター）
====================================== */
.sns-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #666;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.sns-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* YouTube */
.sns-youtube:hover {
    background: #ff0000;
    color: #fff;
}

/* Instagram */
.sns-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

/* X (Twitter) */
.sns-twitter:hover {
    background: #000;
    color: #fff;
}

/* LINE */
.sns-line:hover {
    background: #00b900;
    color: #fff;
}

/* TikTok */
.sns-tiktok:hover {
    background: #000;
    color: #fff;
}

/* Facebook */
.sns-facebook:hover {
    background: #1877f2;
    color: #fff;
}
