@charset "UTF-8";

:root {
    /* カラーパレット：ブライダルにふさわしい上品な色合い */
    --primary-color: #d4af37;
    /* エレガントなゴールド */
    --primary-light: #fefcf8;
    --accent-color: #e8dcc4;
    --text-main: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #faf8f5;

    /* フォント設定：見出しは明朝体、本文はゴシック体 */
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    line-height: 1.8;
    background-color: var(--bg-color);
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.serif {
    font-family: var(--font-serif);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* 文字の折り返し制御（レスポンシブ対応） */
.nowrap {
    display: inline-block;
    white-space: nowrap;
}

/* タイトル周り */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.section-title span {
    display: block;
    font-size: 1rem;
    color: var(--text-main);
    margin-top: 10px;
    letter-spacing: 0.15em;
    font-family: var(--font-sans);
    font-weight: 400;
}

/* ボタンデザイン */
.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
}

.btn-outline:hover {
    background-color: var(--text-main);
    color: #fff;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.1rem;
    min-width: 280px;
}

/* ヒーローセクション（ファーストビュー） */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* ウェディングを連想させる高画質なフリー画像をプレースホルダーとして設定 */
    background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
    animation: zoomInOut 20s infinite alternate linear;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* 写真の上に被せる上品なダークブラウンのフィルター */
    background: linear-gradient(135deg, rgba(30, 25, 20, 0.4) 0%, rgba(10, 8, 5, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    animation: fadeIn 2s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
    /* 写真上で目立つように白に変更 */
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    letter-spacing: 0.1em;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* 選ばれる理由 */
.reason-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.card {
    flex: 1;
    background: #fff;
    padding: 50px 30px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.card:hover {
    transform: translateY(-10px);
}

.card-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--primary-light);
    -webkit-text-stroke: 1px var(--accent-color);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    z-index: 0;
}

.card-title {
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.card-text {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: left;
    position: relative;
    z-index: 1;
}

/* 選ばれる理由のバッジ（豊橋・豊川アピール） */
.section-header-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-main);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

/* 施術の流れ（6ステップ） */
.flow-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    position: relative;
}

/* ステップ間の縦線 */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 80px;
    width: 2px;
    height: 30px;
    background: var(--accent-color);
    z-index: 1;
}

.step-img-placeholder {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    color: var(--primary-color);
    margin-right: 40px;
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 2;
}

.step-num {
    font-size: 2rem;
    line-height: 1;
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.step-title span {
    color: var(--primary-color);
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-sans);
}

.step-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 空間＆スタッフ（画像のブラッシュアップ部分） */
.feature-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 100px;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    position: relative;
}

/* 【重要】画像のブラッシュアップ用フィルタとスタイリング */
.feature-image img {
    border-radius: 200px 200px 0 0;
    /* アーチ型のオシャレな切り抜き */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: 500px;
    object-fit: cover;
    /* 肌をきれいに、空間をふんわり見せる美容サロン特有の補正 */
    filter: brightness(1.08) contrast(0.95) saturate(0.85);
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.02);
}

/* スタッフ画像用（元の画像が横向きの場合があるため、カバーで調整） */
.staff-img img {
    border-radius: 50%;
    /* 丸く切り抜き親しみやすさアップ */
    height: 400px;
    width: 400px;
    margin: 0 auto;
    /* 写真下部の写り込みを隠すために、画像を少し拡大して上部にずらす */
    object-position: center 10%;
    transform: scale(1.15);
    /* 人物の場合は少しふんわり明るく */
    filter: brightness(1.1) contrast(0.9) saturate(0.9);
}

/* エレガントな装飾フレーム */
.feature-image::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 200px 200px 0 0;
    z-index: -1;
}

.staff-img::after {
    border-radius: 50%;
    top: -15px;
    left: 15px;
    right: -15px;
    bottom: 15px;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    /* 画像を拡大した分、はみ出ないようにコンテナをクリップ */
    overflow: hidden;
}

/* 拡大した画像が枠からはみ出ないように親要素に制限をかける */
.staff-img {
    overflow: hidden;
    border-radius: 50%;
    padding: 10px;
    /* 余白調整 */
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-main);
    font-weight: 400;
}

.feature-text p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.feature-text strong {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
}

/* 料金メニュー表 */
.menu {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.option-box {
    background: #fdfbf7;
    border-style: dashed;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--accent-color);
}

.menu-title {
    font-size: 1.6rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-badge {
    font-family: var(--font-sans);
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.menu-price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1;
}

.menu-price span {
    font-size: 1.2rem;
    margin-right: 5px;
}

.menu-price .tax-info {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 5px;
}

.menu-desc {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.8;
}

.menu-includes {
    list-style: none;
    background: var(--bg-light);
    padding: 25px 30px;
    border-radius: 8px;
}

.menu-includes li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.menu-includes li:last-child {
    margin-bottom: 0;
}

.menu-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.menu-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 30px;
}

/* お問い合わせ（CTA） */
.cta {
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    padding: 120px 20px;
    background-image: linear-gradient(135deg, rgba(212, 175, 55, 1) 0%, rgba(193, 155, 46, 1) 100%);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 50px;
    line-height: 2;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.cta .btn-primary {
    background-color: #fff;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
}

.cta .btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* フッター */
footer {
    text-align: center;
    padding: 40px;
    background: #2c2c2c;
    color: #999;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* レスポンシブ対応（スマホ向け） */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .reason-cards {
        flex-direction: column;
    }

    .step {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .step-img-placeholder {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .feature-block,
    .feature-block.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .feature-image img {
        height: 350px;
    }

    .staff-img img,
    .staff-img::after {
        width: 300px;
        height: 300px;
    }

    .menu-box {
        padding: 30px 20px;
    }

    .menu-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .menu-price {
        align-self: flex-end;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-large {
        width: 100%;
        max-width: 350px;
    }
}