/*######################################################################
共通設定
######################################################################*/

:root {
    
    /* font */
    --noto-sans-jp: "Noto Sans JP", sans-serif;
    --noto-serif-jp: "Noto Serif JP", serif;
    --shippori-mincho: "Shippori Mincho", serif;


    /*--------------- 一括設定 ---------------*/
    
    /* フォントの種類 */
    --common__font-family: var(--noto-serif-jp);
    /* フォントサイズ */
    --common__font-size: 1.125cqw;
    /* フォントサイズ（レスポンシブ） */
    --common__font-size__responsive: 3.5cqw;
    /* フォントカラー */
    --common__p--color: #642c26;
    /* メインコンテンツwidth */
    --main__content--width: 750px;
    --main__content--width: 580px;
}

@font-face {
    font-family: 'LINE Seed JP';
    src: url('../fonts/LINESeedJP_OTF_Rg.woff2') format('woff2'),
        url('../fonts/LINESeedJP_OTF_Rg.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LINE Seed JP';
    src: url('../fonts/LINESeedJP_OTF_Bd.woff2') format('woff2'),
        url('../fonts/LINESeedJP_OTF_Bd.woff') format('woff');
    font-weight: 700; /* Bold */
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'LINE Seed JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    height: 100%;
    
    color: var(--common__p--color);
    container-type: inline-size;
    
    &::before {
        content: "";
        display: block;
        width: 100%;
        height: 100dvh;
        position: fixed;
        top: 0;
        left: 0;
        background-image: url("../images/bg_pc.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    &.page {
        margin: 0 auto;
    }
}

.site {
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
}

h1,
p,
figure {
    margin: 0;
}

/* imgタグの調整 */
img {
    vertical-align: top;
    width: 100%;
}

/* SPでのみ表示 */
.sp {
    display: none;
}

/* SPでのみ折り返し */
.br__sp {
    display: none;
}

/*--------------- メインコンテンツ ---------------*/

#content {

}

/*######################################################################
コンテンツ

    clamp: 記述なし = 320-768 768-1440
######################################################################*/


.btn {
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
}





/*------------------------------------------------------------
header
------------------------------------------------------------*/

/*--------------- カラム ---------------*/

.column--left,
.column--right {
    width: calc( (100% - var(--main__content--width)) / 2);
}


.column--left {
    order: 1;
    container-type: inline-size;
    
    h1 {
        font-size: 9cqw;
        position: fixed;
        top: 20%;
        left: 3%;
        font-weight: 900;
    }
}

.column--center {
    order: 2;
    container-type: inline-size;
    position: relative;
    font-size: var(--common__font-size);
    background-color: #ffffff;
    width: var(--main__content--width);
    max-width: 100%;
}

.column--right {
    order: 3;
    container-type: inline-size;
}

.cta--pc {
    position: fixed;
    bottom: 5%;
    right: 10cqw;
    width: 70cqw;
    max-width: 800px;
}

/*------------------------------------------------------------
cta
------------------------------------------------------------*/

.cta {
    position: relative;
}

.btn__cta__pc {
    width: 75%;
    top: 30%;
}

.btn__cta {
    width: 75%;
    top: 32%;
}

/*------------------------------------------------------------
section 3 / menu
------------------------------------------------------------*/

.s-3 {
    margin-top: -1em;
    margin-bottom: -30%;
    position: relative;
}

.price {
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
    font-size: 4.2cqw;
}

.price--1 {
    top: 56.6%;
}

.price--2 {
    top: 73.7%;
}

.price--3 {
    top: 91.5%;
}

/*------------------------------------------------------------
section 5
------------------------------------------------------------*/

.s-5 {
    margin-top: 2em;
    margin-bottom: 12%;
    position: relative;
}

.price--4,
.price--5 {
    color: #ffffff;
    left: unset;
    right: unset;
    margin-inline: unset;
}

.price--4 {
    top: 25.3%;
    right: 12.5%;
}

.price--5 {
    top: 37%;
    left: 13%;
}

/*------------------------------------------------------------
section 7
------------------------------------------------------------*/

.s-7 {
    margin-bottom: 8%;
}

/*------------------------------------------------------------
section 10 / info
------------------------------------------------------------*/

.s-10 {
    position: relative;
}

.info__content {
    position: absolute;
    top: 17%;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 90%;
}


.google-map {
    width: 100;
    aspect-ratio: 2 / 1.1;

    iframe {
        width: 100%;
        height: 100%;
    }
}

.info__list {
    font-size: 3.1cqw;
    margin-top: 2.5em;

    p {
        white-space: pre-wrap;
        line-height: 1.8;
    }
}

.info__list__2col {
    display: flex;
}


/*------------------------------------------------------------
footer
------------------------------------------------------------*/

.site-footer {
    font-size: 3cqw;
    padding: 2em 0;
    background-color: #eae5cf;
}

.copyright__copyright {
    text-align: center;
    margin-top: 0.5em;
}

/*######################################################################
responsive
######################################################################*/

@media (width < 1080px) {
    .pc__bg {
        display: none;
    }
}



@media (width < 768px) {
    /* SPでのみ表示 */
    /* SPでのみ改行 */
    .sp,
    .br__sp {
        display: block;
    }

    /* PCでのみ表示 */
    /* PCでのみ改行 */
    .pc,
    .br__pc {
        display: none;
    }
}
