/*######################################################################
共通設定
######################################################################*/

:root {
    --width__main-content: min(100%, 1000px);
    --color__p: #221815;
}

/* コンテンツ全体の調整 */
body {
    width: min(100%, 1440px);
    width: 100%;
    margin-inline: auto;
    color: var(--color__p);
    /* 320-768 */
    font-size: clamp(0.625rem, 0.357rem + 1.339vw, 1rem);
    
    /* font: noto sans jp */
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    /* font: noto serif jp */
    /* font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal; */

    /* しっぽり明朝 */
    /* font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal; */

    &.page {
        margin: 0 auto;
    }
}

h1,
p,
figure {
    margin: 0;
}


/* imgタグの調整 */
img {
    vertical-align: top;
    width: 100%;
}

/* SPでのみ表示 */
.sp {
    display: none;
}

/* SPでのみ折り返し */
.br__sp {
    display: none;
}

/*------------------------------------------------------------
スクロールアニメーション
------------------------------------------------------------*/

/* 即時フェードイン */
.fadein {
    opacity: 0;
    animation: fadein 1s ease-in forwards;
}

@keyframes fadein {
    from {
        opacity: 0.1;
    }
    to {
        opacity: 1;
    }
}

/* スクロールフェードイン */
.scroll-in {
    opacity: 0;
    transform: translate(0, 0);
    transition: opacity 1.5s ease, transform 1.5s ease; /* スムーズなアニメーション */
}

/* フェードインの方向指定 */
.scroll-in--left {
    transform: translate(-30px, 0);
}

.scroll-in--right {
    transform: translate(30px, 0);
}

.scroll-in--bottom {
    transform: translate(0, 30px);
}

/* 表示時のスタイル */
.scroll-in.scroll-in--visible {
    opacity: 1;
    transform: translate(0, 0);
}

/*######################################################################
コンテンツ

    clamp: 記述なし = 320-768 768-1440
######################################################################*/

/*------------------------------------------------------------
header
------------------------------------------------------------*/

.site {
    display: grid;
    grid-template-columns: 1fr min(100%, 768px) 1fr;
}

.column__left {
    order: 1;
}

.column__right {
    order: 3;
}

.column__center {
    order: 2;
}

/*------------------------------------------------------------
fv
------------------------------------------------------------*/

.fv {
    position: relative;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.btn__fv {
    position: absolute;
    bottom: 2%;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 100%;
}

.btn--tel,
.btn--reserve {
    width: 43%;
}

/*------------------------------------------------------------
cta--1
------------------------------------------------------------*/

.cta--1 {
    margin-top: -31%;
    position: relative;
}

.btn__cta {
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 100%;
}

.btn__cta--1 {
    bottom: 7%;
}

/*------------------------------------------------------------
cta--2
------------------------------------------------------------*/

.cta--2 {
    margin-top: 2%;
    position: relative;
}

.btn__cta--2 {
    bottom: 13%;
}

/*------------------------------------------------------------
howto
------------------------------------------------------------*/

.howto {
    margin-top: -11%;
    position: relative;
    z-index: 1;
}

/*------------------------------------------------------------
cta--3
------------------------------------------------------------*/

.cta--3 {
    margin-top: -12%;
    position: relative;
    z-index: 0;
}

.btn__cta--3 {
    bottom: 11%;
}

/*------------------------------------------------------------
flow
------------------------------------------------------------*/

.flow {
    margin: 6% auto 0;
    width: 90%
}

/*------------------------------------------------------------
info
------------------------------------------------------------*/

.info {
    margin: 6% auto;
}

.info__title {
    width: 75%;
    margin-inline: auto;
}

.google-map {
    width: 100%;
    aspect-ratio: 2 / 1;
    margin: 2% auto 6%;

    iframe {
        width: 100%;
        height: 100%;
    }
}

.info__content {
    width: 90%;
    margin-inline: auto;
    position: relative;
}

.info__list {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 63%;
    height: 69%;
    font-size: clamp(1rem, 0.107rem + 4.464vw, 2.25rem);
}

.info__list__inner {
    position: relative;
    width: 100%;
    height: 100%;;
}

.info__list__item {
    position: absolute;
    right: 0;
    width: 100%;
    line-height: 1.4;
}

.info__list__item--1 {
    top: 0;
}

.info__list__item--2 {
    top: 25%;
}

.info__list__item--3 {
    top: 46%;
    font-size: 0.7em;
}

.info__list__item--4 {
    top: 85%;
    font-size: 0.7em;
}

/*------------------------------------------------------------
cta--4
------------------------------------------------------------*/

.cta--4 {
    position: relative;
}

.btn__cta--4 {
    bottom: 14%;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/

.footer {
    padding: 2em 0;
    color: #ffffff;
    background-color: #0267AB;
}

.footer__nav {

    ul {
        display: flex;
        justify-content: center;
        list-style: none;
        margin: 0;
        padding: 0;
        text-align: center;

        li {

            &:not(:last-child) {
                border-right: 1px solid white;
                margin-right: 0.75em;
                padding-right: 0.75em;
            }
        }
    }

    a {
        text-decoration: none;
        transition: 0.2s;

        &:hover {
            filter: brightness(0.8);
        }
    }
}

.copyright__p {
    text-align: center;
    margin-top: 1em;
}

/*######################################################################
responsive
######################################################################*/

@media (width < 768px) {
    /* SPでのみ表示 */
    /* SPでのみ改行 */
    .sp,
    .br__sp {
        display: block;
    }

    /* PCでのみ表示 */
    /* PCでのみ改行 */
    .pc,
    .br__pc {
        display: none;
    }
}
