* {
    margin: 0;
    /* outline: 1px solid red; */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* html,
body {
    overflow-x: hidden;
} */

img {
    display: block;
    max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5 {
    overflow-wrap: break-word;
}

ol,
ul {
    list-style-type: none;
    margin: 0;
}

menu,
ol,
ul {
    padding: 0
}

a {
    text-decoration: none;
    color: var(--main-color);
    position: relative;
    z-index: 2;
}

p,
li,
dd {
    overflow-wrap: break-word;
    /* text-align: justify; */
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    color: var(--font-color);
    font-size: var(--fontsize-16);
    background-color: var(--bg-color);
}

body img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 500;
    line-height: 1.5;
    font-style: normal;
    color: var(--main-color);
}

:root {
    --main-color: #428E77;
    --mainsub-color: #FFFFFF;
    --font-color: #333333;
    --sub-font: #959EA7;
    --sub-font2: #8DB4A4;
    --bg-color: #FBFFFE;
    --sub-bg: #F1F8F6;
    --sub-bg2: #D9E7E4;
    --border-color: rgba(66, 142, 119, 0.2);
    --sub-border-color: rgba(255, 255, 255, 0.2);
    --fontsize-40: 40px;
    --fontsize-28: 28px;
    --fontsize-24: 24px;
    --fontsize-20: 20px;
    --fontsize-18: 18px;
    --fontsize-16: 16px;
    --fontsize-15: 15px;
    --fontsize-13: 13px;
}

/* recaptcha badge
----------------------------------------------------------- */
.grecaptcha-badge {
    z-index: 10000;
    bottom: 75px !important;
}

/* 共通 */
.spnavbtn {
    position: fixed;
    top: 5px;
    right: 5px;
    z-index: 999;
    text-align: center;
    cursor: pointer;
    display: none;
    border: none;
    background-color: transparent;
    width: 50px;
    height: 50px;
}

.nav-trigger,
.nav-trigger span {
    display: inline-block;
    transition: all ease 0.5s;
    box-sizing: border-box;
}

.nav-trigger {
    display: block;
    position: relative;
    width: 30px;
    height: 18px;

}

.nav-trigger span {
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    background-color: var(--main-color);
    border-radius: 20px;
}

.nav-trigger span:nth-of-type(1) {
    top: 0;
}

.nav-trigger span:nth-of-type(2) {
    top: 8px;
}

.nav-trigger span:nth-of-type(3) {
    bottom: 0;
}

/* SPナビはデフォルト非表示 */
.spnavbtn,
.spnav {
    display: none;
}

/* メディアクエリで表示 */
@media screen and (max-width: 1100px) {
    .navwrap .menu {
        display: none;
    }

    .spnavbtn,
    .spnav {
        display: grid;
        place-content: center;
        place-items: center start;
    }

    .navwrap {
        height: 60px;
    }

    .navwrap .menu {
        display: none;
    }

    .navwrap .logo img {
        height: 30px;
    }

    .spnavbtn.sp {
        display: block;
    }

    .spnav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100%;
        background: var(--bg-color);
        transition: left 0.3s ease;
        z-index: 99999;
    }

    .spnav.open {
        left: 0;
    }

    .spnav ul {
        list-style: none;
        padding: 20px;
    }

    .sp_accordionbox {
        display: none;
        padding-left: 20px;
    }

    .sp_accordion.open .sp_accordionbox {
        display: block;
    }
}

/* 
 smartphone menu btn click
----------------------------------------------------------- */
.spnavbtn .activete {
    font-size: 0.9em;
    opacity: 0;
}

.spnavbtn .activete:before {
    content: "";
}

.nav-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
}

.nav-trigger.active span:nth-of-type(2) {
    left: 60%;
    opacity: 0;
    -webkit-animation: active-menu-bar02 .8s forwards;
    animation: active-menu-bar02 .8s forwards;
}

@-webkit-keyframes active-menu-bar02 {
    100% {
        height: 0;
    }
}

@keyframes active-menu-bar02 {
    100% {
        height: 0;
    }
}

.nav-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
}

/* 
 smartphone menu btn click area
----------------------------------------------------------- */
.spnav {
    position: relative;
    z-index: 999;
}

.sp_close {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 998;
    display: none;
}

.sp_close.open {
    display: inherit;
}

.spnav .trigger {
    width: 300px;
    height: 100%;
    position: fixed;
    top: 0;
    left: -300px;
    transition: 0.5s;
}

.spnav.open .trigger {
    left: 0;
}

.spnav.open {
    width: 300px;
    max-width: 80%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: scroll;
    background: var(--mainsub-color);
}

.spnav .trigger>p {
    width: 100%;
    padding: 15px;
    text-align: center;
}

.spnav .trigger>p img {
    height: 35px;
    width: auto;
    margin: 0 auto;
}

.spnav .trigger>ul>li:first-child {
    border-top: 1px solid var(--border-color);
}

.spnav .trigger>ul>li {
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    transition: all ease 0.5s;
    line-height: 1.2;
}

.spnav .trigger>ul>li a,
.spnav .trigger>ul>li p {
    padding: 15px;
    display: block;
    position: relative;
    z-index: 1;
}

/* header
----------------------------------------------------------- */
.navwrap {
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 998;
    transition: all ease 0.5s;
    padding: 0 clamp(15px, 2vw, 40px);
    background: transparent;
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.navwrap .logo img {
    height: 36px;
}

.spnav .linkbox svg,
.navwrap .linkbox svg {
    height: 29px;
    width: auto;
    fill: var(--font-color);
    display: block;
}

.linkbox {
    display: flex;
    align-items: center;
}

.navwrap ul {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
}

.navwrap ul li a,
.navwrap ul li p {
    display: inline-block;
    padding: clamp(15px, 1.3vw, 25px) 0;
    position: relative;
    line-height: 2;
    color: var(--font-color);
    font-weight: 500;
}

.navwrap ul li {
    margin-right: clamp(20px, 3.4vw, 65px);
}

.navwrap ul li:last-child {
    margin-right: 0;
}

.navwrap .menu p:last-child a {
    font-weight: 500;
    font-size: var(--fontsize-15);
    display: flex;
    align-items: center;
    padding: 8px 14px 8px 12px;
    border-radius: 5px;
    border: 1px solid var(--font-color);
    transition: 0.5s;
    color: var(--font-color);
}

.navwrap .menu p:last-child svg {
    margin-right: 8px;
}

.navwrap .menu p:last-child {
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(15px, 2vw, 40px);
}

/* スクロール後に背景色 */
.navwrap.scrolled {
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
}

.navwrap.scrolled .menu p:last-child a {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--mainsub-color);
}

.navwrap.scrolled .menu p:last-child svg {
    fill: var(--mainsub-color);
}

/* メニューホバー */
.navwrap ul li a {
    transition: color 0.3s ease;
}

.navwrap ul li a:hover {
    color: var(--main-color);
}

/* ご予約はこちら ボタンホバー */
.navwrap .menu p:last-child a:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--mainsub-color);
}

.navwrap .menu p:last-child a:hover svg {
    fill: var(--mainsub-color);
}

/* スクロール後は反転 */
.navwrap.scrolled .menu p:last-child a:hover {
    background-color: var(--mainsub-color);
    color: var(--main-color);
}

.navwrap.scrolled .menu p:last-child a:hover svg {
    fill: var(--main-color);
}

/* 
 TOP
----------------------------------------------------------- */
/* 
 共通
----------------------------------------------------------- */
.sp {
    display: none;
}

.inner {
    width: min(90%, 1200px);
    margin-inline: auto;
    padding: clamp(50px, 6.8vw, 130px) 0;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex img {
    height: auto;
}

/* テキスト */
.en {
    font-family: "Montserrat", sans-serif;
}

.h2 {
    color: var(--main-color);
    margin-bottom: 16px;

}

.section-title {
    position: relative;
    font-size: var(--fontsize-14);
    padding-left: 1.5rem;
}

.h2 span {
    display: block;
    font-size: var(--fontsize-40);
    line-height: 1;
    font-weight: 400;
    padding-top: 1rem;
}

.section-title,
h4,
#reservation .view-btn span {
    position: relative;
    padding-left: 1.5rem;
}

.section-title::before,
h4::before,
#reservation .view-btn span::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background-image: url(../img/icon_fgn.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    margin-top: 6px;
}

/* 画像 */
#about img,
#gallery img,
#staff img {
    border-radius: 5px;
}

#about p,
#staff .txt p {
    line-height: 2.2;
}

/* コンテンツ画像 表示アニメーション */
#about img,
#gallery img,
#staff img {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
    transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
}

#about img.is-show,
#gallery img.is-show,
#staff img.is-show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ギャラリー画像を1枚ずつ表示 */
#gallery li {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease,
        filter 0.8s ease;
    transition-delay: calc(var(--gallery-index) * 0.22s);
}

#gallery li.is-show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* 背景 */
#menu,
#staff {
    background-color: var(--sub-bg);
}

/* 
 FV
----------------------------------------------------------- */
#fv {
    background-image: url('../img/fv.jpg');
    width: 100%;
    height: 100vh;
    height: 100vh;
    position: relative;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.fv::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(44, 62, 80, 0.2), rgba(44, 62, 80, 0.6));
    z-index: 1;
}

.hero-txt {
    color: var(--main-color);
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    position: absolute;
    bottom: 10%;
    left: 6.5%;
    text-shadow: 2px 2px 6px rgba(251, 255, 254, 0.2);
}

h1 {
    font-size: clamp(15px, 1.3vw, 25px);
}

.hero-txt p {
    font-size: clamp(25px, 2.9vw, 56px);
    font-weight: 500;
}

.hero-txt .en,
#about .en {
    font-size: clamp(40px, 4.2vw, 80px);
    font-style: italic;
    font-weight: 300;
    line-height: 1.1;
}

/* FV 文字アニメーション */
.hero-txt h1,
.hero-txt p {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
    animation: fvTextFadeUp 0.6s ease forwards;
}

.hero-txt .en {
    animation-delay: 0.55s;
}

.hero-txt h1 {
    animation-delay: 1.7s;
}

.hero-txt p:not(.en) {
    animation-delay: 0.2s;
}

@keyframes fvTextFadeUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* FV 英語だけ一文字ずつ表示 */
.hero-txt .en .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.8em);
    animation: fvCharWave 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--char-index) * 0.055s);
    animation-delay: calc(var(--char-index) * 0.08s + var(--line-delay, 0s));
}

@keyframes fvCharWave {
    0% {
        opacity: 0;
        transform: translateY(0.8em);
    }

    55% {
        opacity: 1;
        transform: translateY(-0.12em);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 
 about
----------------------------------------------------------- */
#about h2 {
    font-size: var(--fontsize-40);
    padding-bottom: 1.5rem;
}

#about .en {
    font-size: var(--fontsize-24);
}

#about .inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.txt {
    width: 48%;
}

#about img {
    width: 47%;
}

/* 
 Menu
----------------------------------------------------------- */
#menu .inner {
    display: flex;
    align-items: flex-start;
}

.menu-side {
    width: 22%;
    min-width: 220px;
    position: sticky;
    top: clamp(50px, 6.8vw, 130px);
    padding-right: 20px;
}

.menu-main {
    width: 70%;
    padding-left: 5%;
    border-left: 1px solid var(--border-color);
    overflow-y: auto;
}

#menu h3 {
    font-size: var(--fontsize-16);
    color: var(--sub-font2);
    padding-bottom: 1.5rem;
}

#menu h3 span {
    font-size: var(--fontsize-24);
    color: var(--main-color);
}

.menu-main>h3:nth-of-type(2) {
    margin-top: 1.5rem;
}


h4 {
    font-size: var(--fontsize-18);
    position: relative;
    padding-left: 1.5rem;
}

h4::before {
    margin-top: 8px;
}


.menu-list {
    width: 63%;
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 2rem;
    padding-bottom: 4rem;
    align-items: end;
}

.menu-list dd,
.menu-list dt {
    font-size: var(--fontsize-18);
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed var(--border-color);
    font-weight: 500;
}

.menu-list dt {
    text-align: left;
}

.menu-list dt span {
    display: block;
    font-size: var(--fontsize-13);
    line-height: 1.3;
    font-weight: 400;
}

.menu-list dd {
    text-align: right;
}

/* 
 Gallery
----------------------------------------------------------- */
#gallery .title-group {
    display: flex;
    justify-content: start;
    align-items: start;
}

#gallery .title-group p {
    width: 52%;
    margin-left: 6%;
}

#gallery ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1%;
    margin: 3rem 0 5rem;
}

#gallery ul img {
    width: 100%;
}

#gallery .btn {
    text-align: center;
}

.view-btn {
    color: var(--main-color);
    width: 240px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--main-color);
    padding: 12px 20px 13px 24px;
    border-radius: 5px;
    background-color: var(--mainsub-color);
    transition: all 0.3s ease;
}

.arrow,
.calender {
    width: 16px;
    height: 16px;
}

.arrow {
    fill: currentColor;
    transition: transform 0.3s ease;
}

.view-btn:hover {
    color: var(--mainsub-color);
    background-color: var(--main-color);
}

.view-btn:hover svg {
    transform: translateX(0.5rem);
}

/* 
 Staff
----------------------------------------------------------- */
#staff .h2 {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 40px;
}

#staff .content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6.6%;
}

#staff .txt {
    width: 52%;
}

#staff h3 {
    font-size: var(--fontsize-28);
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.5rem;
    line-height: 1;
}

#staff h3 span {
    font-size: var(--fontsize-16);
    font-family: "Zen Kaku Gothic New", sans-serif;
    padding-left: 1rem;
}

#staff .txt p {
    padding-top: 1rem;
}

#staff img {
    width: 25%;
}

/* 
 Reservation
----------------------------------------------------------- */
#reservation .h2 {
    margin-bottom: 40px;
}

#reservation .btn-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2%;
}

#reservation .view-btn {
    display: block;
    width: 100%;
    font-size: var(--fontsize-24);
    font-weight: 500;
    line-height: 1.5;
    padding: 2.5rem 3% 2.5rem 5%;
}

#reservation .view-btn a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--main-color);
}

#reservation .view-btn:hover a {
    color: var(--mainsub-color);
}

#reservation .view-btn span {
    font-size: var(--fontsize-15);
    margin-top: 0;
}

#reservation .view-btn span::before {
    margin-top: 3px;
}

#reservation .view-btn:hover span::before {
    background-image: url(../img/icon_fgnwhite.svg);
}

/* 
footer
----------------------------------------------------------- */
footer,
footer h2 {
    background-color: var(--main-color);
    color: var(--mainsub-color);
}

footer h2 {
    font-size: var(--fontsize-24);
    font-weight: 400;
}

footer .logo {
    margin-bottom: 1.5rem;
}

footer a {
    color: var(--mainsub-color);
}

footer .box {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    /* border-top: 1px solid var(--sub-border-color); */
    border-bottom: 1px solid var(--sub-border-color);
    padding: 0 0 2rem 0;
}

footer .info {
    width: 40%;
    gap: 1rem;
}

footer .info .address a {
    border-bottom: 1px solid var(--sub-bg);
}

footer .info .note {
    font-size: var(--fontsize-15);
    line-height: 1.5;
    padding-top: 0.5rem;
}

footer .info dl {
    display: grid;
    grid-template-columns: 5em 1fr;
    gap: 0.5em;
}

footer .info dt {
    font-weight: 500;
}

footer .menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    align-self: stretch;
}

footer .menu ul {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
}

footer .linkbox a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .linkbox span {
    writing-mode: vertical-rl;
}

footer .line {
    content: "";
    width: 1px;
    height: 40px;
    background-color: var(--mainsub-color);
    margin: 1rem auto;
}


footer .linkbox img {
    width: 32px;
}

footer .info p .map {
    position: relative;
    padding-left: 20px;
}

footer .info p .map::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 10px;
    height: 14px;
    background-image: url(../img/icon_pin.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

footer .copyright {
    font-size: var(--fontsize-13);
    text-align: center;
    padding-top: 1.5rem;
    color: var(--mainsub-color);
}

/* メニューホバー */
footer .menu a,
footer .map {
    transition: color 0.3s ease, border-color 0.3s ease;
}

footer .menu a:hover,
footer .map:hover {
    color: var(--sub-bg2);
    border-color: var(--sub-bg2);
}

@media screen and (max-width: 1100px) {
    #about .inner {
        flex-direction: column;
    }

    #about .txt {
        width: 100%;
    }

    #about img {
        width: 40%;
        margin-left: auto;
    }

    #about p {
        margin-bottom: 2rem;
    }

    .menu-list {
        width: 100%;
        row-gap: 1rem;
        padding-bottom: 2.5rem;
        padding-top: 1rem;
    }

    .menu-list dd {
        white-space: nowrap;
    }

    .menu-list dt {
        min-width: 0;
    }

    #gallery .title-group {
        justify-content: space-between;
    }

    #gallery ul {
        grid-template-columns: repeat(3, 2fr);
        gap: 2%;
        margin: 2rem 0 3rem;
    }

    #staff .content {
        align-items: start;
    }

    #staff .txt {
        width: 100%;
    }

    #reservation .view-btn {
        font-size: var(--fontsize-18);
    }

    #reservation .view-btn span {
        font-size: var(--fontsize-13);
    }


    footer .box {
        flex-direction: column;
    }

    footer .info {
        width: 100%;
    }

    footer .info dl {
        display: grid;
        grid-template-columns: 5em 1fr;
        gap: 0.5em;
    }

    footer .info dt {
        font-weight: 500;
    }

    footer .menu {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: start;
        flex-wrap: wrap;
        padding-top: 3rem;
    }

    footer .menu ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    footer .linkbox a {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer .linkbox span {
        writing-mode: vertical-rl;
    }

    footer .line {
        content: "";
        width: 1px;
        height: 40px;
        background-color: var(--mainsub-color);
        margin: 1rem auto;
    }

    footer .linkbox img {
        width: 32px;
    }

    footer .info p .map {
        position: relative;
        padding-left: 20px;
    }

    footer .info p .map::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        width: 10px;
        height: 14px;
        background-image: url(../img/icon_pin.svg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --fontsize-16: 15px;
        --fontsize-15: 14px;
    }

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    .h2 span {
        font-size: var(--fontsize-28);
    }

    .section-title {
        font-size: var(--fontsize-13);
    }

    .section-title,
    h4,
    #reservation .view-btn span {
        padding-left: 1.3rem;
    }

    .section-title::before,
    h4::before,
    #reservation .view-btn span::before {
        margin-top: 3px;
    }

    /* 
 header
----------------------------------------------------------- */
    .fix_btn {
        width: 100%;
        position: fixed;
        right: 0;
        bottom: 0;
        z-index: 6;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .fix_btn li {
        width: calc((100% - 2px) / 2);
    }

    .fix_btn li:first-child {
        margin-right: 2px;
    }

    .fix_btn li a {
        display: block;
        background-color: var(--main-color);
        padding: clamp(10px, 1vw, 20px) 2vw;
        text-align: center;
        color: #fff;
        transition: all ease 0.3s;
        font-size: var(--fontsize-16);
        /* font-family: "Noto Serif JP", serif; */
        /* background-image: url(./library/images/icn_web.svg); */
        background-position: center left clamp(15px, 2vw, 40px);
        background-repeat: no-repeat;
        background-size: auto clamp(20px, 1.6vw, 30px);
        border-radius: 5px 5px 0 0;
    }

    .fix_btn.is-over-footer li a {
        background-color: var(--mainsub-color);
        color: var(--main-color);
    }

    /* 
 FV
----------------------------------------------------------- */
    .hero-txt {
        gap: 0.5rem;
        left: 5%;
        bottom: 19%;
    }

    #fv {
        background-image: url('../img/fv_sp2.jpg');
    }

    /* 
 About
----------------------------------------------------------- */
    #about h2 {
        font-size: var(--fontsize-28);
    }

    #about .en {
        font-size: var(--fontsize-16);
    }

    #about img {
        width: 100%;
    }

    /* 
 Menu
----------------------------------------------------------- */
    #menu .inner {
        display: flex;
        flex-direction: column;
    }

    .menu-side {
        width: 100%;
        position: relative;
        top: 0;
        padding-right: 0;
    }

    .menu-main {
        width: 100%;
        padding-left: 0;
        border-left: none;
    }

    #menu h3 {
        font-size: var(--fontsize-15);
        margin-top: 1.5rem;
    }

    #menu h3 span {
        font-size: var(--fontsize-20);
    }

    h4 {
        position: relative;
        padding-left: 1.5rem;
        font-size: var(--fontsize-16);
    }

    h4::before {
        margin-top: 3px;
    }

    h4 br {
        display: none;
    }

    .menu-list dd,
    .menu-list dt {
        font-size: var(--fontsize-16);
    }

    .menu-list dt span {
        display: block;
        line-height: 1.5;
    }

    #menu .menu-side br {
        display: none;
    }


    /* 
 Gallery
----------------------------------------------------------- */
    #gallery .title-group {
        flex-direction: column;
    }

    #gallery .title-group p {
        width: 100%;
        margin-left: 0;
    }

    #gallery ul {
        grid-template-columns: repeat(2, 3fr);
        gap: 2%;
        margin: 2rem 0 3rem;
    }

    /* 
 Staff
----------------------------------------------------------- */
    #staff h3 span {
        display: block;
        padding-left: 0;
        padding-top: 0.5rem;
        font-size: var(--fontsize-15);
    }

    #staff .content {
        flex-direction: column;
    }

    #staff .txt {
        width: 100%;
    }

    #staff img {
        width: 60%;
        margin: 0 auto;
    }

    #staff h3 {
        font-size: var(--fontsize-24);
        padding-top: 1.5rem;
        padding-bottom: 1rem;
        text-align: center;
    }

    /* 
 Reservation
----------------------------------------------------------- */
    #reservation .h2 {
        margin-bottom: 2rem;
    }

    #reservation .btn-group {
        flex-direction: column;
        gap: 1rem;
    }

    #reservation .view-btn a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--main-color);
    }

    #reservation .view-btn span::before {
        margin-top: 3px;
    }

    #reservation .view-btn:hover span::before {
        background-image: url(../img/icon_fgnwhite.svg);
    }

}