@charset "UTF-8";

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #263845;
    background: #ffffff;
    font-family:
        "Noto Sans JP",
        sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

address {
    font-style: normal;
}

p,
h1,
h2,
h3,
h4,
dl,
dd,
figure {
    margin: 0;
}


/* =========================================================
   COMMON
========================================================= */

.lp-inner {
    width: min(1180px, calc(100% - 60px));
    margin: 0 auto;
}

.lp-section {
    padding: 95px 0;
}

.sp-only {
    display: none;
}


/* =========================================================
   HEADER
========================================================= */

.lp-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e5e8ea;
    backdrop-filter: blur(8px);
}

.lp-header__inner {
    display: flex;
    width: min(1280px, calc(100% - 50px));
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.lp-header__logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lp-header__logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.lp-header__logo strong {
    display: block;
    color: #143960;
    font-family: "Noto Serif JP", serif;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.04em;
}

.lp-header__logo span {
    display: block;
    margin-top: 2px;
    color: #143960;
    font-size: 1.2rem;
    font-weight: 600;
}

/* =========================================================
   HEADER ACTIONS
========================================================= */

.lp-header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* =========================================================
   INSTAGRAM
========================================================= */

.lp-header__instagram {
    display: flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    color: #143960;
    border: 1px solid #c8d1d7;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.lp-header__instagram svg {
    width: 25px;
    height: 25px;
    overflow: visible;
}

.lp-header__instagram svg rect,
.lp-header__instagram svg circle:not(.instagram-dot) {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.lp-header__instagram .instagram-dot {
    fill: currentColor;
    stroke: none;
}

.lp-header__instagram:hover {
    color: #b18437;
    border-color: #b18437;
    transform: translateY(-2px);
}


/* =========================================================
   TELEPHONE
========================================================= */

.lp-header__tel {
    text-align: right;
}

.lp-header__tel > span {
    display: block;
    margin-bottom: 2px;
    color: #616b72;
    font-size: 1rem;
    line-height: 1.4;
}

.lp-header__tel > a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: #143960;
    font-family: "Noto Serif JP", serif;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.lp-header__tel-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    fill: #b18437;
}


/* =========================================================
   WEB RESERVATION
========================================================= */

.lp-header__reserve {
    display: flex;
    min-width: 180px;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    color: #ffffff;
    background: #b78934;
    font-family: "Noto Serif JP", serif;
    font-size: 1.55rem;
    font-weight: 600;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.lp-header__reserve:hover {
    background: #957024;
    transform: translateY(-2px);
}


/* =========================================================
   HERO
========================================================= */

.lp-hero {
    position: relative;
    overflow: hidden;
    background: #edf0f1;
}

.lp-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 180px 180px 180px;
    gap: 4px;
    min-height: 544px;
}

.lp-hero__photo {
    position: relative;
    overflow: hidden;
}

.lp-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-hero__photo::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(12, 37, 56, 0.04);
}

.lp-hero__photo--01 {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
}

.lp-hero__photo--02 {
    grid-column: 4 / 7;
    grid-row: 1 / 2;
}

.lp-hero__photo--03 {
    grid-column: 7 / 10;
    grid-row: 1 / 3;
}

.lp-hero__photo--04 {
    grid-column: 10 / 13;
    grid-row: 1 / 2;
}

.lp-hero__photo--05 {
    grid-column: 1 / 5;
    grid-row: 3 / 4;
}

.lp-hero__photo--06 {
    grid-column: 9 / 13;
    grid-row: 2 / 4;
}


/* HERO CENTER */

.lp-hero__center {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    width: min(610px, 60%);
    padding: 32px 50px 35px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    text-align: center;
    transform: translate(-50%, -50%);
}

.lp-hero__logo {
    width: 52px;
    margin: 0 auto 5px;
}

.lp-hero__clinic-en {
    color: #143960;
    font-family: "Noto Serif JP", serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.1em;
}

.lp-hero__clinic-ja {
    margin-top: 3px;
    color: #143960;
    font-size: 1.25rem;
    font-weight: 600;
}

.lp-hero__title {
    margin-top: 22px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    line-height: 1.5;
}

.lp-hero__title span {
    display: block;
    color: #143960;
    font-size: clamp(2.6rem, 3vw, 3.8rem);
}

.lp-hero__title strong {
    display: block;
    color: #b18437;
    font-size: clamp(3rem, 3.5vw, 4.5rem);
    font-weight: 500;
}

.lp-hero__catch {
    display: inline-block;
    margin-top: 18px;
    padding: 8px 24px;
    color: #ffffff;
    background: #143960;
    font-family: "Noto Serif JP", serif;
    font-size: 1.6rem;
}

.lp-hero__text {
    margin-top: 16px;
    color: #3e4a51;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.8;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.lp-section-title {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 42px;
}

.lp-section-title__number {
    color: #143960;
    font-family: "Noto Serif JP", serif;
    font-size: 5rem;
    font-style: italic;
    line-height: 1;
}

.lp-section-title__sub {
    margin-bottom: 2px;
    color: #b18437;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.17em;
}

.lp-section-title h2 {
    color: #143960;
    font-family: "Noto Serif JP", serif;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.5;
}


/* =========================================================
   TROUBLE
========================================================= */

.lp-trouble {
    background: #ffffff;
}

.lp-trouble__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid #cfd6da;
    border-left: 1px solid #cfd6da;
}

.lp-trouble__item {
    min-height: 185px;
    padding: 28px 15px;
    border-right: 1px solid #cfd6da;
    border-bottom: 1px solid #cfd6da;
    text-align: center;
}

.lp-trouble__icon {
    display: flex;
    width: 130px;
    height: 130px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.lp-trouble__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lp-trouble__item p {
    color: #273d4c;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.75;
}

.lp-trouble__message {
    margin-top: 28px;
    color: #143960;
    font-family: "Noto Serif JP", serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}


/* =========================================================
   SHORT
========================================================= */

.lp-short {
    background: #f8f8f7;
}

.lp-short__layout {
    display: grid;
    grid-template-columns: 230px 230px 1fr;
    gap: 28px;
    align-items: start;
}

.lp-short__comparison {
    background: #ffffff;
    border: 1px solid #d4d9dc;
}

.lp-short__comparison--accent {
    border-color: #c7a65e;
}

.lp-short__comparison-head {
    padding: 12px;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
}

.lp-short__comparison-head--normal {
    background: #778087;
}

.lp-short__comparison-head--accent {
    background: #b18437;
}

.lp-short__steps {
    padding: 22px 20px;
    text-align: center;
}

.lp-short__steps span {
    display: block;
    padding: 8px 10px;
    color: #273d4c;
    background: #f6f7f7;
    border: 1px solid #e0e3e4;
    font-size: 1.15rem;
    font-weight: 600;
}

.lp-short__steps i {
    display: block;
    margin: 3px 0;
    color: #87949d;
    font-style: normal;
}

.lp-short__period {
    display: block;
    padding: 12px;
    color: #ffffff;
    background: #b18437;
    font-size: 1.1rem;
    text-align: center;
}

.lp-short__period--normal {
    background: #778087;
}

.lp-short__content {
    padding: 10px 0 0 15px;
}

.lp-short__content h3 {
    color: #143960;
    font-family: "Noto Serif JP", serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.55;
}

.lp-short__content p {
    margin-top: 20px;
    color: #4a575f;
    font-size: 1.45rem;
    line-height: 2;
}

.lp-short__notice {
    margin-top: 25px;
    padding: 17px 20px;
    color: #5a6267;
    background: #ffffff;
    border: 1px solid #cfd6da;
    font-size: 1.15rem;
    line-height: 1.75;
}


/* =========================================================
   TREATMENT
========================================================= */

.lp-treatment {
    background: #ffffff;
}

.lp-treatment__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-treatment__card {
    background: #ffffff;
    border: 1px solid #d8dee1;
}

.lp-treatment__card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.lp-treatment__card > div {
    padding: 20px 22px 23px;
}

.lp-treatment__card h3 {
    color: #143960;
    font-family: "Noto Serif JP", serif;
    font-size: 1.7rem;
    font-weight: 600;
}

.lp-treatment__card p {
    margin-top: 9px;
    color: #5c666c;
    font-size: 1.25rem;
    line-height: 1.8;
}


/* =========================================================
   FLOW
========================================================= */

.lp-flow {
    background: #f8f8f7;
}

.lp-flow__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.lp-flow__item {
    position: relative;
    padding: 15px 20px 25px;
    text-align: center;
}

.lp-flow__item:not(:last-child)::after {
    position: absolute;
    top: 72px;
    right: -7px;
    content: "›";
    color: #a8b2b8;
    font-family: serif;
    font-size: 4rem;
    font-weight: 300;
}

.lp-flow__number {
    display: inline-block;
    margin-bottom: 7px;
    padding: 3px 8px;
    color: #ffffff;
    background: #143960;
    border-radius: 50px;
    font-size: 1rem;
}



.lp-flow__item h3 {
    color: #143960;
    font-size: 1.4rem;
    font-weight: 700;
}

.lp-flow__item p {
    margin-top: 11px;
    color: #58636a;
    font-size: 1.15rem;
    line-height: 1.75;
}

.lp-flow__cta {
    display: grid;
    grid-template-columns: 1fr 260px 260px;
    align-items: center;
    margin-top: 42px;
    background: #143960;
}

.lp-flow__cta > strong {
    padding: 20px 28px;
    color: #ffffff;
    font-family: "Noto Serif JP", serif;
    font-size: 1.6rem;
    font-weight: 500;
}

.lp-button {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    font-weight: 600;
}

.lp-button--gold {
    color: #ffffff;
    background: #b18437;
}

.lp-flow__tel {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    color: #143960;
    background: #ffffff;
    font-family: "Noto Serif JP", serif;
    font-size: 2rem;
    font-weight: 600;
}


/* =========================================================
   DOCTOR
========================================================= */

.lp-doctor {
    position: relative;
    overflow: hidden;
    padding-top: 105px;
    padding-bottom: 110px;
    background: #ffffff;
}


/* =========================================================
   DOCTOR STAGE
========================================================= */

.lp-doctor__stage {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(330px, 0.95fr)
        minmax(380px, 1.15fr)
        minmax(250px, 0.75fr);

    min-height: 570px;
    margin-top: 110px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #14232c 0%,
            #101b22 48%,
            #0b151b 100%
        );

    box-shadow:
        0 25px 65px rgba(10, 30, 43, 0.15);
}


/* 上の細いゴールドライン */

.lp-doctor__stage::before {
    position: absolute;
    z-index: 5;
    top: 0;
    right: 0;
    left: 0;

    height: 1px;

    content: "";

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(183, 145, 73, 0.75) 25%,
            rgba(183, 145, 73, 0.75) 75%,
            transparent 100%
        );
}


/* =========================================================
   LEFT / VISUAL
========================================================= */

.lp-doctor__visual {
    position: relative;
    min-width: 0;
}


/* 写真後ろの枠 */

.lp-doctor__visual::before {
    position: absolute;

    z-index: 1;

    top: 52px;
    right: 26px;
    bottom: 38px;
    left: 30px;

    content: "";

    border:
        1px solid rgba(183, 145, 73, 0.62);
}


/* 英字装飾 */

.lp-doctor__visual-en {
    position: absolute;

    z-index: 2;

    top: 95px;
    left: 48px;

    margin: 0;

    color: rgba(183, 145, 73, 0.68);

    font-family:
        "Noto Serif JP",
        serif;

    font-size: 3.5rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.15;

    pointer-events: none;
}

.lp-doctor__visual-en span {
    display: block;
    margin-left: 35px;
}


/* =========================================================
   DOCTOR PHOTO
========================================================= */

.lp-doctor__photo {
    position: absolute;

    z-index: 3;

    right: -5px;
    bottom: 0;
    left: 0;

    height: calc(100% + 95px);

    pointer-events: none;
}


/*
 * 重要
 *
 * doctor.png は背景透過PNG推奨。
 *
 * 画像そのものをステージより95px高くすることで
 * 頭・上半身が背景から飛び出す。
 */

.lp-doctor__photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center bottom;

    filter:
        drop-shadow(
            10px 15px 18px
            rgba(0, 0, 0, 0.16)
        );
}


/* =========================================================
   CENTER / MESSAGE
========================================================= */

.lp-doctor__message {
    position: relative;
    z-index: 4;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 58px 48px 52px 50px;
}


/* 左縦ライン */

.lp-doctor__message::before {
    position: absolute;

    top: 58px;
    bottom: 58px;
    left: 0;

    width: 1px;

    content: "";

    background:
        rgba(183, 145, 73, 0.45);
}


.lp-doctor__label {
    margin: 0 0 8px;

    color: #b79149;

    font-family:
        "Noto Serif JP",
        serif;

    font-size: 1.05rem;
    font-weight: 600;

    letter-spacing: 0.18em;
}


.lp-doctor__heading {
    margin: 0;

    color: #ffffff;

    font-family:
        "Noto Serif JP",
        serif;

    font-size: clamp(2.3rem, 2.2vw, 3.1rem);
    font-weight: 500;

    line-height: 1.65;

    letter-spacing: 0.04em;
}


.lp-doctor__text {
    margin-top: 27px;
}


.lp-doctor__text p {
    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 1.3rem;

    line-height: 2;
}


.lp-doctor__text p + p {
    margin-top: 13px;
}


.lp-doctor__text strong {
    color: #ffffff;
    font-weight: 600;
}


/* =========================================================
   SIGNATURE
========================================================= */

.lp-doctor__signature {
    margin-top: 31px;
    text-align: right;
}


.lp-doctor__signature span {
    display: block;

    margin-bottom: 4px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 1.05rem;
}


.lp-doctor__signature strong {
    display: block;

    color: #ffffff;

    font-family:
        "Noto Serif JP",
        serif;

    font-size: 1.8rem;
    font-weight: 500;

    letter-spacing: 0.06em;
}


/* =========================================================
   RIGHT / PROFILE
========================================================= */

.lp-doctor__profile {
    position: relative;

    z-index: 4;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 58px 38px;

    background:
        rgba(0, 0, 0, 0.12);
}


/* 左ゴールドライン */

.lp-doctor__profile::before {
    position: absolute;

    top: 58px;
    bottom: 58px;
    left: 0;

    width: 1px;

    content: "";

    background:
        rgba(183, 145, 73, 0.55);
}


.lp-doctor__profile-block + .lp-doctor__profile-block {
    margin-top: 40px;
}


.lp-doctor__profile-en {
    margin: 0 0 6px;

    color: #b79149;

    font-family:
        "Noto Serif JP",
        serif;

    font-size: 0.95rem;
    font-weight: 600;

    letter-spacing: 0.17em;
}


.lp-doctor__profile h4 {
    margin: 0 0 15px;

    color: #ffffff;

    font-family:
        "Noto Serif JP",
        serif;

    font-size: 1.55rem;
    font-weight: 500;

    line-height: 1.6;
}


.lp-doctor__profile p:not(.lp-doctor__profile-en) {
    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 1.15rem;

    line-height: 1.9;
}


.lp-doctor__profile ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.lp-doctor__profile li {
    position: relative;

    padding: 6px 0 6px 17px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 1.15rem;

    line-height: 1.6;
}


.lp-doctor__profile li::before {
    position: absolute;

    top: 15px;
    left: 0;

    width: 5px;
    height: 1px;

    content: "";

    background: #b79149;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1050px) {

    .lp-doctor__stage {
        grid-template-columns:
            minmax(280px, 0.9fr)
            minmax(350px, 1.2fr)
            minmax(220px, 0.7fr);
    }

    .lp-doctor__message {
        padding-right: 32px;
        padding-left: 35px;
    }

    .lp-doctor__profile {
        padding-right: 25px;
        padding-left: 25px;
    }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media screen and (max-width: 767px) {

    .lp-doctor {
        overflow: hidden;
        padding-top: 65px;
        padding-bottom: 65px;
    }


    /*
     * SPは3カラムを縦並び
     */

    .lp-doctor__stage {
        display: block;

        min-height: 0;

        margin-top: 85px;

        background:
            linear-gradient(
                150deg,
                #14232c 0%,
                #0c171e 100%
            );
    }


    /* =====================================================
       PHOTO
    ===================================================== */

    .lp-doctor__visual {
        height: 410px;
    }


    .lp-doctor__visual::before {
        top: 30px;
        right: 20px;
        bottom: 25px;
        left: 20px;
    }


    .lp-doctor__visual-en {
        top: 62px;
        left: 35px;

        font-size: 2.8rem;
    }


    /*
     * SPでも頭を背景から飛び出させる
     */

    .lp-doctor__photo {
        top: -75px;
        right: 0;
        bottom: 0;
        left: 0;

        height: auto;
    }


    .lp-doctor__photo img {
        width: 100%;
        height: 485px;

        object-fit: contain;
        object-position: center bottom;
    }


    /* =====================================================
       MESSAGE
    ===================================================== */

    .lp-doctor__message {
        display: block;

        padding:
            38px 24px
            45px;
    }


    .lp-doctor__message::before {
        display: none;
    }


    .lp-doctor__heading {
        font-size: 2.15rem;
        line-height: 1.65;
    }


    .lp-doctor__text {
        margin-top: 23px;
    }


    .lp-doctor__text p {
        font-size: 1.25rem;
        line-height: 1.95;
    }


    .lp-doctor__signature {
        margin-top: 27px;
    }


    .lp-doctor__signature strong {
        font-size: 1.6rem;
    }


    /* =====================================================
       PROFILE
    ===================================================== */

    .lp-doctor__profile {
        display: block;

        padding:
            35px 24px
            40px;

        border-top:
            1px solid
            rgba(183, 145, 73, 0.4);

        background:
            rgba(0, 0, 0, 0.15);
    }


    .lp-doctor__profile::before {
        display: none;
    }


    .lp-doctor__profile-block + .lp-doctor__profile-block {
        margin-top: 30px;
    }


    .lp-doctor__profile h4 {
        font-size: 1.45rem;
    }


    .lp-doctor__profile p:not(.lp-doctor__profile-en),
    .lp-doctor__profile li {
        font-size: 1.15rem;
    }

}


/* =========================================================
   CLINIC
========================================================= */

.lp-clinic {
    background: #f7f7f6;
}

.lp-clinic__layout {
    display: grid;
    grid-template-columns: 58% 42%;
    background: #ffffff;
}

.lp-clinic__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px;
    gap: 5px;
    padding: 5px;
}

.lp-clinic__photo {
    overflow: hidden;
}

.lp-clinic__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-clinic__info {
    padding: 45px 50px;
}

.lp-clinic__info h3 {
    color: #143960;
    font-family: "Noto Serif JP", serif;
    font-size: 2.2rem;
    font-weight: 600;
}

.lp-clinic__info address {
    margin-top: 20px;
    color: #4d5960;
    font-size: 1.35rem;
    line-height: 1.9;
}

.lp-clinic__access {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #dce1e3;
}

.lp-clinic__access p {
    font-size: 1.25rem;
    line-height: 1.8;
}

.lp-clinic__tel {
    display: block;
    margin-top: 22px;
    color: #143960;
    font-family: "Noto Serif JP", serif;
    font-size: 2.6rem;
    font-weight: 600;
}

.lp-clinic__hours {
    margin-top: 18px;
}

.lp-clinic__hours > div {
    display: grid;
    grid-template-columns: 85px 1fr;
    padding: 6px 0;
}

.lp-clinic__hours dt {
    color: #68747a;
    font-size: 1.2rem;
}

.lp-clinic__hours dd {
    color: #34454f;
    font-size: 1.25rem;
    font-weight: 600;
}

.lp-clinic__reserve {
    margin-top: 25px;
}


/* =========================================================
   GOOGLE MAP
========================================================= */

.lp-map {
    position: relative;

    width: 100%;

    margin: 0;

    background: #ffffff;
}


/* =========================================================
   MAP HEAD
========================================================= */

.lp-map__head {
    position: relative;

    width: min(1180px, calc(100% - 60px));

    margin: 0 auto;

    padding: 48px 0 30px;

    text-align: center;
}


/* 上部ゴールドライン */

.lp-map__head::before {
    position: absolute;

    top: 0;
    left: 50%;

    width: 45px;
    height: 1px;

    content: "";

    background: #b18437;

    transform: translateX(-50%);
}


.lp-map__en {
    margin: 0 0 10px;

    color: #b18437;

    font-family:
        "Noto Serif JP",
        "Times New Roman",
        serif;

    font-size: 1.2rem;
    font-weight: 600;

    line-height: 1.4;

    letter-spacing: 0.2em;
}


.lp-map__address {
    margin: 0;

    color: #173f5b;

    font-family:
        "Noto Serif JP",
        serif;

    font-size: 1.65rem;
    font-weight: 600;

    line-height: 1.7;
}


.lp-map__station {
    margin: 7px 0 0;

    color: #5c676e;

    font-size: 1.4rem;

    line-height: 1.7;
}


/* =========================================================
   GOOGLE MAP
========================================================= */

.lp-map {
    width: 100%;
    height: 350px;
    margin: 0;
    overflow: hidden;
    background: #eee;
}

.lp-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}


/* SMARTPHONE */

@media screen and (max-width: 767px) {

    .lp-map {
        height: 260px;
    }

}


/* =========================================================
   FOOTER
========================================================= */

.lp-footer {
    background: #0e3357;
    color: #ffffff;
}

.lp-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    width: min(1280px, calc(100% - 60px));
    min-height: 115px;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
}

.lp-footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-footer__brand img {
    width: 48px;
}

.lp-footer__brand strong {
    display: block;
    font-family: "Noto Serif JP", serif;
    font-size: 1.5rem;
}

.lp-footer__brand span {
    display: block;
    margin-top: 2px;
    font-size: 1rem;
}

.lp-footer__nav {
    display: flex;
    gap: 25px;
    font-size: 1.05rem;
}

.lp-footer__copy {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   SP CTA
========================================================= */

.lp-sp-cta {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1000px) {

    .lp-header__logo strong {
        font-size: 1.4rem;
    }

    .lp-short__layout {
        grid-template-columns: 200px 200px 1fr;
        gap: 18px;
    }

    .lp-flow__item {
        padding-right: 12px;
        padding-left: 12px;
    }

    .lp-doctor__content {
        padding: 45px;
    }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media screen and (max-width: 767px) {

    body {
        padding-bottom: 62px;
    }

    .sp-only {
        display: block;
    }

    .lp-inner {
        width: calc(100% - 36px);
    }

    .lp-section {
        padding: 65px 0;
    }


    /* HEADER */

    .lp-header__inner {
        width: calc(100% - 24px);
        min-height: 64px;
    }

    .lp-header__logo {
        gap: 8px;
    }

    .lp-header__logo img {
        width: 40px;
        height: 40px;
    }

    .lp-header__logo strong {
        font-size: 1.05rem;
    }

    .lp-header__logo span {
        font-size: 0.9rem;
    }

    .lp-header__actions {
        display: none;
    }


    /* HERO */

    .lp-hero__grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows:
            120px
            120px
            120px
            120px;
        min-height: 480px;
    }

    .lp-hero__photo--01 {
        grid-column: 1 / 4;
        grid-row: 1 / 3;
    }

    .lp-hero__photo--02 {
        grid-column: 4 / 7;
        grid-row: 1 / 2;
    }

    .lp-hero__photo--03 {
        grid-column: 4 / 7;
        grid-row: 2 / 4;
    }

    .lp-hero__photo--04 {
        display: none;
    }

    .lp-hero__photo--05 {
        grid-column: 1 / 4;
        grid-row: 3 / 5;
    }

    .lp-hero__photo--06 {
        grid-column: 4 / 7;
        grid-row: 4 / 5;
    }

    .lp-hero__center {
        width: calc(100% - 55px);
        padding: 24px 18px 25px;
    }

    .lp-hero__logo {
        width: 38px;
    }

    .lp-hero__clinic-en {
        font-size: 1.3rem;
    }

    .lp-hero__clinic-ja {
        font-size: 1rem;
    }

    .lp-hero__title {
        margin-top: 14px;
    }

    .lp-hero__title span {
        font-size: 2.1rem;
    }

    .lp-hero__title strong {
        font-size: 2.4rem;
    }

    .lp-hero__catch {
        margin-top: 13px;
        padding: 6px 13px;
        font-size: 1.2rem;
    }

    .lp-hero__text {
        margin-top: 11px;
        font-size: 1.05rem;
    }

    .lp-hero__text br {
        display: none;
    }


    /* SECTION TITLE */

    .lp-section-title {
        gap: 12px;
        margin-bottom: 28px;
    }

    .lp-section-title__number {
        font-size: 3.8rem;
    }

    .lp-section-title h2 {
        font-size: 2.1rem;
    }


    /* TROUBLE */

    .lp-trouble__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-trouble__item {
        min-height: 160px;
        padding: 22px 10px;
    }

    .lp-trouble__item p {
        font-size: 1.15rem;
    }

    .lp-trouble__message {
        font-size: 1.6rem;
        line-height: 1.7;
    }


    /* SHORT */

    .lp-short__layout {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .lp-short__content {
        grid-column: 1 / -1;
        padding: 30px 0 0;
    }

    .lp-short__steps {
        padding: 15px 10px;
    }

    .lp-short__steps span {
        padding: 7px 5px;
        font-size: 1rem;
    }

    .lp-short__period {
        min-height: 54px;
        padding: 10px 5px;
        font-size: 0.95rem;
    }

    .lp-short__content h3 {
        font-size: 2rem;
    }

    .lp-short__content p {
        font-size: 1.3rem;
    }


    /* TREATMENT */

    .lp-treatment__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .lp-treatment__card > div {
        padding: 15px 13px 17px;
    }

    .lp-treatment__card h3 {
        font-size: 1.35rem;
    }

    .lp-treatment__card p {
        font-size: 1.1rem;
    }


    /* FLOW */

    .lp-flow__list {
        grid-template-columns: 1fr;
    }

    .lp-flow__item {
        display: grid;
        align-items: start;
        grid-template-columns: 62px 1fr;
        gap: 0 15px;
        padding: 20px 0;
        text-align: left;
        border-bottom: 1px solid #d7dddf;
    }

    .lp-flow__item::after {
        display: none !important;
    }

    .lp-flow__number {
        grid-column: 1;
        justify-self: center;
        margin-bottom: 5px;
    }

    

    .lp-flow__item h3 {
        grid-column: 2;
        grid-row: 2;
        align-self: center;
        font-size: 1.45rem;
    }

    .lp-flow__item p {
        grid-column: 2;
        grid-row: 3;
        margin-top: 7px;
        font-size: 1.15rem;
    }

    .lp-flow__cta {
        display: block;
        margin-top: 30px;
    }

    .lp-flow__cta > strong {
        display: block;
        padding: 18px;
        font-size: 1.4rem;
        text-align: center;
    }

    .lp-flow__tel {
        min-height: 58px;
    }


    /* DOCTOR */

    .lp-doctor__layout {
        display: block;
    }

    .lp-doctor__image img {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .lp-doctor__content {
        padding: 32px 20px;
    }

    .lp-doctor__content h3 {
        font-size: 2rem;
    }

    .lp-doctor__content p {
        font-size: 1.3rem;
    }


    /* CLINIC */

    .lp-clinic__layout {
        display: block;
    }

    .lp-clinic__gallery {
        grid-template-rows: 140px 140px;
    }

    .lp-clinic__info {
        padding: 30px 20px;
    }

    .lp-clinic__tel {
        font-size: 2.3rem;
    }


    /* FOOTER */

    .lp-footer__inner {
        display: block;
        width: calc(100% - 36px);
        min-height: 0;
        padding: 35px 0;
    }

    .lp-footer__nav {
        flex-wrap: wrap;
        gap: 8px 18px;
        margin-top: 25px;
    }

    .lp-footer__copy {
        margin-top: 25px;
    }


    /* FIXED CTA */

    .lp-sp-cta {
        position: fixed;
        z-index: 9999;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: 42% 58%;
        height: 62px;
    }

    .lp-sp-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-weight: 700;
    }

    .lp-sp-cta__tel {
        background: #143960;
    }

    .lp-sp-cta__reserve {
        background: #b18437;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

}


/* =========================================================
   HERO OPENING ANIMATION
========================================================= */

/*
 * 初期状態
 * JSが有効な場合だけアニメーションさせる
 */

.js .lp-hero__photo {
    opacity: 0;
    transform: scale(1.025);
}


/* 画像表示 */

.js .lp-hero__photo.is-hero-visible {
    opacity: 1;
    transform: scale(1);
    transition:
        opacity 0.45s ease,
        transform 0.7s ease;
}


/* 中央テキストは最後に表示 */

.js .lp-hero__center {
    opacity: 0;
    transform:
        translate(-50%, -47%)
        scale(0.985);
}


/* 中央テキスト表示 */

.js .lp-hero__center.is-hero-visible {
    opacity: 1;

    transform:
        translate(-50%, -50%)
        scale(1);

    transition:
        opacity 0.55s ease,
        transform 0.65s ease;
}


/* アニメーション終了後 */

.js .lp-hero__photo.hero-animation-complete {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   アニメーションを減らす設定のユーザー
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .js .lp-hero__photo,
    .js .lp-hero__center {
        opacity: 1;
        transition: none;
    }

    .js .lp-hero__photo {
        transform: none;
    }

    .js .lp-hero__center {
        transform: translate(-50%, -50%);
    }

}
/* =========================================================
   2026-08 READABILITY + SP CTA CONSOLIDATED OVERRIDES
   ※次回整理時は各本体ルールへ統合可能
========================================================= */

body { font-size: 1.7rem; line-height: 1.9; }
.lp-header__logo strong { font-size: 1.8rem; }
.lp-header__logo span { font-size: 1.3rem; }
.lp-header__tel > span { font-size: 1.2rem; }
.lp-header__tel > a { font-size: 2.7rem; }
.lp-header__reserve { font-size: 1.65rem; }
.lp-hero__clinic-en { font-size: 1.9rem; }
.lp-hero__clinic-ja { font-size: 1.4rem; }
.lp-hero__catch { font-size: 1.7rem; }
.lp-hero__text { font-size: 1.5rem; line-height: 1.9; }
.lp-section-title__sub { font-size: 1.2rem; }
.lp-section-title h2 { font-size: 3rem; }
.lp-trouble__item p { font-size: 1.55rem; line-height: 1.8; }
.lp-trouble__message { font-size: 2.2rem; line-height: 1.8; }
.lp-short__comparison-head { font-size: 1.4rem; }
.lp-short__steps span { font-size: 1.4rem; line-height: 1.6; }
.lp-short__period { font-size: 1.3rem; line-height: 1.6; }
.lp-short__content h3 { font-size: 2.7rem; }
.lp-short__content p { font-size: 1.65rem; line-height: 2; }
.lp-short__notice { font-size: 1.4rem; line-height: 1.9; }
.lp-treatment__card h3 { font-size: 1.85rem; }
.lp-treatment__card p { font-size: 1.5rem; line-height: 1.85; }
.lp-flow__number { font-size: 2rem; }
.lp-flow__item h3 { font-size: 1.65rem; }
.lp-flow__item p { font-size: 1.4rem; line-height: 1.85; }
.lp-flow__cta > strong { font-size: 1.75rem; }
.lp-button { font-size: 1.55rem; }
.lp-flow__tel { font-size: 2.2rem; }
.lp-doctor__label { font-size: 1.2rem; }
.lp-doctor__heading { font-size: clamp(2.5rem, 2.3vw, 3.3rem); }
.lp-doctor__text p { font-size: 1.55rem; line-height: 2; }
.lp-doctor__signature span { font-size: 1.25rem; }
.lp-doctor__signature strong { font-size: 2rem; }
.lp-doctor__profile-en { font-size: 1.1rem; }
.lp-doctor__profile h4 { font-size: 1.75rem; }
.lp-doctor__profile p:not(.lp-doctor__profile-en),
.lp-doctor__profile li { font-size: 1.4rem; }
.lp-clinic__info h3 { font-size: 2.4rem; }
.lp-clinic__info address { font-size: 1.55rem; line-height: 1.9; }
.lp-clinic__access p { font-size: 1.5rem; }
.lp-clinic__hours dt { font-size: 1.4rem; }
.lp-clinic__hours dd { font-size: 1.5rem; }
.lp-footer__brand strong { font-size: 1.65rem; }
.lp-footer__brand span { font-size: 1.2rem; }
.lp-footer__nav { font-size: 1.3rem; }
.lp-footer__copy { font-size: 1.1rem; }

@media screen and (max-width: 767px) {
    body { font-size: 1.6rem; padding-bottom: 68px; }
    .lp-header__logo strong { font-size: 1.15rem; }
    .lp-header__logo span { font-size: 1rem; }
    .lp-hero__clinic-en { font-size: 1.4rem; }
    .lp-hero__clinic-ja { font-size: 1.1rem; }
    .lp-hero__title span { font-size: 2.2rem; }
    .lp-hero__title strong { font-size: 2.6rem; }
    .lp-hero__catch { font-size: 1.35rem; }
    .lp-hero__text { font-size: 1.3rem; line-height: 1.75; }
    .lp-section-title__sub { font-size: 1.1rem; }
    .lp-section-title h2 { font-size: 2.3rem; line-height: 1.55; }
    .lp-trouble__item p { font-size: 1.4rem; line-height: 1.75; }
    .lp-trouble__message { font-size: 1.75rem; }
    .lp-short__comparison-head { font-size: 1.25rem; }
    .lp-short__steps span { font-size: 1.2rem; }
    .lp-short__period { font-size: 1.15rem; }
    .lp-short__content h3 { font-size: 2.2rem; }
    .lp-short__content p { font-size: 1.55rem; line-height: 1.95; }
    .lp-short__notice { font-size: 1.35rem; }
    .lp-treatment__card h3 { font-size: 1.55rem; }
    .lp-treatment__card p { font-size: 1.35rem; line-height: 1.8; }
    .lp-flow__item h3 { font-size: 1.6rem; }
    .lp-flow__item p { font-size: 1.4rem; line-height: 1.8; }
    .lp-flow__cta > strong { font-size: 1.55rem; }
    .lp-doctor__heading { font-size: 2.25rem; }
    .lp-doctor__text p { font-size: 1.5rem; line-height: 1.95; }
    .lp-doctor__profile h4 { font-size: 1.65rem; }
    .lp-doctor__profile p:not(.lp-doctor__profile-en),
    .lp-doctor__profile li { font-size: 1.4rem; }
    .lp-clinic__info h3 { font-size: 2.1rem; }
    .lp-clinic__info address { font-size: 1.5rem; }
    .lp-clinic__access p,
    .lp-clinic__hours dt,
    .lp-clinic__hours dd { font-size: 1.4rem; }

    .lp-sp-cta {
        position: fixed;
        z-index: 9999;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: 1fr 1fr 1.25fr;
        height: 68px;
        background: #fff;
        box-shadow: 0 -4px 18px rgba(0,0,0,.12);
    }
    .lp-sp-cta__item,
    .lp-sp-cta a {
        display: flex;
        min-width: 0;
        align-items: center;
        justify-content: center;
        gap: 7px;
        color: #fff;
        font-size: 1.35rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: .02em;
    }
    .lp-sp-cta__item + .lp-sp-cta__item { border-left: 1px solid rgba(255,255,255,.25); }
    .lp-sp-cta__icon { display:block; width:22px; height:22px; flex:0 0 22px; fill:currentColor; }
    .lp-sp-cta__tel { background:#143960; }
    .lp-sp-cta__line { background:#06c755; }
    .lp-sp-cta__icon--line { width:25px; height:25px; flex-basis:25px; fill:#fff; }
    .lp-sp-cta__line-text { fill:#06c755; }
    .lp-sp-cta__reserve { background:#b18437; }
}



/* =========================================================
   HERO POINTS
========================================================= */

.lp-hero-points {
    position: relative;
    z-index: 20;

    background: #ffffff;
}


/*
 * MVの直下いっぱいに広げる
 */

.lp-hero-points__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    width: 100%;
}


/* =========================================================
   PANEL
========================================================= */

.lp-hero-point {
    position: relative;

    min-height: 285px;

    overflow: hidden;

    padding:
        42px
        55px
        42px
        105px;

    border-bottom: 1px solid #d9e0e4;
}


/* パネル間 */

.lp-hero-point + .lp-hero-point {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}


/* =========================================================
   PANEL 01
========================================================= */

.lp-hero-point--01 {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #102f49 0%,
            #173f5b 100%
        );
}


/* =========================================================
   PANEL 02
========================================================= */

.lp-hero-point--02 {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #173f5b 0%,
            #21516f 100%
        );
}


/* =========================================================
   PANEL 03
========================================================= */

.lp-hero-point--03 {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #1a455f 0%,
            #102f49 100%
        );
}


/* =========================================================
   背景の斜めライン
========================================================= */

.lp-hero-point::before {
    position: absolute;

    top: -80px;
    right: 35px;

    width: 1px;
    height: 440px;

    content: "";

    background:
        rgba(255, 255, 255, 0.15);

    transform: rotate(28deg);
}


.lp-hero-point::after {
    position: absolute;

    top: -80px;
    right: 60px;

    width: 1px;
    height: 440px;

    content: "";

    background:
        rgba(183, 145, 73, 0.38);

    transform: rotate(28deg);
}


/* =========================================================
   NUMBER
========================================================= */

.lp-hero-point__number {
    position: absolute;

    top: 37px;
    left: 35px;

    color: #b79149;

    font-family:
        "Noto Serif JP",
        serif;

    font-size: 1.25rem;
    font-weight: 600;

    letter-spacing: 0.12em;
}


/*
 * 巨大な装飾番号
 */

.lp-hero-point__number::after {
    position: absolute;

    z-index: 0;

    top: -32px;
    left: -12px;

    content: attr(data-number);

    color:
        rgba(
            255,
            255,
            255,
            0.035
        );

    font-family:
        "Noto Serif JP",
        serif;

    font-size: 12rem;

    line-height: 1;

    pointer-events: none;
}


/* =========================================================
   CONTENT
========================================================= */

.lp-hero-point__content {
    position: relative;
    z-index: 3;
}


.lp-hero-point__en {
    margin: 0 0 8px;

    color: #b79149;

    font-size: 1.05rem;
    font-weight: 600;

    line-height: 1.4;
    letter-spacing: 0.18em;
}


.lp-hero-point h2 {
    margin: 0;

    color: #ffffff;

    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        "YuMincho",
        serif;

    font-size: clamp(
        2.2rem,
        2vw,
        2.8rem
    );

    font-weight: 500;

    line-height: 1.55;
    letter-spacing: 0.035em;
}


.lp-hero-point__text {
    max-width: 350px;

    margin: 17px 0 0;

    color:
        rgba(
            255,
            255,
            255,
            0.75
        );

    font-size: 1.4rem;

    line-height: 1.85;
}


/* =========================================================
   ARROW
========================================================= */

.lp-hero-point__arrow {
    position: absolute;

    right: 28px;
    bottom: 24px;

    display: flex;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    color: #b79149;

    border:
        1px solid
        rgba(
            183,
            145,
            73,
            0.7
        );

    font-size: 1.7rem;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.lp-hero-point {
    transition:
        filter 0.35s ease;
}


.lp-hero-point:hover {
    filter: brightness(1.08);
}


.lp-hero-point:hover
.lp-hero-point__arrow {
    color: #173f5b;

    background: #b79149;

    transform:
        translateX(4px);
}


/* =========================================================
   上部ゴールドライン
========================================================= */

.lp-hero-point {
    border-top:
        3px solid
        #b79149;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1000px) {

    .lp-hero-point {
        min-height: 270px;

        padding:
            35px
            35px
            35px
            75px;
    }


    .lp-hero-point__number {
        left: 22px;
    }


    .lp-hero-point__text {
        font-size: 1.3rem;
    }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media screen and (max-width: 767px) {

    .lp-hero-points__inner {
        grid-template-columns: 1fr;
    }


    .lp-hero-point {
        min-height: 0;

        padding:
            29px
            55px
            29px
            67px;

        border-top-width: 2px;
    }


    .lp-hero-point + .lp-hero-point {
        border-left: 0;

        border-top:
            1px solid
            rgba(
                255,
                255,
                255,
                0.15
            );
    }


    /* NUMBER */

    .lp-hero-point__number {
        top: 30px;
        left: 19px;

        font-size: 1.05rem;
    }


    /* 英字 */

    .lp-hero-point__en {
        margin-bottom: 5px;

        font-size: 0.95rem;
    }


    /* 見出し */

    .lp-hero-point h2 {
        font-size: 2rem;

        line-height: 1.5;
    }


    /* 本文 */

    .lp-hero-point__text {
        margin-top: 10px;

        font-size: 1.3rem;

        line-height: 1.75;
    }


    /* ARROW */

    .lp-hero-point__arrow {
        right: 15px;
        bottom: 18px;

        width: 32px;
        height: 32px;

        font-size: 1.4rem;
    }


    /* 背景ライン */

    .lp-hero-point::before,
    .lp-hero-point::after {
        height: 300px;

        opacity: 0.65;
    }

}

/* =========================================================
   FLOW IMAGE ICON
========================================================= */

.lp-flow__icon {
    position: relative;

    display: flex;

    width: 104px;
    height: 104px;

    align-items: center;
    justify-content: center;

    margin: 0 auto 24px;
}


/* 背景のスクエア */

.lp-flow__icon::before {
    position: absolute;

    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;

    content: "";

    border: 1px solid rgba(177, 132, 55, 0.42);

    transform: rotate(45deg);
}


/* 画像 */

.lp-flow__icon img {
    position: relative;
    z-index: 2;

    display: block;

    width: 100px;
    height: 100px;

    object-fit: contain;
}


/* =========================================================
   SMARTPHONE
========================================================= */

@media screen and (max-width: 767px) {

    .lp-flow__icon {
        width: 88px;
        height: 88px;

        margin-bottom: 20px;
    }

    .lp-flow__icon img {
        width: 66px;
        height: 66px;
    }

}


/* =========================================================
   RESERVATION SCHEDULE
========================================================= */

.lp-reservation-schedule {
    width: 100%;
    padding: 65px 20px 70px;
    background: #fafafa;
}

.lp-reservation-schedule__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* HEADER */

.lp-reservation-schedule__head {
    margin-bottom: 28px;
    text-align: center;
}

.lp-reservation-schedule__en {
    display: block;
    margin-bottom: 7px;

    color: #b18437;

    font-family: "Noto Serif JP", serif;
    font-size: 1.2rem;
    font-weight: 600;

    letter-spacing: 0.18em;
}

.lp-reservation-schedule__head h2 {
    margin: 0;

    color: #173f5b;

    font-family: "Noto Serif JP", serif;
    font-size: 2.6rem;
    font-weight: 600;

    line-height: 1.5;
}

.lp-reservation-schedule__head p {
    margin: 10px 0 0;

    color: #59656d;

    font-size: 1.5rem;
    line-height: 1.8;
}


/* =========================================================
   IFRAME
========================================================= */

.lp-reservation-schedule__frame {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    overflow: hidden;

    background: #ffffff;

    border-top: 3px solid #173f5b;
    border-bottom: 1px solid #d7dde1;

    box-shadow: 0 12px 35px rgba(23, 63, 91, 0.08);
}

.lp-reservation-schedule__frame iframe {
    display: block;

    width: 100%;
    height: 210px;

    margin: 0;

    border: 0;
}


/* =========================================================
   SMARTPHONE
========================================================= */

@media screen and (max-width: 767px) {

    .lp-reservation-schedule {
        padding: 48px 16px 52px;
    }

    .lp-reservation-schedule__head {
        margin-bottom: 22px;
    }

    .lp-reservation-schedule__en {
        font-size: 1.05rem;
    }

    .lp-reservation-schedule__head h2 {
        font-size: 2.1rem;
    }

    .lp-reservation-schedule__head p {
        font-size: 1.4rem;
        line-height: 1.7;
    }

    .lp-reservation-schedule__frame {
        width: 100%;
        max-width: none;
    }

    .lp-reservation-schedule__frame iframe {
        width: 100%;

        /*
         * 予約システム側の表示がSPで縦に伸びる場合に備える
         */
        height: 250px;
    }

}


/* =========================================================
   ABOUT SHORT-TERM TREATMENT
========================================================= */

.lp-about-short {
    position: relative;

    width: 100%;

    padding: 100px 30px;

    overflow: hidden;

    background: #f5f6f6;
}


/* 背景装飾 */

.lp-about-short::before {
    position: absolute;

    top: -180px;
    left: -80px;

    width: 520px;
    height: 520px;

    content: "";

    border: 1px solid rgba(177, 132, 55, 0.12);

    transform: rotate(35deg);
}


.lp-about-short__inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.75fr 1.6fr;
    align-items: start;

    width: min(1180px, 100%);

    margin: 0 auto;

    gap: 85px;
}


/* =========================================================
   HEADING
========================================================= */

.lp-about-short__heading {
    position: sticky;

    top: 100px;

    padding-top: 8px;
}


.lp-about-short__en {
    display: block;

    margin-bottom: 25px;

    color: #b18437;

    font-family:
        "Times New Roman",
        serif;

    font-size: 1.25rem;
    font-weight: 600;

    line-height: 1.6;

    letter-spacing: 0.18em;
}


.lp-about-short__heading h2 {
    margin: 0;

    color: #173f5b;

    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        serif;

    font-size: 3.3rem;
    font-weight: 500;

    line-height: 1.5;

    letter-spacing: 0.04em;
}


.lp-about-short__line {
    display: block;

    width: 70px;
    height: 1px;

    margin-top: 32px;

    background: #b18437;
}


/* =========================================================
   BODY
========================================================= */

.lp-about-short__body {
    position: relative;

    padding-left: 50px;

    border-left: 1px solid #d7d9d9;
}


.lp-about-short__lead {
    margin: 0 0 32px !important;

    color: #173f5b;

    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        serif;

    font-size: 2.2rem !important;

    line-height: 1.8 !important;
}


.lp-about-short__body > p:not(.lp-about-short__lead):not(.lp-about-short__note) {
    margin: 0 0 23px;

    color: #3f484d;

    font-size: 1.55rem;

    line-height: 2;
}


.lp-about-short__body p strong {
    color: #173f5b;

    font-weight: 700;
}


/* =========================================================
   THREE POINTS
========================================================= */

.lp-about-short__points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 42px;

    border-top: 1px solid #b18437;
    border-bottom: 1px solid #b18437;
}


.lp-about-short__points > div {
    position: relative;

    padding: 27px 22px 29px;
}


.lp-about-short__points > div + div {
    border-left: 1px solid rgba(177, 132, 55, 0.4);
}


.lp-about-short__points span {
    display: block;

    margin-bottom: 11px;

    color: #b18437;

    font-family:
        "Times New Roman",
        serif;

    font-size: 1.15rem;

    letter-spacing: 0.12em;
}


.lp-about-short__points strong {
    color: #173f5b;

    font-size: 1.45rem;
    font-weight: 600;

    line-height: 1.7;
}


/* =========================================================
   NOTE
========================================================= */

.lp-about-short__note {
    margin: 22px 0 0;

    color: #727a7f;

    font-size: 1.2rem;

    line-height: 1.7;
}


/* =========================================================
   SMARTPHONE
========================================================= */

@media screen and (max-width: 767px) {

    .lp-about-short {
        padding:
            65px
            20px;
    }


    .lp-about-short__inner {
        display: block;
    }


    .lp-about-short__heading {
        position: static;

        margin-bottom: 35px;
    }


    .lp-about-short__en {
        margin-bottom: 12px;

        font-size: 1.05rem;
    }


    .lp-about-short__heading h2 {
        font-size: 2.5rem;
    }


    .lp-about-short__line {
        width: 50px;

        margin-top: 20px;
    }


    /* BODY */

    .lp-about-short__body {
        padding-left: 0;

        border-left: 0;
    }


    .lp-about-short__lead {
        margin-bottom: 25px !important;

        font-size: 1.8rem !important;

        line-height: 1.8 !important;
    }


    .lp-about-short__body > p:not(.lp-about-short__lead):not(.lp-about-short__note) {
        margin-bottom: 20px;

        font-size: 1.45rem;

        line-height: 1.9;
    }


    /* POINT */

    .lp-about-short__points {
        grid-template-columns: 1fr;

        margin-top: 32px;
    }


    .lp-about-short__points > div {
        display: grid;
        grid-template-columns: 42px 1fr;
        align-items: center;

        padding: 18px 5px;
    }


    .lp-about-short__points > div + div {
        border-top: 1px solid rgba(177, 132, 55, 0.35);
        border-left: 0;
    }


    .lp-about-short__points span {
        margin: 0;

        font-size: 1.1rem;
    }


    .lp-about-short__points strong {
        font-size: 1.4rem;

        line-height: 1.6;
    }


    .lp-about-short__points strong br {
        display: none;
    }


    .lp-about-short__note {
        margin-top: 18px;

        font-size: 1.15rem;
    }

}