

/*######################################################################
共通設定
######################################################################*/

:root {
    --width__main-content: min(35%, 375px);
    --color__accent: #FF7BAC;
}

/* コンテンツ全体の調整 */
body {
    width: 35%;
    margin-inline: auto;
    font-family: "yu-gothic-pr6n", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    color: #783d00;
    background-color: #fff;

    &.page { /* bodyが .page というクラス名を持っているときだけ */
        margin: 0 auto;
    }
}

/* スマホ向け */
@media (max-width: 767px) {
  body {
    width: 100%;
  }
}


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%;
}

.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);
    }
}

/*######################################################################
コンテンツ
######################################################################*/
.fv {
    position: relative;
}

/*------------------------------------------------------------
cta
------------------------------------------------------------*/
.cta-01 {
    position: relative;
}
.cta01__btn {
    position: absolute;
    width: 96%;
    top: 79.5%;
    left: 51%;
    transform: translateX(-50%);
}
.cta-02 {
    position: relative;
}
.cta02__btn {
    position: absolute;
    width: 96%;
    top: 67%;
    left: 51%;
    transform: translateX(-50%);
}
.cta-03 {
    position: relative;
}
.cta03__btn {
    position: absolute;
    width: 96%;
    top: 42%;
    left: 51%;
    transform: translateX(-50%);
}

/* 共通 */
.price {
    position: absolute;
    top: 27%;
    left: 52%;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    /* 39-20px */
    font-size: clamp(1.25rem, -0.107rem + 2.827vw, 2.438rem);
    color: #fff;
}
.price span {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    /* 25-17px */
    font-size: clamp(1.063rem, 0.491rem + 1.19vw, 1.563rem);
}
@media (max-width: 767px) {
    .price {
        top: 27%;
        left: 52%;
        /* 60-24px */
        font-size: clamp(1.5rem, -0.111rem + 8.054vw, 3.75rem);
    }
    .price span {
        /* 35-17px */
        font-size: clamp(1.063rem, 0.257rem + 4.027vw, 2.188rem);
    }
}


/*------------------------------------------------------------
consideration
------------------------------------------------------------*/
.consideration {
    position: relative;
}
.consideration__text {
    position: absolute;
    top: 69%;
    left: 13%;
    /* 11-21px */
    font-size: clamp(0.688rem, -0.027rem + 1.488vw, 1.313rem);
    font-weight: bold;
}
@media (max-width: 767px) {
    .consideration__text {
        /* 13-30px */
        font-size: clamp(0.813rem, 0.052rem + 3.803vw, 1.875rem);
    }
}


/*------------------------------------------------------------
access
------------------------------------------------------------*/
.access {
    position: relative;
}
.access__title {
    width: 57%;
    margin: 10% auto 0;
}
.access__inner {
    width: 92%;
    margin: 10% auto 0;
    padding-bottom: 10%;
}
.access__photo {
    width: 100%;
}
.access__map {
    width: 100%;
    margin: 5% auto 0;
    aspect-ratio: 2 / 0.88;
    overflow: hidden;
}
.map__inner {
    width: 100%;
    height: 100%;
}

.access__container {
    width: 100%;
    margin: 10% auto 0;
    /* 18-9px */
    font-size: clamp(0.563rem, -0.08rem + 1.339vw, 1.125rem);
    line-height: 1.5;
}
.access__container dl {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.1em;
    padding: 0 0 3%;
    border-bottom: #783d00 1px dotted;
}
.access__container div {
  display: flex;
  flex-wrap: nowrap;
  
}
.access__container dt {
    width: 7em;
    text-align: left;
    flex-shrink: 0;
    color: #96be46;
}
.access__container dd {
    margin-left: 0;
    margin-right: 0;
    flex: 1;
}
.access__container dd a {
    text-decoration: none;
    /* 20-9px */
    font-size: clamp(0.563rem, -0.223rem + 1.637vw, 1.25rem);
}
@media (max-width: 767px) {
    .access__container {
        /* 28-11px */
        font-size: clamp(0.688rem, -0.073rem + 3.803vw, 1.75rem);
    }
    .access__container dd a {
        /* 28-11px */
        font-size: clamp(0.688rem, -0.073rem + 3.803vw, 1.75rem);
    }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.footer {
    padding: 0.2rem 0;
    background-color: #96be46;
    color: #ffffff;
    font-style: normal;

}

.footer__nav {

    font-size: clamp(0.688rem, 0.616rem + 0.357vw, 0.938rem);
    letter-spacing: 0.8px;
    
    ul {
        display: flex;
        justify-content: center;
        list-style: none;
        margin: 1em 0 0.5em;
        padding: 0;

        li:not(:last-child)::after {
            content: "　";
        }
    }

    a {
        text-decoration: none;
        transition: 0.2s;
        /* 15-9px */
        font-size: clamp(0.563rem, 0.134rem + 0.893vw, 0.938rem);
        font-weight: 500;

        &:hover {
            color: lightgray;
        }
    }
}
.copyright__p {
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.6px;
    margin: 0 0 2% 0;
    /* 15-9px */
    font-size: clamp(0.563rem, 0.134rem + 0.893vw, 0.938rem);
}
@media (max-width: 767px) {
    .footer__nav {
        a {
            /* 20-9px */
            font-size: clamp(0.563rem, 0.07rem + 2.461vw, 1.25rem);
        }
    }
    .copyright__p {
        /* 20-9px */
        font-size: clamp(0.563rem, 0.07rem + 2.461vw, 1.25rem);
    }
}

.follow__btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
}

