@charset "UTF-8";
/* CSS Document */
/*=======================================
  共　通
=======================================*/
/*SP用共通明朝さわらびフォント
@import url(https://fonts.googleapis.com/earlyaccess/sawarabimincho.css);
font-family: "Sawarabi Mincho", serif;

Google Fonts + 日本語
https://googlefonts.github.io/japanese/

iPhoneで@importによるフォント指定が利かない
読み込みは<link>で行うこと
*/
/*SVG使用の際の注意点
backgroundで使用するばあい、IEでsvgのルートにwitdh,heightが
設定されていないと、background-positionで崩れる

SVGの比率を変更できるようにするには、SVGのルートに以下を記載
preserveAspectRatio="none"
*/
/*=============================
ブラウザ別フォントファイルフォーマット
woff:IE9以降多くのブラウザでサポート（IE8以前はEOT）
opentype:Android4.3など
src: url('xxx.eot'); IE9以上用
src: url('xxx.eot?#iefix') format('embedded-opentype'), IE8以前用
url('xxx.woff') format('woff'), モダンブラウザ用
url('xxx.ttf') format('truetype'); iOS, Android用
url('xxx.otf') format('opentype'); iOS, Android用
=============================*/


/*=============================
ベースはコレbodyに設定
=============================*/
/*
font-family:"SourceHanSans-Regular", sans-serif;
font-weight: 400;
*/


html {
	background:#fff;
	color:#000;
	font-size: 625%;/*rem用100px*/
	/*scrollbar hidden*/
	/*-ms-overflow-style: none;*//* IE, Edge 対応 */
	/*scrollbar-width: none;*//* Firefox 対応 */
}
/*scrollbar hidden*/
html::-webkit-scrollbar {/* Chrome, Safari 対応 */
	/*display:none;*/
}
html.lock{
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
}
body{
	/*font-size:12px;*/
	font-size: 0.12em;/*rem用12px 以下rem chrome対策でem 以下fontsizeはremで1/100指定*/
	/*font-family: 'Noto Sans JP', sans-serif;*//*Regular 400 Bold 700*/
	/*font-weight: 400;*/
	/*font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
	font-family:"游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic","Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 500; /*win游ゴシック汚れ対策*/
	/*font-family: "游明朝",'Yu Mincho', YuMincho, "ヒラギノ明朝 Pro W6","Hiragino Mincho Pro","HG明朝E","ＭＳ Ｐ明朝",serif;*/
	/*HG明朝Eは13pxからアンチエイリアス、ただoffice2000以降が入ってないと表示されない。HG明朝Bもある"
	游明朝はMac*/
	line-height:1.0;
	letter-spacing:0px;
	-webkit-text-size-adjust: 100%;/*スマホ文字拡大対策*/
}
	/*IE10以降に適用されるCSSハック（一応）*/
	/*@media all and (-ms-high-contrast:none){
	}*/
/*
Win10 Edgeは文字余白は他ブラウザと変わらない。
Win7 IE+Win10IEの遊ゴシック余白は同じ。
遊ゴシック対策はIE向けとWin7MSゴシックでOK

游明朝注意
Win8.1以降
weight 100–300: Light
weight 400: Regular ←細い
weight 500–900: Demibold

Mac
weight 100–500: Medium ←ちょうどいい
weight 600: Demibold
weight 700–900: Extrabold（boldだとコレ 太すぎ）

游ゴ朝注意
Win8.1以降
weight 100–300: Light
weight 400-500: Regular ←細い
weight 600-: bold

Mac
weight 100–500: Medium ←ちょうどいい
weight 600: Demibold(winのbold程度)
weight 700–900: Extrabold（boldだとコレ 太すぎ）

游明朝はboldだとmacで太すぎ
win bold MAC nomalがちょうどいい
*/
/* --A-- */
a {
	cursor:pointer;
	text-decoration:none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);/*リンクタップ時のハイライト表示無効*/
}
a:hover {
	text-decoration:underline;
}
/* --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_b{
	-js-display: flex;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}
.vmf_ib{
	-js-display: inline-flex;
	display: -webkit-inline-flex;
	display: inline-flex;
	justify-content: center;
	align-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{
	opacity: 1;
	-webkit-transition: opacity 0.25s ease;
	transition: opacity 0.25s ease;
}
.opBtf a,
.opBtf a *{
	backface-visibility: hidden;/*chrome transition 1pxズレ対策*/
}
.opBtf a:not(.noLink):hover{
	opacity: 0.5;
	-webkit-transition: opacity 0.35s ease;
	transition: opacity 0.35s ease;
}
/*
.opBtf a.op{
	opacity: 0.5;
	-webkit-transition: opacity 0.35s ease;
	transition: opacity 0.35s ease;
}*/
/*
.imgOpBt a:hover img{
	opacity:0.65;
	-moz-opacity:0.65;
	-khtml-opacity:0.65;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); For IE 5-7
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)"; For IE 8
}*/


#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;}
.sp{display: none !important;}
/*.pc{display: none !important;}*/

.noEvent{pointer-events:none;}/*IE11以降（IE11ではaタグには利かない）*/
.wrapper{overflow: hidden;}


/*=============================
  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;
}
.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:hover,
.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);
	}
}

*/