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


/*  ////////////
 header section
////////////  */


.header{
}
.navbar{
	background: rgba(40,45,116,0.70);
}

#logo-container{
	height: 100%;
}
#index-banner{
	height: 90vh;
}
#index-banner h1{
text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
}

#index-banner .carousel .carousel-item {
    width: 100%;
}
@media only screen and (min-width: 1500px){
	.carousel {
			min-height: 600px;
	}
}

#video-area{
	position: fixed;
	z-index: -2;/*最背面に設定*/
	top: 0;
	right:0;
	left:0;
	bottom:0;
	overflow: hidden;
}
#video-area:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(-60deg, rgba(0,0,0,0.6), rgba(0,0,0,0.5), rgba(0,0,0,0.5), rgba(0,0,0,0.6))fixed;
	content: "";
	width: 100%;
	height: 100%;
	z-index: -1;
}

#video {
	/*天地中央配置*/
	position: absolute;
	z-index: -2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/*縦横幅指定*/
	width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
	height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
	min-height: 100%;
	min-width: 100%;
	object-fit: cover;
}
.slider-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.30);
	background: url("../assets/images/overlay-diamond.png");
	margin: auto;
	z-index: 0;
	
}
/*見出し設定*/
#index-banner .container{
	/*要素の配置*/
	position:absolute;
	/*要素を天地中央寄せ*/
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	/*見た目の調整*/
	color:#333;
	width: 1280px;
	height: 80%;
}
#index-banner .container h1{
	font-weight: bold;
}


@media screen and (max-width:1280px){
	#index-banner .container{
		/*要素の配置*/
		position:inherit;
		/*要素を天地中央寄せ*/
		top: 50%;
		left: 50%;
		transform:none;
		color:#333;
		width: 100%;
		height:auto;
	}
	#index-banner .bannerImg{
		clip-path: none;
	}
}


.sec01{
	background-image: url("../images/img06.jpg");
	background-size: 100%;
}

.section{
	margin: 0 auto;
	padding-top: 0;
	padding-bottom: 0;
	
}
.section .container{
	padding-top: 5rem;
	padding-bottom: 5rem;
}


/*  ////////////
	 Main section
////////////  */


main .columns{
	height: 100%;
}
main .mainImg img{
	max-width: 85%;
}
main .mainTxt{
	padding: 2rem 0;
	letter-spacing: 3px;
	text-align: center;
	text-shadow:1px 1px 0 #000, -1px -1px 0 #000,
							-1px 1px 0 #000, 1px -1px 0 #000,
							0px 1px 0 #000,  0-1px 0 #000,
							-1px 0 0 #000, 1px 0 0 #000,
							2px 2px 3px #000;
	line-height: 4rem;
}



@media screen and (min-width:1024px){
	.mainTxt{
		max-width: 1024px;
		margin: 0 auto;
	}
	.mainTxt hr{
		width: 80%;
		margin: 0 auto;
	}

}
@media screen and (max-width:768px){
	main .mainCts{
		position: relative;
	}
	main .mainBg img{
		object-fit: cover;
		height: 100%;
		margin: auto;
		max-width: 100%;
	}
	main .mainTxt{
		background: rgba(255,255,255,0.5);
		padding: 1rem 0;
		letter-spacing: 1px;
		margin-top: 1rem;
		font-size: 1.3rem;
	}
	main .mainTxt span{
		font-size: 120%;
		display: inline-block;
	}
	main .mainIco{
		width: 100%;
	}
}

@media screen and (max-height:768px){
	main .mainCts .mainImgSp {
    top: 4.5rem;
		height: 12rem;
	}
	main .mainCts .mainImgSp img {
		max-height: 100%;
		width: 100%;
		object-fit: cover;
	}
	main .mainTxt{
		line-height: 1.65rem;
	}
	main .mainCts>div:last-child {
			bottom: -2rem;
	}
}

/*  ////////////
		sidebar
////////////  */

#sidebar{
	order:2;
	margin: 0 auto;
	margin-right: 0;
	background: #f7f7f7;
}

#sidebar .sMenu{
	width: 100%;
}

/*アコーディオン全体*/
.accordion-area{
	list-style: none;
	margin:0 auto;
}

.sMenuTtl{
	position: relative;/*+マークの位置基準とするためrelative指定*/
	cursor: pointer;
	font-size:1rem;
	font-weight: normal;
	padding: 3% 3% 3% 50px;
	transition: all .5s ease;
}
.sMenuTtl::before,
.sMenuTtl::after{
	position: absolute;
	content:'';
	width: 13px;
	height: 3px;
	background-color: #777;
}
.sMenuTtl::before{
	top:50%;
	left: 15px;
	transform: rotate(0deg);   
}
.sMenuTtl::after{    
	top:50%;
	left: 15px;
	transform: rotate(90deg);

}
.sMenuTtl.close::before{
  transform: rotate(45deg);
}

.sMenuTtl.close::after{
  transform: rotate(-45deg);
}

.sMenuBox {
	display: none;
	background: #FFF;
	margin:2%;
	padding: 3%;
}

	
#sidebar dl{
	margin: 0 0 0 auto;
}

#content{
	order:1;
}
#content img{
	width:100%;
}


/*  ////////////
		sub section
////////////  */

@media screen and (min-width:1216px){
	.subSec1>div{
		max-width: 1216px;
		margin: 0 auto;
	}
}

.subSec1,.subSec3{
	background: #f1ecdc;
}







/*  ////////////
	 CTA
////////////  */

@media screen and (min-width:1408px){
	.footCta>div{
		max-width: 1408px;
		margin: 0 auto;
	}
}


/*  ////////////
	 footer area
////////////  */

.News dl{
	display: block;
	font-size: 1rem;
	border-bottom: #fff solid 1px;
	margin-bottom: 2rem;
}
.News dl dt,.News dl dd{
	display: inline-block;
}
.News dl dt{
	border-bottom:#E8CC37 2px solid;
	padding-bottom: .5rem;
	margin-bottom: 0;
	width: 20%;
}
.News dl dd{
	margin-left: 2rem;
}

/*  ////////////
	 footer area
////////////  */

.footerArea{
	background: #eee;
}

.footerArea .newsArea dl{
	display: block;
	font-size: 1rem;
	border-bottom: #fff solid 1px;
	margin-bottom: 2rem;
}
.footerArea .newsArea dl dt,.footerArea dl dd{
	display: inline-block;
}
.footerArea .newsArea dl dt{
	border-bottom:#E8CC37 2px solid;
	padding-bottom: .5rem;
	margin-bottom: 0;
	width: 20%;
}
.footerArea .newsArea dl dd{
	margin-left: 2rem;
}

.footerArea .snsLinks img{
	width:100%;
	max-height: 100%;
}

@media screen and (min-width:1408px){
	.footerArea>div{
		max-width: 1408px;
		margin: 0 auto;
	}
}

footer{
	position:relative;
	background: #777;
	z-index: 1;
	color: #FFF;
}
.footer{
	padding: 5rem 1.5rem;
}
footer a{
	color: #FFF;
}
footer h3{
	font-weight: 600;
	margin-bottom: 1rem;
}

footer .maparea{
	height: 300px;
}

.current {
  border-bottom:#C5E0F7 2px solid;
	padding-bottom: 2px;
}


