@charset "utf-8";

/* ==========================================================================
   【目次】
   1. Utilities & Common (共通パーツ・タイトル装飾)
   2. Hero Section (トップメインビジュアル)
   3. Trouble Section (お悩み・脳疲労)
   4. Benefit Section (得られる変化)
   5. Menu Section (メニュー)
   6. Reasons Section (選ばれる理由)
   7. First Time Banner (初回体験バナー)
   ========================================================================== */

/* ==========================================================================
   1. Utilities & Common (共通パーツ・タイトル装飾)
   ========================================================================== */
.bg-color { background-color: var(--bg-color, #f9f9f9); }
.z-index-1 { z-index: 1; }
.z-index-0 { z-index: 0; }
.object-fit-cover { object-fit: cover; }

/* グラデーションボタン共通 */
.btn-primary-gradient {
    background: linear-gradient(135deg, #d4a359, #b38b4d);
    border: none;
}
.btn-primary-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* --- 共通タイトル装飾 (左右の直線＋ひし形) --- */
.section-title-simple {
    font-size: 24px;
    color: var(--text-color, #333);
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

.title-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: var(--primary-color, #d4b572);
    position: relative;
    vertical-align: middle;
}

.title-line::after {
    content: '';
    position: absolute;
    top: -2.5px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color, #d4b572);
    transform: rotate(45deg);
}
.left-line::after { left: -3px; }
.right-line::after { right: -3px; }

@media (max-width: 991px) {
    .section-title-simple { font-size: 20px; }
    .title-line { width: 20px; } /* スマホ表示時は直線を短く */
}


/* ==========================================================================
   2. Hero Section (トップメインビジュアル)
   ========================================================================== */
.top-hero-section {
    position: relative;
    height: 600px;
    padding-top: 100px; /* ヘッダー分 */
    overflow: hidden;
}

.top-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* 画像に重ねるグラデーション（文字を読みやすく） */
.top-hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0) 100%);
}

.top-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    max-width: 600px;
}

.hero-catch-small {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #333;
}

.hero-catch-medium {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.hero-highlight .highlight-text {
    border: 1px solid var(--primary-color, #d4b572);
    color: var(--primary-color, #d4b572);
    background-color: #fff;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
}

.hero-title {
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.hero-badge {
    position: absolute;
    bottom: 40px;
    right: 20px;
    width: 140px;
    height: 140px;
    z-index: 2;
}

@media (max-width: 991px) {
    .top-hero-section { 
        height: auto; 
        padding-bottom: 60px; 
    }
    
    /* ▼ 変更部分：ベタ塗りではなく、左上から右下へ抜けるグラデーションに変更 */
    .top-hero-bg::after { 
        background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 45%, rgba(255,255,255,0.1) 100%); 
    }
    
    .hero-title { 
        font-size: 24px; 
    }
    
    .hero-badge { 
        position: relative; 
        bottom: 0; 
        right: 0; 
        margin: 30px auto 0; 
    }
}


/* ==========================================================================
   3. Trouble Section (お悩み・脳疲労)
   ========================================================================== */
.trouble-card img {
    width: 100%;
    max-width: 120px;
}


/* ==========================================================================
   4. Benefit Section (得られる変化)
   ========================================================================== */
/* デフォルト（スマホ・タブレット表示: 991px以下） */
.benefit-circle {
    width: 150px;
    height: 150px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 10px;
    transition: transform 0.3s ease;
}

.benefit-circle i { font-size: 32px; }

.benefit-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.benefit-circle:hover {
    transform: translateY(-5px);
}

/* PC表示 (992px以上) */
@media (min-width: 992px) {
    .benefit-circle {
        width: 180px; 
        height: 180px;
    }
    .benefit-text {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}

/* 小さいスマホ用の微調整 */
@media (max-width: 767px) {
    .benefit-circle { width: 140px; height: 140px; }
    .benefit-circle i { font-size: 24px; }
    .benefit-text { font-size: 13px; }
}


/* ==========================================================================
   5. Menu Section (メニュー)
   ========================================================================== */
.menu-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Bootstrapの .shadow-sm を詳細度で上書きし !important を排除 */
div.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.bg-gold-gradient { background: linear-gradient(135deg, #d4b572 0%, #b89247 100%); }
.bg-wine-gradient { background: linear-gradient(135deg, #a25c6f 0%, #834053 100%); }
.text-gold { color: #b89247; }
.text-wine { color: #834053; }

.menu-card .badge {
    background-color: #fcfcfc;
    border: 1px solid #eaeaea; /* !important を排除 */
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: #666; /* !important を排除 */
}

.menu-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* --- メニュー内のフォントサイズ・行間調整 --- */
.menu-header-text { font-size: 1.1rem; }
.menu-desc-text { font-size: 0.875rem; line-height: 1.6; }

@media (max-width: 991px) {
    .menu-image {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

/* PC表示 (992px以上) */
@media (min-width: 992px) {
    .menu-header-text { font-size: 1.25rem; }
    .menu-desc-text { font-size: 1rem; line-height: 1.8; }
    
    /* 高さを揃えるためのレイアウト調整 */
    .menu-title-wrap {
        min-height: 90px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .menu-tags-wrap {
        min-height: 80px;
    }
}


/* ==========================================================================
   6. Reasons Section (選ばれる理由)
   ========================================================================== */
.reasons-box-wrapper {
    border: 1px solid var(--border-color, #c8a97e);
    padding: 40px 10px 20px;
    margin-top: 40px; 
}

.reasons-box-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    color: var(--text-color, #333);
    margin: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 15px; 
}

.reasons-box-title::before,
.reasons-box-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--border-color, #c8a97e);
}

.reason-box-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-right: 1px dashed var(--border-color, #c8a97e);
}

.reason-box-item:last-child {
    border-right: none;
}

.reason-box-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--border-color, #c8a97e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #d4b572);
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.reason-box-text {
    font-size: 13px;
    font-weight: bold;
    color: var(--text-color, #333);
    text-align: left;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .reason-box-item {
        justify-content: flex-start;
        padding: 20px 30px;
        border-right: none;
        border-bottom: 1px dashed var(--border-color, #c8a97e);
    }
    .reason-box-item:last-child {
        border-bottom: none;
    }
    .reasons-box-title { font-size: 18px; }
    .reasons-box-title::before,
    .reasons-box-title::after { width: 20px; }
}


/* ==========================================================================
   7. First Time Banner (初回体験バナー)
   ========================================================================== */
.first-time-wrapper {
    background-color: #fff0f5;
    border: 2px solid #f8c1c9;
    min-height: 150px;
}

.banner-badge {
    width: 90px;
    height: 90px;
    background-color: #df7a88;
}
.badge-text-small { font-size: 13px; }
.badge-text-large { font-size: 20px; line-height: 1.2; }

.btn-banner {
    background: linear-gradient(135deg, #e58795, #c95c6c);
    font-size: 18px;
    padding: 15px 30px;
    border: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-decoration: none; /* !important を排除 */
}
.btn-banner:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #fff;
}
.banner-btn-icon {
    color: #c95c6c;
    font-size: 14px;
}

/* スマホ表示 (991px以下) */
@media (max-width: 991px) {
    .banner-bg-img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-image: url('https://headtherapy.net/w2/wp-content/uploads/2026/06/IMG_3336.jpg');
        background-size: cover;
        background-position: center;
        z-index: 0;
    }
    .banner-bg-mask {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-color: rgba(255, 240, 245, 0.9);
        z-index: 1;
    }
}

/* PC表示 (992px以上) */
@media (min-width: 992px) {
    .banner-bg-img {
        position: absolute;
        top: 0; right: 0;
        width: 45%; height: 100%;
        background-image: url('https://headtherapy.net/w2/wp-content/uploads/2026/06/IMG_3336.jpg');
        background-size: cover;
        background-position: right center; 
        z-index: 0;
    }
    .banner-bg-mask {
        position: absolute;
        top: 0; right: 0;
        width: 45%; height: 100%;
        background: linear-gradient(to right, #fff0f5 0%, rgba(255,240,245,0.8) 30%, rgba(255,240,245,0) 100%);
        z-index: 1;
    }
    .banner-btn-wrap {
        margin: 0;
    }
}