

/*######################################################################
共通設定
######################################################################*/

: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: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    width: 100%;
    height: 100%;
    container-type: inline-size;
}
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) 600px minmax(0, 1fr); */
    grid-template-columns: minmax(0, 1fr) 40% minmax(0, 1fr);
}
@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: 55%;
    translate: 0 -50%;
}
.column__left__logo {
    width: 70%;
}
figure {
    margin: 0;
}

/*------------------------------------------------------------
column right
------------------------------------------------------------*/
.column__right__content {
    display: grid;
    place-items: center;
    position: sticky;
    top: 70%;
    translate: 0 -50%;
}
.column__right__cta {
    position: relative;
    width: min(65%, 355px);
}



/*------------------------------------------------------------
header
------------------------------------------------------------*/
.site-header {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2% 10% 2% 4%;
    box-sizing: border-box;
    background-color: #fff;
}
.header__logo {
    /* flex: 0 0 12%; */
    width: min(49%, 312px);
}
.btn__header {
    display: flex;
    width: 35%;
    flex-direction: column;  /* ←縦に並べる */
    align-items: flex-end;
    gap: 0.3em;              /* ←上下の間隔（調整可） */
}
.btn__tel {
    position: absolute;
    width: min(29%, 223px);
    top: 15%;
    left: 67%;

}
.btn__insta {
    position: absolute;
    width: min(5%, 42px);
    top: 45%;
    left: 91%;

}


/*------------------------------------------------------------
fv
------------------------------------------------------------*/
.fv {
  position: relative;
  z-index: 1;
}

/*------------------------------------------------------------
cta
------------------------------------------------------------*/
.cta {
    position: relative;
}
.cta__btn {
    position: absolute;
    width: 92%;
    top: 73%;
    left: 50%;
    transform: translateX(-50%);
}
.cta__btn01 {
    position: absolute;
    width: 89%;
    top: 44%;
    left: 50%;
    transform: translateX(-50%);
}
.cta__btn02 {
    position: absolute;
    width: 89%;
    top: 74%;
    left: 50%;
    transform: translateX(-50%);
}


/*------------------------------------------------------------
menu
------------------------------------------------------------*/
.menu {
    position: relative;
}

.menu__hamburger01,
.menu__hamburger02 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #BD2323;
    /* 46-23px */
    font-size: clamp(1.438rem, 0.479rem + 1.997vw, 2.875rem);
    font-weight: bold;
}
@media (max-width: 767px) {
    .menu__hamburger01,
    .menu__hamburger02 {
        /* 46-23px */
        font-size: clamp(1.438rem, 0.408rem + 5.145vw, 2.875rem);
    }
}
.menu__hamburger01 {
    top: 65.5%;
}
.menu__hamburger02 {
    top: 87.5%;
}


.menu__cafe01,
.menu__cafe02,
.menu__cafe03,
.menu__cafe04 {
    position: absolute;
    color: #57411C;
    /* 34-18px */
    font-size: clamp(1.125rem, 0.458rem + 1.389vw, 2.125rem);
    font-weight: bold;
}
@media (max-width: 767px) {
    .menu__cafe02,
    .menu__cafe03,
    .menu__cafe04 {
        /* 34-15px */
        font-size: clamp(0.938rem, 0.087rem + 4.251vw, 2.125rem);
    }
}
.menu__cafe01 {
    top: 39.5%;
    left: 75%;
    color: #fff;
    /* 40-16px */
    font-size: clamp(1rem, 0rem + 2.083vw, 2.5rem);
}
@media (max-width: 767px) {
    .menu__cafe01 {
        /* 40-17px */
        font-size: clamp(1.063rem, 0.033rem + 5.145vw, 2.5rem);
    }
}
.menu__cafe02 {
    top: 84.5%;
    left: 67%;
}
.menu__cafe03 {
    top: 89%;
    left: 67%;
}
.menu__cafe04 {
    top: 93.5%;
    left: 67%;
}

.menu__sweets01,
.menu__sweets02,
.menu__sweets03 {
    position: absolute;
    left: 67%;
    color: #57411C;
    /* 34-18px */
    font-size: clamp(1.125rem, 0.458rem + 1.389vw, 2.125rem);
    font-weight: bold;
}
@media (max-width: 767px) {
    .menu__sweets01,
    .menu__sweets02,
    .menu__sweets03 {
        /* 34-15px */
        font-size: clamp(0.938rem, 0.087rem + 4.251vw, 2.125rem);
    }
}
.menu__sweets01 {
    top: 33%;
}
.menu__sweets02 {
    top: 37%;
}
.menu__sweets03 {
    top: 40.5%;
}

.menu__cook01,
.menu__cook02,
.menu__cook03 {
    position: absolute;
    left: 76%;
    color: #57411C;
    /* 34-18px */
    font-size: clamp(1.125rem, 0.458rem + 1.389vw, 2.125rem);
    font-weight: bold;
}
@media (max-width: 767px) {
    .menu__cook01,
    .menu__cook02,
    .menu__cook03 {
        /* 34-15px */
        font-size: clamp(0.938rem, 0.087rem + 4.251vw, 2.125rem);
    }
}
.menu__cook01 {
    top: 79.5%;
}
.menu__cook02 {
    top: 87%;
}
.menu__cook03 {
    top: 94.5%;
}

.menu__alcohol01,
.menu__alcohol02 {
    position: absolute;
    left: 75%;
    color: #57411C;
    /* 34-18px */
    font-size: clamp(1.125rem, 0.458rem + 1.389vw, 2.125rem);
    font-weight: bold;
}
.menu__alcohol01 {
    top: 41.5%;
}
.menu__alcohol02 {
    top: 46%;
}
@media (max-width: 767px) {
    .menu__alcohol01,
    .menu__alcohol02 {
        /* 34-15px */
        font-size: clamp(0.938rem, 0.087rem + 4.251vw, 2.125rem);
    }
}




/*------------------------------------------------------------
access
------------------------------------------------------------*/
.access {
    position: relative;
}

.access__inner {
    position: absolute;
    width: min(72%, 540px);
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    border-left: #151313 1px solid;
    padding-left: 3%;
    text-align: left;
    color: #6A3906;
    font-weight: 500 !important;

}
.access__list {
    width: 100%;
    margin: 0 auto;
}
.access__term {
    width: 100%;
    /* 34-14px */
    font-size: clamp(0.875rem, 0.042rem + 1.736vw, 2.125rem);
    font-weight: bold;
    line-height: 1.7;
}
@media (max-width: 767px) {
    .access__term {
        /* 34-14px */
        font-size: clamp(0.875rem, -0.02rem + 4.474vw, 2.125rem);
    }
}
.access__desc {
    margin: 0 !important;
    /* 34-14px */
    font-size: clamp(0.875rem, 0.042rem + 1.736vw, 2.125rem);
    letter-spacing: -0.3px;
    line-height: 1.5;
    padding-bottom: 9%;
}
@media (max-width: 767px) {
    .access__desc {
        /* 34-14px */
        font-size: clamp(0.875rem, -0.02rem + 4.474vw, 2.125rem);
    }
}
.access__desc-last {
    margin: 0 !important;
    /* 34-14px */
    font-size: clamp(0.875rem, 0.042rem + 1.736vw, 2.125rem);
    letter-spacing: -0.3px;
    line-height: 1.5;
    padding-bottom: 0%;
}
@media (max-width: 767px) {
    .access__desc-last {
        /* 34-14px */
        font-size: clamp(0.875rem, -0.02rem + 4.474vw, 2.125rem);
    }
}
.access__desc span {
    /* 30-12px */
    font-size: clamp(0.75rem, 0rem + 1.563vw, 1.875rem);
}
@media (max-width: 767px) {
    .access__desc span {
        /* 30-14px */
        font-size: clamp(0.875rem, -0.02rem + 4.474vw, 2.125rem);
    }
}
.access__tel {
    color: inherit;
    /* 34-14px */
    font-size: clamp(0.875rem, 0.042rem + 1.736vw, 2.125rem);
    text-decoration: none;
}
@media (max-width: 767px) {
    .access__tel {
        /* 34-14px */
        font-size: clamp(0.875rem, -0.02rem + 4.474vw, 2.125rem);
    }
}
.access__map {
    position: absolute;
    width: min(72%, 540px);
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    aspect-ratio: 2 / 1.4;
    overflow: hidden;
}
.map-embed {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.footer {
    padding: 0.4rem 0 0.2em;
    background-color: #57411C;
    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: 3% 0;
    /* 20-10px */
    font-size: clamp(0.625rem, 0.208rem + 0.868vw, 1.25rem);
}
@media (max-width: 767px) {
    .footer {
        padding: 0.5rem 0 0.5rem;
    }

    .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;
}

