@charset "utf-8";

:root {
    --bg-red: #ea5550;
    --bg-pink: #ffb9a5;
    --bg-shop: #ffffff;
    --pattern-img: url('../images/pattern@2x.png');
    --pattern-size: 350px 354px;

    --bg-cream: #ffffea;
    /* 背景のクリーム色 */
    --bg-blue-light: #dcfffa;
    /* 水色のボックス背景 */
    --font-serif: "Yu Mincho", "YuMincho", serif;
    --font-sans: "Helvetica Neue", Arial, sans-serif;
}

body {
    background-color: var(--bg-shop);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* =========================================
    1. ヘッダーエリア（赤）
    ========================================= */
.header-section {
    position: relative;
    background-color: var(--bg-red);
    padding-top: 80px;
    padding-bottom: 300px;
    z-index: 5;

    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);

    @media (max-width:768px) {
        padding-top: 30px;
    }
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--pattern-img);
    background-size: var(--pattern-size);
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
}

.header-headding {
    display: flex;
    justify-content: space-around;
    margin-bottom: 70px;

    @media (max-width:768px) {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 0;
    }
}

.header-text-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;

    @media (max-width:768px) {
        margin-bottom: 50px;
    }
}

.header-logo {
    width: 538px;

    & img {
        width: 100%;
        height: auto;
    }

    @media (max-width:768px) {
        width: 80%;
        margin: 0 auto;
    }
}

.header-logo01 {
    margin-bottom: 50px;

    @media (max-width:768px) {
        margin-bottom: 30px;
    }
}

.header-logo02 {
    text-align: center;
}

.subject-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    @media (max-width:768px) {
        flex-direction: column;
    }
}

.btn-remake {
    transition: opacity 0.3s;
}
.btn-remake:hover {
    opacity: 0.8;
}
@media (max-width:768px) {
    .btn-remake {
        width: 150px;
    }
}

/* =========================================
    2. メインエリア（薄いピンク）
    ========================================= */
.main-section {
    position: relative;
    z-index: auto;

    padding-bottom: 240px;

    @media (max-width:768px) {
        padding-bottom: 110px;
    }
}

.main-section::before {
    content: '';
    position: absolute;
    top: -250px;
    left: 0;
    width: 100%;
    height: calc(100% + 250px);

    background-color: var(--bg-pink);

    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);

    z-index: -1;
}

.main-section::after {
    content: '';
    position: absolute;
    top: -250px;
    left: 0;
    width: 100%;
    height: calc(100% + 250px);

    /* パターン画像のみ指定 */
    background-image: var(--pattern-img);
    background-size: var(--pattern-size);
    background-position: center top;

    /* ★地紋だけを20%にする */
    opacity: 0.2;

    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
    pointer-events: none;

    /* 背景色の上に重ねる */
    z-index: -1;
}

/* 白いコンテンツボックス */
.content-box {
    max-width: 920px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    margin-top: -250px;
    position: relative;
    z-index: 10;

    @media (max-width:768px) {
        padding: 20px;
    }
}

.cont-title {
    font-size: clamp(3.2rem, 2.667vw + 2.2rem, 5.4rem);
    font-family: "游明朝", "Yu Mincho", YuMincho, serif;
    color: #c63f26;
    text-align: center;
    margin-bottom: 0.5em;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.content-box p {
    font-size: clamp(1.8rem, 1.939vw + 1.073rem, 3.4rem);
    line-height: 1.7;
    text-indent: 1em;
}

/* =========================================
    3. 店舗情報エリア（下層）
    ========================================= */
.shop-section {
    position: relative;
    padding-top: 20px;
    padding-bottom: 60px;
}

.shop-section::before {
    content: "";
    position: absolute;
    top: -300px;
    left: 0;
    width: 100%;
    height: calc(100% + 300px);
    background-color: #ffe9e9;
    z-index: -2;
}

.shop-container {
    max-width: calc(1352px + 40px);
}

/* 丸いバッジ */
.station-badge {
    width: 378px;
    height: 378px;
    background-color: #ffffc8;
    border: 3px solid #e95541;
    border-radius: 50%;
    z-index: 2;
}

.shop-info-wrap {
    position: relative;
    margin-top: -150px;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    min-height: 428px;
    z-index: 30;
    overflow: hidden;
    padding: 10px 0 0 65px;
}

.station-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #e95541;
    font-weight: bold;
    line-height: 1.3;
    width: 100%;
    height: 100%;
    margin-top: 20px;

    @media (max-width:768px) {
        margin-top: 10px;
    }
}

.text01 {
    display: block;
    font-size: 4.5rem;
}

.text02 {
    display: block;
    font-size: 5.8rem;
}

.text03 {
    display: block;
    font-size: 5.1rem;
}

.text03 span {
    font-size: 7.6rem;
}

.shop-info-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.text-info h4 {
    font-size: clamp(3.2rem, 1.697vw + 2.564rem, 4.6rem);
    font-weight: bold;
    color: #c63f26;
    position: relative;
    display: block;
    position: relative;
    margin-bottom: 30px;
}

.text-info h4::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: -47px;
    width: 2000px;
    height: 5px;
    background-color: #c63f26;
}

.text-time {
    font-size: clamp(2.2rem, 2.545vw + 1.245rem, 4.3rem);
    line-height: 1.7;
}

.text-tel {
    font-size: clamp(2.2rem, 2.788vw + 1.155rem, 4.5rem);
    font-weight: bold;
    color: #c63f26;

    & span {
        font-weight: normal;
    }
}

.text-address {
    font-size: clamp(2.2rem, 1.333vw + 1.7rem, 3.3rem);
}

.gaigan img {
    width: 296px;
    height: auto;
    position: relative;
}

@media (max-width: 1340px) {

    /* --- 全体のラッパー --- */
    .shop-info-wrap {
        flex-direction: column;
        align-items: center;
        margin-top: -100px;
        padding: 0;
        height: auto;
        overflow: visible;
    }

    /* --- 丸いバッジ --- */
    .station-badge {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 40px;
        transform: scale(0.9); 
    }

    /* --- 情報エリアと写真のラッパー --- */
    .shop-info-content {
        display: flex;
        flex-direction: row; 
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 40px;
        padding: 0 40px;
    }

    /* --- テキスト情報 --- */
    .text-info {
        flex: 1;
        max-width: 600px; 
    }

    /* 突き抜ける線の調整（画面幅からはみ出さないように） */
    .text-info h4::after {
        width: 100vw;
        right: -100px;
    }

    /* --- 外観写真 --- */
    .gaigan {
        flex: 1;
        max-width: 400px;
        display: flex;
        justify-content: center;
    }

    .gaigan img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {

    /* --- コンテナとラッパーの調整 --- */
    .shop-info-wrap {
        flex-direction: column;
        align-items: center;
        margin-top: -100px;
        padding: 0;
        height: auto;
        gap: 20px;
        overflow: visible;
    }

    /* --- 丸いバッジ --- */
    .station-badge {
        width: 240px;
        height: 240px;
        border-width: 2px;
        margin: 0 auto;
        flex-shrink: 0;
    }

    /* バッジ内の文字サイズ調整 */
    .text01 {
        font-size: 2.4rem;
    }

    .text02 {
        font-size: 3.2rem;
    }

    .text03 {
        font-size: 2.8rem;
    }

    .text03 span {
        font-size: 4.2rem;
    }

    /* --- 情報エリアと写真のラッパー --- */
    .shop-info-content {
        flex-direction: column;
        width: 100%;
        gap: 40px;
        padding: 0;
    }

    /* --- テキスト情報 --- */
    .text-info {
        width: 100%;
    }

    .text-info h4 {
        margin-bottom: 20px;
    }

    /* 左に突き抜ける線の調整 */
    .text-info h4::after {
        height: 3px;
        bottom: -5px;
        right: 0;
        width: 100%;
    }

    /* --- 外観写真 --- */
    .gaigan {
        width: 100%;
        text-align: center;
    }

    .gaigan img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
}


/* ========================================
   お悩み相談セクション
======================================== */
/* --- セクション全体 --- */
.consultation-section {
    background-color: var(--bg-cream);
    padding: 60px 0;
    font-family: var(--font-sans);
    color: var(--text-color);
}

/* --- 1. 上部のメインメッセージ --- */
.consultation-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.consultation-box {
    background-color: var(--bg-blue-light);
    padding: 20px;
    text-align: center;
    position: relative;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
    max-width: 720px;
    width: 100%;

    @media (max-width:1340px) {
        margin-bottom: 30px;
    }
}

/* 下の三角形（しっぽ）を作る */
.consultation-box::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 70px solid var(--bg-blue-light);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;

    @media (max-width:1340px) {
        bottom: -40px;
    }
}

.onsultation-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 2.424vw + 1.091rem, 4rem);
    font-weight: normal;
    margin-bottom: 10px;
    line-height: 1.5;
}

.onsultation-main {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 3.636vw + 1.636rem, 6rem);
    font-weight: bold;
    color: #3278a0;
    margin-bottom: 5px;
    line-height: 1.2;

    & span {
        font-size: 125%;
    }
}

.onsultation-sub {
    font-size: clamp(2rem, 1.212vw + 1.545rem, 3rem);
}

/* --- 2. 4つの事例エリア（Gridレイアウト） --- */
.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 20px;
    margin-bottom: 60px;
    margin-top: -80px;

    @media (max-width:1340px) {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 0;
    }
    @media (max-width:768px) {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.case-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- PC用のズレ配置 --- */
.case-item02 { margin-top: 80px; }
.case-item03 { margin-top: -20px; }
.case-item04 { margin-left: -100px; }

/* ★タブレット以下: ズレをリセットして整列させる */
@media (max-width:1340px) {
    .case-item02,
    .case-item03,
    .case-item04 {
        margin: 0;
    }
}

.case-image {
    margin-bottom: -20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.case-image img {
    max-width: 100%;
    height: auto;
    max-height: 286px;

    @media (max-width:1340px) {
        width: auto;
        max-width: 100%;
        max-height: 250px;
        margin: 0 auto;
    }
}

/* PC用の画像位置調整 */
.case-item03 .case-image { margin-bottom: -70px; margin-left: -120px; }
.case-item04 .case-image { margin-bottom: -80px; margin-right: -160px; }

/* ★タブレット以下: 画像位置のリセット */
@media (max-width:1340px) {
    .case-item03 .case-image,
    .case-item04 .case-image {
        margin-bottom: -20px;
        margin-left: 0;
        margin-right: 0;
    }
}

.case-text {
    background-color: var(--bg-blue-light);
    padding: 30px 20px 20px;
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 1;
}

.case-text p {
    font-size: clamp(2rem, 0.97vw + 1.636rem, 2.8rem);
    line-height: 1.6;
    color: #3278a0;
}

/* PC用の幅とパディング */
.case-text01 { width: 488px; }
.case-text02 { width: 488px; padding-left: 75px; }
.case-text03 { width: 582px; padding-left: 140px; }
.case-text04 { width: 457px; padding-right: 100px; }

@media (max-width:1340px) {
    .case-text01,
    .case-text02,
    .case-text03,
    .case-text04 {
        width: 100%;
        max-width: 450px;
        padding: 30px 20px 20px;
        margin: 0 auto;
    }
}

/* --- 3. ボタンエリア --- */
.consultation-btn {
    text-align: center;
    margin-top: 40px;
}

.consultation-btn img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s;
    margin: 0 auto;
}

.consultation-btn a:hover img {
    opacity: 0.8;
}

@media (max-width: 768px) {

    .sp-only {
        display: block;
    }
}

/* =========================================
   4. お直しの流れセクション
   ========================================= */
.flow-section {
    padding: 20px 0;

    @media (max-width:768px) {
        padding: 0;
    }
}

.flow-container {
    max-width: 1380px;
    margin: 0 auto;
    background-image: url(../images/bg_flow.jpg);
    background-size: cover;
    background-position: center;
    padding: 60px 20px 80px;
    text-align: center;

    @media (max-width:768px) {
        padding: 40px 20px;
    }
}

.flow-title-wrap {
    margin-bottom: 15px;
}

.flow-title-wrap img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.flow-list {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.flow-item {
    background: #fff;
    border: 5px solid #f47bd6;
    padding: 20px 10px;
    position: relative;
}

.flow-item p {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 2.424vw + 1.091rem, 4rem);
    font-weight: normal;
    line-height: 1.5;
    text-align: center;

    @media (max-width:768px) {
        text-align-last: left;
    }
}

/* 下向きの矢印（▼）を作る */
.flow-item::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 25px solid #a01464;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

/* 最後のボックスだけ矢印を消す */
.flow-item:last-child::after {
    display: none;
}

/* リンクテキスト */
.flow-link {
    display: inline-block;
    font-size: clamp(2rem, 0.727vw + 1.727rem, 2.6rem);
    font-family: var(--font-serif);
    margin-top: 10px;
    color: #649664;
    text-decoration: underline;
    transition: opacity 0.3s;
}
.flow-link:hover {
    opacity: 0.8;
}

/* =========================================
   5. 会員特典セクション
   ========================================= */
.member-section {
    position: relative;
    padding: 0 0 180px;
    overflow: hidden;

    @media (max-width:1340px) {
        padding: 50px 0 100px;
    }
}

.member-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #ea5550 0%, rgba(234, 85, 80, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

/* 背景パターン（白地にピンクのパターン） */
.member-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-image: var(--pattern-img);
    background-size: var(--pattern-size);
    opacity: 0.2;
    z-index: -1;
}

.member-container {
    max-width: calc(1293px + 40px);
    display: flex;
    align-items: center;
    justify-content: center;

    @media (max-width:1340px) {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        margin: 0 auto;
    }
}

/* 左側：ビジュアル */
.member-visual {
    position: relative;
    width: 447px;
    flex-shrink: 0;

    @media (max-width:768px) {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* 右側：情報エリア */
.member-info {
    flex: 1;
    max-width: 846px;
    display: flex;
    flex-direction: column;
}

.member-title {
    border: 1px solid #ff0000;
    background: #fff;
    color: #ff0000;
    font-size: clamp(2.8rem, 2.424vw + 1.891rem, 4.8rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 82px;
    line-height: 1;
    padding-top: 6px;

    & span {
        font-size: 1.25em;
        line-height: 1;
    }

    @media (max-width:1340px) {
        display: block;
        height: auto;
        min-height: 60px;
        padding: 15px 15px 5px;
        /* font-size: 2.8rem; */
        line-height: 1.5;
        margin-bottom: 20px;
    }
}

.member-content-group {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    width: fit-content;
    max-width: 100%;

    @media (max-width:1340px) {
        align-self: center;
    }

    @media (max-width:768px) {
        width: 100%;
        align-items: center;
    }
}

.member-benefit-box {
    background-color: #ffff75;
    border: 1px solid #ff0000;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 30px;
    width: 100%;

    @media (max-width:768px) {
        width: 100%;
        padding: 15px 10px;
    }
}

.benefit-head {
    font-size: 4rem;
    font-weight: bold;
    color: #ff0000;

    @media (max-width:768px) {
        font-size: 2.2rem;
    }
}

.benefit-main {
    font-size: 4rem;
    font-weight: bold;
    color: #ff0000;

    @media (max-width:768px) {
        font-size: 2.6rem;
        line-height: 1.2;
    }
}

.highlight-red {
    background-color: #ff0000;
    color: #fff;
    padding: 0 5px;
    margin: 0 5px;
    font-size: 0.9em;
    vertical-align: middle;

    @media (max-width:768px) {
        display: inline-block;
        vertical-align: baseline;
        font-size: 1.8rem;
        padding: 2px 8px;
        width: auto;
    }
}

.text-big {
    font-size: 1.3em;
    vertical-align: middle;

    @media (max-width:768px) {
        font-size: 3.6rem;
        display: inline-block;
        vertical-align: baseline;
        line-height: 1;
        margin: 5px 0;
    }
}

.price-big {
    font-size: 1.5em;
    line-height: 1;
    vertical-align: middle;

    @media (max-width:768px) {
        font-size: 5rem;
        display: inline-block;
        vertical-align: baseline;
        line-height: 1;
        margin: 5px 0;
    }
}

.member-note {
    text-align: left;
    width: fit-content;
    margin-right: 0;
    padding: 0;
    list-style: none;

    @media (max-width: 1340px) {
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        font-size: 1.6rem;
    }
}

.member-note li {
    position: relative;
    padding-left: 1.25em;
    line-height: 1.5;
    margin-bottom: 8px;
    font-size: 2.2rem;
    font-weight: bold;

    @media (max-width:768px) {
        font-size: 1.6rem;
        padding-left: 1.2em;
    }
}

.member-note li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 1;
}


/* =========================================
   6. お直しメニューセクション
   ========================================= */
.menu-section {
    padding: 60px 0;
    background-color: #fff;
}

.menu-title {
    text-align: center;
    margin-bottom: 60px;

    @media (max-width:768px) {
        margin-bottom: 30px;
    }
}

.menu-title img {
    max-width: 100%;
    height: auto;
}

/* --- 1. イラストエリア（Grid） --- */
.menu-visual-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;

    @media (max-width:768px) {
        gap: 15px;
        margin-bottom: 30px;
    }
}

.visual-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    width: 100%;

    @media (max-width:768px) {
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }
}

.visual-item {
    text-align: center;
    flex: 0 1 auto;
    min-width: 0;

    @media (max-width:768px) {
        width: calc((100% - 10px) / 2);
        flex: 0 0 auto;
    }
}

@media (max-width:768px) {
    .visual-row:first-child .visual-item:nth-child(3) {
        width: 100%;
        margin-top: 10px;
    }
}
.visual-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;

    @media (max-width:768px) {
        width: 100%;
        height: auto;
        max-width: none;
    }
}

/* --- 2. 料金表エリア --- */
.price-container {
    position: relative;
    /* 背景帯の基準 */
    max-width: 920px;
    margin: 0 auto 60px;
    padding-bottom: 0;

    @media (max-width:900px) {
        margin-bottom: 20px;
    }
}

.price-container.price-split {
    margin-bottom: 0;
    padding-bottom: 0;
}

.price-note-wrap {
    max-width: 920px;
    margin: 0 auto 60px;
    padding-top: 15px;
    padding-left: 0;
    padding-right: 0;
}


/* 縦の背景帯（会員価格用：ピンク） */
.price-bg-bar {
    position: absolute;
    top: 100px;
    bottom: 0;
    z-index: 0;

    @media (max-width:900px) {
        display: none !important;
    }
}

.member-bg {
    background-color: #fff0f0;
    right: calc(218px + 15px);
    width: 218px;
    /* 会員価格の幅 */
}

.general-bg {
    background-color: #ebf5fa;
    right: 0;
    width: 218px;
    /* 一般価格の幅 */
}

/* ヘッダー部分 */
.price-header {
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;

    @media (max-width:900px) {
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 0;
    }
}

.price-category {
    flex: 1;
    font-size: clamp(2.4rem, 2.182vw + 1.582rem, 4.2rem);
    font-weight: bold;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    margin: 0;
    font-feature-settings: "palt";
    display: flex;
    align-items: center;
    gap: 10px;

    & span {
        font-size: 2.4rem;
        line-height: 1.2;
        font-weight: normal;
        padding-left: 0.7em;
        text-indent: -0.7em;
    }
}

@media (max-width:900px) {
    .price-category {
        flex: 0 0 100%;
        width: 100% !important;
        text-align: left;
        background: none;
        border: none;

        & span {
            font-size: 1.6rem;
        }
    }
}

.price-label {
    width: 218px;
    text-align: center;
    font-weight: bold;
    font-size: clamp(1.8rem, 1.939vw + 1.073rem, 3.4rem);
    padding-bottom: 5px;
    border-bottom: 2px solid #000;

    & span {
        font-size: 0.8em;
        font-weight: normal;
    }

    @media (max-width:900px) {
        width: 50%;
        padding: 10px 0;
        border-bottom: 2px solid #ccc;
    }
}

.price-label.member {
    color: #ff0000;
    width: 233px;
    padding-right: 15px;
    flex-shrink: 0;
    white-space: nowrap;

    @media (max-width:900px) {
        width: 50%;
        background-color: #fff0f0;
        color: #ff0000;
        margin-right: 0 !important;
        padding-right: 0;
    }
}

.price-label.general {
    color: #0096c8;

    @media (max-width:900px) {
        background-color: #ebf5fa;
    }
}


/* リスト行 */
.price-list {
    position: relative;
    z-index: 1;
}

.price-row {
    display: flex;
    align-items: baseline;

    @media (max-width:900px) {
        flex-wrap: wrap;
        align-items: center;
    }
}



/* 項目名 */
.item-name {
    font-size: clamp(2rem, 1.455vw + 1.455rem, 3.2rem);
    white-space: nowrap;

    @media (max-width:900px) {
        width: 100%;
        margin-bottom: 5px;
    }
}

.item-name .circle {
    color: #ccc;
    margin-right: 5px;
    font-size: 5rem;
    line-height: 0;
    vertical-align: middle;
    position: relative;
    top: -2px;

    @media (max-width:900px) {
        font-size: 2.4rem !important;
        line-height: 1;
        margin-right: 5px;
        vertical-align: baseline;
        /* middleだと高さが出ることがあるので戻す */
    }
}

@media (max-width:900px) {
    .heading-row {
        padding-top: 10px !important;
        padding-bottom: 5px;
        border-bottom: none;
        line-height: 1;
    }

    .heading-row .item-name {
        margin: 10px 0 !important;
        line-height: 1.2;
    }
}

.item-name.indent {
    padding-left: 1.5em;

    @media (max-width:900px) {
        padding-left: 0;
    }
}

/* 点線リーダー（重要テクニック） */
.item-dots {
    flex-grow: 1;
    border-bottom: 5px dotted #000;
    margin: 0 10px;
    position: relative;
    top: -7px;

    @media (max-width:900px) {
        display: none;
    }
}

/* 価格 */
.item-price {
    width: 218px;
    text-align: right;
    padding-right: 20px;
    font-size: clamp(2.4rem, 1.576vw + 1.809rem, 3.7rem);
    font-weight: bold;

    & span {
        font-size: 0.8em;
    }

    @media (max-width:900px) {
        width: 50%;
        text-align: center;
        padding: 10px 0;
        margin: 0 !important;
    }
}

.item-price.member {
    margin-right: 15px;

    @media (max-width:900px) {
        background-color: #fff0f0;
        font-weight: bold;
        margin-bottom: 20px !important;
    }
}

.item-price.general {
    font-weight: normal;

    @media (max-width:900px) {
        background-color: #ebf5fa;
        margin-bottom: 20px !important;
    }
}

.menu-footer-area {
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;

    @media (max-width:768px) {
        margin-top: 30px;
        padding: 0;
    }
}

/* 赤いメッセージボックス */
.service-message-box {
    background-color: #ea5550;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
}

.service-message-box p {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: left;

    @media (max-width:768px) {
        font-size: 1.6rem;
    }
}

/* 注釈リスト */
.price-attention-list {
    font-size: 2.2rem;
    line-height: 1.5;

    @media (max-width:768px) {
        font-size: 1.4rem;
    }
}

.price-attention-list li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 5px;
}

.price-attention-list li::before {
    content: "※";
    position: absolute;
    left: 0;
    top: -2px;
}


/* =========================================
   バナーセクション
=========================================== */
.banner-section {
    margin-bottom: 100px;

    @media (max-width:768px) {
        margin-bottom: 60px;
    }
}

ul.remake-banner-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin: 0 auto;
    max-width: 1150px;

    @media (max-width:768px) {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
}

ul.remake-banner-list li {
    width: calc(50% - 25px);
    max-width: 550px;
    line-height: 0;

    @media (max-width:768px) {
        width: 100%;
    }
}

ul.remake-banner-list li img {
    width: 100%;
    height: auto;
}

/* =========================================
   インフォメーション　セクション
=========================================== */
.info-section {
    padding: 0 0 80px;
}
.info-title {
    font-size: clamp(2.4rem, 3.152vw + 1.218rem, 5rem);
    font-family: var(--font-serif);
    line-height: 1.5;
    color: #ea5550;
    text-align: center;
    position: relative;
    padding-bottom: 80px;
    margin-bottom: 40px;

    @media (max-width:900px) {
        padding-bottom: 60px;
    }
}

.info-title::after {
    content: "";
    display: block;
    width: 796px;
    height: 57px;
    background: url(../images/kazari_kei@2x.png) no-repeat center / contain;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    
    @media (max-width:900px) {
        width: 80%;
        height: 40px;
    }
}

.for-sp-s {
    display: none;

    @media (max-width:430px) {
        display: block;
    }
}
ul.info-in-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;

    @media (max-width:900px) {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width:900px) {
    .info-logo02 img {
        width: 60%;
        margin: 0 auto;
    }
}

.info-access-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
    font-style: normal;

    @media (max-width:900px) {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        margin-bottom: 30px;
    }
}
.info-access-text {
    font-style: normal;
    line-height: 1;
}

.text-access-name {
    font-size: clamp(2.8rem, 1.697vw + 2.164rem, 4.2rem);
    font-weight: bold;
    margin-bottom: 10px;
}

.text-access-tel {
    font-size: clamp(4rem, 2.424vw + 3.091rem, 6rem);
    margin-bottom: 20px;

    & span {
        font-size: 0.6em;
        margin-right: 5px;
    }
}

.text-access-tel a {
    color: inherit;
    pointer-events: none;
    cursor: default;

    @media (max-width:900px) {
        pointer-events: auto;
        cursor: pointer;
    }
}

.text-access-time {
    font-size: clamp(2.2rem, 1.697vw + 1.564rem, 3.6rem);
    line-height: 1.4;
}

.access-map {
    flex: 0 0 270px;
    width: 270px;
    padding-top: 50px;

    @media (max-width:900px) {
        padding-top: 0;
        flex: none;
    }
}

/* マップのサムネイル枠 */
.map-thumbnail {
    width: 270px;
    height: 160px;
    border: 1px solid #000;
    overflow: hidden;
    line-height: 0;
    margin-bottom: 10px;
}

.map-thumbnail iframe {
    width: 100%;
    height: 100%;
}

.map-address {
    font-size: 2.5rem;
    line-height: 1.5;
    text-align: left;

    @media (max-width:900px) {
        font-size: 2rem;
    }
}

/* バナー */
.banner-wrap {
    display: flex;
    justify-content: center;
}

/* トップへ戻るボタン */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: bottom 0.4s ease-out, opacity 0.3s, visibility 0.3s;
    background: none;
    border: none;
    padding: 0;
    outline: none;
}

/* フッターが画面内に入ってきた時の位置 */
.back-to-top.is-footer-visible {
    bottom: 100px;
}
@media (max-width: 768px) {
    .back-to-top.is-footer-visible {
        bottom: 120px;
    }
}
/* スクロール時に付与するクラス */
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

/* アイコン画像のサイズ調整 */
.back-to-top img {
    width: 70px;
    height: 70px;
    display: block;
    transition: transform 0.2s;
}

/* ホバー時の演出（少し浮く） */
.back-to-top:hover img {
    transform: translateY(-5px);
}

@media (max-width: 840px) {
    .back-to-top img {
        width: 40px;
        height: 40px;
    }
}


/* ========================================
   FOOTER
======================================== */
.footer {
    background-color: #ea5550;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.copyright {
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin: 0;
}

.copyright-item {
    display: inline-block;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .copyright {
        font-size: 1.3rem;
        line-height: 1.6;
    }

    .copyright-item {
        display: block;
        margin: 0;
    }
}
