@charset "utf-8";

#menu {
    width: 80%;
    margin: 0 auto;
    padding-top: 100px;
    text-align: center;
}

#menu h2 {
    font-size: 28px;
}

#menu p {
    margin-top: 10px;
}

#menu-info {
    width: 80%;
    margin: 0 auto;
    margin-top: 60px;
    text-align: center;
    opacity: 0;
    transition: 1.5s;

}

#menu-info h3 {
    font-size: 28px;
    line-height: 2;
}

#menu-info.is-show{
    opacity: 1;
}

#menu-info p {
    margin-top: 30px;
}

/* パフェエリア */
.flex-parfait {

    display: flex;
    width: 80%;
    margin: 0 auto;
    margin-top: 100px;
    max-width: 1000px;
    justify-content: left;
    align-items: center;

}

.flex-parfait img {
    width: 30%;
    height: 100%;
}

.par-inner {
    width: 50%;
    margin-left: 10%;
}

.par-inner p span {
    text-decoration: underline;
}


.par-inner p span:hover {
    color: #b04f4f;
}


.par-inner h4 {
    font-size: 25px;
}

.par-inner p:nth-child(3) {
    line-height: 2;
    margin-top: 30px;
}

.par-inner p:nth-child(4) {
    display: inline-block;
    margin-top: 30px;
    background-color: #fbb03b;
}

.par-inner p:last-child {
    margin-top: 50px;
    margin: 50px 0 0 auto;
    background-color: #fffef8;
    width: fit-content;
    position: relative;
}

p.border::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 50%;
    width: 200%;
    right: 100%;
    border-bottom: solid 1px #000;

}

/* アテンションエリア */
.attention {
    width: 60%;
    margin: 0 auto;
    margin-top: 100px;
    padding: 3% 4%;
    border: 1px solid #000;
    text-align: center;
    line-height: 2.5;
    position: relative;

}

.attention h4 {
    font-size: 20px;
}

.attention p:last-child {
    text-align: left;
}

.attention p span {
    text-decoration: underline;
}


.attention p span:hover {
    color: #b04f4f;
}

.attention::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fbf5d2;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    transition: 0.9s;
    transition-delay: 0.3s;

}
.attention.is-show::before {
    right: -35px;
    top:35px;

}


/* リコメンドエリア */

.recommend-area {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 100px;
    text-align: center;

}

.recommend-area h4 {
    font-size: 20px;
}

.slick-recom {
    margin-top: 40px;
}

.slick-slide {
    padding: 0 17px;
}

.slick-slide p {
    margin-top: 10px;

}

.slick-arrow:before {
    content: "" !important;
}

/* ドリンクエリア */

.drink-area {
    width: 60%;
    margin: 0 auto;
    margin-top: 100px;
    padding: 2% 4%;
    text-align: center;
    line-height: 3;
    border: 1px solid #000;

}

.drink-area h4 {
    font-size: 20px;
}

.flex-drink {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.flex-drink dl {
    width: 40%;
}

.in-flex {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.in-flex::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 100%;
    border-bottom: solid 1px #000;
}

.in-flex dt {
    margin: 0;
    padding: 0 5px 0 0;
    background-color: #fffef8;
    z-index: 2;
    text-align: left;
}

.in-flex dd {
    margin: 0;
    padding: 0 0 0 5px;
    background-color: #fffef8;
    z-index: 2;
    text-align: right;
}

/* コーヒーエリア */
.coffee-area {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 100px;
}

.coffee-area h4 {
    text-align: center;
    font-size: 20px;
}

.flex-cof {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    flex-direction: row-reverse;

}

.flex-cof img {

    width: 35%;
    height: 100%;
}

.flex-cof p {
    line-height: 2;
    width: 50%;   
     opacity: 0;
    transition: 1.8s;

}
.flex-cof p.is-show {
    opacity: 1;
}

/* ケーキエリア */
.cake-area {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 100px;
}

.cake-area h4 {
    text-align: center;
    font-size: 20px;
}

.flex-ca {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.flex-ca img {

    width: 35%;
    height: 100%;
}

.flex-ca p {
    line-height: 2;
    width: 50%;
    opacity: 0;
    transition: 1.8s;

}
.flex-ca p.is-show {
    opacity: 1;
}

.flex-ca p span {
    text-decoration: underline;
}


.flex-ca p span:hover {
    color: #b04f4f;
}


/* パララックスエリア */

.parallax {
    height: 300px;
    width: auto;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    -webkit-overflow-scrolling: touch;
    background-image: url(../img/parallax2.jpg);
    margin-top: 50px;
}

/* オーダーエリア */
.order-area {
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
    text-align: center;
}

.order-area h4 {
    font-size: 25px;
}

.order-area h4+p {
    font-size: 18px;
    margin-top: 7px;

}

.order-area p+p {
    margin-top: 30px;
    line-height: 2.75;

}

.contact-bt {
    width: fit-content;
    margin: 0 auto;
    margin-top: 15px;
}

.contact-bt p {
    font-weight: bold;
}

.under {
    width: 200%;
    height: 15px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: skew(40deg);
    margin: -10px 0 0 -25px;
    translate: -10px 0;

}

.under:hover {
    translate: 0 0;
    transition: all 0.3s;
  
}


/* .order-area img{
    width: 20%;
    height: 100%;
    max-width: 220px;
    min-width: 150px;
    margin-top: 30px;
} */

@media (max-width:600px){
    #menu-info h3 {
        font-size: 20px;
    }
    #menu-info p {
        margin-top: 15px;
        line-height: 1.75;
    }
    .flex-parfait {
        display: block;
        margin-top: 50px;
    }
    .flex-parfait img {
        width: 70%;
        height: 100%;
    }
    .par-inner {
        width: 100%;
        margin-left:0;
        margin-top: 10px;
    }
    .attention {
        width: 80%;
        line-height: 2;
    
    }
    .recommend-area {
        margin-top: 50px;
    }
    .slick-slide {
        padding: 0 3px;
    }
    .drink-area {
        width: 80%;
    
    }
    .flex-drink {
        display: block;
    
    }
    
    .flex-drink dl {
        width: 100%;
    }
    .flex-cof {
        display: block;
    }

    .flex-cof p {
        width: 100%;
    }
    
    .flex-cof img {

        width: 70%;
        display: block;
        margin: 0 auto;
    }
    
    .flex-ca {
        display: block;
    }
    .flex-ca p {
        width: 100%;
    }
    .flex-ca img {

        width: 70%;
        display: block;
        margin: 0 auto;

    }
    .parallax {
        height: 150px;
        background-position: 80% center;
        width: auto;
        /* background-position: center top; */
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-size: cover;
        /* -webkit-overflow-scrolling: touch; */
        margin-top: 100px;

    }
    .order-area p+p {
        line-height: 2;
        text-align: left;
    
    }
    
}