

/*######################################################################
共通設定
######################################################################*/

:root {
    --width__main-content: min(35%, 375px);
    --color__accent: #FF7BAC;
}

/* コンテンツ全体の調整 */
body {
    width: 35%;
    margin-inline: auto;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-optical-sizing: auto;
    color: #907061;
    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;
}
.voice {
    position: relative;
}
.advantage {
    position: relative;
}
.feature {
    position: relative;
}
.message {
    position: relative;
}
/*------------------------------------------------------------
cta
------------------------------------------------------------*/
.cta01__btn,
.cta02__btn,
.cta03__btn,
.cta04__btn,
.cta05__btn,
.cta06__btn {
    position: absolute;
    width: 87%;
    left: 50%;
    transform: translateX(-50%);
}
.cta01__btn {
    top: 83%;
}
.cta02__btn {
    top: 89%;
}
.cta03__btn {
    top: 90.5%;
}
.cta04__btn {
    top: 90.5%;
}
.cta05__btn {
    top: 83%;
}
.cta06__btn {
    top: 63%;
}


/*------------------------------------------------------------
access
------------------------------------------------------------*/
.access {
    position: relative;
}
.access__logo {
    width: 38%;
    margin: 10% auto 0;
}
.access__tell {
    width: 46%;
    margin: 5% auto 0;
}


.access__container {
    width: 93%;
    margin: 4% auto 0;
    /* 12-9px */
    font-size: clamp(0.563rem, 0.509rem + 0.268vw, 0.75rem);
    line-height: 1.6;
}
.access__container dl {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.1em;
}
.access__container div {
  display: flex;
  flex-wrap: nowrap;
}
.access__container dt {
    width: 5em;
    text-align: right;
    flex-shrink: 0;
}
.access__container dd {
    margin-left: 4em;
    margin-right: 0;
    flex: 1;
}
.access__text {
    line-height: 1.2;
}


.access__inner {
    position: relative;
    margin:9% auto 0;
    padding-bottom: 43%;
}
.access__map {
    width: 93%;
    margin: 0 auto;
    aspect-ratio: 4 / 2.2;
}
.map__inner {
    width: 100%;
    height: 100%;
}


/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.footer {
    padding: 0.2rem 0;
    background-color: #DCD2C9;
    color: #907061;
    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: 0;
        padding: 0;

        li:not(:last-child)::after {
            content: "　　";
        }
    }

    a {
        text-decoration: none;
        transition: 0.2s;
        font-size: clamp(0.688rem, 0.616rem + 0.357vw, 0.938rem);
        font-family: "Shippori Mincho", serif;
        font-weight: 500;

        &:hover {
            color: lightgray;
        }
    }
}
.copyright__p {
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.6px;
    margin: 0 0 2% 0;
    font-size: clamp(0.688rem, 0.616rem + 0.357vw, 0.938rem);
    font-family: "Shippori Mincho", serif;
}

.follow__btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
}

