@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
}


.main-visual {
    height: 44vw;
    background-size: cover;
    background-image: url(../images/IMG_0148.jpg);
}



header {
    display: flex;
    align-items: center;
    padding: 1% 3%;
    background-color: rgba(255,255,255, 0.8);
}

header h1 {
    width: fit-content;
}

header h1 a {
    text-decoration: none;
    color: #000000;
    font-size: 5vw;
}

header nav {
    width: 70%;
    margin-left: auto;

}

header nav ul {
    display: flex;
    list-style-type: none;

}

header nav ul li {
    width: calc( 100% / 4 );
}

header nav ul li a {
    display: block;
    line-height: 2.8;
    text-align: center;
    text-decoration: none;
    color: #202020;
    font-size: 4.6vw;
}

main {
    display: block;
    width: 80%;
    margin-top: 6%;
    margin-left: auto;
    margin-right: auto;
}

main section {
    width: 100%;
}

main section:nth-of-type(2) {
    display: none;
    margin-top: 6%;
}

main section h2 {
    text-align: center;
    font-size: 4.5vw;
}

main section p {
    margin-top: 3%;
    line-height: 1.7;
    text-indent: 1em;
    font-size: 4vw;
}

footer {
    margin-top: 6%;
    padding-top: 3%;
    padding-bottom: 3%;
   
}

footer p {
    text-align: center;
    font-size: 4vw;
}

address {
    margin-left: 6vw;
    margin-right: 6vw;
    line-height: 1.3;
    font-style: normal;
    font-size: 1.3vw;
}