@charset "utf-8";

/* ------------------------------
 TOP
------------------------------ */
/* メインイメージ */
@media print, screen and (min-width: 768px) {
	.main-img-block{
	     position:relative;
	     margin-bottom: 80px;
	}
	.main-img{
	     display: flex;
	     flex-flow: row wrap;
	     position:relative;
	}
	.main-img:before{
	     content: "";
	     width: 100%;
	     height: 1080px;
	     display: block;
	     background: url(../../img/index_main_bg.png) no-repeat center center / cover;
	     position: absolute;
	     top: 0;
	     left: 0;
	     z-index:20;
	}
	.main-img-block .h1-block{
	     width: 440px;
	     height: 235px;
	     position: absolute;
	     color: #fff;
	     top: 0;
	     bottom: 0;
	     left: 0;
	     right: 0;
	     margin: auto;
	     z-index:30;
	     text-align: center;
	     font-size: 2.1rem;
	     font-weight: bold;
	}
	.main-img-block .h1-block h1{
		font-family: 'Roboto Condensed', sans-serif;
	     font-size: 12rem;
	     font-weight: bold;
	     line-height: 1;
	     margin-bottom: 5px;
	}
	.main-img div{
	     width: 50%;
	     display: flex;
	     justify-content: center;
	     align-items: center;
	}
	.main-img div a{
	     position:relative;
	     z-index: 30;
	     width: 240px;
	     height: 50px;
	     line-height: 50px;
	     color: #fff !important;
	     font-size: 2rem !important;
	     font-weight: bold;
	     text-align: center;
	     display: block;
	     background: rgba(0,0,0, 0.4);
	     border: solid 2px #fff;
	}
	.main-img div a:hover{
	     background: rgba(0,0,0, 0.8);
	     opacity: 1;
	}
	.main-img .img01{
	     background: url(../../img/index_pict_001.jpg) no-repeat center center / cover;
	}
	.main-img .img02{
	     background: url(../../img/index_pict_002.jpg) no-repeat center center / cover;
	}
	.main-img .img03{
	     background: url(../../img/index_pict_003.jpg) no-repeat center center / cover;
	}
	.main-img .img04{
	     background: url(../../img/index_pict_004.jpg) no-repeat center center / cover;
	}
	.main-img-sp{
		display: none;
	}
}

/* メインの高さ調整 */

@media print, screen and (min-width: 768px) {
.main-img div {
    height: 380px;
}
.main-img:before {
    height: 760px;
}
}
@media print, screen and (min-width: 1400px) {
.main-img div {
    height: 440px;
}
.main-img:before {
    height: 880px;
}
}
@media print, screen and (min-width: 1680px) {
.main-img div {
    height: 540px;
}
.main-img:before {
    height: 1080px;
}
}


@media screen and (max-width: 767px) {
	.main-img-block{
	     margin-bottom: 60px;
	}
	.main-img-sp{
		width: 100%;
		height: 350px;
		display: flex;
		justify-content: center;
		align-items: center;
	    background: url(../../img/index_pict_sp_main.jpg) no-repeat center center / cover;
	    margin-bottom: 20px;
	}
	.main-img-sp h1{
		 font-family: 'Roboto Condensed', sans-serif;
	     font-size: 4.8rem;
	     font-weight: bold;
	     color: #fff;
	}
	.main-img{
	     width: 90%;
	     margin: 0 auto;
	     display: grid;
	     grid-template-columns: 1fr 1fr;
	     grid-gap: 11px 11px;
	}
	.main-img a{
		line-height: 33px !important;
		font-weight: bold;
		display: block;
		color: #fff !important;
		background: #0041a5;
		text-align: center;
		padding-top: 2px;
		position: relative;
	     tetx-align: center;
		font-size: 1.3rem !important;
	}
	.main-img a:after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		right: 7px;
		width: 7px;
		height: 7px;
		margin: auto;
		border: 0;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
		transform: rotate(45deg);
	}
}
@media screen and (max-width: 400px) {
	.main-img-sp{
		height: 320px;
	}
}


.contentsHome h2{
	font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
	font-size: 4.8rem;
	color: #0041a5;
	margin-bottom: 0;
	line-height: 1;
}
.contentsHome .lead{
	font-size: 1.8rem;
	line-height: 1.5 !important;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.contentsHome h2{
		font-size: 3.3rem;
	}
	.contentsHome .lead{
		font-size: 1.5rem;
		line-height: 1.6 !important;
	}
	.contentsHome .sp_f13{
		font-size: 1.3rem;
	}
}

/* マウス */
.scrollBox .mouse {
	position: absolute;
	width: 29px;
	height: 50px;
	left: 49.75%;
	bottom: 60px;
	margin-left: -10px;
	border: solid 1px #fff;
	border-radius: 30px;
	z-index: 30;
}
.scrollBox .mouse:after {
	width: 60px;
	content: "SCROLL";
	font-size: 1.4rem;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	display: block;
	color: #fff;
	white-space:nowrap;
	margin: 56px auto 0 -15px;
	text-align: center;
}
.scrollBox .mouse::before {
	content: "";
	width: 4px;
	height: 7px;
	position: absolute;
	left: 50%;
	top: 5px;
	margin-left: -2px;
	background: #fff;
	border-radius: 2px;
	animation: arrow 1s ease-in-out forwards infinite;
}
@keyframes arrow {
	0% { transform: translate3d(0, 0, 0);}
	50% { transform: translate3d(0, 5px, 0);}
	100% { transform: translate3d(0, 0, 0);}
}
@media screen and (max-width: 767px) {
	.scrollBox {
		display: none;
	}
}
.blue-btn{
	width: 287px;
	height: 60px;
	background: #fff;
	margin: -30px auto 0;
	z-index: 10;
	position:relative;
}
.blue-btn a{
	width: 287px;
	height: 60px;
	line-height: 60px;
	font-size: 1.8rem;
	font-weight: bold;
	display: block;
	color: #fff !important;
	background: #0041a5;
	text-align: center;
	padding-top: 2px;
}
.blue-btn a:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 15px;
	width: 10px;
	height: 10px;
	border: 0;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
	.blue-btn{
		width: 160px;
		height: 33px;
		margin: -16.5px auto 0;
	}
	.blue-btn a{
		width: 160px;
		height: 33px;
		line-height: 33px;
		font-size: 1.3rem;
		font-weight: bold;
		display: block;
		padding-top: 2px;
	}
	.blue-btn a:after {
		right: 7px;
		width: 7px;
		height: 7px;
	}
}
