

/*######################################################################
共通設定
######################################################################*/

: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;

    &.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);
    }
}

/*######################################################################
コンテンツ
######################################################################*/
/*------------------------------------------------------------
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: 30%;
    translate: 0 -50%;
}
.column__left__logo {
    width: 35%;
}
figure {
    margin: 0;
}

/*------------------------------------------------------------
column right
------------------------------------------------------------*/
.column__right__content {
    display: grid;
    place-items: center;
    position: sticky;
    top: 55%;
    translate: 0 -50%;
}
.column__right__cta {
    position: relative;
    width: min(80%, 464px);
}



/*------------------------------------------------------------
header
------------------------------------------------------------*/
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1% 5% 2%;
  box-sizing: border-box;
}
.header__logo {
  flex: 0 0 12%;
}
.btn__header {
  flex: 0 0 65%;
  position: relative;
}


/*------------------------------------------------------------
cta
------------------------------------------------------------*/
.cta {
    position: relative;
}
.cta__btn {
    position: absolute;
    width: 80%;
    top: 58%;
    left: 10%;
    transform: translateX(-50%);
}
.cta__btn01 {
    position: absolute;
    width: 80%;
    top: 95.2%;
    left: 10%;
    transform: translateX(-50%);
}

/*------------------------------------------------------------
popularity
------------------------------------------------------------*/
.popularity {
    position: relative;
}
.popularity-price {
    position: absolute;
    top: 26%;
    left: 50%;
    transform: translateX(-50%);
    color: #FFF;
    /* 21-11px */
    font-size: clamp(0.688rem, -0.027rem + 1.488vw, 1.313rem);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1px;
}
@media (max-width: 767px) {
    .popularity-price {
        /* 30-12px */
        font-size: clamp(0.75rem, -0.055rem + 4.027vw, 1.875rem);
    }
}


/*------------------------------------------------------------
tokuten
------------------------------------------------------------*/
.tokuten {
    position: relative;
}
.tokuten-price01 {
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translateX(-50%);
    color: #473018;
    /* 20-10px */
    font-size: clamp(0.625rem, -0.089rem + 1.488vw, 1.25rem);
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
}
.tokuten-price02 {
    position: absolute;
    top: 32.2%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    /* 18-12px */
    font-size: clamp(0.75rem, 0.321rem + 0.893vw, 1.125rem);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1px;
}
.tokuten-price03 {
    position: absolute;
    top: 50.4%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    /* 18-12px */
    font-size: clamp(0.75rem, 0.321rem + 0.893vw, 1.125rem);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1px;
}
@media (max-width: 767px) {
    .tokuten-price01 {
        /* 30-12px */
        font-size: clamp(0.75rem, -0.055rem + 4.027vw, 1.875rem);
    }
    .tokuten-price02 {
        /* 30-12px */
        font-size: clamp(0.75rem, -0.055rem + 4.027vw, 1.875rem);
    }
    .tokuten-price03 {
        /* 30-12px */
        font-size: clamp(0.75rem, -0.055rem + 4.027vw, 1.875rem);
    }
}

/*------------------------------------------------------------
drink
------------------------------------------------------------*/
.drink {
    position: relative;
}
.drink-price01 {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    /* 18-12px */
    font-size: clamp(0.75rem, 0.321rem + 0.893vw, 1.125rem);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1px;
}
.drink-price02 {
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    /* 18-12px */
    font-size: clamp(0.75rem, 0.321rem + 0.893vw, 1.125rem);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1px;
}
@media (max-width: 767px) {
    .drink-price01 {
        /* 30-13px */
        font-size: clamp(0.813rem, 0.052rem + 3.803vw, 1.875rem);
    }
    .drink-price02 {
        /* 30-13px */
        font-size: clamp(0.813rem, 0.052rem + 3.803vw, 1.875rem);
    }
}

/*------------------------------------------------------------
happy-hour
------------------------------------------------------------*/
.happy-hour {
    position: relative;
}
.happy-hour-menu {
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translateX(-50%);
    color: #9C2020;
    /* 22-11px */
    font-size: clamp(0.688rem, -0.098rem + 1.637vw, 1.375rem);
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}
.happy-hour-menu span {
    /* 18-14px */
    font-size: clamp(0.563rem, -0.08rem + 1.339vw, 1.125rem);
    font-weight: 700;
    letter-spacing: 1px;
}
.happy-hour-time {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    /* 22-11px */
    font-size: clamp(0.688rem, -0.098rem + 1.637vw, 1.375rem);
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .happy-hour-menu {
        /* 30-15px */
        font-size: clamp(0.938rem, 0.266rem + 3.356vw, 1.875rem);
    }
    .happy-hour-menu span {
        /* 27-13px */
        font-size: clamp(0.813rem, 0.186rem + 3.132vw, 1.688rem);
    }
    .happy-hour-time {
        /* 35-15px */
        font-size: clamp(0.938rem, 0.043rem + 4.474vw, 2.188rem);
        white-space: nowrap;
    }
}


/*------------------------------------------------------------
shippori
------------------------------------------------------------*/
.shippori {
    margin-top: -1px;
}

/*------------------------------------------------------------
access
------------------------------------------------------------*/
.access__map {
    width: 74%;
    aspect-ratio: 2 / 1.3;
    overflow: hidden;
    margin: 5% auto 0;
}
.map-embed {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.access__inner {
    padding: 4% 0 10% 0;
    margin: 3% 0 0 0;
    background-color: #C6B39F;

    line-height: 1.5;
    letter-spacing: 0.7px;
}
.access__list {
    width: 84%;
    margin: 0 auto;
    padding: 7% 0 0;
}
.access__term {
    padding-top: 5%;
    /* 25-12px */
    font-size: clamp(0.75rem, -0.179rem + 1.935vw, 1.563rem);
    font-weight: 700;
}
.access__desc {
    padding-top: 3.6%;
    margin: 0;
    /* 22-11px */
    font-size: clamp(0.688rem, -0.098rem + 1.637vw, 1.375rem);
    line-height: 1.4;
}

.access__photo {
    margin-top: -1px;
}

.access__tel {
    color: inherit;
    text-decoration: underline;
    /* 22-14px */
    font-size: clamp(0.875rem, 0.304rem + 1.19vw, 1.375rem);
}
@media (max-width: 767px) {
    .access__term {
        /* 34-13px */
        font-size: clamp(0.813rem, -0.127rem + 4.698vw, 2.125rem);
    }
    .access__desc {
        /* 34-13px */
        font-size: clamp(0.813rem, -0.127rem + 4.698vw, 2.125rem);
    }
    .access__tel {
        /* 34-13px */
        font-size: clamp(0.813rem, -0.127rem + 4.698vw, 2.125rem);
    }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.footer {
    padding: 0.4rem 0 0.2em;
    background-color: #473018;
    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 {
        padding: 1rem 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;
}

