@charset "UTF-8";
/* ====================
common
==================== */
*{
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
}

body{
    font-family:
        'Zen Maru Gothic',
        sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #2A2F3A;
    background-color: #F6F3EE;
    line-height: 1.7;
}

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

button,
a{
    font: inherit;
    color: inherit;
}

button{
    background: none;
    border: none;
    padding: 0;
}

body{
    -webkit-tap-highlight-color: transparent;
}

.topic{
    font-family: 'Cormorant Garamond';
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.3;
    color: #3A4A63;
    text-align: center;
    margin: 0;
}

/* ====================
layout
==================== */
body{
    min-height: 100vh;
}

main{
    margin-top: 72px;
}

.section{
    width: 100%;
    padding: 60px 4.6%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    margin: 0 auto;
    scroll-margin-top: 72px;
}

.section-line{
    border: none;
    width: 90%;
    height: 1px;
    background: rgba(143, 160, 178, 0.40);
    margin: 0 auto;
}

/* layout pc */
@media screen and (min-width:769px) {
    .section{
        padding: 100px 9.7%;
        gap: 80px;
    }

    .section-line{
        width: 80%;
    }
}/* pc 769px */

@media screen and (min-width:1111px){
    html{
        scroll-behavior: smooth;
    }

    main{
        margin-top: 100px;
    }

    .section{
        scroll-margin-top: 100px;
    }
}/* pc 1111px */

/* ====================
header
==================== */
.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #F6F3EE;
}

.header__box{
    display: flex;
    padding: 0 4.6%;
    justify-content: space-between;
    align-items: center;
}

.header__logo{
    display: flex;
    align-items: center;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.header__logo img {
    width: 72px;
    height: 72px;
    object-fit: cover;
}

/* .nav初期表示 */
.nav{
    background: #F6F3EE;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.nav__header{
    display: flex;
    padding: 0 4.6%;
    justify-content: space-between;
    align-items: center;
}

.spmenu__close{
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.spmenu__close span {
    display: block;
    position: absolute;
    width: 24px;
    height: 1px;
    background-color: #3A4A63;
    transition: all 0.3s ease;
}

.spmenu__close span:first-child {
    transform: rotate(45deg);
}

.spmenu__close span:last-child {
    transform: rotate(-45deg);
}

.nav__list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    padding: 60px 0;
}

.nav__item{
    font-family: 'Cormorant Garamond';
    color: #3A4A63;
    font-size: 2rem;
    text-align: center;
}

.nav__item a{
    display: block;
    width: 100%;
}

.nav__item:last-of-type{
    color: #F6F3EE;
    font-family: Zen Maru Gothic;
    font-size: 1.6rem;
}

/* .nav.active表示 */
.nav.active{
    transform: translateX(0);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 1px;
    background-color: #3A4A63;
    transition: all 0.3s ease;
}

/* header pc */
@media screen and (min-width:1111px){
    .header__box{
        padding: 0 9.7%;
    }

    .header__logo img {
        width: 100px;
        height: 100px;
    }

    .nav{
        width: auto;
        height: auto;
        position: static;
        transform: translate(0);
    }

    .nav__header{
        display: none;
    }

    .spmenu__close{
        display: none;
    }

    .spmenu__close span{
        display: none;
    }

    .nav__list{
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;
    }

    .nav__item{
        /* font-size: 2.4rem; */
    }

    .nav__item:last-of-type{
        /* font-size: 2rem; */
    }

    .hamburger{
        display: none;
    }
}/* pc 1111px */

/* ====================
fv
==================== */
.fv{
    width: 100%;
}

.fv-slider, .fv-slide{
    width: 100%;
    max-height: 450px;
    height: calc(100vh - 72px);
}

.fv-slider{
    position: relative;
    overflow: hidden;
}

.fv-slide{
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.fv-slide.is-active{
    opacity: 1;
}

.fv-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* fv pc */
@media screen and (min-width:769px){
    .fv-slider, .fv-slide{
        max-height: 880px;
        height: calc(100vh - 100px);
    }
}/* pc 769px */

/* ====================
concept
==================== */
.concept_box{
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.concept__image{
    max-width: 340px;
    height: 378px;
}

.concept__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.concept__text{
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* concept pc */
@media screen and (min-width:769px){
    .concept_box{
        width: 100%;
        max-width: 470px;
        justify-content: center;
        align-items: center;
        gap: 80px;
    }

    .concept__image{
        max-width: 470px;
        height: 522px;
        flex-shrink: 0;
    }

    .concept__text{
        font-size: 1.6rem;
        gap: 20px;
    }
}/* pc 769px */

@media screen and (min-width:1111px){
    .concept_box{
        flex-direction: row;
        max-width: 1160px;
    }
}/* pc 1111px */

/* ====================
menu
==================== */
.section__note{
    font-size: 1.4rem;
}

.menu__box{
    width: 100%;
    display: grid;
    gap: 24px;
}

.menu__group{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu__group-title{
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    padding: 6px 2.3%;
    justify-content:flex-start;
    align-items: center;
    background: rgba(143, 160, 178, 0.40);
}

.menu__list{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu__item{
    display: flex;
    padding: 6px 2.3%;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    border-bottom: 1px solid rgba(143, 160, 178, 0.40);
}

.menu__list li:last-child{
    border-bottom: none;
}

.menu__name{
    flex: 1 1 55%;
    min-width: 0;
    font-size: 1.4rem;
}

.menu__price{
    flex: 0 0 auto;
    font-size: 1.4rem;
    text-align: right;
    white-space: nowrap;
}

.menu__caption{
    font-size: 1.4rem;
}

/* accordion */
.accordion-item{
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    align-items: center;
}

.accordion-title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 2.3%;
    box-sizing: border-box;
    font-size: 1.6rem;
    cursor: pointer;
    border-top: 1px solid rgba(58, 74, 99, 0.40);
    border-bottom: 1px solid rgba(58, 74, 99, 0.40);
}

.accordion-title:active {
  transform: translateY(1px);
}

.accordion-title span:first-child{
    transition: transform 0.18s ease;
}

.accordion-title:hover span:first-child{
    transform: scale(1.04);
}

.accordion-item.active .accordion-title{
    border-bottom: none;
}

.accordion-icon{
    width: 16px;
    height: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    transition: transform 0.18s ease;
}

.accordion-title:hover .accordion-icon{
    transform: scale(1.4);
}

.accordion-content{
    max-height: 0;
    overflow: hidden;
    padding: 0 2.3%;
    transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
}

.model-section{
    margin-top: 36px;
}

.model-heading{
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.model-note{
    font-size: 1.4rem;
    margin-top: 24px;
}

.model-list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.model-txt{
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: stretch;
    font-size: 1.4rem;
}

.model-flow{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
}

.model-list li,
.model-flow li{
    font-size: 1.4rem;
}

.modelSection-line{
    border: none;
    border-top: 1px solid rgba(58, 74, 99, 0.40);
    margin-top: 36px;
}

/* menu pc */
@media screen and (min-width:769px){
    .section__note{
        font-size: 1.6rem;
    }

    .menu__box{
        max-width: 1160px;
        gap: 36px;
    }

    .menu__group{
        gap: 24px;
    }

    .menu__group-title{
        font-size: 1.6rem;
        padding: 10px 3.1%;
    }

    .menu__list{
        gap: 24px;
    }

    .menu__item{
        padding: 10px 3.1%;
    }

    .menu__name{
        font-size: 1.6rem;
    }

    .menu__price{
        font-size: 1.6rem;
    }

    .menu__caption{
        font-size: 1.6rem;
    }

    .accordion-item{
        max-width: 1160px;
    }

    .accordion-title{
        padding: 36px 3.1%;
        font-size: 2rem;
    }

    .accordion-icon{
        width: 20px;
        height: 20px;
        font-size: 2rem;
    }

    .accordion-content{
        padding: 0 3.1%;
    }

    .model-section{
        margin-top: 80px;
    }

    .model-heading{
        font-size: 1.6rem;
        margin-bottom: 36px;
    }

    .model-note{
        font-size: 1.6rem;
        margin-top: 36px;
    }

    .model-list{
        gap: 24px;
    }

    .model-txt{
        gap: 24px;
        font-size: 1.6rem;
    }

    .model-flow{
        gap: 10px;
    }

    .model-list li,
    .model-flow li{
        font-size: 1.6rem;
    }

    .modelSection-line{
        margin-top: 80px;
    }

    .spBr{
        display: none;
    }
}/* pc 769px */

/* ====================
gallery
==================== */
.gallery__grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}

.gallery__item{
    max-width: 165.5px;
    max-height: 165.5px;
    aspect-ratio: 1/1;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn.btn--instagram{
    display: flex;
    padding: 16px 36px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #3A4A63;
    color: #3A4A63;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease;
    font-family: "Cormorant Garamond";
    font-size: 1.6rem;
}

.btn.btn--instagram:hover{
    background-color: #3A4A63;
    color: #F6F3EE;
}

.btn.btn--instagram:active {
  transform: translateY(1px);
}

.btn.btn--instagram img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    transition: filter 0.18s ease;
}

.btn.btn--instagram:hover img {
    filter: brightness(0) invert(1);
}

/* gallery pc */
@media screen and (min-width:769px){
    .gallery__grid{
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .gallery__item{
        max-width: 374.6px;
        max-height: 374.6px;
    }

    .btn.btn--instagram{
        font-size: 2rem;
    }

    .btn.btn--instagram img {
        width: 20px;
        height: 20px;
    }
}/* pc 769px */

/* ====================
about
==================== */
.about__card{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.about__image img{
    width: 200px;
    height: 222px;
    aspect-ratio: 91/101;
    object-fit: cover;
}

.about__caption{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.about__role{
    font-size: 1.4rem;
}

.about__name{
    display: flex;
    align-items: center;
    gap: 18px;
}

.about__name-jp,
.about__name-en{
    font-size: 1.6rem;
}

.about__profile{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.about__profile li{
    font-size: 1.4rem;
}

.about__text{
    font-size: 1.4rem;
}

/* about pc */
@media screen and (min-width:769px){
    .about__card{
        gap: 36px;
    }

    .about__image img{
        width: 300px;
        height: 400px;
    }

    .about__caption{
        gap: 10px;
    }

    .about__role{
        font-size: 1.6rem;
    }

    .about__name{
        gap: 24px;
    }

    .about__name-jp,
    .about__name-en{
        font-size: 2rem;
    }

    .about__profile{
        gap: 20px;
    }

    .about__profile li{
        font-size: 1.6rem;
    }

    .about__text{
        font-size: 1.6rem;
    }
}/* pc 769px */

/* ====================
access
==================== */
.access__map{
    width: 100%;
    height: 300px;
}

.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.access__info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.access__list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.access__item{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.access__icon{
    width: 16px;
    height: 16px;
    aspect-ratio: 1/1;
    transform: translateY(50%);
}

.access__icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.access__item span{
    font-size: 1.6rem;
}

.access__note{
    font-size: 1.4rem;
}

/* access pc */
@media screen and (min-width:769px){
    .access__map{
        max-width: 1160px;
        height: 450px;
    }

    .access__info{
        gap: 36px;
    }

    .access__list{
        gap: 20px;
    }

    .access__item{
        gap: 20px;
    }

    .access__icon{
        width: 20px;
        height: 20px;
    }

    .access__item span{
        font-size: 2rem;
    }

    .access__note{
        font-size: 1.6rem;
    }
}/* pc 769px */

/* ====================
reserve
==================== */
.btn.btn--primary{
    display: flex;
    padding: 24px 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #3A4A63;
    color: #F6F3EE;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.btn.btn--primary:hover{
    background-color: rgba(143, 160, 178, 0.40);
    color: #3A4A63;
}

.btn.btn--primary:active {
  transform: translateY(1px);
}

.qa{
    display: flex;
    width: 100%;
    padding: 36px 2.3%;
    flex-direction: column;
    align-items: center;
    border: 1px solid #3A4A63;
    background: rgba(143, 160, 178, 0.40);
}

.qa__list{
    display: flex;
    width: 100%;
    padding: 36px 0;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.qa__heading{
    font-size: 1.6rem;
}

.qa__item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.qa__q{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.qa__labelq,
.qa__q span{
    font-size: 1.6rem;
}

.qa__a{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.qa__labela,
.qa__a span{
    font-size: 1.4rem;
}

/* reserve pc */
@media screen and (min-width:769px){
    .btn.btn--primary{
        font-size: 2rem;
    }

    .qa{
        max-width: 1160px;
        padding: 80px 2%;
    }

    .qa__list{
        padding: 80px 0 0 0;
        gap: 80px;
    }

    .qa__heading{
        font-size: 2rem;
    }

    .qa__item{
        gap: 16px;
    }

    .qa__q{
        gap: 20px;
    }

    .qa__labelq,
    .qa__q span{
        font-size: 2rem;
    }

    .qa__a{
        gap: 30px;
    }

    .qa__labela,
    .qa__a span{
        font-size: 1.6rem;
    }
}/* pc 769px */

/* ====================
forFirst
==================== */
.forFirst__intro{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.forFirst__heading{
    font-size: 1.6rem;
}

.forFirst__lead{
    text-align: center;
    font-size: 1.4rem;
}

.forFirst__box{
    display: flex;
    width: 100%;
    padding: 36px 2.3%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #3A4A63;
}

.forFirst__list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
}

.forFirst__item{
    font-size: 1.4rem;
}

.forFirst__outro{
    text-align: center;
    font-size: 1.4rem;
}

/* forFirst pc */
@media screen and (min-width:769px){
    .forFirst__intro{
        gap: 36px;
    }

    .forFirst__heading{
        font-size: 2rem;
    }

    .forFirst__lead{
        font-size: 1.6rem;
    }

    .forFirst__box{
        max-width: 1160px;
        padding: 80px 2%;
    }

    .forFirst__list{
        gap: 36px;
    }

    .forFirst__item{
        font-size: 1.6rem;
    }

    .forFirst__outro{
        font-size: 1.6rem;
    }
}/* pc 769px */

/* ====================
footer
==================== */
.footer{
    display: flex;
    width: 100%;
    padding: 60px 0;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.footer__logo{
    display: flex;
    align-items: center;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.footer__logo img {
    width: 72px;
    height: 72px;
    object-fit: cover;
}

.footerNav__list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footerNav__item{
    color: #3A4A63;
    font-family: "Cormorant Garamond";
    font-size: 1.6rem;
}

.footerNav__item:last-of-type{
    color: #F6F3EE;
    font-family: Zen Maru Gothic;
    font-size: 1.4rem;
}

.footerNav__item a{
    display: block;
    width: 100%;
}

.btn.btn--reserve{
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    background: #BFA98A;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.btn.btn--reserve:hover{
    background-color: #3A4A63;
}

.btn.btn--reserve:active {
  transform: translateY(1px);
}

.copy{
    font-family: Inter;
    font-size: 1rem;
}

/* footer pc */
@media screen and (min-width:1111px){
    .footer{
        padding: 100px 0;
        gap: 80px;
    }

    .footer__logo img {
        width: 160px;
        height: 160px;
    }

    .footerNav__list{
        display: flex;
        flex-direction: row;
        gap: 36px;
    }

    .footerNav__item{
        font-size: 2rem;
    }

    .footerNav__item:last-of-type{
        font-size: 1.6rem;
    }

    .copy{
        font-size: 1.4rem;
    }
}/* pc 1111px */
