
/*----横向き矢印のアニメーションここまで----*/

/* =====================================
ロゴとサイトマップのエリアをトップページのみ表示
========================================*/
/*#zone_header_flex{
	display: flex;
}
#zone_header_all {
	padding-top: 25px;
	height: 130px;
}
*/
/* =====================================
				パネル
========================================*/
/* パネル下の青い背景（PCのみ表示） */
.sitetop_background_01 {
	max-width: 1920px;
	width: 100%;
	background: url("../image/sitetop/bg-image.jpg");
	padding: 150px 0 50px 0;
	margin: 0 auto 0 auto;
	background-repeat: no-repeat;
	background-size: cover;
}
ul#sitetop_menupanel { /* パネルを３つ両端揃えに配置する */
	margin-top: -180px;
	margin: 0 auto;
	max-width: 1200px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	justify-content: center;
}
ul#sitetop_menupanel li {
	display: inline-block;
	width: 31%;
	margin: 0 10px 50px;
}
.sitetop_text{
	padding: 0 15px;
	margin: 80px auto 0 auto;
}
/*  ========== タブレット時・パネルの形を変える =========== */
@media (max-width: 650px) {
	.sitetop_text{
		font-size:0.9em;
		margin: 30px auto 0 auto;		
	}
}
.l_panel_wrap { /* 背景と白縁 */
	border: 5px solid white;
	box-shadow: 4px 4px 0px 1px rgba(160, 160, 160, 0.4);
	position: relative;
	text-align: center;
	height: 212px;
	margin: .5em 0;
}
.l_panel_title { /* パネル項目名　色以外の設定 */
	position: absolute;
	top: 0;
	bottom: 0;
	padding: 30px 5px 20px 5px;
	width: 38%;
	transition: .4s;
}
.l_panel_title img {
	/*max-widhtは直接指定*/
	width: 100%;
}
ul#sitetop_menupanel li:hover .l_panel_title { /* パネル項目名　色以外の設定 */
	width: 97%;
}
.sitetop_panel_sp { /* PCの時スマホ用画像を表示しない */
	display: none;
}
/* ============ここから各パネルの色設定 */
/* レッド */
.l_panel_wrap.red {
	background: url(../image/sitetop/panel-red.png);
	background-size: cover !important;
}
.l_panel_title.red {
	background-image: linear-gradient(135deg, rgba(193, 39, 45, 0.6) 0%, rgba(255, 42, 48, 0.6));
}
/* ブルー */
.l_panel_wrap.blue {
	background: url(../image/sitetop/panel-blue.png);
	background-size: cover !important;
}
.l_panel_title.blue {
	background-image: linear-gradient(135deg, rgba(46, 49, 146, 0.6) 0%, rgba(126, 202, 241, 0.6));
}
/* パープル */
.l_panel_wrap.purple {
	background: url(../image/sitetop/panel-purple.png);
	background-size: cover !important;
}
.l_panel_title.purple {
	background-image: linear-gradient(135deg, rgba(61, 21, 164, 0.6) 0%, rgba(206, 190, 241, 0.6));
}
/* ピンク */
.l_panel_wrap.pink {
	background: url(../image/sitetop/panel-pink.png);
	background-size: cover !important;
}
.l_panel_title.pink {
	background-image: linear-gradient(135deg, rgba(200, 38, 126, 0.6) 0%, rgba(254, 197, 222, 0.6));
}
/* ライトブルー */
.l_panel_wrap.lightblue {
	background: url(../image/sitetop/panel-lightblue.png);
	background-size: cover !important;
}
.l_panel_title.lightblue {
	background-image: linear-gradient(135deg, rgba(0, 169, 188, 0.6) 0%, rgba(139, 174, 164, 0.6));
}
/* イエロー */
.l_panel_wrap.yellow {
	background: url("../image/sitetop/panel-yellow.png");
	background-size: cover !important;
}
.l_panel_title.yellow {
	background-image: linear-gradient(135deg, rgba(217, 224, 33, 0.6) 0%, rgba(189, 179, 25, 0.6));
}
/*  ========== タブレット時・２つずつ並ぶ =========== */
@media (max-width: 920px) {
	ul#sitetop_menupanel li {
		width: 48%;
	}
/* パネル下の青い背景（PCのみ表示） */
.sitetop_background_01 {
	padding: 20px 0 0 0;
}	
}
/*  ========== タブレット時・パネルの形を変える =========== */
@media (max-width: 650px) {
	/* パネル下の青い背景（PCのみ表示） */
	.sitetop_background_01 {
		background-color: white;
	}
	ul#sitetop_menupanel {
		margin-top: 0;
		display: block; /*全体のflex解除*/
		padding: 0 15px;
	}
	ul#sitetop_menupanel li {
		width: 100%; /*パネルを各幅いっぱいに*/
		margin: 0;
		margin-bottom: -10px;
	}
	/*背景を右に移動*/
	.l_panel_wrap.red, .l_panel_wrap.yellow, .l_panel_wrap.blue, .l_panel_wrap.purple, .l_panel_wrap.pink, .l_panel_wrap.lightblue {
		background-position: right;
		background-repeat: no-repeat;
		background-size: contain;
		height: 180px;
		border: 1px solid #C8C8C8;
		box-shadow: none;
	}
	.l_panel_title { /*項目名*/
		width: 50%;
	}

}
/*  スマホ時パネル縮小 */
@media (max-width: 550px) {
	/*背景を右に移動*/
	.l_panel_wrap.red, .l_panel_wrap.yellow, .l_panel_wrap.blue, .l_panel_wrap.purple, .l_panel_wrap.pink, .l_panel_wrap.lightblue {
		height: 160px;
	}
	.l_panel_title {
		padding: 10px 5px 10px 5px;
		width: 37%;
	}
}
/* ============================
		以下スライダー
============================== */
.slider {
	width: 100%;
	margin: 0 auto;
}
.slick-slide img {
	max-width: 1920px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.mypattern {
	width: 100%;
}
.mypattern .slick-slide {
	margin: 0;
	outline: none;
}
.slick-dotted.slick-slider {
	margin-bottom: 0 !important;
}
@media (max-width: 768px) {
	.slick-dotted.slick-slider {
		margin-top: -30px;
		width: 100%;
	}
}
/*slick setting*/
.mypattern .slick-slide:not(.slick-center) {
	/*	-webkit-filter: opacity(60%);
	-moz-filter: opacity(60%);
	-o-filter: opacity(60%);
	-ms-filter: opacity(60%);
	filter: opacity(60%);*/
	transition: 0.2s linear;
}
/*slick setting*/
.slide-arrow {
	position: absolute;
	top: 50%;
	margin-top: -15px;
	z-index: 9;
	outline: none;
}