@charset "utf-8";

/*-----------------------------------------------
スマホサイト
-----------------------------------------------*/
@media only screen and (max-width: 640px) {

/* ハンバーガーボタン */
/*メニュー周りの高さ調整は親CSS側で設定すること。*/
.btn_hamburger {
	margin: 0 auto 2em !important;
	position:absolute;
	top:20px;
	right:10px;
	border-radius:4px;
	padding:5px 8px;
	background:#a7a7a7;
}
.btn_hamburger a {
	position: relative;
	display: block;
	width: 26px;
	height: 20px;
	-webkit-transition: all .4s;
	transition: all .4s;
	box-sizing: border-box;
	margin:5px auto;
}
.btn_hamburger span {
	position: absolute;
	display: inline-block;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #fff;
	border-radius: 2px;
	-webkit-transition: all .4s;
	transition: all .4s;
	box-sizing: border-box;
}
.btn_hamburger span:nth-of-type(1) {
	top: 0;
}
.btn_hamburger span:nth-of-type(2) {
	top: 8px;
}
.btn_hamburger span:nth-of-type(3) {
	bottom: 0;
}
.btn_hamburger span:nth-of-type(2)::after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 4px;
	background-color: #fff;
	border-radius: 2px;
	-webkit-transition: all .4s;
	transition: all .4s;
}
.btn_hamburger .active span:nth-of-type(2) {
	-webkit-transform: rotate(-45deg);
			-ms-transform: rotate(-45deg);
					transform: rotate(-45deg);
}
.btn_hamburger .active span:nth-of-type(2)::after {
	-webkit-transform: rotate(90deg);
			-ms-transform: rotate(90deg);
					transform: rotate(90deg);
}
.btn_hamburger .active span:nth-of-type(1) {
	-webkit-transform: translateY(20px) scale(0);
			-ms-transform: translateY(20px) scale(0);
					transform: translateY(20px) scale(0);
}
.btn_hamburger .active span:nth-of-type(3) {
	-webkit-transform: translateY(-20px) scale(0);
			-ms-transform: translateY(-20px) scale(0);
					transform: translateY(-20px) scale(0);
}
.smp_whole{
	margin: 0 0 2.5em;
	max-width: 640px;
}

.gnav {display: none;}

.smp_whole> ul > li {
	list-style-type:none;
}
.smp_whole> ul > li a{
	display:block;
	width:100%;
	height:50px;
	line-height:50px;
	background:#eee;
	background: #bbb;
	background: -webkit-linear-gradient(top, #F5F7F6, #E6E7EB);
	background:         linear-gradient(top, #F5F7F6, #E6E7EB);
	border-bottom:1px solid #aaa;
	color:#333;
	font-size:15px;
	text-indent:20px;
	position:relative;
}
.smp_whole> ul > li a:after {
    content: '';
    margin-top: -4px;
    top: 50%;
    right: 15px;
    width: 8px;
    height: 8px;
    color: #888;
    font-size: 1em;
    font-weight: bold;
    line-height: 1.2em;
    display: block;
    position: absolute;
    border-top: 2px solid #b0b0b0;
    border-right: 2px solid #b0b0b0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.smp_whole> ul > li a:link{color:#333;text-decoration:none;}
.smp_whole> ul > li a:visited{color:#333;text-decoration:none;}
.smp_whole> ul > li a:hover{color:#333;text-decoration:none;}
.smp_whole> ul > li a:active{color:#333;text-decoration:none;}

.smp_whole> ul > li a.trigger:after {/*下階層ある時のボタン。下向き矢印*/
    content: '';
    margin-top: -4px;
    top: 50%;
    right: 15px;
    width: 8px;
    height: 8px;
    color: #888;
    font-size: 1em;
    font-weight: bold;
    line-height: 1.2em;
    display: block;
    position: absolute;
    border-top: 2px solid #777;
    border-right: 2px solid #777;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.smp_whole .trigger.active{/*下階層ボタンがアクティブの時の親ボタンの背景。*/
	background:#d9d9d9;
}
.smp_whole> ul > li a.trigger.active:after {/*下階層ボタンがアクティブの時の上向き矢印*/
    content: '';
    margin-top: -2px;
    top: 50%;
    right: 15px;
    width: 8px;
    height: 8px;
    color: #888;
    font-size: 1em;
    font-weight: bold;
    line-height: 1.2em;
    display: block;
    position: absolute;
    border-top: 2px solid #777;
    border-right: 2px solid #777;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.smp_whole ul.target.sub{
	display:none;
}
.smp_whole ul.target.sub li{
	list-style-type:none;
}
.smp_whole ul.target.sub li a{/*下階層展開時の背景*/
	background:#E3EDFF;
}
.shop_tellink{
	width:100%;
	padding:20px 0 20px 0;
	margin:0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	flex-flow: row wrap;
	background:#f1f1f1;
}
.shop_tellink a{
	display:block;
	width:44%;
	margin:10px 3% 10px;
	border-radius:4px;
	height:50px;
	background:#75BAF2;
	box-sizing: border-box;
	font-size:14px;
	line-height:1.4;
	padding:7px 24px 0;
}
.shop_tellink a:link{color:#fff;text-decoration:none;}
.shop_tellink a:visited{color:#fff;text-decoration:none;}
.shop_tellink a:hover{color:#fff;text-decoration:none;}
.shop_tellink a:active{color:#fff;text-decoration:none;}

}/*↑スマホサイト*/

/*-----------------------------------------------
PCサイト
-----------------------------------------------*/
@media only screen and (min-width: 640px) {

.gnav {
	width: 100%;
	height: 60px;
	margin:0 auto;
	background:#75BAF2;
}
ul.dropmenu{
	position: relative;
	width: 960px;
	height: 60px;
	margin:0 auto;
	border-left:1px dotted #ddd;
}
ul.dropmenu li{
	float: left;
}
				ul.dropmenu li.pcnone{
					display:none;
				}
ul.dropmenu li a{
	display: inline-block;
	width:137px;
	height:60px;
	line-height:60px;
	font-size:14px;
	text-align:center;
	border-right:1px dotted #ddd;
	box-sizing: border-box;
}
ul.dropmenu li a.w138{
	width:138px;
	font-size:13px;
}
ul.dropmenu li a:link{text-decoration:none;color:#fff;}
ul.dropmenu li a:visited{text-decoration:none;color:#fff;}
ul.dropmenu li a:hover{text-decoration:none;color:#fff;background:#185274;}
ul.dropmenu li a:active{text-decoration:none;color:#fff;}

ul.dropmenu li ul{/*プルダウンul（メガメニューのため横めいいっぱい）*/
	width:274px;
	position: absolute;
	top: 60px;
	left: 0;
	margin: 0;
	padding: 0;
	z-index:9999;
}
		ul.dropmenu li:nth-child(2n) ul{/*プルダウン真下に。あってもなくても記述する*/
			left: 137px;
		}
		ul.dropmenu li:nth-child(3n) ul{
			left: 274px;
		}
		ul.dropmenu li:nth-child(4n) ul{
			left: 411px;
		}
		ul.dropmenu li:nth-child(5n) ul{
			left: 548px;
		}
		ul.dropmenu li:nth-child(6n) ul{
			left: 685px;
		}
		ul.dropmenu li:nth-child(7n) ul{/*右端のため調整*/
			width:274px;
			left: 685px;
		}
ul.dropmenu li ul li{/*プルダウンli（メガメニューのため横めいいっぱい）*/
	width:100%;
	height: 0;
	overflow: hidden;
}
ul.dropmenu li:hover ul li{/*ホバー時のプルダウン各行*/
	overflow: visible;
	height: 40px;
	line-height:40px;
	background:#E3F4FF;
	border-bottom:1px dotted #fff;
}
ul.dropmenu li:hover ul li a{/*プルダウン共通。親の指定を打ち消してる*/
	display:block;
	width:100%;
	height:40px;
	line-height:40px;
	position: relative;
	text-align:left;
	text-indent:40px;
}
ul.dropmenu li:hover ul li a:link{text-decoration:none;color:#333;}
ul.dropmenu li:hover ul li a:visited{text-decoration:none;color:#333;}
ul.dropmenu li:hover ul li a:hover{text-decoration:none;color:#fff;background:#bbb!important;}
ul.dropmenu li:hover ul li a:active{text-decoration:none;color:#333;}

ul.dropmenu li:hover ul li a::before{/*矢印*/
	content: '';
	width: 6px;
	height: 6px;
	border: 0;
	border-top: solid 1px #333;
	border-right: solid 1px #333;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 17px;
	left: 20px;
}
ul.dropmenu li:hover ul li:last-child{/*最後の行はグレー*/
	border-bottom:1px solid #ccc;
}
.gnav .active{
	background:#185274;
}

}/*↑PCサイト*/
