@charset "UTF-8";
/* CSS Document */

/*-----------------
	mainVisual
---------------- */

.mainVisual-data {
	background: url("../images/mainVisual-data.png") top center no-repeat;
}

#data01, #data02, #data03 {
}


#data01 {
	width:100%;
	height: 512px;
	position: relative;
	background: url("../images/data-bg01.png") no-repeat;
	background-size: cover;
	background-color: rgba(0,0,0,0.1);
	margin-top: 150px;
}

#data01 .container:before {
}

#data02 {
	width:100%;
	height: 512px;
	position: relative;
	background: url("../images/data-bg02.png") center no-repeat;
	background-size: cover;
	background-color: rgba(0,0,0,0.1);
	margin-top: 170px;
}

#data02:before {
}
#data02 li:nth-child(3) h2 {
	font-size: 16px;
}


#data03 {
	width:100%;
	height: 512px;
	position: relative;
	background: url("../images/data-bg03.png") center no-repeat;
	background-size: cover;
	background-color: rgba(0,0,0,0.1);
	margin-top: 170px;
}

#data03:before {
}

#data04 {
	width:100%;
	height: 512px;
	position: relative;
	background: url("../images/data-bg04.png") center no-repeat;
	background-size: cover;
	background-color: rgba(0,0,0,0.1);
	margin: 170px 0;
}

#data04:before {
}

.data-inner {
	padding-top: 100px;
	width: 100%;
}

.txt-at-the-time {
	position: relative;
	top: -40px;
	right: 0;
	margin: 0;
	text-align: right;
}

#data-contents h1 {
	font-size: 34px;
	font-weight: 600;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	margin: 0;
}

#data-contents h1:before {
	content: "";
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 70px;
	background: #000;
}

#data-contents h2 {
	font-size: 20px;
	font-weight: 600;
	color: #FFF;
	text-align: center;
}

#data-contents .ul-flex {
	justify-content: space-between;
	margin: 200px 0 0 0;
	padding: 0;
}

#data-contents .ul-flex li {
	padding: 3%;
	max-width: 275px;
}

#data01 .ul-flex li:nth-child(1) {
	background-color: rgba(237,108,0,0.85);
}
#data01 .ul-flex li:nth-child(2) {
	background-color: rgba(201,42,29,0.85);
}
#data01 .ul-flex li:nth-child(3) {
	background-color: rgba(168,79,37,0.85);
}

#data02 .ul-flex li:nth-child(1) {
	background-color: rgba(52,155,58,0.85);
}
#data02 .ul-flex li:nth-child(2) {
	background-color: rgba(0,131,62,0.85);
}
#data02 .ul-flex li:nth-child(3) {
	background-color: rgba(25,96,57,0.85);
}

#data03 .ul-flex li:nth-child(1) {
	background-color: rgba(36,141,197,0.85);
}
#data03 .ul-flex li:nth-child(2) {
	background-color: rgba(7,96,160,0.85);
}
#data03 .ul-flex li:nth-child(3) {
	background-color: rgba(77,67,152,0.85);
}

#data04 .ul-flex li:nth-child(1) {
	background-color: rgba(234,195,66,0.85);
}
#data04 .ul-flex li:nth-child(2) {
	background-color: rgba(239,133,125,0.85);
}
#data04 .ul-flex li:nth-child(3) {
	background-color: rgba(166,18,105,0.85);
}

.data-num {
	color: #FFF;
	font-size: 1.8rem;
	font-weight: 600;
	text-align: center;
	overflow-y: hidden;
	line-height: 1;
	white-space: nowrap;
	margin: 0;
	border-bottom: 3px solid #FFF;
	padding-bottom: 10px;
}

.data-num span {
	display: inline-block;
	font-size: 6.2rem;
	font-weight: 200;
	transition: transform .3s ease-out;
}

.data-time {
	color: #FFF;
	text-align: center;
	margin: 20px 0 0;
}


#data01 .ul-flex li:nth-child(1) .arrow01 {
	margin: 0;
	position: absolute;
	bottom: -60px;
	left: 50%;
	transform: translateX(-50%);
	background: #000;
	width: 160px;
}

#data01 .ul-flex li:nth-child(1) .arrow01 a {
	color: #FFF;
	padding: 5px 20px;
	border: 1px solid transparent;
	font-size: 90%;
}

#data01 .ul-flex li:nth-child(1) a:hover {
	color: #000;
	background-color: #FFF;
	border: 1px solid #000;
}

#data01 .ul-flex li:nth-child(1) a:after , #data01 .ul-flex li:nth-child(1) a:before {
	background-color: #FFF;
}

#data01 .ul-flex li:nth-child(1) a:hover:after , #data01 .ul-flex li:nth-child(1) a:hover:before {
	background-color: #000;
}


#data03 .ul-flex li , #data04 .ul-flex li {
	padding-bottom: 8%;
}


/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:1%;
	right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
	position: absolute;
	left:-20px;
	bottom: -130px;
    /*テキストの形状*/
	color: #000;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: -140px;
    right: -6px;
    /*矢印の形状*/
    width: 2px;
    height: 20px;
    background: #000;
    transform: skewX(-31deg);
}

.scrolldown4:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom: -140px;
	right:0;
    /*矢印の形状*/
	width:2px;
	height: 50px;
	background:#000;
}






@media screen and ( max-width:767px ) {
	
	.mainVisual-data {
		background: url("../images/mainVisual-data-sp.png") center center no-repeat;
	}
	
	.data .breadcrumbs ul li a {
		font-size: 80%;
	}
	
	.data .breadcrumbs ul li:first-child a {
		font-size: 100%;
	}
	
	
	
	
	
	#data01, #data02, #data03 {
}


	#data01 {
		height: 100%;
		background: url("../images/data-bg01-sp.png") no-repeat;
		background-size: contain;
		margin-top: 0;
	}

	#data01 .container:before {
	}

	#data02 {
		height: 100%;
		background: url("../images/data-bg02-sp.png") no-repeat;
		background-size: contain;
		margin-top: 110px;
	}

	#data02:before {
	}

	#data03 {
		height: 100%;
		background: url("../images/data-bg03-sp.png") no-repeat;
		background-size: contain;
		margin-top: 110px;
	}

	#data03:before {
	}
	
	#data04 {
		height: 100%;
		background: url("../images/data-bg04-sp.png") no-repeat;
		background-size: contain;
		margin: 110px 0 50px;
	}

	#data04:before {
	}

	.data-inner {
		padding-top: 50px;
	}

	.txt-at-the-time {
		position: static;
		padding: 10px 0 0;
		font-size: 90%;
	}

	#data-contents h1 {
		font-size: 180%;
		position: static;
		transform: none;
		text-align: center;
	}

	#data-contents h1:before {
		display: none;
	}

	#data-contents h2 {
		font-size: 125%;
	}

	#data-contents .ul-flex {
		margin: 50px 0 0 0;
	}

	#data-contents .ul-flex li {
		padding: 10% 5% !important;
		max-width: 100%;
		margin-bottom: 50px;
	}

	#data01 .ul-flex li:nth-child(1) {
	}
	#data01 .ul-flex li:nth-child(2) {
	}
	#data01 .ul-flex li:nth-child(3) {
	}

	#data02 .ul-flex li:nth-child(1) {
	}
	#data02 .ul-flex li:nth-child(2) {
	}
	#data02 .ul-flex li:nth-child(3) {
	}

	#data03 .ul-flex li:nth-child(1) {
	}
	#data03 .ul-flex li:nth-child(2) {
	}
	#data03 .ul-flex li:nth-child(3) {
	}
	
	#data04 .ul-flex li:nth-child(1) {
	}
	#data04 .ul-flex li:nth-child(2) {
	}
	#data04 .ul-flex li:nth-child(3) {
	}


	.data-num {
		font-size: 1.6rem;
		line-height: 1.5;
	}

	.data-num span {
		font-size: 5rem;
	}

	.data-time {
	}


	#data01 .ul-flex li:nth-child(1) .arrow01 {
		position: static;
		transform: none;
		margin: 30px auto 0;
		width: 60%;
	}

	#data01 .ul-flex li:nth-child(1) .arrow01 a {
	}

	#data01 .ul-flex li:nth-child(1) a:hover {
	}

	#data01 .ul-flex li:nth-child(1) a:after , #data01 .ul-flex li:nth-child(1) a:before {
	}

	#data01 .ul-flex li:nth-child(1) a:hover:after , #data01 .ul-flex li:nth-child(1) a:hover:before {
	}


	#data03 .ul-flex li , #data04 .ul-flex li {
	}


	/*=== 9-1-4 矢印が動いてスクロールを促す(sp)  ====*/

	/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:1%;
	right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

	/*Scrollテキストの描写*/
	.scrolldown4 span {
		bottom: -70px;
	}

	/* 矢印の描写 */
	.scrolldown4:before {
    	bottom: -80px;
	}

	.scrolldown4:after {
		bottom: -80px;
	}
	
	
	
}




@media only screen and (min-width:768px) and (max-width:1199px) {
	
	
	#data01, #data02, #data03 {
	}


	#data01 {
		margin-top: 100px;
	}

	#data01 .container:before {
	}

	#data02 {
		margin-top: 140px;
	}

	#data02:before {
	}
	
	#data02 li:nth-child(3) h2 {
		font-size: 100%;
	}


	#data03 {
		margin-top: 140px;
	}

	#data03:before {
	}

	#data04 {
		margin: 140px 0 100px;
	}

	#data04:before {
	}

	.data-inner {
	}

	.txt-at-the-time {
	}

	#data-contents h1 {
		font-size: 200%;
	}

	#data-contents h1:before {
	}

	#data-contents h2 {
		font-size: 120%;
	}

	#data-contents .ul-flex {
	}

	#data-contents .ul-flex li {
		max-width: 200px;
	}

	#data01 .ul-flex li:nth-child(1) {
	}
	#data01 .ul-flex li:nth-child(2) {
	}
	#data01 .ul-flex li:nth-child(3) {
	}

	#data02 .ul-flex li:nth-child(1) {
	}
	#data02 .ul-flex li:nth-child(2) {
	}
	#data02 .ul-flex li:nth-child(3) {
	}

	#data03 .ul-flex li:nth-child(1) {
	}
	#data03 .ul-flex li:nth-child(2) {
	}
	#data03 .ul-flex li:nth-child(3) {
	}

	#data04 .ul-flex li:nth-child(1) {
	}
	#data04 .ul-flex li:nth-child(2) {
	}
	#data04 .ul-flex li:nth-child(3) {
	}

	.data-num {
		font-size: 1.5rem;
	}

	.data-num span {
		font-size: 5rem;
	}

	.data-time {
		margin: 10px 0 0 0;
	}


	#data01 .ul-flex li:nth-child(1) .arrow01 {
	}

	#data01 .ul-flex li:nth-child(1) .arrow01 a {
	}

	#data01 .ul-flex li:nth-child(1) a:hover {
	}

	#data01 .ul-flex li:nth-child(1) a:after , #data01 .ul-flex li:nth-child(1) a:before {
	}

	#data01 .ul-flex li:nth-child(1) a:hover:after , #data01 .ul-flex li:nth-child(1) a:hover:before {
	}


	#data03 .ul-flex li , #data04 .ul-flex li {
	}


	/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

	/*スクロールダウン全体の場所*/
	.scrolldown4{
	}

	/*Scrollテキストの描写*/
	.scrolldown4 span {
		bottom: -100px;
	}

	/* 矢印の描写 */
	.scrolldown4:before {
    	bottom: -110px;
	}

	.scrolldown4:after{
		bottom: -110px;
	}
	
	
	
	
	
	
}


@media only screen and (min-width:992px) and (max-width:1199px) {
	
	#data-contents .ul-flex li {
		max-width: 250px;
	}
	
}



