

/*######################################################################
共通設定
######################################################################*/

:root {
    --width__main-content: min(100%, 1440px);
    --color__accent: #FF7BAC;
}

/* コンテンツ全体の調整 */
body {
    width: min(100%, 1440px);
    margin-inline: auto;
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-optical-sizing: auto;
    color: #4C2910;
    background-color: #EFE7DA;

    &.page { /* bodyが .page というクラス名を持っているときだけ */
        margin: 0 auto;
    }
}


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);
    }
}

/*######################################################################
コンテンツ
######################################################################*/
/*------------------------------------------------------------
cta
------------------------------------------------------------*/
.cta {
    position: relative;
}
.cta01__btn {
    position: absolute;
    width: 49%;
    top: 39%;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 767px) {
    .cta01__btn {
        width: 90%;
        top: 40%;
    }
}


/*------------------------------------------------------------
main-menu
------------------------------------------------------------*/
.main-menu {
    margin-top: 3%;
}
@media (max-width: 767px) {
    .main-menu {
        margin-top: 0;
    }
}

/*------------------------------------------------------------
menu
------------------------------------------------------------*/
@media (max-width: 767px) {
    .menu {
        margin-top: -1%;
    }
}
/*------------------------------------------------------------
access
------------------------------------------------------------*/
.access {
    position: relative;
    margin-bottom: -2%;
}
.access__container {
    position: absolute;
    top: 29%;
    left: 13%;
    width: auto;
    /* 18-11px */
    font-size: clamp(0.688rem, 0.188rem + 1.042vw, 1.125rem);
    line-height: 1.8;
}
@media (max-width: 767px) {
    .access__container {
        top: 21.5%;
        left: 7%;
        /* 26-11px */
        font-size: clamp(0.688rem, 0.016rem + 3.356vw, 1.625rem);
        line-height: 1.7;
    }
}
.access__container dl {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1em;
}
@media (max-width: 767px) {
    .access__container dl {
        margin-top: 0.7em;
    }
}
.access__container dt {
    width: 4em;
    font-weight: bold;
    text-align: justify;
    text-align-last: justify;
}
.access__container dd {
    margin-left: 2em;
}

.access__map {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    width: 61%;
    aspect-ratio: 2 / 1;
}
@media (max-width: 767px) {
    .access__map {
        top: 85%;
        width: 100%;
    }
}
.map__inner {
    width: 100%;
    height: 100%;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.footer {
    padding: 1.5rem 0;
    background-color: #4C2910;
    color: #ffffff;
}
@media (max-width: 767px) {
    .footer {
        padding: 1.2rem 0;
    }
}

.copyright__p {
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.6px;
    margin-top: 0;
}
@media (max-width: 767px) {
    .copyright__p {
        margin-top: 0;
        font-size: 9px;
    }
}

