
body{
    background-color: #fef9f2;
    max-width: 480px;
    min-width: 270px;
    margin: auto;
}

p{
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    font-size: 16px;
    color: #381A0B;
    line-height: 28px;
    font-style: normal;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    color: #381A0B;
    font-style: normal;
}

.gn-notice-red{
    width: 110px;
    height: 25px;
    margin: 10px auto;
    background-color: #DD576D;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gn-notice-red p{
    color: #fff;
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
}

.gn-banner-cafe{
    display: block;
    width: 90%;
    max-width: 400px;
    aspect-ratio: 20/9;
    margin: 20px auto;
    border-radius: 20px;
    background-image: url(../img/room101.jpg);
    background-size: cover;
    position: relative;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    animation: bannerIn 1s cubic-bezier(0.150, 0.885, 0.395, 1.000) forwards;
}

@keyframes bannerIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.gn-banner-cafe::before {
    content: '';
    background-color: rgba(35,50,35,.3);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 20px;
}

.gn-banner-cafe img{
    position: absolute;
    z-index: 1;
}

.gn-heading1{
    display: block flex;
    margin-left: 20px;
    align-items: center;
}

.gn-heading1 img{
    height: 40px;
}

.gn-heading1 p{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    color: #381A0B;
    margin-left: 30px;
    letter-spacing: 2px;
}

.gn-btn-border{
    display: block;
    width: 140px;
    height: 28px;
    margin: 25px auto;
    text-decoration: none;
    color: #381A0B;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    border-radius: 14px;
    border: #381A0B 1.5px solid;
    text-align: center;
}

.gn-main_row_contact{
    margin-top: 40px;
}

.main_row_contact_item{
    display: flex block;
    margin: 20px;
    align-items: center;
    text-decoration: none;
}

.main_row_contact_item img{
    width: 23px;
    height: 23px;
}

.main_row_contact_item p{
    margin: 0 10px;
}