/* css document */
/* UTF-8 */
body *{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    height: 100dvh;
    min-height: 100dvh;
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}
.wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 3rem 2rem;
    line-height: 1.66;
    letter-spacing: 0.02em;
}
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}
#main {
    margin-bottom: 6.75rem;
}
h1{
    max-width: 326px;
    width: 65vw;
    margin-bottom: 1rem;
}
h2{
    max-width: 322px;
    width: 63vw;
}
.address {
    margin: 1rem 0 2.2rem;
}
footer .copyright{
    text-align: center;
    font-size: 12px;
}
.spbr{display: none;}
@media (max-width:430px){
    body{font-size: 15px;}
    #main{margin-bottom: 3.75rem;}
}
@media (max-width:380px){
    .spbr{display: block;}
}