/*
英
font-family: "Baskervville", serif;
日　ロダン
font-family: fot-rodin-pron, sans-serif;
日　明朝
font-family: dnp-shuei-nshogomincho-std, sans-serif;
*/

body{
    background-color: #222222;
    font-family: fot-rodin-pron, sans-serif;
    color: #888f91;
}

p{
    font-size: 14px;
}

img{
    width: 100%;
}

ul{
    padding-left: 0;
    list-style-type: none;
}

a{
    text-decoration: none;
}

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    z-index: 20;
}

.logo{
    width: 20%;
}

.hamburger{
    position: fixed;
    top: 0;
    right: 0;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 9999;
}

.hamburger span{
    display: block;
    height: 4px;
    background: #eee;
    border-radius: 2px;
    transition: all .4s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.fullscreen-menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s ease,backdrop-filter .6s ease;
    z-index: 3;
}

.fullscreen-menu.active{
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.fullscreen-menu.fade-out{
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: opacity .6s ease,backdrop-filter .6s ease;
}

.fullscreen-menu ul{
    list-style: none;
    text-align: center;
}

.fullscreen-menu li{
    margin-bottom: 30px;
}

.fullscreen-menu a{
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    padding: 0.25em 0;
    transition: color 0.3s ease;
}

.fullscreen-menu a::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.fullscreen-menu a:hover::before{
    transform: scaleX(1);
    transform: right;
}


.main-visual{
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.main-visual .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/index/main.jpg') center center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.main-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, rgba(34, 34, 34, 1), rgba(34, 34, 34, 0));
    z-index: -1;
}

.main-content{
    position: relative;
    width: 100%;
    color: white;
    z-index: 1;
    margin: auto;
    padding-left: 50px;
}

.main-content h1{
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
    font-size: 65px;
    line-height: 1.5em;
    letter-spacing: 20px;
    text-shadow: 0px 0px 10px rgba(204, 204, 204, 0.6);
}

.main-content p{
    letter-spacing: 1px;
    line-height: 2em;
}

.view-btn {
    position: relative;
    overflow: hidden;
    z-index: 0;
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
    display: block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    text-align: center;
    border: 0.1px solid rgba(162, 181, 186, 0.4);
    border-radius: 30px;
    color: white;
    background: radial-gradient(circle, rgba(162,181,186,0) 0%, rgba(162,181,186,0.4) 100%);
    transition: color 0.4s ease, border 0.4s ease;
}

.view-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(196,202,204,0) 0%, rgba(196,202,204,0.4) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    border-radius: 30px;
}

.view-btn:hover::before,
.tp-menu a:hover .view-btn::before {
    opacity: 1;
}

.view-btn:hover,.tp-menu a:hover .view-btn {
    color: #eee;
    border: 0.1px solid rgba(194, 202, 204, 0.4);
}

.tp-title{
    text-align: center;
}

.tp-title h2{
    font-family: "Baskervville", serif;
    color: #eee;
    margin-top: 20px;
    font-size: 40px;
}

.tp-title p{
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
    color: #758492;
}

.tp-about{
    background: linear-gradient(90deg, rgba(34, 34, 34, 0.9) 30%, rgba(34, 34, 34, 0)),url("../img/index/about.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 200px 0;
}

.tp-about-l{
    width: 50%;
}

.tp-about-l img{
    width: 10%;
}

.tp-about-text p{
    line-height: 2em;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.tp-about-text a{
    margin: 0 auto;
}

.tp-menu{
    display: flex;
    justify-content: space-between;
}

.tp-menu-b {
    position: relative;
    display: block;
    width: 100%;
    height: 30vh;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.tp-menu-b .bg-layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.6);
    transition: background-color 0.4s ease;
    z-index: 1;
}

.tp-menu-b:hover .bg-layer {
    background-color: rgba(34, 34, 34, 0.9);
}

.tp-menu-drink {
    background-image: url('../img/index/menu2.jpg');
}

.tp-menu-food {
    background-image: url('../img/index/menu1.jpg');
}

.tp-menu-dessert {
    background-image: url('../img/index/menu3.jpg');
}

.tp-menu-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    z-index: 2;
}

.tp-menu-sub{
    color: #758492;
}

.tp-menu-content h3{
    font-family: "Baskervville", serif;
    color:  white;
    font-size: 50px;
    letter-spacing: 1px;
}

.tp-hl{
    margin: 200px auto;
}

.tp-hl .tp-title img{
    width: 5%;
}

.tp-hl-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.tp-hl-content figure,.tp-hl-info{
    width: 48%;
}

.tp-hl-info th,.tp-hl-info td{
    padding: 5px;
}

.tp-hl-info th{
    width: 20%;
}

.tp-hl-info td{
    width: 80%;
}

.tp-hl-info td a{
    color: #888f91;
}

.tp-hl-info td a i{
    padding-right: 10px;
}

iframe{
    filter: grayscale(100%);
}

footer{
    padding: 100px 0;
}

.foot-sitemap{
    border-bottom: 1px solid #888f91;
    padding-bottom: 10px;
}

.foot-sitemap ul{
    display: flex;
    justify-content: center;
}

.foot-sitemap li{
    padding: 0 20px;
}

.foot-sitemap li a{
    color: #888f91;
}

footer figure{
    width: 20%;
    margin: 20px auto;
}

.foot-sns ul{
    display: flex;
    justify-content: center;
}

.foot-sns li a{
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #222222;
    background-color: #888f91;
    border-radius: 20px;
}

.foot-copy p{
    text-align: center;
    font-size: 14px;
}

/* common */
.common-head{
    height: 30vh;
}

.common-head .main-content{
    padding-top: 70px;
}

.common-head h1{
    font-size: 30px;
    letter-spacing: 5px;
}

.common-head h3{
    font-size: 18px;
    margin-top: 20px;
}

.common-head p{
    letter-spacing: 0;
    line-height: 1.3em;
}

.common-map{
    margin-top: 100px;
}

/* about */
.about-content1 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 100px;
}

.about-text {
    padding-left: 100px;
    width: 50%;
}

.about-text h3 {
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
    font-size: 24px;
    color: #eee;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 14px;
    line-height: 2;
}

.about-text figure{
    width: 30%;
    margin-top: 30px;
    margin-left: auto;
    text-align: right;
}

.about-img1 {
    display: flex;
    width: 45%;
    gap: 20px;
}

.about-img1 img{
    width: 100%;
    height: auto;
}

.about-content2{
    position: relative;
    margin: 100px auto;
}

.ab-img-l{
    width: 70%;
}

.ab-img-r{
    position: absolute;
    width: 40%;
    top: 20%;
    right: 0;
}

/* shop */
.shop-flex1,.shop-flex2,.sh-intro-img{
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.shop-flex1{
    margin: 100px auto;
}

.sh-info{
    width: 55%;
}

.sh-info figure{
    width: 60%;
}

.sh-info th,.sh-info td{
    padding: 10px 0;
}

.sh-info th{
    width: 30%;
}

.sh-info td a{
    color: #758492;
}

.sh-info td i{
    padding-right: 10px;
}

.sh-map{
    width: 40%;
}

.sh-img{
    display: flex;
    gap: 20px;
}

.shop-flex2{
    margin-top: 100px;
}

.sh-intro-l,.sh-intro-r{
    width: 48%;
}

.sh-intro-l h3{
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
    color: #eee;
}

.sh-intro-img{
    gap: 20px;
}

/* menu */
#drink,#food,#dessert{
    margin-top: -100px;
    padding-top: 100px;
}

.menu-content{
    margin: 100px auto;
}

.menu-title{
    align-items: start;
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
    margin-bottom: 0;
}

.menu-title h2{
    color: #eee;
    font-size: 30px;
    margin-bottom: 0;
}

.menu-title span{
    font-size: 30px;
    margin-bottom: 0;
    color: #888f91;
    padding-left: 10px;
}

.menu-title p{
    font-size: 12px;
    color: #758492;
    margin-bottom: 0;
}

.menu-sake-date{
    width: 100%;
    margin-bottom: 50px;
}

.menu-sake-date img{
    border-radius: 10px;
}

.menu-margin{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.menu-title{
    width: 30%;
}

.menu-sake,.menu-list{
    width: 65%;
}

.menu-sake{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menu-sake::after{
    content: "";
    width: 30%;
}

.menu-sake-list{
    width: 30%;
}

.menu-sake-list h4{
    font-size: 18px;
}

.menu-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.menu-list table{
    width: 48%;
    border-collapse: collapse;
}

.menu-list th,.menu-list td,.menu-nomi th,.menu-nomi td{
    padding: 20px 12px;
}

.menu-list td{
    text-align: right;
}

.menu-list tr:first-child th,
.menu-list tr:first-child td,.menu-nomi tr:first-child th,
.menu-nomi tr:first-child td  {
    border-top: 1px solid #eee;
}

.menu-list tr:not(:first-child) th,
.menu-list tr:not(:first-child) td,.menu-nomi tr:not(:first-child) th,
.menu-nomi tr:not(:first-child) td {
    border-top: 1px dotted #758492;
    border-bottom: 1px dotted #758492;
}

.menu-list th i{
    background-color: #758492;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height:30px;
    font-size: 14px;
    text-align: center;
    color: white;
    border-radius: 20px;
    margin: 0 3px;
}

.menu-nomi{
    width: 65%;
}

.menu-nomi table{
    width: 100%;
}

.menu-nomi p{
    text-align: right;
    margin-top: 20px;
}

.menu-nomilist h4{
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
    color: white;
    border-bottom: 1px solid #888f91;
    padding-bottom: 10px;
}

.menu-nomilist h4 span{
    font-family: fot-rodin-pron, sans-serif;
    font-size: 14px;
    padding-left: 20px;
    color: #758492;
}

.menu-nomilist p{
    text-align: left;
}

.menu-de-img{
    display: flex;
    gap: 30px;
    margin: 50px auto;
}

.menu-drinkset{
    border: 1px solid #758492;
    margin-bottom: 100px;
}

.menu-drinkset h3{
    text-align: center;
    margin: 20px auto;
}

.menu-drinkset ul{
    display: flex;
    justify-content: center;
    gap: 30px;
}

.menu-item ul{
    display: flex;
    justify-content: center;
    gap: 30px;
}

.menu-item li i{
    padding-right: 10px;
}

.menu-item p{
    text-align: center;
}

/* contact */
.contact-content{
    margin-top: 100px;
}

.field{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.field label{
    width: 30%;
}

.label i{
    padding-right: 10px;
}

.label span{
    color: #eee;
    padding-left: 10px;
    font-size: 12px;
}

.control{
    width: 65%;
}

.input,.textarea{
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #222222;
    color: #888f91;
}

.field input:focus,
.field textarea:focus{
    outline: none;
    border-color: #eee;
}

.field textarea{
    height: 150px;
    resize: none;
}

.sousin{
    width: 100px;
    height: 40px;
    background-color: #eee;
    color: #222222;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 20px auto;
}

.sousin:hover{
    background-color: #888f91;
    color: #222222;
}

/* privacypolicy */
.pripoli-content{
    margin-top: 100px;
}

.pripoli-content p{
    margin-bottom: 0;
}

.pripoli-content h3{
    margin-top: 50px;
    font-size: 20px;
    color: #eee;
}

.pripoli-content li{
    font-size: 14px;
    margin-top: 5px;
}