@charset "utf-8";
/*2026.6.8*/
/*------------------------------------------------
* 美容室向けカスタムスタイル (Blueberryテーマ)
-------------------------------------------------*/

/************共通************/
/* 見出しあしらい（ブルーベリーのエレガントな文字に） */
.section-title-en {
    display: block;
    font-size: 0.85rem;
    color: #7071CF; /* tx-blueberryと同じ色 */
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* セクション背景のバリエーション */
.section-white { background-color: #ffffff; }
.section-soft-blueberry {
    background-color: #ebe7f7;
}

/* カードの共通デザイン */
.modern-card {
    border: none !important;
    background: #fff;
}

/* 丸角の統一 */
.rounded-4 { border-radius: 1rem !important; }
.rounded-5 { border-radius: 2rem !important; }

/************トップページ************/
.hero-section {
    position: relative;
    height: 100vh; /* 画面いっぱいに広げる */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-topをマイナスにしてヘッダーの裏に潜り込ませる */
    margin-top: -70px; 
}
/* 画像を少し暗くして白文字を目立たせる */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(18, 21, 24, 0.2); 
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
/* ヒーローエリアのテキスト装飾 */
#fv-tx{
	line-height:1.3;
}
.hero-content h1 {
    letter-spacing: 0.1em;
    line-height: 1.2;
}
/* --- スマホ表示時のヒーローエリア見出し調整 --- */
@media (max-width: 575.98px) {
    .tx-4 {
        font-size: 3.0rem !important;
    }
}
@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 1.5rem !important;      
        letter-spacing: 0.05em !important; 
    }
}

/* コンセプトセクションの画像デコレーション */
.concept-image-wrapper {
    position: relative;
    padding: 20px;
}
/* 背後に薄いブルーグレーのボックスを配置しておしゃれに */
.concept-image-wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background-color: #f4f5f9; 
    border-radius: 20px;
    z-index: 0;
}
.concept-img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
}

/************スマホ用フローティングCTA（ブルーベリー版）************/
@media (max-width: 767px) {
    .sp-floating-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        z-index: 9999;
        box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.08);
        height: 56px; 
    }

    .sp-floating-cta a {
        flex: 1;
        display: flex;
        flex-direction: row; 
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.95rem; 
        transition: background-color 0.3s;
    }

    .sp-floating-cta a i {
        font-size: 1.2rem;
    }

    /* 電話ボタン（白背景にブルーベリー文字） */
    .btn-cta-tel {
        background-color: #ffffff;
        color: #7071CF !important;
    }

    /* Web予約ボタン（ブルーベリー背景に白文字） */
    .btn-cta-web {
        background-color: #7071CF;
        color: #ffffff !important;
        border-left: 1px solid #eee;
    }

    .sp-floating-cta a:active { opacity: 0.8; }

    /* 隙間調整用 */
    body { padding-bottom: 0 !important; }
    .footer-area { padding-bottom: 0 !important; }
    .footer-area > div:last-child { padding-bottom: 75px !important; }
    #back-to-top { bottom: 80px !important; }
}

@media (min-width: 768px) {
    .sp-floating-cta { display: none !important; }
}