@charset "utf-8";
/* CSS Document */
/*-------------------------------------------------------
					タイトル
-------------------------------------------------------*/
/*--　タイトル　ネオン風　--*/
h2 {
	font-size: 55px;
	color: #dbfce3;
	animation: neonBlur 16s infinite;
	font-weight: bold;
}
.section5 h2{
	font-size: 30px;
}
h2 > div:nth-child(1) {
	animation: neonBlink 5s infinite;
}
h2 > div:nth-child(2) {
	opacity: .7;
	font-weight: 800;
}
h2 > div:nth-child(3) {
	opacity: .4;
}
h2 > div:nth-child(4) {
	animation: neonBlink 2s infinite;
}

@keyframes neonBlink {
  0% { opacity: 1; }
  10% { opacity: .6; }
  12% { opacity: 1; }
  15% { opacity: .4; }
  17% { opacity: 1; }
  18% { opacity: .3; }
  19% { opacity: 1; }
  89% { opacity: 1; }
  91% { opacity: .7; }
  94% { opacity: 1; }
  100% { opacity: 1; }
}

@keyframes neonBlur {
  0% { text-shadow: 0px 0px 25px #41b25d; }
  50% { text-shadow: 0px 0px 75px #41b25d; filter: blur(0.5px) }
  100% { text-shadow: 0px 0px 25px #41b25d; }
}


/*--　タイトル ランダム順で表示　--*/
h2 span {
  opacity:0;
  transition: opacity 500ms cubic-bezier(.445,.05,.55,.95);
}
h2 span:nth-of-type(even){transition-delay: 0.4s;}
h2 span:nth-of-type(odd){ transition-delay: 0.8s;}
h2 span:nth-of-type(3n+1) {transition-delay: 0.6s;}
h2 span:nth-of-type(7n+1) {transition-delay: 0.2s;}
h2 span:nth-of-type(1){transition-delay: 1s;}
.js-section.active h2 span {
    opacity:1;
} 


/*-------------------------------------------------------
					縦スクロールページ
-------------------------------------------------------*/
.section {
	width: 100%;
}
.section-content {
/*	max-width: 70%;
	padding: 40px 60px;*/
}
.section2 {
	background-image: url("../img/top1.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}
.section3 {
	background-image: url("../img/top2.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}
.section4 {
	background-image: url("../img/top3.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}
.section2 .section-content,.section3 .section-content,.section4 .section-content{
	background: -moz-linear-gradient(left, rgba(19,38,24,0.9), rgba(15,15,15,0.9));
	background: -webkit-linear-gradient(left, rgba(19,38,24,0.9), rgba(15,15,15,0.9));
	background: linear-gradient(to right, rgba(19,38,24,0.9), rgba(15,15,15,0.9));
	height: 100%;
	width: 55%;
}
.section-content .section-wrap{
	padding: 100px 50px;
}
.section2 .section-content::after,.section3 .section-content::after,.section4 .section-content::after {
	content: '';
	display: block;
    position: absolute;
    right: -200px;
    bottom: 0;
	top: 0;
    border-left: 200px solid rgba(15,15,15,0.9);
    border-top: 0vw solid rgba(15,15,15,0.9);
    border-bottom: 100vh solid transparent;
    border-right: 0px solid transparent;
    height: 0vh; 
}

/*-------------------------------------------------------
					moreボタン
-------------------------------------------------------*/
.more_box{
	height: 200px;
    right: 100px;
    position: relative;
}
.more {
	display: table;
	width: 120px;
	height: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	z-index: 2;
}
.more a {
	display: table-cell;
	font-size: 30px;
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	border-radius: 50%;
	transition: background 1s, border-width 0.5s cubic-bezier(0.075, 0.82, 0.165, 1), text-shadow 0.5s;
	color: #dbfce3;
	text-shadow: 0 0 20px #41b25d, 0 0 20px rgba(65, 178, 93, 0);
	box-shadow: 0 0 0 rgba(65, 178, 93, 0), inset 0 0 0 rgba(65, 178, 93, 0);
	background-image: radial-gradient(center, ellipse cover, rgba(65, 178, 93, 0) 0%, rgba(65, 178, 93, 0) 90%);
	border: 0 dotted rgba(65, 178, 93, 0);
}
.more a:hover {
	color: #fff;
	text-shadow: 0 0 50px #41b25d, 0 0 50px #41b25d;
	background-image: radial-gradient(center, ellipse cover, rgba(65, 178, 93, 0.3) 0%, rgba(65, 178, 93, 0) 60%);
}
.more:before, .more:after,
.more a:before,
.more a:after {
	transition: 0.2s ease-in-out;
 	content: "";
	display: block;
	position: absolute;
	border-radius: 50%;
	border: 60px dashed transparent;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.more:before {
	animation: rotate 20s linear 0s infinite;
	width: 180%;
	height: 180%;
	border: 3px dotted rgba(65, 178, 93, 0);
	z-index: -1;
}
.more:after {
	animation: rotate 10s linear 0s infinite reverse;
	border: 50px dashed rgba(65, 178, 93, 0);
	width: 160%;
	height: 160%;
	z-index: -2;
}
.more a:before {
	animation: rotate 5s ease-in-out 0s infinite alternate;
 	border: 50px dashed rgba(65, 178, 93, 0);
	width: 120%;
	height: 120%;

}
.more a:after {
	animation: rotate 5s linear 0s infinite;
	border: 18px dashed rgba(65, 178, 93, 0);
	width: 120%;
	height: 120%;
}
.more:hover:before {
	border-color: rgba(65, 178, 93, 0.3);
}
.more:hover:after {
	border-color: rgba(65, 178, 93, 0.1);
}
.more:hover a:before {
	border-color: rgba(65, 178, 93, 0.3);
}
.more:hover a:after {
	border-color: rgba(65, 178, 93, 0.3);
}

@keyframes rotate {
  0% {
	transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
	transform: translate(-50%, -50%) rotate(360deg);
  }
}
p.caption {
	font-size: 0.7em;
	text-align: center;
	position: fixed;
	width: 100%;
	bottom: 0;
	letter-spacing: 0.2em;
	text-shadow: 0 0 20px #41b25d, 0 0 20px rgba(65, 178, 93, 0);
}

/*-------------------------------------------------------
					ページ数
-------------------------------------------------------*/
.page{
	bottom:50px;
}
.page p{
	font-size: 100px;
	color: rgba(255,255,255,0.50);
	letter-spacing: 8px;
	padding-left: 50px;
	display: inline-block;
	position: relative;
    line-height: 110px;
}
.page p:before{
	content: '';
	position: absolute;
	left: 0%;
	bottom: 0px; /*下線の上下位置調整*/
	display: inline-block;
	width: 70%; /*下線の幅*/
	height: 3px; /*下線の太さ*/
	background-color: #41b25d; /*下線の色*/
}
.page p span{
	font-size: 50px;
}


/*-------------------------------------------------------
					セクション1
-------------------------------------------------------*/
.main{
	z-index: -1;
}
.main .swiper-slide img{
	height: 100vh;
	overflow: hidden;
	object-fit: cover;
	font-family: 'object-fit: cover;'
}
.section1 .mask{
	background-color: rgba(0,0,0,0.60);
    width: 100%;
    height: 100%;
    z-index: 2;
}
.section1 .content{
    margin: 0 auto;
    padding: 40px;
	z-index: 2;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
}
.section1 .content a span{
	max-width: 130px;
    margin: auto;
	margin-top: 15px;
    text-align: center;
}
.section1 .modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 9;
}
.section1 .modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.section1 .modal__content{
 	background: rgba(65, 180, 95, 0.39);
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
	line-height: 1.9;
}
.section1 .content span{
	padding: 5px 10px;
	background-color: rgba(255,255,255,0.2);
	border: 1px solid rgba(255,255,255,0);
}
.section1 .content:hover span{
	background-color: rgba(255,255,255,0.1);	
	border: 1px solid rgba(255,255,255,0.6);	
	transition: 0.5s;
}


/*-------------------------------------------------------
					セクション5
-------------------------------------------------------*/
.section5{
	background-image: url("../img/top5.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
}
.section5 .section-content{
	background: -moz-linear-gradient(left, rgba(19,38,24,0.2), rgba(15,15,15,0.2));
	background: -webkit-linear-gradient(left, rgba(19,38,24,0.2), rgba(15,15,15,0.2));
	background: linear-gradient(to right, rgba(19,38,24,0.2), rgba(15,15,15,0.2));
	height: 100%;
	width: 100%;
}
.section5 .info_wrap{
	top: 0;
	bottom: 0;
	left: 0;
    right: 0;
}
.section5 .info{
	margin-right: 5%;
}
.section5 .news{
	margin-left: 5%;
	max-width: 400px;
}
.section5 .news .box:last-child{
	margin-bottom: 0px;
}
.section5 .footer{
	bottom:0;
	left: 0;
	right: 0;
}



/*ここからIE用環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media all and (-ms-high-contrast: none){
main{
	display: block;
}
.section1 .content span {
    padding: 5px 10px 0px;
}
/*-------------------------------------------------------
					moreボタン
-------------------------------------------------------*/
.more a {
    padding-top: 15px;
}
.more a:before {
	animation: rotate 5s ease-in-out 0s infinite;
}
}


/*ここからタブレット用（768px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 768px){
/*-------------------------------------------------------
					タイトル
-------------------------------------------------------*/
h2 {
    font-size: 30px;
}
/*-------------------------------------------------------
					縦スクロールページ
-------------------------------------------------------*/
.section2 .section-content,.section3 .section-content,.section4 .section-content{
	width: 100%;
}
.section2 .section-content::after,.section3 .section-content::after,.section4 .section-content::after {
	display: none;
}
/*-------------------------------------------------------
					moreボタン
-------------------------------------------------------*/
.more_box{
    right: 50px;
}
.more {
    width: 80px;
    height: 80px;
}
.more a {
    font-size: 20px;
}
/*-------------------------------------------------------
					ページ数
-------------------------------------------------------*/
.page p {
    font-size: 80px;
}
.page p span {
    font-size: 30px;
}
/*-------------------------------------------------------
					セクション5
-------------------------------------------------------*/
.section5 .info {
    margin-right: 0px;
}
.section5 .news {
    margin-left: 0px;
	max-width: 500px;
    border-top: 1px solid #737373;
    padding-top: 50px;
    margin-top: 50px;
}
.section5 .news .box p {
	width: 25%;
}
.section5 .news .box h3 {
	width: 70%;
}
}
/*ここからスマホ用（667px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 667px){
/*-------------------------------------------------------
					タイトル
-------------------------------------------------------*/
h2 {
    font-size: 25px;
}
/*-------------------------------------------------------
					縦スクロールページ
-------------------------------------------------------*/
.section-content .section-wrap {
	padding: 50px 30px 80px;
}
/*-------------------------------------------------------
					ページ数
-------------------------------------------------------*/
.page {
	bottom: 20px;
}
.page p {
	font-size: 60px;
	line-height: 70px;
	padding-left: 20px;
    letter-spacing: 5px;	
}
.page p:before {
	height: 1px;
}
.page p span {
    font-size: 25px;
}
/*-------------------------------------------------------
					moreボタン
-------------------------------------------------------*/
.more_box {
    height: 100px;
    right: 50px;
}
.more {
    width: 55px;
    height: 55px;
}
.more a {
    font-size: 17px;
}
/*-------------------------------------------------------
					セクション1
-------------------------------------------------------*/
	.section1{
		overflow: hidden;
		max-height: 90vh;
	}
.section1 .modal__content {
    padding: 25px 10px;
    width: 90%;
    line-height: 1.7;
    font-size: 14px;
}
.section1 .content {
    padding: 10px;
}
/*-------------------------------------------------------
					セクション5
-------------------------------------------------------*/
.section5 h2 {
    font-size: 25px;
}
.section5 .info_wrap {
    top: 40px;
    bottom: auto;
}
.section5 .news {
    padding-top: 20px;
    margin-top: 20px;
}
.section5 .news .box_wrap{
	border-left: 1px solid #53795d;
}
.section5 .news .box p {
    width: 30%;
}
.section5 .news .box h3 {
    width: 60%;
}
}

@media screen and (max-width: 667px) and (-ms-high-contrast: none){
/*-------------------------------------------------------
					moreボタン
-------------------------------------------------------*/
.more a {
    padding-top: 10px;
}
}