

/*######################################################################
共通設定
######################################################################*/

:root {
    /* --width__main-content: min(35%, 375px); */
    /* --width__main-content: min(100%, 1440px);
    --color__accent: #FF7BAC; */
}

/* コンテンツ全体の調整 */
/* body { */
    /* width: 35%; */
    /* width: min(100%, 1440px);
    width: 100%;
    margin-inline: auto;
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 150%;
    font-optical-sizing: auto;
    color: #333333;
    background-color: #fff;

    background-image: url(../images/bg.webp);
    background-size: contain;
    background-attachment: fixed; */
/* } */

body {
    /* position: relative; */
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    height: 100%;
    container-type: inline-size;
    color: #333333;
    background-color: #fff;
}
/* body {
    &::before {
        content: "";
        display: block;
        width: 100%;
        height: 100dvh;
        position: fixed;
        top: 0;
        left: 0;
        background-image: url(../images/bg.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
} */

/* スマホ向け */
/* @media (max-width: 767px) {
body {
    &::before {
        background-image: none;
    }
}
} */


h1 {
    margin: 0;
}

p, a, ul, ol, table {
    /* 400-768 */
    font-size: clamp(0.875rem, 0.739rem + 0.543vw, 1rem);
}

/* imgタグの調整 */
img {
    vertical-align: top;
    width: 100%;
    margin-top: -1px;
}

.sp {
    display: none;
}

@media (max-width: 767px) {
    .pc {
        display: none;

    }
 }


/* 折り返し */
/* PC版でのみ表示 */
.pc {
    display: inline; /* PCでは表示 */
}

@media (max-width: 767px) {
    .pc {
        display: none; /* SPでは非表示 */
    }
}
/* SP版でのみ表示 */
.sp {
    display: none; /* PCでは非表示 */
}

@media (max-width: 767px) {
    .sp {
        display: inline; /* SPでは表示 */
    }
}

span.strong {
    font-weight: bold; /* 太字にする */
    font-size: 1em;  /* 強調のためにサイズを若干大きく（任意） */
}




.pc_only {
    display: block; /* PCでは表示 */
}

@media (max-width: 767px) {
    .pc_only {
        display: none; /* SPでは非表示 */
    }
}
.sp_only {
    display: none; /* PCでは非表示 */
}
@media (max-width: 767px) {
    .sp_only {
        display: block; /* SPでは表示 */
    }
}


/*------------------------------------------------------------
スクロールアニメーション
------------------------------------------------------------*/

/* フェードイン */
.fadein {
    opacity: 0;
    animation: fadein 1s ease-in forwards;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadein-scrollin {
    opacity: 0;
    transform: translate(0, 0);
    transition: all 1.5s;


    &.scrollin-left {
        transform: translate(-30px, 0);
    }

    &.scrollin-right {
        transform: translate(30px, 0);
    }

    &.scrollin-bottom {
        transform: translate(0, 30px);
    }

    &.scrollin {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/*######################################################################
コンテンツ
######################################################################*/
/*------------------------------------------------------------
column
------------------------------------------------------------*/
.site {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40% minmax(0, 1fr);
    /* grid-template-columns: 55% 39% 6%; */
}
@media (max-width: 767px) {
    .site {
        grid-template-columns: 1fr;
    }
}
.column__left,
.column__right {
    order: 1;
}
@media (max-width: 767px) {
    .column__left,
    .column__right {
        display: none;
    }
}
.column__center {
    order: 2;
    width: min(100%, 750px);
    margin-inline: auto;
    background-color: #fff;
}
@media (max-width: 767px) {
    .column__center {
        width: 100%;
    }
}
.column__right {
    order: 3;
}

/*------------------------------------------------------------
column left
------------------------------------------------------------*/
.column__left__content {
    display: grid;
    place-items: center;
    position: sticky;
    top: 50%;
    /* top: 150px; */
    translate: 0 -50%;
}
.column__left__logo {
    width: 62%;
}
figure {
    margin: 0;
}
.column__left__cta {
    position: relative;
    width: 50%;
    margin-top: -29%;
    margin-left: 1%;
}

/*------------------------------------------------------------
column right
------------------------------------------------------------*/
.column__right__content {
    display: grid;
    place-items: center;
    position: sticky;
    top: 45%;
}
.column__right__cta {
    position: relative;
    width: min(80%, 536px);
}


/*------------------------------------------------------------
header
------------------------------------------------------------*/
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* padding: 1% 5% 2%; */
  box-sizing: border-box;
}
.header__logo {
  flex: 0 0 12%;
}
.btn__header {
  flex: 0 0 65%;
  position: relative;
}

/*------------------------------------------------------------
cta

font-family: "din-2014", sans-serif;
font-weight: 600;
font-style: normal;
------------------------------------------------------------*/
.cta {
    position: relative;
}

/* FV下 */
.fv__price01 {
    position: absolute;
    top: 52.3%;
    left: 9%;
    font-family: "din-2014", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #333333;
    font-size: clamp(23px, 3.1vw, 60px);
}
@media (max-width: 767px) {
    .fv__price01 {
        font-size: clamp(28px, 9vw, 60px);
        letter-spacing: -2px;
    }
}
.fv__price02 {
    position: absolute;
    top: 46.5%;
    left: 53%;
    font-family: "din-2014", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #ea1e5f;
    font-size: clamp(46px, 6.1vw, 116px);
    letter-spacing: -3px;
}
@media (max-width: 767px) {
    .fv__price02 {
        font-size: clamp(49px, 15.3vw, 116px);
        letter-spacing: -2px;
    }
}
.fv__price02 span {
    letter-spacing: -0.1em;
}
.fv__slash {
    position: absolute;
    width: 26%;
    top: 54.5%;
    left: 8%;
}

.cta__btn {
    position: absolute;
    width: 90%;
    top: 46%;
    left: 50.5%;
    transform: translateX(-50%);
}
.btn__price01 {
    position: absolute;
    top: 28.7%;
    left: 23.3%;
    font-family: "din-2014", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #ffffff;
    font-size: clamp(13px, 1.6vw, 30px);
}
@media (max-width: 767px) {
    .btn__price01 {
        font-size: clamp(13px, 4vw, 30px);
    }
}
.btn__price02 {
    position: absolute;
    top: 39%;
    left: 22%;
    font-family: "din-2014", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #fff000;
    font-size: clamp(38px, 5vw, 94px);
}
@media (max-width: 767px) {
    .btn__price02 {
        font-size: clamp(40px, 12.5vw, 94px);
    }
}
.btn__price02 span {
    letter-spacing: -0.1em;
}


/* 左カラムボタン用 */
.btn__price01-l {
    position: absolute;
    top: 59%;
    left: 47%;
    transform: translateX(-50%);
    font-size: clamp(11px, 1.5vw, 28px);
}
.btn__price02-l {
    position: absolute;
    top: 49%;
    left: 75%;
    transform: translateX(-50%);
    font-size: clamp(16px, 2.2vw, 42px);
    white-space: nowrap;   /* 折り返しなし */
}

.btn__price span.comma {
    font-size: 0.6em;
}
.btn__price span.yen {
    font-family: kozuka-gothic-pr6n, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 0.6em;

}


/*------------------------------------------------------------
access
------------------------------------------------------------*/
.access {
    position: relative;
}
.access__inner {
    width: 92%;
    margin: 0 auto;
}


.access__container {
    width: 100%;
    margin: 5% auto 5%;
}
.access__container-sec {
    width: 100%;
    margin: 7% auto 12%;
}
.access__container dl,
.access__container-sec dl {
    /* display: flex; */
    /* flex-wrap: wrap; */
    margin-top: 0.8em;
}
.access__container dl.no-border {
    /* display: flex; */
    /* flex-wrap: wrap; */
    margin-top: 1.1em;
    padding: 2% 0 6%;
    border-bottom: none;
}
/* ★ 実際に横並びにするのは dl 直下の div */
.access__container dl > div,
.access__container-sec dl > div {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.access__container dt,
.access__container-sec dt {
    display: flex;
    justify-content: center; /* 横方向中央 */
    align-items: center;    /* 縦方向中央 */
    text-align: center;     /* 文字の中央揃え */
    width: 6em;
    padding: 3% 0;
    background-color: #988e62;
    text-align: center;
    flex-shrink: 0;
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #ffffff;
    font-size: clamp(13px, 1.8vw, 36px);
}
@media (max-width: 767px) {
    .access__container dt,
    .access__container-sec dt {
        font-size: clamp(13px, 4.5vw, 36px);
    }
}
.access__container dd,
.access__container-sec dd {
    display: flex;
    justify-content: left; /* 横方向中央 */
    align-items: center;    /* 縦方向中央 */
    text-align: left;     /* 文字の中央揃え */
    padding: 3% 0 3% 3%;
    margin: 0;
    background-color: #f8f6ed;
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #333333;
    font-size: clamp(11px, 1.5vw, 28px);
    line-height: 140%;
}
@media (max-width: 767px) {
    .access__container dd,
    .access__container-sec dd {
        font-size: clamp(11px, 3.8vw, 28px);
    }
}
/* ★ 残り幅ぜんぶ使う指定＋折り返し用 */
.access__container dl dd,
.access__container-sec dl dd {
    flex: 1;
    min-width: 0; /* テキストがちゃんと折り返されるように */
}

.access__container dd a,
.access__container-sec dd a {
    font-size: clamp(11px, 1.5vw, 28px);
    text-decoration: none;
}
@media (max-width: 767px) {
    .access__container dd a,
    .access__container-sec dd a {
        font-size: clamp(11px, 3.8vw, 28px);
    }
}

/* 地図 */
.access__map {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    overflow: hidden;
    margin: 0 auto;
}
.map__inner {
    width: 100%;
    height: 100%;
}


/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.footer {
    padding: 1em 0;
    /* background-image: url(../images/footer.webp); */
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #333333;
    font-style: normal;
    margin-top: -1px;
}

.footer__nav {

    font-size: clamp(11px, 1vw, 22px);
    letter-spacing: 0.8px;
    
    ul {
        display: flex;
        justify-content: center;
        list-style: none;
        margin: 0;
        padding: 0;

        li:not(:last-child)::after {
            content: "　　";
        }
    }

    a {
        text-decoration: none;
        transition: 0.2s;
        font-size: clamp(11px, 1vw, 22px);
        font-weight: 300;

        &:hover {
            color: lightgray;
        }
    }
}
.copyright__p {
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.6px;
    margin: 1em 0 0 0;
    font-size: clamp(11px, 1vw, 22px);
}
@media (max-width: 767px) {
    .footer__nav {
        font-size: clamp(11px, 2.6vw, 22px);
        a {
            font-size: clamp(11px, 2.6vw, 22px);
        }
    }
    .copyright__p {
        font-size: clamp(11px, 2vw, 22px);
        margin: 0;
    }
}

