@charset "UTF-8";
/* レスポンシブの用意ができるまで可変対応しない */
html,
body{
	min-width:1349px;
}
/* レスポンシブの用意ができるまで可変対応しない */


.sp_notice {
	width: 100%;
	text-align: center;
	font-size: 240%;
	font-weight: bold;
	background-color: #CCC;
	padding: 10px 0px 10px 0px;
	color: #FFF;
}
*{
	padding:0;
	margin:0;
	box-sizing:border-box;
	font: 100% "Meiryo","メイリオ",Verdana,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",sans-serif;	
	}

/* material-icons Fout Setting */
.material-icons{
	visibility: hidden;
	max-height:35px;
	max-width: 35px;
}

.wf-active .material-icons{
	visibility: visible;
	max-height:unset;
	max-width:unset;
}

/* material-icons Fout Setting */
.Gothic{
	font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
	}
ul{
	list-style:none;
	}
.clearfix{
	clear:both;
	float:none;
	}
img{
	display:block;
	width:100%;
}

/** original_button_styles ************/
button{
	cursor:pointer;
	}

/* plan to delete */
button.normal{
	display: block;
    min-width: 300px;
    background: #eee;
    border: 1px solid #ccc;
    padding: 10px 0;
    border-radius: 5px;
    font-size: 15px;
}
/* plan to delete */

/* simple_button_style */
.simple_button_style{
    width:300px;
    font-size:14px;
    background:#eee;
    border:1px solid #ccc;
    border-radius:5px;
    padding:15px;
    margin:30px auto;
    font-weight:bold;
    text-decoration:none;
    color:#555;
}

/* prev */
.prev_arrow{
	position:relative;
}
.prev_arrow:before{
	content: "";
	display: block;
	position: absolute;
	left: 25px;
	top: calc((100% - 12px)/2);
	width: 7px;
	height: 7px;
	border: 2px solid;
	border-right: 0;
	border-top: 0;
	transform: rotate(45deg);
	transition:.3s;
}
.prev_arrow.button_action:hover:before{
	left:20px;
	transition:.3s;
}

/* next */
.next_arrow{
	position:relative;
}
.next_arrow:after{
	content:"";
	display:block;
	position:absolute;
	right:25px;
	top:calc((100% - 12px)/2);
	width:7px;
	height:7px;
	border:2px solid;
	border-left:0;
	border-bottom:0;
	transform: rotate(45deg);
	transition:.3s;
}
.next_arrow.button_action:hover:after{
	right:20px;
	transition:.3s;
}

/* button_action */
.button_action{
}
.button_action:hover{
	opacity:.8;
}


/** original_button_styles ************/

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="email"] {
	border:1px solid #aaa;
	border-radius:5px;
	padding:5px;
	font-size:15px;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
	-webkit-appearance: none; 
	margin: 0; 
}
select {
	font-size:15px;
	border-radius:5px;
	padding:5px;
}
textarea{
	border-radius:5px;
	padding:5px;
	font-size:14px;
}

/* width: 300px */
.w-300 {
	width:300px;
}

/* width: 500px */
.w-500 {
	width:500px;
}

/* width: 5em */
.w-5em {
	width:5em;
}

/* width: 6em */
.w-6em {
	width:6em;
}

/*** flex設定 ***/
.flex{
	display:flex;
	flex-wrap:wrap;
}
.inline-flex {
	display:inline-flex;
	flex-wrap:wrap;
}

/* 横配置 */
.justify-start{
	justify-content:flex-start;
}
.justify-center{
	justify-content:center;
}
.justify-end{
	justify-content:flex-end;
}
.justify-between{
	justify-content:space-between;
}
.justify-around{
	justify-content:space-around;
}

/* 縦配置 */
.align-start{
	align-items:flex-start;
}
.align-center{
	align-items:center;
}
.align-end{
	align-items:flex-end;
}

/*** flex設定 ***/

/*****************************common styles*****************************/
body {
	margin: 0px;
	padding: 0px;
}
.liner{
	position:relative;
	}
.liner:before{
	content:"";
	position:absolute;
	display:block;
	width:100%;
	border-bottom:2px solid #444;
	left:0;
	bottom:0;
	}
.liner:after{
	content:"";
	position:absolute;
	display:block;
	width:20%;
	border-bottom:2px solid #093;
	left:0;
	bottom:0;
	}
.arrowIcon{
	position:relative;
	padding-left:15px;
	}
.arrowIcon:before{
	content:"";
	border:5px solid transparent;
	border-left-color:#093;
	position:absolute;
	left:0;
	top:calc((100% - 12px)/2);
	}

/* header */
/* ヘッダーお知らせ */
.top_message{
	background: #f33;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
	padding: 5px 0;
	text-decoration:none;
}
.top_message i{
	margin-right:5px;
	font-size:20px;
}
.top_message:hover{
	opacity:.8;
}
/* ヘッダーお知らせ */
header{
	padding:0 40px 5px;
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:space-between;
	}
#logobox{
	width:20%;
	margin:5px 0 0 0;
	}
#logobox:hover{
	opacity:.8;
	}
#menubox{
	float:right;
	
	}
#menubox .topMenu{
	font-size:13px;
	display:flex;
	justify-content:flex-end;
	}
#menubox .topMenu a{
	position:relative;
	margin-right:10px;
	padding:0 10px;
	text-decoration:none;
	}
#menubox .topMenu a:hover{
	opacity:.8;
	text-decoration:underline;
	}
#menubox .topMenu a:nth-last-of-type(1){
	margin:0;
	}
#menubox .topMenu a:before{
	content:"";
	border:1px solid #555;
	display:block;
	position:absolute;
	left:0;
	top:5%;
	border-right:0;
	width:3px;
	height:80%;
	}
#menubox .topMenu a:after{
	content:"";
	border:1px solid #555;
	display:block;
	position:absolute;
	right:0;
	top:5%;
	border-left:0;
	width:3px;
	height:80%;
	}
#menubox .bottomMenu{
	overflow:hidden;
	padding:10px 0 13px;
	display: flex;
	justify-content: flex-end;
	}
#menubox .bottomMenu a{
	display:flex;
	justify-content:center;
	position:relative;
	box-sizing:border-box;
	min-width:80px;
	padding:0 0 10px;
	text-decoration:none;
	color:#555;
	}
#menubox .bottomMenu a:hover{
	opacity:.8;
}
#menubox .bottomMenu a .material-icons{
	font-size:35px;
	}
#menubox .bottomMenu a:nth-last-of-type(1){
	margin:0;
	border:0;
	}
#menubox .bottomMenu a:after{
	content:"";
	font-size:12px;
	position:absolute;
	text-align:center;
	left:0;
	width:100%;
	bottom:-10px;
	}
#menubox .bottomMenu a.menuHistory:after{
	content:"購入履歴";
	}
#menubox .bottomMenu a.menuFavorite:after{
	content:"お気に入り";
	}
#menubox .bottomMenu a.menuCart:after{
	content:"カート";
	}
#menubox .bottomMenu a.menuCart span.basket_item_count{
	display: inline-flex;
    color: #fff;
    background: #f44;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
	position: absolute;
	width:20px;
	height:20px;
    right: 15px;
    top: -5px;
	font-size: 12px;
	font-weight:bold;
	text-shadow: 0 0 2px #f33;
}
#menubox .bottomMenu a.menuCart span.basket_item_count.hide{
	display:none;
}
header section.centerBox{
	width:56%;
	height: 65px;
    display: flex;
    align-items: flex-end;
	}
header section.centerBox .to_online a{
	background: #777;
    padding: 3px 10px 3px 0;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
}
header section.centerBox .to_online a:hover{
	opacity:.8;
}
header section.centerBox .to_online a i{
	font-size:20px;
}
/* header */

/* category */
.categorybox > ul > li.onMouse{
	background:#ffd;
	}
.categorybox > ul > li.onMouse > a{
	font-weight:bold;
	}
.categorybox > ul > li div.detail{
	position:absolute;
	display:none;
	left:100%;
	width:500px;
	background:#fff;
	box-sizing:border-box;
	border:1px solid #ddd;
	padding:10px;
	filter: drop-shadow(2px 1px 2px #888);
	}
.categorybox > ul > li.onMouse div.detail{
	display:block;
	}
.categorybox > ul li div h4{
	font-size:20px;
	}
.categorybox .detail li a{
	color:#00f !important;
	}
.categorybox ul .detail .child_cate{
	margin-bottom:20px;
	}
#searchbox .categorybox ul .detail .itemDetail{
	margin-left:5px;
	}
#searchbox .categorybox ul .detail .child_cate li{
	padding-left:20px;
	}
#searchbox .categorybox ul .detail .child_cate li:hover{
	background:#ffd;
	}
.categorybox ul .detail .child_cate li:before{
	content:"";
	position:absolute;
	display:block;
	width:0;
	height:0;
	border:5px solid transparent;
	border-left-color:#093;
	left:10px;
	top:calc((100% - 12px)/2);
	}
.categorybox ul .detail .xl_cate_recItem{
	/*display:flex;
	justify-content:space-between;*/
	}
.categorybox ul .detail .xl_cate_recItem .bnr{
	width:100%;
	position:relative;
	overflow:hidden;
	margin-bottom:10px;
	}
.categorybox ul .detail .xl_cate_recItem .bnr .title{
	position:absolute;
	color:#fff;
	display:flex;
	height:100%;
	width:260px;
	font-size:15px;
	line-height:1.1em;
	align-items:center;
	padding-left:15px;
	font-weight:bold;
	}
.categorybox ul .detail .xl_cate_recItem .bnr img{
	width:100%;
	float:left;
	border:1px solid #ddd;
	box-sizing:border-box;
	}
.categorybox ul .detail .xl_cate_recItem a{
	width:100%;
	display:block;
	clear:both;
	display:flex;
	justify-content:space-between;
	border-bottom:1px solid #ddd;
	margin:2px 0;
	padding:2px 0;
	}
.categorybox ul .detail .xl_cate_recItem a:nth-of-type(1){
	border-top:1px solid #ddd;
	}
.categorybox ul .detail .xl_cate_recItem figure{
	display:flex;
	align-items:center;
	}
.categorybox ul .detail .xl_cate_recItem > a:nth-of-type(1){
	background:url(images/icon/no1.png) no-repeat right center;
	background-size:10%;
	}
.categorybox ul .detail .xl_cate_recItem > a:nth-of-type(2){
	background:url(images/icon/no2.png) no-repeat right center;
	background-size:10%;
	}
.categorybox ul .detail .xl_cate_recItem > a:nth-of-type(3){
	background:url(images/icon/no3.png) no-repeat right center;
	background-size:10%;
	}
.categorybox ul .detail .xl_cate_recItem figure img{
	width:60px;
	}
.categorybox ul .detail .xl_cate_recItem figure span.itemDetail{
	width:75%;
	box-sizing:border-box;
	}
.categorybox ul .detail .xl_cate_recItem figure span.itemDetail span{
	display:flex;
	width:100%;
	}
.categorybox ul .detail .xl_cate_recItem figure span.itemDetail span.itemName{
	display:block;
	}
.categorybox ul .detail .xl_cate_recItem figure span.itemDetail span.itemPrice{
	display:block;
	color:#f33;
	font-weight:bold;
	font-size:16px;
	}
.categorybox ul .detail .xl_cate_recItem figure span.itemDetail span.itemPrice small{
	font-size:11px;
	margin-left:3px;
}
/* category */

/* breadcrumbs */
.breadcrumbs{
	overflow:hidden;
	padding:5px 3%;
	}
.breadcrumbs ul{
	display:flex;
	align-items:center;
	flex-wrap:wrap;
}
.breadcrumbs li{
	font-size:13px;
	display:inline-block;
	position:relative;
	margin-right:10px;
}
.breadcrumbs li:after{
	content:"";
	display:inline-block;
	border:1px solid #555;
	width: 5px;
	height: 5px;
	border-left:0;
	border-bottom:0;
	position:absolute;
	right:-10px;
	top:calc((100% - 8px)/2);
	transform:rotate(45deg);
}
.breadcrumbs li:nth-last-of-type(1):after{
	display:none;
}
/* breadcrumbs */

/***********商品検索*********************************************************/
#searchbox{
	width:100%;
	background:#093;
	height:50px;
	box-sizing:border-box;
	position:relative;
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:0 3%;
	}
#searchbox .categoryList{
	}
#searchbox .categoryList h3{
	cursor:pointer;
	border-radius:2px;
	background:#f4f8f3;
	padding:5px 30px 5px 10px;
	color:#555;
	width:100%;
	font-size:15px;
	position:relative;
	height:40px;
	display:flex;
	align-items:center;
	}
#searchbox .categoryList h3:after{
	content:"";
	position:absolute;
	display:block;
	width:0;
	height:0;
	border:5px solid transparent;
	border-top-color: #555;
	right:10px;
	top:15px;
	}
#searchbox .categorybox {
    position: absolute;
    z-index: 99999;
    border: 1px solid #ddd;
	font-size:15px;
	top:100%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fcfff4+0,fafafa+100 */
	background: #fcfff4; /* Old browsers */
	background: -moz-linear-gradient(top, #fcfff4 0%, #fafafa 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #fcfff4 0%,#fafafa 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #fcfff4 0%,#fafafa 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfff4', endColorstr='#fafafa',GradientType=0 ); /* IE6-9 */
	}
#searchbox .categorybox ul li{
	border-top:1px solid #f4f8f3;
	border-bottom:1px solid #f4f8f3;
	padding:5px 10px;
	padding-right:20px;
	font-size:14px;
	position:relative;
	}
#searchbox .categorybox ul li:after{
	}
#searchbox .categorybox ul li a{
	text-decoration:none;
	color:#555;
	display:block;
	}
#searchbox .searchwindow{
	width:65%;
	}
#searchbox .searchwindow form{
	overflow:hidden;
	}
#searchbox .searchwindow form input[type="text"]{
	height:40px;
	padding:0 10px;
	border-radius:5px 0 0 5px;
	border:1px solid #ddd;
	float:left;
	box-sizing:border-box;
	width:calc(100% - 80px);
	}
#searchbox .searchwindow form button[type="submit"]{
	border: 1px solid #ddd;
	border-radius: 0 5px 5px 0;
	height: 40px;
	box-sizing: border-box;
	width: 80px;
	text-align: right;
	padding: 0 8px;
	color: #555;
	text-shadow: 1px 1px #fff;
	display:flex;
	align-items:center;
	font-size:15px;
	font-weight:bold;
	}
#searchbox .toAccounts{
	background: #fff;
	border-radius: 5px;
	height: 40px;
	width: 16%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 6px;
	box-shadow:inset 0 0 2px #999;
	padding:0 5px;
	}
#searchbox .toAccounts a{
	font-size:14px;
	text-decoration:none;
	display:flex;
	justify-content:center;
	align-items:center;
	border:1px solid #ddd;
	border-radius:5px;
	padding:3px 10px;
	filter:drop-shadow(0px 2px rgba(0,0,0,.3));
	}
#searchbox .toAccounts a:hover{
	opacity:.8;
	}
#searchbox .toAccounts a:nth-of-type(1){
	color: #555;
	background: #f4f8f3;
	}
#searchbox .toAccounts a:nth-of-type(2){
	color: #fff;
	background: #fcb04e;
	font-weight: bold;
	text-shadow: 0 2px 1px #777;
	}
/***********商品検索*********************************************************/
/***********メインコンテンツ*************************************************/
article{
	padding:20px 3%;
	justify-content:space-between;
	}
article.not(body#idx article){
	padding:5px 5%;
	}
article .mainComponent{
	width:80%;
}
article.mainContents h1{
	font-size: 22px;
    background: #f9fcf7;
    background: -moz-linear-gradient(top, #f9fcf7 0%, #eef4ed 100%);
    background: -webkit-linear-gradient(top, #f9fcf7 0%,#eef4ed 100%);
    background: linear-gradient(to bottom, #f9fcf7 0%,#eef4ed 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9fcf7', endColorstr='#eef4ed',GradientType=0 );
    border: 2px solid #ddd;
    padding: 10px 20px;
    margin-bottom: 20px;
    color: #444;
    position: relative;
}
article.subContents{
	padding:20px 3%;
	}
/*トップページのアイテム横並び*/
article .mainContents .ItemList{
	margin:20px 0 50px;
	}
article .mainContents .ItemList ul{
	margin:30px 0;
	align-items:flex-start;
	}
article .mainContents .ItemList ul li{
	width:16%;
	margin:0 2% 2%;
	}
article .mainContents .ItemList ul li:nth-of-type(5n + 1){
	clear:both;
	}
article .mainContents .ItemList h3{
	font-size:22px;
	position:relative;
	}
article .mainContents .ItemList ul li figure{
	width:75%;
	margin:0 auto;
	}
article .mainContents .ItemList ul li figure img{
	border:1px solid #ddd;
	box-sizing:border-box;
	}
article .mainContents .ItemList ul li a{
	text-decoration:none;
	}
article .mainContents .ItemList ul li span{
	display:block;
	}
article .mainContents .ItemList ul li .ItemName{
	font-size:14px;
	text-decoration:underline;
	}
article .mainContents .ItemList ul li .detail{
	font-size:12px;
	margin:5px 0;
	}
article .mainContents .ItemList ul li .Price{
	text-align:right;
	font-weight:bold;
	color:#f33;
	}
article .mainContents .ItemList ul li .Price small{
	font-size:11px;
	margin: 0 0 0 2px;
	}
/***********メインコンテンツ*************************************************/
/***********サイドエリア*************************************************/
article .right_banner_wrapper{
	width:17%;
}
article .right_banner_wrapper > section{
	margin-bottom:20px;
}
article .right_banner_wrapper > section:nth-last-of-type(1){
	margin:0;
}

/* 送料無料パネル */
.ship_free_panel{

}
.ship_free_panel .limit_time{
    color:#009933;
    font-weight:bold;
    position:relative;
    justify-content:center;
    align-items:center;
}
.ship_free_panel .limit_time:before{
    content:"";
    display:inline-block;
    height:1em;
    width:3px;
    background:#009933;
    transform:rotate(-15deg);
    margin-right:5px;
}
.ship_free_panel .limit_time:after{
    content:"";
    display:inline-block;
    height:1em;
    width:3px;
    background:#009933;
    transform:rotate(15deg);
    margin-left:5px;
}
/* 当日発送 */
.ship_free_panel .today_deliver{
    align-items:center;
    justify-content:space-between;
    margin-bottom:5px;
}
.ship_free_panel .today_deliver .track_icon{
    transform: scale(-1, 1);
    width:40px;
}
.ship_free_panel .today_deliver .track_icon .material-icons{
    color:#093;
    font-size:40px;
}
.ship_free_panel .today_deliver .texts{
    align-items:center;
    color:#fff;
    width:calc(100% - 50px);
    justify-content:space-between;
}
.ship_free_panel .today_deliver .texts span{
    background:#093;
    font-weight:bold;
    align-items:center;
    justify-content:center;
    width:37px;
    height:37px;
    font-size:20px;
}
/* 3000円以上で送料無料 */
.ship_free_panel .ship_free_main{
    background:#093;
    padding:5px;
}
.ship_free_panel .ship_free_main .ship_free_line{
    background:#fff;
    color:#093;
    padding:5px;
}
.ship_free_panel .ship_free_main .ship_free_line > span{
    display:block;
    text-align:center;
    font-weight:bold;
    font-size:20px;
}
.ship_free_panel .ship_free_main .ship_free_line div{
    text-align:center;
    font-size:50px;
    font-weight:bold;
    line-height:1.3em;
}
.ship_free_panel .ship_free_main .ship_free_line div span{
    font-size:20px;
    font-weight:bold;
    display:inline-block;
    margin-left:3px;
    letter-spacing:1px;
    position:relative;
}
.ship_free_panel .ship_free_main .ship_free_line div span:before{
    content: "(税込)";
    display: block;
    text-align: left;
    font-size: 15px;
    line-height: 1em;
}
.ship_free_panel .ship_free_main .ship_free_line div small{
    font-size:15px;
}
.ship_free_panel .ship_free_main .texts{
    align-items:center;
    justify-content:space-around;
    margin-top:5px;
}
.ship_free_panel .ship_free_main .texts span{
    font-weight:bold;
    color:#fff;
    font-size:30px;
}
/* 送料無料パネル */


/* 利用ガイド */
.guide_list{
	background:#f4f8f3;
	border:1px solid #aaa;
	border-radius:5px 5px 0 0;
	}
.guide_list h4{
	background:url(../images/icon/guide.png) no-repeat 20px center;
	background-size:14px;
	text-align:center;
	padding:5px;
	font-weight:bold;
	border-bottom:1px solid #aaa;
	}
.guide_list ul li{
	margin:10px 0 10px 10px;
	letter-spacing:5px;
	}
.guide_list ul li a{
	font-weight:bold;
	color:#444;
	text-decoration:none;
	text-shadow:1px 1px #fff;
	display:flex;
	align-items:center;
	}
.guide_list ul li a .material-icons{
	margin-right:10px;
	}
/* 利用ガイド */

/* 関連リンク */
article .right_banner_wrapper .relate_banner{

	}
article .right_banner_wrapper .relate_banner .banner_block{
	background:#fff;
	margin-bottom:10px;
	border-radius:5px;
	overflow:hidden;
	border:1px solid #aaa;
	}
article .right_banner_wrapper .relate_banner .banner_block:nth-last-of-type(1){
	margin:0;
	}
article .right_banner_wrapper .relate_banner a{
	text-decoration:none;
	display:block;
	}
article .right_banner_wrapper .relate_banner a:hover{
	opacity:.8;
	}
article .right_banner_wrapper .relate_banner figure{
	display:flex;
	justify-content:center;
	}
article .right_banner_wrapper .relate_banner img{
	}
article .right_banner_wrapper .relate_banner a span.txt{
	display:flex;
	justify-content:center;
	font-size:13px;
	text-align:center;
	line-height:1em;
	margin:5px 0 0;
	}
/* 関連リンク */

/* Twitterタイムライン */
article .right_banner_wrapper .twitter_timeline{

}

article .right_banner_wrapper .twitter_timeline .twitter_header{
	background:#1C9DEC;
	color:#fff;
	border-radius:5px 5px 0 0;
	padding:10px;
	font-weight:bold;
}
article .right_banner_wrapper .twitter_timeline .twitter_header .icon{
	width:25px;
	margin-right:5px;
}
article .right_banner_wrapper .twitter_timeline .twitter_body{
	height:415px;
	overflow-y:scroll;
	border:1px solid #aaa;
	border-radius:0 0 5px 5px;
}

/* Twitterタイムライン */

/***********サイドエリア*************************************************/

/***********フッター*****************************************************/
footer{
	padding:2% 5%;
	background:#eee;
	}
footer .sitemap{
	overflow:hidden;
	padding:0 0 20px 0;
	position:relative;
	}
footer .sitemap span.to_top{
	position:absolute;
	display:block;
	right:0;
	bottom:0;
	background:#666;
	font-size:13px;
	}
footer .sitemap span.to_top a{
	color:#fff;
	position:relative;
	padding:5px 10px;
	padding-right:30px;
	text-decoration:none;
	display:block;
	}
footer .sitemap span.to_top a:hover{
	text-decoartion:underline;
	}
footer .sitemap span.to_top a:after{
	content:"";
	display:block;
	position:absolute;
	right:10px;
	top:calc((100% - 5px)/2);
	width:8px;
	height:8px;
	border:2px solid #fff;
	transform:rotate(45deg);
	border-bottom:0;
	border-right:0;
	}
footer .sitemap .left{
	width:40%;
	float:left;
	}
footer .sitemap .center{
	width:35%;
	float:left;
	}
footer .sitemap .right{
	float:left;
	}
footer .sitemap h4{
	font-weight:bold;
	margin:20px 0 10px 0;
	position:relative;
	display:inline-block;
	padding:0 10px;
	color:#444;
	}
footer .sitemap h4:before{
	content:"";
	display:block;
	width:3px;
	border:1px solid #555;
	border-right:0;
	left:0;
	top:0;
	position:absolute;
	height:100%;
	box-sizing:border-box;
	}
footer .sitemap h4:after{
	content:"";
	display:block;
	width:3px;
	border:1px solid #555;
	border-left:0;
	right:0;
	top:0;
	position:absolute;
	height:100%;
	box-sizing:border-box;
	}
footer .sitemap ul li{
	font-size:13px;
	margin-bottom:5px;
	}
footer .sitemap ul li span{
	display:inline-block;
	margin-right:5px;
	border-radius:5px;
	padding:2px 5px;
	background:#093;
	width:65px;
	text-align:center;
	color:#fff;
}
.corporatemark{
	background:#666;
	overflow:hidden;
	padding:15px 5%;
	position:relative;
	}
.corporatemark .sns_icons{

}
.corporatemark .sns_icons ul li a{
    display: inline-block;
    width: 30px;
    margin-right: 10px;
    transition: .3s;
    filter: drop-shadow(0px 2px #444);
}
.corporatemark .sns_icons ul li a:hover{
	opacity:.8;
	transition:.3s;
	filter:unset;
}
.corporatemark .sns_icons ul li:nth-last-of-type(1) a{
	margin:0;
}
.corporatemark .YZWlogo{
	width:10%;
}
.corporatemark small{
	font-size:12px;
	text-align:right;
	color:#fff;
	display:block;
	width:100%;
}
/***********フッター*****************************************************/

