@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
}
html {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
body {
	/*text-align: center;*/
}

/* --------------------------------------------------------
　表示・非表示の切り替え
-------------------------------------------------------- */

/* セール（ポイントバナーのみ） -- */
.sale_point {
	display: none;
	width: 980px;
	margin: 0 auto;
}
/* セール（会場あり） -- */
.sale_page {
	display: none;
	width: 980px;
	margin: 0 auto;
}
/* セール（Yahoo開催のみ） -- */
.sale_campaign {
	display: none;
	width: 980px;
	margin: 0 auto;
}
.sale_page:hover {
	opacity: 0.9;
}

/* 棚卸しのご案内 -- */
.info {
	display: block;
	height: 65px;
	margin-top: 10px;
}
/* 長期休業のご案内 -- */
.info_holiday {
	display: none;
	width: 980px;
	margin: 20px auto 0;
}

/* --------------------------------------------------------
　Header + Footer + Info
-------------------------------------------------------- */
#header {
	margin: 0 auto;
	top: 0;
	left: 0;
}
#footer {
	clear: both;
	display: block;
	margin: 50px auto 0;
}

/* --------------------------------------------------------
　メガメニュー
-------------------------------------------------------- */

#menu {
	position:relative;
	width: 980px;
	height: 240px;
	margin: auto;
	overflow: visible;
}
ul.gnav {
	position:absolute;
	top:70px;
	right:0;
	width: 540px;
	padding: 0;
	background: #FFF;
	list-style: none;
	justify-content: space-between;
	z-index: 9999;
}
ul.gnav a {
	color: #111;
	padding: 0;
	text-decoration: none;
	font-weight: bold;
}
/* メニュー項目 -- */
ul.gnav > li {
	width: 16.2%;
	float: left;
	padding: 0;
	text-align: center;
	transition: all .3s ease-in-out;
	border-left: 1px dotted #000;
}
ul.gnav > li:last-child {
	border-right: none;
}
ul.gnav > li:hover {
	color: #FFF;
	background: #004da3;
}
/* メニューの中身 -- */
ul.megamenu {
	position: absolute;
	opacity: 0;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
	left: 0;
	background: #FFF;
	transition: all .2s ease-in;
	z-index: 9999;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.gnav > li:hover .megamenu {
	opacity: 1;
	width: 100%;
	max-height: 9999px;
	padding: 16px 0;
	border-top: 5px solid #004da3;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	border-left: 1px solid #999;
	box-sizing: border-box;
	box-shadow: 3px 3px 3px #999;
	-webkit-box-shadow: 3px 3px 3px #999;
	-moz-box-shadow: 3px 3px 3px #999;
}
/* メニューの中身の中身 -- */

ul.megamenu li {
	float: left;
	margin: 5px 0 5px 5px;
	padding: 5px;
	border-left: none;
	background-color: #e8e8e8;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	text-align: center;
	font-size: 12px;
}
ul.megamenu li:hover {
	opacity: 0.8;
}
.megamenu-inner-text {
	margin-top: 3px;
	color: #000;
}
/* --------------------------------------------------------
　スライドショー
-------------------------------------------------------- */
#slide {
	clear: both;
}
ul.bx-main {
	position: relative;
	height: 300px;
	overflow: hidden;
	list-style: none;
	background-color: #000;
}
ul.bx-main li img {
	width: 980px;
	height: 300px;
}

/* --------------------------------------------------------
　CONTENTS
-------------------------------------------------------- */

/* sidemenu + main -- */
#contents {
	width: 980px;
	margin: 30px auto 0;
}
/* sidemenu -- */
#sidemenu {
	float: left;
}
/* main -- */
#main {
	float: left;
	width: 760px;
	margin-left: 30px;
	font-size: 14px;
}
#main .block {
	clear: both;
	margin: 0 0 40px;
}
#main .line {
	width: 100%;
	height: 9px;
	background-color: #004da3;
}
#main .tittle {
	width: 300px;
	margin: 0 0 10px;
}
/* ▼ 共用 -- */

.box03 {
	float: left;
	width: 230px;
	height: 230px;
	margin: 0 17px 15px 0;
	padding: 5px;
	border: 1px solid #999;
	overflow: hidden;
}
.box03:hover {
	border: 1px solid #09F;
}
.box03 a img:hover {
	opacity: 0.8;
}
.box, .close {
	margin: 0;
}
/* ▼ TOPIC -- */
.box03 iframe {
	background-color: #000;
}
p.backnumber {
	clear: both;
	width: 230px;
	margin-top: 10px;
	padding: 5px;
	background-color: #e8e8e8;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
p.backnumber a {
	color: #000;
	text-decoration: underline;
}
p.backnumber a:hover {
	text-decoration: none;
}
.products {
	height: 600px;
}
/* ▼ PRODUCTS -- */
.products .box03 img {
	transition: 0.3s;
}
.products .box03 img:hover {
	opacity: 1;
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
 Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.footer_guide {
	width: 974px;
	height: 40px;
	background: #333;
	margin: 0;
	padding: 0;
}
.footer_guide .tittle {
	color: #FFF;
	float: left;
	border-left:6px solid #F00;
	text-indent:1em;
	margin-top: 10px;
	margin-left: 20px;
}
.footer_guide .area {
	width: 700px;
	height: 30px;
	background: #f5f5f5;
	float: left;
	margin-top: 5px;
	margin-left: 20px;
}
.footer_guide .area a {
	font-size: 12px;
	color: #333;
	float: left;
	margin-top: 7px;
	margin-left: 20px;
}
.footer_guide a:hover, .guidebox a:hover {
	text-decoration: none;
}
.guidebox-area {
	width:974px;
	height:660px;
	background:#CCC;
}
.guidebox {
	width: 300px;
	height: 300px;
	background: #FFF;
	float: left;
	margin-left: 18px;
	margin-top: 20px;
}
.guidecontents {
	margin: 10px;
}
.guidetittle {
	font-size: 18px;
	font-weight: 900;
}
.guideline {
	width: 280px;
	height: 2px;
	background: #000;
}
.guidetext {
	font-size: 12px;
	margin-top: 5px;
}
.guidetext font {
	text-decoration: underline;
	color: #036;
	font-weight: bold;
}
