@charset "UTF-8";
/* CSS Document */
/*=======================================
  共　通
=======================================*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;500;700;900&display=swap');
:root {
	--ELITE-BLACK: #2f2725;
	--ELITE-BEIGE: #faf8ed;
	--ELITE-NBLUE: #1c2088;
}
/*
:root {
	--KOKUYO-TEXT-DARK: #454545;
}
body.kc_GREEN .kc_bg{background: var(--KOKUYO-GREEN)!important;}
*/
/*
#loadArea {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	visibility: visible;
	opacity: 1;
	background: #fff;
	transition:
		opacity 0.8s ease,
		visibility 0.8s ease;
	z-index: 10000;
}
body.is-loaded #loadArea{
	visibility: hidden;
	opacity: 0;
}
#loadArea .loadpBar {
	position: fixed;
	top:50%;
	left:0;
	background: #000;
	height: 1px;
	width: 0;
	transition: width 0.2s ease;
}
#loadArea .loadPer {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 9999;
	transform: translate(-50%, -50%);
	font-size: 50px;
}
*/


html {
	background:var(--ELITE-BEIGE);
	color:var(--ELITE-BLACK);
	font-size: 625%;
}
/*scrollbar hidden*/
html::-webkit-scrollbar {/* Chrome, Safari 対応 */
	/*display:none;*/
}
html.lock{
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
}
body{
	font-size: 0.12em;
	font-family: 'Zen Maru Gothic', serif;
	font-weight: 500;
	font-feature-settings: "palt";
	line-height:1.0;
	letter-spacing:0px;
	-webkit-text-size-adjust: 100%;/*スマホ文字拡大対策*/
}
.fzen_l {font-weight: 300!important;}
.fzen_b {font-weight: 700!important;}
.fzen_bl{font-weight: 900!important;}
/* --A-- */
a {
	cursor:pointer;
	text-decoration:none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);/*リンクタップ時のハイライト表示無効*/
}
a.noLink{cursor: default;}

a:active {
	text-decoration:none;
}
/* --HEADLINE-- */
h1, h2, h3, h4, h5, h6 {
	font-size:100%;
	font-weight: 500;
	margin:0;
	max-height: 100%;/*android chrome対策*/
}
/* --OTHER TAGS-- */
p {
	margin-bottom:0;
	text-align:left;
	width:auto;
	max-height: 100%;/*android chrome対策*/
}
em, strong {
	font-weight:bold;
}
/* --clearfix-- */
.clf:after{
	content: ".";
	display: block;
	height: 0;
	font-size:0;
	clear: both;
	visibility:hidden;
}
.clf{
	display: inline-block;
}
	/* Hides from IE Mac */
	* html .clf{
		height: 1%;
	}
	.clf{
		display:block;
	}
	
.center{text-align:center;}
.left{text-align:left;}
.right{text-align:right;}
.Fright {float:right;}
.Fleft {float:left;}
.imgRight {float:right; margin:0px 0px 20px 20px ;}
.imgLeft {float:left; margin:0px 20px 20px 0px ;}
.vm,
.vmTxt{
	display: inline-block;
	position: relative;
	top:50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
/*========
親に設定
========*/
/*上下中央寄せ*/
.vmf{
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
/*上下左右中央寄せ*/
.vmf_c{
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.vmg_c{
	display: grid;
	place-content: center;
	place-items: center;
}

	/*IE遊ゴずれ対応*/
	/*@media all and (-ms-high-contrast:none){
		.vmTxt{padding-top: 0.3em;}
		.vmf_b,.vmf_ib{padding-top: 0.3em;}
	}*/
.opBtf a,
a.opBtf{
	opacity: 1;
	-webkit-transition: opacity 0.25s ease;
	transition: opacity 0.25s ease;
}
.zoomBt a,
a.zoomBt{
	-webkit-transform: scale(1.0);
		transform: scale(1.0);
	-webkit-transition: transform 0.35s ease;
	transition: transform 0.35s ease;
}
/*.opBtf a,
.opBtf a *,*/
.zoomBt a,
a.zoomBt,
.zoomBt a *,
a.zoomBt *{
	backface-visibility: hidden;/*chrome transition 1pxズレ対策*/
}
.opBtf a:not(.noLink):active,
a.opBtf:not(.noLink):active{
	opacity: 0.5;
	-webkit-transition: opacity 0.35s ease;
	transition: opacity 0.35s ease;
}
.zoomBt a:not(.noLink):active,
a.zoomBt:not(.noLink):active{
	-webkit-transition: transform 0.2s ease;
	transition: transform 0.2s ease;
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

a.txtBt:not(.noLink):active{
	-webkit-transition: transform 0.2s ease;
	transition: transform 0.2s ease;
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}


#loaderOuter{
	position:fixed;
	width:100%;
	height:100%;
	z-index:499;
	background:#FFF;
}
#loader{
	position: fixed;
	top:50%;
	left:50%;
	z-index:90;
}
.fwb{font-weight: bold !important;}
.fwn{font-weight: normal !important;}
.txtInd{text-indent: -1em;padding-left: 1em;}
.bb1{border-bottom: 1px solid #000;}
.bt1{border-top: 1px solid #000;}
.posRe{position: relative;}
.posAb{position: absolute;}
.posFix{position: fixed;}
.lh2{line-height: 2.0;}
.pc{display: none !important;}
.sp_flex,
.flex{
	display: -webkit-flex;
	display: flex;
}
/*.pc{display: none !important;}*/

.noEvent{pointer-events:none;}/*IE11以降（IE11ではaタグには利かない）*/
.wrapper{overflow: hidden;}
img.obFit{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
a.ring > *{
	position: relative;
	z-index: 1;
}
a.ring::after {
	content: '';
	display: block;
	position: absolute;
	z-index:0;
	border-radius: 50%;
	height: 1px;
	width: 1px;
	top: 50%;
	left: 50%;
}
a.ring.t75:active::after {animation: t75 0.5s ease-out 0s 1 normal both;}
a.ring.t100:active::after {animation: t100 0.5s ease-out 0s 1 normal both;}
a.ring.t200:active::after {animation: t200 0.75s ease-out 0s 1 normal both;}
a.ring.cbl::after {background: rgba(181, 244, 253, 0.8);}
a.ring.cw::after  {background: rgba(255, 255, 255, 0.8);}
@keyframes t75 {
    0%   { opacity: 0; transform: scale(1);}
    50%  { opacity: 1; }
    100% { transform: scale(75); opacity: 0.0;}
}
@keyframes t100 {
    0%   { opacity: 0; transform: scale(1);}
    50%  { opacity: 1; }
    100% { transform: scale(100); opacity: 0.0;}
}
@keyframes t200 {
    0%   { opacity: 0; transform: scale(1);}
    50%  { opacity: 1; }
    100% { transform: scale(200); opacity: 0.0;}
}

a.txtLink{
	display: inline-block;
	position: relative;
	overflow: hidden;
}
a.txtLink *{
	display: block;
}
a.txtLink span.op0{
	opacity: 0;
}
a.txtLink::before,
a.txtLink::after {
	display: block;
	content: attr(data-hover);
	position: absolute;
	left:0;
	-webkit-transition: top 0.25s ease;
	transition: top 0.25s ease;
}
a.txtLink::before {top:0;}
a.txtLink:active::before {top:calc(-100% - 15px);}
a.txtLink::after {top:calc(100% + 15px);}
a.txtLink:active::after {top:0;}


.blinkAni_1s {position: relative;}
.blinkAni_1s img.blink:nth-of-type(1){
	animation: blinkAni 1s step-end 0s infinite;
}
.blinkAni_1s img.blink:nth-of-type(2){
	opacity: 0;
	animation: blinkAni 1s step-end 0.5s infinite;
}
.blinkAni_2s {position: relative;}
.blinkAni_2s img.blink:nth-of-type(1){
	animation: blinkAni 2s step-end 0s infinite;
}
.blinkAni_2s img.blink:nth-of-type(2){
	opacity: 0;
	animation: blinkAni 2s step-end 1s infinite;
}

.blinkAni_1s img,
.blinkAni_2s img{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: auto;
	user-select: none; /* CSS3 */
	-moz-user-select: none; /* Firefox */
	-webkit-user-select: none; /* Safari、Chromeなど */
}
@-webkit-keyframes blinkAni {
	0% {opacity: 1;}
	50% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes         blinkAni {
	0% {opacity: 1;}
	50% {opacity: 0;}
	100% {opacity: 1;}
}

.zoomView,
.zoomViewBloc,
.zoomView_015s,
.zoomViewBloc_015s,
.zoomView_025s,
.zoomViewBloc_025s,
.zoomView_035s,
.zoomViewBloc_035s,
.zoomView_05s,
.zoomViewBloc_05s,
.zoomView_075s,
.zoomViewBloc_075s,
.zoomView_1s,
.zoomViewBloc_1s{
	-webkit-transform: scale(0);
	transform: scale(0);
}
.show.zoomView,.showBloc .zoomViewBloc          {animation: zoomAni 0.4s cubic-bezier(0.175, 0.885, 0.260, 1.555) 0s 1 normal both;}
.show.zoomView_015s,.showBloc .zoomViewBloc_015s{animation: zoomAni 0.4s cubic-bezier(0.175, 0.885, 0.260, 1.555) 0.15s 1 normal both;}
.show.zoomView_025s,.showBloc .zoomViewBloc_025s{animation: zoomAni 0.4s cubic-bezier(0.175, 0.885, 0.260, 1.555) 0.25s 1 normal both;}
.show.zoomView_035s,.showBloc .zoomViewBloc_035s{animation: zoomAni 0.4s cubic-bezier(0.175, 0.885, 0.260, 1.555) 0.35s 1 normal both;}
.show.zoomView_05s,.showBloc .zoomViewBloc_05s  {animation: zoomAni 0.4s cubic-bezier(0.175, 0.885, 0.260, 1.555) 0.5s 1 normal both;}
.show.zoomView_075s,.showBloc .zoomViewBloc_075s{animation: zoomAni 0.4s cubic-bezier(0.175, 0.885, 0.260, 1.555) 0.75s 1 normal both;}
.show.zoomView_1s,.showBloc .zoomViewBloc_1s    {animation: zoomAni 0.4s cubic-bezier(0.175, 0.885, 0.260, 1.555) 1s 1 normal both;}
@-webkit-keyframes zoomAni {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes         zoomAni {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.showM,
.showMBloc,
.showM_05s,
.showMBloc_05s,
.showM_1s,
.showMBloc_1s{
	margin-top: 50px;
	opacity: 0;
}
.show.showM,.showBloc .showMBloc{animation: showMAni 0.5s ease 0s 1 normal both;}
.show.showM_05s,.showBloc .showMBloc_05s{animation: showMAni 0.5s ease 0.5s 1 normal both;}
.show.showM_1s,.showBloc .showMBloc_1s{animation: showMAni 0.5s ease 1s 1 normal both;}
@-webkit-keyframes showMAni {
	0% {
		margin-top: 50px;
		opacity: 0;
	}
	100% {
		margin-top: 0;
		opacity: 1;
	}
}
@keyframes         showMAni {
	0% {
		margin-top: 50px;
		opacity: 0;
	}
	100% {
		margin-top: 0;
		opacity: 1;
	}
}


.showPos,
.showPosBloc,
.showPos_05s,
.showPosBloc_05s,
.showPos_1s,
.showPosBloc_1s{
	position: relative;
	top:50px;
	opacity: 0;
}
.show.showPos,.showBloc .showPosBloc{animation: showPosAni 0.5s ease 0s 1 normal both;}
.show.showPos_05s,.showBloc .showPosBloc_05s{animation: showPosAni 0.5s ease 0.5s 1 normal both;}
.show.showPos_1s,.showBloc .showPosBloc_1s{animation: showPosAni 0.5s ease 1s 1 normal both;}
@-webkit-keyframes showPosAni {
	0% {
		top:50px;
		opacity: 0;
	}
	100% {
		top:0px;
		opacity: 1;
	}
}
@keyframes         showPosAni {
	0% {
		top:50px;
		opacity: 0;
	}
	100% {
		top:0px;
		opacity: 1;
	}
}


#container{padding-top: 70px;}


/*=============================
  header
=============================*/
header{
	position: fixed;
	top:0;
	left:0;
	z-index: 200;
	width: 100%;
	height: 70px;
	align-items: center;
}
header .logo{
	background: #FFF;
	width: 115px;
	height: 100%;
	text-align: center;
	display: grid;
	place-content: center;
	place-items: center;
	position: relative;
	z-index: 500;
	order: 0;
}
header .logo img{
	width: 90px;
	height: auto;
}


header .bt_entry{
	flex-basis:calc(100% - 185px);
	height: 100%;
	position: relative;
	z-index: 501;
	order: 1;
}
header .bt_entry a{
	background: var(--ELITE-NBLUE);
	font-size: 0.24rem;
	letter-spacing: 0.05em;
	color: #FFF;
	width: 100%;
	height: 100%;
	padding-bottom: 0.05em;
}


/*gnavBt
=============================*/
header #gnavBt {
	position: relative;
	top:0;
	right:0;
	z-index:500;
	order: 2;
}
header #gnavBt a{
	display: block;
	width: 70px;
	height: 70px;
	position: relative;
	background:#FFF;
}
/*▼gnavBtアニメ*/
header #gnavBtBorder{
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -18px;
	margin-top: -1px;
	display: block;
	width: 36px;
	height: 2px;
	background-color: var(--ELITE-NBLUE);
	-webkit-transition: -webkit-transform 0.3s ease, top 0.3s ease;
	transition: transform 0.3s ease, top 0.3s ease;
}
header #gnavBtBorder:before {
	top: -10px;
	content: "";
	display: block;
	width: 36px;
	height: 2px;
	background-color: var(--ELITE-NBLUE);
	position: absolute;
	z-index: -1;
	-webkit-transition: -webkit-transform 0.3s ease, top 0.3s ease, margin 0.2s ease;
	transition: transform 0.3s ease, top 0.3s ease, margin 0.2s ease;
}
header #gnavBtBorder:after {
	top: 10px;
	content: "";
	display: block;
	width: 36px;
	height: 2px;
	background-color: var(--ELITE-NBLUE);
	position: absolute;
	z-index: -1;
	-webkit-transition: -webkit-transform 0.3s ease, top 0.3s ease, margin 0.2s ease;
	transition: transform 0.3s ease, top 0.3s ease, margin 0.2s ease;
}
header #gnavBt a.open #gnavBtBorder {
	background: none;
}
header #gnavBt a.open #gnavBtBorder:before {
	top:0 !important;
	margin-top: 0 !important;
	-webkit-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	transform:rotate(45deg)
}
header #gnavBt a.open #gnavBtBorder:after {
	top:0 !important;
	margin-top: 0 !important;
	-webkit-transform:rotate(-45deg);
	-ms-transform:rotate(-45deg);
	transform:rotate(-45deg)
}

/*gnav ani
=============================*/
nav#gnav {
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 200;
	background: rgba(255,255,255,1);
	display: none;
	/*SP メニュースクロール用*/
	overflow: auto;/* togglemodal使う場合*/
	-webkit-overflow-scrolling: touch;/*togglemodal使う場合は使用禁止*/
	/*font-size:0;*//*SPグロナビ中央寄せ*/
	padding-top: 70px;
}
/*SPグロナビ中央寄せ*/
/*
nav#gnav::before{
	content: '';
	display:inline-block;
	width: 0;
	height: 100%;
	vertical-align: middle;
}*/
nav#gnav > .inner{
	/*display: inline-block;
	vertical-align: middle;*/
	width: 100%;
	padding: 60px 0;
}

nav#gnav.opening {
	display: block;
	-webkit-animation: opening 0.8s ease 0s 1 normal both;
	animation: opening 0.8s ease 0s 1 normal both;
}
nav#gnav.opened{display: block;}

nav#gnav.closing {
	display: block;
	-webkit-animation: closing 0.25s ease 0s 1 normal both;
	animation: closing 0.25s ease 0s 1 normal both;
}
nav#gnav.closed{display: none;}


@-webkit-keyframes opening {
	0% {
		-moz-perspective:1300px;
		-webkit-perspective: 1300px;
				perspective: 1300px;
		-webkit-transform: scale(1.5);
		-ms-transform: scale(1.5);
			transform: scale(1.5);
		filter: alpha(opacity=000);
		opacity: 0.0;
	}
	100% {
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
			transform: scale(1.0);
		filter: alpha(opacity=100);
		opacity: 1.0;
	}
}
@keyframes         opening {
	0% {
		-moz-perspective:1300px;
		-webkit-perspective: 1300px;
				perspective: 1300px;
		-webkit-transform: scale(1.5);
		-ms-transform: scale(1.5);
			transform: scale(1.5);
		filter: alpha(opacity=000);
		opacity: 0.0;
	}
	100% {
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
			transform: scale(1.0);
		filter: alpha(opacity=100);
		opacity: 1.0;
	}
}

@-webkit-keyframes closing {
	0% {
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
			transform: scale(1.0);
		filter: alpha(opacity=100);
		opacity: 1.0;
	}
	100% {
		-moz-perspective:1300px;
		-webkit-perspective: 1300px;
				perspective: 1300px;
		-webkit-transform: scale(1.5);
		-ms-transform: scale(1.5);
			transform: scale(1.5);
		filter: alpha(opacity=000);
		opacity: 0.0;
	}
}
@keyframes         closing {
	0% {
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
			transform: scale(1.0);
		filter: alpha(opacity=100);
		opacity: 1.0;
	}
	100% {
		-moz-perspective:1300px;
		-webkit-perspective: 1300px;
				perspective: 1300px;
		-webkit-transform: scale(1.5);
		-ms-transform: scale(1.5);
			transform: scale(1.5);
		filter: alpha(opacity=000);
		opacity: 0.0;
	}
}

/*
nav#gnav {
	visibility: hidden;
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	z-index: 200;
	-moz-perspective:1300px;
	-webkit-perspective: 1300px;
			perspective: 1300px;
	-webkit-transform: scale(1.5);
	-ms-transform: scale(1.5);
		transform: scale(1.5);
	filter: alpha(opacity=000);
	opacity: 0.0;
}
nav#gnav.opening {
	-webkit-transition: all 0.8s ease;
			transition: all 0.8s ease;
}
nav#gnav.opened {
	visibility: visible;
	-webkit-transform: scale(1.0);
	-ms-transform: scale(1.0);
		transform: scale(1.0);
	filter: alpha(opacity=100);
	opacity: 1.0;
}
*/

/*
#gmenu li ul.subMenu{
	position: absolute;
	top:46px;
	left:0;
	text-align: left;
	background: #FFF;
	width: 210px;
	overflow: hidden;
	max-height: 0;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
#gmenu li.open ul.subMenu{
	max-height :350px;
	-webkit-transition: all 0.75s ease-out;
	-moz-transition: all 0.75s ease-out;
	-ms-transition: all 0.75s ease-out;
	-o-transition: all 0.75s ease-out;
	transition: all 0.75s ease-out;
}
*/


header #gmenu{
}
header #gmenu > li{text-align: center;}
header #gmenu > li:nth-child(n+2){
	margin-top: 2.5em;
}
header #gmenu > li > a{
	color: var(--ELITE-NBLUE);
	font-size: 0.25rem;
	letter-spacing: 0.05em;
	padding: 0 0.25em;
}
header #gmenu > li > a.txtLink::before,
header #gmenu > li > a.txtLink::after {
	padding: 0 0.25em;
}
header #gmenu > li > a .bb{
	position: relative;
}
header #gmenu > li > a .bb::before{
	content: '';
	display: block;
	position: absolute;
	bottom:0;
	left:-0.25em;
	width: 0;
	height: 5px;
	background: #f7b149;
	mix-blend-mode:multiply;
	isolation: isolate;
	-webkit-border-radius: 9999px;
	border-radius: 9999px;
	-webkit-transition: width 0.25s ease;
	transition: width 0.25s ease;
}
header #gmenu > li > a:active .bb::before,
.joy5 #gmenu li:nth-child(2) a .bb::before,
.workstyle #gmenu li:nth-child(3) a .bb::before,
.career #gmenu li:nth-child(4) a .bb::before,
.flow #gmenu li:nth-child(5) a .bb::before{
	width: calc(100% + 0.5em);
}


/*=============================
  footer
=============================*/
footer{
	padding: 60px 0 40px;
	background: #FFF;
	position: relative;
	z-index: 1;
}
footer .bt_entry{padding: 0 20px;}
footer .bt_entry a{
	background: var(--ELITE-NBLUE);
	font-size: 0.24rem;
	letter-spacing: 0.05em;
	color: #FFF;
	width: 100%;
	height: 70px;
	isolation: isolate;
	-webkit-border-radius: 9999px;
	border-radius: 9999px;
	padding-bottom: 0.05em;
}

footer #fmenu{
	margin-top: 55px;
}
footer #fmenu > li{text-align: center;}
footer #fmenu > li:nth-child(n+2){
	margin-top: 2em;
}
footer #fmenu > li > a{
	color: var(--ELITE-NBLUE);
	font-size: 0.17rem;
	letter-spacing: 0.05em;
}


footer .logo {
	text-align: center;
	margin-top: 55px;
}
footer .logo img{
	width: 185px;
	height: auto;
}
footer .txt {
	text-align: center;
	margin-top: 25px;
	font-size: 0.15rem;
	letter-spacing: 0.05em;
	color: var(--ELITE-NBLUE);
}
footer .addr {
	text-align: center;
	margin-top: 1em;
	font-size: 0.15rem;
	letter-spacing: 0.05em;
}
footer .addr a{
	color: var(--ELITE-NBLUE);
}

footer .copyRight{
	text-align: center;
	margin-top: 40px;
	font-size: 0.13rem;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: var(--ELITE-NBLUE);
}
/*=============================
  カルーセル
=============================*/
/*
.carouselArea{
	position: relative;
}
.carouselArea .caroufredsel_wrapper {
	overflow: hidden;
}
.carouselArea .carousel img{
	display: block;
	float: left;
}
.carouselArea .prev{
	position: absolute;
	top:205px;
	left:0;
}
.carouselArea .next{
	position: absolute;
	top:205px;
	right:0;
}
.carouselArea .pager {
	text-align: center;
}
.carouselArea .pager a {
	background: url(../images/bt_pager_off.png) no-repeat;
	text-decoration: none;
	text-indent: -999px;
	display: inline-block;
	overflow: hidden;
	width: 20px;
	height: 20px;
	margin: 0 5px;
}
.carouselArea .pager a:active,
.carouselArea .pager a.selected {
	background: url(../images/bt_pager_on.png) no-repeat;
}
*/

/*=============================
  etc
=============================*/
/*PC/スマホ縦
@media only screen and (orientation:portrait) {

}*/
/*PC/スマホ横
@media only screen and (orientation:landscape) {

}
*/
/*ボタン
ul.linkBtList{
	text-align: center;
}
ul.linkBtList li{
	display: inline-block;
	width: 320px;
	height: 60px;
	margin: 0px 30px;
}
ul.linkBtList li:first-child{margin-left: 0;}
ul.linkBtList li:last-child {margin-right: 0;}
ul.linkBtList li a{
	display: block;
	padding: 15px 0px;
	color: #FFF;
	font-size: 20px;
	font-weight: bold;
	background: #006469;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	text-decoration: none;
	position: relative;
}*/
	/*IE10以降に適用されるCSSハック（一応）*/
	/*@media all and (-ms-high-contrast:none){
		ul.linkBtList li a{
			padding: 18px 0px 12px 0px;
		}
	}*/

/*三角
ul.linkBtList li a::after{
	content: '';
	position: absolute;
	top:50%;
	right: 15px;
	margin-top: -8px;
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-left: 8px solid #E5EA0A;
}*/

/*下線付きタイトル
.borderTit{
	font-size: 28px;
	color: #006469;
	padding-bottom: 20px;
	margin-bottom: 40px;
	text-align: center;
	position: relative;
}
.borderTit::after{
	content:'';
	position: absolute;
	bottom:0;
	left:50%;
	width: 70px;
	height: 1px;
	background: #666;
	margin-left: -35px;
}*/




	/*arrow
	content: '';
	position: absolute;
	top:50%;
	left: 0px;
	margin-top: -4px;
	width: 0;
	height: 0;
	border: 4px solid transparent;
	border-left: 6px solid #FFF;
	*/
	/*基準点
	-moz-transform-origin: 0% 0%;
	-webkit-transform-origin: 0% 0%;
	-o-transform-origin: 0% 0%;
	-ms-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
	*/
	/*回転
	-moz-transform: rotate(-20deg);
	-webkit-transform: rotate(-20deg);
	-o-transform: rotate(-20deg);
	-ms-transform: rotate(-20deg);
	transform: rotate(-20deg);
	*/
	/*アニメーション
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	*/
	/*角丸
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	
	-webkit-border-radius: 0px 0px 5px 5px / 0px 0px 5px 5px;
	-moz-border-radius: 0px 0px 5px 5px / 0px 0px 5px 5px;
	border-radius: 0px 0px 5px 5px / 0px 0px 5px 5px;
	*/
	/*テキストシャドウ
	-moz-text-shadow:0px 0px 3px #666;
	-webkit-text-shadow:0px 0px 3px #666;
	text-shadow:0px 0px 3px #666;
	*/
	/*flex
	-js-display: flex;
	display: -webkit-flex;
	display: flex;
	*/
	/*テキスト行揃え
	text-align: justify;
	-ms-text-justify: inter-ideograph;
	text-justify: inter-ideograph;
	*/
	/*テキスト改行しない
	white-space: nowrap;
	*/

	/*キーフレーム
	{
	animation: ani1 0.25s linear 0s 1 normal both;
	animation-name アニメーション名 複数指定する場合はカンマ（,）区切り 名が長いとIEで不可
	animation-duration 時間
	animation-timing-function linear ease ease-in ease-out
	animation-delay 時間
	animation-iteration-count 回数 infinite
	animation-direction normal 正転 alternate 正転、反転
	animation-fill-mode:再生後のスタイル
	backwards 最初のキーフレーム（0%）
	forwards 最後のキーフレーム（100%）
	both 最後のキーフレーム（100%） delay指定中は（0%）

	//delay
	//-webkit-animation-delay: 0.5s;
	//animation-delay: 0.5s;

	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	//r実行中のアニメーションを一時停止できる。//running paused
	animation-play-state: paused;
	//animation-timingのcubic-bezier
	//https://matthewlein.com/tools/ceaser
	/*http://easings.net/ja
	//easeOutCubic cubic-bezier(0.215, 0.610, 0.355, 1.000);
	//easeInOutExpo cubic-bezier(1.000, 0.000, 0.000, 1.000);

	-webkit-animation-name: scroll;
	animation-name: scroll;
	}
@-webkit-keyframes scroll {from {top:-35px;} to {top:35px;}}
@keyframes         scroll {from {top:-35px;} to {top:35px;}}
又は
@-webkit-keyframes scroll {
	0% {width: 0;}
	100% {width: 100%;}
}
@keyframes         scroll {
	0% {width: 0;}
	100% {width: 100%;}
}

*/
/*改行させない
	white-space: nowrap;
*/
/*上下中央01
.sample6Wrap{
	width: 100%;
	height: 100%;
	position: relative;
}
.sample6Wrap .sample6{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100px;
	height: 100px;
}
*/
/*上下中央02（CSS3高さ幅不明で使用可）
	position: relative;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
*/


/*
slack Full
#main{
	height:100vh !important;
	min-height: 700px;
	position: relative;
}
#main .slick,
#main .slick .slick-list,
#main .slick .slick-list *{
	height: 100%;
}
#main .slick .main_ph01{background: url(../img/top/main_ph01.jpg) no-repeat center center/cover;}
#main .slick .main_ph02{background: url(../img/top/main_ph02.jpg) no-repeat center center/cover;}
#main .slick .main_ph03{background: url(../img/top/main_ph03.jpg) no-repeat center center/cover;}

slick ボタン
.slick_bt a{
	display: block;
	width: 36px;
	height: 36px;
}
.slick_bt a.slick-hidden{
	display: none;
}
.slick_bt a.slick_prev{background: url(../img/bt_prev.svg) no-repeat center center/contain;}
.slick_bt a.slick_next{background: url(../img/bt_next.svg) no-repeat center center/contain;}

slick dots
.slick-dots{
	position: absolute;
	bottom: 50px;
	left:0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 10;
	font-size: 0;
}
.slick-dots li{
	position: relative;
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}
.slick-dots li button{
	font-size: 0;
	line-height: 0;
	display: block;
	width: 6px;
	height: 6px;
	padding: 3px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: none;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,0.4);
}
.slick-dots li button:active,
.slick-dots li.slick-active button{
	border: 2px solid rgba(255,255,255,1);
	background: #FFF;
}

//ズームフェード版CSS
.slide-animation{
	animation: fadezoom 10s linear 0s 1 normal both;
}
@keyframes fadezoom {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.2);
	}
}
簡易カルーセル（ズームフェード）


.carouselArea ul.carousel{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
	z-index: 2;
}
.carouselArea ul.carousel li{
	position:absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	opacity: 0;
}


.carouselArea ul.carousel li.pre{
	opacity: 1;フェードイン
	animation: opHide 3s ease 0s 1 normal both;クロスフェード
	z-index: 5;
}
.carouselArea ul.carousel li.current{
	animation: opShow 3s ease 0s 1 normal both;
	z-index: 10;
}
beforeだとEdgeでガタガタする。span入れること。
.carouselArea ul.carousel li span{
	content: '';
	display: block;
	position:absolute;
	top: -100%;
	left: -100%;
	right: -100%;
	bottom: -100%;
	margin: auto;
	width: 100%;
	height: 100%;
	-webkit-transform:scale(1.1);
			transform:scale(1.1);
	z-index: 1;
}
.carouselArea ul.carousel li#kv01 span{ background: url() no-repeat center center/cover;}

.carouselArea ul.carousel li.pre span,
.carouselArea ul.carousel li.current span{
	animation: zoomAni 11s linear 0s 1 normal both;
}

@-webkit-keyframes opShow {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes         opShow {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-webkit-keyframes opHide {
	0% {opacity: 1;}
	100% {opacity: 0;}
}
@keyframes         opHide {
	0% {opacity: 1;}
	100% {opacity: 0;}
}
@-webkit-keyframes zoomAni {
	0% {
		-webkit-transform:scale(1.1);
		        transform:scale(1.1);
	}
	100% {
		-webkit-transform:scale(1.0);
		        transform:scale(1.0);
	}
}
@keyframes         zoomAni {
	0% {
		-webkit-transform:scale(1.1);
		        transform:scale(1.1);
	}
	100% {
		-webkit-transform:scale(1.0);
		        transform:scale(1.0);
	}
}

*/