/*######################################################################
共通設定
######################################################################*/
@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: #332e2e;
    /* フォントウェイト */
    --common__font-weight: 400;
    /* メインコンテンツwidth */
    --main__content--width: 520px;
}

/* @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;
} */

html {
    scroll-behavior: smooth;
}

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
------------------------------------------------------------*/

.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{
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 100%;
}

.cta {
    position: relative;
    container-type: inline-size;
}

.btn {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
    margin-inline: auto;
    padding-left: 3%;
    width: 100%;
}

/*------------------------------------------------------------
section
------------------------------------------------------------*/

[class^="s-"] {
    position: relative;
}

/*--------------- s-3 ---------------*/
.s-3 {
    margin-top: -10%;
    margin-bottom: 20%;
}

/*--------------- s-5 ---------------*/
.s-5 {
    margin-top: -2%;
}

/*--------------- s-9 ---------------*/
.s-9 {
    margin-top: -55%;
    margin-bottom: 4%;
}

/*--------------- s-10 ---------------*/
.s-10 {
    margin-top: 4%;
}

/*--------------- s-12 ---------------*/
.s-12 {
    margin-bottom: -20%;
}

/*--------------- s-14 ---------------*/
.s-14 {
    width: 95%;
    margin: 10% auto 12%;
}

/*--------------- s-15 ---------------*/
.s-15 {
    margin-bottom: 10%;
}


/*--------------- s-16 ---------------*/
.s-16 {
    background-image: linear-gradient( 132deg, 
        rgba(191, 114, 178, 0.302) 0%,
        rgba(159, 146, 207, 0.302) 51%, 
        rgba(124, 182, 242, 0.302) 100% 
    );
    padding: 10% 0 5%;
}

.s-16-title {
    width: 90%;
    margin: 0 auto 10%;
}

/* フォーム */
.contact-form {
    width: 85%;
    margin-inline: auto;
    font-family: inherit;
    font-size: 3.5cqw;
}

/* 各入力項目のまとまり */
.form-group {
    margin-bottom: 1.5em;
}

/* ラベル（項目名） */
.form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 700;
}

/* 入力欄共通のスタイル */
.wpcf7-form-control:not(.wpcf7-submit):not([type="checkbox"]):not(.wpcf7-acceptance) {
    width: 100%;
    padding: 0.75em 1em;
    border: 1px solid #aaa;
    /* border-radius: 2px; */
    background-color: #fff;
    box-sizing: border-box;
}

/* 氏名の「姓・名」を横並びにする */
.name-fields p {
    display: flex;
    gap: 0.5em;
}

.name-fields .wpcf7-form-control {
    flex: 1;
}

/* 同意チェックボックスの中央寄せ */
.form-acceptance {
    text-align: center;
    margin-top: 2em;

    .wpcf7-list-item {
        margin: 0;

        input[type="checkbox"] {
            scale: 1.5;
            margin-right: 0.5em;
        }
    }
}

/* 送信ボタン */
.form-submit {
    text-align: center;
    position: relative;
    margin: 1em 0;
}

.wpcf7-spinner {
    position: absolute;
}

/* 注釈 */
.s-16__annotation {
    text-align: center;
    font-size: 2.5cqw;
}

/*--------------- s-17 ---------------*/
.s-17 {
    margin-top: -1%;
    margin-bottom: -20%;
}

/* 店舗情報 */
.info__content {
    text-align: center;
}

.info__item__inner {
    display: inline-block;
    text-align: left;
}

.info__item {
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    font-size: 4cqw;
    white-space: pre-wrap;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
}

.info__item--1 {
    top: 36.7%;
}

.info__item--2 {
    top: 48.5%;
    line-height: 1.2;
}

.info__item--3 {
    top: 59%;
}

.info__item--4 {
    top: 68%;
}

.info__item--5 {
    top: 77%;
}

.small--tel,
.small--access {
    font-size: 0.7em;
}

/*--------------- s-18 ---------------*/

/* グーグルマップ */
.google-map {
    margin-inline: auto;
    width: 90%;
    aspect-ratio: 4 / 3;

    iframe {
        width: 100%;
        height: 100%;
    }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/

.site-footer {
    font-family: inherit;
    font-weight: inherit;
    font-size: 3cqw;
    padding: 1.5em 0;
    color: inherit;
    background-color: #ffeaef;
}

.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;
    }
}
