@charset "utf-8";
/* CSS Document */

body{
	width:100%;
	min-width: 100% !important;
	max-width: 100% !important;
	margin:0;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
	}

section { margin-bottom:30px !important;}

.wrap {	overflow: hidden;/*右側余白対策*/}

/*-------------------------------------------------------

　　　　　　　ヘッダーナビゲーション　　　　　　　　　

-------------------------------------------------------*/


#header-navi {
	width:100%;
	max-width:100%;
	z-index: 9999;
	position: fixed;
    top: 0;
/*    left:5px;
*/	padding:10px;
	background-color:#fff;
	box-sizing: border-box;
}

#header-list {
	width:100%;
	max-width:100%;
}

#header-list li {
	display:inline-block;
	text-align:center;
	vertical-align:middle;
}

#header-list li.item-nav {
	margin:0;
	padding:0;
	width: 13%;
}

#header-list li.item-logo {
	width: 70%;
	height: auto;
}


#header-list li.item-logo img{
	width: 100%;
	max-width:350px;
	min-width:100px;
}

#header-list li.item-logo_uny {
	width: 20%;
	height: auto;
}

#header-list li.item-logo_onlineshop {
	width: 50%;
	height: auto;
}

#header-list li.item-logo_uny img,
#header-list li.item-logo_onlineshop img {
	width: 100%;
}

#header-list li.item-cart {
	width: 13%;
	text-align:right;
}

#header-list li.item-cart img{
	width: 100%;
	max-width:46px;
	min-width:23px;
	padding:0 0 0 3px;
}


@media screen and (max-width: 420px) {
#header-list li.item-nav {
	margin:0;
	padding:0;
	width: 10%;
}

#header-list li.item-logo {
	width: 75%;
	height: auto;
}

#header-list li.item-cart {
	width: 10%;
	text-align:right;
}
}

/*-----ハンバーガーメニュー　ここから-----*/

#nav-drawer {
  position: relative;
  text-align:left;

}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;

}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーアイコン*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 28px;/*長さ*/
  border-radius: 3px;
  background: #000;
  display: block;
  content: '';
  cursor: pointer;
}

#nav-open span:before {
  bottom: -10px;
}

#nav-open span:after {
  bottom: -20px;
}

/*透過背景部分*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;

}

/*透過背景部分の閉じる表示*/
#nav-close::before {
    color: #fff;
    content: url(../img/new/icon-sp-close.png);
    display: block;
    position: absolute;
    left: 80%;
    text-align: center;
    top: 5px;
    width: 50px;

}

/*ナビ ちらつき防止*/

.preload{
  transition:0 !important;
}


/*ナビ*/

#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 80%;/*最大幅）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  -webkit-backface-visibility: hidden;
  transform: translateX(-105%);/*左に隠しておく*/
}

#nav-content div.user-name{
	margin:15px;
	font-size:24px;
	text-align:left;
}

#nav-content ul {
	list-style:none;
	margin:0;
	padding:0;
	text-align:left;
}




#nav-content ul li {
	display:block;
	text-align:left;
	position: relative;
	padding:15px;
	border-bottom:#e9e9e9 solid 1px;
}

#nav-content ul li a {
	display:block;
	text-decoration:none;
	color:#000;
}

#nav-content ul li:not(:first-child)::after{
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	right: 20px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #bababa;
    border-right: 1px solid #bababa;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-content ul li.category {
	font-weight:bold;
	background-color:#f2f2f2;
}

#nav-content ul li.category-arrow::after{
	content: "";
	position: absolute;
	display: block;
	top: 45%;
	right: 20px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-content .category-border {
	border-bottom: 2px solid #e9e9e9;
}


#nav-content .nav-news{
	padding:0 15px 15px;
	font-size:14px !important;
}


/*チェックが入ったら表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}




/*-----ハンバーガーメニュー　ここまで-----*/





/*-------------------------------------------------------

　　　　　ヘッダーナビゲーション　ここまで　　

-------------------------------------------------------*/

/*-------------------------------------------------------

　　　　　検索窓デザイン修正　ここから　

-------------------------------------------------------*/

.g_search {
	width:380px;
	height:38px;
	padding:10px;
	margin:0;
	border-color:#000;
	font-size:14px;
}

.g_search-sp {
	display: block;
    position: absolute;
    top: 10px;
    right: 13px;
    padding: 0;
    width: 40px;
}


form.search_form_sp {
	margin:0 auto;
	padding: 0px 80px 0px 10px;
	position: relative;
	background: #ffffff;
	/*-moz-box-shadow: #333 0 10px 10px -10px inset;
	-webkit-box-shadow: #333 0 10px 10px -10px inset;
	box-shadow: #333 0 10px 10px -10px inset;*/
}

form.search_form_sp input.keyword_sp{
	border: 1px solid #000;
	padding: 5px 0 5px 25px;
	height: 28px;
	font-size: 16px;
	width: 100%;
	color: #2d2d2d !important;
	margin:0;
	/*	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	-moz-box-shadow: #fff 0 0 1px 1px inset;
	-webkit-box-shadow: #fff 0 0 1px 1px inset;
	box-shadow: #fff 0 0 1px 1px inset;*/
}

input::placeholder {
	color: #999;
}

input:focus::placeholder{
    color: transparent;
}
/*Chrome・Safari用*/
input:focus::-webkit-input-placeholder{
    color: transparent;
}

/*Firefox18以前用*/
input:focus:-moz-placeholder{
    color: transparent;
}
/*Firefox19以上用*/
input:focus::-moz-placeholder {
    color: transparent;
}

form.search_form_sp .search_button_sp {
	display: block;
	position: absolute;
	top: 0px;
	right: 15px;
	padding: 0;
	width: 40px;
	height: 40px;

}

/*-------------------------------------------------------

　　　　　検索窓デザイン修正　ここまで　　

-------------------------------------------------------*/

/*-------------------------------------------------------

　　　　　ニュース　ここから　　

-------------------------------------------------------*/


#top-news {
	margin:10px;
	border:solid 1px #000;
	padding:10px;
/*	display:flex;
	justify-content:center;
	align-items: center;*/
	}

#top-news a {
	color:#000;
}


#top-news .notice {
	/*font-weight:bold;*/
	/*width:72px;*/
	/*font-size:14px !important;*/
	display: none;
}

#top-news .caption {
	/*flex: 1;*/
}

#top-news .caption ul li{
	/*margin-left:1.5em;*/
	list-style:none;
	line-height:1.4;
	margin-bottom:5px;
	font-size:0.8rem !important;
	}

#top-news .caption ul li dd {
	font-size:0.8rem !important;
	/*display: initial;*/
	/*margin-left: 1em;*/
}

#top-news .caption ul li:last-child{
	margin-bottom:0px;
}

/*-------------------------------------------------------

　　　　　ニュース　ここまで　　

-------------------------------------------------------*/

/*-------------------------------------------------------

　　　　　メイン画像エリア　ここから　　

-------------------------------------------------------*/

#header-contents {
	margin:15% 0 0 0;
	padding:10px 0;
}

#main-img {
	width:100%;
	margin:30px auto 0;
}

/*-------------------------------------------------------

　　　　　メイン画像　ここまで

-------------------------------------------------------*/


/*-------------------------------------------------------

　　　　　コンテンツエリア　ここから　　

-------------------------------------------------------*/

/*コンテンツエリア*/

div#contents {
	margin:50px auto 0;
	padding:10px;
	}

div#contents.sp-banner{
	margin: 28px auto 0;
  padding: 10px;
}

div#contents .ttl{
	margin:30px 0 20px;
	font-size:24px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	text-align:center;
	padding-top: 100px;
	margin-top: -100px;
}

div#contents ul.recommend-item img {
	margin-bottom:0;
}

div#contents ul.recommend-item {
	max-width:100%;
	display: flex;
	flex-wrap: wrap;
	}

div#contents ul.recommend-item img {
	width:100%;
}

div#contents ul.recommend-item li{
	display:block;
	width:48%;
	margin:2% 0;
	font-weight:800;
	color:#000;
}

div#contents ul.recommend-item li:nth-child(odd){
	margin-right:4%;
}

div#contents ul.recommend-item li a {
	color:#000;
}

div#contents ul.recommend-item li a .price {
	color:#F30;
	font-size:140%;
}

div#contents ul.recommend-item li a:hover{
	opacity:0.75;
}

div#contents .featured-item{
	margin:50px 0;
}


/*カテゴリーボタンエリア*/
.category-btn{
	background-color:#F3F3F3;
	padding:20px 0px;
	margin: 30px 0px;
}
.category-btn ul{
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
    margin: 30px 10px;
}

.category-btn .ttl {
    font-size: 1.1em;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: bold;
	text-align: center;
	position: relative;
    margin: 10px;
}

.category-btn .ttl:after {
    content: "";
    width: 100%;
    height: 1.2px;
    background-color: #aaa;
    display: block;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%,0);
}

.category-btn .ttl span {
    font-size: 0.8em;
	vertical-align: middle;
    padding-left: 20px;
}

.category-btn ul li{
	width:48%;
}

.category-btn ul li span{
	display:block;
	line-height:1.3;
	color:#000;
	margin-top:10px;
	text-align:left;
}

/*ご予約サイトの便利な使い方　ここから*/

.info-receipt-container-top {
	width:92%;
	border:1px solid #000;
	padding:12px;
	text-align:center;
	margin:50px auto;
	line-height:1.3;

}

.info-receipt-container-top .title{
	font-size:140% !important;
	line-height:1;
	font-weight:bold;
	text-align:center;
	margin:10px 0;
}

.info-receipt-container-top .lead{
	font-weight:bold;
	margin:5px 0;

}

.info-receipt-container-top .flexbox{
	display:flex;
	justify-content: center;
}

.info-receipt-container-top .item {
	margin:0 5px;

}

.info-receipt-container-top .item .catch{
	display:block;
	font-size:120%;
	font-weight:bold;
	color:#C00;
	line-height:1;
	margin-bottom:5px;
}

.info-receipt-container-top .item .memo{
	font-size:12px;
	margin:0 auto;
	line-height:1.5;
	padding:0 10px;
}

.info-receipt-container-top img{
	padding:10px;
	width:100%;
	max-width:80px;
}


/*ご予約サイトの便利な使い方　ここまで*/


/*-------------------------------------------------------

　　　　　コンテンツエリア　ここまで　　

-------------------------------------------------------*/

/*-------------------------------------------------------

　　　　　フッターエリア　ここから　　

-------------------------------------------------------*/

#footer {
	background-color:#F3F3F3;
	padding:30px 10px 15px;
/*	margin-top:60px;*/
}

#footer ul {
	margin-bottom:20px;
	text-align: left;

}

#footer ul li {
	margin-bottom:5px;
	position:relative;
	padding-left:1.25em;
	margin-bottom:10px;
	font-size:14px !important;
	}

#footer ul li a{
	color:#000;
}


#footer ul li a::after {
	content: "";
	position: absolute;
	display: block;
	top: 6px;
	left: 0;
    width: 6px;
    height: 6px;
    border-top: 1px solid #626262;
    border-right: 1px solid #626262;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#copyright{
	text-align:center;
	font-size:12px !important;
}

/*-------------------------------------------------------

　　　　　フッターエリア　ここまで　　

-------------------------------------------------------*/
