

/*######################################################################
共通設定
######################################################################*/

: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: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 150%;
    font-optical-sizing: auto;
    color: #473018;
    background-color: #fff;

    background-image: url(../images/bg.webp);
    background-size: contain;
    background-attachment: fixed; */
/* } */

body {
    /* position: relative; */
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: medium;
    font-style: normal;
    width: 100%;
    height: 100%;
    container-type: inline-size;
    color: #43484E;
    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: 46% 40% 14%; */
}
@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; /* 画面上からpxで固定される */
    /* translate: 0 -50%; */
}
.column__left__logo {
    width: 70%;
}
figure {
    margin: 0;
}
.column__left__cta {
    position: relative;
    width: min(67%, 590px);
    margin-top: 5%;
}

/*------------------------------------------------------------
column right
------------------------------------------------------------*/
.column__right__content {
    display: grid;
    place-items: center;
    position: sticky;
    top: 65%;
    translate: 0 -50%;
}
.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__area
------------------------------------------------------------*/
.cta {
    position: relative;
}
.cta__btn {
    position: absolute;
    width: 92%;
    top: 1%;
    left: 50%;
    transform: translateX(-50%);
}
.cta__btn01 {
    position: absolute;
    width: 92%;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
}
.cta__btn02 {
    position: absolute;
    width: 92%;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
}
.cta__btn03 {
    position: absolute;
    width: 80%;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
}


/*------------------------------------------------------------
menu
------------------------------------------------------------*/
.menu {
    position: relative;
}
.menu__price {
    position: absolute;
    top: 5.8%;
    left: 28%;
    /* transform: translateX(-50%); */
    font-family: "Roboto", sans-serif;
    color: #0C2C56;
    font-size: clamp(30px, 3.8vw, 66px);
    font-weight: bold;
    letter-spacing: -2px
}
.menu__price span.yen {
    font-family: "Kosugi Maru", sans-serif;
    color: #0C2C56;
    font-size: clamp(15px, 2vw, 24px);
    padding-left: 0.2em;
}
.menu__price span.kara {
    font-family: "Kosugi Maru", sans-serif;
    color: #0C2C56;
    font-size: clamp(15px, 2vw, 40px);
}
@media (max-width: 767px) {
    .menu__price {
        font-size: clamp(30px, 9vw, 70px);
    }
    .menu__price span.yen {
        font-size: clamp(10px, 4vw, 29px);
    }
    .menu__price span.kara {
        font-size: clamp(18px, 6vw, 40px);
    }
}

/*------------------------------------------------------------
faq
------------------------------------------------------------*/
.faq {
    position: relative;
}
.faq__mail {
    position: absolute;
    top: 24%;
    left: 47%;
    font-family: "Noto Sans JP", sans-serif;
    color: #43484E;
    font-weight: 400;
    text-decoration: none;
}
.faq__mail a {
    color: #43484E;
    font-size: clamp(12px, 1.6vw, 23px);
    text-decoration: none;
}
@media (max-width: 767px) {
    .faq__mail a {
        font-size: clamp(12px, 4vw, 30px);
    }
}
/*------------------------------------------------------------
access
------------------------------------------------------------*/
.access {
    position: relative;
    background-color: #D9D9D9;
    padding: 7% 0;
}
.access__title {
    width: 94%;
    margin: 0 auto 0;
}
.access__inner {
    width: 94%;
    margin: 0 auto;
}

.access__container {
    width: 100%;
    margin: 7% auto 0;
    font-size: clamp(10px, 1.4vw, 20px);
    line-height: 1.3;
}
.access__container dl {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.1em;
    padding: 2% 0 6%;
    border-bottom: #AEAEAE 1px solid;
}
.access__container dl.no-border {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.1em;
    padding: 2% 0 6%;
    border-bottom: none;
}
.access__container div {
  display: flex;
  flex-wrap: nowrap;
  
}
.access__container dt {
    width: 6.7em;
    text-align: left;
    flex-shrink: 0;
    color: #43484E;
    font-weight: 500;
    padding-left: 4%;
}
.access__container dd {
    margin-left: 0;
    margin-right: 0;
    color: #43484E;
    font-weight: 500;
    flex: 1;
}

.access__map {
    width: 75%;
    margin: 3% auto 0;
    /* padding-bottom: 10%;
    aspect-ratio: 2 / 1.4;
    overflow: hidden; */
}
.map__inner {
    width: 100%;
    height: 100%;
}
@media (max-width: 767px) {
    .access__container {
        font-size: clamp(10px, 3.4vw, 26px);
    }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.footer {
    padding: 1em 0;
    background-color: #E9DFCB;
    color: #43484E;
    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 2% 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;
    }
}

