/* ========================================
   FLOW HERO
======================================== */

.flow-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.flow-hero__image {
    position: absolute;
    inset: 0;
}

.flow-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flow-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.flow-hero__content {
    position: relative;
    z-index: 2;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 120px 8%;
}

.flow-hero__label {
    margin: 0 0 20px;

    color: #d6a94a;

    font-size: 14px;
    letter-spacing: 0.3em;
}

.flow-hero h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(40px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.25;
}

.flow-hero__lead {
    margin: 30px 0 0;

    color: #fff;

    font-size: 16px;
    line-height: 2;
}
/* =========================================================
   FLOW — STEP AREA
   Heroには触れない
========================================================= */

.flow-steps {
    position: relative;
    width: 100%;
    padding: 70px 0 140px;
    background: #080808;
}

.flow-steps__inner {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   STEP
========================================================= */

.flow-step {
    position: relative;

    display: grid;
    grid-template-columns: 135px 390px minmax(0, 1fr);

    min-height: 430px;

    margin: 0;

    background: #0d0d0c;

    border-top: 1px solid rgba(201, 155, 69, 0.38);
    border-left: 1px solid rgba(201, 155, 69, 0.18);
    border-right: 1px solid rgba(201, 155, 69, 0.18);

    overflow: hidden;
}

.flow-step:last-child {
    border-bottom: 1px solid rgba(201, 155, 69, 0.38);
}


/* =========================================================
   LEFT — STEP INFO
========================================================= */

.flow-step__info {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 35px 18px;

    background:
        linear-gradient(
            180deg,
            rgba(201, 155, 69, 0.025),
            rgba(201, 155, 69, 0.065)
        );

    border-right: 1px solid rgba(201, 155, 69, 0.28);

    text-align: center;
}


/* STEP */

.flow-step__label {
    margin: 0 0 8px;

    color: #c99b45;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 12px;
    letter-spacing: 0.24em;
}


/* NUMBER */

.flow-step__number {
    margin: 0;

    color: #c99b45;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 58px;
    font-weight: 400;

    line-height: 1;

    letter-spacing: 0.02em;
}


/* TITLE */

.flow-step__name {
    margin: 22px 0 0;

    color: #f2eee5;

    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.8;
    letter-spacing: 0.08em;
}


/* =========================================================
   STEP CONNECTOR
========================================================= */

.flow-step__line {
    position: absolute;

    left: 50%;
    bottom: -1px;

    width: 1px;
    height: 100%;

    background:
        linear-gradient(
            to bottom,
            rgba(201,155,69,0.08),
            rgba(201,155,69,0.55),
            rgba(201,155,69,0.08)
        );

    transform: translateX(-50%);
}


/* 丸いノード */

.flow-step__line::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 14px;
    height: 14px;

    background: #080808;

    border: 1px solid #c99b45;
    border-radius: 50%;

    transform: translate(-50%, -50%);

    box-shadow:
        0 0 0 5px #0d0d0c;
}


/* =========================================================
   IMAGE
========================================================= */

.flow-step__image {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: 430px;

    overflow: hidden;

    background: #111;
}

.flow-step__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.2,.7,.2,1),
        filter 1s ease;

    filter: saturate(0.88);
}

.flow-step:hover .flow-step__image img {
    transform: scale(1.025);
    filter: saturate(1);
}


/* 写真の端を少し暗くする */

.flow-step__image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 65%,
            rgba(0,0,0,0.18)
        );

    pointer-events: none;
}


/* =========================================================
   RIGHT — CONTENT
========================================================= */

.flow-step__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 55px 65px;

    background:
        linear-gradient(
            135deg,
            rgba(201,155,69,0.025),
            transparent 55%
        );
}


/* メイン見出し */

.flow-step__content h3 {
    position: relative;

    margin: 0 0 30px;
    padding-left: 22px;

    color: #c99b45;

    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: 17px;
    font-weight: 400;

    line-height: 1.9;
    letter-spacing: 0.06em;
}

.flow-step__content h3::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0.35em;

    width: 2px;
    height: 1.8em;

    background: #c99b45;
}


/* 本文 */

.flow-step__content p {
    margin: 0 0 22px;

    color: #bcb7ae;

    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: 13px;

    line-height: 2.25;
    letter-spacing: 0.035em;
}

.flow-step__content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CHOICE BOX
========================================================= */

.flow-step__choices {
    margin: 4px 0 24px;
}

.flow-step__choices p {
    position: relative;

    margin: 0 0 10px;
    padding: 12px 18px;

    background: rgba(201, 155, 69, 0.045);

    border: 1px solid rgba(201, 155, 69, 0.35);

    color: #d8c9aa;

    font-size: 12px;

    line-height: 1.8;
}

.flow-step__choices p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   NOTE
========================================================= */

.flow-step__note {
    margin-top: 8px;
    padding: 18px 20px;

    background: rgba(201, 155, 69, 0.055);

    border-left: 2px solid #c99b45;

    color: #d7d0c5;

    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: 12px;

    line-height: 2.1;
    letter-spacing: 0.035em;
}


/* =========================================================
   LIST
========================================================= */

.flow-step__list {
    margin: 0 0 22px;
    padding: 0;

    list-style: none;
}

.flow-step__list li {
    position: relative;

    margin: 0 0 11px;
    padding-left: 20px;

    color: #c1bbb1;

    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: 12.5px;

    line-height: 2;
    letter-spacing: 0.025em;
}

.flow-step__list li:last-child {
    margin-bottom: 0;
}

.flow-step__list li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: #c99b45;

    font-family: Georgia, serif;
    font-size: 12px;
}


/* =========================================================
   STEP 02 / 04 / 06
   写真と説明の位置を少し変える
   ※左のSTEPナビは固定
========================================================= */

.flow-step:nth-child(even) {
    background: #0b0b0a;
}


/* =========================================================
   DESKTOP LARGE
========================================================= */

@media (min-width: 1200px) {

    .flow-step {
        grid-template-columns:
            145px
            410px
            minmax(0, 1fr);

        min-height: 455px;
    }

    .flow-step__image {
        min-height: 455px;
    }

    .flow-step__content {
        padding: 65px 72px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .flow-steps {
        padding: 55px 0 110px;
    }

    .flow-steps__inner {
        width: calc(100% - 40px);
    }

    .flow-step {
        grid-template-columns:
            100px
            300px
            minmax(0, 1fr);

        min-height: 400px;
    }

    .flow-step__image {
        min-height: 400px;
    }

    .flow-step__number {
        font-size: 48px;
    }

    .flow-step__name {
        font-size: 13px;
    }

    .flow-step__content {
        padding: 40px 35px;
    }

    .flow-step__content h3 {
        font-size: 15px;
    }

    .flow-step__content p {
        font-size: 12px;
        line-height: 2.15;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .flow-steps {
        padding: 35px 0 80px;
    }

    .flow-steps__inner {
        width: calc(100% - 24px);
    }


    /* -----------------------------------------
       STEPを縦型に変更
    ----------------------------------------- */

    .flow-step {
        display: grid;

        grid-template-columns: 72px minmax(0, 1fr);

        min-height: 0;

        margin: 0;

        border-top: 1px solid rgba(201,155,69,0.35);
    }


    /* -----------------------------------------
       STEP INFO
    ----------------------------------------- */

    .flow-step__info {
        grid-column: 1;

        grid-row: 1 / span 2;

        justify-content: flex-start;

        padding: 27px 8px 30px;

        border-right: 1px solid rgba(201,155,69,0.28);
    }

    .flow-step__label {
        margin-bottom: 7px;

        font-size: 9px;

        letter-spacing: 0.18em;
    }

    .flow-step__number {
        font-size: 39px;
    }

    .flow-step__name {
        margin-top: 15px;

        font-size: 11px;
        line-height: 1.7;

        letter-spacing: 0.04em;
    }


    /* -----------------------------------------
       LINE
    ----------------------------------------- */

    .flow-step__line {
        left: 50%;

        top: 0;
        bottom: 0;

        height: 100%;
    }

    .flow-step__line::before {
        top: 95px;

        width: 11px;
        height: 11px;

        box-shadow:
            0 0 0 4px #0d0d0c;
    }


    /* -----------------------------------------
       IMAGE
    ----------------------------------------- */

    .flow-step__image {
        grid-column: 2;
        grid-row: 1;

        min-height: 0;

        height: auto;

        aspect-ratio: 1.18 / 1;
    }

    .flow-step__image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }


    /* -----------------------------------------
       CONTENT
    ----------------------------------------- */

    .flow-step__content {
        grid-column: 2;
        grid-row: 2;

        padding: 30px 22px 38px;

        min-width: 0;
    }

    .flow-step__content h3 {
        margin-bottom: 22px;
        padding-left: 16px;

        font-size: 14px;

        line-height: 1.85;
    }

    .flow-step__content h3::before {
        width: 2px;
        height: 1.75em;
    }

    .flow-step__content p {
        margin-bottom: 17px;

        font-size: 12px;

        line-height: 2.15;

        letter-spacing: 0.02em;
    }


    /* -----------------------------------------
       CHOICES
    ----------------------------------------- */

    .flow-step__choices {
        margin: 3px 0 20px;
    }

    .flow-step__choices p {
        margin-bottom: 8px;
        padding: 11px 13px;

        font-size: 11px;

        line-height: 1.8;
    }


    /* -----------------------------------------
       NOTE
    ----------------------------------------- */

    .flow-step__note {
        margin-top: 4px;
        padding: 14px 15px;

        font-size: 11px;

        line-height: 1.9;
    }


    /* -----------------------------------------
       LIST
    ----------------------------------------- */

    .flow-step__list {
        margin-bottom: 18px;
    }

    .flow-step__list li {
        margin-bottom: 8px;
        padding-left: 18px;

        font-size: 11.5px;

        line-height: 1.95;
    }


    /* -----------------------------------------
       LAST STEP
    ----------------------------------------- */

    .flow-step:last-child {
        border-bottom: 1px solid rgba(201,155,69,0.35);
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .flow-steps__inner {
        width: calc(100% - 16px);
    }

    .flow-step {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .flow-step__info {
        padding-left: 6px;
        padding-right: 6px;
    }

    .flow-step__number {
        font-size: 35px;
    }

    .flow-step__name {
        font-size: 10px;
    }

    .flow-step__content {
        padding: 27px 17px 34px;
    }

    .flow-step__content h3 {
        font-size: 13px;
    }

    .flow-step__content p {
        font-size: 11.5px;
    }

}
/* =========================================================
   FLOW — PC BRUSH UP
   901px以上
========================================================= */

@media (min-width: 901px) {

    /* STEP全体を広げる */
    .flow-steps__inner {
        width: min(1450px, calc(100% - 80px));
    }

    /* STEPの基本レイアウト */
    .flow-step {
        grid-template-columns:
            155px
            460px
            minmax(0, 1fr);

        min-height: 540px;
    }

    /* STEP番号エリア */
    .flow-step__info {
        padding: 40px 18px;
    }

    .flow-step__label {
        font-size: 12px;
        letter-spacing: 0.28em;
    }

    .flow-step__number {
        font-size: 62px;
        line-height: 1;
    }

    .flow-step__name {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.9;
    }

    /* STEP画像 */
    .flow-step__image {
        min-height: 540px;
    }

    .flow-step__image img {
        object-fit: cover;
    }

    /* 説明エリア */
    .flow-step__content {
        padding: 68px 72px;
    }

    .flow-step__content h3 {
        margin-bottom: 32px;
        padding-left: 24px;

        font-size: 17px;
        line-height: 1.9;
        letter-spacing: 0.07em;
    }

    .flow-step__content p {
        margin-bottom: 24px;

        font-size: 13px;
        line-height: 2.3;
        letter-spacing: 0.04em;
    }

    /* 選択肢 */
    .flow-step__choices {
        margin: 8px 0 26px;
    }

    .flow-step__choices p {
        margin-bottom: 11px;
        padding: 14px 20px;

        font-size: 12px;
        line-height: 1.9;
    }

    /* 注意書き */
    .flow-step__note {
        margin-top: 10px;
        padding: 20px 22px;

        font-size: 12px;
        line-height: 2.15;
    }

    /* チェックリスト */
    .flow-step__list {
        margin-bottom: 24px;
    }

    .flow-step__list li {
        margin-bottom: 12px;
        padding-left: 21px;

        font-size: 12.5px;
        line-height: 2;
    }

}


/* =========================================================
   FLOW — LARGE PC
========================================================= */

@media (min-width: 1200px) {

    .flow-steps__inner {
        width: min(1450px, calc(100% - 100px));
    }

    .flow-step {
        grid-template-columns:
            155px
            460px
            minmax(0, 1fr);

        min-height: 540px;
    }

    .flow-step__image {
        min-height: 540px;
    }

    .flow-step__content {
        padding: 72px 78px;
    }

}
/* =========================================================
   FLOW CTA
========================================================= */

.flow-cta {
    width: 100%;
    padding: 110px 0 130px;
    background: #11100e;
}


/* =========================================================
   CTA HEADING
========================================================= */

.flow-cta__heading {
    width: min(1200px, calc(100% - 80px));
    margin: 0 auto 65px;
    text-align: center;
}

.flow-cta__heading h2 {
    margin: 0 0 24px;

    color: #f3eee6;

    font-family: "Noto Serif JP", serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.5;

    letter-spacing: 0.06em;
    white-space: nowrap;
}

.flow-cta__heading p {
    margin: 0;

    color: #e7e0d5;

    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    line-height: 2.1;

    letter-spacing: 0.05em;
}


/* =========================================================
   CTA CARD
========================================================= */

.flow-cta__card {
    width: min(1220px, calc(100% - 80px));

    margin: 0 auto;

    display: grid;
    grid-template-columns: 50% 50%;

    border: 1px solid rgba(201, 154, 58, 0.75);

    background: #0c0b09;

    overflow: hidden;
}


/* =========================================================
   CONTENT
========================================================= */

.flow-cta__content {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 58px 65px;

    background:
        linear-gradient(
            135deg,
            #15130f 0%,
            #0b0a08 100%
        );
}

.flow-cta__label {
    margin: 0 0 22px;

    color: #cda03d;

    font-family: "Cormorant Garamond", serif;
    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.28em;

    white-space: nowrap;
}


.flow-cta__content h3 {
    margin: 0 0 28px;

    color: #d9a63d;

    font-family: "Noto Serif JP", serif;

    /* PCで大きすぎない */
    font-size: 32px;

    font-weight: 400;

    line-height: 1.5;

    letter-spacing: 0.04em;

    /* 絶対に途中で変な改行をさせない */
    white-space: nowrap;
}


.flow-cta__text {
    margin: 0 0 36px;

    color: #eee9df;

    font-family: "Noto Serif JP", serif;

    font-size: 14px;
    font-weight: 400;

    line-height: 2;

    letter-spacing: 0.03em;

    white-space: nowrap;
}


/* =========================================================
   BUTTON
========================================================= */

.flow-cta__button {
    width: 100%;
    max-width: 390px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 30px;

    box-sizing: border-box;

    color: #17130b;
    background: #dfb247;

    border: 1px solid #f0ce72;

    text-decoration: none;

    font-family: "Noto Serif JP", serif;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: 0.06em;

    box-shadow:
        0 0 10px rgba(225, 179, 72, 0.35),
        0 0 30px rgba(225, 179, 72, 0.20);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.flow-cta__button:hover {
    background: #edc158;

    box-shadow:
        0 0 14px rgba(239, 196, 91, 0.55),
        0 0 38px rgba(239, 196, 91, 0.35);

    transform: translateY(-2px);
}


.flow-cta__button-text {
    white-space: nowrap;
}


.flow-cta__button-arrow {
    flex-shrink: 0;

    margin-left: 20px;

    font-family: serif;
    font-size: 29px;
    font-weight: 400;

    line-height: 1;

    transition: transform 0.3s ease;
}


.flow-cta__button:hover .flow-cta__button-arrow {
    transform: translateX(7px);
}


/* =========================================================
   IMAGE
========================================================= */

.flow-cta__image {
    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;
}


.flow-cta__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .flow-cta__content {
        padding: 48px 45px;
    }

    .flow-cta__content h3 {
        font-size: 27px;
    }

    .flow-cta__text {
        font-size: 13px;
    }

    .flow-cta__button {
        height: 66px;
        font-size: 17px;
    }
}


/* =========================================================
   SMARTPHONE
   PCの構造・比率をそのまま縮小
========================================================= */

@media (max-width: 767px) {

    .flow-cta {
        padding: 70px 0 80px;
    }


    /* -----------------------------------------
       見出し
    ----------------------------------------- */

    .flow-cta__heading {
        width: calc(100% - 32px);

        margin-bottom: 40px;
    }

    .flow-cta__heading h2 {
        margin-bottom: 20px;

        font-size: 20px;
        line-height: 1.5;

        letter-spacing: 0.02em;

        white-space: nowrap;
    }

    .flow-cta__heading p {
        font-size: 11px;
        line-height: 2;

        letter-spacing: 0.02em;
    }


    /* -----------------------------------------
       CTA CARD
       PCと同じ横並び
    ----------------------------------------- */

    .flow-cta__card {
        width: calc(100% - 28px);

        grid-template-columns: 48% 52%;
    }


    /* -----------------------------------------
       CONTENT
    ----------------------------------------- */

    .flow-cta__content {
        padding: 34px 22px 36px;
    }

    .flow-cta__label {
        margin-bottom: 16px;

        font-size: 10px;
        letter-spacing: 0.20em;
    }


    .flow-cta__content h3 {
        margin-bottom: 20px;

        font-size: 18px;
        line-height: 1.55;

        letter-spacing: 0;

        white-space: nowrap;
    }


    .flow-cta__text {
        margin-bottom: 24px;

        font-size: 10px;
        line-height: 1.9;

        letter-spacing: 0;

        white-space: normal;
    }


    /* -----------------------------------------
       BUTTON
    ----------------------------------------- */

    .flow-cta__button {
        max-width: none;

        height: 54px;

        padding: 0 16px;

        font-size: 13px;
        letter-spacing: 0;

        box-shadow:
            0 0 8px rgba(225, 179, 72, 0.30),
            0 0 20px rgba(225, 179, 72, 0.16);
    }


    .flow-cta__button-arrow {
        margin-left: 10px;

        font-size: 22px;
    }


    /* -----------------------------------------
       IMAGE
    ----------------------------------------- */

    .flow-cta__image {
        aspect-ratio: 1 / 1;
    }

}
/* =========================================================
   SHOP INFORMATION
========================================================= */

.shop-info {
    position: relative;
    padding: 140px 0 160px;
    background: #0d0c0b;
    color: #f5f1e8;
}

.shop-info__inner {
    width: min(1100px, 90%);
    margin: 0 auto;
}

/* Heading */
.shop-info__heading {
    margin-bottom: 70px;
    text-align: center;
}

.shop-info__label {
    display: block;
    margin-bottom: 18px;
    color: #cfa545;
    font-family: "Times New Roman", serif;
    font-size: 14px;
    letter-spacing: 0.28em;
}

.shop-info__title {
    margin: 0;
    color: #f5f1e8;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.12em;
}

.shop-info__subtitle {
    margin: 18px 0 0;
    color: #aaa39a;
    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    letter-spacing: 0.12em;
}


/* Information */
.shop-info__content {
    border-top: 1px solid rgba(191, 151, 63, 0.45);
    border-bottom: 1px solid rgba(191, 151, 63, 0.45);
}

.shop-info__row {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: center;
    min-height: 105px;
    border-bottom: 1px solid rgba(191, 151, 63, 0.22);
}

.shop-info__row:last-child {
    border-bottom: none;
}


/* Label */
.shop-info__name {
    padding: 25px 35px;
    color: #cfa545;
    font-family: "Times New Roman", serif;
    font-size: 15px;
    letter-spacing: 0.22em;
}

.shop-info__name span {
    display: block;
    margin-top: 7px;
    color: #aaa39a;
    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    letter-spacing: 0.12em;
}


/* Text */
.shop-info__text {
    padding: 25px 35px;
    color: #eee9df;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.06em;
}

.shop-info__text a {
    color: #eee9df;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop-info__text a:hover {
    color: #cfa545;
}


/* Google Map */
.shop-info__map {
    margin-top: 70px;
    border: 1px solid rgba(191, 151, 63, 0.45);
    overflow: hidden;
}

.shop-info__map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
    filter: grayscale(100%) contrast(90%);
}
/* =========================
   SHOP MAP
========================= */

.shop-info__map {
    margin-top: 50px;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(214, 179, 106, 0.25);
}

.shop-info__map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}
@media (max-width: 768px) {

    .shop-info__map {
        margin-top: 35px;
    }

    .shop-info__map iframe {
        height: 320px;
    }

}
/* ==========================================================
   SHOP INFORMATION
   FINAL OVERRIDE
========================================================== */

.shop-info {
    width: 100%;
    padding: 150px 40px;
    background: #111;
    box-sizing: border-box;
}

.shop-info__inner {
    width: min(1240px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) 360px;
    column-gap: 45px;

    align-items: start;
    box-sizing: border-box;
}


/* ==========================================================
   HEADING
========================================================== */

.shop-info__heading {
    width: 100%;
    box-sizing: border-box;

    padding: 5px 0 5px 34px;

    border-left: 3px solid #d6b36a;
}

.shop-info__label {
    display: block;

    margin: 0 0 28px;

    color: #d6b36a;
    font-family: serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .25em;

    white-space: nowrap;
}

.shop-info__title {
    width: 100%;
    margin: 0;

    color: #f5f2eb;
    font-family: serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: .02em;

    white-space: normal;
}

.shop-info__subtitle {
    margin: 28px 0 0;

    color: #cfc8bd;
    font-family: serif;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: .05em;
}


/* ==========================================================
   INFORMATION
========================================================== */

.shop-info__content {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.shop-info__row {
    width: 100%;
    min-height: 120px;

    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    align-items: center;

    box-sizing: border-box;

    border-bottom: 1px solid rgba(214,179,106,.28);
}

.shop-info__row:first-child {
    border-top: 1px solid rgba(214,179,106,.28);
}

.shop-info__name {
    color: #d6a946;

    font-family: serif;
    font-size: 15px;
    font-weight: 600;

    letter-spacing: .2em;
}

.shop-info__name span {
    display: block;

    margin-top: 7px;

    color: #8f887e;

    font-size: 11px;
    font-weight: 400;
    letter-spacing: .08em;
}

.shop-info__text {
    min-width: 0;

    color: #eeeae3;

    font-family: serif;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .03em;

    overflow-wrap: break-word;
}

.shop-info__text a {
    color: #eeeae3;
    text-decoration: none;
}


/* ==========================================================
   MAP
========================================================== */

.shop-info__map {
    width: 100%;
    height: 430px;

    margin: 0;

    box-sizing: border-box;
    overflow: hidden;

    border: 1px solid rgba(214,179,106,.35);
}

.shop-info__map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .shop-info {
        padding: 110px 30px;
    }

    .shop-info__inner {
        grid-template-columns: 230px minmax(0, 1fr);
        column-gap: 40px;
        row-gap: 50px;
    }

    .shop-info__heading {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .shop-info__content {
        grid-column: 2;
        grid-row: 1;
    }

    .shop-info__map {
        grid-column: 2;
        grid-row: 2;

        height: 380px;
    }

    .shop-info__title {
        font-size: 42px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 768px) {

    .shop-info {
        padding: 90px 20px;
    }

    .shop-info__inner {
        display: block;
        width: 100%;
    }


    /* Heading */

    .shop-info__heading {
        width: 100%;

        margin: 0 0 50px;
        padding: 0 0 0 20px;

        border-left-width: 2px;
    }

    .shop-info__label {
        margin-bottom: 18px;

        font-size: 11px;
        letter-spacing: .2em;
    }

    .shop-info__title {
        font-size: 36px;
        line-height: 1.3;

        white-space: normal;
    }

    .shop-info__subtitle {
        margin-top: 18px;

        font-size: 13px;
    }


    /* Information */

    .shop-info__content {
        width: 100%;
    }

    .shop-info__row {
        min-height: 95px;

        grid-template-columns: 105px minmax(0, 1fr);
        column-gap: 18px;
    }

    .shop-info__name {
        font-size: 12px;
        letter-spacing: .12em;
    }

    .shop-info__name span {
        margin-top: 5px;
        font-size: 9px;
    }

    .shop-info__text {
        font-size: 14px;
        line-height: 1.7;
    }


    /* Map */

    .shop-info__map {
        width: 100%;
        height: 300px;

        margin-top: 40px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .shop-info {
        padding: 75px 16px;
    }

    .shop-info__title {
        font-size: 32px;
    }

    .shop-info__row {
        grid-template-columns: 95px minmax(0, 1fr);
        column-gap: 14px;
    }

    .shop-info__text {
        font-size: 13px;
    }

    .shop-info__map {
        height: 270px;
    }

}
/* ==========================================================
   SHOP INFORMATION - HEADING SIZE FIX
========================================================== */

.shop-info__heading {
    padding-left: 28px;
}

.shop-info__label {
    font-size: 12px;
    margin-bottom: 22px;
    letter-spacing: .22em;
}

.shop-info__title {
    font-size: 38px;
    line-height: 1.35;
    letter-spacing: .01em;
}

.shop-info__subtitle {
    margin-top: 22px;
    font-size: 14px;
}


/* ==========================================================
   PC
========================================================== */

@media (min-width: 1101px) {

    .shop-info__inner {
        grid-template-columns: 260px minmax(0, 1fr) 360px;
        column-gap: 45px;
    }

    .shop-info__title {
        font-size: 32px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .shop-info__title {
        font-size: 34px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 768px) {

    .shop-info__title {
        font-size: 32px;
        line-height: 1.35;
    }

}
/* ==========================================================
   SHOP INFORMATION / MOBILE LABEL FIX
========================================================== */

@media (max-width: 768px) {

    .shop-info__name {
        min-width: 125px;
    }

    .shop-info__name span {
        white-space: nowrap;
        display: block;
    }

}