@charset "utf-8";
/* -------------------------------------------
Common Style
------------------------------------------- */
/*Top*/
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
.Wrapper {
    position: relative;
    width: 80%;
    max-width: 1080px;
    margin: auto;
}
section h1 {
    font-size: 3rem;
    line-height: 1;
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    font-family: "Zain", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0.75em;
}
section h1 span {
    font-size: 0.9rem;
    color: #e50012;
    margin-left: 0;
    margin-bottom: 1em;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/*FirstView*/
#FirstView {
    position: relative;
    width: 100%;
    margin: auto;
    padding: 0 0;
    z-index: 0;
}
#FirstView h1,
#FirstView p {
    position: absolute;
    z-index: 1
}
#FirstView h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#FirstView p {
    box-sizing: border-box;
    position: absolute;
    font-family: "Zain", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #4c3a3c;
    border: solid 1px #FFF;
    border-left: none;
}
#FirstView img {
    width: 100%;
    object-fit: cover;
    object-position: center center;
}
#FirstView .Slider {
    background: #FFFFFF;
    z-index: 0;
}

/*About*/
#About .ContantsBox {
    width: 100%;
    max-width: 312px;
}
#About figure picture {
    overflow: hidden;
}
#About figure {
    position: relative;
}

/*Snuggle*/
#Snuggle .ContantsBox {
    width: 100%;
}
#Snuggle .Consult ul {
    display: flex;
    flex-wrap: wrap;
}
#Snuggle .Consult ul li {
    box-sizing: border-box;
    border: solid 3px #cda0a3;
    color: #cda0a3;
    background: #FFFFFF;;
    font-weight: 500;
}

/*Menu*/
#Menu dl {
    display: flex;
    flex-wrap: wrap;
    font-weight: 500;
    width: 100%;
}
#Menu dl dd {
    text-align: right;
    margin-bottom: 1em;
}
#Menu dl.DrinkMenu {
    box-sizing: border-box;
    background: #cda0a3;
    color: #FFF;
}
#Menu dl.DrinkMenu dt {
    width: 13em;
}
#Menu dl.DrinkMenu dd {
    width: calc(100% - 14em);
}
#Menu dl.ServiceMenu {
    color: #ab8387;
}
#Menu dl.ServiceMenu dt {
    width: 15em;
}
#Menu dl.ServiceMenu dd {
    width: calc(100% - 16em);
}
#Menu dl.ServiceMenu span {
    font-size: 0.75em;
    display: block;
}
#Menu figure.MorningPlate {
    
}
#Menu figure.MorningPlate figcaption {
    font-size: 1.25em;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    color: #ab8387;
}

/*Info*/
#Info {
    background: #cda0a3;
}
#Info h1 span {
    color: #FFF;
}
#Info dt {
    font-weight: 500;
    color: #8d6c6f;
}
#Info dd {
    margin-left: 1em;
    margin-bottom: 2em;
    position: relative;
}
#Info dd figure {
    margin-top: 1em;
}
#Info dd span.btn {
    text-align: center;
}
#Info dd span.btn a {
    box-sizing: border-box;
    border: solid 1px #FFF;
    background: #FFFFFF;
    color: #8d6c6f;
    padding: 0.25em 0.75em;
    border-radius: 2em;
    transition: all ease-out .4s;
}
#Info dd span.btn a:hover {
    background: #8d6c6f;
    color: #FFFFFF;
}

/*Reserve*/
#Reserve {
    
}


/* -------------------------------------------
MediaQuery
------------------------------------------- */
/*SmartPhone*/
@media screen and (max-width:767px) {
    /*FirstView*/
    #FirstView {

    }
    #FirstView h1 {
        width:80%;
    }
    #FirstView p {
        background: rgba(255,255,255,.75);
        line-height: 1;
        font-size: 2em;
        padding: 0.5em;
        bottom: 14vh;
    }
    
    /*About*/
    #About figure {
        padding-top: 164px;
        display: flex;
        justify-content: space-between;
    }
    #About figure picture:nth-of-type(1) {
        width: 44%;
        border-top-right-radius: 16px;
        border-bottom-right-radius: 16px;
    }
    #About figure picture:nth-of-type(2) {
        width: 51%;
        border-top-left-radius: 16px;
        border-bottom-left-radius: 16px;
        transform: translateY(-100px);
    }
    
    /*Snuggle*/
    #Snuggle {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    #Snuggle .Consult {
        padding-top: 32px;
    }
    #Snuggle .Consult ul {
        flex-direction: column;
        font-size: 1.25rem;
    }
    #Snuggle .Consult ul li {
        text-align: center;
        padding: 1em;
        margin-bottom: 1.5em;
        border-radius: 16px;
    }
    #Snuggle .Consult figure {
        width: 192px;
        margin: 2.5rem auto 0;
    }
    
    /*Menu*/
    #Menu {
        padding-top: 160px;
        padding-bottom: 80px;
    }
    #Menu header,
    #Menu .Contants p {
        margin-left: 10%;
    }
    #Menu dl.DrinkMenu {
        width: 86%;
        max-width: 334px;
        margin-top: 150px;
        padding: 2rem 2rem 1rem 10%;
        border-top-right-radius: 16px;
        border-bottom-right-radius: 16px;
    }
    #Menu dl.ServiceMenu {
        margin-top: 172px;
        padding-left: 10%;
        padding-right: 5%;
        box-sizing: border-box;
    }
    #Menu figure {
        position: absolute;
        z-index: 1;
    }
    #Menu figure.ColdDrink {
        width: 44%;
        max-width: 170px;
        top: 0;
        right: -2%;
    }
    #Menu figure.MorningPlate {
        width: 51%;
        max-width: 200px;
        left: -2%;
        top: 380px;
    }
    #Menu figure.MorningPlate figcaption {
        position: absolute;
        right: -70%;
        top: 20%;
    }
    #Menu figure.HotDrink {
        width: 92%;
        max-width: 358px;
        left: 4%;
        top: 800px;
    }
    #Menu figure.Partition {
        position: relative;
        width: 75%;
        margin-top: 48px;
        margin-left: 25%;
    }
    #Menu figure.Partition img {
        border-top-left-radius: 32px;
        border-bottom-left-radius: 32px;
    }
    
    /*Info*/
    #Info {
        padding: 52px 0;
    }
    #Info dl dt {
        margin-left: 1rem;
    }
    #Info dl dd {
        margin-left: 2rem;
    }
    #Info dd figure {
        margin-bottom: 2rem;
        padding-left: 2rem;
    }
    #Info dl.Access dd {
        text-align: center;
        margin-bottom: 0;
        margin-left: 0;
    }
    
    /*Reserve*/
    #Reserve {
        padding-top: 80px;
    }
    #Reserve figure {
        width: 75%;
        margin: 48px auto 0;
    }
    #Reserve .sp_elm {
        display: inline-block;
    }
    #Reserve .pc_elm {
        display: none;
    }

}

@media screen and (min-width:768px) and (max-width:1024px) {
    /*FirstView*/
    #FirstView {

    }
    #FirstView h1 {
        width:50%;
    }
    #FirstView p {
        background: #FFF;
        line-height: 1;
        font-size: 2em;
        padding: 0.5em 1em 0.5em;
        bottom: -1em;
        border-top-right-radius: 1em;
    }
    
    /*About*/
    #About figure {
        width: 30%;
        position: absolute;
        top: 32px;
        right: 5%;
    }
    #About figure picture {
        display: block;
        width: 100%;
        border-radius: 16px;
    }
    #About figure picture:nth-of-type(1) {
        transform: translateX(-64px);
    }
    #About figure picture:nth-of-type(2) {
        transform: translateY(-32px);
    }
    
    /*Snuggle*/
    #Snuggle {
        padding-top: 96px;
        padding-bottom: 96px;
    }
    #Snuggle .Consult ul {
        width: 48%;
        flex-direction: column;
        font-size: 1.25rem;
        margin-top: 1.5em;
    }
    #Snuggle .Consult ul li {
        text-align: center;
        padding: 1em;
        margin-bottom: 1.5em;
        border-radius: 16px;
    }
    #Snuggle .Consult {
        padding-top: 48px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    #Snuggle .Consult .Contents {
        width: 48%;
        text-align: center;
    }
    #Snuggle .Consult figure {
        width: 50%;
        margin: 1.5em auto;
    }

    /*Menu*/
    #Menu {
        padding-top: 160px;
        padding-bottom: 96px;
    }
    #Menu header,
    #Menu .Contants p {
        margin-left: 10%;
    }
    #Menu dl.DrinkMenu {
        width: 55%;
        margin-top: 150px;
        padding: 2rem 2rem 1rem;
        border-radius: 16px;
        margin-left: 42%;
    }
    #Menu dl.ServiceMenu {
        width: 60%;
        margin-top: 48px;
        padding-left: 10%;
        padding-right: 5%;
        box-sizing: border-box;
    }
    #Menu figure {
        position: absolute;
        z-index: 1;
    }
    #Menu figure.ColdDrink {
        width: 32%;
        max-width:320px;
        top: 3%;
        right: 5%;
    }
    #Menu figure.MorningPlate {
        width: 46%;
        max-width: 480px;
        left: -2%;
        top: 420px;
    }
    #Menu figure.MorningPlate figcaption {
        position: absolute;
        right: -15%;
        top: -10%;
    }
    #Menu figure.HotDrink {
        width: 40%;
        max-width: 480px;
        right: -2%;
        top: 103vw;
    }
    #Menu figure.Partition {
        position: relative;
        width: 55%;
        margin-top: 48px;
        margin-left: 0%;
    }
    #Menu figure.Partition img {
        border-top-right-radius: 32px;
        border-bottom-right-radius: 32px;
    }
    
    /*Info*/
    #Info {
        padding: 80px 0;
    }
    #Info .Contants {
        display: flex;
        flex-wrap: wrap;
    }
    #Info dl {
        width: 50%;
    }
    #Info dl dt {
        margin-left: 1rem;
    }
    #Info dl dd {
        margin-left: 2rem;
    }
    #Info dd figure {
        margin-bottom: 2rem;
        padding-left: 2rem;
    }
    #Info dl.Access dd {
        text-align: right;
        margin-bottom: 0;
        margin-left: 0;
    }
    
    /*Reserve*/
    #Reserve {
        padding-top: 96px;
    }
    #Reserve .Wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #Reserve .Wrapper .ContantsBox {
        width: 50%;
    }
    #Reserve figure {
        width: 45%;
        text-align: center;
    }
    #Reserve figure img {
        width: 65%;
    }
    
}

/*Tablet*/
@media screen and (max-width:1024px) {

}

/*Desktop*/
@media screen and (min-width:768px) {
    .sp_elm { display: none; }
    .pc_elm { display: block; }
    /*Reserve*/
    #Reserve .sp_elm {
        display: none;
    }
    #Reserve .pc_elm {
        display: inline-block;
    }
}

@media screen and (min-width:1025px) {
    /*FirstView*/
    #FirstView {
        width: 80%;
        margin-top: 64px;
    }
    #FirstView h1 {
        width: 40%;
    }
    #FirstView p {
        background: #FFF;
        line-height: 1;
        font-size: 2em;
        padding: 0.5em 1em 0.5em 0.5em;
        bottom: -1em;
        border-top-right-radius: 1em;
    }
    #FirstView ul.Slider {
        border-radius: 64px;
        overflow: hidden;
    }
    
    /*About*/
    #About figure {
        width: 87%;
        position: absolute;
        top: 0;
        left: 45vw;
    }
    #About figure picture {
        display: block;
        width: 33%;
        border-radius: 32px;
        max-width: 520px;
    }
    #About figure picture:nth-of-type(1) {
        position: relative;
        z-index: 1;
    }
    #About figure picture:nth-of-type(2) {
        position: absolute;
        top: 50%;
        left: 25%;
    }
    
    /*Snuggle*/
    #Snuggle  {
        margin-top: 80px;
        margin-bottom: 128px;
        padding-top: 0;
        padding-bottom: 0;
    }
    #Snuggle .Consult ul {
        width: 48%;
        flex-direction: column;
        font-size: 1.25rem;
        margin-top: 1.5em;
    }
    #Snuggle .Consult ul li {
        text-align: center;
        padding: 1em;
        margin-bottom: 1.5em;
        border-radius: 16px;
    }
    #Snuggle .Consult {
        padding-top: 48px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    #Snuggle .Consult .Contents {
        width: 48%;
        text-align: center;
    }
    #Snuggle .Consult figure {
        width: 50%;
        margin: 1.5em auto;
    }
    
    /*Menu*/
    #Menu {
        margin-top: 180px;
        margin-bottom: 128px;
        padding-top: 80px;
        padding-bottom: 0;
    }
    #Menu .ContantsBox {
        width: 25%;
        margin-left: 55%;
    }
    #Menu dl.DrinkMenu {
        width: 100%;
        margin-top: 48px;
        padding: 2rem 2rem 1rem;
        border-radius: 32px;
    }
    #Menu dl.ServiceMenu {
        width: 100%;
        margin-top: 48px;
        box-sizing: border-box;
    }
    #Menu figure {
        position: absolute;
        z-index: 1;
    }
    #Menu figure.ColdDrink {
        width: 13.6%;
        max-width: 270px;
        top: -8%;
        left: 7.5%;
    }
    #Menu figure.MorningPlate {
        width: 22%;
        max-width: 420px;
        top: 5%;
        left: 24%;
    }
    #Menu figure.MorningPlate figcaption {
        position: absolute;
        right: -15%;
        top: -10%;
    }
    #Menu figure.HotDrink {
        width: 22%;
        max-width: 418px;
        top: 35%;
        left: 10%;
    }
    #Menu figure.Partition {
        width: 15%;
        max-width: 296px;
        bottom: 0%;
        left: 35%;
    }
    #Menu figure.Partition img {
        border-radius: 32px;
    }
    
    /*Info*/
    #Info {
        padding: 96px 0;
    }
    #Info .Contants {
        display: flex;
        flex-wrap: wrap;
    }
    #Info dl {
        width: 27%;
        margin-left: 5%;
    }
    #Info dl.Access {
        width: 40%;
        margin-left: 15%;
    }
    #Info dl dt {
        margin-left: 1rem;
    }
    #Info dl dd {
        margin-left: 2rem;
    }
    #Info dd figure {
        margin-bottom: 2rem;
        padding-left: 2rem;
    }
    #Info dl.Access dd {
        margin-bottom: 0;
        margin-left: 0;
    }
    #Info dl.Access dd span {
        position: absolute;
        bottom: 0;
        right: -3rem;
    }
    
    /*Reserve*/
    #Reserve {
        padding-top: 128px;
    }
    #Reserve .Wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #Reserve .Wrapper .ContantsBox {
        width: 30%;
    }
    #Reserve figure {
        width: 65%;
        text-align: center;
    }
    #Reserve figure img {
        width: 35%;
    }

}







