/*######################################################################
共通設定
######################################################################*/
@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: #29304e;
    /* フォントウェイト */
    --common__font-weight: 400;
    /* メインコンテンツwidth */
    --main__content--width: 520px;
}

@font-face {
    font-family: 'D-DIN';
    src: url('../fonts/D-DIN-PRO-500-Medium.woff2') format('woff2'),
        url('../fonts/D-DIN-PRO-500-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN';
    src: url('../fonts/D-DIN-PRO-700-Bold.woff2') format('woff2'),
        url('../fonts/D-DIN-PRO-700-Bold.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
------------------------------------------------------------*/

.price {
    position: absolute;
    font-family: "D-DIN", sans-serif;
    font-weight: 500;
}

.comma {
    /* margin-left: -0.05em; */
    /* margin-right: -0.05em; */
}

.small {
    font-size: 0.6em;
}

.price__normal {
    color: #ffffff;
    font-size: 4cqw;
}

.price__4-1,
.price__5-1,
.price__6-1,
.price__7-1,
.price__8-1 {
    right: 47%;
}

.price__4-2 {
    right: 30.7%;
}

.price__4-3,
.price__5-2,
.price__6-2,
.price__7-2,
.price__8-2 {
    right: 10.6%;
}

.price__4-1,
.price__4-3 {
    bottom: 14.5%;
}

.price__4-2 {
    bottom: 9.8%;
}

.price__5-1,
.price__5-2 {
    bottom: 12.1%;
}

.price__6-1,
.price__6-2 {
    bottom: 9.74%;
}

.price__7-1,
.price__7-2 {
    bottom: 7.4%;
}

.price__8-1,
.price__8-2 {
    bottom: 5%;
}

.price__9-1,
.price__9-3,
.price__9-4 {
    letter-spacing: -0.05em;
}

.price__9-1 {
    bottom: 45.3%;
    right: 34.1%;
    color: inherit;
    font-size: 4.2cqw;
}

.price__9-2 {
    bottom: 41.4%;
    right: 40%;
    color: #58a1e8;
    font-size: 12.5cqw;
    letter-spacing: -0.075em;
}

.price__9-3,
.price__9-4 {
    bottom: 36.5%;
    color: #ea9750;
    font-size: 9cqw;
}

.price__9-3 {
    right: 65.1%;
}

.price__9-4 {
    right: 25.8%;
}

/*------------------------------------------------------------
cta
------------------------------------------------------------*/

[class^="cta__s-"] {
    position: relative;
}

.cta__wrapper{
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 100%;
}

.cta__wrapper__s-1 {
    position: absolute;
    top: unset;
    bottom: 0;
}

.cta__wrapper__s-6 {
    padding-top: 10%;
    background: #e7eef0;;
}

.cta {
    position: relative;
    container-type: inline-size;
}

.btn {
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 92%;
    
    &.btn__cta__s-12 {
        bottom: 11%;
    }
}

.price__cta {
    position: absolute;
    font-family: "D-DIN", sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    font-size: 7.5cqw;
}

.price__cta--1,
.price__cta--2 {
    top: 33.6%;
}

.price__cta--1 {
    left: 17.5%;
}

.price__cta--2 {
    left: 43.8%;
}

.price__cta--3 {
    top: 55%;
    left: 39%;
    font-size: 11cqw;
}

.price__cta--1__s-12,
.price__cta--2__s-12 {
    top: 36.9%;
}

.price__cta--3__s-12 {
    top: 56%;
}

.price__cta__inner {
    position: relative;

    &::before {
        content: "";
        display: inline-block;
        position: absolute;
        top: 50%;
        left: -3%;
        width: 106%;
        height: 0.05em;
        background-color: #e6732f;
        rotate: 12deg;
    }
    
}

/*------------------------------------------------------------
section
------------------------------------------------------------*/

[class^="s-"] {
    position: relative;
}

/*--------------- s-7 ---------------*/
.s-7 {
    margin-bottom: -8%;
}

/*--------------- s-11 ---------------*/

/* 店舗情報 */
.info__item {
    position: absolute;
    /* left: 34%; */
    font-size: 3.5cqw;
    white-space: pre-wrap;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: 1.4;
}

.info__item--1-1,
.info__item--1-2,
.info__item--2-1,
.info__item--2-2,
.info__item--3-1,
.info__item--3-2 {
    left: 3.5%;
}

.info__item--1-3,
.info__item--2-3,
.info__item--3-3 {
    left: 60%;
}

/* 川越ジム */
.info__item--1-1 {
    top: 15.8%;
}

.info__item--1-2,
.info__item--1-3 {
    top: 22.5%;
}

/* 浦和ジム */
.info__item--2-1 {
    top: 44.5%;
}

.info__item--2-2,
.info__item--2-3 {
    top: 51.5%;
}

/* 富士見ジム */
.info__item--3-1 {
    top: 72%;
}

.info__item--3-2,
.info__item--3-3 {
    top: 79%;
}

/* グーグルマップ */
.google-map {
    position: absolute;
    /* top: 9%; */
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 80%;
    aspect-ratio: 16 / 9;

    iframe {
        width: 100%;
        height: 100%;
    }
}

.google-map--1 {
    top: 27%;
}

.google-map--2 {
    top: 54.5%;
}

.google-map--3 {
    top: 82%;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/

.site-footer {
    font-family: inherit;
    font-weight: inherit;
    font-size: 3cqw;
    padding: 1.5em 0;
    color: inherit;
    background-color: inherit;
}

.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;
    }
}
