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%;
    margin: 0 auto;
}
header .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

header ul{
    display: flex;
    list-style-type: none;
    padding-left: 0;
}
header ul li{
    margin-left: 30px;
    font-size: 14px;
    letter-spacing: 1px;
}
.section1{
    background-image: url(http://9794f62da56679b6.lolipop.jp/pp/B4/fukushima/img/aaa.jpg);
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative
}
.section1 .filter{
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.section1 .container{
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    position: relative;
}
.section1 .heading{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2cb67d;
}
.section1  h1{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
}
.section1 a{
    font-size: 16px;
    font-weight: 700;
    padding: 16px 40px 20px;
    background-color: #7f5afd;
    border-radius: 6px;
    letter-spacing: 2px;
    transition-duration: .2s;
}
.section1 a:hover{
    background-color: #2cb67d;
}
.section2 {
    margin-bottom: 45px;
}
.section2 .container{
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
}
.section2 .row{
    display: flex;
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
    transform: translateY(-48px);
    z-index: 2;
    
}
.section2 .col{
    background-color: #ffffff;
    width: 28%;
    color: #16161a;
    padding: 20px;
}
.section2 img{
    width: 200px;
    padding: 2px;
    border-radius: 9px;
    margin-bottom: 2px;
}
.section2 h2{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}
.section2 hr{
    border: solid 2px #2cd67d;
    margin-bottom: 16px;
    width: 48px;
}
.section2 .text{
    font-size: 15px;
    line-height: 1.5;
}
.section3{
    padding-top: 60px;
    margin-bottom: 60px;
}
.section3 .container{
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
}
.section3 h2{
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}
.section3 hr{
    border: solid 2px #2cd67d;
    margin: 0 auto 40px;
    width: 60px;
}
.section3 ul{
    max-width: 700px;
    margin: 0 auto;
    list-style-type: none;
    padding-left: 0;
}
.section3 li{
    border: solid 1px #ffffff;
    margin-bottom: 20px;
    padding: 16px 24px;
}
.section3 .date{
    color: #7f5af0;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
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 .container{
        width: 98%;
    }
    .section2 h1{
        font-size: 27px;
    }
    .section2 .col{
        width: 100%;
        margin-bottom: 20px;
    }
}