@charset "utf-8";


/*------------------------------------------------------------
	
	
	top.css


------------------------------------------------------------*/

/*------------------------------------------------------------
	メインビジュアル
------------------------------------------------------------*/

#main-vis-area {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

#main-vis-area:before {
	content: '';
	display:block; 
	background-image: linear-gradient(-71deg, #42BAE7 0%, #1F84CA 100%);
	position: absolute;
	width: 75%;
	height: 50%;
	position: absolute;
	bottom: -130px;
	left: -50px;
	z-index: -1;
}

#main-vis-area #main-vis {
	display: block;
	width: 100%;
	height: 100vh;
    margin-bottom: 50px;
	position: relative;
    overflow: hidden;
}

#main-vis-area #main-vis:after {
	display: block;
	content: '';
	background: rgba(0,0,0,.2);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

@media only screen and (min-width: 769px) {
	
	#main-vis-area:before {
		bottom: -50px;
	}

			
	#main-vis-area #main-vis {
		width: calc(100% - 80px);
		min-width: 1280px;
		height: calc(100vh - 120px - 50px);
		min-height: 760px;
		max-height: 1400px;
		margin: 0 40px 100px;
	}
	
}

#main-vis-area #main-vis .main-copy {
	width: 100%;
	height: 180px;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 20;
}

@media only screen and (min-width: 769px) {
	
	#main-vis-area #main-vis .main-copy {
		height: 250px;
	}
	
}

#main-vis-area #main-vis .main-copy h1 {
	font: 700 6vw/1.6 "heisei-mincho-std";
	margin: 0 0 20px 2vw;
	text-shadow: 0 0 20px rgba(0,0,0,0.60);
}

#main-vis-area #main-vis .main-copy p {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8;
	text-shadow: 0 0 20px rgba(0,0,0,0.60);
}

@media only screen and (min-width: 769px) {
	
	#main-vis-area #main-vis .main-copy h1 {
		font-size: 4.6rem;
	}
		
	#main-vis-area #main-vis .main-copy p {
		font-size: 1.8rem;
		letter-spacing: 1px;
	}
	
}

/*------------------------------------------------------------
	ニュース
------------------------------------------------------------*/

#main-vis-area #main-vis .news-post {
	background: #fff;
	width: 90vw;
	position: absolute;
	left: 5vw;
	bottom: 20vw;
	z-index: 20;
}

@media only screen and (min-width: 813px) {
	
	#main-vis-area #main-vis .news-post {
		width: auto;
		left: 50px;
		bottom: 50px;
	}
		
}

#main-vis-area #main-vis .news-post dt {
	background-image: linear-gradient(-70deg, #42BAE7 0%, #1F84CA 100%);
	font: 700 1.2rem/2 'roboto-condensed';
	width: 90px;
	color: #fff;
	text-align: center;
	padding: 5px 0;
}

#main-vis-area #main-vis .news-post dd {
	width: calc(100% - 100px);
	font-size: 1.2rem;
	padding: 5px 10px;
}

#main-vis-area #main-vis .news-post dd i {
	position: relative;
	top: 1px;
}

@media only screen and (min-width: 813px) {
	
	#main-vis-area #main-vis .news-post dt {
		width: auto;
		font-size: 1.5rem;
		padding: 10px 25px;
	}
	
	#main-vis-area #main-vis .news-post dd {
		width: auto;
		font-size: 1.4rem;
		padding: 10px 25px 10px 30px;
	}
	
}


/*------------------------------------------------------------
	スクロール（アロー）
------------------------------------------------------------*/

.arrow-wrap {
	display: none;
}

@media only screen and (min-width: 813px) and (min-height: 880px) {

	.arrow-wrap {
		display: block;
		height: 50px;
		position: absolute;
	    bottom: 150px;
	    right: 20px;
		z-index: 30;
	}
  
	.arrow-inner p {
		font-size: 1rem!important;
		font-family: 'roboto-condensed';
		font-weight: 400;
		letter-spacing: 2px;
		text-align: end;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		color: #fff;
	}
	
	.arrow {
		width: 1px;
		height: 100px;
		margin: 50px auto 0;
		background-color: transparent;
		position: relative;
		overflow: hidden;
	}

	.arrow::before {
		content: '';
		background-color: #fff;
		width: 1px;
		height: 100px;
		margin: 50px auto 0;
		position: absolute;
		top: -150px;
		left: 0;
		-webkit-animation: arrow 2.5s ease 0s infinite normal;
		animation: arrow 2.5s ease 0s infinite normal;
	}
	
}

@keyframes arrow {
	
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
  
}

/*------------------------------------------------------------
	共通レイアウト
------------------------------------------------------------*/

hgroup h2 {
	font-size: 9vw;
	font-family: 'roboto-condensed';
	font-weight: 600;
	line-height: 1;
	color: #1C1C1C;
	text-align: center;
}

hgroup h2 span {
	display: block;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1;
	color: #1F84CA;
	margin: 10px 0 30px;
	text-align: center;
}

@media only screen and (min-width: 769px) {
	
	hgroup h2 {
		font-size: 5rem;
	}
	
	hgroup h2 span {
		font-size: 2rem;
		margin: 10px 0 40px;
	}
	
	.txt-box hgroup h2,
	.txt-box hgroup h2 span {
		text-align: left;
	}
	
}

/*------------------------------------------------------------
	レイアウト：2カラム ワイド
------------------------------------------------------------*/

.conts-box-wide {
	width: 100%;
	margin-bottom: 60px;
}

@media only screen and (min-width: 813px) {
	
	.conts-box-wide {
		width: auto;
		min-width: 1200px;
		margin-bottom: 120px;
	}
	
	.conts-box-wide .one-half {
		width: 50%;
		margin: 0;
	}
	
}


/*画像*/
.conts-box-wide figure {
	position: relative;
	z-index: 10;
	margin-bottom: 50px;
}

.conts-box-wide figure .img-box {
	display: block;
	background: #ccc;
	background-size: cover;
	width: 95%;
	height: 75vw;
	position: relative;
	z-index: 5;
}

@media only screen and (max-width: 813px) {
	
	.conts-box-wide figure.order-01 .img-box {
		margin-left: 5vw;
	}

}

@media only screen and (min-width: 813px) {
	
	.conts-box-wide figure {
		margin-bottom: 0;
	}
	
	.conts-box-wide figure .img-box {
		width: 100%;
		height: 100%;
	}
	
	.conts-box-wide:nth-of-type(3) figure .img-box {
        height: calc(100% + 200px);
	}
	
}


/*小さい画像でアシンメトリーの場合*/
.conts-box-wide figure .img-box-small {
	display: block;
	background: url('../img/top/img_02.jpg') center center / cover no-repeat;
	position: absolute;
	width: 42vw;
	height: 37vw;
	bottom: -5vw;
	left: 0;
	z-index: 10;
}

@media only screen and (min-width: 813px) {	
	
	.conts-box-wide figure .img-box-small {
		width: 320px;
		height: 290px;
		bottom: -20px;
		left: -50px;
	}
	
}

.conts-box-wide figure .white-box,
.conts-box-wide:nth-of-type(2) figure .white-box {
	display: block;
	background: #fff;
	position: absolute;
	width: 45vw;
	height: 35vw;
	bottom: 0;
	left: 0;
	z-index: 5;
}

.conts-box-wide:nth-of-type(2) figure .white-box {
	width: 15vw;
	height: 35vw;
	top: 0;
	bottom: auto;
	left: auto;
	right: 0;
}

@media only screen and (min-width: 813px) {	
	
	.conts-box-wide figure .white-box {
		width: 340px;
		height: 310px;
		bottom: -20px;
		left: -50px;
	}
	
	.conts-box-wide figure .white-box:nth-of-type(2) {
		width: 120px;
		height: 40%;
	}

}


/*テキスト*/
.conts-box-wide .txt-box {
	width: 90vw;
	margin: 0 auto;
}

@media only screen and (min-width: 813px) {
	
	.conts-box-wide .txt-box {
		width: 70%;
		max-width: 500px;
		padding: 90px 0;
		position: relative;
		top: 50%;
		transform: translateY(-50%);
	}
	
}

.conts-box-wide .txt-box h3 {
	font: 500 7vw/1.8 'heisei-mincho-std';
	color: #000;
	text-align: center;
	margin-bottom: 20px;
}

.conts-box-wide .txt-box p {
	text-align: justify;
}

@media only screen and (min-width: 813px) {
	
	.conts-box-wide .txt-box h3 {
		font-size: 3.2rem;
		margin-bottom: 30px;
		text-align: left;
	}
	
}


/*ボタン*/
.conts-box-wide .txt-box .button {
	font-weight: 500;
	letter-spacing: 0.5px;
	margin: 30px auto 0;
}

@media only screen and (min-width: 813px) {
	
	.conts-box-wide .txt-box .button {
		margin: 50px 0 0;
	}
}


/*------------------------------------------------------------
	カルーセル
------------------------------------------------------------*/

#carousel-area {
	margin-bottom: 60px;
}

#carousel-area-02 {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	position: relative;
	top: -40px;
	z-index: 10;
}

@media only screen and (min-width: 813px) {
	
	#carousel-area {
		margin-bottom: 100px;
	}
	
	#carousel-area-02 {
		width: 100%;
		max-width: 1320px;
		margin: 0 auto;
		position: relative;
		top: -100px;
		z-index: 10;
	}
	
}



#carousel-area-02 .flex-box {
	background: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

#carousel-area-02 .slick-initialized .slick-slide {
	display: flex;
	margin: 20px;
}

#carousel-area-02 .flex-box div.one-half {
	position: relative;
	padding: 20px 15% 30px;
}

#carousel-area-02 .flex-box div.one-half dl {
	margin: 0 auto;
}

@media only screen and (min-width: 813px) {
	
	#carousel-area-02 .flex-box .one-half {
		width: 50%;
		margin: 0;
	}
	
	#carousel-area-02 .flex-box div.one-half {
		padding: 0;
	}
	
	#carousel-area-02 .flex-box div.one-half dl {
		width: 80%;
		max-width: 400px;
		margin: 0 auto;
		position: relative;
		top: 50%;
		transform: translateY(-50%);
	}
}

#carousel-area-02 .flex-box div.one-half dl dt {
	font-size: 2rem;
	font-weight: 600;
	color: #217EC4;
	margin-bottom: 10px;
}

#carousel-area-02 .flex-box div.one-half dl dt a {
	font-weight: 600;
	color: #1F84CA;
}

@media only screen and (min-width: 813px) {
	
	#carousel-area-02 .flex-box div.one-half dl dt {
		font-size: 2.4rem;
		font-weight: 600;
		color: #217EC4;
		margin-bottom: 30px;
	}
	
}

#carousel-area-02 .flex-box div.one-half dl dd p {
	font-size: 1.3rem;
	text-align: justify;
	margin-bottom: 10px;
}

#carousel-area-02 .flex-box div.one-half dl dd p:last-child {
	margin-bottom: 0;
}


@media only screen and (min-width: 813px) {
	
	#carousel-area-02 .flex-box div.one-half dl dd p {
		font-size: 1.5rem;
	}

}





