@charset "UTF-8";

/* 共通部分 
------------------------------------*/
html{
    font-size: 100%;
}
body{
    background-color: #013220;
    color: white;
}
a{
    text-decoration: none;
}
img{
    width: 100%;
}

/* レイアウト */
.wrapper{
    margin: 0 auto;
    max-width: 1120px;
    padding: 0 1.5rem;
}
.align-center{
    text-align: center;
}
.top-text{
    padding-top: 20px;
    margin-top: 60px;
}

/* 見出し */
.font-english{
    font-family: 'Rakkas', serif;
    font-weight: normal;
}
.heading-large{
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}
.heading-medium{
    font-size: 2.5rem;
    text-align: center;
}
.btn{
    display: inline-block;
    font-size: 1.5rem;
    background-color: #efc100;
    color: white;
    padding: .75rem 1.5rem;
    border-radius: 8px;
    transition: .5s;
}
.btn:hover{
    background-color: #cea500;
}

/* ヘッダー 
------------------------------------*/
.page-header{
    max-width: 1400px;
    margin: 0 auto;
    position: fixed;
    top: 0;
    background-color: #013220;
    width: 100%;
}
.logo{
    padding: 6px 0 0 5px;
    width: 175px;
}

/* モバイル向けボタン */
.header-container{
    display: flex;
    justify-content: space-between;
}
.menu-btn {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #cea500;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}

.menu-list {
    margin-top: 59px;
    background-color: #013220;
    width: 100%;
    height: 155px;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    transition: all 0.5s; /*アニメーション設定*/
}
.menu-list {
    padding-top: 10px;
}
.menu-list li {
    list-style: none;
}
.menu-list li a {
    border-bottom: solid 1px #ffffff;
    display: block;
    width: 100%;
    font-size: 20px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px;
    position: relative;
}

#menu-btn-check:checked ~ .menu-list {
    left: 0;/*メニューを画面内へ*/
}

/* フッター 
------------------------------------*/
.page-footer{
    margin-top: 90px;
}
.info{
    margin: 0 4%;
    border-spacing: 0;
}
.info th,
.info td{
    border-bottom: #d8d8d8 solid 1px;
}
.info th{
    text-align: left;
    padding: 1rem;
}
.info td{
    padding: 1rem;
}

.copyright{
    height: 40px;
    background-color: #ddb000;
    color: white;
    text-align: center;
    font-size: 10px;
    padding-top: 12px;
    margin-top: 90px;
}


/* HOME 
------------------------------------*/
/* ヒーロー画像 */
.hero{
    position: relative;
    padding-top: 60px;
    z-index: -1;
}
.top{
    position: absolute;
    top: 77%;
    left: 18%;
    transform: translate(-50%,-50%);
    opacity: .9;
}
.top img{
    width: 110px;
}

/* About */
.about{
    max-width: 736px;
    margin: 60px auto 0;
    padding: 0 1.5rem;
}
.about p{
    margin-bottom: 2rem;
    line-height: 2;
}
.beer-image{
    margin-bottom: 25px;
}


/* News */
.news{
    padding: 20px;
    background-color: darkgray;
    border-radius: 20px;
    margin: 90px 4% 90px;
}
.news dl{
    display: flex;
    border-top: 1px solid #d8d8d8;
}
.news dt{
    width: 20%;
    margin: 20px 20px 20px 10px;
}
.news dd{
    width: 80%;
    margin: 20px 20px 20px 0;
}
.news dd a{
    color: white;
}
.news dd a:hover{
    text-decoration: underline;
}


/* CONTACT 
------------------------------------*/
/* 店舗情報 */
.location{
    margin-bottom: 3.5rem;
}
.location-info{
    margin-bottom: 2rem;
}
.location-info .info{
    padding: 0;
}
/* iframe */
iframe{
    width: 100%;
}
/* お問い合わせ */
.email{
    max-width: 916px;
    background-color: darkgray;
    border-radius: 48px;
    padding: 1.5rem 2.5rem 2.5rem;
    margin: 0 auto 90px;
}
.email p{
    margin: 1rem 0 2rem;
}


/* MENU 
------------------------------------*/
.menu-top{
    padding: 0 4%;
    line-height: 1.8;
}
.menu-top-text{
    line-height: 2;
    padding-top: 20px;
}
.menu-top img{
    border-radius: 16px;
}
.menu-main{
    background-color: rgb(193, 193, 193);
}
.menu-main{
    color: #013220;
}
.menu-main p, h4, li{
    color: #000;
}
.menu-main h3{
    margin-top: 40px;
}
.menu-main h4{
    margin: 20px auto 10px;
    text-align: center;
}
.beer-menu{
    padding-top: 20px;
}
.draftbeer{
    margin: 0 auto;
    text-align: center;
}
.draftbeer img{
    height: 110px;
    width: 110px;
    margin-top: 40px;
}
.menu-main ul{
    margin: 40px auto 0px 4%;
    list-style: none;
    padding-bottom: 60px;
}
.menu-main li{
    line-height: 2;
}
.bottlebeer{
    margin: 120px auto 50px auto;
    padding-bottom: 40px;
}

.grid{
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    padding: 0px 4%;
}

.item img{
    border-radius: 20px;
}

.item p{
    font-size: .875rem;
}


/* デスクトップ版 
------------------------------------*/
@media (min-width:821px){
    .heading-large{
        font-size: 3rem;
    }
    .page-header{
        padding: 20px;
        height: 110px;
        position: static;
    }
    .header-container{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        position: relative;
    }
    .hamburger-menu{
        position: absolute;
        top: 6px;
        right: 0%;
    }
    .menu-list{
        margin-top: 0;
        background: none;
        position: static;
        font-size: 25px;
        margin-right: 85px;
        margin-left: 10px;    
    }
    .menu-content{
        display: flex;
        flex-direction: row;
    }
    .menu-content li a{
        color: white;
        background: none;
        border-bottom: none;
        padding: 10px 15px 30px;
        font-size: 25px;
        margin-right: 10px;
    }
    .menu-content li a:hover{
        color: #fbc900;
        background: none;
    }
    .header-container{
        display: block;
    }
    .menu-btn{
        display: none;
    }
    .top-text{
        margin-top: 0;
    }

    .logo{
        margin-left: 100px;
        width: 250px;
        padding: 0;
    }
    .hero{
        padding-top: 0;
    }
    .top{
        top: 80%;
        left: 16%;
        transform: translate(-50%,-50%);
    }
    .top img{
        width: 220px;
    }
    .about{
        max-width: 1000px;
    }
    .about-item{
        display: flex;
        gap: 3rem;
        padding-left: 30px;
    }
    .about-item p{
        padding-top: 50px;
    }
    .beer-image{
        width: 280%;
    }
    .news{
        max-width: 736px;
        margin: 120px auto 0;
    }
    .info{
        margin: 0 auto;
    }

    /* CONTACT */
    .location{
        display: flex;
        gap: 2rem;
    }
    .location-info{
        width: 32%;
    }
    .location-info .info th{
        padding-left: 2rem;
    }
    .location-map{
        width: 64%;
        padding-top: 20px;
    }

    /* MENU */
    .menu-top{
        display: flex;
        flex-direction: row-reverse;
        max-width: 1140px;
        margin: 0 auto;
        gap: 4rem;
    }
    .menu-top-text{
        padding-top: 100px;
        width: 450px;
    }
    .grid{
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 2rem;
    }
    .bottlebeer-menu{
        display: flex;
        justify-content: space-evenly;
        text-align: left;
        margin: 0 auto;
        max-width: 1260px; 
    }

}

@media (min-width:1024px) {
    .draftbeer{
        display: flex;
        justify-content: space-evenly;
        text-align: center;
        margin: 0 auto;
        max-width: 1260px; 
    }
}

@media (min-width:1200px){
    .top{
        top: 83%;
        left: 14%;
        transform: translate(-50%,-50%);
    }
    .top img{
        width: 350px;
    }
}
