h1,h2,h3,ul,li,p {
	margin:0;padding:0;font-weight:normal;
}
a,img,ul,li {
	border:0;
}

body {
	margin:0; padding:0;
	font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	color: #333;
	font-size: 16px;
}

input, select, textarea {
	font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	color: #333;
	font-size: 16px;
	padding: 3px;
}

h1 img {
	height: 50px;
}

h2 {
	font-weight: bold;
	font-size: 24px;
	padding: 5px;
	color: #592d15;
	border-bottom: 1px solid #c0b8b5;
	margin-bottom: 10px;
}
h3 {
	font-weight: bold;
	margin: 10px 0;
	font-size: 16px;
	padding: 10px 10px;
	background: linear-gradient(#a39894, #dbd7d4);
	border-bottom: 1px dotted #c0b8b5;
}
a.anchor {
    display: block;
    padding-top: 90px;
    margin-top: -90px;
}
header {
	position: fixed;
	width: 100%;
	height: 90px;
	background-color: #311701;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .25);
    z-index: 1000;
}

.outline_table {
	margin: 0 auto;
	width: calc(100% - 20px);
	border-collapse: collapse;
}
.outline_table th,
.outline_table td  {
	vertical-align: middle;
	border: 1px solid #666;
	border-collapse: collapse;
	padding: 10px;
}
.outline_table th {
	width: 20%;
	min-width: 80px;
	text-align: left;
	font-weight: normal;
	background-color: #af8661;
	color: #fff;
}


@media screen and (max-width: 960px) {

header {
	height: 60px;
}

}

#header_inner,
#content_inner,
#footer_inner {
	margin: 0 auto;
	max-width: 1200px;
}

header h1 {
	display: inline-block;
	width: 300px;
	margin-top: 20px;
}

@media screen and (max-width: 1240px) {

header h1 {
	margin-left: 10px;
}

}


@media screen and (max-width: 960px) {
header h1 {
	margin-top: 10px;
}


.shop #content_inner {
	padding: 0 5px;
}

}

#nav-content ul {
	display: inline-block;
}

#nav-content li {
	list-style:none;
	display: inline;
}

header nav {
	display: inline-block;
	text-align: right;
	width: calc(100% - 310px);
}

.nav-logo {
	display: none;
}

@media screen and (max-width: 1240px) {

header nav {
	width: calc(100% - 320px);
}

}

header nav a {
	display: inline-block;
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	padding: 0 5px;
}

@media screen and (max-width: 960px) {

header h1 {
	width: 100%;
	text-align: center;
}

header h1 img {
	height: 40px;
}

}


.container {
	padding-top: 100px;
	max-width: 1000px;
	margin: 0 auto;
}

@media screen and (max-width: 960px) {
.container {
	padding-top: 70px;
}

}

#footer {
	margin-top: 40px;
	background-color: #e0e0e0;
	color: #666;
	padding-bottom: 10px;
}
#footer_inner {
	text-align: center;
	padding-top: 20px;
}
.footer_logo {
	width: 200px;
}
.footer_navi {
	margin: 15px 0;
}
.footer_navi a {
	display: inline-block;
	font-size: 14px;
	text-decoration: none;
	color: #666;
	padding: 0 5px;
}
.footer_copy {
	margin: 15px 0;
	font-size: 14px;
}

.nav-unshown {
  display:none;
}

@media screen and (max-width: 960px) {

.page .header_inner {
	padding: 2px;
	margin: 0 auto;
	text-align: center;
}

#nav-drawer {
  position: relative;
}

/*アイコンのスペース*/
#nav-open {
	display: inline-block;
	width: 30px;
	height: 22px;
	vertical-align: middle;
	position:absolute;
	top: 20px;
	left: 15px;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
	position: absolute;
	height: 3px;/*線の太さ*/
	width: 25px;/*長さ*/
	border-radius: 3px;
	background: #ffe;
	display: block;
	content: '';
	cursor: pointer;
}
#nav-open span:before {
	bottom: -8px;
}
#nav-open span:after {
	bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#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-content {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999; /*最前面に*/
	width: 90%; /*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 330px; /*最大幅（調整してください）*/
	height: 100%;
	background: #80684e; /*背景色*/
	transition: .3s ease-in-out; /*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%); /*左に隠しておく*/
	background-repeat: no-repeat;
	background-position: center 10px;
	background-size: 120px;
}

/* チェックが入ったらもろもろ表示 */
#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);
}

.page .contents {
	margin-top: 50px;
}

.gnav {
	position: static;
	text-align: left;
}

.gnav__menu {
    margin-top: 20px;
    margin-left: 20px;
	display: block;
}

.gnav__menu__item {
    display: block;
    padding: 10px 5px;
	font-size: 1.2em;
}
.gnav__menu__item a {
    display: block;
}

.gnav__menu__item a i {
	margin-right: 10px;
	display: inline-block;
}

.nav-logo {
	display: block;
	text-indent: 5px;
	margin-top: 30px;
}
.nav-logo a img {
	width: 80%;
}

header nav a {
	color: #fff;
	font-size: 18px;
}

}


/* top */
.toppage .container {
	padding: 20px;
}
.slider {
	padding-top: 100px;
	text-align: center;
}

@media screen and (max-width: 960px) {
.slider {
	padding-top: 70px;
}

}

.image_menu {
	text-align: center;
	margin: 10px 0;
}
.image_menu a {
	margin: 0 5px;
}
.image_menu a img {
	width: calc(100% / 3 - 15px);
}

@media screen and (max-width: 935px) {

.image_menu a {
	margin: 0;
	width: calc(100% / 3 - 10px);
}
.image_menu a img {
	width: calc(100% / 3 - 10px);
}

}

@media screen and (max-width: 480px) {

.image_menu a {
	display: block;
	margin: 0;
	width: 100%;
}
.image_menu a img {
	width: 100%;
}


}

.toppage h2 {
	text-align: center;
	margin: 20px 0;
	font-size: 28px;
	color: #333;
	line-height: 24px;
	border-bottom: none;
}

.title_desc {
	font-size: 12px;
	color: #cf9067;
}

.news {
	margin-top: 40px;
}

.news_contents {
	margin-top: 10px;
	background-color: #efefef;
	padding: 10px;
	border-radius: 3px;
	font-size: 16px;
}

.news_contents .news_item .date {
	display: table-cell;
	padding: 5px;
}
.news_contents .news_item .news_detail {
	display: table-cell;
	padding: 5px;
}
.news_contents .news_item .date .fa-caret-right {
	color: #cf9067;
	display: inline;
	margin-left: 5px;
}


@media screen and (max-width: 480px) {

.news_contents .news_item .date {
	display: block;
	padding: 5px;
}
.news_contents .news_item .news_detail {
	display: block;
	padding: 5px;
}

.news_contents .news_item .date .fa-caret-right {
	display: none;
}

}

.insta_title {
	text-align: center;
	font-size: 36px;
	margin: 30px 0;
	line-height: 8px;
}
.insta_badge_block {
	text-align:right;
}
.insta_badge {
	margin: 5px 0 0 0;
	display:inline-block;
	border-radius: 3px;
	border: 1px solid #ccc;
	background-color: #e0e0e0;;
	color: #666;
	padding: 3px 5px;
	text-decoration: none;
}

.banners {
	margin-top: 40px;
	text-align: center;
}

.banners img {
	max-width: 685px;
	width: 100%;
}
.blog .news_detail a{
	text-decoration: none;
	color: #333;
}
.blog .news_detail a:hover {
	color: #cf9067;
	text-decoration: underline;
}
.link_icon {
	color: #cf9067;
}
.blog_entry {
	font-size: 14px;
	color: #666;
	line-height: 24px;
	height: 48px;
	overflow: hidden;
}


/* 左右の矢印の色を変える */
.slick-prev:before,
.slick-next:before {
    color: #000;
}
/* 左右の矢印の位置を変える */
.slick-next {
    right: 20px;
    z-index: 99;
}
.slick-prev {
     left: 15px;
    z-index: 100;
}
/* スライド数のドットの色を変える */
.slick-dots li.slick-active button:before,
.slick-dots li button:before {
    color: #fff;
}
/* スライド画像の横幅可変 */
.slider img {
	width: 100%;
	height: auto;
}

.slick-slide img {
	opacity: 0.5;
}

.slick-slide.slick-center img {
	opacity: 1;
}

.slick-dots li button:before
{
    font-size: 30px !important;
    line-height: 30px !important;
}

/* Shop */

.shop .search_box select {
	font-size: 16px;
}
.shop .ib-45 {
	display: table-cell;
	width: 45%;
	vertical-align: top;
}
.shop .search_box {
	text-align: right;
}
.shop .shop_info {
	padding:10px;
	border-radius:3px;
	background-color:#f0f0f0;
	min-height:150px;
}
.shop .shop_addr {
	padding:10px;
	border:1px solid #f0f0f0;
	margin-bottom:8px;
	width:478px;
}
.shop .shop_content_body {
	padding-left: 20px;
}
.shop_content .r-col {
	padding-left: 5px;
}

.shop .l-col img {
	width: calc(100% / 2 - 2px);
}


@media screen and (max-width: 800px) {

.shop .ib-45 {
	display: block;
	width: calc(100% - 20px);
	margin: 0 auto;
}
.shop .shop_info {
	min-height:auto;
}
.shop .shop_addr {
	margin: 10px 0;
	width: calc(100% - 20px);
}
.shop .shop_content_body {
	padding-left: 0;
}
.shop_content .r-col {
	padding-left: 0;
}

.shop .map {
	width: 100%;
}

}

@media screen and (max-width: 480px) {

.shop .search_box {
	text-align: center;
}

}

@media screen and (max-width: 320px) {

.shop .l-col img {
	width: 95%;
}


}

/* Menu */

.menu_page {
	display: inline-block;
	width: calc((100% - 10px) / 4);
	margin-bottom: 10px;
}
.menu_page img {
	width: calc(100% - 10px);
}


@media screen and (max-width: 800px) {

.menu_page {
	display: inline-block;
	width: calc((100% - 10px) / 3);
	margin-bottom: 10px;
}
.menu_page img {
	width: calc(100% - 10px);
}

}

@media screen and (max-width: 640px) {

.menu_page {
	display: inline-block;
	width: calc((100% - 10px) / 2);
	margin-bottom: 10px;
}
.menu_page img {
	width: calc(100% - 10px);
}

}

/* About */
.history .date {
	width: 120px;
	display: inline-block;
}
.history .his_item {
	display: inline-block;
}
.his_shop a {
	font-weight: bold;
	text-decoration: none;
	color: #333;
}

@media screen and (max-width: 600px) {

.history .date {
	display: block;
}
.history .his_item {
	display: block;
	
}

}

/* Onine Store */
.item {
	display: inline-block;
	width: calc(100% / 2 - 5px);
	margin-bottom: 10px;
}

.item_image {
	width: 150px;
	height: 150px;
	margin-right: 5px;
	float: left;
}
.item_image img {
	width: 150px;
	height: 150px;
	border: 1px solid #666;
}
.in_image {
	display: none;
}
.item_body {
	width: calc(100% - 170px);
	height: 120px;
	padding: 5px;
	float: left;
}
.item_body::after {
	clear: both;
}

.item_name {
	width: 100%;
	color: #592e15;
	font-size: 18px;
	font-weight: bold;
	position: relative;
}
.item_desc {
	width: 100%;
	height: 50px;
/*	overflow: hidden;*/
}

.item_order {
	width: 100%;
	height: 50px;
}
.item_order_unit {
	text-align: right;
}

.item_order .unit {
	width: 50px;
}

.item_price {
	text-align: right;
	font-size: 20px;
	font-weight: bold;
	color: #f00;
	margin-right: 5px;
}

.add_cart {
	margin-left: 10px;
	display: inline-block;
	background-color: #900;
	border-radius: 3px;
	color: #fff;
	font-size: 18px;
	padding: 2px 5px;
	text-decoration: none;
}

@media screen and (max-width: 1024px) {

.item {
	display: inline-block;
	width: 100%;
	margin-bottom: 5px;
	border-bottom: 1px dotted #999;
}

.item_image {
	display: none;
}
.item_body {
	width: calc(100% - 10px);
	height: auto;
	float: none;
}
.item_name {
	margin-bottom: 5px;
}
.in_image {
	width: 100px;
	height: 100px;
	display: inline;
	margin: 0 5px 5px 0;
}
.item_desc {
	min-height: 100px;
	overflow: visible;
}
.item_order {
	margin-bottom: 20px;
}
.item_price {
	margin: 5px 0;
}

}


/* Privacy */

.privacy p, 
.privacy li {
	line-height: 1.8em;
}

.privacy ol {
	padding-right: 10px;
}

.privacy p,
.privacy ul {
	padding: 10px;
}


.order_flow {
	text-align: center;
	margin: 20px 0;
}

@media screen and (max-width: 830px) {

.order_flow img {
	width: calc(100% / 4 - 5px);
}

}

/* Cart */

.shopping_cart .list_head {
	background-color: #bfafa5;
	border-top: 1px solid #592e15;
	border-bottom: 1px solid #592e15;
}

.shopping_cart .col {
	display: inline-block;
	padding: 5px;
}

.shopping_cart .c1 { width: calc(100% - 570px); }
.shopping_cart .c2 { width: 125px; }
.shopping_cart .c3 { width: 95px; }
.shopping_cart .c4 { width: 60px; }
.shopping_cart .c5 { width: 60px; }
.shopping_cart .c6 { width:100px; }
.shopping_cart .c7 { width: 10px; }

.shopping_cart .c { text-align:center; }

.shopping_cart .r { text-align:right; }
.shopping_cart .l { text-align:left; }

.shopping_cart .list_body {
	border-bottom: 1px solid #ccc;
}

a.remove_item {
	color: #666;
}

.subtotal {
	margin-top: 10px;
	border-bottom: 1px solid #ccc;
}

.subtotal .label,
.subtotal .value {
	display: inline-block;
	padding: 5px;
	font-size: 110%;
	font-weight: bold;
}

.subtotal .label {
	margin-left: calc(100% - 280px);
	width: 60px;
	text-align:center;
}
.subtotal .value {
	width: 82px;
	text-align:right;
}
.command {
	margin-top: 40px;
	text-align:center;
}
.command .button {
	margin: 5px;
	display: inline-block;
	padding: 10px 15px;
	border-radius: 3px;
	border: 1px solid #999;
	text-decoration: none;
	color: #fff;
	background-color: #67412b;
	width: 130px;
}
.order h3 {
	background: none;
	border: none;
}
.order .note {
	width: 95%;
	margin: 0 auto 20px auto;
}
.ship_note {
	margin-top: 15px;
/*	text-align:right;*/
	color: #333;
	border: 1px solid #ccc;
	padding: 10px;
	font-size: 14px;
}

@media screen and (max-width: 640px) {

.shopping_cart .c1 {
	display: block;
	width: auto;
}
.shopping_cart .c2 {
	width: calc(100% - 380px);
	text-align: left;
}
.shopping_cart .c6 { width:70px; }
.subtotal .label {
	margin-left: calc(100% - 260px);
}

}

@media screen and (max-width: 480px) {

.shopping_cart .c1 {
	display: inline-block;
	width: calc(50% - 12px);
}
.shopping_cart .c2 {
	width: calc(50% - 12px);
}
.shopping_cart .c3 {
	margin-left: 0;
}

.subtotal {
	text-align: right;
}
.subtotal .label {
	margin-left: 0;
	width: 100px;
	font-size: 24px;
}
.subtotal .value {
	margin-right: 10px;
	margin-left: 10px;
	width: 100px;
	font-size: 24px;
}

}

@media screen and (max-width: 365px) {
.shopping_cart .c7 {
    width: auto;
    display: block;
    text-align: right;
}
}
@media screen and (max-width: 320px) {

.shopping_cart .c4 { width: 40px; }
.shopping_cart .c5 { width: 50px; }
.shopping_cart .c6 { font-size: 0.9em; width: 50px; }

}


/* Shipping */

.ent-form {
	margin-left: 10px;
	margin-bottom: 5px;
}

.ent-form .label {
	display: inline-block;
	width: 200px;
	padding: 5px;
	margin-bottom: 5px;
}
.ent-form .value {
	display: inline-block;
	width: 400px;
	border: 1px solid #999;
	border-radius: 3px;
}
.ent-form .value input[type="text"] {
	outline: none;
	border: none;
	padding: 5px;
	width: calc(100% - 10px);
}
.ent-form .value select {
	outline: none;
	border: none;
	padding: 5px;
	width: 100%;
}
.ent-form .value input[type="radio"] {
	outline: none;
	border: none;
	margin: 8px;
}

.ent-form .value.value-zip {
	width: 230px;
}
.ent-form .value input.zip {
	width: 150px;
}
.ent-form .value .search_zip {
	display: inline-block;
	padding: 3px;
	border-radius: 3px;
	color: #fff;
	background-color: #311701;
	text-decoration: none;
	font-size: 14px;
	width: 60px;
	text-align: center;
	margin: 3px 0;
}
.ent-form .value.value-pref {
	width: 230px;
}
.ship_info .ent-form {
	margin-left: 0;
	margin-bottom: 5px;
}
.ent-form .value.value-comment {
	width: 605px;
}
.ent-form textarea {
	outline: none;
	border: none;
	width: calc(100% - 10px);
	height: 100px;
	font-size: 16px;
}

@media screen and (max-width: 660px) {

.ent-form .label {
	display: block;
}

.ent-form .value,
.ent-form .value.value-comment {
	display: block;
	width: calc(100% - 10px);
}

}

@media screen and (max-width: 480px) {

.ent-form .value.value-zip,
.ent-form .value.value-pref {
	width: calc(100% - 10px);
}
.ent-form .value input.zip {
	width: calc(100% - 80px);
}

}

.page_desc {
	padding: 5px 15px;
}



/* inquiry */
.contact .ent-form.comment {
	margin-left: 220px;
	position: relative;
	top: -34px;
}
.require {
	color: #f00;
}
.ent-form .value .confirm_value {
	display: inline-block;
	padding: 5px;
}
.err_msg {
	padding: 5px;
	margin-bottom: 15px;
}
@media screen and (max-width: 660px)
{

.contact .ent-form.comment {
	position: static;
	top: 0;
	margin-left: 10px;
}

}


.form-agree {
	margin-left: 220px;
}
.value-agree {
	margin-top:10px;
}
@media screen and (max-width: 660px) {

.form-agree {
	margin: 20px 10px 0 10px;
}
.value-agree {
	text-align: center;
}
.agree-desc {
	display: none;
}
}
