@charset "UTF-8";
/*============================================================================================
      Header
=============================================================================================*/
.Header{
	width: 100%;
	height: 60px;
	background-color: #fff;
	/* position: fixed; */
	top: 0;
	left: 0;
  z-index: 999999;
}
.Header.js_fixed{
	position: fixed;
	-webkit-animation: fead 0.4s ease-in-out;
	animation: fead 0.4s ease-in-out;
}
@-webkit-keyframes fead{
  0%{
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100%{
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fead{
  0%{
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100%{
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}


.Header_wrp{
  position: relative;
  height: 100%;
  z-index: 999999;
	padding-left: 42px;
}
.Head_logo{
	width: auto;
	height: 20px;
}
.Head_logo a,
.Head_logo img{
	width: auto;
	max-width: none;
	height: 100%;
	display: block;
	margin: 0;
}

@media (max-width: 896px){
	.Header{
		padding: 0 20px;
	}
	.Header_wrp{
		padding: 0;
	}
}
@media (max-width: 576px){
	.Header{
		padding: 0 5vw;
	}
}


/*    Navigation
=====================================================*/
.Head_gnav{
	height: 100%;
}
.Head_gnav_box{
	height: 100%;
}
.Head_gnav_wrp{
	height: 100%;
}
.Head_gnav_lst{
	height: 100%;
}
.Head_gnav_itm{
	font-size: 1.3rem;
	height: 100%;
	display: block;
	-webkit-transition: color .2s, background .2s;
	transition: color .2s, background .2s;
	position: relative;
}
.Head_gnav_itm:hover{
	color: #378BC9;
}
.Head_gnav_itm a{
	height: 100%;
	padding: 0 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.Head_gnav_itm a:hover .g_tab::before,
.Head_gnav_itm a:hover .g_tab::after{
	border-color: #fff;
	background-color: #378BC9;
}

/* アコーディオン */
.Head_acd{
	height: 100%;
}
.Head_acdLst{
	width: auto;
	min-width: 200px;
	position: absolute;
	top: 60px;
	z-index: 1;
	display: none;
}
.Head_acdLst_itm + .Head_acdLst_itm{
	border-top: 1px solid #eee;
}
.Head_acdLst_itm a{
	display: block;
	padding: 10px;
	color: #fff;
	background-color: #378BC9;
	-webkit-transition: color .2s, background .2s;
	transition: color .2s, background .2s;
}
.Head_acdLst_itm a:hover{
	color: #378BC9;
	background-color: #fff;
}

.Head_btn{
	font-size: 1.3rem;
	width: 138px;
	height: 100%;
	position: relative;
	display: block;
	margin-left: 20px;
}
.Head_btn a{
	width: 100%;
	height: 100%;
	padding: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
	background-color: #378BC9;
	border: 2px solid #378BC9;
	transition: background .2s, color .2s;
	-webkit-transition: background .2s, color .2s;
}
.Head_btn a:hover{
	color: #378BC9;
	background-color: #fff;
}


@media (max-width: 896px){
	.Head_gnav{
		height: 100%;
		position: fixed;
    top: 60px;
    right: 0;
    z-index: 10000;
	}
  .Head_gnav_box{
    width: 100vw;
    height: calc(100vh - 60px);
    background-color: #fff;
    position: absolute;
    top: 0;
		right: 0;
    overflow-y: scroll;
		display: none;
  }
  .Head_gnav_wrp{
    width: 100%;
    height: auto;
    padding-bottom: 130px;
  }
	.Head_gnav_lst{
		height: auto;
	}
	.Head_gnav_itm{
    width: 100%;
		height: auto;
    font-size: 1.5rem;
    border-bottom: 1px solid #eee;
	}
	.Head_gnav_itm:first-child{
		border-top: 1px solid #eee;
	}
	.Head_gnav_itm + .Head_gnav_itm{
		margin-left: 0px;
	}
	.Head_gnav_itm:hover{
		color: inherit;
		background-color: #fff;
	}
	.Head_gnav_itm a{
    display: block;
    width: 100%;
		padding: 15px 20px;
	}
	.Head_gnav_itm a:hover .g_tab::before,
	.Head_gnav_itm a:hover .g_tab::after{
		border-color: #378BC9;
		background-color: #fff;
	}

	/* アコーディオン */
	.Head_acdLst{
		position: static;
		top: auto;
	}
	.Head_acdLst_itm{
		border-top: 1px solid #eee;
	}
	.Head_acdLst_itm a,
	.Head_acdLst_itm a:hover{
		display: block;
		color: inherit;
		background-color: #fafafa;
	}
	.Head_btn{
		font-size: 1.5rem;
		width: 100%;
		margin-left: 0;
		border-bottom: 1px solid #eee;
	}
	.Head_btn a{
		color: inherit;
		background-color: #fff;
		border: none;
		padding: 15px 20px;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.Head_btn a:hover{
		color: inherit;
	}
}
@media (max-width: 576px){
	.Head_gnav_itm a,
	.Head_btn a{
		padding: 3.7vw 5.333vw;
	}
}

/*    TOPファストビュー用ヘッダー
=====================================================*/
.js_heroHeader{
	color: #fff;
	height: 94px;
	background-color: transparent;
	transition: background .2s;
	position: absolute;
}
.js_heroHeader .Head_logo::before{
	width: 53vw;
	max-width: 200px;
	height: 100%;
	background-image: url(../img/common/logo_wh.svg);
	background-size: auto 100%;
}
.js_heroHeader .Head_logo img{
	display: none;
}

.js_heroHeader .g_hamb_inr div{
	background-color: #fff;
}

/* オープン時 */
.js_heroHeader.js_hambOpen{
	color: inherit;
	height: 60px;
	background-color: #fff;
	transition: .2s;
}
.js_heroHeader.js_hambOpen .g_hamb_inr div{
	background-color: #378BC9;
}
.js_heroHeader.js_hambOpen .Head_logo::before{
	background-image: url(../img/common/logo.svg);
}
.js_heroHeader.js_hambOpen .Head_gnav_itm{{
	text-shadow: none;
}

}

/* PC用 */
@media (min-width: 897px){
	.js_heroHeader .Head_btn{
		width: auto;
		margin-left: 0;
	}
	.js_heroHeader .Head_acdLst{
		top: 74px;
	}
	.js_heroHeader .Head_gnav_itm{
		text-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
	}
	.js_heroHeader .Head_btn a,
	.js_heroHeader .Head_btn a:hover{
		background-color: transparent;
		border: none;
		padding-right: 40px;
		padding-left: 15px;
	}
}



/*============================================================================================
      Footer
=============================================================================================*/
.Footer{
	background-color: #fff;
}
.Footer_wrp{
	padding: 100px 0;
}
.Foot_logo{
	height: 40px;
}
.Foot_logo{
	height: 35px;
	margin: 0;
}
.Foot_logo a,
.Foot_logo img{
	width: auto;
	max-width: none;
	height: 100%;
	display: block;
	margin: 0;
}


.Foot_tel{
	padding-left: 40px;
}
.Foot_tel::before{
	width: 20px;
	height: 20px;
	background-image: url(../img/common/ic_tel.svg);
	top: 0;
	bottom: 0.5em;
	left: 0;
}
.Foot_tel_num{
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1;
	display: block;
}


.Foot_bnr{
}
.Foot_bnr_itm{
	width: 48%;
	margin-top: 10px;
	margin-right: 2%;
}
.Foot_bnr_itm:nth-of-type(2n),
.Foot_bnr_itm:last-of-type{
	margin-right: 0;
}
.Foot_bnr_itm:nth-of-type(1),
.Foot_bnr_itm:nth-of-type(2){
	margin-top: 0;
}


.Foot_sns{
}
.Foot_sns_ttl{
	margin-right: 20px;
}
.Foot_sns_lst{
}
.Foot_sns_itm{
	width: 24px;
}
.Foot_sns_itm + .Foot_sns_itm{
	margin-left: 10px;
}

.Foot_copy{
	display: block;
}

@media (max-width: 896px){
	.Foot_sns_ttl{
		margin: 0 0 10px;
	}
}
@media (max-width: 576px){
}



/*============================================================================================
      Contents
=============================================================================================*/
/*    TOP
=============================================================================================*/
.Top_wrap{
	background-color: #fff;
	padding-top: 0;
}
.Top_sec{
  position: relative;
  z-index: 1;
	padding-top: 140px;
}
@media (max-width: 896px){
	.Top_sec{
		padding-top: 80px;
	}
}
@media (max-width: 576px){
	.Top_sec{
		padding-top: 21.333vw;
	}
}


/*    TOP - MV
=====================================================*/
.TopMv{
  width: 100%;
	height: 100vh;
	position: relative;
}
.TopMv_txtBox{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
	z-index: -1;
}
.TopMv_txtimg{
	width: 65.5vw;
	max-width: 320px;
	margin: auto;
}

.TopMv_cap{
	max-width: 80vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
}
.TopMv_txtimg + .TopMv_cap{
	margin-top: 30px;
}

/* scroll */
.TopMv_scroll{
	width: 9px;
	height: 80px;
  position: absolute;
  left: 0;
	right: 0;
  bottom: 0;
	margin: auto;
	display: block;
}
.TopMv_scroll::before{
  width: 1px;
  height: 100%;
  left: 0;
	right: 0;
  bottom: 0;
  background-color: #fff;
}
.TopMv_scroll::after{
  width: 100%;
  height: 9px;
	right: 0;
  left: 0;
  bottom: 0;
  border-radius: 100%;
  background-color: #fff;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: scrollMove 1.6s ease-in-out infinite, scrollMoveHide 1.6s ease-out infinite;
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes scrollMove{
	0%{bottom: 78px;}
	100%{bottom: -5px;}
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes scrollMoveHide{
	0%{opacity: 0;}
	50%{opacity: 1;}
	80%{opacity: 0.9;}
	100%{opacity: 0;}
}

@media (max-width: 1040px){
}
@media (max-width: 896px){
}
@media (max-width: 576px){
	.TopMv_scroll::before{
		height: 9.8vh;
	}
	@keyframes scrollMove{
		0%{bottom: 9.6vh;}
		100%{bottom: -5px;}
	}
}

/*    TOP - MV Slider
=====================================================*/
.TopMv_bg{
	width: 100%;
	height: 100%;
	position: fixed;
  top: 0;
  left: 0;
	z-index: -1;
}

/* sliderオン */
.TopMv_slider.slick-slider{
	margin: auto;
	width: 100%;
	height: 100%;
	min-height: auto;
}
.TopMv_slider.slick-slider .slick-list,
.TopMv_slider.slick-slider .slick-track{
	height: inherit;
}
.TopMv_slider.slick-dotted.slick-slider{
  margin-bottom: 0;
}

/* sliderオフ */
.TopMv_slider{
  width: 100%;
  height: 100%;
}

.TopMv_slider_itm{
  width: 100%;
  height: 100%;
}
.TopMv_slider_itm img{
	width: 100%;
  height: 100%;
	object-fit: cover;
}
.TopMv_slider_move img{
	animation: fadezoom 7s 0s forwards;
	transform: scale(1.2);/* 拡大率 */
}

@keyframes fadezoom {
  0% {
    transform: scale(1.2);/* 拡大率 */
  }
  100% {
    transform: scale(1);/* 拡大率 */
  }
}

/* progress bar */
.TopMv_bar{
  width: 100%;
  height: 5px;
	position: absolute;
	left: 0;
	bottom: 0;
}
.TopMv_bar span{
  width: 0%;
  height: 100%;
  background-color: #378BC9;
	display: block;
}


/*    TOP - Layout
=====================================================*/
.Top_clm_img{
	width: 45.5%;
	margin-right: 9%;
	flex: 0 0 auto;
}
.Top_clm_txt + .Top_clm_img{
	margin-right: 0;
	margin-left: 9%;
}
.Top_clm_txt{
}

@media (max-width: 896px){
	.Top_clm_img,
	.Top_clm_txt + .Top_clm_img{
		width: 100%;
		margin: 0 auto 30px;
		order: 1;
	}
	.Top_clm_txt{
		width: 100%;
		order: 2;
	}
}

/*    テンプレート
=============================================================================================*/
/*    テンプレート
=====================================================*/
@media (max-width: 1040px){
}
@media (max-width: 896px){
}
@media (max-width: 576px){
}


