/*######################################################################
共通設定
######################################################################*/
@charset "UTF-8";

: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-sans-jp);
    /* フォントサイズ */
    --common__font-size: 1.125cqw;
    /* フォントサイズ（レスポンシブ） */
    --common__font-size__responsive: 3.5cqw;
    /* フォントカラー */
    --common__p--color: #303030;
    /* フォントウェイト */
    --common__font-weight: 400;
    /* メインコンテンツwidth */
    --main__content--width: 520px;
}

/* @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;
    font-style: normal;
    font-display: swap;
} */

body {
    font-family: var(--common__font-family);
    font-weight: var(--common__font-weight);
    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;
}

/*######################################################################
コンテンツ
######################################################################*/

/*------------------------------------------------------------
トップページへ戻るボタン
------------------------------------------------------------*/

.btn__home {
    position: fixed;
    right: 3%;
    bottom: 3%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: .2s;

    button{
        background: #333333;
        color: #ffffff;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        aspect-ratio: 1;
        font-size: 1.2rem;
        font-weight: 700;
        font-family: inherit;
        line-height: 1.2;
        padding: 0 1.2em;
        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }
}

.is-active {
  opacity: 1;
  visibility: visible;
}

/*------------------------------------------------------------
スライダー（Splide.js）
------------------------------------------------------------*/

.splide__wrapper {
    position: absolute;
    overflow: hidden;
    width: 100%;
    margin-inline: auto;
}

.splide__wrapper__s-2 {
    top: 20%;
    
    .splide__track {
        padding-top: 1%;
        padding-bottom: 3%;
    }
    
    .splide__slide {
        box-shadow: 0.4em 0.4em 0.5em rgba(212, 185, 189, 0.46);
    }
}

.splide__wrapper__s-9 {
    top: 23%;
}

.splide__arrow {
    background: #dda7b0;
    opacity: 1;
    width: 16cqw;
    height: 16cqw;

    svg {
        fill: #ffffff;
        width: 6cqw;
        height: 6cqw;
    }
}
    
.splide__arrow--prev {
    left: -7cqw;
    justify-content: end;
    padding-right: 2cqw;
}

.splide__arrow--next {
    right: -7cqw;
    justify-content: start;
    padding-left: 2cqw;
}

/*------------------------------------------------------------
アコーディオン（CSSのみ）
------------------------------------------------------------*/

details {
    margin-bottom: 17%;

    summary {
        list-style-type: none;
        margin-bottom: -10%;
        position: relative;
        z-index: 2;

        cursor: pointer;
    }

    .icon {
        display: block;
        position: relative;
        /* width: 2em; */
        width: 4cqw;

        position: absolute;
        top: 50%;
        right: 4%;
        translate: 0 -50%;

        /* アイコンのバーのスタイル */
        &::before,
        &::after {
            content: "";
            position: absolute;
            display: block;
            width: 4cqw;
            height: 3px;
            background-color: #ffffff;
        }
        &::before {
            left: 0;
        }
        &::after {
            right: 0;
            transform: rotate(90deg);
            transition: 0.4s;
        }
        
    }
    
    &[open] {
        .icon {
            &::after {
                rotate: -90deg;
            }
        }
    }
    

    .accordion-content {
        overflow: hidden;
    }
}

/*------------------------------------------------------------
カラム
------------------------------------------------------------*/

.column--left,
.column--right {
    width: calc( (100% - var(--main__content--width)) / 2);
}


.column--left {
    order: 1;
    container-type: inline-size;
}

.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 {
        width: 100%;
        height: 100dvh;
        position: sticky;
        top: 0;
        left: 0;
        display: grid;
        place-items: center;
    }
    
    .cta__pc__inner {
        width: 90%;
        max-width: 480px;
        container-type: inline-size;
    }
}

/*------------------------------------------------------------
price
------------------------------------------------------------*/

[class^="s-"] {
    position: relative;
}

.price {
    position: absolute;
    font-family: inherit;
    font-weight: inherit;
}

.price__cta {
    position: absolute;
    font-family: inherit;
    font-weight: inherit;
}

.comma {
    margin-left: -0.05em;
    /* margin-right: -0.05em; */
}

.small {
    font-size: 0.6em;
}

/*------------------------------------------------------------
cta
------------------------------------------------------------*/

[class^="cta__s-"] {
    position: relative;
}

.cta__wrapper--s-1 {
    position: absolute;
    bottom: 2%;
    left: 0;
    margin-inline: auto;
    width: 100%;

    .cta {
        width: 92%;
    }
    
    .price__cta--1 {
        top: 48.5%;
        left: 9%;
        font-size: 7cqw;
    }
    
    .price__cta--2 {
        top: 40%;
        left: 41%;
        font-size: 18cqw;
    }
    
    .price__cta--3 {
        top: 60%;
        left: 35%;
        font-size: 7cqw;
        
        .small {
            font-size: 0.7em;
            margin-right: 0.1em;
        }
    }

    .btn {
        bottom: 12%;
        width: 95%;
    }
}

.cta {
    position: relative;
    left: 0;
    margin-inline: auto;
    width: 100%;
    container-type: inline-size;
}

.btn {
    position: absolute;
    bottom: 15.5%;
    left: 0;
    right: -1%;
    margin-inline: auto;
    width: 85%;
}

.price__cta--1 {
    top: 48.7%;
    left: 12%;
    font-size: 6.5cqw;
    color: #ffffff;
    font-family: var(--shippori-mincho);
    font-weight: 600;
}

.price__cta--2 {
    top: 41.5%;
    left: 42%;
    font-size: 16.5cqw;
    color: #c33952;
    font-family: var(--shippori-mincho);
    font-weight: 600;
}

.price__cta--3 {
    top: 59%;
    left: 36%;
    font-size: 6.5cqw;
    color: #ffffff;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;

    .small {
        font-size: 0.7em;
        margin-right: 0.1em;
    }
}

/*------------------------------------------------------------
section
------------------------------------------------------------*/

/*--------------- s-4 ---------------*/
.s-4 {
    margin-top: -1.5%;
}

/*--------------- s-5 ---------------*/
.s-5 {
    margin: 10% auto;
}

/*--------------- s-6 ---------------*/
.s-6__inner {
    position: absolute;
    right: 0;
    width: 97%;
}

.s-6-1 {
    top: 1%;
}

.s-6-2 {
    top: 51.5%;
    left: 0;
    width: 95%;
    margin-inline: auto;
}

/*--------------- s-13 ---------------*/

/* 店舗情報 */
.info__item {
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 92%;
    font-size: 3.5cqw;
    color: #434343;
    white-space: pre-wrap;
    text-align: center;
}

.info__item--1 {
    top: 13%;
}

.info__item--2 {
    top: 20.3%;
}

.info__item--3 {
    top: 27.5%;
}

.info__item--4 {
    top: 35%;
}

.info__item--5 {
    top: 42.2%;
}

.info__item--6 {
    top: 49.6%;
}

.info__item--7 {
    top: 57.2%;
}

.info__item--8 {
    top: 66.5%;
}

/* グーグルマップ */
.google-map {
    position: absolute;
    top: 78%;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 92%;
    aspect-ratio: 5 / 3;

    iframe {
        width: 100%;
        height: 100%;
    }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/

.site-footer {
    font-family: inherit;
    font-weight: inherit;
    font-size: 3cqw;
    padding: 1.5em 0;
    color: #ffffff;
    background-color: #4c4ac4;
}

.footer__nav {

    ul {
        display: flex;
        justify-content: center;
        gap: 2em;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    a {
        text-decoration: none;
    }
}

.copyright__copyright {
    text-align: center;
    margin-top: 1em;
}

/*######################################################################
responsive
######################################################################*/

@media (width < 1080px) {

    .cta__pc,
    .logo__pc {
        display: none !important;
    }
}

@media (width < 768px) {
    /* SPでのみ表示 */
    /* SPでのみ改行 */
    .sp,
    .br__sp {
        display: block;
    }

    /* PCでのみ表示 */
    /* PCでのみ改行 */
    .pc,
    .br__pc {
        display: none;
    }

    /* TOPPAGEボタン */
    .btn__home {
        display: none;
    }
}
