@charset "UTF-8";

body{
    background: #fff;
    color: #000;
    font-family: "Hiragino Kaku Gothic ProN",  sans-serif;
}

h1, h2, h3, h4, h5{
    font-family: "Hiragino Kaku Gothic ProN",  sans-serif;
    line-height: 1.2;
}

img{
    display: inline-block;
}

/* header */
header{
    max-width: 100%;
}
/* メニューのスタイル */
.menu {
    position: fixed;
    top: 0;
    right: -100%; /* 初期状態では画面の外に隠れている */
    width: 80%;
    max-width: 460px;

    height: 100%;
    background-color: #ddd;
    color: #333;
    transition: right 0.3s ease; /* スライドインのアニメーション */
    padding: 20px;
    box-sizing: border-box;
    z-index: 10;
}

/* メニューが開いているとき */
.menu.open {
  right: 0;
}

/* ボタンのスタイル */
.hamburger {
    margin: 0;
  position: fixed;
  right: 20px;
  width: 55px;
  cursor: pointer;
  z-index: 20;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #666;
  margin: 0;
  transition: 0.4s;
    border-radius: 3px;
}

.hamburger span:nth-child(2) {
    margin: 16px 0;
}

.hamburger.active{
    margin: 0;
}
/* バツ印に変化するスタイル */
.hamburger.active span{background: #333;}
.hamburger.active span:nth-child(1) {
    top: 20px;
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 0;
  transform: rotate(-45deg) translate(6px, -6px);
}

/* メニューリストのスタイル */
.menu ul {
  list-style-type: none;
  padding: 0;
  margin-top: 80px;
}

.menu li {
  padding: 20px 0;
  border-bottom: 1px solid #444;
}

.menu li a {
  color: #333;
  text-decoration: none;
  display: block;
}

.mask{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: .7s;
    z-index: 1;
}

.mask.active{
    opacity: 0.7;
    visibility: visible;
}

@media screen and (max-width:768px) {
    body{
        font-size: calc(100vw * 12 / 500);
    }

    .hamburger{
        width: 45px;
    }

    .hamburger span{
        background-color: #000;
    }
    .hamburger span:nth-child(2){
        margin: 13px 0;
    }
    .hamburger.active span:nth-child(1){
        top: 16px;
    }

    .menu{
        width: 80%;
    }
}

section{padding: 0;}
section p{margin: 0;}


/* access */
section#access {
    padding: 0 0 3.1%;
    background: #a4a3a3;
}

section#access .inner{
    max-width: 1040px;
    margin: 0 auto;
    padding: 1.3% 0 0;
    position: relative;
}

section#access .inner h1{
    padding: 0 0 2.7% 7px;
    font-size: 47px;
    font-family: classico-urw, sans-serif;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    border-bottom: 1px solid #fff;
    letter-spacing: 4px;
}   

section#access .inner p.txt {
    margin: 2.4% 0 2.9% 1.5%;
    font-size: 22px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    line-height: 1.91;
}

section#access .inner .access_block{
    max-width: 700px;
    border: 1px solid #fff;
}
section#access .inner .access_block p.txt{
    margin: 5.8% 0 4.5% 2.4%;
}


section#access .inner h2{
    margin: 0 8.7% 0 0;
    padding-top: 0.5%;
    font-size: 47px;
    font-family: classico-urw, sans-serif;
    color: rgb(255, 255, 255);
    line-height: 1.2;
}

section#access .open {
    margin: 4.7% 0.8% 0;
    display: flex;
}

section#access .b_hours {
    display: flex;
    column-gap: 45px;
}

section#access .b_hours p{
    font-size: 22px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    line-height: 1.66;
    letter-spacing: 3px;
}

section#access .map {
    width: 580px;
    height: 380px;
    position: absolute;
    top: 24px;
    right: 0;
}
section#access .map iframe{
    width: 100%;
    height: 100%;
    display: block;
}

@media screen and (max-width:768px) {
    section#access{
        padding: 1.3% 3.4% 3.1%;
    }

    section#access .inner h1{
        padding: 0 0 2.5% 7px;
        font-size: 310%;
    }

    section#access .inner p.txt{
        margin: 2% 0 4.9% 2.7%;
        font-size: 190%;
        line-height: 1.7;
    }
    section#access .inner .access_block p.txt{
        margin: 1.8% 0 1.9% 2.4%;
        font-weight: normal;
    }

    section#access .map{
        width: 55%;
        height: 250px;
        top: 0;
        right: -10px;
        position: relative;
    }

    .sp_block{
        margin: 3.1% 0 0;
        display: flex;
        align-items: center;
    }
    section#access .open{
        width: 46%;
        margin: 0 0 0.8%;
        display: block;
    }
    section#access .inner h2{
        margin: 0 0 12%;
        font-size: 256%;
        text-align: left;
        letter-spacing: 2px;
    }
    section#access .b_hours{
        display: block;
    }
    section#access .b_hours p{
        font-size: 160%;
        margin: 0 0 2% 0;
        letter-spacing: 2px;
    }

}

@media screen and (max-width:425px){
    section#access .map {
        height: 180px;
    }
}

.reservation_btn{
    position: fixed;
    bottom: 30px;
    left: 10%;
    z-index: 1;
}
@media screen and (max-width:768px) {
    .reservation_btn{
        width: 19%;
        bottom: 10px;
        left: 4.4%;
    }
}


footer{
    padding: 2.6% 0 1.3%;
    background: #000;
    border-radius: 0;
}

footer .inner{
    background: #000;
    text-align: center;
}

footer .inner .ttl_blcok {
    margin-bottom: 1.2%;
}

footer .footer_logo{
    width: 33%;
    max-width: 388px;
    margin: 0 auto 2.7%;
    display: block;
}

footer p.adderss {
    font-size: 22px;
    color: rgb(255, 255, 255);
    line-height: 1.91;
    letter-spacing: 1px;
}

footer p.tel{
    margin-top: 1%;
    font-size: 22px;
    color: rgb(255, 255, 255);
    line-height: 1.91;
    display: flex;
    align-items: center;
    justify-content: center;
    &:before{
        content: '';
        background: url(../img/japan/icon_tell.png)no-repeat top;
        background-size: 100%;
        width: 44px;
        height: 44px;
        display: block;
        margin-right: 13px;
    }
}

footer p.tel a{
    color: #fff;
    letter-spacing: 2px;
    display: inline-block;
}

footer .bnr__block {
    width: 100%;
    margin-bottom: 0;
    padding: 10px;
    background: #ccccccdb;
    display: flex;
    justify-content: center;
    column-gap: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
}

footer p.info{
    font-size: 20px;
    margin-top: 24px;
}
footer p.info a {
    color: #fff;
    border-bottom: 1px solid #fff;
}
footer p.info a:hover {
    opacity: 0.8;
}

footer .btn_detail{
    width: 210px;
    margin: 5% auto 0%;
    padding: 8px 15px 5px;
    border: 1px solid #999087;
    background: none;
    font-family: 'Garamond Narrow', garamond-premier-pro-display, serif;
    text-transform: uppercase;
    color: #999087;
    border-radius: 50px;
    text-align: center;
    font-size: 120%;
}

p.copy{
    margin-bottom: 0;
    padding: 10px 0 130px;
    background: #000;
    font-size: 18px;
    color: rgb(255, 255, 255);
    line-height: 1.91;
    text-align: center;
}

@media screen and (max-width:768px) {
    footer .contact_block {
        width: 94%;
        margin: 0 auto;
    }

    footer .btn_detail {
        width: 48%;
    }
    
    footer .inner .ttl_blcok{
        padding: 0.6% 4.5%;
        margin-bottom: 2%;
        display: block;
    }
    footer .footer_logo{
        width: 58%;
        max-width: 400px;
        height: auto;
        margin: 8% auto 8.6%;
    }

    footer p.adderss{
        font-size: 156%;
    }
    footer p.tel{
        margin-top: 2.2%;
        font-size: 156%;
        &:before {
            width: 21px;
            height: 24px;
        }
    }

    footer .bnr__block{
        width: 100%;
        margin: 0 auto;
        justify-content: space-between;
        column-gap: 5px;
        padding: 10px 5px;
    }
    footer .bnr__block > div{
        background: #fff;
        width: auto;
    }

    footer p.info{
        margin-top: 5%;
        padding: 0.6% 4.5%;
        font-size: 157%;
    }

    p.copy{
        padding: 5% 4.5% 17.3%;
        font-size: 120%;
        }
}

