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

body{
    font-family: fot-rodin-pron, sans-serif;
    background-color: #222222;
    color: #efebcc;
    position: relative;
}

p{
    font-size: 14px;
}

img{
    width: 100%;
}

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

a{
    text-decoration: none;
}

figure{
    margin-bottom: 0;
}

.sp{
    display: none;
}

.head-info{
    position: fixed;
    background-color: #0d6e62;
    color: #222222;
    width: 100%;
    z-index: 9999;
}

.head-info p{
    text-align: center;
    margin: 10px 0;
}

.navbar{
    position: fixed;
    top: 41px;
    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 a{
    color: #efebcc;
    font-size: 24px;
    font-weight: bold;
}

.logo a img{
    width: 60%;
}

.hamburger{
    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: #efebcc;
    border-radius: 2px;
    transition: all 0.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 0.6s ease,backdrop-filter 0.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 0.6s ease,backdrop-filter 0.6s ease;
}

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

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

.fullscreen-menu a{
    position: relative;
    display: inline-block;
    color: #efebcc;
    font-size: 1.2rem;
    padding: 0.25em 0;
    transition: 0.5s;
}

.fullscreen-menu a:hover{
    letter-spacing: 3px;
    color: #0d6e62;
}


.main-visual{
    position: relative;
    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.5;
    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;
}

.mainv-logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    text-align: center;
}

.mainv-logo i{
    font-size: 100px;
    color: rgba(108, 34, 13, 0.9);
}

.mainv-logo p{
    color: #bda436;
}

.mainv-content{
    z-index: 1;
    color: #efebcc;
    width: 50%;
    position: absolute;
    bottom: 5%;
    left: 5%;
}

.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(13,110,98,0) 0%, rgba(13,110,98,0.4) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    border-radius: 30px;
}

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

.view-btn:hover,.tp-menu-list a:hover .view-btn {
    color: #0d6e62;
    border: 0.1px solid rgba(13, 110, 98, 0.4);
}

.tp-about-bg{
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 100px auto;
}

.tp-about-img,.tp-about-content{
    width: 50%;
}

.tp-about-content{
    padding: 0 40px;
}

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

.tp-title h2{
    color: #0d6e62;
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
}

.tp-title h2 i{
    padding: 0 10px;
}

.tp-title p{
    color: #bda436;
    letter-spacing: 1px;
}

.tp-about-text p{
    line-height: 2em;
}

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

.tp-menu-list{
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 100px;
}

.tp-menu-list a{
    display: block;
    width: 25%;
    text-align: center;
}

.tp-menu-list h3{
    font-family: "Baskervville", serif;
    margin: 30px 0;
    color: #efebcc;
    transition: .4s;
}

.tp-menu-list a:hover h3{
    color: #0d6e62;
}

.tp-menu-list p{
    margin: 0 auto;
}

.tp-menu-drink,.tp-menu-dessert{
    margin-top: 50px;
}

.tp-hl{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 50px auto;
}

.tp-hl figure{
    width: 30%;
}

.tp-hl-content{
    width: 40%;
}

.tp-hl-content h3{
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
}

.tp-hl-content h3 span{
    font-size: 14px;
    padding-left: 10px;
}

.tp-hl-content th,.tp-hl-content td{
    padding: 10px 0;
}

.tp-hl-content td{
    padding-left: 20px;
}

.tp-hl-content td a{
    color: #efebcc;
    border-bottom: 1px solid #efebcc;
    padding-bottom: 5px;
    transition: .3s;
}

.tp-hl-content td a:hover{
    color: #bda436;
    border-bottom: 1px solid #bda436;
}

.tp-hl-content td a i{
    padding-right: 5px;
}

.tp-map{
    margin-top: 100px;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100%);
}

footer{
    padding: 50px 0;
    background-color: black;
}

.foot-sitemap{
    display: flex;
    justify-content: center;
    gap: 50px;
    border-bottom: 1px solid #efebcc;
    padding-bottom: 30px;
}

.foot-sitemap a{
    color: #efebcc;
    transition: .3s;
}

.foot-sitemap a:hover{
    color: #bda436;
}

.foot-logo{
    margin-top: 30px;
}

.foot-logo h2{
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
    text-align: center;
}

.foot-sns{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.foot-sns a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 30px;
    color: #222222;
    background-color:#efebcc;
    border: 1px solid #efebcc;
    transition: .3s;
}

.foot-sns a:hover{
    background-color: #222222;
    border: 1px solid #efebcc;
    color: #efebcc;
}

.copy{
    margin-top: 30px;
}

.copy p{
    text-align: center;
    letter-spacing: 2px;
}

/* head common */
.head-common{
    position: relative;
    width: 100%;
    margin-top: 150px;
}

.head-title{
    position: absolute;
    bottom: -50px;
    width: 70%;
}

.head-title h2{
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
}

.head-title-sub{
    color: #0d6e62;
    letter-spacing: 2px;
}

.head-img{
    width: 70%;
    margin-left: auto;
}

/* about */

.about-greeting{
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 100px;
}

.about-tl,.about-tr{
    width: 50%;
}

.about-tl1{
    margin-bottom: 50px;
}

.about-tl2{
    width: 70%;
    margin-left: auto;
}

.about-tr{
    margin-top: 150px;
}

.about-text{
    margin-top: 50px;
}

.about-text h3,.about-text2 h3{
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
    color: #0d6e62;
}

.about-text p,.about-text2 p{
    line-height: 2em;
    margin-top: 20px;
}

.about-img{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 100px 0;
}

.about-text2{
    margin: 0 auto 50px auto;
    width: 50%;
}

.about-text2 h3{
    text-align: center;
}

/* menu */
.menu-title{
    text-align: center;
    color: #bda436;
    font-size: 30px;
    letter-spacing: 2px;
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
}

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

.menu{
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.menu-content{
    width: 45%;
    margin-top: 50px;
}

.menu-subtitle{
    text-align: center;
    border-bottom: 1px solid #0d6e62;
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: #0d6e62;
    font-size: 16px;
}

.menu-list{
    width: 100%;
}

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

.menu-list th,.menu-list td{
    border-bottom: 1px dotted #efebcc;
    padding: 20px 0;
}

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

.course-content{
    text-align: center;
}

.cc1{
    font-size: 20px;
}

.cc1 span{
    background-color: #efebcc;
    color: #222222;
    font-size: 14px;
    display: block;
    width: 200px;
    margin: 10px auto;
    border-radius: 20px;
}

.course-content h4{
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
    font-size: 30px;
    color: #0d6e62;
}

.cc2{
    width: 150px;
    border: 1px solid #efebcc;
    border-radius: 20px;
    margin: 10px auto;
}

.cc3{
    font-size: 24px;
    margin-top: 20px;
}

.cc3 span{
    display: block;
    font-size: 14px;
}

.mb{
    margin-bottom: 100px;
}

/* hours & Location */
.hl-content{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 150px;
}

.hl-l,.hl-r{
    width: 45%;
}

.hl-l h3{
    color: #0d6e62;
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
    margin-bottom: 20px;
}

.hl-l h3 span{
    font-size: 12px;
    padding-left: 10px;
}

.hl-l table{
    width: 100%;
}

.hl-l th,.hl-l td{
    padding: 10px 0;
    border-bottom: 1px dotted #4d4b41;
}

.hl-l th{
    width: 25%;
}

.hl-l td{
    width: 75%;
}

.hl-l td a{
    color: #efebcc;
}

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

.hl-map{
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.hl-map iframe{
    width: 100%;
    height: calc(300px + 300px);
    margin-top: -150px;
}

.shop-title{
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
    text-align: center;
    color: #0d6e62;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.shopintro-img{
    display: flex;
    justify-content: center;
    gap: 30px;
}

.si-img-l,.si-img-r{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.si-img-l,.si-img-r{
    width: 23%;
}

.si-img-c{
    width: 49%;
}

.shopintro-text{
    width: 50%;
    margin: 0 auto;
}

.shopintro-text p{
    margin-top: 30px;
    line-height: 2em;
}

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

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

.label{
    width: 30%;
}

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

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

input,textarea{
    width: 500px;
    border: 1px solid #bda436;
    background-color: #222222;
    color: #efebcc;
    border-radius: 20px;
    padding-left: 10px;
}

input{
    height: 40px;
}

input:focus,textarea:focus{
    background-color: #4d4b41;
}

textarea{
    height: 100px;
    padding-top: 5px;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;

    color: inherit;
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;

    text-align: inherit;
    text-decoration: none;

    cursor: pointer;

    outline: none;
}

.sousin{
    width: 200px;
    height: 40px;
    text-align: center;
    border: 1px solid #bda436;
    color: #bda436;
    border-radius: 20px;
    transition: .3s;
}

.sousin:hover{
    background-color: #bda436;
    color: white;
}

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

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

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

.pripoli-content h3{
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
    margin: 30px auto 10px auto;
    font-size: 20px;
    color: #bda436;
    letter-spacing: 1px;
}

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

.pripoli-content li i{
    padding-right: 5px;
}