body {
    font-family: 'Zen Kaku Gothic New',sans-serif;
    color: #ffffff;
    background-color: #16161a;
}
header {
    font-weight: 700;
    position: absolute;
    width: 100%;
    z-index: 3;
}
header .container {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
}
header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}
header .logo {
    font-size: 24px;
}
header ul {
    display: flex;
}
header li {
    margin-left: 30px;
    font-size: 14px;
    letter-spacing: 1px;
}
.section1 {
    background-image: url(../images/image1.jpg);
    background-position: center bottom;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
}
.section1 .filter {
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.section1 .container {
    max-width: 1080px;
    width: 90%;
    margin: 0 auto ;
    z-index: 2;
    position: relative;
}
.section1 .heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2cb67d;
    text-align: center;
}
.section1 h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}
.section1 .text {
    font-size: 20px;
    margin-bottom: 40px;
    text-align: center;
}
.section1 a {
    font-size: 16px;
    font-weight: 700;
    padding: 16px 40px 20px;
    display: inline-block;
    background-color: #7f5af0;
    border-radius: 6px;    
    letter-spacing: 2px;
    transition-duration:.2s;
    text-align: center;
    margin-left: 480px;
}
.section1 a:hover {
    background-color: #2cb67d;
}
.section2 {
    margin-bottom: 45px;
}
.section2 .container {
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
}
.section2 .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    transform: translateY(-48px);
    z-index: 2;
    position: relative;
}
.section2 .col {
    background-color: #ffffff;
    width: 32%;
    color: #16161a;
    padding: 20px;
}
.section2 img {
    background-color: #7f5af0;
    width: 60px;
    padding: 10px;
    border-radius: 9px;
    margin-bottom: 16px;
}
.section2 h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}
.section2 hr {
    border: solid 2px #2cb67d;
    margin-bottom: 16px;
    width: 48px;
}
.section2 .text {
    font-size: 15px;
    line-height: 1.5;
}
.section3 {
    padding-top: 45px;
    margin-bottom: 60px;
}

.section3 .container {
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
}
.section3 .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
}
.section3 .col {
    width: 46%;
}
.section3 h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
}
.section3 hr {
    border: solid 2px #2cb67d;
    margin-bottom: 20px;
    width: 60px;
}
.section3 .text {
    line-height: 1.5;
}
.section4 {
    padding-top: 60px;
    margin-bottom: 60px;
}
.section4 .container {
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
}
.section4 h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}
.section4 hr {
    border: solid 2px #2cb67d;
    margin: 0 auto 40px;
    width: 60px;
}
.section4 ul {
    max-width: 700px;
    margin: 0 auto;
}
.section4 li {
    border: solid 1px #ffffff;
    margin-bottom: 20px;
    padding: 16px 24px;
}
.section4 .date {
    color: #7f5af0;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.section5 {
    padding-top: 60px;
    margin-bottom: 130px;
}
.section5 .container {
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
}
.section5 h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}
.section5 hr {
    border: solid 2px #2cb67d;
    margin: 0 auto 40px;
    width: 60px;
}
.section5 form {
    max-width: 540px;
    margin: 0 auto;
}
.section5 label {
    display: block;
    margin-bottom: 16px;
    font-weight: 500;
}
.section5 input, .section5 textarea {
    background-color: #ffffff;
    display: block;
    width: 100%;
    padding: 13px 16px;
    margin-bottom: 30px;
    color: #16161a;
}
.section5 input[type=submit] {
    text-align: center;
    background-color: #7f5af0;
    color: #ffffff;
    font-weight: 700;
    padding: 20px 16px 22px;
    letter-spacing: 6px;
    border-radius: 6px;
    transition-duration: .2s;
}
.section5 input[type=submit]:hover {
    background-color: #2cb67d;
}
footer {
    background-color: #ffffff;
    text-align: center;
    color: #16161a;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 20px 0;
}
@media screen and (max-width:767px) {
    .section1 a {
        margin-left: 140px;
    }

    .section1 .container {
        width: 98%;
    }
    .section1 h1 {
        font-size: 27px;
    }
    .section2 .col {
        width: 100%;
        margin-bottom: 20px;
    }
    .section3 .col {
        width: 100%;
        margin-bottom: 30px;
    }
}