@charset "UTF-8";

/*
GENERAL STYLING
================================================ */
html {
    font-size: 100%;
}
body {
	color: #fff;
	font-family: sans-serif;
}

/*
COMMON
================================================ */

.title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    margin-bottom: 2rem;
}
p {
    padding: 0 1rem;
    line-height: 1.7;
    font-size: 1.125rem;
}

.container {
    overflow: auto;
    scroll-snap-type: y mandatory;
    height: 100vh;
}
section {
    height: 100vh;
    scroll-snap-align: start;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/*
HERO
================================================ */
.hero {
    background-image: url(../images/main3.png);
    text-align: center;
    padding-top: 12vh;
}
.hero .title {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}
.hero .title img {
    width: 30vw;
    margin: 0 auto;
}
/*
MENU
================================================ */
.menu {
    background-image: url(../images/m-5.jpg);
    display: flex;
    align-items: center;
}
.wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}
.menu-bg {
    width: 80%;
    padding: 3vw;
    background-color: #ffffffad;
    color: #4b260d;
    box-shadow: 0 0 2rem #fff inset;
    border-radius: 2rem;
}
.menu-list tr {
    font-size: 1.125rem;
    margin-bottom: .5rem;
    line-height: 1.7;
}
.menu-list th {
    font-weight: normal;
}
.menu-list td {
    padding-left: 1rem;
    text-align: right;
}

/*
CONTACT
================================================ */
.contact {
    background-image: url(../images/img-4.jpg);
    text-align: center;
    padding-top: 8vh;
}
.btn {
    background: #555;
    font-size: 1.5rem;
    color: #fff;
    padding: 1rem 3.5rem;
    border-radius: 6px;
    display: inline-block;
    margin: 2rem 0 2.25rem;
}
.btn:hover {
    background: #777;
}
.contact-sns {
    display: flex;
    justify-content: center;
}
.contact-sns a {
    background: #fff;
    width: 3.75rem;
    height: 3.75rem;
    display: inline-block;
    margin: 0 .5rem;
    border-radius: 50%;
    font-size: 2rem;
    padding: .75rem 0 0 .125rem;
    color: #555;
}
.contact-sns a:hover {
    background: rgba(255,255,255,.5);
}

/*
MOBILE SIZE
================================================ */
@media (min-width: 600px) {
    .title {
        font-size: 7rem;
    }
    p {
        line-height: 1.7;
        font-size: 1.125rem;
    }

    .hero {
        padding-top: 10vh;
    }
    .hero .title img {
        width: 200px;
    }
}
/* @media (max-width: 600px) {
    .title {
        font-size: 4rem;
    }
    p {
        padding: 0 1rem;
    }
    p,
    .menu-list li {
        font-size: 1rem;
    }
    .hero {
        padding-top: 12vh;
    }
} */
