@charset "UTF-8";

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    background: #FFF;
    color: #000;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    opacity: 0.7;
}

/* ///////////////////////////////////////////////
header 
//////////////////////////////////////////////// */
.header {
    background: #3B3A93;
    height: 204px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header h1 {
    color: #FFF;
    font-size: 40px;
    font-weight: 700;
}

@media screen and (max-width:767px) {
    .header {
        height: 60px;
    }
    .header h1 {
        font-size: 20px;
    }

}

/* ///////////////////////////////////////////////
main
//////////////////////////////////////////////// */
.main {
   padding: 77px 20px 277px;
   max-width: 1220px;
   margin: 0 auto;
}
.main-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    row-gap: 70px;
}
.main-template-wrap {
    width: 350px;
}
.main-title {
    font-size: 24px;
    font-weight: 700;
}
.main-img {
    width: 100%;
    margin-top: 10px;
}
.main-down {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    background: #3B3A93;
    width: 82%;
    height: 56px;
    margin: 18.75px auto 0;
    color: #FFF;
    border-radius: 30px;
}

@media screen and (max-width:767px) {
    .main {
        padding: 40px 4%;
    }
    .main-template-wrap {
        width: 100%;
    }
    .main-wrap {
        row-gap: 30px;
    }
}
/* ///////////////////////////////////////////////
footer
//////////////////////////////////////////////// */
footer {
    background: #3B3A93;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer small {
    font-size: 13px;
    font-weight: 700;
    color: #FFF;
}




