/*

▼共通認識
1.ec-cubeのスタイルは「ec-」で始まる。デフォルトのcssを編集すると、
　意外なところで不具合が起きるので基本編集しない。
　スタイルを打ち消す場合は「gc-」で始まる同名のソースをgluecode-xxx.cssに記述する。
2.gluecode-base.cssは、全体共通で使用するソース
3.gluecode-top.cssは、TOPページで使用するソース
4.gluecode-common.css、下層ページで使用するソース
5.スマホのブレイクポイントはデフォルトに合わせ「max-width:767px」
6.divなど大きい順番は block > box
7.iosでhoverがあるとタップ2回必要なバグがあるので、hoverは「min-width: 1025px」以上のみに適用する。
8.inputやselectなどのフォーム関連のソースはiphoneでは16px以上無いとズームしてしまう。
　使いづらいので、font-size: 1.6rem;以上に設定する。 transform: scale(0.8);を入れると吉。

*/


/* ---------------------------------------------------------------- */
/* common */
/* ---------------------------------------------------------------- */

html{font-size: 62.5%;}

body{
	font-family: "游ゴシック", YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	min-height: 100vh;
	color: #000;
	font-size: 14px;
	font-size: 1.4rem;
	background: #fff;
	min-width: 1200px;
	-webkit-text-size-adjust: 100%;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,figure{margin:0;padding:0;}

li {list-style: none;}
img {width: 100%;height: auto}
a {color: #484848;}
a:hover{text-decoration: none;color: #484848;}
a:focus{
	outline: none;
	color: inherit;
	text-decoration: none;
}
th{ font-weight: normal;}

h1, h2, h3, h4, h5, h6{margin: 0px; padding: 0px; font-weight: normal;}

footer .inner_box{
	position: relative;
	max-width: 1090px;
	margin: 0 auto;
	padding: 40px 0;
}

.common_base_block{display: block;}

.gc-blockTopBtn{
	right: 26px;
	bottom: 20px;
	width: 100px;
	height: 134px;
	text-align: center;
	line-height: normal;
	opacity: 1;
	background: url(../img/common/chara.png) no-repeat center bottom;
	background-size: 100px auto;
	z-index: 999;
}

.b_btn a,
a.b_btn {
	position: relative;
	display: block;
	color: #fff;
	padding: 18px 20px;
	background: #333;
	border-radius: 6px;
}
.b_btn a::after,
a.b_btn::after {
	position: absolute;
	display:inline-block;
	content:"\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	top: 50%;
	margin-top: -10px;
	right: 10px;
	transition: right .3s;
}
.b_btn a:hover::after,
a.b_btn:hover::after {
	right: 5px;
}

.txt_red{ color: #ff0000;}

.hovOp {
	transition: .3s;
	margin-bottom: 32px;
}
.hovOp:hover {
	opacity: .75;
}
@media print, screen and (max-width: 767px) {
	.hovOp {
		margin-bottom: 24px;
	}
}
.d-block {
	display: block!important;
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/html/template/default/assets/fonts/fa-regular-400.eot");
  src: url("/html/template/default/assets/fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("/html/template/default/assets/fonts/fa-regular-400.woff2") format("woff2"), url("/html/template/default/assets/fonts/fa-regular-400.woff") format("woff"), url("/html/template/default/assets/fonts/fa-regular-400.ttf") format("truetype"), url("/html/template/default/assets/fonts/fa-regular-400.svg#fontawesome") format("svg"); }

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400; }
.fa-window-restore:before {
  content: "\f2d2"; }

/* ----------------------------------------- */
/* Responsive */

@media print, screen and (max-width: 767px) {
	body {
		min-width: 0;
	}
	header,
	footer .inner_box{
		padding: 26px 3%;
	}

	.gc-blockTopBtn{
		right: 2%;
		bottom: 75px;
		width: 60px;
		height: 78px;
		background-size: 60px auto;
	}

	.b_btn{
		width: 70%;
		max-width: 600px;
	}
	.b_btn a {padding: 16px 4%;}
	.b_btn a:hover::after,
	a.b_btn:hover::after {
		right: 10px;
	}

}

@media print, screen and (max-width: 480px) {

	.b_btn a{
		width: 100%;
		font-size: 1.6rem;
		font-weight: bold;
		margin: 0px auto;
	}

}



/* ---------------------------------------------------------------- */
/* header */
/* ---------------------------------------------------------------- */

header {
	text-align: left;
	padding: 7px 0px 0px;
	margin-bottom: 46px;
}
.header_upper_block {
	border-bottom: 1px solid #EBEBEB;
	padding: 0 0 7px;
}
.header_upper_box {
	max-width: 1090px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.logo_text {
	font-size: 1.1rem;
	font-weight: 500;
	margin-right: 16px;
	padding: 1px 0 0 1px;
}
.header_info {
	margin: 0 0 1px auto;
	font-size: 1.1rem;
	font-weight: 500;
}
.header_info li {
	position: relative;
}
.header_info li + li {
	margin-left: 15.5px;
	padding-left: 16px;
}
.header_info li + li::before {
	content: '';
	display: block;
	width: 1px;
	position: absolute;
	top: 2px;
	bottom: 2px;
	left: 0;
	background: #CCC;
}
.header_info li a {
	transition: opacity .3s;
}
.header_info li a:hover {
	opacity: .6;
}

header .humberger_bg,
header .humberger_button{display: none;}

.header_lower_block {
	max-width: 1090px;
	margin: 0 auto;
	padding: 17px 0 18px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

header .logo {
	max-width: 232px;
	margin-right: 14px;
}
header .logo a {
	display: block;
	transition: opacity .3s;
}
header .logo a:hover {
	opacity: .6;
}

.header_shop_pr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header_shop_pr1 {
	width: 126px;
	height: 32px;
	margin: 0 10px 0 0;
	color: #EF5D1D;
	font-size: 12.5px;
	font-weight: bold;
	line-height: 1.3;
}
.header_shop_pr2 {
	width: 83px;
	height: 40px;
	margin: 0 9px 2px 0;
	text-indent: -999px;
	overflow: hidden;
	background: url(../img/common/hd_pr02.png) no-repeat;
}
.header_shop_pr3 {
	width: 51px;
	height: 49px;
	margin: 0 9px 0 0;
	text-indent: -999px;
	overflow: hidden;
	background: url(../img/common/hd_pr03.svg) no-repeat;
}

.header_speed {
	width: 80px;
	border: 1px solid #444;
	border-radius: 3px;
	font-size: 9px;
	font-weight: 500;
	padding: 3px 0 0;
	margin-bottom: 2px;
	text-align: center;
	white-space: nowrap;
}
.header_speed p {
	background: #444;
	color: #FFF;
	font-weight: bold;
	font-size: 1rem;
	margin-top: 2px;
	line-height: 1.3;
	padding: 1px 3px;
}
.header_speed p span {
	font-size: 1.5rem;
	vertical-align: -1px;
	margin: 0 3px;
}

.header_fax {
	font-size: 1.1rem;
	margin: 1px 0 0 auto;
	line-height: 1.3;
	font-weight: 500;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #484848;
	white-space: nowrap;
}
.header_fax span {
	font-size: 1.4rem;
	font-weight: bold;
}
.header_fax .fax_btn {
	width: 80px;
	margin: 0 0 3px 10px;
}
.header_fax .fax_btn a {
	display: block;
	padding: 8px 5px 7px;
	background: #484848;
	color: #FFF;
	text-align: center;
	border-radius: 4px;
	font-size: 1rem;
	transition: opacity .3s;
}
.header_fax .fax_btn a:hover {
	opacity: .6;
}

.header_subnav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	font-size: 1.1rem;
	margin: 0 0 1px 23px;
}
.header_subnav li + li {
	margin-left: 25px;
}
.header_subnav a {
	display: block;
	white-space: nowrap;
	transition: opacity .3s;
}
.header_subnav a:hover {
	opacity: .6;
}
.header_subnav .login a {
	display: block;
	background: url(../img/common/icon_login.svg) no-repeat center top;
	padding: 21px 0 0;
}
.header_subnav .favorite a {
	display: block;
	background: url(../img/common/icon_favorite.svg) no-repeat center top;
	padding: 21px 0 0;
}
.header_subnav .cart {
	margin-left: 35px;
}
.header_subnav .cart a {
	display: block;
	background: url(../img/common/icon_cart.svg) no-repeat 30% top;
	padding: 21px 0 0 3px;
	position: relative;
	white-space: nowrap;
}
.header_subnav .cart_badge {
	width: 14px;
	height: 14px;
	display: block;
	border-radius: 50%;
	border: 1px solid #BBB;
	position: absolute;
	top: -4px;
	right: 0;
	background: #FFF;
	color: #BBB;
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
}

.header_subnav div.header_sp {
	display: none;
}

/* ----------------------------------------- */
/* Responsive */

@media print, screen and (max-width: 767px) {
	header {
		margin-bottom: 0;
		padding: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.header_upper_block {
		width: 100%;
		background: #F0B60C;
		border-bottom: 0;
		padding: 16px 3%;
		order: 1;
	}
	.header_upper_box {
		display: block;
	}
	.logo_text,
	.header_info {
		display: none !important;
	}

	.header_lower_block {
		width: 100%;
		order: 0;
		padding: 5px 1% 0px 3%;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.header_shop_name_block {
		position: relative;
		width: 60%;
	}

	header .logo {
		width: auto;
		display: inline-block;
		padding-left: 38px;
		margin: 7px 0;
	}
	header .logo a:hover {
		opacity: 1;
	}

	.header_shop_pr {
		display: block;
		background: url(../img/common/hd_pr_sp.png) no-repeat 0 50% / contain;
		width: 16%;
		height: 42px;
		padding-top: 42px;
		margin: 0 auto;
	}
	.header_shop_pr1,
	.header_shop_pr2,
	.header_shop_pr3 {
		display: none;
	}

	.header_speed,
	.header_fax {
		display: none;
	}
	.header_subnav {
		width: 18%;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		padding: 5px .7% 5px 0;
		margin: 0;
	}
	.header_subnav li + li {
		margin-left: 0;
	}
	.header_subnav a:hover {
		opacity: 1;
	}
	.header_subnav a span {
		display: none;
	}
	.header_subnav .login {
		margin: 0 -10px;
	}
	.header_subnav .login a {
		display: block;
		width: 40px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		padding: 0;
		background: none;
		color: #333;
		font-size: 2rem;
		font-weight: 900;
		font-family: "Font Awesome 5 Free";
	}
	.header_subnav .login a.login_link::before {
		content: "\f2f6";
	}
	.header_subnav .login a.logout_link::before {
		content: "\f2f5";
	}
	.header_subnav div.header_pc {
		display: none;
	}
	.header_subnav div.header_sp {
		display: block;
	}
	.header_subnav .favorite {
		display: none;
	}
	.header_subnav .cart {
		margin-left: 0;
	}
	.header_subnav .cart a {
		background: none;
		border-radius: 0px;
		background: none;
		padding: 0px;
		width: 40px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		font-weight: 900;
		font-size: 2rem;
		font-family: "Font Awesome 5 Free";
		color: #48BC84;
	}
	.header_subnav .cart a::before {
		content: "\f07a";
	}
	.header_subnav .cart .cart_badge {
		display: inline-block;
		box-sizing: border-box;
		border: 0;
		width: 17px;
		height: 17px;
		font-size: 1rem;
		color: #fff;
		white-space: nowrap;
		background-color: #DE5D50;
		position: absolute;
		left: 56%;
		line-height: 17px;
		right: auto;
		top: 0;
		font-weight: bold;
	}

	header .humberger_bg {
		width: 100vw;
		height: 100vh;
		position: fixed;
		z-index: 500;
		background-color: rgba(0,0,0,0.8);
		display: none;
		top: 0;
		bottom:0 ;
		left: 0;
	}

	header .humberger_button {
		position: absolute;
		display: block;
		background: none;
		color: #333;
		width: 50px;
		height: 44px;
		border: none;
		padding: 0 0 0 5%;
		cursor: pointer;
		top: 0;
		left: -5%;
		z-index: 1520;
		outline: none;
	}
	header .humberger_button.active{
		position:fixed;
		height: 50px;
		top: 0;
		left: 85%;
	}
	header .humberger_button.active .humberger_bar1 {transform: translateY(13px) rotate(-45deg);}
	header .humberger_button.active .humberger_bar2 {opacity: 0;}
	header .humberger_button.active .humberger_bar3 {transform: translateY(-13px) rotate(45deg);}
	header .humberger_button .humberger_bar {
		display: block;
		background: #333;
		width: 20px;
		height: 2px;
		margin: 4px 0 0;
		transition: all 0.2s;
		transform-origin: 1px 1px;
		border-radius: 2px;
	}
	header .humberger_button.active .humberger_bar{width: 22px;background: #fff;}
}

/* ---------------------------------------------------------------- */
/* global_nav */
/* ---------------------------------------------------------------- */

/* ----------------------------------------- */
/* menu */
.global_nav_block {
	background:#F4F4F4;
	z-index: 500;
	position: absolute;
	margin-top: -46px;
	width: 100%;
	min-width: 1200px;
}
@media print, screen and (min-width: 767px) {
	.global_nav_block.is-fixed{
		position: fixed;
		top:0;
		margin-top: 0;
	}
}

.global_nav_block .common_base_block {
	padding: 0;
}
.global_nav_block .common_base_block .only_for_sp { display: none;}
.global_nav_block .common_base_block .global_nav .sp_accordion_btn { display: none;}

.global_nav_block .common_base_block .sp_slider_nav {
	width: 100%;
}
.global_nav_block .common_base_block .global_nav > ul {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.global_nav_block .common_base_block .global_nav > ul > li {
	font-weight: bold;
}
.global_nav_block .common_base_block .global_nav > ul > li {
	border-left: 2px solid #FFF;
}
.global_nav_block .common_base_block .global_nav > ul > li:last-child {
	border-right: 2px solid #FFF;
}
.global_nav_block .common_base_block .global_nav > ul > li a {
	display: block;
	text-align: center;
	padding: 13px 45.9px 11px;
	transition: opacity .3s;
}
.global_nav_block .common_base_block .global_nav > ul > li a[target="_blank"]::after {
	content: '';
	width: 11px;
	height: 11px;
	background: url(../img/common/icon_external.svg) no-repeat;
	display: inline-block;
	margin: 5px;
	vertical-align: -4px;
}

@media print, screen and (min-width: 767px) {
}

/* ----------------------------------------- */
/* Responsive */
.global_nav_block .common_base_block .global_nav > ul > li:first-child{ display: none;}

@media print, screen and (max-width: 767px) {

	.global_nav_block .common_base_block .global_nav > ul {
		display: block;
	}
	.global_nav_block .sp_slider_nav {
		width: 85% !important;
		height: 100vh;
		transition: all 0.2s;
		transform: translate(-120%);
		position: fixed;
		display: block;
		top: 0;
		left: 0;
		z-index: 1510;
		background: #EEEBE4;
		margin-top: 0px;
		overflow-y: scroll;
		filter: drop-shadow(0px 1px 8px rgba(0,0,0,0.85));
	}

	.global_nav_block .sp_slider_nav.open {
	  transform: translate(0);
	}

	.global_nav_block .common_base_block .only_for_sp{ display: block;}
	.global_nav_block .common_base_block .global_nav > ul > li:first-child{ display: inline-block;}

	.global_nav_block .common_base_block .only_for_sp .info_box{
		position: relative;
		background: #F0B60C url(../img/common/slide_logo.png) no-repeat center center;
		background-size: 90% auto;
		padding: 55px 4% 16px;
	}

	.global_nav_block .common_base_block .only_for_sp .info_box .user_name{
		position: absolute;
		left: 4%;
		top:20px;
		font-size: 1.6rem;
	}
	.global_nav_block .common_base_block .only_for_sp .info_box .user_name { color: #333;}
	.global_nav_block .common_base_block .only_for_sp .info_box .user_name a i{ margin-right: 6px;}

	.global_nav_block .common_base_block .only_for_sp .info_box ul li{width: 48%;}
	.global_nav_block .common_base_block .only_for_sp .info_box ul li a{
		display: block;
		background: rgba(255,255,255,0.7);
		text-align: center;
		font-weight: bold;
		color: #7b4b00;
		padding: 12px 0px;

	}

	.global_nav_block .common_base_block .only_for_sp .contact_box{padding: 16px 4%;}
	.global_nav_block .common_base_block .only_for_sp .contact_box ul li{ margin-bottom: 10px;}
	.global_nav_block .common_base_block .only_for_sp .contact_box ul li a{
		position: relative;
		display: block;
		text-align: center;
		font-size: 1.6rem;
		color: #fff;
		background: #333;
		border-radius: 6px;
		padding: 14px 0px;
	}
	.global_nav_block .common_base_block .only_for_sp .contact_box ul li a::after{
		position: absolute;
		display:inline-block;
		content:"\f105";
		font-family: "Font Awesome 5 Free";
		font-weight: 700;
		top: 50%;
		margin-top: -10px;
		right: 12px;
	}
	.global_nav_block .common_base_block .only_for_sp .contact_box ul li:last-child a::after{
		content:"\f2a0";
		top: 46%;
		font-size: 1.8rem;
		right: 10px;
	}
	.global_nav_block .common_base_block .only_for_sp .contact_box p{
		text-align: center;
		color: #333;
		font-size: 1.3rem;
	}

	.global_nav_block .common_base_block .global_nav{padding-top: 0px;}

	.global_nav_block .common_base_block .global_nav .sp_accordion_btn{
		position: absolute;
		right: 0px;
		top: 0px;
		display: block;
		width: 44px;
		height: 44px;
		line-height: 44px;
		font-size: 1.7rem;
		color: #666;
		border-left: 1px solid #cdc7ba;
		text-align: center;
		cursor: pointer;
		z-index: 1550;
	}

	.global_nav_block .common_base_block .global_nav .sp_accordion_btn.active i.fa-plus::before{content:"\f068";}

	.global_nav_block .common_base_block .global_nav > ul > li{
		width: 100%;
		border-top: 1px solid #cdc7ba;
		position: relative;
		margin-right: 0px;
	}

	.global_nav_block .common_base_block .global_nav > ul > li > a{
		position: relative;
		display: block;
		color: #333;
		background: #fff;
		padding: 0px 44px 0px 4%;
		height: 44px;
		line-height: 44px;
		font-size: 1.4rem;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega.feature_menu .mega_menu .inner_box > ul > li a::after,
	.global_nav_block .common_base_block .global_nav > ul > li.mega.case_menu .mega_menu .inner_box > ul > li a::after,
	.global_nav_block .common_base_block .global_nav > ul > li.mega.kakou_menu .mega_menu .inner_box > ul > li a::after,
	.global_nav_block .common_base_block .global_nav > ul > li a::after{
		position: absolute;
		display:inline-block;
		content:"\f105";
		font-family: "Font Awesome 5 Free";
		font-weight: 700;
		right: 4.4%;
		font-size: 2.1rem;
		color: #666;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega > a::after{display: none;}

	.global_nav_block .common_base_block .global_nav > ul > li.mega > a{padding: 0px 44px 0px 4%;}

	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu{
		position: relative;
		display: block;
		background: #fff;
		top: 0px;
		box-shadow: 0px 0px 0px rgba(0,0,0,0);
		overflow-x: auto;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega.feature_menu .mega_menu,
	.global_nav_block .common_base_block .global_nav > ul > li.mega.item_menu .mega_menu,
	.global_nav_block .common_base_block .global_nav > ul > li.mega.case_menu .mega_menu,
	.global_nav_block .common_base_block .global_nav > ul > li.mega.kakou_menu .mega_menu{
		width: 100%;
		height: 0px;
		overflow: hidden;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega.item_menu .mega_menu.open,
	.global_nav_block .common_base_block .global_nav > ul > li.mega.feature_menu .mega_menu.open,
	.global_nav_block .common_base_block .global_nav > ul > li.mega.case_menu .mega_menu.open,
	.global_nav_block .common_base_block .global_nav > ul > li.mega.kakou_menu .mega_menu.open{
		width: 100%;
		height: auto;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu::before{display: none;}

	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu .inner_box{
		padding:0px 0px 0px 2%;
		background: #F0B60C;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu .inner_box::after,
	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu .inner_box::before{display: none;}

	.global_nav_block .common_base_block .global_nav > ul > li.mega > .mega_menu > .inner_box{
		width: 100%;
		position: relative;
		margin-right: 0px;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega > .mega_menu > .inner_box,
	.global_nav_block .common_base_block .global_nav > ul > li.mega > .mega_menu .inner_box > ul > li:not(:first-child){
		border-top: 0px solid #cdc7ba;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega > .mega_menu.open > .inner_box,
	.global_nav_block .common_base_block .global_nav > ul > li.mega > .mega_menu.open .inner_box > ul > li:not(:first-child){
		border-top: 1px solid #cdc7ba;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega > .mega_menu .inner_box > ul > li > a{
		position: relative;
		display: block;
		width: 100%;
		color: #333;
		font-size: 1.4rem;
		padding: 0px 44px 0px 4%;
		height: 0px;
		line-height: 44px;
		letter-spacing: 0px;
		background: #fff;
		transition: all 0.2s;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega > .mega_menu.open .inner_box > ul > li > a{
		height: 44px;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu .inner_box > ul > li{ position: relative; width: 100%;}
	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu .inner_box > ul > li > a{position: relative;}
	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu .inner_box > ul > li > a::after{display: none;}

	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu .inner_box > ul > li .sub_category_box{
		position: relative;
		top: 0px;
		left: 0px;
		display: block;
		background: #EEEBE4;
		width: 100%;
		height: 0px;
		padding: 0px 4%;
		box-shadow: 0px 0px 0px rgba(0,0,0,0);
		overflow-x: auto;
		transition: all 0.4s;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu .inner_box > ul > li .sub_category_box.open{
		height: auto;
		padding: 12px 4%;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu .inner_box > ul > li .sub_category_box p{display: none;}

	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu .inner_box > ul > li .sub_category_box > ul > li{
		margin-bottom: 0px;
		padding-left: 0px;
	}


	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu .inner_box > ul > li .sub_category_box > ul > li::before{
		display: none;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu .inner_box > ul > li .sub_category_box > ul > li a{
		position: relative;
		font-size: 1.4rem;
		padding: 0px 0px 0px 14px;
		letter-spacing: 0px;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		transition: all 0.4s;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu .inner_box > ul > li .sub_category_box.open > ul > li a{
		padding: 7px 0px 7px 14px;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu .inner_box > ul > li .sub_category_box > ul > li a::before{
		position: absolute;
		display:inline-block;
		content:"\f105";
		font-family: "Font Awesome 5 Free";
		font-weight: 700;
		top: 50%;
		margin-top: -10px;
		left: 0px;
	}

	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu .inner_box > ul > li .sub_category_box > ul > li a::after{
		display: none;
	}

}

/* ----------------------------------------- */
/* search */
.gc-headerSearch .ec-headerSearch__category {
	display: none;
}
.gc-headerSearch .ec-headerSearch__keyword {
	width: 306px;
	float: none;
	border-radius: 5px;
	border: 0;
}
.gc-headerSearch .ec-headerSearch__keyword input[type="search"] {
	width: 100%;
	height: 25px;
	font-size: 1.2rem;
	font-family: inherit;
	font-weight: 500;
	border: 0 none;
	padding: 4px 50px 4px 1em;
	box-shadow: none;
	background: none;
	box-sizing: border-box;
	margin-bottom: 0;
}
.gc-headerSearch .ec-headerSearch__keyword input[type="search"]::placeholder {
	color: #BBB;
}
.gc-headerSearch .ec-headerSearch__keyword input[type="search"]:-ms-input-placeholder {
	color: #BBB;
}
.gc-headerSearch .ec-headerSearch__keyword input[type="search"]::-ms-input-placeholder {
	color: #BBB;
}


/* ----------------------------------------- */
/* Responsive */

@media print, screen and (min-width: 767px) {
	.gc-headerSearch .ec-headerSearch__keywordBtn {
		right: 10px;
		transform: translateY(-50%);
		transition: opacity .3s;
	}
	.gc-headerSearch .ec-headerSearch__keywordBtn:hover {
		opacity: .6;
	}
	.gc-headerSearch .ec-headerSearch__keywordBtn,
	.gc-headerSearch .ec-headerSearch__keyword .ec-icon {
		width: 18px;
		height: 18px;
		padding: 0;
	}
	.gc-headerSearch .ec-headerSearch__keywordBtn img {
		width: 18px;
		height: 18px;
		transform: scale(-1, 1);
	}
}

@media print, screen and (max-width: 767px) {
	.gc-headerSearch .ec-headerSearch__category {
		display: block;
		float: left;
		width: 32%;
	}

	.gc-headerSearch .ec-headerSearch__category .ec-select.ec-select_search {
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
		background: #EEEBE4;
		min-height: 36px;
	}

	.gc-headerSearch .ec-headerSearch__category .ec-select select,
	.gc-headerSearch .ec-headerSearch__keyword input[type="search"]{font-size: 1.6rem; transform: scale(0.8);}

	.gc-headerSearch .ec-headerSearch__category .ec-select select{padding: 7px 15px 7px 0px;}
	.gc-headerSearch .ec-headerSearch__keyword input[type="search"]{padding: 0px; margin-left: -6px;}

	.gc-headerNaviRole__search{width: 100%;}
	.gc-headerSearch .ec-headerSearch__category .ec-select.ec-select_search{border-top-right-radius:0px;}
	.gc-headerSearch .ec-headerSearch__category{
		float: left;
		width: 32%;
	}

	.gc-headerSearch .ec-headerSearch__category .ec-select.ec-select_search{
		min-height: 40px;
		background: #333;
	}
	.gc-headerSearch .ec-headerSearch__category .ec-select.ec-select_search:before{
		border-top: 6px solid #ccc;
		top: 41%;
		right: 6%;

	}

	.gc-headerSearch .ec-headerSearch__category .ec-select select{
		color: #fff;
		padding: 0 15px 0 0;
		line-height:40px;
	}

	.gc-headerSearch .ec-headerSearch__keyword {
		float: right;
		width: 68%;
		min-height: 40px;
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}

	.gc-headerSearch .ec-headerSearch__keyword input[type="search"]{
		height: 40px;
		padding: 0;
		margin-left: -6%;
	}

	.gc-headerSearch .ec-headerSearch__keywordBtn{
		right: 10px;
		padding: 0px;
	}
}

@media print, screen and (max-width: 480px) {

}

/* ---------------------------------------------------------------- */
/* footer */
/* ---------------------------------------------------------------- */

footer .footer_desc_block .inner_box{ padding: 40px 0px 20px;}

footer .footer_desc_block {
	background: url(../img/common/footer_bg.gif) repeat-y;
	background-position: center;
	border-top:solid 1px #EEEBE4;
}

footer .footer_desc_block .desc_block_left,
footer .footer_desc_block .desc_block_right {width: 46%;position: relative;}

footer .footer_desc_block .desc_block_left .footer_nav_box nav {width: 100%;}
footer .footer_desc_block .desc_block_left .footer_nav_box nav li {width: 33.33%;}
/* footer .footer_desc_block .desc_block_left .footer_nav_box nav li:nth-child(2n+1) {margin-right: 10%;} */

footer .footer_desc_block .desc_block_left .footer_nav_box nav li a{
	display: block;
	position: relative;
	padding: 0 0 10px 20px;
}
footer .footer_desc_block .desc_block_left .footer_nav_box nav li a::before {
	position: absolute;
	color: #999;
	content:"\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	left: 0;
	transition: left .3s;
}
footer .footer_desc_block .desc_block_left .footer_nav_box nav li a:hover::before {
	left: 5px;
}

footer .footer_desc_block .desc_block_left .footer_nav_box .b_btn{
	position: absolute;
	right: 0px;
	top: 0px;
	width: 170px;
	text-align: left;
}

footer .footer_desc_block .desc_block_left .other_memu_list ul {
	padding: 10px 0;
	border-top: solid 1px #666;
	border-bottom: solid 1px #666;
	margin: 10px 0px 18px;
}
footer .footer_desc_block .desc_block_left .other_memu_list ul li:not(:last-child){padding-right: 22px;}

footer .footer_desc_block .desc_block_left .sns_list li:not(:last-child) {padding-right: 20px;}
footer .footer_desc_block .desc_block_left .sns_list li img {
	width: 30px;
	margin-right:8px;
}

footer .footer_desc_block .desc_block_right dt {
	border-bottom: solid 1px #000;
	padding-bottom: 8px;
	line-height: 1.1;
	margin-bottom: 10px;
	font-size: 1.6rem;
	font-weight: normal;
}

footer .footer_desc_block .desc_block_right .contact{position: relative;}
footer .footer_desc_block .desc_block_right .contact:not(last-child) {margin-bottom: 26px;}

footer .footer_desc_block .desc_block_right .contact .tel_box p span {
	font-weight: bold;
	padding-right: 10px;
}

footer .footer_desc_block .desc_block_right .contact .tel_box .tel a,
footer .footer_desc_block .desc_block_right .contact .tel_box .tel span {
	font-size: 2.8rem;
	font-weight: bold;
	color: #EC7A00;
	padding-right: 0px;
}
footer .footer_desc_block .desc_block_right .contact .tel_box .tel a:hover{text-decoration: none;}

footer .footer_desc_block .desc_block_right .contact .b_btn{
	position: absolute;
	right: 0px;
	top: 0px;
	width: 200px;
	text-align: center;
}

footer .footer_info_block {
	background: #333;
	color: #fff;
}

footer .footer_info_block .inner_box{align-items: flex-start;}

footer .footer_info_block .calendar_box {
	width: 32%;
	margin-right: 60px;
	margin-bottom: 40px;
}

footer .footer_info_block .calendar_box .calendar_box-title {font-size: 4rem; line-height: 1.1; margin-bottom:20px; text-align: center;}
footer .footer_info_block .calendar_box .calendar_box-title span {
	font-size: 1.2rem;
	line-height: 2rem;
	display:block;
}

footer .footer_info_block .calendar_box dl{margin-top: 8px;}
footer .footer_info_block .calendar_box dl dt {float: left; margin-bottom: 2px;}
footer .footer_info_block .calendar_box dl dd {margin-left: 80px; margin-bottom: 2px;}

footer .footer_info_block .calendar_box .note {
	margin-bottom: 14px;
}
footer .footer_info_block .calendar_box .note span {
  display: inline-block;
  width: 2.5em;
  background: #f7d9d9;
  height: 1em;
  margin-right: 5px;
}
footer .footer_info_block .calendar_box .note span + span {
  background: #fff;
  border: 2px solid #EC7A00;
}

footer .footer_info_block .shop_info {width: 60%;}
footer .footer_info_block .shop_info h2 {
	font-size: 1.9rem;
	border-bottom: solid 2px #fff;
	padding-bottom: 10px;
	margin-bottom: 19px;
	width:100%;
}

footer .footer_info_block .shop_info dl {
	width: 45%;
	margin:0px 10% 25px 0px;
}
footer .footer_info_block .shop_info dl:nth-child(2n+1) {margin:0px 0% 25px 0px;}

footer .footer_info_block .shop_info dt {
	font-size: 1.5rem;
	margin-bottom: 8px;
}
footer .footer_info_block .shop_info dl dt a {
	background: url(../img/common/footer_info.png) no-repeat left 1px;
	background-size: 13px;
	display: block;
    line-height: 1.7rem;
	padding-left: 20px;
	color:#fff;
}

footer .footer_info_block .shop_info dl dd{ color: #a1a1a1;}

footer .banner_block {
	display: grid;
    grid-template-columns: 100%;
	margin-top: 20px;
	max-width: 502px;
}


/* ----------------------------------------- */
/* Responsive */

@media print, screen and (max-width: 1159px) {

	footer .footer_desc_block .inner_box{ padding: 30px 4% 20px;}

	footer .footer_desc_block .b_btn a {padding: 14px 12px;}

	footer .footer_desc_block .desc_block_left,
	footer .footer_desc_block .desc_block_right {width: 47%;}

	footer .footer_desc_block .desc_block_left .footer_nav_box nav {width: 100%;}
	footer .footer_desc_block .desc_block_left .footer_nav_box nav li {width: 33.33%;}
	/* footer .footer_desc_block .desc_block_left .footer_nav_box nav li:nth-child(2n+1) {margin-right: 10%;} */

	footer .footer_desc_block .desc_block_left .footer_nav_box nav li a{padding: 0 0 10px 18px;}

	footer .footer_desc_block .desc_block_left .footer_nav_box .b_btn{width: 34%;}

	footer .footer_desc_block .desc_block_left .other_memu_list ul {font-size: 1.4rem;}
	footer .footer_desc_block .desc_block_left .other_memu_list ul li:not(:last-child){padding-right: 18px;}

	footer .footer_desc_block .desc_block_right .contact .tel_box .tel a,
	footer .footer_desc_block .desc_block_right .contact .tel_box .tel span{font-size: 2.4rem;}

	footer .footer_desc_block .desc_block_right .contact .b_btn{width: 42%;}

	footer .footer_info_block .inner_box{
		max-width: 1159px;
		padding: 30px 4% 20px;
	}
	footer .footer_info_block .calendar_box {
		width: 39%;
		margin-right: 4%;
	}

	footer .footer_info_block .calendar_box .calendar_box-title {font-size: 3.8rem;}
	footer .footer_info_block .calendar_box dl dd {margin-left: 74px;}

	footer .footer_info_block .shop_info {width: 57%;}
	footer .footer_info_block .shop_info dl {
		width: 47.5%;
		margin:0px 5% 25px 0px;
	}
	footer .footer_info_block .shop_info dl:nth-child(2n+1) {margin:0px 0% 25px 0px;}

	footer .copyright {
		font-size: 1.3rem;
		padding: 16px 4%;
	}

}

@media print, screen and (max-width: 920px) {

	footer .footer_desc_block {background: none;}
	footer .footer_desc_block .inner_box{ padding: 0px;}

	footer .footer_desc_block .desc_block_left{ background: #EEEBE4;}

	footer .footer_desc_block .desc_block_left,
	footer .footer_desc_block .desc_block_right { padding: 30px 4% 20px; width: 100%;}

	footer .footer_desc_block .desc_block_left .footer_nav_box nav {width: 100%;}

	footer .footer_desc_block .desc_block_left .footer_nav_box .b_btn{
		right: 4%;
		width: 38%;
		text-align: center;
		top: 30px;
	}

	footer .footer_desc_block .desc_block_right .contact .tel_box .tel a,
	footer .footer_desc_block .desc_block_right .contact .tel_box .tel span{font-size: 2.7rem;}

	footer .footer_info_block .calendar_box {
		width: 39%;
		margin-right: 4%;
	}

	footer .footer_info_block .calendar_box .calendar_box-title {font-size: 3.8rem;}
	footer .footer_info_block .calendar_box dl dt {float:none; margin-bottom: 4px;}
	footer .footer_info_block .calendar_box dl dd {margin-left: 0px; margin-bottom: 10px;}

	footer .footer_info_block .shop_info {width: 57%;}
	footer .footer_info_block .shop_info dl {
		width: 47.5%;
		margin:0px 5% 25px 0px;
	}
	footer .footer_info_block .shop_info dl:nth-child(2n+1) {margin:0px 0% 25px 0px;}

	footer .copyright {
		font-size: 1.3rem;
		padding: 16px 4%;
	}

}

@media print, screen and (max-width: 767px) {
	footer .footer_desc_block .desc_block_left .footer_nav_box nav li a:hover::before {
		left: 0;
	}
	
	footer .footer_info_block .calendar_box {
		width: 100%;
		margin-right: 0%;
		text-align: center;
	}

	footer .footer_info_block .calendar_box .calendar_box-title {font-size: 3.2rem;}
	footer .footer_info_block .calendar_box dl{
		display:flex;
		flex-wrap: wrap;
		width: 360px;
		margin: 0px auto;
		text-align: left;
	}
	footer .footer_info_block .calendar_box dl dt {width: 80px;}
	footer .footer_info_block .calendar_box dl dd {width: 280px;}
	footer .footer_info_block .calendar_box dl dt,
	footer .footer_info_block .calendar_box dl dd {
		border-bottom: 1px solid #666;
		padding: 10px 0px;
		margin: 0px;
	}

	footer .footer_info_block .shop_info {width: 100%;}
	footer .footer_info_block .shop_info dl {
		width: 47.5%;
		margin:0px 5% 25px 0px;
	}
	footer .footer_info_block .shop_info dl:nth-child(2n+1) {margin:0px 0% 25px 0px;}

	footer .copyright {
		font-size: 1.3rem;
		padding: 16px 4%;
	}


}

@media print, screen and (max-width: 480px) {

	footer .footer_desc_block .desc_block_left .footer_nav_box nav {width: 100%; padding-bottom: 10px;}
	footer .footer_desc_block .desc_block_left .footer_nav_box nav li{ width: 50%;}
	footer .footer_desc_block .desc_block_left .footer_nav_box nav li:nth-child(2n+1){ margin-right: 0px;}

	footer .footer_desc_block .desc_block_left .footer_nav_box .b_btn,
	footer .footer_desc_block .desc_block_right .contact .b_btn{
		position: relative;
		right: auto;
		width: 100%;
		font-size: 1.6rem;
		font-weight: bold;
		margin: 0px auto;
		top:auto;
	}

	footer .footer_desc_block .desc_block_left .footer_nav_box .b_btn br{display: none;}

	footer .footer_desc_block .desc_block_left .other_memu_list ul {
		padding: 12px 0;
		margin: 20px 0px 18px;
	}

	footer .footer_desc_block .desc_block_left .other_memu_list ul li {width: 50%;}

	footer .footer_desc_block .desc_block_left .other_memu_list ul li a{
		display: block;
		position: relative;
		padding: 0 0 10px 20px;
	}
	footer .footer_desc_block .desc_block_left .other_memu_list ul li a::before {
		position: absolute;
		color: #999;
		content:"\f105";
		font-family: "Font Awesome 5 Free";
		font-weight: 700;
		left: 0;
	}

	footer .footer_desc_block .desc_block_left .sns_list li:not(:last-child) {margin-right: 2%;}
	footer .footer_desc_block .desc_block_left .sns_list li span{ display: none}
	footer .footer_desc_block .desc_block_left .sns_list li img {
		width: 40px;
		margin-right:0px;
	}

	footer .footer_desc_block .desc_block_right dt {
		text-align: center;
		font-weight: bold;
	}

	footer .footer_desc_block .desc_block_right .contact .tel_box{text-align: center; margin-bottom: 12px;}
	footer .footer_desc_block .desc_block_right .contact .tel_box .tel a,
	footer .footer_desc_block .desc_block_right .contact .tel_box .tel span{font-size: 2.2rem;}

	footer .footer_info_block .calendar_box .calendar_box-title span{ padding-bottom: 9px;}
	footer .footer_info_block .calendar_box .calendar_box-title {font-size: 3.6rem;}
	footer .footer_info_block .calendar_box dl{
		width: 100%;
		margin: 0px;
	}
	footer .footer_info_block .calendar_box dl dt {width: 22%;}
	footer .footer_info_block .calendar_box dl dd {width: 78%;}

	footer .footer_info_block .shop_info {width: 100%;}
	footer .footer_info_block .shop_info h2 {
	font-size: 2.2rem;
	text-align: center;
}

	footer .footer_info_block .shop_info dl {
		width: 100%;
		margin:0px 0% 25px 0px;
	}
	footer .footer_info_block .shop_info dl:nth-child(2n+1) {margin:0px 0% 25px 0px;}


}


/* ---------------------------------------------------------------- */
/* calendar */
/* ---------------------------------------------------------------- */

#businessday_calendar {
	position: relative;
    width: 100%;
    margin: 0 auto;
	padding: 0px;
}

#businessday_calendar table {
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
    empty-cells: show;
	background: #999;
}
#businessday_calendar table caption {
	margin-bottom: 8px;
	padding: 0px;
	text-align: center;
	color: #fff;
}
#businessday_calendar th {
    text-align: center;
    background: #EEEBE4;
	color: #333;
}
#businessday_calendar th#saturday {
    color: #3366cc;
}
#businessday_calendar th#sunday {
    color: #ff3300;
}
#businessday_calendar th,
#businessday_calendar td{
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
	padding: 4px 0px;
}

#businessday_calendar td {
    text-align: center;
    background: #fff;
    color: #333;
}
#businessday_calendar .today {
    background: #fff;
    color: #000;
    font-weight: bold;
    border: 2px solid #EC7A00;
}
#businessday_calendar .holiday {
    background: #f7d9d9;
    color: #ee6666;
}

#businessday_calendar .prev {
	position: absolute;
	display: none;
	top: 0;
	left: 0;
	cursor: pointer;
	transition: opacity .3s;
}
#businessday_calendar .prev i {
	position: relative;
	left: 0;
	transition: left .3s;
}
#businessday_calendar .prev:hover i {
	left: -5px;
}

#businessday_calendar .next {
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	transition: opacity .3s;
}
#businessday_calendar .next i {
	position: relative;
	right: 0;
	transition: right .3s;
}
#businessday_calendar .next:hover i {
	right: -5px;
}
#businessday_calendar .prev:hover,
#businessday_calendar .next:hover {
	opacity: .6;
}

#businessday_calendar .calendar_month_box:last-child{display: none;}

/* ---------------------------------------------------------------- */
/* sns_icon */
/* ---------------------------------------------------------------- */
.footer_sns {
	margin-top: 20px;
}
.footer_sns .iconList {
	display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    gap: 15px;

}
.footer_sns .iconList_link {
	display: inline-block;
	width: 28px;
}
@media print, screen and (max-width: 767px) {
	.footer_sns {
		margin-top: 32px;
	}
	.footer_sns .iconList {
		justify-content: center;
		gap: 24px;
	}
	.footer_sns .iconList_link {
		width: 40px;
	}
}
/* ---------------------------------------------------------------- */
/* hover */
/* ---------------------------------------------------------------- */

@media print, screen and (min-width: 1025px) {

	.b_btn a,
	header .header_shop_info_block .fax_box .fax_btn a,
	header .header_shop_name_block h1 a,
	header .header_shop_name_block .logo a
	{
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}

	.b_btn a:hover,
	header .header_shop_info_block .fax_box .fax_btn a:hover,
	footer .footer_desc_block .b_btn a:hover{
		text-decoration: none;
		background: #EC7A00;
	}

	header .header_subnav_block > ul a:hover,
	header .header_mypage_box .gc-headerNaviRole__nav .ec-headerNav a:hover,
	header .header_mypage_box .gc-headerNaviRole__nav .ec-headerNav .ec-headerNav__item a:hover i,
	header .header_mypage_box .gc-headerNaviRole__nav .ec-headerNav .ec-headerNav__item .ec-headerNav__itemLink:hover,
	.global_nav_block .common_base_block .global_nav > ul > li.mega .mega_menu .inner_box > ul > li > a:hover::after,
	.global_nav_block .common_base_block .global_nav > ul > li.mega > .mega_menu > .inner_box a:hover,
	footer .footer_desc_block .desc_block_left .footer_nav_box nav li a:hover,
	footer .footer_desc_block .desc_block_left .footer_nav_box nav li a:hover::before,
	footer .footer_desc_block .desc_block_left .other_memu_list ul li a:hover,
	footer .footer_info_block .shop_info dl dt a:hover
	{
		color: #EC7A00;
	}

	.global_nav_block .common_base_block .global_nav > ul > li > a:hover,
	footer .footer_desc_block .desc_block_left .sns_list li a:hover{
		opacity: 0.6;
	}

	header .header_mypage_box .header_cart_box div.estimate:hover,
	header .header_mypage_box .header_cart_box .gc-headerNaviRole .ec-headerRole__cart .ec-cartNavi:hover,
	header .header_shop_name_block h1 a:hover,
	header .header_shop_name_block .logo a:hover{
		opacity: 0.7;
	}

	footer .footer_desc_block .desc_block_right .contact .tel_box .tel a:hover{text-decoration: none;}

}


/* ---------------------------------------------------------------- */
/* Responsive */
/* ---------------------------------------------------------------- */


/* ----------------------------------------- */
/* Responsive */

@media print, screen and (max-width: 1024px) {

}

@media print, screen and (max-width: 767px) {
	#businessday_calendar .prev:hover i {
		left: 0;
	}
	#businessday_calendar .next:hover i {
		right: 0;
	}
	#businessday_calendar .prev:hover,
	#businessday_calendar .next:hover {
		opacity: 1;
	}
}

@media print, screen and (max-width: 480px) {

}

/* -------------------------------------------------- */
/* space */
/* -------------------------------------------------- */

.ma_top20{margin-top: 20px !important;}
.ma_top40{margin-top: 40px !important;}
.ma_top60{margin-top: 60px !important;}
.ma_top80{margin-top: 80px !important;}
.ma_top100{margin-top: 100px !important;}

.ma_bottom20{margin-bottom: 20px !important;}
.ma_bottom40{margin-bottom: 40px !important;}
.ma_bottom60{margin-bottom: 60px !important;}
.ma_bottom80{margin-bottom: 80px !important;}
.ma_bottom100{margin-bottom: 100px !important;}

.pa_top20{padding-top: 20px !important;}
.pa_top40{padding-top: 40px !important;}
.pa_top60{padding-top: 60px !important;}
.pa_top80{padding-top: 80px !important;}
.pa_top100{padding-top: 100px !important;}

.pa_bottom20{padding-bottom: 20px !important;}
.pa_bottom40{padding-bottom: 40px !important;}
.pa_bottom60{padding-bottom: 60px !important;}
.pa_bottom80{padding-bottom: 80px !important;}
.pa_bottom100{padding-bottom: 100px !important;}

@media print, screen and (max-width: 767px) {

	.ma_top20tb{margin-top: 20px !important;}
	.ma_top40tb{margin-top: 40px !important;}
	.ma_top60tb{margin-top: 60px !important;}
	.ma_top80tb{margin-top: 80px !important;}
	.ma_top100tb{margin-top: 100px !important;}

	.ma_bottom20tb{margin-bottom: 20px !important;}
	.ma_bottom40tb{margin-bottom: 40px !important;}
	.ma_bottom60tb{margin-bottom: 60px !important;}
	.ma_bottom80tb{margin-bottom: 80px !important;}
	.ma_bottom100tb{margin-bottom: 100px !important;}

	.pa_top20tb{padding-top: 20px !important;}
	.pa_top40tb{padding-top: 40px !important;}
	.pa_top60tb{padding-top: 60px !important;}
	.pa_top80tb{padding-top: 80px !important;}
	.pa_top100tb{padding-top: 100px !important;}

	.pa_bottom20tb{padding-bottom: 20px !important;}
	.pa_bottom40tb{padding-bottom: 40px !important;}
	.pa_bottom60tb{padding-bottom: 60px !important;}
	.pa_bottom80tb{padding-bottom: 80px !important;}
	.pa_bottom100tb{padding-bottom: 100px !important;}

}

@media print, screen and (max-width: 480px) {

	.ma_top20sp{margin-top: 20px !important;}
	.ma_top40sp{margin-top: 40px !important;}
	.ma_top60sp{margin-top: 60px !important;}
	.ma_top80sp{margin-top: 80px !important;}
	.ma_top100sp{margin-top: 100px !important;}

	.ma_bottom20sp{margin-bottom: 20px !important;}
	.ma_bottom40sp{margin-bottom: 40px !important;}
	.ma_bottom60sp{margin-bottom: 60px !important;}
	.ma_bottom80sp{margin-bottom: 80px !important;}
	.ma_bottom100sp{margin-bottom: 100px !important;}

	.pa_top20sp{padding-top: 20px !important;}
	.pa_top40sp{padding-top: 40px !important;}
	.pa_top60sp{padding-top: 60px !important;}
	.pa_top80sp{padding-top: 80px !important;}
	.pa_top100sp{padding-top: 100px !important;}

	.pa_bottom20sp{padding-bottom: 20px !important;}
	.pa_bottom40sp{padding-bottom: 40px !important;}
	.pa_bottom60sp{padding-bottom: 60px !important;}
	.pa_bottom80sp{padding-bottom: 80px !important}
	.pa_bottom100sp{padding-bottom: 100px !important;}

}


/* -------------------------------------------------- */
/* flexbox */
/* -------------------------------------------------- */

.flexbox{ display:-webkit-box; display:-webkit-flex; display:-ms-flexbox; display: flex; -webkit-flex-wrap:wrap; -ms-flex-wrap:wrap; flex-wrap:wrap;}
.flexbox_l{ display:-webkit-box; display:-webkit-flex; display:-ms-flexbox; display: flex; -webkit-flex-wrap:wrap; -ms-flex-wrap:wrap; flex-wrap:wrap; -webkit-justify-content:flex-start; justify-content:flex-start;}
.flexbox_r{ display:-webkit-box; display:-webkit-flex; display:-ms-flexbox; display: flex; -webkit-flex-wrap:wrap; -ms-flex-wrap:wrap; flex-wrap:wrap; -webkit-justify-content:flex-end; justify-content:flex-end;}
.flexbox_c{ display:-webkit-box; display:-webkit-flex; display:-ms-flexbox; display: flex; -webkit-flex-wrap:wrap; -ms-flex-wrap:wrap; flex-wrap:wrap; -webkit-justify-content:center; justify-content:center;}
.flexbox_b{ display:-webkit-box; display:-webkit-flex; display:-ms-flexbox; display: flex; -webkit-flex-wrap:wrap; -ms-flex-wrap:wrap; flex-wrap:wrap; -webkit-justify-content:space-between; justify-content:space-between;}
.flexbox_a{ display:-webkit-box; display:-webkit-flex; display:-ms-flexbox; display: flex; -webkit-flex-wrap:wrap; -ms-flex-wrap:wrap; flex-wrap:wrap; -webkit-justify-content:space-around; justify-content:space-around;}
.flexbox_m{ display:-webkit-box; display:-webkit-flex; display:-ms-flexbox; display: flex; -webkit-justify-content:center; -ms-justify-content:center; justify-content:center; -webkit-align-items:center; -ms-align-items:center; align-items:center; text-align:center;}


/* -------------------------------------------------- */
/* common block */
/* -------------------------------------------------- */
/* step */
.common_step_block {
	background: #eeebe4;
	margin-top: 112px;
	position: relative;
	text-align: center;
}
.common_step_block .common_step_title {
	background: #F0B608;
	color: #FFF;
	display: inline-block;
	font-size: 2.2rem;
	line-height: 1;
	margin: -32px auto 0;
	padding: .75em 3.5em;
	position: relative;
}
.common_step_block .common_step_title:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(240, 182, 8, 0);
	border-top-color: #F0B608;
	border-width: 10px;
	margin-left: -10px;
}
.common_step_block ol {
	counter-reset: step;
}
.common_step_block ol li {
	position: relative;
	text-align: center;
	width: 20%;
	display:-webkit-box;
	display:-webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.common_step_block ol li + li::before,
.common_step_block ol li + li::after {
	content:"";
	display: block;
	position: absolute;
}
.common_step_block ol li + li::before {
	border-bottom: 2px solid #707070;
	width: 33px;
	height: 10px;
	left: -60px;
	top: 80px;
}
.common_step_block ol li + li::after {
	border-right: 2px solid #707070;
	width: 2px;
	height: 10px;
	left: -32px;
	top: 81px;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.common_step_block .thumb {
	background: #FFF;
	border-radius: 164px;
	display: block;
	width: 164px;
	height: 164px;
	margin: 0 auto 20px;
	position: relative;
	text-align: center;
	-webkit-box-flex: 0;
	flex: 0 0 164px;
}
.common_step_block .thumb::before {
	background: #333;
	border-radius: 48px;
	color: #FFF;
	counter-increment: step;
	content: '0'counter(step);
	display: block;
	font-size: 20px;
	line-height: 48px;
	width: 48px;
	height: 48px;
	text-align: center;
	position: absolute;
	top: -12px;
	left: 12px;
	z-index: 1;
}
.common_step_block .title {
	border-bottom: 3px solid #F0B608;
	color: #000;
	display: inline-block;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.3;
	padding-bottom: .1em;
	text-align: center;
	width: auto;
	-webkit-box-flex: 1;
	flex: 0 0 2.6em;
	display:-webkit-box;
	display:-webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;	
}
.common_step_block .desc {
	font-size: 1.5rem;
	line-height: 1.5;
	margin-top: 1em;
	margin-bottom: auto;
	text-align: left;
}

/* ----------------------------------------- */
/* Responsive */
@media print, screen and (min-width: 768px) {
	.ec-layoutRole__main .common_step_block {
		margin-right: -500%;
		margin-left: -500%;
		padding-right: 500%;
		padding-bottom: 40px;
		padding-left: 500%;
	}
}
@media print, screen and (max-width: 767px) {
	.pconly { display: none !important; }
	.common_step_block {
		margin-top: 60px;
	}
	.common_step_block .common_step_title {
		font-size: 1.8rem;
		margin-top: -25px;
	}
	.common_step_block ol {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.common_step_block ol li {
		padding: 0 8%;
		width: 100%;
	}
	.common_step_block ol li + li {
		margin-top: 20%;
	}
	.common_step_block ol li + li::before {
		border-bottom: none;
		border-left: 2px solid #707070;
		width: 2px;
		height: 20px;
		left: 50%;
		top: -15%;
	}
	.common_step_block ol li + li::after {
		border-right: 2px solid #707070;
		height: 10px;
		left: 50%;
		top: -15%;
		margin-top: 11px;
		margin-left: 3px;
		-ms-transform: rotate(-130deg);
		-webkit-transform: rotate(-130deg);
		transform: rotate(-130deg);
	}
	.common_step_block .thumb {
		width: calc(100vw * .5);
		height: calc(100vw * .5);
		margin-bottom: 1em;
	}
	.common_step_block .thumb::before {
		border-radius: 46px;
		font-size: 18px;
		line-height: 46px;
		width: 46px;
		height: 46px;
		top: -12px;
		left: 12px;
	}
	.common_step_block .title {
		font-size: 1.9rem;
		-webkit-box-flex: 0;
		flex: 0 0 auto;		
	}
	.common_step_block .desc {
		font-size: 1.4rem;
	}
}
@media print, screen and (min-width: 768px) {
	.sponly { display: none !important; }
}
@media print, screen and (max-width: 767px) {
	.pconly { display: none !important; }
}


/* ---------------------------------------------------------------- */
/* お知らせボックス */
/* ---------------------------------------------------------------- */
.attention_note_wrap{
	position: fixed;
	z-index: 1999;
	width: 100%;
	bottom: 10px;
}
.attention_note{
	width: 980px;
	margin: auto;
	padding: 10px 20px;
	background: rgba(255,255,255,.9);
	border: #ccc 1px solid;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	border-radius: 8px;
	position: relative;
}
.attention_head{
	font-weight: bold;
	margin-bottom: 5px;
}
.attention_close{
	position: absolute;
	top: 0px;
	right: 10px;
	font-size: 2.0rem;
}
@media print, screen and (max-width: 767px) {
	.attention_note{
		width: 95%;
		padding: 10px;
	}
	.attention_close{
		font-size: 2.5rem;
		right: 5px;
	}

}
