#header h1{
position:absolute;
top:36px;
font-weight: normal;
font-size: 16px;
}
@media (max-width: 1100px) {
#header h1{
position:relative;
top: 0;
margin-top: 5px;
font-size: 14px;
}
}

/* ************************************************
*  header
* ************************************************ */
#header {
  height: 95px;
  margin-bottom: 25px;
  border-bottom: 1px solid #835e39;
}
#header .header-inner{
  max-width: 1100px;
  margin: auto;
}
#header .header-top{
  overflow: hidden;
}
@media (max-width: 1100px) {
#header {
  padding-top: 3px;
  margin-bottom: 20px;
  padding-bottom: 3px;
  height: 40px;
}
}
.logo {
  float:left;
  width: 260px;
  margin-top: 10px;
  text-align: left;
}
@media (max-width: 1112px) {
  .logo{
  width: auto;
  max-height: 33px;
  position: absolute;
  top: 0;
  left: 5px;
}
  .logo img{
  max-width: 168px;
}
}
#header .header_link {
  float: right;
  padding-top: 10px;
}
#header .header_link ul {
  display:flex;
  align-items: center;
  justify-content: center;
}
#header .header_link ul li {
  float: left;
  margin-left: 20px;
  list-style-type: none;
  line-height: 16px;
}
#header .header_link ul li i {
  display: block;
  float: left;
  margin-right: 5px;
  width: 16px;
  height: 16px;
}
#header .header_link ul li a {
  text-decoration: none;
}
#header .header_link ul li:first-child {
  border-right: 1px solid #ddd;
  padding-right: 15px;
}
#header .header_link ul li a {
  text-decoration: none;
  font-size: 11px;
}
#header .header_link ul li a .icon{
  display: block;
  height: 26px;
  margin-bottom: 6px;
}
#header .header_link ul li a .icon img{
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  width: auto;
  display: block;
}
@media (max-width: 1100px) {
  #header .header_link {
    padding:  1px 40px 0 0;
    display: block;
  }
  #header .header_link ul{
    justify-content: flex-end;
  }
  #header .header_link ul li:first-child {
    padding-right: 10px;
  }
  #header .header_link ul li {
    margin-left: 10px;
    line-height: 1;
    font-size: 0.8em;
  }
  #header .header_link ul li.view_cart {
    padding: 8px 4px;
    margin-left: 0;
    padding-left: 9px;
  }
}
#header .header_link ul li.view_cart {
    position: relative;
}
.header-tools__count {
    position: absolute;
    font-size: 14px;
    top: 16px;
    right: 9px;
    color: #930808;
}
@media screen and (max-width: 1112px) {
    .header-tools__count {
        right: 0;
        top: 18px;
    }
}

#header .header_menu {
  float: right;
  margin-top: 10px;
}
#header .header_menu ul {
  display: flex;
  float: right;
  align-items: center;
  justify-content: center;
}
#header .header_menu ul img {
  margin: auto;
  width: 20px;
  position: absolute;
  left: 0;
  top:-4px;
}
#header .header_menu ul li {
  padding: 0 20px 0 25px;
  list-style-type: none;
  vertical-align: middle;
  position: relative;
}
#header .header_menu ul li:last-child {
  border-right: none;
}
#header .header_menu ul li a {
  text-decoration: none;
}
#header .header_menu ul li a:hover{
  opacity: 0.5;
}
@media (max-width: 1100px) {
#header .header_menu {
  margin-top: 0;
}
#header .header_menu ul img {
  display: none;
}
#header .header_menu ul {
  float: none;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  width: 80%;
}
#header .header_menu ul li {
  font-weight: bold;
  position: relative;
  width: 100%;
  padding: 0.8em 0 0.8em 10px;
  box-sizing: border-box;
  text-align: left;
  text-decoration: none;
  color: #2f0f04;
  border-bottom: solid 1px #bbbbbb;
}
}
@media (max-width: 1112px) {
  #header .header_menu {
    float: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 30000;
    opacity: 0;
    transform: translateX(100%);
    transition: transform .3s, opacity .3s;
  }
  #header .header_link ul li a .icon{
    height: 20px;
  }
  #header.is-open .header_menu{
    transform: translateX(20%);
    opacity: 1;
    overflow-y: scroll;
  }
  #header.is-open .hamburger{
    background: transparent;
  }
  #header.is-open .hamburger::before,
  #header.is-open .hamburger::after{
    background: #000;
    top: 0;
  }
  #header.is-open .hamburger::before{
    transform: rotate(45deg);
  }
  #header.is-open .hamburger::after{
    transform: rotate(-45deg);
  }
}
/* Button */
.button-hamburger {
  position: absolute;
  top: 8px;
  right: 5px;
  bottom: 0;
  z-index: 1;
  width: 32px;
  height: 32px;
  z-index: 35000;
  border: 0;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none; /* Chrome, Safari, Opera, Android */
     -moz-appearance: none; /* Firefox */
          appearance: none; /* IE非対応 */
}
.hamburger {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  border-radius: 4px;
  background-color: #263238;
}
.hamburger:before,
.hamburger:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: inherit;
  content: '';
  transition: all .3s;
}
.hamburger:before {
  top: -6px;
}
.hamburger:after {
  top: 6px;
}
.is-open .button-hamburger{
  position: fixed;
}
@media screen and (min-width: 1112px) {
  .button-hamburger {
    display: none;
  }
}











/* カテゴリー一覧 */
#category_list ul{
  display: flex;
} 
#category_list ul li{
  width: 25%;
  padding: 0 15px;
  box-sizing: border-box;
}
#category_list ul li p{
  text-align: center;
  font-size: 1.2em;
  margin-top: 25px;
}
@media (max-width: 1100px) {
#category_list ul{
  flex-wrap: wrap;
} 
#category_list ul li{
  width: 50%;
  padding: 0 5px;
  margin: 10px 0;
  box-sizing: border-box;
}
} 


@charset "euc-jp";

/* reset */
body, div, dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6, pre, code,
form, fieldset, legend, input, textarea,
p, blockquote, th, td {
  margin: 0;
  padding: 0;
}
.none_border_table,
.product_option_table table {
  border-spacing: 0;
  border-collapse: collapse;
}
fieldset,
img {
  border: 0;
}
img {
  width: 100%;
}
address, caption, cite, code,
dfn, em, strong, th, var {
  font-weight: normal;
  font-style: normal;
}
ol, ul {
  list-style: none;
}
caption, th {
  text-align: left;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}
p {
  letter-spacing: 0.05em;
}
q:before,
q:after {
  content: '';
}
abbr, acronym {
  border: 0;
  font-variant: normal;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
input,
textarea,
select {
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
}
input,
textarea,
select {
  *font-size: 100%;
}
legend {
  color: #000;
}
.for-sp {
 display: none;
}
@media (max-width: 1100px) {
.for-sp {
 display: block;
}
.for-pc {
 display: none;
}
}

.clear {
 clear: both;
}

/* font size */
body {
  font: 13px/1.231 arial,helvetica,clean,sans-serif;
  *font-size: small; /* for IE */
  *font: x-small; /* for IE in quirks mode */
}
select, input, button, textarea {
  font: 99% arial,helvetica,clean,sans-serif;
}
table {
  font: 100%;
  font-size: inherit;
}
pre, code, kbd, samp, tt {
  font-family: monospace;
  line-height: 100%;
  *font-size: 108%;
}

/* common */
body {
  color: #7e5e3d;
font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
   background-color: #fffacd;
   background-position: top left;
   background-size: 100%;
}
a {
  color: #7e5e3d;
}

input[type="text"],
textarea,
select {
  border: 1px solid #888;
}
/* clearfix */
.clearfix {
  *zoom: 1;
}
  .clearfix:before, .clearfix:after {
    display: table;
    content: "";
  }
  .clearfix:after {
    clear: both;
  }
  .icon_sort:before,
  .ie_icon_sort {
    background-position: left -112px;
  }
  .icon_prev:before,
  .ie_icon_prev {
    margin-right: 0;
    background-position: left -32px;
  }
  .icon_next:before,
  .ie_icon_next {
    float: right;
    margin-right: 0;
    background-position: right -48px;
  }
  .icon_prev_dis:before,
  .ie_icon_prev_dis {
    margin-right: 0;
    background-position: left -64px;
  }
  .icon_next_dis:before,
  .ie_icon_next_dis {
    float: right;
    margin-right: 0;
    background-position: right -80px;
  }
  .icon_lst:before,
  .ie_icon_lst {
    margin-right: 0;
    background-position: left -176px;
  }


  .icon_down:before,
  .ie_icon_down {
    display: none;
  }
  .icon_category_lst:before,
  .ie_icon_category_lst {
    display: none;
  }
  .icon_review:before,
  .ie_icon_review {
    background-position: left -240px;
  }
  .icon_review_post:before,
  .ie_icon_review_post {
    background-position: left -256px;
  }
.border_top {
  border-bottom: 1px solid #bbb;
  margin: 120px 0 30px;
}

/* layout */
.layout_wrapper {
  margin: 0 auto;
  width: 1100px;
  position: relative;
}
@media (max-width: 1034px) {
.layout_wrapper {
  width: 95%;
}
}
.layout_header,
.layout_container,
.layout_footer {
  margin: 0 auto;
}
.layout_header {
  position: relative;
}
.layout_footer {
  margin-top: 3em;
}
#container {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

/* メイン */
.main{
  float: right;
  width: 845px;
  height: auto;
}
@media (max-width: 1100px) {
.main{
  width: 100%;
}  
}  
@media (max-width: 768px) {
.main{
  padding-bottom: 60px;
}  
}

/* サイドナビ */
.side{
  float: left;
  width: 230px;
  margin-right: 25px;
}
@media (max-width: 1100px) {
.side{
  width: 100%;
  margin: auto;
}
}
/* product search form */
.prd_search_block {
  position: relative;
  float: left;
  width: 100%;
  font-size: 92.307%;
}
  .prd_search_form_btn {
    cursor: pointer;
    display: inline-block;
    margin-left: 5px;
    padding: .3em .5em;
    border: 1px solid #a0a0a0;
    -webkit-border-radius: 4px;
    border-radius: 4px;
  }
  .prd_search_form {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    overflow: hidden;
    padding: 5px;
    width: 97%;
  }
  .prd_search_keyword {
    float: left;
    padding: .5em 0;
    width: 75%;
    border: 1px solid #835e39;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    text-indent: 5px;
  }
  .prd_search_btn {
    float: right;
    padding: .35em 0;
    width: 23%;
    border: 1px solid #835e39;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: #835e39;
    color: #fff;
    cursor: pointer;
  }
.search_word {
  margin-bottom: 20px;
}
.search_word a{
  border: 1px solid #7e5e3d;
  padding: 2px 7px 1px;
  font-size: 0.9em;
  margin-right: 10px;
  line-height: 2.2;
}
.search_word a:hover{
  opacity: 0.5;
}
@media (max-width: 767px) {
.search_word a{
  font-size: 1em;
}
}
.side-menu-top{
  background-color: #ffffff;
  border-radius: 7px 7px 0 0;
  font-size:1.2em;
  font-weight: bold;
  color: #333333;
  border-top: solid 10px #ffc7b3;  
  border-bottom: dashed 2px #eee;
  padding: 15px 9px; 
}   
.side-menu{
  background-color: #fff;
  color: #333;
  font-size:1.2em;
  border-bottom: dashed 2px #EEEEEE;
  padding: 15px 9px; 
  vertical-align: middle;
}
.side-menu:hover {
  background-color: #ddd;
}   
.side-menu-bottom{
  background-color: #ffffff;
  border-radius: 0 0 7px 7px;
  text-align: left;
  margin: 0 auto;
  color: #333333;
  padding: 15px 9px 20px; 
  margin-bottom:25px;
  font-size:1.2em;
}
.side-menu-bottom:hover {
  background-color: #ddd;
}
.side-menu img, .side-menu-bottom img {
  width: 30px;
  margin-right: 7px;
  vertical-align: middle;
}
.all-product {
  text-align: right;
  margin-bottom: 40px;
}
.side h5 {
  border-bottom: dotted 2px #7e5e3d;
  margin-top: 15px;
}
.side a {
  text-decoration: none;
} 







/* SNS */
.flowbtn11{
  font-family:'Verdana',sans-serif;	
  border-radius:4px;
  position:relative;
  display:inline-block;
  width:100%;
  font-size:25px;
  color:#fff!important;
  text-decoration:none;
  margin: 15px 0 0;
  text-align: center;
}
/* X */
.fl_x1{
  background:#000000;
}
.fa-x:before {
  content: url(https://img07.shop-pro.jp/PA01430/980/etc_base64/aWNvbl94.png?cmsp_timestamp=20240213164328);
}
/* Twitter */
.fl_tw1{
  background:#55acee;
}
/* Instagramアイコン位置 */
.insta_btn11 .fa-instagram{
  position:relative;
  z-index:1;	
}
/* Instagram紫グラデ背景色 */
.insta_btn11{
  background:-webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background:linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  overflow:hidden;
}
/* Instagramオレンジグラデ背景色 */
.insta_btn11:before{
  content: '';
  position:absolute;
  top:17px;
  left:-75px;
  width:100%;
  height:100%;
  background:-webkit-radial-gradient(#ffdb2c 5%, rgba(255, 105, 34, 0.65) 45%, rgba(255, 88, 96, 0) 80%);
  background:radial-gradient(#ffdb2c 5%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 80%);
}
/* アイコンボタンホバー時 */
.flowbtn11:hover span{
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
  text-decoration:none;
}
/* ボタン内テキスト調整 */
.flowbtn11 span{
  font-size:20px;	
  position:relative;
  left:8px;
  bottom:2px;
  transition:.6s;	
  padding: 16px 0 13px 0;
  display:inline-block;	
}

/* title */
h1 {
  font-size: 3em;  
  font-weight: 700;
  margin: 30px 0;
  text-align: center;
}
h1 img{
  margin: auto;
}
h2 {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
h2 img{
  width: 50%;
}
h3 {
  margin: 20px 0;
}
h5 {
  display: block;
  font-weight: 600;
  font-size: 1.2em;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
}
h6 {
  margin: 30px 0 15px 0;
  font-size:1.4em;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 1034px) {
h3 {
  text-align: center;
}
}
@media (max-width: 483px) {
h2 img{
  width: 70%;
}
h3 {
  font-size: 1.3em;
  font-weight: 600;
  margin: 15px 0;
}
}
.ttl_h2 {
  margin-bottom: .7em;
  color: #444;
  font-weight: bold;
  font-size: 124%;
}
.ttl_h3 {
  margin-top: 2em;
  margin-bottom: .5em;
  color: #444;
  font-weight: bold;
  font-size: 98.307%;
}

/* topicpath */
.topicpath_nav {
  margin: 2em 0;
  color: #aaa;
  display: flex;
  font-size: 84.615%;
}
.topicpath_nav li {
  display: inline;
  margin-right: .2em;
}
.topicpath_nav li a {
  margin-left: .2em;
  color: #aaa;
  text-decoration: none;
}
.topicpath_nav li a:hover {
  text-decoration: underline;
}

/* prduct list */
.prd_lst {
  display: flex;
  flex-wrap: wrap;
}
.prd_lst_unit {
  float: left;
  margin-bottom: 15px;
  margin-left: 2.083%;
  word-break: break-all;
}
  .prd_lst_unit_s {
    width: 22.916%;
  }
  .prd_lst_unit_m {
    width: 31.25%;
  }
@media (max-width: 768px) {
.prd_lst_unit_s {
  width: 47.5%;
}
.prd_lst_unit_m {
  width: 80%;
  margin: auto;
  padding: 20px 0;
}  
}  

  .prd_lst_unit a {
    color:inherit;
    text-decoration: none;
  }
  .prd_lst_unit a:hover {
    text-decoration: underline;
    color: orange;
  }
  .prd_lst_img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: inherit;
  }
  .prd_lst_span {
    display: block;
    margin: .3em 0;
    width: 85%;
    margin:  0 auto;  
  }
  .prd_lst_name {
    margin-top: 1em;
    font-size: 110%;
    text-align: center;
  }
  .prd_lst_exp {
    color: #666;
    font-size: 90%;
  }
  .prd_lst_price,
  .prd_lst_soldout {
    font-size: 90%;
    margin-top: 0.8em;
    text-align: center;
  }
  .prd_lst_regular {
    color: #666;
    text-decoration: line-through;
  }
  .prd_lst_none {
    clear: both;
    text-align: center;
    font-size: 123.076%;
    line-height: 16;
  }
.prd_lst_block .ttl_h2 {
  float: left;
  margin: 20px 0 0;
}
.prd_lst_sort {
  float: right;
  margin: 20px 0;
}
  .prd_lst_sort a {
    color: #444;
  }
  .prd_lst_pager {
    position: relative;
    overflow: hidden;
    margin-top: 2em;
  }
  .prd_lst_pager ul {
    position: relative;
    left: 50%;
    float: left;
  }
  .prd_lst_pager li {
    position: relative;
    left: -50%;
    float: left;
  }
  .prd_lst_pager .prd_lst_pager_prev,
  .prd_lst_pager .prd_lst_pager_next {
    padding: .5em 0;
    width: 8em;
  }
  .prd_lst_pager .prd_lst_pager_next {
    text-align: right;
  }
  .icon_prev_dis,
  .icon_next_dis {
    display: block;
    color: #aaa;
  }
  .prd_lst_pager a {
    color: #444;
    text-decoration: none;
  }
  .prd_lst_pager a:hover {
    text-decoration: underline;
  }
.prd_lst_pos b {
  font-size: 160%;
}

/* header */
.subhead_top {
  display: flex;
  width: 520px;
  margin-left: auto;
}
.subhead_top li{
  width: 25%;
}
.subhead-btn {
  display: inline-block;
  text-decoration: none;
  color: #7e5e3d;
  border: 1px solid #7e5e3d;  
  height: 40px;
  border-radius: 3px;
  text-align: center;
  float: left;
  margin-top: -5px;
  overflow: hidden;
  font-size: 1.1em;
  font-weight: bold;
  background: #FFF;
  box-sizing: border-box;
  width: 100%;
}
.subhead-btn p {
  margin-top: 15px;
}
.subhead-btn:hover {
  background: #7e5e3d;
  color: #FFF;
}
@media (max-width: 1034px) {
.subhead_top {
  width: 100%;
  }
.subhead-btn {  
  margin-top: 0;
  font-size: 1em;
}
.subhead-btn p {
  margin-top: 0;
  line-height: 40px;
}
}

/* shopname logo */
.shop_name {
  clear: both;
  padding: 15px 0;
  position: relative;
  float: left;
  width: 30%;  
}
.shop_name a {
  color: #444;
  text-decoration: none;
}
@media (max-width: 768px) {
.shop_name {
  display: none;
  clear: both;
  width: 100%;  
  padding: 5px 0;
}
.shop_name img {
  max-width: 200px;
  height: inherit;
}
.subhead_top {
  flex-wrap: wrap;
}
.subhead_top li{
  width: 50%;
}
.subhead-btn {  
  height: 30px;
}
.subhead-btn p {
  line-height: 30px;
}
}



/* カートを見る */
.btn-square-soft {
  display: block;
  text-decoration: none;
  color: #FFF;
  width: 230px;
  background: #835d39;
  height: 27px;
  line-height: 27px;
  border-radius: 2px;
  text-align: center;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
}
/*カートボタンマウスオーバー時*/
.btn-square-soft:hover{
  color:#666; 
}
.subhead_bottom {
  display: flex;
  padding-top: 10px;
  position: absolute;
  right: 0;
  top: 40px;
}

 
/* footer */
.footer_nav {
  width: 1100px;
  margin: auto;
  text-align: center;
  background-color: #fff;
  padding: 3em;
  border-radius: 0.5rem;
  box-sizing: border-box; 
}
.footer_nav h4{
  color: #fff;
  font-size: 1.3em;
  display: inline-block;
  background: linear-gradient(to left, rgb(230, 162, 255), #ff67bf);
  letter-spacing: 0.2rem;
  padding: 0.5rem 2rem;
  margin: 0;
}
.footer_nav section {
  text-align: left;
}
.footer_nav h5 {
  display: block;
  font-weight: 600;
  font-size: 1.6em;
  border-bottom: dotted 2px #ED70BC;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
}
.footer_nav p {
  margin-bottom: 25px;
}
.footer_nav ul{
  display: flex;
  padding-top: 40px;
}
.footer_nav li{
  width: 50%; 
  padding: 0 20px;
  box-sizing: border-box; 
}
.othershop {
  font-size: 0.7em;
  text-align: center;
  margin: 30px 0;
}
.copyright {
  text-align: center;
  margin: 30px 0 80px 0;
}
@media (max-width: 1100px) {
.footer_nav {
  width: 100%;
  border-radius: 0;
  padding: 3em 0.5em;;
}
.footer_nav ul{
  display: block;
}
.footer_nav li{
  width: 100%; 
}
.copyright {
  font-size: 0.7em;
}
}
ul.category_lst {
  display: flex;
  text-align: center;
  padding-bottom: 60px;
}
ul.category_lst li{
  width: 25%;
  padding: 0 10px;
  box-sizing: border-box;  
}
ul.category_lst p{
  margin-top: 15px;
  font-size: 1.2em;
}
@media (max-width: 768px) {
ul.category_lst {
  flex-wrap: wrap;
}
ul.category_lst li{
  width: 50%;
  padding: 15px 0;
  
}
}

ul.contents {
  display: flex;
  padding: 15px 0;
  border-top: 1px solid #D2B48C;
  border-bottom: 1px solid #D2B48C;
  margin-bottom: 30px;
}
ul.contents li{
  width: 25%;
  box-sizing: border-box;  
  border-right: 1px solid #D2B48C;
}
ul.contents li p{
  width: 100%;
  text-align: center;
  font-size: 0.9em;
  line-height: 90px;
}
.contents li:last-child{
  border-right: none;
}
.contents_s {
  display: flex;
  padding: 0 10px;
  height: 90px;
}
.contents_s img{
  width: 90px;
  margin: 0 10px;
}

@media (max-width: 1024px) {
ul.contents {
  display: block;
  width: 100%;
  padding: 0;
  border-bottom: none;
}
ul.mango{
  width: 100%;
}
ul.contents li{
  width: 100%;
  border-right: none;
  padding: 10px 0;
  border-bottom: 1px solid #D2B48C;
}
.border-bottom li:last-child{
  border-bottom: 2px solid #D2B48C;
}
}
@media (max-width: 375px) {
ul.contents li p{
  font-size: 0.95em;
}
}  

/* manager */
.manager_img img {
  max-width: 100%;
}
.manager_memo .ttl_h3 {
  margin-top: .7em;
}

/* social icons */
.social_lst ul {
  padding-left: 16px;
  text-align: left;
}
.social_lst li {
  display: inline;
  margin: 1.5%;
}
.social_lst img {
  width: 24px;
  height: 24px;
  vertical-align: bottom;
}

/* list */
.def_lst {
  border-top: 1px solid #eee;
}
  .def_lst_dt {
    padding-top: 1em;
    padding-bottom: 1em;
    font-weight: bold;
    float: left;
    clear: both;
    width: 30%;
    word-break: break-all;
  }
  .def_lst_dd {
    padding-top: 1em;
    padding-bottom: 1em;
    padding-left: 35%;
    border-bottom: 1px solid #eee;
  }
    .def_lst_dd img {
      max-width: 100%;
      width: inherit;
      height: auto;
    }

/* product option */
.product_option_table {
  margin: 3em 0;
}
  .product_option_table table {
    width: 100%;
    border-bottom: 1px solid #dadada;
    border-left: 1px solid #dadada;
  }
  .product_option_table th,
  .product_option_table td {
    padding: .8em .5em;
    border-top: 1px solid #dadada;
    border-right: 1px solid #dadada;
  }
  .product_option_table th {
    text-align: center;
  }
  .product_option_table td {
    vertical-align: top;
    text-align: center;
  }

/* policy */
#policy p {
  margin: 1em 0;
  color: #666;
  line-height: 1.8;
}
.policy_lead {
  padding-bottom: 1em;
  border-bottom: 1px solid #eee;
}

/* for ie7 - 8 */
.ie_wrapper .header_global_nav {
  position: relative;
  z-index: 101;
}
.ie_wrapper .header_nav_menu {
  z-index: 60;
}
.ie_wrapper .header_nav_menu_category {
  z-index: 100;
}
.ie_wrapper .header_category_lst {
  top: 3em;
}
/* for ie7 */
.ie.icon_prev,
.ie.icon_prev_dis {
  margin-right: 2em;
}
.ie_wrapper .header_category_lst {
  top: 2.7em;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5) {
  .icon:before {
    background-image: url(https://img.shop-pro.jp/tmpl_img/63/icons16_2x.png) !important;
    -webkit-background-size: 16px 320px;
    background-size: 16px 320px;
  }
}

.movie {
  width:630px;
  height:355px;
}

.sk_box {
  margin-bottom: 30px;
}
.sk_box h3 {
  margin-bottom: 0.5em;
  font-size: 15px;
  color: #806e6f;
}
.sk_box table {
  width: 100%;
  border-top: 1px solid #e0e0de;
  border-left: 1px solid #e0e0de;
  border-right: 1px solid #e0e0de;
  border-collapse: separate;
  empty-cells:show;
}
.sk_box th {
  padding: 10px 40px 10px 15px;
  width: 170px;
  COLOR: #fff;
  text-align: left;
  background-color: #df7676;
}
.sk_box th img.poricy_img {
  margin-bottom: 5px;
}
.sk_box td {
  padding: 10px 15px;
  zoom: 1;
  content: ' ';
  background-color: #fff;
}
.sk_box th,
.sk_box td {
  vertical-align: top;
  line-height: 1.8;
  position: relative;
  border-bottom: solid 1px #e0e0de;
}
.sk_box th,
.sk_box td:fast-child {
  border: none;
}
@media (max-width: 768px) {
.sk_box table {
  width: 100%;
  border-top: none;
  border-bottom: 1px solid #e0e0de;
}
.sk_box th {
  padding: 10px 0;
  width: 100%;
  border-top: 1px solid #e0e0de;
  display: inline-block;
  text-align: center;
}
.sk_box td {
  padding: 10px 0;
  text-align: center;
  border: none;
  display: block;
  width: 90%;
  margin: auto
}
}







/*--------------------------------------
  レビュー
--------------------------------------*/
.p-review-title {
  margin: 30px 0;
  color: #333;
  font-size: 1.5em;
  text-align: center;
}
.p-review {
  padding-bottom: 30px;
}
.lp .p-review {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.p-review article{
  width: 99%;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #bdbdbd;
  background-color: #fff;
  display: flex;
  color: #212121;
  text-decoration: none;
  padding: 20px 0;
  margin: 15px 0;
  align-items: center;
}
.lp .p-review article{
  width: 48%;
  margin: 7.5px;
}
.p-review img {
  max-width:  170px;
  margin: 0 15px;
}
.p-review .body {
  text-align: left;
  padding: 0 15px;
}
.p-review .head {
  margin-bottom: 10px;
}
.p-review .title {
  font-size: 1.4em;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.p-review .name {
  font-size: 1.2em;
  font-weight: bold;
  margin-right: 15px;
}
.p-review .star {
  color:#eee;
  margin-right: 5px;
}
.p-review .star02 {
  color:#f90;
}
.p-review .day {
  color:#000;
  font-size: 0.7em;
}
.p-review .text{
  font-size: 0.9em;
  line-height: 21px;
  letter-spacing: 0.05em;
}

.lp img {
  width:100%;
}



/* 商品情報 規格・配送 */
.product_information {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  margin: 10px 0 30px 0;
  box-sizing: border-box;
}
.product_information th{
  width: 25%;
  padding: 5px;
  text-align: left;
  vertical-align: top;
  color: #444;
  background-color: #ffc7b3;
  border-left: 1px double #ddd;
  border-top: 1px solid #fff;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}
.product_information td{
  width: 75%;
  padding:5px;
  text-align: left;
  background-color: #fafafa;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}



ul.contact {
  display: flex;
  font-size: 1.2em;
}
ul.contact li{
  width: 50%;
  margin: 0 5px;
  padding: 10px;
  box-sizing: border-box;
  border: 3px solid #ffc7b3;
  border-radius: 5px;
}
ul.contact li p{
  margin-top: 17px;
  font-weight: 600;
  text-align: center;
  font-size: 1.8em;
}
@media (max-width: 800px) {
ul.contact {
  display: block;
}
ul.contact li{
  margin: auto;
  margin-bottom: 10px;
  width: 90%;
}
}
@media (max-width: 800px) {
ul.contact {
  font-size: 1em;
}
ul.contact li p{
  font-size: 1.6em;
}
}
  
 
h1.ttl_h2 {
    margin: 10px 0;
}
.topicpath_nav {
  display: block;
  margin: 2em 0 0;
}
.topicpath_nav ul {
  float: left;
}
.topicpath_nav:before, .topicpath_nav:after {
    content:"";
    display:table
}
.topicpath_nav:after {
clear:both
}
  
/* 240705追加 */
#header {
  position: fixed;
  background-color: #fffacd;
  width: 100%;
  z-index: 9999999999;
}
.main_kv {
  padding-top: 120px;
}
@media (max-width: 1100px) {
.main_kv {
  padding-top: 60px;
}
}

@media (max-width: 1100px) {
.arrow::after{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.5em;   /* arrow size */
  height: 0.5em;  /* arrow size */
  border-top: 1px solid #2f0f04;  /* thickness, color */
  border-right: 1px solid #2f0f04;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
}
#header .header_menu ul li.line_up ,
#header .header_menu ul li.midashi {
  display: none;
}

@media (max-width: 1100px) {
#header .header_menu ul li.midashi {
  display: block;
  background-color: #f2f2f2;
  width: 100%;
  box-sizing: border-box;
  color: #7e5e3d;
  padding-top: 1em;
  padding-bottom: 1em;
  border-bottom: none;
    }
#header .header_menu ul li.line_up {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: #7e5e3d;
}
#header .header_menu ul li.line_up a:nth-child(2n-1) {
    border-right: 1px solid #CCC;
}
#header .header_menu ul li.line_up a:first-child,
#header .header_menu ul li.line_up a:nth-of-type(2) {
    border-bottom: 1px solid #CCC;
}
#header .header_menu ul li.line_up a {
    font-size: 0.75em;
    padding: 1.5em;
    width: 50%;
    font-weight: bold;
    box-sizing: border-box;
}
#header .header_menu ul .prd_search_block {
    margin-bottom: 15px;
}
}