@charset "UTF-8";


/*---背景色---*/
.Bg_Green{
	height: 120px;
	background: #a3d6ce;
	padding:0;
}

/*---見だし---*/
#Heading{
	height: 120px;
	background: url(../img/tit_01.png) no-repeat;
	background-size: 120px;
	position: relative;
	top: 20px;
	font-size: 48px;
	padding: 8px 0px 0px 150px;
}

.Title_01{
	width: 100%;
	font-size: 18px;
	font-weight: bold;
	padding: 10px 0px 6px 20px;
	background: #f8e2c3;
	color: #000;
}

/*---サービスショップ---*/
.shop_tit01{
	background-color: #46b1c4;
	color: #fff;
	font-size: 24px;
	text-align: center;
	padding: 16px 0;
}

.shop_tit02{
	background-color: #8ac446;
	color: #fff;
	font-size: 24px;
	text-align: center;
	padding: 16px 0;
}

.shop_tit03{
	background-color: #fb9b46;
	color: #fff;
	font-size: 24px;
	text-align: center;
	padding: 16px 0;
}

.shop_tit04{
	background-color: #ef6d88;
	color: #fff;
	font-size: 24px;
	text-align: center;
	padding: 16px 0;
}

.shop_cont {
	background: #fff;
	padding:40px;
}

/*---ボタン（茂原市エリア）---*/
.button_shop01 {
	display: inline-block;
	position: relative;
	z-index: 2;
	width: 100%;
	height: 60px;
	text-align: center;
	text-decoration: none;
	border: 1px solid #fff;
	background-color: #70d7e9;
	color: #fff;
	line-height: 60px;
	overflow: hidden;
	font-size: 18px;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
}

.button_shop01::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: #58cbdf;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .5s;
}
.button_shop01:hover {
	color: #fff;
}
.button_shop01:hover::before {
	transform-origin: 0% 50%;
	transform: scaleX(1);
}

/*---ボタン（市原エリア）---*/
.button_shop02 {
	display: inline-block;
	position: relative;
	z-index: 2;
	width: 100%;
	height: 60px;
	text-align: center;
	text-decoration: none;
	border: 1px solid #fff;
	background-color: #a3e15a;
	color: #fff;
	line-height: 60px;
	overflow: hidden;
	font-size: 18px;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
}

.button_shop02::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #94d34a;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .5s;
}
.button_shop02:hover {
	color: #fff;
}
.button_shop02:hover::before {
	transform-origin: 0% 50%;
	transform: scaleX(1);
}

/*---ボタン（千葉エリア）---*/
.button_shop03 {
	display: inline-block;
	position: relative;
	z-index: 2;
	width: 100%;
	height: 60px;
	text-align: center;
	text-decoration: none;
	border: 1px solid #fff;
	background-color: #fba75d;
	color: #fff;
	line-height: 60px;
	overflow: hidden;
	font-size: 18px;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
}

.button_shop03::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #fa9a45;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .5s;
}
.button_shop03:hover {
	color: #fff;
}
.button_shop03:hover::before {
	transform-origin: 0% 50%;
	transform: scaleX(1);
}

/*---ボタン（八千代エリア）---*/
.button_shop04 {
	display: inline-block;
	position: relative;
	z-index: 2;
	width: 100%;
	height: 60px;
	text-align: center;
	text-decoration: none;
	border: 1px solid #fff;
	background-color: #f78ba2;
	color: #fff;
	line-height: 60px;
	overflow: hidden;
	font-size: 18px;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
}

.button_shop04::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #f9738f;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .5s;
}
.button_shop04:hover {
	color: #fff;
}
.button_shop04:hover::before {
	transform-origin: 0% 50%;
	transform: scaleX(1);
}

/*---ショップからのお知らせ---*/
#Info_box {
	padding: 40px 0 80px;
	width: 100%;
	background-color: #fff;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

#Info_box .Cont {
	width: 80%;
	margin:0 auto;
	padding:20px 0 40px;
	border-bottom:1px dotted #000;
}

/*---PDFリンク---*/
.box {
	cursor: pointer;
	max-width: 800px;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: auto;
	margin: 10px auto 0;
	border: 1px solid #dcdcdc;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}

.box a {
	display: block;
	color: #000;
	text-decoration:none;
	padding:0 0 20px;
}

.box:hover {
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1), 0 0 50px rgba(128, 128, 128, 0.1) ;
	border: 1px solid #dcdcdc;
}

/*---画像 hover---*/
.img-wrapper {
	cursor: pointer;
	max-width: 1000px;
	overflow: hidden;
	width: 100%;
}
.img-wrapper img {
	height: auto;
	transition: transform .6s ease;/* ゆっくり変化させる */
}
.box:hover .img-wrapper img {
	transform: scale(1.1);/* 拡大 */
}

/*---ボタン---*/
.btn_pdf {
	display: inline-block;
	position: relative;
	z-index: 2;
	width: 60%;
	height: 40px;
	text-align: center;
	text-decoration: none;
	background-color: #fd9b3d;
	color: #fff;
	line-height: 40px;
	overflow: hidden;
	font-size: 16px;
	margin-top: 24px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}

.btn_pdf::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #fd8023;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .5s;
}
.box:hover .btn_pdf {
	color: #fff;
}
.box:hover .btn_pdf:before {
	transform-origin: 0% 50%;
	transform: scaleX(1);
}

/*---フェア・ショップ 2カラム---*/
.Fair_box {
	display: table;
	margin: 0px;
	padding: 20px;
	width: 100%;
	background-color: #fff;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

.Fair_box .box_left {
	float: left;
	display: table-cell;
	width: 30.9%;
}

.Fair_box .box_right {
	float: left;
	display: table-cell;
	width: 64.9%;
}

.Fair_box .box_center {
	float: left;
	display: table-cell;
	width: 4.2%;
}

@media screen and (max-width:767px){

	/*---幅・マージン調整---*/
	.Fair_box {
		display: table;
		margin: 0px;
		padding: 6px;
		width: 100%;
		background-color: #fff;
		border-radius: 5px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
	}
	
	.Fair_box .box_left {
		float: left;
		display: table-cell;
		width: 18%;
	}
	
	.Fair_box .box_right {
		float: left;
		display: table-cell;
		width: 80%;
	}
	
	.Fair_box .box_center {
		float: left;
		display: table-cell;
		width: 2%;
	}

}

/*---お知らせ---*/
.Event_Topic {
	width: 96%;
	margin:0 auto;
	padding:30px 0;
	border-bottom:1px dotted #000;
	font-size: 20px;
}

.Date {
	width: 480px;
	float: left;
}

/*---アコーディオン---*/
.s_01 .accordion_one {
	max-width: 96%;
	margin: 0 auto;
}
.s_01 .accordion_one .accordion_header {
	background-color: #46b1c4;
	border-top: 1px solid #fff;
	color: #fff;
	font-size: 19px;
	padding: 16px 11%;
	text-align: center;
	position: relative;
	z-index: +1;
	cursor: pointer;
	transition-duration: 0.2s;
}
.s_01 .accordion_one:nth-of-type(2) .accordion_header {
	background-color: #8ac446;
	border-top: 1px solid #fff;
}
.s_01 .accordion_one:nth-of-type(3) .accordion_header {
	background-color: #fb9b46;
	border-top: 1px solid #fff;
}
.s_01 .accordion_one:nth-of-type(4) .accordion_header {
	background-color: #ef6d88;
	border-top: 1px solid #fff;
}
.s_01 .accordion_one .accordion_header:hover {
	opacity: .8;
}
.s_01 .accordion_one .accordion_header .i_box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 3%;
	width: 26px;
	height: 26px;
	border: 1px solid #fff;
	margin-top: -13px;

}
.s_01 .accordion_one .accordion_header .i_box .one_i {
	display: block;
	width: 16px;
	height: 16px;
	position: relative;
}

.s_01 .accordion_one .accordion_header .i_box .one_i:before, .s_01 .accordion_one .accordion_header .i_box .one_i:after {
	display: flex;
	content: '';
	background-color: #fff;
	border-radius: 10px;
	width: 16px;
	height: 4px;
	position: absolute;
	top: 6px;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transform-origin: center center;
}
.s_01 .accordion_one .accordion_header .i_box .one_i:before {
	width: 4px;
	height: 16px;
	top: 0;
	left: 6px;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:before {
	content: none;
}
.s_01 .accordion_one .accordion_inner {
	background-color: #fff;
	display: none;
	padding: 30px 30px;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	box-sizing: border-box;
}
.s_01 .accordion_one:nth-of-type(2) .accordion_inner {
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.s_01 .accordion_one:nth-of-type(3) .accordion_inner {
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.s_01 .accordion_one:nth-of-type(4) .accordion_inner {
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.s_01 .accordion_one .accordion_inner .box_one {
	height: auto;
}
.s_01 .accordion_one .accordion_inner p.txt_a_ac {
	margin: 0;
}
@media screen and (max-width: 100%) {
	.s_01 .accordion_one .accordion_header {
		font-size: 14px;
	}
	.s_01 .accordion_one .accordion_header .i_box {
		width: 30px;
		height: 30px;
		margin-top: -15px;
	}
}
@media screen and (max-width: 767px) {
	.s_01 .accordion_one .accordion_header {
		font-size: 14px;
		text-align: left;
		padding: 15px 60px 15px 15px;
	}
	.s_01 .accordion_one .accordion_inner {
		padding: 10px 10px;
	}
}

/* !Fonts -------------------------------------------------------------- */
.fcRed { color: #ff0000;}
.fcOrange { color: #ff9900;}

/* ▼768px以下の場合に適用（iPad portrait以下）
---------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {

	.Bg_Green {
		height: 50px;
		background: #a3d6ce;
		padding:0;
		margin-bottom:20px;
	}
	
	#Heading {
		height: 60px;
		background: url(../img/tit_01.png) no-repeat left top;
		background-size: 60px;
		font-size: 18px;
		padding: 4px 0px 0px 70px;
		position: relative;
		top: 8px;
	}

	.Title_01 {
		width: 100%;
		font-size: 16px;
		font-weight: bold;
		padding: 4px 0px 0px 10px;
		background: #f8e2c3;
		color: #000;
	}

	/*---お知らせ---*/
	.Event_Topic {
		width: 96%;
		margin:0 auto;
		padding:10px 0;
		border-bottom:1px dotted #000;
		font-size: 14px;
	}
	
	.Date {
		width: 100%;
	}

	/*---サービスショップ---*/
	.shop_tit01{
		background-color: #46b1c4;
		color: #fff;
		font-size: 18px;
		text-align: center;
		padding: 6px 0;
	}

	.shop_tit02{
		background-color: #8ac446;
		color: #fff;
		font-size: 18px;
		text-align: center;
		padding: 6px 0;
	}

	.shop_tit03{
		background-color: #fb9b46;
		color: #fff;
		font-size: 18px;
		text-align: center;
		padding: 6px 0;
	}

	.shop_tit04{
		background-color: #ef6d88;
		color: #fff;
		font-size: 18px;
		text-align: center;
		padding: 6px 0;
	}

	.shop_cont {
		background: #fff;
		padding:10px;
	}

	/*---ボタン（茂原市エリア）---*/
	.button_shop01 {
		display: inline-block;
		position: relative;
		z-index: 2;
		width: 100%;
		height: 32px;
		text-align: center;
		text-decoration: none;
		border: 1px solid #fff;
		background-color: #70d7e9;
		color: #fff;
		line-height: 32px;
		overflow: hidden;
		font-size: 14px;
		border-radius: 30px;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
	}

	/*---ボタン（市原エリア）---*/
	.button_shop02 {
		display: inline-block;
		position: relative;
		z-index: 2;
		width: 100%;
		height: 32px;
		text-align: center;
		text-decoration: none;
		border: 1px solid #fff;
		background-color: #a3e15a;
		color: #fff;
		line-height: 32px;
		overflow: hidden;
		font-size: 14px;
		border-radius: 30px;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
	}

	/*---ボタン（千葉エリア）---*/
	.button_shop03 {
		display: inline-block;
		position: relative;
		z-index: 2;
		width: 100%;
		height: 32px;
		text-align: center;
		text-decoration: none;
		border: 1px solid #fff;
		background-color: #fba75d;
		color: #fff;
		line-height: 32px;
		overflow: hidden;
		font-size: 14px;
		border-radius: 30px;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
	}

	/*---ボタン（八千代エリア）---*/
	.button_shop04 {
		display: inline-block;
		position: relative;
		z-index: 2;
		width: 100%;
		height: 32px;
		text-align: center;
		text-decoration: none;
		border: 1px solid #fff;
		background-color: #f78ba2;
		color: #fff;
		line-height: 32px;
		overflow: hidden;
		font-size: 14px;
		border-radius: 30px;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
	}

	/*---ショップからのお知らせ---*/
	#Info_box {
		padding: 0px 0 20px;
		width: 100%;
		background-color: #fff;
		border-radius: 5px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
	}

	#Info_box .Cont {
		width: 90%;
		margin:0 auto;
		padding:16px 0 20px;
		border-bottom:1px dotted #000;
	}

	/*---PDFリンク---*/
	.box a {
		display: block;
		color: #000;
		text-decoration:none;
		padding:0 0 10px;
	}

	/*---ボタン---*/
	.btn_pdf {
		display: inline-block;
		position: relative;
		z-index: 2;
		width: 60%;
		height: 32px;
		text-align: center;
		text-decoration: none;
		background-color: #fd9b3d;
		color: #fff;
		line-height: 32px;
		overflow: hidden;
		font-size: 14px;
		margin-top: 14px;
		border-radius: 6px;
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
	}

}
