body,p,div,a,section,article,aside,nav,header,footer,main,h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    box-sizing: border-box;
}
.pc{display:inherit;}
.sp{display:none;}
.wrapper{
    width: 100%;
    height: 100%;
    overflow:hidden;
}
.flex{
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}
.header{
    max-width:1200px;
    margin:15px auto 0;
    width:100%;
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    gap:30px;
    align-items: center;
    padding:15px;
}
.logo_area{
    display: flex;
    gap:10px 15px;
    align-items: center;
    text-align: center;
    margin-right:auto;
}
.logo_area figure{
    display:inline-block;
    width: fit-content;
    margin:0;
}
.button a{
    display: block;
    width:fit-content;
    background: #2AB6E8;
    padding: 10px 30px;
    color: #fff;
    letter-spacing: 0.1em;
    border: 2px solid #2AB6E8;
    border-radius: 60px;
    font-size: 18px;
    text-decoration: none;
    transition: linear 0.2s;
}

.button a:hover{
    background: #fff;
    border: 2px solid #2AB6E8;
    color: #2AB6E8;
    text-decoration: none;
}
.other-logo{
    margin-top: 10px;
}

.contents{
    width:auto;
    margin:auto;
    margin-top: 35px;
    text-align: center;
}
.mv{
    max-width:1200px;
    width:100%;
    height:auto;
    margin: 0 auto 30px auto; 
    overflow:hidden;
}
.mv img{
    width:100%;
    height:auto;
}
.contents p{
    max-width:1200px;
    font-size: 24px;
    font-weight:bold;
    text-align:center;
    letter-spacing: 0.1em;
    text-decoration: underline;
    padding:15px;
    margin:auto;
}

@media screen and (max-width:600px) {
    .pc{display:none;}
    .sp{display:inherit;}
    .header{   
        flex-direction: column;
        text-align:center;
        justify-content: center;
    }
    .logo_area{
        flex-direction: column;
        justify-content: center;
        text-align: center;
        margin:0;
    }
    .button a{
        font-size:16px;
        padding:10px 15px;
    }
    .contents p{
        font-size: 24px;
        line-height: 2;
        margin-bottom:30px;
    }    
}