*{
    font-family: vdl-megamaru, sans-serif;
    font-weight: 400;
    font-style: normal;
}

html{
    font-size:100%;
}

body{
    background-color:#FAF2CD;
}

header{
    position:fixed;
    z-index:100;
    width:100%;
    top:-120px;
    transition:0.5s;
}

.open{
    top:10px;
}

main{
    position:relative;
}

.top-image{
    position:relative;
    width:100%;
    height:800px;
}

.top-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.top-image .title{
    position:absolute;
    top:10px;
    left:30px;
    font-size:1.5rem;
    text-shadow:3px 3px #FFDD50;
    line-height:60pt;
}

.top-image .title span{
    font-size:5rem;
}

.menu{
    display:flex;
    justify-content:space-around;
    width: 100%;
    margin:0 auto;
    top:770px;
}

main .menu{
    position:absolute;
    z-index:90;
}

.menu .link{
    width:22%;
    transition:0.5s;
}

.menu .link p{
    display:block;
    width:100%;
    height:100%;
    font-size:1.5rem;
    text-align:center;
}

.menu .ye{
    background-color:#FFDD50
}

.menu .or{
    background-color:#FF953E;
}

.menu .link:hover{
    background-color:#FFC152;
    cursor:pointer;
}

#info,#sweets,#access,#contact{
    width:80%;
    margin:200px auto;
}

.section-title h2{
    height:100px;
    position:relative;
    font-size:3rem;
}

.section-title h2::before{
    z-index:-1;
    content:"";
    position:absolute;
    width:80px;
    height:80px;
    left:-20px;
    top:10px;
    background-color:#FFC152;
    box-shadow:-8px 8px #FFDD50;
    transform:rotate(45deg);
}

.infos{
    position:relative;
    margin-top:100px;
    background-color:#FAF2CD;
    box-shadow:5px 5px #FFC152;

}

.infos h3{
    position:absolute;
    font-size:2.2rem;
    top:-45px;
}

.infos h3::first-letter{
    font-size:2.6rem;
    color:#FFC152;
}

.infos p{
    display:block;
    width:90%;
    margin:0 auto;
    padding:30px 0;
    font-family:capirera, sans-serif;
    font-weight:600;
    font-style:normal;
    font-size:1.5rem;
}

#sweets ul{
    display:flex;
    width:100%;
    margin:20px;
    justify-content:space-around;
}

#sweets ul li{
    width:28vw;
    background-color:#FCCA7A;
    margin-right:1vw;
}

.sweets-img{
    width:22vw;
    height:22vw;
    margin:2vw auto;
}

.sweets-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.sweets-title{
    font-size:1.6rem;
    padding-bottom:2vw;
    text-align:center;
}

.link p br,.sweets-title br{
	display:none;
}

.sweets-info{
    text-align:left;
    font-family:capirera, sans-serif;
    font-weight:600;
    font-style:normal;
    padding:3vw;
    font-size:1.5rem;
}

.map-image{
    margin:30px auto;
}

table tbody tr th{
    font-family: vdl-megamaru, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:1.5rem;
}

table tbody tr td{
    font-family:capirera, sans-serif;
    font-weight:600;
    font-style:normal;
    font-size:1.5rem;
    padding-left:10px;
}

#contact table{
    margin-top:30px;
}

.copyright p{
    text-align:center;
}

.to-top-btn{
    opacity:0;
    position:fixed;
    width:50px;
    height:50px;
    right:2vw;
    bottom:2vw;
    background-color:#FFDD50;
    transition:0.5s;
}

.to-top-btn:hover{
    background-color:#FFC152;
    cursor:pointer;
}

.btn-open{
    opacity:1;
}

.to-top-btn::after{
    position:absolute;
    content:"";
    width:20px;
    height:20px;
    left:15px;
    top:20px;
    transform:rotate(-45deg);
    border-top:solid 2px #000000;
    border-right:solid 2px #000000;
}

@media(max-width:1080px){
    html{
        font-size:130%;
    }

	.top-image .title{
		font-size:1.2rem;
	}
	
	.top-image .title span{
		font-size:2rem;
	}
	
    .menu .link p{
        font-size:1.4rem;
    }

    .infos h3{
        top:-70px;
    }

    #sweets ul{
        flex-direction:column;
    }

    #sweets ul li{
        width:80%;
        margin:15px auto;
    }

    .sweets-img{
        width:94%;
        height:200px;
        margin:2vw;
    }
	
	.link p br{
		display:block;
	}
}