@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;
}

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;
}

.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;
    }

    .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__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;
    }

    .nav__item::before {
        display: none;
    }

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

    .header__btn {
        display: none;
    }
}
/* px 769px */

/* =================================================================
drink
================================================================= */
.section--drink {
    background-image: url(../images/paper.png);
    background-color:rgba(255, 255, 255, 0.7);
    background-blend-mode:lighten;
    background-position: center top;
    background-size: 2500px;;
    padding: 35px 5.1%;
}

.topic--drink {
    color: var(--primary-black);
    position: relative;
    line-height: 1.5;
    text-align: left;
    padding-left: 15px;
}

.topic--drink::before {
    content: '';
    display: block;
    width: 111px;
    height: 2px;
    background-color: var(--primary-black);
    position: absolute;
    right: calc(100% - 160px);
}

.topic--drink::after {
    content: '';
    display: block;
    width: 111px;
    height: 2px;
    background-color: var(--primary-black);
    position: absolute;
    right: calc(100% - 120px);
}


.drinkBox {
    margin-top: 20px;
}

.drink__heartLand {
    color: var(--primary-black);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: normal;
    margin-top: 20px;
}

.whiskey {
    width: 100%;
}

.drinkBox__explain {
    color: var(--primary-black);
    font-size: 1rem;
    font-weight: 700;
    line-height: normal;
}

.drink__title {
    color: var(--primary-black);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: normal;
    margin-top: 30px;
}

.drink__list {
    margin-top: 5px;
    border-bottom: 1px solid;
    display: flex;
    justify-content: space-between;
}

.drink__name,
.drink__txt {
    color: var(--primary-black);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: normal;
}

.drink__txt {
    text-align: right;
}

.drink__list--whiskey {
    display: block;
    border: none;
}

.drink__name--whiskey {
    border-bottom: 1px solid;
}


.drink__name--heartLand {
    margin-top: 5px;
    border-bottom: 1px solid;
    display: flex;
    justify-content: space-between;
}

.drink__list--break{
    display: block;
    border: none;
}

.drink__name--break {
    border-bottom: 1px solid;
}

.drink__name--grape {
    border-bottom: 1px solid
}

.drink__price {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: normal;
    margin-left: 60px;
    padding-bottom: 6px;
}

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

.drink__div {
    display: flex;
    align-items: flex-end;
}

.drink__div--noFlex {
    display: block;
}

/* common PC */
@media screen and (min-width: 769px) {
    .section--drink {
        padding: 45px 4.4% 68px;
        
    }

    .topic--drink {
        padding-left: 80px;
    }

    .topic--drink::before {
        width: 244px;
        height: 2px;
        right: calc(100% - 395px);
    }
    
    .topic--drink::after {
        width: 274px;
        height: 2px;
        right: calc(100% - 170px);
        left: 0;
    }
    
    .drink__title {
        font-size: 4rem;
    }

    .drinkBox {
        margin-top: 51px;
    }

    .drink__heartLand {
        font-size: 2.8rem;
        margin-top: 51px;
    }
    
    .drinkBox__explain {
        font-size: 1.8rem;
        margin-top: 20px;
    }
    
    .drink__list {
        margin-top: 19px;
    }

    .drink__name,
    .drink__txt {
        font-size: 2.8rem;
    }
    
    .drink__jpSake {
        font-size: 2.8rem;
    }

    .drink__title {
        margin-top: 0;
    }

    .div__drink {
        margin-top: 105px;
        width: 45%;
    }


    .div__drink--first {
        margin-top: 65px;
    }
    
    .div__side--flex,
    .div__wine {
        display: flex;
        gap: 10%;
    }


    .div__drink--highball {
        width: 53%;
    }

    .div__drink--whiskey {
        width: 60%;
    }

    .drink__list--break {
        display: flex;
        border-bottom: 1px solid;
    }
    .drink__name--break {
        border-bottom: none;
    }

    .drink__name--grape {
        border-bottom: none;
        width: 261px;
    }

    .drink__price {
        font-size: 2.8rem;
        margin-left: 32px;
        padding-bottom: 6px;
    }

    .div__drink--whiskey {
        width: 83%;
    }

    .div__drink--jpSake {
        width: 100%;
    }

    .span__div {
        display: inline-block;
    }


    .drink__div--noFlex {
        display: block;
    }

    .div__width {
        width: 45%;
    }

    .div__drink--width {
        width: 100%;
    }

}
/* 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: 50px;
        margin-top: 0;
    }

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

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

    .contact__txt {
        font-size: 1.6rem;
    }

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

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

    .topic--access::after {
        width: 274px;
        bottom: -12px;
        left: calc(50% - 200px);
    } 
}
/* 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__item a {
    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 */







