@import url(reset.css);

img {
    vertical-align: bottom;
}

body {
    font-family: "Playfair Display","Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    font-size: 16px;
}


/* コンテンツ部全体設定 */
div.texture {
    background-image: url(../images/paper_texture.jpg);
    padding-top: 5vw;
}

.wrapper{
    display: block;
    width: 80vw;
    min-width: 340px;
    margin: 0 auto;
}

h1 {
    font-size: 20px;
    font-weight: 700;
}

/* First View */
header.forPC {
    display: none;
}

.KV_sp{
    width: 90vw;   
    display: block;
    margin: 0 auto; 
}
.KV_sp .bg_container{


    height: 85vh;
    border-radius: 25px;
    background: url(../images/KeyVisual.jpg) top center/ cover no-repeat;
}

.KV_sp img {
    display: block;
    width: 50vw;
    min-width: 300px;
    margin: 0 auto;
    padding-top: 10vh;
}
.KV_sp a.IG {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(../images/Instagram_Glyph_Gradient.svg) center center/ cover no-repeat;
}

header .flex_container {
    display: flex;
    gap: 10px;
    justify-content: end;
    padding:0 5px 5px 0;
}

/* fixed header */
.fixed-header {
    position: fixed;
    top: 10px;
    left: 0;
    /* display: block;
    width: 1000px;
    background-color: red; */

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    z-index: 900;
}

.fixed-header img {
    width: 22vw;
    height: 22vw;
    padding: 0 10px;
    background-color: #fff;
    /* border-radius: 5px; */
    text-align: left;
}

.fixed-header.fade-in {
    opacity: 1;
    visibility: visible;
    animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slideIn {
    0% {
        transform: translateY(0) translateX(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0) translateX(0);
    }

    40%,
    100% {
        opacity: 1;
    }
}

/* about */
h1.lead {
    padding: 0 0 50px;
}

.about p {
    line-height: 26px;
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
}

.top-row {
    padding-top: 100px;
}

/* SNS */
.sns {
    padding-top: 80px;
    text-align: center;
    margin: 0 auto;
}

.sns a.icon {
    display: inline-block;
    margin: 30px 0 5px;
    width: 45px;
    height: 45px;
    background: url(../images/Instagram_Glyph_Gradient.svg) center center/ cover no-repeat;
}

.sns a.icon:hover,
header.forPC a.IG:hover {
    background: url(../images/Instagram_Glyph_Brown.svg) center center/ cover no-repeat;
}
.sns p a{
    padding: 2px;
}
.sns p a:hover{
background-color:#2d120a ;
color: #fff;
}


/* 街並み写真 */
.kobe_cityscape {
    background: url(../images/kobe_cityscape.jpg) center center/ cover no-repeat;
    width: 100vw;
    height: 100vw;
    margin-top: 80px;
}

/* メニュー */
.bgcolor {
    color: #fff;
    background: linear-gradient(#231815, #2D120B);
}

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

.menu .beans{
    margin-top: 120px;
}

.menu dl:last-child {
    margin-bottom: 0;
}

.menu h2 {
    font-size: 18px;
    font-weight: 500;
    margin: 30px 0 20px;
}

.menu h3 {
    font-weight: 500;
    margin: 30px 0 20px;
    text-align: center;
}

.menu span.forSP {
    display: inline;
}

.menu span.forPC {
    display: none;
}

.menu p.caution {
    font-size: 12px;
    padding-left: 1em;
    text-indent: -1em;
    padding-top: 10px;
}

.menu p.caution::before {
    content: "※";
    padding-right: 3px;
}

.menu .takeout dl:nth-child(4) {
    padding-top: 30px;
}

.menu .others {
    margin: 20px auto 0;
    padding-bottom: 80px;
}

.pic_container_forPC{
    display: none;
}
.menu .img{
    width: 100vw;
    height: 100vw;
    margin: 50px 0 0 0;
}
.menu .img1{
background:url(../images/coffeebrew.jpg) center center/ cover no-repeat;
}
.menu .img2{
background:url(../images/coffeecherry.jpg) center center/ cover no-repeat;
}


/* モーダル用 */
.menu .beans dl {
    cursor: pointer;
}
.menu .beans dl:hover {
    background-color: #fff;
    color: #2d120a;
    font-weight:700;
}




/* モーダルウィンドウのスタイル */
body.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.3);
    padding-top: 30px;
}

.modal h2 {
    font-size: 20px;
    font-weight: 600;
}

.modal-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    height: 90%;
    max-height: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.modal-content img {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.modal-content p {
    max-width: 80%;
    margin: 0 auto;
}
.modal-content p#modal-desc {
    text-align: left;
    padding-top: 15px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #e74c3c;
}

/* アクセス */
.access h1 {
    margin-top: 80px;
}

.access p {
    margin: 30px 0;
    line-height: 30px;
}

.map {
    width: 100vw;
    height: 100vw;
}

/* フッタ */
footer {
    background-color: #2D120B;
    color: #fff;
}

footer div.flex_container {
    display: flex;
    justify-content: space-between;
}

footer a.IG {
    display: inline-block;
    margin: 30px 0 5px;
    width: 30px;
    height: 30px;
    background: url(../images/Instagram_Glyph_White.svg) center center/ cover no-repeat;
}

footer a.IG:hover {
    background: url(../images/Instagram_Glyph_Gradient.svg) center center/ cover no-repeat;
}

footer p.lang{
    text-align: right;
    color: rgba(255, 255, 255, .5);
    padding: 3px 5px;
}
footer p.lang a:hover{
color: #2D120B;
background-color: #fff;
}
footer p.crnt{
    color: #fff;
}


/* 連絡先 */
footer p.ctc a:hover {
    border-bottom: #fff 1px solid;
}

footer div.storeinfo p {
    display: block;
    padding-top: 30px;
}

footer div.storeinfo p:last-child {
    padding-bottom: 30px;
}

footer img.logo {
    display: block;
    margin: 0 auto;
    padding-bottom: 20px;
    width: 10vw;
    min-width: 90px;
}

footer p.copyright{
    font-size: 10px;
    padding-bottom: 5px;
    text-align: right;
    margin: 0 auto;
}



/* PC用 */
@media only screen and (min-width:960px) {

    /* コンテンツ部全体設定 */
    .wrapper{
        max-width: 1000px;
        min-width: 960px;
    }

    div.texture {
        padding-top: 20px;
    }


    /* First View */
    .KV_sp {
        display: none;
    }

    header.forPC {
        display: block;
        position: relative;
    }

    header.forPC .setter {
        max-width: 1300px; 
        width: 80vw;
        margin: 0 auto;
        text-align: right;

        position: relative;
        z-index: 800;
    }



    header.forPC .setter a p {
        padding: 3px 10px;
    }

    header.forPC .setter a p:hover {
        background-color: #2d120a;
        color: #fff;
    }

    header.forPC a.IG {
        display: inline-block;
        width: 30px;
        height: 30px;
        background: url(../images/Instagram_Glyph_Gradient.svg) center center/ cover no-repeat;
    }

    img.KVforPC {
        clip-path: url(#mask);
        max-width: 95vw;
        max-height: 95vh;
        object-fit: contain;

        margin: 0 auto;
        display: block;

        position: relative;
        z-index: 0;
        transform: translateY(-30px);
    }

    .fixed-header img {
    width: 150px;
    height: 150px;
} 
    /* @keyframes slideIn {
        0% {
            transform: translateY(-40px) translateX(0);
            opacity: 0;
        }
    
        100% {
            transform: translateY(0) translateX(0);
        }
    
        40%,
        100% {
            opacity: 1;
        }
    }
     */


    /* Container */

    .top-row {
        position: relative;
        padding-top: 170px;
    }


    h1.lead {
        display: inline-block;
        margin-top: 18px;
        width: 37vw;
        max-width: 450px;
    }

    .kobe_cityscape {
        position: absolute;
        right: 0;
        top: 170px;
    }

    .en .kobe_cityscape {
        height: 500px;
    }

    /* about */

    .about p {
        line-height: 26px;
        max-width: 400px;
        width: 45%;
    }

    .kobe_cityscape {
        width: 50vw;
        height: 450px;
        margin-top: 0;
    }
    .en .kobe_cityscape {
        height: 500px;
    }

    /* SNS */
    .sns {
        padding-top: 120px;
    }


    /* メニュー */
    .menu .flex_container {
        display: flex;
        justify-content: space-between;
        max-width: 1000px;
        margin: 0 auto;
    }
    .menu .flex_container .wrapper{
        width: 475px;
        min-width: 0;
    }
    .menu .beans{
        margin-top: 0;
    }
    
    
    .menu h1 {
        margin-bottom: 50px;
    }
    .menu .takeout p,
    .menu .beans p {
        max-width: 475px;
    }
    .menu dl {
        width: 450px;
    }
    .menu .others {
        text-align: center;
        margin: 70px auto 0;
        padding-bottom: 80px;
    }

    .menu span.forSP {
        display: none;
    }

    .menu span.forPC {
        display: inline;
    }
    

    /* メニュー内画像 */
    .menu .pic_container_forSP .img{
        display: none;
    }

    .pic_container_forPC{
        display: flex;
    }
    .menu .img{
        width: 50vw;
        height: 350px;
        margin: 30px 0 0 0;
    }



    /* map */

    .map {
        width: 100%;
        height: 80vh;
    }

    footer a.IG {
        width: 45px;
        height: 45px;
    }
}