@charset "UTF-8";
/* =====================================
	index
===================================== */

header{
    position: relative;
	width:100%;
	height:100vh;
    overflow: hidden;
}

header::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
	width:100%;
	background:url("../img/index/visual01.jpg") center;
    background-size: cover;
	height:100vh;
}

header.active::after{
    animation: bg 2s ease 1.6s forwards
}

@keyframes bg {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

header h1{
    color: #fff;
    position: absolute;
    top: 48%;
    left: 50%;
    z-index: 9999;
}

header h1 span{
    font-size: 150px;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    position: absolute;
    opacity: 0;
}

header h1 span:nth-child(1){
    margin-left: -372px;
}

header h1 span:nth-child(2){
    margin-left: -270px;
}

header h1 span:nth-child(3){
    margin-left: -164px;
}

header h1 span:nth-child(4){
    margin-left: -46px;
}

header h1 span:nth-child(5){
    margin-left: 52px;
}

header h1 span:nth-child(6){
    margin-left: 152px;
}

header h1 span:nth-child(7){
    margin-left: 295px;
}

header.active h1 span:nth-child(1){
    animation: logo 0.8s cubic-bezier(1.000, 0.000, 0.810, 0.285) 0.2s forwards;
}

header.active h1 span:nth-child(2){
    animation: logo 0.8s cubic-bezier(1.000, 0.000, 0.810, 0.285) 0.3s forwards;
}

header.active h1 span:nth-child(3){
    animation: logo 0.8s cubic-bezier(1.000, 0.000, 0.810, 0.285) 0.4s forwards;
}

header.active h1 span:nth-child(4){
    animation: logo 0.8s cubic-bezier(1.000, 0.000, 0.810, 0.285) 0.5s forwards;
}

header.active h1 span:nth-child(5){
    animation: logo 0.8s cubic-bezier(1.000, 0.000, 0.810, 0.285) 0.6s forwards;
}

header.active h1 span:nth-child(6){
    animation: logo 0.8s cubic-bezier(1.000, 0.000, 0.810, 0.285) 0.7s forwards;
}

header.active h1 span:nth-child(7){
    animation: logo 0.8s cubic-bezier(1.000, 0.000, 0.810, 0.285) 0.8s forwards;
}

@keyframes logo {
    0% {
        transform: translateY(-50%) translateX(-50%) scale(8) skewX(-15deg);
        opacity: 0;
    }
    100% {
        transform: translateY(-50%) translateX(-50%) scale(1) skewX(-15deg);
        opacity: 1;
    }
}

header .logo01{
    position: absolute;
    top: 25px;
    left: 30px;
    z-index: 9999;
}

#about{
    position: relative;
    width: 100%;
    height: 100vh;
    color: #fff;
    background: url("../img/index/bg01.jpg") center;
    background-size: cover;
    box-sizing: border-box;
    display: table;
}

#about .inner{
    width: 100%;
    height: 100vh;
    display: table-cell;
    vertical-align: middle;
    opacity: 0;
}

#about h2{
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.5;
}

#about h2 span{
    font-family: 'Roboto', sans-serif;
    font-size: 42px;
    font-weight: 900;
    display: block;
}

#about img{
    margin: 0 auto 45px;
    width: 385px;
}

#about p{
    text-align: center;
    margin-bottom: 30px;
}

#about p + p{
    margin-bottom: 35px;
}

#about a{
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    background: #a2d827;
    line-height: 1;
    padding: 10px 0;
    width: 176px;
    margin: 0 auto;
    display: block;
    text-align: center;
    border-radius: 21px;
}

#about a:hover{
    opacity: 0.7;
}

#activities{
    width: 100%;
    background: #f0f0f0 url("../img/index/bg03.png") top 164px left 152px no-repeat;
    padding: 100px 0 20px;
    box-sizing: border-box;
}

#activities h2{
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 45px;
}

#activities h2 span{
    font-family: 'Roboto', sans-serif;
    font-size: 42px;
    font-weight: 900;
    display: block;
    color: #272727;
}

#activities ul{
    width: 100%;
    max-width: 1000px;
    padding: 0 50px;
    box-sizing: border-box;
    margin: 0 auto 80px;
}

#activities ul li{
    position: relative;
    width: 50%;
    float: left;
}

#activities ul li div{
    position: relative;
}

#activities ul li div::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #172c26;
    transition:all .3s ease-in .2s;
    opacity: 0.3;
    z-index: 100;
}

#activities ul li div::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    transition:all .4s ease-in .4s;
    z-index: 50;
}

#activities ul li div.active::before, #activities ul li div.active::after{
    width: 0%;
}

#activities ul li:nth-child(odd){
    margin: 120px 0 0;
}

#activities ul li img{
    width: 100%;
}

#activities ul li p{
    width: 100%;
    padding: 30px 40px;
    box-sizing: border-box;
    background: #fff;
    position: absolute;
    letter-spacing: 0.1em;
    z-index: 200;
}

#activities ul li:nth-child(odd) p{
    top: -16%;
    left: -13.33%;
}

#activities ul li:nth-child(even) p{
    bottom: -16%;
    right: -13.33%;
}

#activities ul li:nth-child(odd) p::before{
    position: absolute;
    top: -70px;
    left: 8px;
    font-size: 62px;
    font-weight: bold;
    color: #2f6051;
}

#activities ul li:nth-child(even) p::before{
    position: absolute;
    top: -70px;
    right: 8px;
    font-size: 62px;
    font-weight: bold;
    color: #2f6051;
}

#activities ul li:nth-child(1) p::before{
    content: "1";
}

#activities ul li:nth-child(2) p::before{
    content: "2";
}

#activities ul:nth-of-type(2) li:nth-child(1) p::before{
    content: "3";
}

#activities ul:nth-of-type(2) li:nth-child(2) p::before{
    content: "4";
}

#faq{
    width: 100%;
    background: #fff;
    padding: 100px 0;
    box-sizing: border-box;
}

#faq h2{
    text-align: center;
    font-weight: bold;
    margin-bottom: 14px;
    line-height: 1.5;
}

#faq h2 span{
    font-family: 'Roboto', sans-serif;
    font-size: 42px;
    font-weight: 900;
    display: block;
    color: #272727;
}

#faq dl{
    width: 100%;
    max-width: 780px;
    border-bottom: 2px solid #dcdcdc;
    margin: 0 auto;
}

#faq dl dt{
    position: relative;
    font-size: 18px;
    font-weight: bold;
    padding: 16px 0 20px;
    cursor: pointer;
}

#faq dl dt:before{
    content: "Q";
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #146c52;
    padding: 0 15px 0 20px;
}

#faq dl dt:after{
    position: absolute;
    top: 50%;
    right: 20px;
    content: "";
    transform:translateY(-50%);
    transition:all .3s ease;
    line-height: 1;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 14px solid #48442c;
}

#faq dl dt.is-active:after{
    top: calc(50% - 7px);
    transform: rotate(180deg);
}

#faq dl dd{
    padding: 0 50px 26px;
    display: none;
}

#faq dl dd a{
    text-decoration: underline;
}

#contact{
    width: 100%;
    color: #fff;
    background: url("../img/index/bg02.jpg") center;
    background-size: cover;
    padding: 100px 0;
    box-sizing: border-box;
}

#contact h2{
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.5;
}

#contact h2 span{
    font-family: 'Roboto', sans-serif;
    font-size: 42px;
    font-weight: 900;
    display: block;
}

#contact ul{
    width: 100%;
    max-width: 900px;
    margin: 46px auto 0;
    display: table;
}

#contact li{
    display: table-cell;
    border-right: 1px solid #404854;
    vertical-align: middle;
}

#contact li:last-child{
    border-left: 1px solid #404854;
    border-right: none;
}

#contact li h3{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

#contact li p{
    text-align: center;
}

#contact li div{
    display: table;
    margin: 10px auto 0;
}

#contact li div img, #contact li div a{
    display: table-cell;
    vertical-align: middle;
}

#contact li div img:first-child{
    margin-right: 20px;
    transition:all .3s ease;
    width: 136px;
}

#contact li div a:hover img{
    opacity: 0.7;
}

#contact li:nth-child(2) a{
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    background: #a2d827;
    line-height: 1;
    padding: 10px 0;
    width: 176px;
    margin: 22px auto 0;
    display: block;
    text-align: center;
    border-radius: 21px;
}

#contact li:nth-child(2) a:hover{
    opacity: 0.7;
}

@media screen and (max-width:1000px){

#activities{
    background: #f0f0f0 url("../img/index/bg03.png") top 164px right 30px no-repeat;
}

#activities ul{
    width: 90%;
    max-width: 750px;
    margin: 0 auto;
}

#activities ul li{
    width: 100%;
    float: none;
}

#activities ul li:nth-child(odd){
    margin: 0 0 60px -5%;
}

#activities ul li:nth-child(odd) p{
    position: relative;
    top: auto;
    left: auto;
    margin: -7.8% 0 0 -10%;
    line-height: 1.8;
}

#activities ul li:nth-child(even){
    margin: 0 0 60px 5%;
}

#activities ul li:nth-child(even) p{
    position: relative;
    bottom: auto;
    right: auto;
    margin: -7.8% 0 0 10%;
    line-height: 1.8;
}

#activities ul li:nth-child(odd) p::before{
    position: absolute;
    top: -70px;
    left: 8px;
    font-size: 62px;
    font-weight: bold;
    color: #2f6051;
}

#activities ul li:nth-child(even) p::before{
    position: absolute;
    top: -70px;
    right: 8px;
    font-size: 62px;
    font-weight: bold;
    color: #2f6051;
}

}

@media screen and (max-width:750px){

header{
	background:url("../img/index/sp/visual01.jpg") center;
    background-size: cover;
	height:100vh;
}

header h1 span{
    font-size: 10vw;
    top: -2vw;
    opacity: 0;
}

header h1 span:nth-child(1){
    margin-left: -24.5vw;
}

header h1 span:nth-child(2){
    margin-left: -17vw;
}

header h1 span:nth-child(3){
    margin-left: -9.1vw;
}

header h1 span:nth-child(4){
    margin-left: -1vw;
}

header h1 span:nth-child(5){
    margin-left: 6.3vw;
}

header h1 span:nth-child(6){
    margin-left: 13.3vw;
}

header h1 span:nth-child(7){
    margin-left: 23.7vw;
}

header .logo01{
    width: 11.866vw;
    top: 3.6vw;
    left: 4vw;
}

#about{
    background: url("../img/index/sp/bg01.jpg") center;
    background-size: cover;
}

#about h2{
    margin-bottom: 7.8125vw;
}

#about h2 span{
    font-size: 8.2vw;
}

#about p{
    margin-bottom: 5vw;
}

#about p + p{
    margin-bottom: 7.8125vw;
}

#about a{
    font-size: 4.6875vw;
    padding: 1.9vw 0;
    width: 34.375vw;
    border-radius: 4.1vw;
}

#about a:hover{
    opacity: 1;
}

#activities{
    background: #f0f0f0 url("../img/index/bg03.png") top 21.866vw right 4vw no-repeat;
    background-size: 66.4vw auto;
    padding: 20.83vw 0 12vw;
}

#activities h2{
    margin-bottom: 8vw;
}

#activities ul{
    padding: 0 6.66vw;
}

#activities ul li:nth-child(odd){
    margin: 0 0 8vw 3%;
}

#activities ul li:nth-child(even){
    margin: 0 0 8vw -3%;
}

#activities ul li p{
    padding: 4vw 5.33vw;
}

#activities ul li:nth-child(odd) p{
    margin: -9.5% 0 0 -12%;
}

#activities ul li:nth-child(even) p{
    margin: -9.5% 0 0 12%;
}

#activities ul li:nth-child(odd) p::before{
    top: -8vw;
    left: 1vw;
    font-size: 8.266vw;
}

#activities ul li:nth-child(even) p::before{
    top: -8vw;
    right: 1vw;
    font-size: 8.266vw;
}

#faq{
    padding: 20.83vw 0;
}

#faq h2{
    margin-bottom: 7.8125vw;
}

#faq h2 span{
    font-size: 8.2vw;
}

#faq dl{
    width: 85%;
}

#faq dl dt{
    font-size: 4vw;
    padding: 3.9vw 0 4.2vw 1.7em;
    line-height: 1.5;
    text-indent:-1.5em;
}

#faq dl dt:before{
    font-size: 4.8vw;
    padding: 0 2.6vw 0 0;
}

#faq dl dt:after{
    right: 2.6vw;
    border-left: 1.4vw solid transparent;
    border-right: 1.4vw solid transparent;
    border-top: 2.7vw solid #48442c;
}

#faq dl dt.is-active:after{
    top: calc(50% - 1.3vw);
}

#faq dl dd{
    padding: 0 5.2vw 6.5vw;
}

#contact{
    background: url("../img/index/sp/bg02.jpg") center;
    padding: 20.83vw 0;
}

#contact h2{
    margin-bottom: 7.8125vw;
}

#contact h2 span{
    font-size: 8.2vw;
}

#contact ul{
    margin: 7.8125vw auto 0;
}

#contact li{
    padding: 2.6vw 0;
    width: 50%;
    box-sizing: border-box;
}

#contact li h3{
    font-size: 4.6875vw;
    margin-bottom: 1.6vw;
    line-height: 1.3;
}

#contact li p{
    font-size:3.2vw;
    line-height: 1.4;
    margin-bottom: 3.6vw;
}

#contact li div{
    margin: 0 auto;
    display: block;
}

#contact li div img:first-child{
    margin: 0 auto;
    width: 26.69vw;
}

#contact li div a{
    display: block;
}

#contact li div a:hover img{
    opacity: 1;
}

#contact li:nth-child(2) a{
    font-size: 4.6875vw;
    padding: 1.9vw 0;
    width: 34.375vw;
    border-radius: 4.1vw;
    margin: 0 auto;
}

#contact li:nth-child(2) a:hover{
    opacity: 1;
}

}