@charset "utf-8";
/* =================================================================
common
================================================================= */
:root {
    --primary-white: #FFF;
    --primary-black: #000;
    --content-width: 83.8%;
    --content-padding: 7.9%;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Shippori Mincho B1',
        serif;
        font-style: normal;
        color: var(--primary-black, #000);
        background-color: var(--primary-white, #FFF);
        line-height: 1.5;
        font-weight: 400;
}

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

.topic {
    color: var(--primary-black, #000);
    text-align: center;
    font-family: "Shippori Mincho B1";
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    margin: 0 auto;
    line-height: 1.5;
}

.fadein{
    opacity: 0;
}

.fadein.is-animated {
    animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-name: fadeIn;
    animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
    animation-fill-mode: forwards;
    animation-duration: 0.7s;
  }
   
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(80px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }



/* common PC */
@media screen and (min-width:769px){
    .topic {
        font-size: 64px;
        line-height: 1.3;
    }

    .topic::after {
        content: '';
        display: block;
        width: 150px;
        height: 2px;
        background-color: var(--primary-white);
        margin: 9px auto 0;
    }
} /* px 769px */

/* =================================================================
header
================================================================= */
.header {
    padding: 8px 10.2% 8px 2.5%;
    height: 107px;
    display: flex;
    text-align: center;
    background-color: #000;
    justify-content: space-between;
}

.header__topic a,
.nav__topic a{
    height: 69px;
    display: flex;
    align-items: center;
    margin: 15px;
}

.header__btn {
    width: 38px;
}

/* .navの初期表示 */
.nav {
    background: rgba(0,0,0,0.9);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translate(-100%);
    transition: transform 0.4s;
}

.nav__header {
    padding: 8px 4.5% 0 2.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__list {
    margin-top: 47px;
}

.nav__item {
    color: var(--primary-white);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.nav__item::before {
    content: '';
    display: inline-block;
    width: 95px;
    height: 2px;
    background-color: var(--primary-white);
    margin-right: 22px;
}

.nav__menu {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: var(--primary-white);
    border-bottom: 2px;
}



.nav__item:first-of-type {
    display: none;
}
/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.header__btn {
    display: flex;
    justify-content: center; 
    align-items: center;  
}


/* common PC */
@media screen and (min-width: 769px){
    .header {
        max-width: 2560px;
        height: 107px;
        margin: 0 auto;
        padding: 0 7% 0 6.5%;
    }

    .nav__header {
        display: none;
    }

    .nav {
        background: transparent;
        width: 422px;
        height: 91px;
        position: static;
        transform: translate(0);
    }

    .nav__list {
        display: flex;
        align-items: center;
        margin-top: 0;
        
    }

    .nav__item {
        font-size: 1.8rem;
        margin: 43px 0 43px 15px;
    }

    .nav__item::before {
        display: none;
    }

    .nav__item:first-of-type {
        display: block;
    }

    .nav__menu {
        display: inline-block;
        text-align: center;
        text-decoration: none;
        outline: none;
        color: var(--primary-white);
        border-bottom: 2px;
    }
    
    .nav__menu:hover{
        color: var(--primary-white);
    }
    
    .nav__item {
        position: relative;
    }
      
    .nav__item::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: var(--primary-white);
        bottom: -10px;
        transform: scale(0, 1);
        transform-origin: right top;
        transition: transform 0.5s;
      }
      
    .nav__item:hover::after {
        transform: scale(1, 1);
        transform-origin: left top;
    }

    .header__btn {
        display: none;
    }

    .nav__menu:hover {
        color: var(--primary-white);
    }
    
    .nav__menu a {
        position: relative;
    }
    
    .nav__menu a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: var(--primary-white);
        bottom: -10px;
        transform: scale(0, 1);
        transform-origin: right top;
        transition: transform 0.5s;
    }
    
    .nav__menu a:hover::after {
        transform: scale(1, 1);
        transform-origin: left top;
      }

    
}
/* px 769px */

/* =================================================================
Article header
================================================================= */
.article__header{ 
	position: relative;
}

.mainVisual__content {
	position: absolute;
    top: 217px;
    display: block;
    text-align: start;
    color: var(--primary-white);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 51px;
    letter-spacing: 0.48em;
    width: 95%;
    left: 8px;
}




.top-logo {
	object-fit: cover;
	height: 500px;
	width: 100%;
}

.mainCaption {
    width: 96.4%;
    margin: 20px auto 0;
    color: var(--primary-white);
    text-align: center;
    font-size: 1.5rem;
    line-height: normal;
}

.group__btn {
    width:252px;
    height:58px;
    line-height:58px;
    position: absolute;
    top: 427px;
    right: 0;
}

.group__btn a{
    display:block;
    width:100%;
    height:100%;
    background: rgba(0, 0, 0, 0.39);
    text-align:center;
    color: var(--primary-white);
    font-size: 2rem;
    font-weight: 700;
}

.group__btn:hover {
    background:rgba(0, 0, 0, 0.20);
    
}

.group__btn a:hover{
    color: rgba(255, 255, 255, 0.5);
}

.mainVisual {
    height: 500px;
}

/* common PC */
@media screen and (min-width: 769px) {
    .top-logo {
        height: 703px;
    }

    .mainCaption {
        width: 90%;
        margin: 70px auto 0;
        text-align: center;
        font-size: 2.9rem;
    }

    .mainVisual__content {
        top: 260px;
        font-size: 4rem;
        line-height: 140px;
        letter-spacing: normal;
        left: 50px;
    }

    .group__btn {
        width:431px;
        height:97px;
        line-height:97px;
        top: 607px;
    }
    
    .group__btn a{
        font-size:3.2rem;
    }

    .mainVisual {
        height: 697px;
    }
}
/* px 769px */

/* =================================================================
concept
================================================================= */
.section--concept {
    padding: 35px 0;
    background-image: url(../images/black-background.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.topic--concept {
    color: var(--primary-white);
}

.topic--concept::before {
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    background-color: var(--primary-white);
    position: absolute;
    right: calc(50% - 110px);
}

.topic--concept::after {
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    background-color: var(--primary-white);
    position: absolute;
    left: calc(50% - 110px);
}



/* common PC */
@media screen and (min-width:769px) {
    .section--concept {
        padding: 93px 0 104px;
    }

    .topic--concept::before {
        width: 274px;
        right: calc(50% - 200px);
    }

    .topic--concept::after {
        width: 274px;
        left: calc(50% - 200px);
    } 
}

/* =================================================================
feature
================================================================= */
.section--feature {
    background-image: url(../images/paper.png);
    background-color:rgba(255,255,255,0.5);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 35px 5.1%;
}

.feature__item {
    margin-top: 70px;
    display: flex;
    flex-direction: column;	
    align-items: center;
}

.feature__item:first-of-type {
    margin-top: 0;
    display: flex;
    flex-direction: column;	
    align-items: center;
}

.feature__title {
    color: var(--primary-black);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

.feature__txt {
    color: var(--primary-black);
    font-size: 1.5rem;
    line-height: normal;
    margin-top: 20px;
    text-align: center;
}

.feature__item img {
    object-fit: cover;
    width: 90%;
    height: auto;
    margin-top: 20px;
    
    
}

/* common PC */
@media screen and (min-width:769px) {
    .section--feature {
        padding: 50px 0;
    }

    .feature__item {
        margin-top: 43px;
        display: flex;
        justify-content: center;
    }

    .feature__title {
        font-size: 3.5rem;
        line-height: normal;
    }

    .feature__txt {
        font-size: 2.9rem;
        margin-top: 12px;
    }

    .feature__item img {
        width: 68.5%;
        margin-top: 0;
    }

}
/* px 769px */

/* =================================================================
recommend
================================================================= */
.section--recommend {
    background-image: url(../images/black-background.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 25px 5.3%;
}

.topic--recommend {
    color: var(--primary-white);
    position: relative;
}

.topic--recommend::before {
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    background-color: var(--primary-white);
    position: absolute;
    right: calc(50% - 110px);
}

.topic--recommend::after {
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    background-color: var(--primary-white);
    position: absolute;
    left: calc(50% - 110px);
}

.recommend__item {
    margin-top: 32px;
    width: 42.4%;
}

.recommend__item:first-of-type {
    margin-top: 12px;
}

.recommend {
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 15px;
}

.recommend__item img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

.recommend__food,
.recommend__drink {
    color: var(--primary-white);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: normal;
}

.recommend__title {
    color: var(--primary-white);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: normal;
}

.recommend__txt {
    color: var(--primary-white);
    font-size: 1.2rem;
    line-height: normal;
}

.recommendBox {
    margin-top: 20px;
}

.btn--menu {
    color: var(--primary-white);
    font-size: 2.0rem;
    font-weight: 700;
    line-height: normal;
    display: block;
    border: 1px solid var(--primary-white);
    padding: 7px 0px 7px 0px;
    transition: 0.4s;
    width: 179px;
    margin: 27px auto 0;
    text-align: center;
}

.btn--menu:hover{
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* common PC */
@media screen and (min-width:769px) {
    .section--recommend {
        padding: 140px 5.5%;
    }

    .topic--recommend::before {
        width: 274px;
        top: -3px;
        right: calc(50% - 250px);
    }

    .topic--recommend::after {
        width: 274px;
        bottom: -8px;
        left: calc(50% - 250px);
    }

    .recommend__item {
        margin-top: 100px;
        width: 43.6%;
    }

    .recommend {
        gap: 33px;
        align-items: flex-start;

    }

    .recommend__food,
    .recommend__drink {
        font-size: 4.8rem;
        margin-left: 5%;
    }

    .recommend__title {
        font-size: 2.8rem;
        text-align: center;
        margin-top: 9px;
    }

    .recommend__txt {
        font-size: 2.8rem;
        margin-top: 15px;
    }

    .recommendBox {
        margin-top: 46px;
    }

    .btn--menu {
        font-size: 3.2rem;
        padding: 22px 0;
        width: 303px;
        margin: 36px auto 0;
        line-height: 1;
    }

    
}
/* px 769px */

/* =================================================================
access
================================================================= */
.article__footer {
    padding: 27px 6.3% 50px 6.3%;
    background-image: url(../images/shop-background.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.topic--access {
    color: var(--primary-white);
    position: relative;
}

.topic--access::before {
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    background-color: var(--primary-white);
    position: absolute;
    top: -4px;
    right: calc(50% - 110px);
}

.topic--access::after {
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    background-color: var(--primary-white);
    position: absolute;
    bottom: -6px;
    left: calc(50% - 110px);
}

.map {
    width: 100%;
    height: 251px;
    margin-top: 20px;
}

.addressBox {
    background: rgba(0, 0, 0, 0.70);
    padding: 42px 0 21px 0;
    margin-top: 25px;
}

.address {
    color: var(--primary-white);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.openingHours {
    color: var(--primary-white);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    margin-top: 8px;
}

.openingHours:last-of-type {
    margin-top: 0;
}

.openingHours__detail {
    color: var(--primary-white);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    display: block;
    justify-content: center;
    margin-top: 7px;
}

.btn--reservation {
    background: #F7DF9D;
    transition: 0.4s; 
    display: block;
    text-align: center;
    margin: 0 auto;
    width: 145px;
    height: 85px;   
    margin-top: 25px;
}

.btn--reservation:hover {
    background-color: rgba(247,223,157,0.5);
    transition:0.3s;
}

.contact__txt {
    color: var(--primary-black);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    padding-top: 20px;
}

.contact--number {
    color: var(--primary-black);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 3;
    
}

@media screen and (min-width:769px) {
    .article__footer {
        padding: 67px 19.1% 37px;
    }

    .topic--access::before {
        width: 274px;
        top: -10px;
        right: calc(50% - 200px);
    }

    .topic--access::after {
        width: 274px;
        bottom: -12px;
        left: calc(50% - 200px);
    } 

    .map {
        height: 580px;
        margin-top: 45px;
    }

    .addressBox {
        padding: 42px 39px 17px 142px;
        margin-top: 25px;
    }

    .addressBox {
        display: flex;
        justify-content: center;
    }

    .address {
        font-size: 1.6rem;
    }

    .openingHours {
        font-size: 1.6rem;
        margin-top: 27px;
    }

    .openingHours__detail {
        font-size: 1.1rem;
        margin-top: 27px;
    }

    .btn--reservation {
        width: 219px;
        height: auto;
        padding-top: 29px;
        margin-top: 0;
    }

    .contact__txt {
        font-size: 1.6rem;
        justify-content: center;
        text-wrap: nowrap;
        
    }

    .contact--number {
        font-size: 2.4rem;
        margin-top: 7px;
        
    }

    .contact__txt {
        font-size: 1.6rem;
    }

    .contact--number {
        font-size: 2.4rem;
        line-height: 1.4;
    }

    
}
/* px 769px */

/* =================================================================
footer
================================================================= */
.footer {
    background-image: url(../images/black-background.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 9px 4.3% 0 2.8%;
}

.footerTitle a {
    height: 91px;
    display: flex;
    align-items: center;
    width: 100%;
}

.footer__div {
    display: flex;
}

.footerNav__list {
    margin: 17px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 17px 0;
}

.footerNav__item {
    width: 50%;
}

.footerNav__menu {
    display: block;
    color: var(--primary-white);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: normal;
    white-space: nowrap
}


.sns {
    display: flex;
}

.sns:hover {
    opacity:0.5;
	transition:0.3s;
}


.sns__div {
    display: flex;
    width: 66%;
    gap: 0 2%;
}

.footer--group {
    padding-top: 15px;
}

.footer--group:first-of-type {
    padding-top: 0px;
}

.footer__openingHours,
.footer__date {
    width: 91.3%;
}

.openingHours__topic,
.date__topic,
.contact--reservation,
.addressPc {
    color: var(--primary-white);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: normal;
}

.contact--reservation:hover {
    color: rgba(255,255,255,0.5);
    transition:0.3s;
}

.openingHours__txt,
.date__txt {
    color: var(--primary-white);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: normal;
    margin-top: 5px;
}

.footer__date,
.footer__number {
    margin-top: 15px;
}



.copy {
    text-align: center;
    margin-top: 8px;
    color: var(--primary-white);
    font-size: 1rem;
    font-weight: 700;
    line-height: normal;
}

@media screen and (min-width:769px) {
    .footer {
        padding: 25px 8.3% 0 11.6%;
    }

    .footerNav__list {
        margin: 32px 0 0 0;
        flex-wrap: nowrap;
        gap: 0 30px;
    }

    .footer__div {
        justify-content: space-between;
    }

    .sns__div {
        width: 22%;
    }

    .footer--group {
        padding-top: 0;
        display: flex;
        justify-content: space-between;
    }
    
    .footer--group:first-of-type {
        padding-top: 15px;
    }

    .footerNav__menu {
        display: inline-block;
        text-align: center;
        text-decoration: none;
        outline: none;
        color: var(--primary-white);
        border-bottom: 2px; 
    }

    .footerNav__menu {
        display: block;
        color: var(--primary-white);
        font-size: 1.5rem;
        font-weight: 700;
        line-height: normal;
        white-space: nowrap
    }

    .footerNav__menu:hover {
        color: var(--primary-white);
    }
    
    .footerNav__item a {
        position: relative;
    }
    
    .footerNav__item a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: var(--primary-white);
        bottom: -10px;
        transform: scale(0, 1);
        transform-origin: right top;
        transition: transform 0.5s;
    }
    
    .footerNav__item a:hover::after {
        transform: scale(1, 1);
        transform-origin: left top;
      }

    .footer__openingHours{
        width: 24.1%;
    }

    .openingHours__txt,
    .date__txt {
        font-size: 1.6rem;
        margin-top: 15px;
    }

    .openingHours__topic,
    .date__topic,
    .contact--reservation,
    .addressPc {
        font-size: 1.6rem;
    }
    
    .footer__date {
        width: 38.1%;
        margin: 0 0 0 0;
    }

    .addressPc {
        display: none;
    }

    .footer__number {
        margin-top: 64px;
    }

    .group__div {
        display: flex;
        width: 71%;
    }

    .footer__contact {
        margin-right: auto;
    }

    .copy {
        margin-top: 56px;
    }
}
/* px 769px */






