/*######################################################################
共通設定
######################################################################*/
@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;
}

/*--------------- メインコンテンツ ---------------*/

#content {

}

/*######################################################################
コンテンツ

    clamp: 記述なし = 320-768 768-1440
######################################################################*/

/*------------------------------------------------------------
header
------------------------------------------------------------*/

.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;
}

/*--------------- カラム ---------------*/

.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;
    }
}

/*------------------------------------------------------------
cta
------------------------------------------------------------*/

[class^="cta__s-"] {
    position: relative;
}

.cta__s-2,
.cta__s-11 {
    background-color: #f1d7dc;
    padding: 8% 4% 6%;
}

.cta__inner {
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    /* width: 100%; */
}

.cta__inner--s-7,
.cta__inner--s-9,
.cta__inner--s-14 {
    width: 95%;
}

.cta__inner--s-7,
.cta__inner--s-9 {
    bottom: 3%;
}

.cta__inner--s-14 {
    bottom: 4%;
}

.cta {
    position: relative;
    left: 1%;
    container-type: inline-size;
}

.btn {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 2%;
    margin-inline: auto;
    width: 92%;
}

/*------------------------------------------------------------
section
------------------------------------------------------------*/

[class^="s-"] {
    position: relative;
}

.price {
    position: absolute;
    font-family: inherit;
    font-weight: inherit;
}

.comma {
    margin-left: -0.05em;
    margin-right: -0.05em;
}

.small {
    font-size: 0.6em;
}

/*--------------- slider ---------------*/
.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;
}

.splide__slide--1 {
    position: relative;

    &::before,
    &::after {
        content: "";
        display: block;
        position: absolute;
        z-index: 10; /* 画像より前面に配置 */
        
        backdrop-filter: blur(5px); 
        background-color: rgba(255, 255, 255, 0); 
        -webkit-mask-image: 
            linear-gradient(to right, transparent, black 5%, black 95%, transparent),
            linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
        mask-composite: intersect;
        -webkit-mask-composite: source-in;
        pointer-events: none; 
            
    }

    &::before {
        top: 77.5%;
        left: 9%;
        width: 37%;
        height: 3%;
    }

    &::after {
        top: 75%;
        left: 68.5%;
        width: 25%;
        height: 4%;
    }
    
}

/*--------------- Accordion ---------------*/

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;
    }
}
    

/*--------------- s-2 ---------------*/
.s-2 {
    margin-top: 10%;
}

/*--------------- s-6 ---------------*/
.s-6 {
    background-color: #f1d7dc;
    margin-top: 7%;
    padding-top: 10%;
    padding-bottom: 11%;
}

.s-6--1 {
    margin-top: -17%;
    margin-bottom: 3%;
}

/*--------------- s-7 ---------------*/
.s-7 {
    margin: 11% auto 10%;
    width: 88%;
}

/*--------------- s-13 ---------------*/
.s-13 {
    margin: 12% auto 8%;
    margin: 12% auto 25%;
}

.s-13__title {
    width: 90%;
    margin-inline: auto;
    margin-bottom: 10%;
}

/*--------------- s-15 ---------------*/
.s-15 {
    width: 90%;
    margin: 15% auto 10%;
}

.google-map {
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 100%;
    aspect-ratio: 5 / 3;

    iframe {
        width: 100%;
        height: 100%;
    }
}

.google-map--1 {
    top: 9%;
}

.google-map--2 {
    top: 55.4%;
}

.info__item {
    position: absolute;
    left: 34%;
    font-size: 3cqw;
    white-space: pre-wrap;
}

.info__item--1 {
    top: 26.7%;
}

.info__item--2 {
    top: 30.6%;
}

.info__item--3 {
    top: 34.5%;
}

.info__item--4 {
    top: 38.5%;
}

.info__item--5 {
    top: 41.8%;
}

.info__item--6 {
    top: 46.3%;
}

.info__item--7 {
    top: 73%;
}

.info__item--8 {
    top: 77%;
}

.info__item--9 {
    top: 80.7%;
}

.info__item--10 {
    top: 84.1%;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/

.site-footer {
    font-family: inherit;
    font-weight: inherit;
    font-size: 3cqw;
    padding: 2em 0;
    color: #ffffff;
    background-color: #e37477;
}

.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;
    }
}
