@charset "euc-jp";

@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,700&display=swap');

/*
	reset
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
	font-weight: 400;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;  
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
    box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6,p,div,ul,ol,li,dl,dt,dd,a {
	box-sizing: border-box;
}
ul, ol {
    list-style:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    color: #000000;
    text-decoration: none;
}
/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
input, select {
    vertical-align:middle;
}
input[type="text"] {
    padding: 0;
    border: none;
    border-radius: 0;
    outline: none;
    background: none;
}
button{
	background: transparent;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}
/*
	reset END
*/

/* All device width ============================================================================*/
body {
	font-size: 12px;
	font-family: 'Noto Serif JP',メイリオ,Meiryo,serif;
	line-height: 1.75;
	color: #544621;
	letter-spacing: 0.05em;
	/* overflow: hidden; */
}
.all {
    overflow: hidden;
}
.all img {
	width: 100%;
	vertical-align: bottom;
}
a {
	display: block;
 	transition: 0.2s ease-out;
}
a:link, a:visited {
	color: #544621;
}
a:hover {
	text-decoration: none;
	opacity: 0.7;
}
body select, body button {
	font-family: 'Noto Serif JP',メイリオ,Meiryo,serif;
}
p.item_none {
	text-align: center;
	margin: 20px 0;
}
@keyframes show {
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}

/* PC ==========================================================================================*/
@media screen and (min-width: 769px) {
.pc{display: block}
.sp{display: none}

/*
	header
*/
.header {
    padding: 33px 0 ;
}
.hd_inner {
    max-width: 980px;
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.hd_logo {
    width: 99px;
}

.hd_nav_block {
    width: calc(95.6% - 99px);
}
ul.hd_nav_category {
    width: 100%;
    padding: 13px 0 15px 0;
    display: flex;
  	justify-content:space-between;
    /*flex-wrap: wrap;*/
    border-bottom: thin solid #544621;
    font-size: 11.3px;
}
ul.hd_nav_category li:nth-child(2) {
    /*margin-left: 10.1%;*/
}
ul.hd_nav_category li:nth-child(3) {
     /*margin-left: 9.1%;*/
}
ul.hd_nav_category li:nth-child(4) {
    /*margin-left: 6.5%;*/
}
ul.hd_nav_category li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
ul.hd_nav_category li a:link, ul.hd_nav_category li a:visited {
    color: #000000;
}

ul.hd_nav_category li a img {
    width: 48px;
    margin-right: 5px;
}

ul.hd_nav_other {
    display: flex;
    justify-content: flex-end;
    font-size: 10px;
    padding: 17px 0;
}
ul.hd_nav_other li:nth-child(2) {
    margin-left: 36px;
}
ul.hd_nav_other li:nth-child(3) {
    margin-left: 40px;
}
ul.hd_nav_other li:nth-child(4) {
    margin-left: 35px;
}
li.nav_search {
	cursor: pointer;
    transition: 0.2s ease-out;
}
li.nav_search:hover {
    opacity: 0.7;
}
.search_txt_box {
	display: none;
	position: absolute;
	bottom: -10px;
	right: 60px;
	animation: show 0.3s ease-out;
}
.search_txt_box.active {
	display: flex;
}

.search_txt_box input[type="text"] {
    width: 100px;
    border: 1px solid #544621;
    font-size: 11px;
    padding: 0 5px;
}
.search_txt_box input[type="submit"] {
    border: 1px solid #544621;
    background: #544621;
    font-size: 11px;
    color: #ffffff;
    padding: 0 5px;
}


ul.hd_nav_other li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
ul.hd_nav_other li.nav_cart img {
    width: 18.5px;
    margin-right: 10px;
}

ul.hd_nav_other li.nav_search img {
    width: 17px;
    margin-right: 7px;
}
  
/*
	contents
*/
.inner {
    max-width: 980px;
    width: 90%;
    margin: auto;
}
/*パンくずリスト*/
.footstamp {
    font-size: 10px;
}
.footstamp a {
    display: inline;
}
.footstamp, .footstamp a:link, .footstamp a:visited {
    color: #aaa599;
}
.footstamp span {
    padding: 0 5px;
}
ul.item_list {
    display: flex;
    flex-wrap: wrap;
}
ul.item_list li {
    width: 30%;
    margin-right: 5%;
    margin-top: 4%;
}
ul.item_list li:nth-child(1), ul.item_list li:nth-child(2), ul.item_list li:nth-child(3) {
    margin-top: 0;
}
ul.item_list li:nth-child(3n) {
    margin-right: 0;
}
.item_image {
    margin: 0 0 13px;
}
p.item_name {
    margin: 0 0 2px;
}
  
/*
	最近チェックした商品
*/ 
.history_block p.history_ttl {
    margin: 60px 0;
    text-align: center;
    line-height: 1;
}

ul.history_list {
    display: flex;
    flex-wrap: wrap;
}

ul.history_list li {
    width: 30%;
    margin-right: 5%;
}
ul.history_list li:nth-child(3n) {
    margin-right: 0;
}

/*
	価格別
*/
.price_list_block {
    margin: 120px 0;
}
.price_list_block .inner {
    border-top: thin solid #544621;
}
.price_list_block p {
    padding: 80px 0;
    text-align: center;
    line-height: 1;
}
ul.common_price_list {
    display: flex;
    justify-content: space-between;
}

ul.common_price_list li a {
    display: block;
    padding: 29px 0;
    border: thin solid #544621;
}

ul.common_price_list li {
    width: 22.3%;
    text-align: center;
    line-height: 1;
}
  
/*
  footer
*/
.ft_gray_block {
    background: #b2aa9d;
    padding: 80px 0;
}

.ft_inner {
    max-width: 980px;
    width: 90%;
    margin: auto;
}

.ft_gray_block p {
    text-align: center;
    line-height: 1;
}

ul.ft_nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 75px auto 0;
}
ul.ft_nav li + li {
/*     margin-left: 8%; */
}
ul.ft_nav li a {
    padding-left: 21px;
    display: block;
    position: relative;
}

ul.ft_nav li a::before {
	content: "▲";
	font-size: 10px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transform: rotate(90deg) scale(0.8);
}
.ft_white_block {
    padding: 80px 0 67px;
}

ul.ft_sns {
    display: flex;
    justify-content: space-between;
    width: 120px;
    margin: 0 auto 57px;
}

ul.ft_sns li:nth-child(1) {
    width: 13.5px;
}
ul.ft_sns li:nth-child(2) {
    width: 28.5px;
}
ul.ft_sns li:nth-child(3) {
    width: 28.5px;
}

p.copyright {
    text-align: center;
    font-size: 10px;
    line-height: 1;
}
}

/* PC（カラム落ち防止調整） ==========================================================================================*/
@media screen and (min-width: 769px) and (max-width: 1050px) {
ul.hd_nav_category {
    justify-content: space-between;
}
ul.hd_nav_category li:nth-child(2) {
    margin-left: 0;
}
ul.hd_nav_category li:nth-child(3) {
    margin-left: 0;
}
ul.hd_nav_category li:nth-child(4) {
    margin-left: 0;
}

ul.hd_nav_category li a img {
    margin-right: 5px;
}
}

/* SP ==========================================================================================*/
@media screen and (max-width: 768px) {
.pc{display: none}
.sp{display: block}
html {
	font-size: 10px;
}
body {
	font-size: 1.2rem;
}

/*
	header
*/
.header {
    width: 100%;
    height: 60px;
    padding: 5px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    background: #ffffff;
}

h1.hd_logo {
    width: 40px;
    margin: auto;
}

.hd_inner {
    width: 90%;
    height: 100%;
    margin: auto;
    position: relative;
}

/* menu button */
.menu_btn {
	width: 30px;
	height: 16.5px;
	position: absolute;
	top: 7px;
	left: 3px;
	bottom: 0;
	margin: auto;
	z-index: 11;
	cursor: pointer;
}
.menu_btn span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #000;
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu_btn span:nth-of-type(1) {
	top: 0;
}
.menu_btn span:nth-of-type(2) {
	top: 8px;
}
.menu_btn span:nth-of-type(3) {
	bottom: 0;
}
.menu_btn.active span:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
.menu_btn.active span:nth-of-type(2) {
	opacity: 0;
}
.menu_btn.active span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
}
/* menu button END */

.hd_nav_block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    z-index: 3;
    display: none;
    padding: 97.5px 10.4% 50px;
    overflow: auto !important;
}
.hd_in_btn {
    width: 100px;
    height: 17px;
    position: absolute;
    top: 0;
    right: 13.5px;
    bottom: 0;
    margin: auto;
}
.hd_in_btn a {
    color:#b2aa9d;
}
.hd_search_btn {
    width: 17px;
    height: 17px;
    position: absolute;
    top: 0;
    right: 33.5px;
    bottom: 0;
    margin: auto;
}
.hd_cart_btn {
    width: 18.5px;
    height: 17.5px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

ul.hd_nav_category {
    width: 100%;
    margin: auto;
    font-size: 1.4rem;
}
ul.hd_nav_category li {
    margin-bottom: 14.5px;
}

ul.hd_nav_category li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
ul.hd_nav_category li a:link, ul.hd_nav_category li a:visited {
    color: #000000;
}

ul.hd_nav_category li a img {
    width: 70.5px;
    margin-right: 25.5px;
}

ul.hd_nav_other {
    font-size: 1.4rem;
    padding: 21px 3.2% 0;
}
ul.hd_nav_other li {
	margin: 0 0 22px;
}

ul.hd_nav_other li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.search_txt_box {
	display: none;
	position: absolute;
	bottom: -40px;
	right: 0;
	font-size: 0;
	animation: show 0.3s ease-out;
}
.search_txt_box.active {
	display: flex;
}

.search_txt_box input[type="text"] {
    width: 100px;
    border: 1px solid #544621;
    background: #ffffff;
    font-size: 1.1rem;
    padding: 0 5px;
}
.search_txt_box input[type="submit"] {
    border: 1px solid #544621;
    background: #544621;
    font-size: 1.1rem;
    color: #ffffff;
    padding: 0 5px;
}

ul.hd_nav_other li.nav_cart img {
    width: 18.5px;
    margin-right: 10px;
}

ul.hd_nav_other li.nav_search img {
    width: 17px;
    margin-right: 7px;
}

ul.hd_nav_sns {
    display: flex;
    flex-wrap: wrap;
    padding: 41px 0 10px 15px;
}

ul.hd_nav_sns li:nth-child(1) {
    width: 12px;
    margin-right: 32.5px;
}
ul.hd_nav_sns li:nth-child(2) {
    width: 24.5px;
   margin-right: 32.5px;
}
ul.hd_nav_sns li:nth-child(3) {
    width: 24.5px;
}
  
/*
	contents
*/
.contents {
    padding: 60px 0 0;
}
.inner {
    width: 90%;
    margin: auto;
}
/*パンくずリスト*/
.footstamp {
    font-size: 1rem;
    margin: 11.5px 0 0;
}
.footstamp a {
    display: inline;
}
.footstamp, .footstamp a:link, .footstamp a:visited {
    color: #aaa599;
}
.footstamp span {
    padding: 0 2.5px;
}

.item_list_block h2 {
    font-size: 2rem;
    margin: 30px 0 42px;
    text-align: center;
}

ul.item_list {
    width: 87%;
    margin: auto;
}
ul.item_list li + li {
    margin-top: 11.5%;
}
.item_image {
    margin: 0 0 13px;
}
p.item_name {
    margin: 0 0 1px;
}
/*
	最近チェックした商品
*/ 
.history_block p.history_ttl {
    margin: 80px 0 60px;
    text-align: center;
    line-height: 1;
}

ul.history_list {
    width: 87%;
    margin: auto;
}

ul.history_list li + li {
    margin-top: 11.5%;
}

  
/*
	価格別
*/
.price_list_block {
    margin: 120px 0;
}
.price_list_block .inner {
    border-top: thin solid #544621;
}
.price_list_block p {
    padding: 80px 0 60px;
    text-align: center;
    line-height: 1;
}

ul.common_price_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

ul.common_price_list li {
    width: 48%;
    text-align: center;
    line-height: 1;
}
ul.common_price_list li:nth-child(3), ul.common_price_list li:nth-child(4) {
    margin-top: 4.8%;
}
ul.common_price_list li a {
    display: block;
    padding: 23.6px 0;
    border: thin solid #544621;
}

/*
  footer
*/
.ft_gray_block {
    background: #b2aa9d;
    padding: 80px 0;
}

.ft_inner {
    max-width: 980px;
    width: 90%;
    margin: auto;
}

.ft_gray_block p {
    text-align: center;
    line-height: 1;
}

ul.ft_nav {
    width: 94.3%;
    margin: 62.5px auto 0;
    text-align: center;
}
ul.ft_nav li + li {
    margin-top: 29.3px;
}
ul.ft_nav li a {
    display: block;
    position: relative;
}

ul.ft_nav li a::before {
	content: "▲";
	font-size: 1rem;
	display: inline-block;
	margin-right: 13px;
	transform: rotate(90deg) scale(0.8);
}
.ft_white_block {
    padding: 80px 0 33.5px;
}

ul.ft_sns {
    display: flex;
    justify-content: space-between;
    width: 130px;
    margin: 0 auto 80px;
    padding: 0 10px 0 0;
}

ul.ft_sns li:nth-child(1) {
    width: 13.25px;
}
ul.ft_sns li:nth-child(2) {
    width: 29.25px;
}
  ul.ft_sns li:nth-child(3) {
    width: 29.25px;
}

p.copyright {
    text-align: center;
    font-size: 1rem;
    line-height: 1;
}

}