@charset "UTF-8";
@import url("https://kusatori.heteml.net/assets/css/font.css");
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900&display=swap');
/* reset
--------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html,body{
  min-height: 100%;
  height: auto;
}

body {
  line-height: 1;
  word-wrap: break-word;
  word-break: break-all;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

ins {
  background-color: #f2f82f;
  color: #171216;
  text-decoration: none;
}

mark {
  background-color: #f2f82f;
  color: #171216;
  font-weight: bold;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

del {
  text-decoration: line-through;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e5e5;
  margin: 1.0rem 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  -webkit-appearance: none;
}

textarea {
  -webkit-appearance: none;
}

button {
  -webkit-appearance: none;
}

img {
  border: none;
  vertical-align: middle;
  line-height: 0;
}

/*--------------------------------------
  'sm': 'screen and(max-width: 480px)
  'md': 'screen and(min-width: 768px)
  'lg': 'screen and(min-width: 960px)
  'xl': 'screen and(min-width: 1200px)

  #common
--------------------------------------*/
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  /*font-family: 'Noto Sans JP', "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;*/
  font-family:  "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;
  color:#0d0015;
  background:#fff ;
}

button{
  font-family:  "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;
}
input, textarea, select, i {
  font-family: 'Noto Sans JP', "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

a,
a:visited {
  color:#000;
  text-decoration: none;
}

a:hover,
button:hover {
  color:#560000;
  text-decoration: none;
  /*opacity: 0.7;*/
}

a img:hover {
  /*filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;*/
}

a, a:hover {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

h1, h2, h3, h4, h5, h6 {
  font-feature-settings: "palt";
}

/* TEXTカラー
--------------------------------------*/
.txt-wt {
  color: #fff;
}

.txt-red, .red {
  color: #560000;
}

.txt-blue {
  color: #0068b7;
}

/* 調整用
--------------------------------------*/
.none_bg {
  background: none !important;
}

.none_bd {
  border: none !important;
}

.none_bd_top {
  border-top: none !important;
}

/* 改行 */
.no_br br {
  display: none;
}

.on_br br {
  display: block;
}

span.br{display: inline-block;}
br.br{display: none;}

@media screen and (min-width: 960px) {
  .no_br br {
    display: block;
  }

  .on_br br {
    display: none;
  }
  br.br{display:inherit;}
}
/* TEXT配置 */
.txt_center {
  text-align: center !important;
}

.txt_right {
  text-align: right !important;
}

.txt_left {
  text-align: left !important;
}

/*  文字ツメ */
.txt_spac {
  letter-spacing: -1px;
}

.txt_spac_pl {
  letter-spacing: 2px;
}

.bold {
  font-weight: bold;
}

/* margin・padding
--------------------------------------*/
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

/* 共通CSS
--------------------------------------*/
em, i, cite {
  font-style: normal;
}

strong, b {
  font-weight: bold;
}

/* FOAM
--------------------------------------*/
/* OSi　リセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

input, textarea, select {
  outline: 0;
}

/* 基本スタイル */
input[type="text"], input[type="email"], input[type="url"], input[type="number"], input[type="password"] {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 0.2em 15px;
  font-size: 16px;
}
input[type="number"] {
  padding-right: 5px;
  padding-left: 5px;
}
input[type="text"]::focus, input[type="text"]:hover, input[type="email"]::focus, input[type="email"]:hover, input[type="url"]::focus, input[type="url"]:hover {
  border: 1px solid #560000;
}

button {
  cursor: pointer;
}

input[type='checkbox'], input[type="radio"], input[type="submit"] {
  cursor: pointer;
}

textarea {
  border: 1px solid #e5e5e5;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  height: 230px;
  margin: auto;
}

/* 基本table
--------------------------------------*/
table {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: auto;
}

table table {
  width: 100%;
}

th, td {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  margin: 0 -1px -1px 0;
  vertical-align: middle;
  padding:5px;
  display:block;
}

table tr:last-child td:last-child {
  margin-bottom:0;
}

th {
  background: #f6f6f7;
}

@media screen and (min-width: 768px) {
  table table {
    min-width: 80%;
    max-width: 100%;
    width: auto;
  }
  th,td {
    margin-right: -1px;
    display: table-cell;
  }
}

/* ご利用ガイド用スタイル */
table.about-tbl {
  margin: 24px auto;
  width: 100%;
  border-top: 1px solid #000;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', sans-serif
}
table.about-tbl th, table.about-tbl td {
  background: transparent;
  text-align: left;
  font-weight: 400;
  line-height: 1.5;
  border-left: 0 none;
  border-right: 0 none;
  padding: 10px;
}
table.about-tbl th {
  border-top: 0 none;
  border-bottom: 0 none;
  padding-bottom: 0px;
}
table.about-tbl td {
  border-top: 0 none;
  border-bottom: 1px solid #000;
}

@media only screen and (min-width: 768px) {
  table.about-tbl {
    font-size: 16px;
    font-size: 1.6rem;
  }
  table.about-tbl th, table.about-tbl td {
    padding: 1.7em 2em;
    line-height: 2.0;
  }
  table.about-tbl th {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    vertical-align: top;
    width: 20.618%;
  }
  table.about-tbl td {
    border-top: 1px solid #ccc;
    border-bottom-color: #ccc;
    width: 79.38%;
  }
}
/*table.about-tbl {
  margin: 24px auto;
  width: 100%;
}

table.about-tbl th, table.about-tbl td {
  padding: 10px;
}
table.about-tbl th {
  min-width: 200px;
}
table.about-tbl a {
  text-decoration: underline;
}

table.shipment-tbl {
  margin-bottom: 30px;
}
table.shipment-tbl table {
  margin-bottom: 15px;
}
table.shipment-tbl th, table.shipment-tbl td {
  font-size: 14px;
}
table.shipment-tbl td {
  padding: 4px 8px;
}
table.shipment-tbl thead th,
table.shipment-tbl thead td {
  text-align: center;
  font-weight: bold;
}*/
.shipment-tbl-normal-shippoint-point span {
  display: inline-block;
}
.shipment-tbl-tkbsize-defined {
  margin-top: 30px;
}
.shipment-tbl-tkbsize-defined thead td {
  background: #f6f6f7;
}
.shipment-tbl-tkbsize-defined tbody tr td:last-child {
  border-bottom-width: 2px;
}
.shipment-tbl-eidome a {
	text-decoration: underline;
}
@media screen and (min-width: 768px) {
  table.shipment-tbl th {
    max-width:22em;
  }
  table.shipment-tbl table th {
    max-width: 10em;
  }
  .shipment-tbl-tkbsize-defined tbody tr td:last-child {
    border-width: 1px;
  }
}

/* 個人情報保護方針 / 会員規約 */
.privacy-policy,
.membership-agreement{
  font-size:16px;
  letter-spacing: .1em;
  line-height: 2.0;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (min-width: 960px) {
  /*.privacy-policy,
  .membership-agreement{
    font-size:16px;
    letter-spacing: .1em;
    line-height: 3.0;
  }*/
}

/* 送料について */
.shipment-explanation{
  font-family: 'Noto Sans JP', sans-serif;
}
.shipment-explanation p{
  font-size:16px;
  letter-spacing: .1em;
  line-height: 2.0;
}
.delivery_table {
  margin-left: auto;
  margin-right: auto;
  font-size: 1em;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.1em;
  line-height: 2.0;
  width: 100%;
  border-bottom: 1px solid #eee;
  border-spacing: 0;
  border-collapse: collapse;
  margin-top: 0.5em;
}
.delivery_table caption {
  padding: 30px 0;
  font-size: 20px;
  letter-spacing: .2em;
  font-weight: 700;
  text-align: center;
}
.delivery_table .light {
  font-weight: 400;
  font-size: .875em;
  display: inline-block;
}
.delivery_table th, .delivery_table td {
  text-align: left;
  padding: 1em 4%;
  border: 0 none;
  border-top: 1px solid #eee;
  vertical-align: top;
  width: 20%;
  line-height: 1.5;
}
.delivery_table th {
  font-weight: 700;
  position: relative;
  color: #000;
}
.delivery_table th:first-child {
  padding-left: 6.1%;
}
.delivery_table td[colspan] {
  width: auto;
}
.delivery_table thead th, .delivery_table thead td {
  font-weight: 700;
  background-color: #f0f0f0;
}
.delivery_table tbody tr:nth-child(odd) th, .delivery_table tbody tr:nth-child(odd) td {
  background-color: #fff;
}
.delivery_table tbody tr:nth-child(even) th, .delivery_table tbody tr:nth-child(even) td {
  background-color: #f0f0f0;
}

@media only screen and (max-width: 480px) {
  .delivery_table {
    font-size: .875em;
  }
  .delivery_table, .delivery_table caption, .delivery_table thead, .delivery_table tbody, .delivery_table tr, .delivery_table th, .delivery_table td {
    display: block;
    width: 100%;
  }
  .delivery_table caption{
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .delivery_table th {
    padding-top: .25em;
    padding-bottom: .25em;
  }
  .delivery_table th:first-child {
    padding-left: 4%;
  }
  .delivery_table td {
    border-top: 0 none;
    padding-top: 0;
    padding-bottom: .25em;
    text-align: right;
  }
  .delivery_table thead {
    display: none;
  }
  .delivery_table.areaList tbody td:before {
    margin-right: 1em;
    font-weight: 700;
  }
  .delivery_table.areaList tbody td:nth-child(2):before {
    content: "ネコポス";
  }
  .delivery_table.areaList tbody td:nth-child(3):before {
    content: "宅急便コンパクト";
  }
  .delivery_table.areaList tbody td:nth-child(4):before {
    content: "宅急便";
  }
  .delivery_table.areaList tbody td:nth-child(5):before {
    content: "草取レーキ";
  }
  .delivery_table.areaList tbody td[colspan]:before {
    content: none;
  }
}

/* clearfix */
.cl, #header, #container, #main,
.main, #secondary, #footer {
  *zoom: 1;
}
.cl::after, #header::after, #container::after, #main::after,
.main::after, #secondary::after, #footer::after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/* キャリア別表示・非表示 */
.pc {
  display: none;
}

.sp {
  display: block;
}

@media screen and (min-width: 960px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}
/*--------------------------------------
 layout
--------------------------------------*/
#wrapper{
  position: relative;
  overflow: hidden;
  height: 100%;
}
.wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

#header {
  margin: 0 auto;
  position: relative;
  z-index: 99;
  background-color: #000;
}

#container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#main,
.main {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  margin-left: 16px;
  margin-left: 1.6rem;
  margin-right: 16px;
  margin-right: 1.6rem;
}

.one-column #main,
.one-column .main {
  width: 100%;
  margin: auto;
}

.l-inner{
  /*width: 94%;
  margin-left: auto;
  margin-right: auto;*/
  width: calc(100% - 3.2rem);
  margin-left: 1.6rem;
  margin-right: 1.6rem;
  position: relative;
}
.inner {
  width: 94%;
  margin: 0 3%;
  height: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-inner{
    /*width: 87.058824%;*/
    width: 77.0833vw;
    margin-left: auto;
    margin-right: auto;
  }
  .inner {
    width: 100%;
    max-width: 96%;
    margin: 0 auto;
    padding: 0 3%;
  }
}
@media screen and (min-width: 1200px) {
  .inner {
    padding: 0;
  }
}

.no_inner {
  width: 100%;
  height: auto;
  margin: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .no_inner {
    max-width: 96%;
    margin: 0 auto;
  }
}

#secondary {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

#footer {
  text-align: center;
  position: relative;
  background-color: #000;
  font-family:  "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;
}

@media screen and (min-width: 960px) {
  /* 960px以下:2column layout */
  #wrapper{
    display: flex;
  }
  #header {
    margin: 0;
    /*position: fixed;*/
    position: relative;
    width: 220px;
    height: auto;
    /*float: left;*/
    min-height: 100%;
  }

  #container {
    width: -webkit-calc(100% - 220px);
    width: calc(100% - 220px);
    /*margin: 0 0 0 220px;*/
    margin: 0;
    /*float: right;*/
    max-height: calc(100% - 110px);
  }

  #footer {
    width: -webkit-calc(100% - 220px);
    width: calc(100% - 220px);
    /*margin: 0 0 0 220px;*/
    margin: 0;
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  /* 1200px以下:2column layout */
}
.layer-bk, .layer-wh {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
  padding: 0.5em 0;
}

.layer-bk {
  background: rgba(0, 0, 0, 0.44);
}

.layer-wh {
  background: rgba(255, 255, 255, 0.8);
}

/*--------------------------------------
 共通パーツ
--------------------------------------*/
/* SNS */
.sns li {
  display: inline-block;
}
.sns li a {
  color: #000;
}
.sns li a i {
  font-size: 24px;
  font-size: 2.4rem;
}

/* もっとリンク 右矢印 */
.more-link {
  text-align: right;
  /*margin-bottom: 1.5em;*/
  font-size: 14px;
  font-size: 1.4rem;
}
.more-link a {
  display: inline-block;
  text-decoration: none;
}
.more-link a::before {
  content: "\e900";
  font-family: "icomoon2";
  margin-left: 5px;
}
.more-link a:hover {
  color: #560000;
  text-decoration: underline!important;
}
.more-link a:hover::before {
  color: #560000;
}
@media screen and (min-width: 960px) {
  .more-link {
    text-align: left;
    /*margin-bottom: 1.5em;*/
    font-size: 13px;
    font-size: 1.3rem;
  }
}

/* パンくず */
.breadcrumbs {
  padding: 0.8em 0 1.5em;
  text-align: left;
}
.breadcrumbs strong {
  font-weight: normal;
}
.breadcrumbs li {
  max-width: 100%;
  display: inline-block;
  color: #0d0015;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.78;
}
.breadcrumbs li a {
  color: #a40000;
  text-decoration: underline;
}
.breadcrumbs li::after {
  content: " > ";
  color: #c9c9c9;
}
.breadcrumbs li:last-child::after {
  content: "";
}
@media screen and (min-width: 768px) {
  .breadcrumbs li {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* ページ送り */
.pager {
  position: relative;
  margin: 0 auto 30px;
  text-align: center;
  width: 94%;
}
.pager .prev,
.pager .next {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  height: 20px;
}
.pager .prev a,
.pager .next a {
  position: relative;
  line-height: 20px;
}
.pager .prev a::after,
.pager .next a::after {
  position: absolute;
  width: 14px;
}
.pager .prev {
  left: 0;
}
.pager .prev a {
  padding-left: 24px;
}
.pager .prev a::after {
  left: 0;
  content: "\e90d";
  font-family: "icomoon2";
  font-size: 16px;
}
.pager .next {
  right: 0;
}
.pager .next a {
  padding-right: 24px;
}
.pager .next a::after {
  right: 0;
  content: "\e900";
  font-family: "icomoon2";
  font-size: 16px;
}
.pager .prev a span,
.pager .next a span {
  display: none;
}

@media screen and (min-width: 768px) {
  .pager {
    width: 60%;
  }
  .pager .prev a span,
  .pager .next a span {
    display: inline;
  }
}

.page-num {
  display: inline-block;
}
.page-num ul {
  font-size: 0;
}
.page-num ul li {
  font-size: 14px;
  display: inline-block;
  margin: 0 15px;
}
.page-num ul li span {
  font-weight: bold;
  font-size: 16px;
}

/* 〇 */
.page-num2 {
  display: inline-block;
}
.page-num2 ul {
  font-size: 0;
}
.page-num2 ul li {
  font-size: 14px;
  display: inline-block;
  margin: 0 5px;
}
.page-num2 ul li a {
  display: block;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #000;
}
.page-num2 ul li a:hover {
  background-color: #560000;
  border-color: #560000;
  color: #fff;
  text-decoration: none;
}
.page-num2 ul li span a {
  font-weight: bold;
  background-color: #560000;
  border-color: #560000;
  color: #fff;
}

/* □ */
.page-num3 {
  display: inline-block;
}
.page-num3 ul {
  font-size: 0;
}
.page-num3 ul li {
  font-size: 14px;
  display: inline-block;
  margin: 0 5px;
}
.page-num3 ul li a {
  display: block;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  border: 1px solid #000;
  color: #000;
}
.page-num3 ul li a:hover {
  background-color: #560000;
  border-color: #560000;
  color: #fff;
  text-decoration: none;
}
.page-num3 ul li span a {
  font-weight: bold;
  background-color: #f2a0a1;
  color: #fff;
}

/* CSSボタン */
.css-batu, .css-plus {
  display: inline-block;
  position: relative;
  margin: 0 20px 0 7px;
  padding: 0;
  width: 4px;
  height: 20px;
  background: #000;
  cursor: pointer;
}

/* ×ボタン */
.css-batu {
  transform: rotate(45deg);
}
.css-batu::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 20px;
  height: 4px;
  margin-top: -2px;
  background: #000;
}

/* +ボタン */
.css-plus::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 20px;
  height: 4px;
  margin-top: -2px;
  background: #000;
}

/* TOPへ戻る */
#page-top {
  position: fixed;
  height: 60px;
  bottom: 0;
  right: 0;
  font-size: 20px;
  font-size: 2rem;
  z-index: 101;
}
#page-top a {
  background: #000;
  /*opacity: 0.7;*/
  text-decoration: none;
  color: #fff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}
#page-top a::after {
  content: "\e901";
  font-family: 'icomoon2';
  color: #fff;
  /*font-size: 14px;*/
}
#page-top a:hover {
  background: #560000;
  text-decoration: none;
}

/* TOPへ戻る〇 */
#page-top2 {
  position: fixed;
  height: 44px;
  bottom: 20px;
  left: 86%;
  font-size: 20px;
  font-size: 2rem;
  z-index: 101;
}
#page-top2 a {
  background: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  color: #000;
  width: 44px;
  height: 44px;
  text-align: center;
  display: inline-block;
  line-height: 44px;
  vertical-align: middle;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
#page-top2 a::after {
  content: "\e901";
  font-family: 'icomoon2';
  color: #fff;
  /*font-size: 14px;*/
}
#page-top2 a:hover {
  background: #560000;
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  #page-top2 {
    position: absolute;
    top: 0;
  }
}

/*--------------------------------------------
 検索フォームスタイル
--------------------------------------------*/
.searchform1,
.searchform2,
.searchform3,
.searchform4 {
  position: relative;
  height: 36px;
}
.searchform1 input,
.searchform2 input,
.searchform3 input,
.searchform4 input {
  border: none;
}
.searchform1 input[type="text"],
.searchform2 input[type="text"],
.searchform3 input[type="text"],
.searchform4 input[type="text"] {
  padding: 0 15px;
  position: absolute;
}
.searchform1 input[type="submit"],
.searchform2 input[type="submit"],
.searchform3 input[type="submit"],
.searchform4 input[type="submit"] {
  position: absolute;
  padding: 0;
}
.searchform1 button,
.searchform2 button,
.searchform3 button,
.searchform4 button {
  position: absolute;
  padding: 0;
}

/* 虫眼鏡ボタン付き検索（searchform1）
--------------------------------------------*/
.searchform1 input[type="text"] {
  background: #eeeeee;
  border-right: none;
}

.sbox1 {
  height: 36px;
  left: 0;
  top: 0;
  width: 260px;
  width: -webkit-calc(100% - 40px);
  width: calc(100% - 40px);
  border-radius: 2px 0 0 2px;
}
.sbox1:hover {
  border: none;
  background: #fffDF4;
}

.sbtn1 {
  width: 40px;
  height: 36px;
  right: 0;
  top: 0;
  border-radius: 0 2px 2px 0;
  background: #000000;
  color: #fff;
  border: none;
  border-left: none;
  font-size: 16px;
  font-size: 1.6rem;
}
.sbtn1::after {
  content: "\e906";
  font-family: "icomoon2";
  font-size: 20px;
  color: #fff;
}
.sbtn1:hover {
  background: #000000;
  color: #fff;
}

/* 検索ボタン付き検索（searchform2）
--------------------------------------------*/
.searchform2 input[type="text"] {
  border-right: none;
  border: 1px solid #bfbfbf;
  background: #fff;
}
.searchform2 input[type="text"]:hover {
  border: solid 1px #00b7ee;
}

.sbox2 {
  height: 36px;
  left: 0;
  top: 0;
  width: 240px;
  width: -webkit-calc(100% - 60px);
  width: calc(100% - 60px);
}

.sbtn2 {
  width: 60px;
  height: 36px;
  right: 0;
  top: 0;
  background: #444444;
  color: #fff;
  border: none;
  border-left: none;
  font-size: 16px;
  font-size: 1.6rem;
}
.sbtn2:hover {
  background: #444444;
  color: #fff;
}

/* 虫眼鏡フレーム内検索（#searchform3）
--------------------------------------------*/
.searchform3 {
  border: 2px solid #c5c5c5;
  height: 40px;
}
.searchform3 input[type="text"] {
  border-right: none;
  border: none;
  background: #fff;
  border-radius: 0;
}
.searchform3:hover {
  border: solid 2px #560000;
}

.sbox3 {
  height: 36px;
  left: 0;
  top: 0;
  width: 260px;
  width: -webkit-calc(100% - 40px);
  width: calc(100% - 40px);
}
.sbox3:hover {
  border: none;
}

.sbtn3 {
  width: 40px;
  height: 36px;
  right: 0;
  top: 0;
  background: #fff;
  color: #333;
  border: none;
  border-left: none;
  font-size: 16px;
  font-size: 1.6rem;
}
.sbtn3::after {
  content: "\e906";
  font-family: "icomoon2";
  font-size: 20px;
  color: #333;
}
.sbtn3:hover {
  background: #E0E0E0;
  color: #000;
}

/* 伸びる検索（searchform4）
--------------------------------------------*/
.searchform4 {
  height: 44px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  width: 44px;
}
.searchform4 input[type="text"] {
  background: #ccc;
  border: none;
  border-radius: 22px;
  color: #333;
  cursor: pointer;
  height: 44px;
  opacity: 0;
  outline: none;
  padding: 5px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.7s;
  width: 44px;
  z-index: 5;
}
.searchform4 input[type="text"]:focus {
  cursor: text;
  opacity: 1;
  width: 300px;
}
.searchform4 input[type="submit"] {
  display: none;
}

.sbtn4 {
  border-radius: 50%;
  display: inline-block;
  height: 44px;
  line-height: 44px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  text-align: center;
  width: 44px;
}
.sbtn4::after {
  content: "\e906";
  font-family: "icomoon2";
  font-size: 20px;
  color: #fff;
}

/*------------------------------
 slider
------------------------------*/
#main-image {
  position: relative;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}
#main-image img {
  max-width: 100%;
  height: auto;
}

.main-image-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 2000px;
  height: auto;
  margin: 0 auto;
}
.main-image-slider > ul {
  position: absolute;
  z-index: 97;
  top: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
}
.main-image-slider > ul > li {
  display: inline;
  float: left;
  overflow: hidden;
  list-style-type: none;
  width: 100%;
}
.main-image-slider > ul > li span, .main-image-slider > ul > li a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.main-image-prev,
.main-image-next {
  position: absolute;
  top: 50%;
  z-index: 97;
  margin-top: -18px;
}
.main-image-prev a,
.main-image-next a {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
}
.main-image-prev a:hover,
.main-image-next a:hover {
  text-decoration: none;
}

.main-image-prev {
  right: 10px;
}
.main-image-next {
  left: 10px;
}

.main-image-indicator {
  position: absolute;
  z-index: 97;
  right: 0;
  bottom: 10px;
  left: 0;
}
.main-image-indicator ul {
  text-align: center;
}
.main-image-indicator ul li {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 8px;
  pacity: .6;
  border: #FFE18C solid 1px;
  border-radius: 50%;
  background-color: transparent;
}
.main-image-indicator ul li.active {
  background-color: #FFE18C;
}

@media screen and (max-width: 600px) {
  #main-image {
    width: 100%;
    overflow: hidden;
    margin: 0;
    text-align: center;
  }

  .main-image-slider > ul {
    height: 460px;
  }
  .main-image-slider > ul > li {
    width: 100%;
  }

  .main-image-indicator {
    bottom: 6px;
  }
  .main-image-indicator ul {
    font-size: 0;
    margin: 0;
    padding: 0;
  }
  .main-image-indicator ul li {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}
/*--------------------------------------
 calendar
--------------------------------------*/
.months {
  /*font-family:  "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;*/
  text-align: center;
  padding: 8px 0;
  margin: auto;
  font-size: 13px;
  font-size: 1.3rem;
}

.schedule-area {
  text-align: center;
  margin-bottom: 24px;
}
.schedule-area .months {
  width: 94%;
  color: #fff;
  background-color: #f2a0a1;
  padding: 8px 0;
  margin-bottom: 1.0em;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}

.schedule-area2 {
  text-align: center;
}
.schedule-area2 .months {
  text-align: left;
  padding: 5px 5px 10px;
}

.schedule-note {
  text-align: right;
  font-size: 15px;
  font-size: 1.5rem;
  width: 96%;
  margin: 0 3%;
}
.schedule-note i {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 5px;
  vertical-align: -2px;
}

/* カレンダー線あり
--------------------------------------------*/
.calendar table {
  width: 94%;
  margin: auto;
}
.calendar th, .calendar td {
  font-size: 13px;
  font-weight: normal;
  padding: 5px 0;
  width: -webkit-calc(94% / 7);
  width: calc(94% / 7);
  text-align: center;
  border: 2px solid #fff;
  margin: 0;
  display: table-cell;
}
.calendar thead th {
  padding: 10px 0;
}
.calendar thead th:first-child {
  color: #ec0000;
}
.calendar thead th:last-child {
  color: #0068b7;
}
.calendar td i {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
}

/* カレンダー線なし
--------------------------------------------*/
.calendar-2 {
  margin-bottom: 20px;
  font-family:  "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;
}
.calendar-2 table {
  width: 94%;
  margin: auto;
  border-spacing: 5px;
  border-collapse: separate;
}
.calendar-2 th, .calendar-2 td {
  font-size: 13px;
  font-weight: normal;
  padding: 0;
  width: -webkit-calc(94% / 7);
  width: calc(94% / 7);
  text-align: center;
  border: none;
  display: table-cell;
}
.calendar-2 thead {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.calendar-2 thead th {
  background: #000;
  padding: 5px 3px;
  color: #fff;
}
/*.calendar-2 thead th:first-child {
  color: #ec0000;
}
.calendar-2 thead th:last-child {
  color: #0068b7;
}*/
.calendar-2 tbody {
  padding-top: 10px;
}
.calendar-2 tbody td {
  vertical-align: middle;
  padding: 5px 3px;
  background: #f1f0ee;
}
.calendar-2 tbody td:empty {
  background-color: transparent;
}
.calendar-2 tbody td i {
  display: inline-block;
  width: 100%;
  height: auto;
  max-width: 26px;
  max-height: 26px;
  line-height: 26px;
  margin: -5px -3px;
}

/* イベント色分け */
.e1 {
  color: #fff!important;
  background-color: #999!important;
}

.e2 {
  color: #fff!important;
  background-color: #b34749!important;
}

.e3 {
  color: #fff!important;
  background-color: #eb8b46!important;
}

.list-event {
  border-top: 1px solid #e5e5e5;
  padding: 15px 0;
  margin: 0 3%;
  text-align: left;
}
.list-event li {
  display: inline-block;
  line-height: 24px;
  position: relative;
  min-height: 24px;
  margin-bottom: 5px;
  margin-right: 10px;
  padding-left: 32px;
  text-align: left;
  list-style: none;
  font-size: 13px;
  font-size: 1.3rem;
}
.list-event li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  content: '';
}
.list-event li.event1::before {
  background-color: #f26163;
}
.list-event li.event2::before {
  background-color: #b34749;
}
.list-event li.event3::before {
  background-color: #eb8b46;
}


h1, h2, h3, h4, h5, h6 {
  font-family:  "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;
  font-weight: normal;
}

/*--------------------------------------
 header
--------------------------------------*/
#header {
  height: 70px;
  width: 100%;
}

.header-in {
  width: 100%;
  height: 70px;
  padding: 0 5%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.header-in a:hover {
  text-decoration: none;
}

.h_left,
.h_right {
  height: 60px;
  vertical-align: middle;
}

.h_left {
  padding-top: 20px;
}

.h_right {
  position: relative;
  margin-right: -5%;
}

.sp-logo {
  display: block;
}

.pc-logo {
  display: none;
}

/* LOGO画像 */
.site-name {
  height: 60px;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
}
.site-name a {
  height: 100%;
  padding: 0;
  width: 35px;
  display: block;
  position: absolute;
  color: #fff;
  text-align: center;
  overflow: hidden;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
.site-name img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  margin: auto;
}

/* menu */
.menubtn {
  width: 24px;
  height: 60px;
  text-align: center;
  position: absolute;
  right: 5%;
  top: 5px;
}
.menubtn a {
  display: block;
}

#jq-open-btn::before {
  content: "\e905";
  font-family: "icomoon2";
  font-size: 24px;
  color: #fff;
  line-height: 60px;
}
#jq-open-btn.close::before {
  content: "\e911";
  font-family: "icomoon2";
  font-size: 24px;
  color: #fff;
  line-height: 60px;
}

/* 検索 */
.searchbtn {
  width: 40px;
  height: 60px;
  text-align: right;
  padding-right: 10px;
  position: absolute;
  right: calc(8% + 24px);
  top: 5px;
  overflow: hidden;
}
.searchbtn i {
  display: block;
  font-size: 24px;
  color: #fff;
  line-height: 60px;
}
.searchbtn i:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.search-area {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  padding: 20px 3%;
  background-color: #2d2828;
  width: 100%;
  height: 80px;
}

/* グローバルナビ
------------------------------*/
.wrapper {
  left: 0;
  overflow-x: hidden;
}

#global-nav {
  position: fixed;
  overflow-y: auto;
  top: 70px;
  right: 0;
  width: 225px;
  height: calc(100vh - 70px);
  /*padding-bottom: 72px;*/
  background: #000;
  transform: translate(232px);
  font-family:  "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;
  font-feature-settings: "palt";
  
  @supports (-webkit-touch-callout: none){
    height: calc(-webkit-fill-available - 70px);
  }
}
@media screen and (max-width: 767px){
  max-height: inherit!important;
}
#global-nav.open {
  transform: translate(0);
}
#global-nav li {
  text-align: left;
  color: #878787;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .2em;
}
#global-nav li a {
  display: block;
  color: #fff;
}
#global-nav li a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #560000;
  opacity: 1;
}

.global-inner{
  position: relative;
  padding-bottom: 72px;
  min-height: 100%;
}

/* カテゴリーリスト */
.cat-menu {
  margin: 0;
  border-bottom: 1px solid #222;
}
.cat-menu li {
  position: relative;
  line-height: 1.4;
  border-top: 1px solid #222;
}
.cat-menu li b {
  display: block;
  padding: 15px;
  font-size: 18px;
  font-size: 1.8rem;
  cursor: pointer;
}
.cat-menu li b::after {
  content: "＋";
  font-size: 20px;
  position: absolute;
  right: 15px;
}
.cat-menu li b.active::after {
  content: "─";
}
.cat-menu li a {
  display: block;
  padding: 1em 26px;
  font-size: 15px;
  font-size: 1.5rem;
}
.cat-menu li li {
  padding-left: 15px;
}
.cat-menu li li a{
  font-size: 14px;
  font-size: 1.4rem;
  padding-top: .75em;
  padding-bottom: .75em;
}
#global-nav .cat-menu li li a:hover {
  color: #a9a9a9;
  background: #444444;
}
.cat-menu li li li {
  border-top: none;
}
.cat-menu li li li a {
  font-size: 12px;
  padding:9px 9px 9px 30px;
}

/* アイコンリスト */
.header-menu {
  overflow: hidden;
}
.header-menu li {
  position: relative;
  line-height: 1.4;
}
.header-menu li a {
  display: block;
  padding: 1em 26px;
  text-align: left;
  color: #fff;
}
.header-menu li i {
  margin-right: 10px;
}

#global-nav .header-menu.sp li i {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}
#global-nav .header-menu.sp li a {
  font-size: 12px;
}

.cartbtn {
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 1.4;
  width: 100%;
}
.cartbtn a {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .2em;
  color: #fff;
  background-color: #2d2828;
  padding: 26px;
}
.cartbtn a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #560000;
  opacity: 1;
}
.cartbtn i {
  margin-right: 10px;
}

#global-nav .btn-amazon{
	margin-top: 1em;
}

#global-nav .sns {
  padding: 0 3% 10px;
  text-align: right;
}
#global-nav .sns li {
  text-align: center;
  margin: 3px;
}
#global-nav .sns li a {
  width: 33px;
  height: 33px;
  padding: 5px 0 0 5px;
  background: #444444;
  color: #878787;
  font-size: 18px;
}

/*------------------------------
 #container
------------------------------*/
/* パンくず */
.breadcrumbs li::after {
  content: " / ";
  margin: 0 5px;
}
.breadcrumbs li:last-child::after {
  content: "";
}

#top-main {
  margin: 0!important;
}

/* LP　*/
#body-lp .item-order {
  width: 100%;
}
#body-lp .contents {
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}
#body-lp .item-detail-cart {
  border-bottom: 0;
}

.lp-img {
  padding: 30px;
}

.main {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
}

.f-right .list-link + .sns {
  margin-top: 20px;
  text-align: left;
}
@media screen and (max-width: 959px) {
  .f-right .list-link + .sns {
    text-align: center;
  }
}

/* section item block
------------------------------*/
.section-block{
/*.cat-block,*/
/*.main-article {*/
  clear: both;
  padding: 30px 0 25px;
}
.cat-block,
.item-list-noitem{
  padding-bottom: 30px;
}
.main-article{
  padding-bottom: 150px;
}

/* 見出し */
.section-head,
.item-head,
.ttl {
  padding: 0;
  position: relative;
  margin-bottom: 25px;
  text-align: center;
}

.section-head::before,
.item-head::before,
.ttl::before {
  /*position: absolute;
  content: " ";
  border-top: 4px solid #f2a0a1;
  top: 100%;
  left: 50%;
  width: 78px;
  margin-left: -39px;*/
}

/* 見出しh2 */
.title1 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  padding: 0;
  letter-spacing: .15em;
  font-weight: normal;
}

.title2 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  padding: 0;
  letter-spacing: .1em;
  font-weight: normal;
  margin-bottom: 25px;
  margin-top: 45px;
}
.title3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: .1em;
  line-height: 1.5;
  font-weight: 500;
  padding-bottom: 25px;
  border-bottom: 1px solid currentColor;
  margin-bottom: 22px;
  margin-top: 45px;
}
.title4{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom:25px;
  margin-top: 45px;
}

/* ディスクリプション */
.lead-txt {
  padding: 10px 3% 0;
}

.lead-txt p {
  text-align: left;
  line-height: 1.5;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 1.0em;
}

/* 見出し:サブタイトル */
.sub-title {
  /*font-size: 60% !important;*/
  font-weight: normal !important;
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: .15em;
}

/* ボタン */
a[class^='btn-'] {
  display: inline-block;
  border-width: 1px;
  border-style: solid;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .25em;
  text-align: center;
  min-width: 297px;
}

.btn-normal {
  border-color: rgba(0, 0, 0, 0.5);
  padding: 1em 10px;
}
.btn-normal:before {
  content: "";
  font-family: "icomoon2";
  letter-spacing: .25em;
}
.btn-normal:hover {
  color: #fff;
  border-color: #560000 !important;
  background-color: #560000;
}
.btn-wrap {
  text-align: center;
}
.btn-list{
  margin-top: 25px;
}
.btn-list a[class^='btn-'] + a[class^='btn-'] {
  margin-top: 25px;
}
a[class='btn-line'],
a[class='btn-form']{
  border: 0 none;
  border-radius: 5px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.25;
  padding: 5px;
  text-decoration: none!important;
  max-width: 330px;
  min-height: 70px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: relative;
  transition-property: opacity;
}
a[class='btn-line']:hover,
a[class='btn-form']:hover {
  opacity: .75;
}
a.btn-line {
  background: #07b53b;
  text-align: left;
  padding-left: calc(2.5em + 20px);
}
a.btn-line .big {
  font-size: 1.26em;
  display: inline-block;
}
a.btn-line::before {
  content: "\e915";
  font-family: 'icomoon2'!important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.5em;
  position: absolute;
  left: 10px;
  top: 12px;
  display: block;
}
a.btn-form {
  text-align: center;
  background: #560000;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  a[class^='btn-'] {
    font-size: 18px;
    font-size: 1.8rem;
    min-width: 348px;
  }
  .btn-list{
    margin-top: 50px;
  }
  .btn-list a[class^='btn-'] + a[class^='btn-'] {
    margin-top: 50px;
  }
  a[class='btn-line'],
  a[class='btn-form']{
    border-radius: 10px;
    padding: 10px;
    min-height: 80px;
  }
  a.btn-line {
    padding-left: calc(2.5em + 25px);
  }
  a.btn-line::before {
    left: 15px;
    top: 18px;
  }
  .btn-form {
  }
}

.imglist {
display:block;
margin:25px auto;
}
.imglist li{
width:100%;
text-align:center;
}
.imglist li + li{
margin-top:3%;
}
.imglist img{
max-width:100%;
}
@media only screen and (min-width: 768px) {
.imglist {
display:flex;
flex-wrap:wrap;
margin:50px auto;
}
.imglist li{
width:auto;
max-width:48.5%;
max-height:640px;
display:block;
margin-top:3%;
}
.imglist li:nth-child(odd){
margin-right:3%;
}

.imglist-vertical img{
max-height:640px;
width:auto;
height:100%;
}
}

/* TOP
----------------------------------*/
#top-shop-message1,
#top-shop-message2 {
  border: 10px solid #e5e5e5;
  padding: 2.0em;
}
#top-shop-message1 h2,
#top-shop-message2 h2 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  padding: 10px 0;
  position: relative;
}
#top-shop-message1 p,
#top-shop-message2 p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 1.5em;
}

#top-shop-message2 {
  margin-top: 30px;
}

/* お知らせ */
.info-section-block{
  padding-top: 35px;
  padding-bottom: 18px;
}
.info-section-head{
  
}
.info-section-head .title1{
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .2em;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; 
}
.info-section-head .main-title{
  display: block;
}
.info-section-head .sub-title{
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: .1em;
  position: relative;
  padding-left: 25px;
  padding-top: 32px;
}
.info-section-head .sub-title:before{
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 5px;
  border-left: 1px solid #000;
  width: 0;
  height: 65px;
  transform: rotate(45deg);
}

.list-info {
  padding: 0;
  list-style: none;
  margin-top: 24px;
}
.list-info li {
  padding: 5px 0 15px;
}
.list-info li span {
  /*font-size: 12px;*/
}
.list-info li a,
.list-info li .info-nolink{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  width: 100%;
}
.list-info li a:hover {
  color: #560000;
  text-decoration: underline;
}

.info-img{
  width: 64px;
  height: 64px;
  margin-right: 1em;
}
.info-contents {
  width: calc(100% - 64px - 1em);
}
.info-title{
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
}
.info-date{
  font-size: 13px;
  font-size: 1.3rem;
}

/* 商品リスト
----------------------------------*/
/* カラム */
.col-2,
.col-3,
.col-4,
.col-5 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.col-2 li,
.col-3 li,
.col-4 li {
  width: 50%;
}

.item-link{
  display: block;
}
.item-link:hover{
  color: #560000;
  /*text-decoration: underline;*/
  opacity: 1;
}
.item-link:hover .item-photo{
  border-color: #560000;
}

.item-photo {
  overflow: hidden;
  margin: auto;
  margin-bottom: 10px;
  position: relative;
  /*max-width: 340px;
  max-height: 340px;*/
  border: 2px solid transparent;
  transition: .3s;
  width: 100%;
}
.item-photo img {
  display: block;
  max-width: 100%;
  /*max-height: 340px;*/
  width: 100%;
  height: auto;
  margin: auto;
}

/* アイコン */
.icon-rank {
  width: 100%;
  height: 22px;
  margin: 0 0 10px;
  line-height: 22px;
  text-align: center;
  z-index: 97;
  background-color: #560000;
}
.icon-rank span {
  font-weight: bold;
  color: #fff;
}

/* バッチ */
 .icon-badge41530{
    margin-right: 5px;
    /*margin-bottom: 15px;*/
    margin-top: 10px;
    z-index: 97;
   display: inline-block;
  }

/* NEWバッジ */
  .icon-badge41530::before{
    content: "NEW";
    width: 60px;
    height: 20px;
    display: inline-block;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
    background: transparent;
    border: 1px solid #1e50a2;
    color: #1e50a2;
  }
/* おすすめバッジ */
 .icon-badge41531{
    margin-right: 5px;
    /*margin-bottom: 15px;*/
    margin-top: 10px;
    z-index: 97;
   display: inline-block;
  }

/* NEWバッジ */
  .icon-badge41531::before{
    content: "おすすめ";
    width: 60px;
    height: 20px;
    display: inline-block;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
    background: transparent;
    border: 1px solid #96514d;
    color: #96514d;
  }
/* 人気バッジ  */
 .icon-badge41532{
    margin-right: 5px;
    /*margin-bottom: 15px;*/
    margin-top: 10px;
    z-index: 97;
   display: inline-block;
  }

/* NEWバッジ */
  .icon-badge41532::before{
    content: "人気";
    width: 60px;
    height: 20px;
    display: inline-block;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
    background: transparent;
    border: 1px solid #028760;
    color: #028760;
  }
/* ユーザー追加バッジ */

.icon-reservation {
  margin-right: 5px;
  margin-bottom: 15px;
  z-index: 97;
}
.icon-reservation::before {
  content: "予約商品";
  width: 60px;
  height: 20px;
  display: inline-block;
  font-size: 11px;
  line-height: 20px;
  text-align: center;
  border: 1px solid #e31c24;
  background: transparent;
  color: #e31c24;
}

.item-info {
  text-align: left;
}
.item-info .item-name,
.item-info .item-price {
  line-height: 1.3;
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 10px;
  transition: .3s;
}
.item-info .item-price {
  margin-top: 0;
}
.item-info .item-nonstock {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  padding: 8px 0 0;
  text-align: center;
  color: #a40000;
}

.tax {
  font-size: 70%;
}

.list-product {
  padding: 0;
}
.list-product li {
  list-style: none;
  padding: 0;
  color: #000;
  text-align: left;
}
.list-product li a {
  text-decoration: none;
}
.list-product.col-3 li,
.list-product.col-4 li {
  /*width: calc(( 100% - 40.1px ) * 0.5);*/
  width: calc(50% - 10px);
  margin: 5px;
}
.list-product li > div {
}

/* 検索・カテゴリーページ
----------------------------------*/
/* パンくず */
.breadcrumbs {
  padding: 60px 0 0;
  text-align: left;
}

/*.cat-head,*/
.frame-block {
  border: 10px solid #e5e5e5;
  padding: 2.0em;
}

/* ページ名 */
.main-article > .ttl,
.page-head {
  padding: 40px 0 30px;
  border-bottom: 1px solid #000;
  margin-bottom: 25px;
}
.page-head .sub-title{
margin-top:5px;
}
.ttl h2,
.page-title {
  font-size: 20px;
  font-size: 2.0rem;
  letter-spacing: .15em;
}

/* カテゴリ名 */
.cat-head {
  padding: 22px 0 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid #000;
}
.cat-name {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: .15em;
}

/*　並び順／ページ送り */
.sort {
  text-align: right;
  margin-bottom: 20px;
}
.sort ul {
  padding: 0 10px;
}
.sort ul li {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 0 2px;
  border-right: 1px solid #333;
}
.sort ul li:first-child,
.sort ul li:last-child {
  border: none;
}

.item-list-itemcount {
  border-top: 1px solid #000;
  text-align: right;
  margin: 1.5em 0;
  padding: 10px 0;
  font-size: 12px;
  font-size: 1.2rem;
}

/* 検索結果0,キャンペーン商品0 */
.product-list, .item-list-noitem {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6;
}

/* 詳細ページ
----------------------------------*/
#item-detail {
  /*padding-top: 20px;*/
}
#item-detail iframe {
max-width:100%;
max-height: 640px;
margin: 20px auto;
display:block;
}
#item-detail [class^="title"]:not(.title3) + iframe{
margin-top: 0;
}
#item-detail iframe + [class^="title"]:not(.title1){
margin-top: 25px;
}

.item-block-inner {
  width: 100%;
  margin: auto;
}

.item-detail-block {
  margin-bottom: 0;
}
.item-detail-block a {
  text-decoration: underline;
}

.item-footer {
  clear: both;
  margin-top: 60px;
  margin-bottom: 60px;
  /*border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;*/
  font-family: 'Noto Sans JP', sans-serif;
  text-align: left;
}
.item-footer > :first-child {
margin-top: 0!important;
}
.item-detail-left {
  width: 100%;
  padding: 0;
}

.item-detail-right {
  width: 100%;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
#item-detail iframe {
margin: 0 auto;
max-width:48%;
max-height: 480px;
}
#item-detail iframe + [class^="title"]:not(.title1){
margin-top: 40px;
}
#item-detail .mv-list {
display: flex;
flex-wrap: wrap;
gap: 40px 2%;
margin-top: 40px;
margin-bottom: 40px;
}
#item-detail .mv-list iframe.f-center{
margin-left: 26%;
margin-right: 26%;
}
}

/* サムネイル付き商品画像 
----------------------------*/
/* オープン画像 */
/*overlay*/
.overlay {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-open {
  /* overflow: hidden; */
}
.modal-open .overlay {
  display: block;
}

/* modal */
.modal {
  position: absolute;
  z-index: 102;
  display: none;
  background-color: #fff;
}

.modal-open .modal {
  display: block;
}

.modal-inner {
  position: relative;
  width: 100%;
}

.modal-img {
  max-width: calc(100% - 100px);
  max-height: calc(100% - 100px);
}
.modal-img img {
  display: block;
  width: auto;
  height: auto;
}

.modal-close {
  position: absolute;
  top: -52px;
  right: -4px;
}
.modal-close a {
  display: block;
  width: 40px;
  height: 40px;
}
.modal-close a::before {
  content: "\e911";
  font-family: "icomoon2";
  color: #fff;
  font-size: 40px;
}

/* 1枚目画像 */
.item-detail-photo-main {
  position: relative;
  padding: 0;
width: 30.20833vw;
  height: 30.20833vw;
}

.item-detail-photo {
  position: relative;
  overflow: hidden;
  /*width: 320px;
  height: 320px;*/
  width: 30.20833vw;
  height: 30.20833vw;
  margin: 0 auto 10px;
}
.item-detail-photo ul {
white-space:nowrap;
}
.item-detail-photo li {
  list-style: none;
  float: left;
  /*width: 320px;
  height: 320px;*/
  width: 30.20833vw;
  height: 30.20833vw;
  position: relative;
display:block;
}
.item-detail-photo ul li:last-child{
margin-left:-2px;
}
.item-detail-photo img {
  display: block;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: auto;
}

/* 商品画像:矢印 */
.item-detail-photo-backbtn,
.item-detail-photo-nextbtn {
  position: absolute;
  top: 50%;
  display: block;
  margin-top: -20px;
}
.item-detail-photo-backbtn a,
.item-detail-photo-nextbtn a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  color: #fff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  /*background-color: rgba(110, 110, 110, 0.7);*/
  background-color: #000;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
}
.item-detail-photo-backbtn a::before,
.item-detail-photo-nextbtn a::before {
  position: absolute;
}
.item-detail-photo-backbtn a:hover,
.item-detail-photo-nextbtn a:hover {
  text-decoration: none;
}

.item-detail-photo-backbtn {
  left: 2%;
}
.item-detail-photo-backbtn a::before {
  content: "\e90d";
  font-family: "icomoon2";
  left: 8px;
}

.item-detail-photo-nextbtn {
  right: 2%;
}
.item-detail-photo-nextbtn a::before {
  content: "\e900";
  font-family: "icomoon2";
  right: 8px;
}

/* 商品画像:サムネイル */
.item-detail-thumb {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
}

.item-detail-thumb-photo {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  width: 5.635vw;
  height: 5.635vw;
  margin: 0 0 10px;
  position: relative;
  /*border: 1px solid #d2d2d2;*/
}
.item-detail-thumb-photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  max-height: 5.635vw;
  max-width: inherit;
}

/* 販売価格 */
.item-detail-price {
  padding: 0;
  margin-bottom: 30px;
}
.item-detail-price dt {
  font-size: 18px;
  font-size: 1.8rem;
  display: table-cell;
  text-align: left;
  vertical-align: bottom;
  width: 5em;
}
.item-detail-price dt:after{
  content: "：";
}
.item-detail-price dd {
  display: table-cell;
  vertical-align: bottom;
}
.item-detail-price .price {
  font-size: 36px;
  font-size: 3.6rem;
  color: #a40000;
  font-weight: normal;
}
.item-detail-price .tax {
  font-size: 16px;
  font-size: 1.6rem;
}

/* メンバー価格・通常価格 */
.item-detail-memberprice dt,
.item-detail-normalprice dt {
  font-size: 18px;
  font-size: 1.8rem;
  display: table-cell;
  text-align: left;
  vertical-align: bottom;
  width: 5em;
}
.item-detail-memberprice dt:after,
.item-detail-normalprice dt:after{
  content: "：";
}
.item-detail-memberprice dd,
.item-detail-normalprice dd {
  display: table-cell;
  vertical-align: bottom;
}
.item-detail-memberprice .price,
.item-detail-normalprice .price {
  font-size: 22px;
  font-size: 2.2rem;
}
.item-detail-memberprice .tax,
.item-detail-normalprice .tax {
  font-size: 14px;
  font-size: 1.4rem;
}

/* 価格・スペック */
.item-detail-block-in,
.item-detail-spec {
  width: 100%;
  padding: 0;
  margin-bottom: 30px;
}
.item-detail-block-in:last-child,
.item-detail-spec:last-child{
margin-bottom:0;
}
.item-detail-block-in dl,
.item-detail-spec dl {
  display: flex;
  width: 100%;
  margin: 0 auto 15px;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: left;
}
.item-detail-block-in dt,
.item-detail-spec dt {
  /*display: table-cell;*/
  vertical-align: middle;
  /*width: 80px;*/
  padding: 0;
  line-height: 1.4;
}
.item-detail-block-in dt:after{
  content: "：";
}
.item-detail-block-in dd,
.item-detail-spec dd {
  /*display: table-cell;*/
  vertical-align: middle;
  padding: 0;
  line-height: 18px;
}

.item-detail-block-in dt {
  /*width: 7em;*/
}
.item-detail-spec dl {
  display: table;
  font-size: 14px;
  font-size: 1.4rem;
}
.item-detail-spec dt {
  display: table-cell;
  width: 80px;
}
.item-detail-spec dd {
  display: table-cell;
}

.item-detail-category {
  font-size: 14px;
  font-size: 1.4rem;
}

.item-detail-summary{
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.46;
  margin-bottom: 30px;
}
.item-detail-name {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: normal;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 28px;
}
.item-detail-name [class^="icon-badge"]{
  margin-top: 0;
  margin-left: 5px;
  margin-right: 0;
  vertical-align: 3px;
}

/* カートエリア */
.item-detail-cart {
  width: 100%;
  padding: 0;
  margin-bottom: 30px;
  /*border-bottom: 1px solid #e5e5e5;*/
}
.item-detail-cart p {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: left;
}

/* バリエーション */
/* select */
.item-detail-select,
.item-detail-inputtext {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.item-detail-select label,
.item-detail-inputtext input {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  height: 56px;
  vertical-align: middle;
  border: 1px solid #e5e5e5;
  background-color: #fff;
}
.item-detail-select::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 20px;
  width: 0;
  height: 0;
  margin-top: -3px;
  content: '';
  border-width: 8px 5px 0 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}
.item-detail-select select {
  font-size: 16px;
  line-height: 56px;
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  width: -webkit-calc(100%);
  height: 56px;
  margin: 0;
  padding: 0 45px 0 15px;
  border: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

/* radio */
.item-detail-radio {
  overflow: hidden;
  width: 100%;
  margin-bottom: 18px;
  text-align: left;
  overflow: hidden;
  width: 100%;
  margin-bottom: 18px;
}
.item-detail-radio div {
  margin-bottom: 10px;
  padding-bottom: 1px;
}
.item-detail-radio input {
  position: absolute;
  opacity: .0;
}
.item-detail-radio input + label {
  max-width: 100%;
  font-size: 16px;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.item-detail-radio input + label::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  margin-top: -1px;
  content: '';
  border: 1px solid #ccc;
  border-radius: 50%;
}
.item-detail-radio input:checked + label::after {
  position: absolute;
  top: 3px;
  left: 3px;
  display: block;
  width: 11px;
  height: 11px;
  content: '';
  border-radius: 50%;
  background-color: #560000;
}
.item-detail-radio label {
  font-size: 18px;
  line-height: 2;
  display: block;
  padding: 0;
}

.item-detail-num-count {
  font-size: 0;
  display: flex;
  width: 100%;
  margin-bottom: 18px;
}

.item-detail-num-plus {
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
}
.item-detail-num-plus a,
.item-detail-num-minus a {
  font-size: 30px;
  font-weight: bold;
  line-height: 50px;
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.item-detail-num-minus {
  font-size: 14px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.item-detail-num {
  height: 50px;
  margin-right: 10px;
  padding: 0;
  vertical-align: middle;
}
.item-detail-num input[type=number] {
  line-height: 50px;
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  border: solid 1px #666;
  -moz-appearance: textfield;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.item-detail-num input[type=number]::-webkit-inner-spin-button, .item-detail-num input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.item-detail-num-select {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  height: 56px;
  margin-bottom: 18px;
  vertical-align: middle;
  border: 1px solid #e5e5e5;
  background-color: #fff;
}
.item-detail-num-select label::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 20px;
  width: 0;
  height: 0;
  margin-top: -3px;
  content: '';
  border-width: 7px 5px 0 4px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}
.item-detail-num-select select {
  font-size: 14px;
  line-height: 56px;
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  width: -webkit-calc(100%);
  height: 56px;
  margin: 0;
  padding: 0 0 0 20px;
  text-indent: .01px;
  text-overflow: '';
  border: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.item-dtail-stock0 {
  color: #a40000;
  font-size: 22px;
  font-size: 2.2rem;
}

/* カートボタン */
.item-detail-cart-btn {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.item-detail-cart-btn a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .25em;
  line-height: 50px;
  width: 100%;
  height: 50px;
  text-align: center;
  color: #fff;
  background-color: #560000;
  -moz-appearance: textfield;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-family: 'Noto Sans JP', sans-serif;
}
.item-detail-cart-btn a::before {
  content: "\e907";
  font-family: "icomoon2";
  font-size: 14px;
  margin-right: .25em;
}
.item-detail-cart-btn a:hover {
  background-color: #a40000;
  color: #fff;
  text-decoration: none;
}

.item-detail-txt1,
.item-detail-txt2,
.item-detail-txt3 {
  width: 100%;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
}
.item-detail-txt1 p,
.item-detail-txt2 p,
.item-detail-txt3 p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
}

.item-detail-share {
  margin-bottom: 20px;
  text-align: center;
}
.item-detail-share ul {
  padding: 15px;
}
.item-detail-share li {
  display: inline-block;
}
.item-detail-share li a {
  display: block;
  padding: 8px 15px;
  color: #fff;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  font-size: 12px;
}
.item-detail-share li a:hover {
  text-decoration: none;
}
.item-detail-share li.twitter a {
  background-color: #55acee;
  text-decoration: none;
}
.item-detail-share li.twitter a:hover {
  background-color: #056fc2;
}
.item-detail-share li.facebook a {
  background-color: #3b5998;
  text-decoration: none;
}
.item-detail-share li.facebook a:hover {
  background-color: #102a72;
}

.item-dtail-nostock,
.item-dtail-outofoperiod {
  font-size: 22px;
  font-size: 2.2rem;
  color: #a40000;
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: left;
}

@media screen and (max-width: 767px) {
.item-detail-photo-main {
width: 86.95vw;
height: 86.95vw;
}
  /* 1枚目画像 */
  .item-detail-photo {
    width: 480px;
    height: 480px;
width: 86.95vw;
height: 86.95vw;
  }
  .item-detail-photo li {
    width: 480px;
    height: 480px;
width: 86.95vw;
height: 86.95vw;
  }

  /* 販売価格 */
  .item-detail-price {
    padding: 0;
    margin-bottom: 20px;
  }
  .item-detail-price dt {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .item-detail-price .price {
    font-size: 22px;
    font-size: 2.2rem;
  }
  
  /* メンバー価格・通常価格 */
  .item-detail-memberprice dt,
  .item-detail-normalprice dt {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .item-detail-memberprice .price,
  .item-detail-normalprice .price {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 600px) {
  /* サムネイル付き商品画像 
  ----------------------------*/
  /* オープン画像 */
  .nav-open {
    overflow: hidden;
  }
  .nav-open .overlay {
    display: block;
  }

  /* modal */
  .modal-img img {
    /*max-width: 300px;
    max-height: 300px;*/
    max-width: 91.466vw;
    max-height: 91.466vw;
    width: auto;
    height: auto;
  }

  .modal-close {
    position: absolute;
    top: -30px;
    right: -4px;
  }
  .modal-close a {
    display: block;
    width: 24px;
    height: 24px;
  }
  .modal-close a::before {
    content: "\e911";
    font-family: "icomoon2";
    color: #fff;
    font-size: 24px;
  }

  /* 1枚目画像 */
  .item-detail-photo-main {
    margin: 0 auto;
width: 100%;
    height: auto;
  }

  .item-detail-photo {
    /*width: 300px;
    height: 300px;*/
    width: 91.466vw;
    height: 91.466vw;
  }
  .item-detail-photo ul {
    width: 100%;
    /*height: 300px;*/
    height: 91.466vw;
    margin: 0 auto;
  }
  .item-detail-photo ul li {
    display: block;
    /*width: 300px;
    height: 300px;*/
    width: 91.466vw;
    height: 91.466vw;
    margin: 0;
  }
  
  .item-detail-photo-prevbtn{
    left: 0;
  }
  .item-detail-photo-nextbtn{
    right: 8px;
  }

  /* 商品画像:サムネイル */
  .item-detail-thumb-photo {
    width: 54px;
    height: 54px;
  }
  .item-detail-thumb-photo img{
    max-height: 54px;
  }
}

/*--------------------------------------
  #secondary
--------------------------------------*/
#secondary {
  width: 100%;
  background: #f2a0a1;
  padding: 30px 3%;
  color: #fff;
}
#secondary a {
  color: #fff;
}
#secondary .title2 {
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: normal;
  padding: 0 0 10px;
  text-align: left;
}
#secondary .sub-title {
  font-size: 70% !important;
  margin-left: 24px;
}
#secondary li {
  list-style: none;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
}
#secondary .col-3block {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  flex-direction: column;
}

.secondary-block {
  margin-bottom: 30px;
}
.secondary-block .list-link {
  text-align: left;
}
.secondary-block .list-link li {
  margin-top: 10px;
}
.secondary-block .block-in {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.secondary-block .block-in .calendar-ttl{
  width: 100%;
  margin: 0 5px 5px;
  font-size: 14px;
  font-size: 1.4rem;
}

/* カレンダー */
.schedule-area2 {
  width: 100%;
  width: 286px;
}

.calendar-2 table {
  width: 100%;
  margin: 0;
}

.f-logo {
  text-align: center;
  width: 100%;
  margin: auto;
  font-size: 20px;
  font-size: 2.0rem;
  font-family:  "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;
  padding: 30px 15px;
}
.f-logo a {
  color: #fff;
}
.f-logo img {
  margin: auto;
  max-width: 75px;
}

/*--------------------------------------
  #footer
--------------------------------------*/
#footer .btn-amazon{
  max-width: 175px;
  margin-left: auto;
  margin-right: auto;
  width: 46.666%;
}
#footer .list-link{
  padding: 20px 15px 10px;
  transform: translateX(-50%);
  left: 50%;
  position: relative;
  width: fit-content;
  text-align: left;
}
#footer .list-link li{
  line-height: 1.4;
  font-size: 13px;
  font-size: 1.3rem;
  white-space: nowrap;
}
#footer .list-link li + li{
  margin-top: 25px;
}
#footer .list-link a{
  color: #fff;
  position: relative;
  direction: inline-block;
  padding-left: calc(1em + 5px);
}
#footer .list-link li a:before{
  content: "\e900";
  font-family: "icomoon2";
  position: absolute;
  left: 0;
}
#footer .list-link li a:hover{
  color: #fff;
  text-decoration: underline;
}
#footer .list-link{
  padding: 20px 15px 10px;
  transform: translateX(-50%);
  left: 50%;
  position: relative;
  width: fit-content;
  text-align: left;
}
#footer .list-link li{
  line-height: 1.4;
  font-size: 13px;
  font-size: 1.3rem;
}
#footer .list-link li + li{
  margin-top: 25px;
}
#footer .list-link a{
  color: #fff;
  position: relative;
  direction: inline-block;
  padding-left: calc(1em + 5px);
}
#footer .list-link li a:before{
  content: "\e900";
  font-family: "icomoon2";
  position: absolute;
  left: 0;
}
#footer .list-link li a:hover{
  color: #fff;
  text-decoration: underline;
}

.copyright {
  padding: 45px 15px;
  color: #fff;
  line-height: 1.7;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (min-width: 768px) {
  /* ----------------------------
    768px
  ---------------------------- */
  /* 商品リスト */
  .list-product.col-3 li {
    width: calc(( 100% - 60.1px ) * 0.33333);
    margin: 10px;
  }
  .list-product.col-4 li {
    width: calc(( 100% - 64.1px ) * 0.25);
    margin: 8px;
  }

  /*--------------------------------------
    #secondary
  --------------------------------------*/
  #secondary {
    padding: 40px 3%;
  }
  #secondary .secondary-block.f-left, #secondary .secondary-block.f-center, #secondary .secondary-block.f-right {
    width: 100%;
  }

  /* カレンダー */
  .schedule-area2 {
    max-width: 286px;
    /*width: 46%;
    margin: 0 1%;*/
  }
}
@media screen and (min-width: 960px) {
  /* ----------------------------
    960px
  ---------------------------- */
  .sp-logo {
    display: none;
  }

  .pc-logo {
    display: block;
  }

  /* 商品リスト */
  .list-product.col-3 li {
    width: calc(( 100% - 90.1px ) * 0.33333);
    margin: 15px;
    margin-bottom: 20px;
  }
  .list-product.col-4 li {
    width: calc(( 100% - 80.1px ) * 0.25);
    margin: 10px;
    margin-bottom: 20px;
  }
  .item-info .item-price {
    margin-top: 5px;
  }
  .item-info .item-name{
    font-size: 18px;
    font-size: 1.8rem;
  }
  
  /*--------------------------------------
    header
  --------------------------------------*/
  #header {
    position: relative!important;
    display: flex;
    width: 220px;
    height: auto;
    min-height: 100%;
  }

  .header-in {
    width: 100%;
    display: block;
    padding: 0;
    flex-direction: column;
    /*height: 100vh;
    overflow-y: auto;*/
    height: 100%;
  }

  .h_left,
  .h_right {
    width: 220px;
    height: auto;
    z-index: 1;
  }

  .h_left {
    height: 260px;
    text-align: center;
    display: table;
    padding-top: 0;
  }

  .h_right {
    height: 60px;
  }

  /* LOGO画像 */
  .site-name {
    height: 172px;
    margin: auto;
    padding: 20px;
    margin-top: 0;
    text-align: center;
    position: relative;
    display: table-cell;
    vertical-align: middle;
    font-size: 20px;
    font-size: 2rem;
  }
  .site-name a {
    padding: 0;
    max-height: 172px;
    height: auto;
    width: 100px;
    top: inherit;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .site-name img {
    width: auto;
    height: auto;
    max-height: 172px;
    margin: auto;
  }

  /* menu */
  .menubtn {
    display: none;
  }

  /* 検索 */
  .searchbox{
    position: relative;
  }
  .searchbtn {
    position: static;
    font-size: 15px;
    font-size: 1.5rem;
    
    width: 100%;
    height: auto;
    text-align: left;
    letter-spacing: .2em;
    line-height: 22px;
    padding: 1em 26px;
    right: inherit;
    top: inherit;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
    margin-bottom: 80px;
  }
  .searchbtn:hover {
    background-color: #560000;
  }
  .searchbtn i {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    line-height: 22px;
    vertical-align: -4px;
    color: #fff;
  }
  .searchbtn i:hover {
    opacity: 1;
  }

  .search-area {
    position: absolute;
    top: 52px;
    left: 0;
    width: 220px;
    z-index: 1;
  }
  .search-area.sp{
    display: none!important;
  }
  
  .cartbtn {
    position: relative;
    bottom: inherit;
    left: inherit;
    line-height: 22px;
    margin-top: 30px;
  }
  .cartbtn a {
    padding: 44px 26px;
  }
  .cartbtn i{
    line-height: 22px;
    vertical-align: -2px;
  }

  /* アイコンリスト */
  .header-menu {
    /*float: right;
    text-align: left;
    width: -webkit-calc(100% - 50px);
    width: calc(100% - 50px);*/
  }
  .header-menu li {
    /*width: 50px;*/
    line-height: 22px;
    margin-bottom: 22px;
  }
  #global-nav .header-menu li a {
    /*font-size: 24px;*/
    font-size: 14px;
    font-size: 1.4rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .header-menu li i {
    font-size: 20px!important;
    line-height: 22px;
    vertical-align: -2px;
  }

  /* グローバルナビ
  ------------------------------*/
  #global-nav {
    display: block;
    /*position: absolute;*/
    position: relative;
    text-align: left;
    transform: translate(0);
    width: 220px;
    left: 0;
    /*top: 260px;*/
    top: 0;
    height: auto;
    /*overflow-y: hidden;*/
    padding-bottom: 0;
    max-height: inherit!important;
    overflow-y: inherit!important;
  }
  #global-nav li {
    display: block;
    margin-top: 0;
  }
  #global-nav li b {
    font-size: 18px;
    font-size: 1.8rem;
  }
  #global-nav li a {
    text-align: left;
  }
  .global-inner{
    padding-bottom: 0;
  }

  /* カテゴリーリスト */
  .cat-menu {
    margin: 0;
  }
  .cat-menu li {
    display: block !important;
  }
  .cat-menu li a {
    font-size: 16px;
    font-size: 1.6rem;
  }
.cat-menu li li a {
    font-size: 15px;
    font-size: 1.5rem;
 }

  /*------------------------------
    #container
  ------------------------------*/
  #main,
  .main{
    margin-left: 5.72vw;
    margin-right: 5.72vw;
  }
  #main-image,
  .main-image-slider {
    max-height: 614px;
  }
  
  .main-article{
    padding-bottom: 150px;
  }

  /* section item block
  ------------------------------*/
  .cat-block,
.item-list-noitem{
    padding-bottom: 50px;
  }
  .section-block {
    padding: 50px 0;
  }
  .section-head {
    border-bottom: 1px solid #000;
    padding-bottom: 30px;
    margin-bottom: 50px;
  }
  .section-head.nounderline {
    border-bottom: 0 none;
    padding-bottom: 0;
  }

  /* 見出しh2 */
  .title1 {
    font-size: 26px;
    font-size: 2.6rem;
    padding: 0;
  }
  .title2 {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 45px;
    margin-top: 80px;
  }
  .title3 {
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 700;
    padding-bottom: 20px;
    margin-bottom: 22px;
    margin-top: 45px;
  }
  .title4 {
    font-size: 20px;
    font-size: 2.0rem;
    margin-bottom: 22px;
    margin-top: 45px;
  }

  /* ディスクリプション */
  .lead-txt {
    padding: 10px 0;
  }
  .lead-txt p {
    font-size: 16px;
    font-size: 1.6rem;
  }
  
  .sub-title{
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 5px;
  }
  
  

  /* TOP
  ----------------------------------*/
  #top-shop-message1,
  #top-shop-message2 {
    padding: 3.0em;
  }

  #top-shop-message2 {
    margin-top: 60px;
  }
  
  /* お知らせ */
  .info-section-block{
    padding-top: 100px;
    padding-bottom: 45px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .info-section-head{
    width: 260px;
    margin-right: 70px;
  }
  .info-section-head .title1{
    font-size: 22px;
    font-size: 2.2rem;
  }
  .info-section-head .sub-title{
    font-size: 14px;
    font-size: 1.4rem;
    padding-left: 30px;
    padding-top: 40px;
  }
  .info-section-head .sub-title:before{
    top: -5px;
    left: 5px;
    height: 90px;
  }
  .info-section-contents {
    /*width: 77.7%;*/
    width: calc(100% - 330px);
  }
  .info-section-contents .more-link{
    margin-left: 110px;
  }

  .list-info {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .list-info li {
    padding: 0;
    margin-bottom: 10px;
  }

  .info-img{
    width: 80px;
    height: 80px;
    margin-right: 30px;
  }
  .info-contents {
    width: calc(100% - 110px);
  }
  .info-title{
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: .1em;
  }
  .info-date{
    letter-spacing: .1em;
  }

  /* 商品リスト
  ---------------------------*/
  /* カラム */
  .col-2 li {
    width: 50%;
  }
  .col-3 li {
    width: 33.33333%;
  }
  .col-4 li {
    width: 25%;
  }

  .col-5 li {
    width: 20%;
  }

  .list-product {
    padding: 0;
  }
  .list-product li {
    padding: 0;
  }

  /* 検索・カテゴリーページ
  ----------------------------------*/
  .main-article > .ttl,
  .page-head{
    margin-bottom: 100px;
    padding: 50px 0 80px;
  }
.page-head .sub-title{
margin-top:15px;
}
  .ttl h2,
  .page-title{
    font-size: 36px;
    font-size: 3.6rem;
  }
  
  .cat-head,
  .frame-block {
    /*padding: 3.0em;*/
  }
  .cat-head {
    padding: 50px 0 70px;
    margin-bottom: 100px;
  }
  .cat-name {
    font-size: 24px;
    font-size: 2.4rem;
  }

  /*　並び順／ページ送り */
  .page-head + .cat-block{
    margin-top: -70px;
  }
  .sort {
    margin-bottom: 50px;
  }
  .sort ul {
    padding: 0;
  }
  .sort ul li {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    /*padding: 0 5px;*/
  }

  .item-list-itemcount {
    margin: 2.0em 0;
    padding: 20px 0;
    font-size: 14px;
    font-size: 1.4rem;
  }

  /* 詳細ページ
  ----------------------------------*/
  .item-block-inner {
    /*max-width: 1000px;*/
    width: auto;
    margin: auto 7.4%;
  }

  .item-detail-left {
    float: left;
    width: 30.20833vw;
    padding: 0;
    /*margin-right: 2%;*/
  }

  .item-detail-right {
    float: right;
    /*width: 30.20833vw;*/
    width: calc(100% - 30.20833vw - 7.9%);
    margin-top: 0;
    /*margin-top: 50px;*/
  }
  
  .item-detail-summary{
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: .1em;
    margin-bottom: 50px;
  }
  .item-detail-name{
    font-size: 32px;
    font-size: 3.2rem;
    margin-bottom: 50px;
  }
  .item-detail-name [class^="icon-badge"]{
    vertical-align: top;
  }

  /* 価格・スペック */
  .item-detail-block-in,
  .item-detail-spec {
    padding: 0;
  }

  /* カートエリア */
  .item-detail-cart {
    padding: 0;
  }
  
  .item-detail-cart-btn a{
    line-height: 70px;
    height: 70px;
    max-width: 350px;
    font-size: 18px;
  }
  
  .item-detail-num input[type=number],
  .item-detail-num-plus a,
  .item-detail-num-minus a{
    line-height: 55px;
    width: 55px;
    height: 55px;
  }
  .item-detail-num input[type=number]{
    border-width: 2px;
  }

  .item-detail-txt1,
  .item-detail-txt3 {
    padding: 0;
  }

  .item-detail-txt2 {
    padding: 0;
    margin-top: 35px;
  }
  
  .item-footer{
    margin-top: 10.31%;
    margin-bottom: 17.46%;
  }

  /*--------------------------------------
    #secondary
  --------------------------------------*/
  #secondary {
    padding: 40px 3%;
  }
  
  .months {
    padding: 15px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .secondary-block {
    margin-bottom: 60px;
  }
  .secondary-block .block-in .calendar-ttl {
    margin: 0 calc(3% + 3px) 5px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .schedule-area2 {
    /*width: 100%;*/
    width: 46%;
    margin: 0 1%;
  }
  
  /*--------------------------------------
    #footer
  --------------------------------------*/
  #footer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: 110px;
    padding-left: 6.4%;
    padding-right: 6.4%;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #footer .list-link{
    padding: 0;
    transform: none;
    left: inherit;
    /*width: fit-content;
    text-align: left;*/
    text-align: left;
  }
  #footer .list-link li{
    display: inline-block;
  }
  #footer .list-link li + li{
    margin-top: 0;
    margin-left: 25px;
  }
  .copyright {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.083;
    padding: 0;
    text-align: right;
    margin-left: 25px;
  }
}
@media screen and (min-width: 1200px) {
  /* ----------------------------
    1200px
  ---------------------------- */
  /* section item block
  ------------------------------*/
  .section-block{
  /*.cat-block,*/
  /*.main-article {*/
    padding: 50px 0;
  }

  /* 詳細ページ
  ----------------------------------*/
  .item-block-inner {
    /*max-width: 1000px;
    margin: auto 7.2%;*/
  }

  /*.item-detail-left {
    float: left;
    width: 480px;
    padding: 0;
    margin-right: 40px;
  }

  .item-detail-right {
    float: right;
    width: -webkit-calc(100% - 540px);
    width: calc(100% - 540px);
    margin-top: 0;
  }*/

  /*--------------------------------------
    #secondary
  --------------------------------------*/
  #secondary {
    padding: 40px;
  }
  #secondary .col-3block {
    flex-direction: row;
  }
  #secondary .secondary-block.f-left {
    width: 30%;
    min-width: 270px;
  }
  #secondary .secondary-block.f-right {
    width: 20%;
  }
  #secondary .secondary-block.f-center {
    width: 50%;
  }
}

/* ログインページ
----------------------------------*/

#main-image + div#login-error-message {
  border-top-width: 1px;
  border-top-style: solid;
}

#top-shop-message2 {
  margin-top: 30px;
}

#login-error-message {
  font-size: 12px;
  margin: 20px 10px;
  padding: 10px;
  text-align: center;
  color: #e6503f;
  border: #e6503f solid 1px;
}
#login-message {
  margin:30px 10px 0;
}

.login-tbl {
  display: block;
  width: calc(100% - 20px);
  margin: 20px 10px 20px;
}
.login-tbl tbody,
.login-tbl tr {
  display: block;
  width: 100%;
}
.login-tbl th {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.2;
  display: block;
  padding: 10px;
  text-align: left;
  border: none;
  background: none;
}
.login-tbl td {
  font-size: 14px;
  font-weight: normal;
  display: block;
  padding: 10px;
  vertical-align: top;
  border: none;
}
.login-tbl td input[type=text],
.login-tbl td input[type=password] {
  line-height: 36px;
  width: 100%;
  height: 36px;
  padding: 0 10px;
  border: #d0d0d0 solid 1px;
}

.login-link ul li {
  margin-top: 1em;
}

.login-btn {
  font-size: 15px;
  margin-bottom: 25px;
  text-align: center;
}
.login-btn a {
  font-size: 16px;
  font-weight: normal;
  line-height: 44px;
  position: relative;
  display: inline-block;
  width: 152px;
  height: 44px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #666;
}

.login-link{
  margin-bottom: 60px;
}
.login-link ul li {
  text-align: center;
  list-style: none;
}
.login-link ul li a {
  text-decoration: underline;
}

@media screen and (min-width: 960px) {

  .body-login .main {
    float: none;
    margin-right: auto;
    margin-left: auto;
  }
  .body-login .footer-logo {
    float: none;
    width: 100%;
    text-align: center;
  }

  #login-error-message {
    font-size: 14px;
    margin: 30px 30px 40px;
    padding: 8px 15px;
    text-align: left;
  }
  #login-message {
    margin: 30px 0;
    text-align: center;
  }

  .login-tbl {
    max-width: 785px;
    display: table;
    margin: 15px auto;
  }
  .login-tbl tbody {
    display: table-row-group;
  }
  .login-tbl tr {
    display: table-row;
  }
  .login-tbl th {
    font-size: 16px;
    font-weight: normal;
    line-height: 36px;
    width: 200px;
    text-align: left;
    vertical-align: top;
    display: table-cell;
  }
  .login-tbl td {
    text-align: left;
    display: table-cell;
  }
}

/* 特商法・送料についてページ
----------------------------------*/
.payment-title,
.carriage-title{
  font-weight: bold;
  margin-bottom: 10px;
}
table.payment-content{
  margin-left: 0;
  margin-bottom: 3em;
}
.payment-content tr:first-child td {
  font-weight:bold;
  background: #f6f6f7;
  text-align:center;
}
table.payment-content td {
  text-align:right;
  width: 50%;
  padding: .5em 2em;
}
@media only screen and (max-width: 767px) {
  .payment-title:first-child{
    margin-top: 1em;
  }
  table.payment-content td {
    display: table-cell;
    padding: .5em 1em;
    border-bottom-color: #ccc;
  }
}

/* notfoundページ
----------------------------------*/
.notfound {
  font-size: 24px;
  margin-top: 90px;
  margin-bottom: 60px;
}

@media only screen and (max-width: 600px) {
  .notfound {
    font-size: 16px;
    margin:50px 10px 0;
  }
}

/* 閉店表示
----------------------------------*/
body#close #wrapper > div.container {
  padding-top: 70px;
}
@media screen and (min-width: 960px){
  body#close #header {
    border-top: 10px solid %(__left_navi_top_border)s;
  }
  body#close #header .logo {
    width: 100%;
    height: 260px;
    text-align: center;
    display: table;
  }
  body#close #wrapper > div.container {
    width: calc(100% - 300px);
    margin: 0 0 0 300px;
    padding-top: 0;
  }
}

/* IE調整用
----------------------------------*/
@media all and (-ms-high-contrast:none) {
  .site-name-text a {
    padding-top: 6px;
  }
  .item-detail-radio label {
    padding-top: 4px;
  }
}

.wysiwyg-data html, .wysiwyg-data address, .wysiwyg-data blockquote, .wysiwyg-data body, .wysiwyg-data dd, .wysiwyg-data div, .wysiwyg-data dl, .wysiwyg-data dt, .wysiwyg-data fieldset, .wysiwyg-data form, .wysiwyg-data frame, .wysiwyg-data frameset, .wysiwyg-data h1, .wysiwyg-data h2, .wysiwyg-data h3, .wysiwyg-data h4, .wysiwyg-data h5, .wysiwyg-data h6, .wysiwyg-data noframes, .wysiwyg-data ol, .wysiwyg-data p, .wysiwyg-data ul, .wysiwyg-data center, .wysiwyg-data dir, .wysiwyg-data hr, .wysiwyg-data menu, .wysiwyg-data pre {
  display: block;
  unicode-bidi: embed;
}

.wysiwyg-data {
  padding: 0 0 60px;
  line-height: normal;
  text-align: left;
  font-size: 16px;
}

.wysiwyg-data .list-nomark {
  list-style: none;
  margin-left: 0;
}
.wysiwyg-data .list-nomark li {
  list-style: none;
}

.wysiwyg-data li {
  display: list-item;
}

.wysiwyg-data head {
  display: none;
}

.wysiwyg-data table {
  display: table;
}

.wysiwyg-data tr {
  display: table-row;
}

.wysiwyg-data thead {
  display: table-header-group;
}

.wysiwyg-data tbody {
  display: table-row-group;
}

.wysiwyg-data tfoot {
  display: table-footer-group;
}

.wysiwyg-data col {
  display: table-column;
}

.wysiwyg-data colgroup {
  display: table-column-group;
}

.wysiwyg-data td, .wysiwyg-data th {
  display: table-cell;
}

.wysiwyg-data caption {
  display: table-caption;
}

.wysiwyg-data th {
  font-weight: bolder;
  text-align: center;
}

.wysiwyg-data caption {
  text-align: center;
}

.wysiwyg-data body {
  margin: 8px;
}

.wysiwyg-data .title1 {
  font-size: 20px;
  font-size: 2rem;
  margin: .67em 0;
}

.wysiwyg-data .title2 {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 45px 0 22px;
  line-height: 1.5;
  padding: 0;
  letter-spacing: .1em;
}

.wysiwyg-data .title3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  margin: 45px 0 22px;
  letter-spacing: .1em;
  line-height: 1.5;
  font-weight: 500;
  padding-bottom: 25px;
  border-bottom: 1px solid currentColor;
}

.wysiwyg-data .title4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  margin: 45px 0 25px;
  font-weight: 700;
  line-height: 1.5;
}

.wysiwyg-data p, .wysiwyg-data blockquote, .wysiwyg-data ul, .wysiwyg-data fieldset, .wysiwyg-data form, .wysiwyg-data ol, .wysiwyg-data dl, .wysiwyg-data dir, .wysiwyg-data menu {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 1.12em 0;
  line-height: 2.0;
  letter-spacing: .1em;
}

.wysiwyg-data .title5 {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 1.5em 0;
}

.wysiwyg-data .title6 {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 1.67em 0;
}

.wysiwyg-data .title1, .wysiwyg-data .title2, .wysiwyg-data .title5, .wysiwyg-data .title6, .wysiwyg-data b, .wysiwyg-data strong {
  font-weight: normal;
}

.wysiwyg-data dl.dl {
  font-family: "Noto Sans JP", sans-serif;
  margin: 1.5em 0;
}
.wysiwyg-data dl.dl dt {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: .5em;
  margin-bottom: 0;
}
.wysiwyg-data dl.dl dd {
  margin-left: 0;
}

.wysiwyg-data dl.address-info {
  background: #f5f5f5;
  padding: 20px;
}
.wysiwyg-data dl.address-info dt {
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
  margin-bottom: .5em;
  margin-top: .5em;
}
.wysiwyg-data dl.address-info dd {
  margin-left: 0;
}

.wysiwyg-data ul.shop-address {
  margin-top: 24px;
  list-style: none;
  margin-left: 0;
}
.wysiwyg-data .shop-address li {
  line-height: 1.0;
  margin-bottom: .5em;
  list-style: none;
  font-weight: 500;
}
.wysiwyg-data .shop-address li.tel,
.wysiwyg-data .shop-address li.fax{
  font-size: 1.23em;
  letter-spacing: 0;
}
.wysiwyg-data .shop-address li.tel {
  margin-bottom: .25em;
}
.wysiwyg-data .shop-address li.tel span,
.wysiwyg-data .shop-address li.fax span {
  font-size: 1.5em;
  font-weight: 700;
}

.wysiwyg-data .img {
  margin: 2em 0;
  text-align: center;
}
.wysiwyg-data .img img {
  max-width: 100%;
}

.wysiwyg-data blockquote {
  margin-left: 40px;
  margin-right: 40px;
}

.wysiwyg-data i, .wysiwyg-data cite, .wysiwyg-data em, .wysiwyg-data var, .wysiwyg-data address {
  font-style: italic;
}

.wysiwyg-data pre, .wysiwyg-data tt, .wysiwyg-data code, .wysiwyg-data kbd, .wysiwyg-data samp {
  font-family: monospace;
}

.wysiwyg-data pre {
  white-space: pre;
}

.wysiwyg-data button, .wysiwyg-data textarea, .wysiwyg-data input, .wysiwyg-data select {
  display: inline-block;
}

.wysiwyg-data big {
  font-size: 120%;
}

.wysiwyg-data small, .wysiwyg-data sub, .wysiwyg-data sup {
  font-size: 60%;
}

.wysiwyg-data sub {
  vertical-align: sub;
}

.wysiwyg-data sup {
  vertical-align: super;
}

.wysiwyg-data table {
  border-spacing: 2px;
}

.wysiwyg-data thead, .wysiwyg-data tbody, .wysiwyg-data tfoot {
  vertical-align: middle;
}

.wysiwyg-data td, .wysiwyg-data th, .wysiwyg-data tr {
  vertical-align: inherit;
}

.wysiwyg-data s, .wysiwyg-data strike, .wysiwyg-data del {
  text-decoration: line-through;
}

.wysiwyg-data hr {
  border: 1px inset;
}

.wysiwyg-data ol, .wysiwyg-data ul, .wysiwyg-data dir, .wysiwyg-data menu, .wysiwyg-data dd {
  margin-left: 40px;
}

.wysiwyg-data ol {
  list-style-type: decimal;
}

.wysiwyg-data ol ul {
  margin-top: 0;
  margin-bottom: 0;
}

.wysiwyg-data ul ol, .wysiwyg-data ul ul {
  margin-top: 0;
  margin-bottom: 0;
}

.wysiwyg-data ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

.wysiwyg-data u, .wysiwyg-data ins {
  text-decoration: underline;
}

.wysiwyg-data br:before {
  content: "\A";
  white-space: pre-line;
}

.wysiwyg-data center {
  text-align: center;
}

.wysiwyg-data :link, .wysiwyg-data :visited {
  text-decoration: underline;
}

.wysiwyg-data :focus {
  outline: thin dotted invert;
}

.wysiwyg-data table {
  border: solid 1px;
  border-collapse: separate;
  border-color: #c0c0c0 #c0c0c0 #808080 #808080;
  border-spacing: 2px;
  width: auto;
}

.wysiwyg-data table tr td {
  border: solid 1px;
  border-color: #808080 #808080 #c0c0c0 #c0c0c0;
  padding: 0;
}

.item-comment .wysiwyg-data table tr td {
  background: #fff;
}

.wysiwyg-data ul {
  list-style-type: disc;
}

.wysiwyg-data ul li {
  list-style-type: disc;
}

.wysiwyg-data ol {
  list-style-type: decimal;
}

.wysiwyg-data BDO[DIR="ltr"] {
  direction: ltr;
  unicode-bidi: bidi-override;
}

.wysiwyg-data BDO[DIR="rtl"] {
  direction: rtl;
  unicode-bidi: bidi-override;
}

.wysiwyg-data *[DIR="ltr"] {
  direction: ltr;
  unicode-bidi: embed;
}

.wysiwyg-data *[DIR="rtl"] {
  direction: rtl;
  unicode-bidi: embed;
}

@media only screen and (min-width: 768px) {
  .wysiwyg-data .title1 {
    font-size: 26px;
    font-size: 2.6rem;
    padding: 0;
  }
  .wysiwyg-data .title2 {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 45px;
    margin-top: 80px;
  }
  .wysiwyg-data .title3 {
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 700;
    padding-bottom: 20px;
    margin-bottom: 22px;
    margin-top: 45px;
  }
  .wysiwyg-data .title4 {
    font-size: 20px;
    font-size: 2.0rem;
    margin-bottom: 32px;
    margin-top: 80px;
  }
  .wysiwyg-data ul.shop-address {
    margin-top: 45px;
  }
  .wysiwyg-data .shop-address li {
    letter-spacing: .1em;
    margin-bottom: 1em;
  }
  .wysiwyg-data .shop-address li.tel,
  .wysiwyg-data .shop-address li.fax {
    font-size: 20px;
    font-size: 2.0rem;
  }
  .wysiwyg-data .shop-address li.tel {
    margin-bottom: .5em;
  }
}

/* Begin bidirectionality settings (do not change) */
@media print {
  .wysiwyg-data h1 {
    page-break-before: always;
    page-break-after: avoid;
  }

  .wysiwyg-data h2, .wysiwyg-data h3, .wysiwyg-data h4, .wysiwyg-data h5, .wysiwyg-data h6 {
    page-break-after: avoid;
  }

  .wysiwyg-data ul, .wysiwyg-data ol, .wysiwyg-data dl {
    page-break-before: avoid;
  }
}
ata *[DIR="rtl"] {
  direction: rtl;
  unicode-bidi: embed;
}


#header {
  position: fixed;
}

#container {
  padding-top: 70px !important;
}

@media screen and (min-width: 960px) {
  #container{
    padding-top: 0 !important;
    min-height: calc(100vh - 110px);
    height: auto;
    margin-bottom: 110px;
  }
}


/* ITEM ATTENTION */
.block-attention {
  background: #f0f0f0;
  padding: 16px;
  margin-top: 40px;
}

.attention-inner {
  padding: 20px 20px 25px;
  background: #fff;
}
.attention-img {
  margin-bottom: 25px;
}
.attention-contents {
  font-family:  "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;
}
.attention-contents .ttl {
  border-bottom: 1px solid #000;
  text-align: left;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: .1em;
  padding-bottom: 1em;
  margin-bottom: 25px;
}
.attention-contents .btn-wrap {
  margin-top: 25px;
  text-align: left;
}
.attention-contents .btn-normal {
  min-width: inherit;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (min-width: 768px) {
  .block-attention {
    padding: 4.7%;
    margin-top: 7.9%;
  }

  .attention-inner {
    padding: 4.3%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .attention-img {
    width: 38.46%;
  }
  .attention-contents {
    width: 55.76%;
  }
  .attention-contents .ttl {
    font-size: 26px;
    font-size: 2.6rem;
  }
  .attention-contents .txt {
    line-height: 2.0;
  }
  .attention-contents .btn-normal {
    max-width: 313px;
  }
}


/* FREEPAGE COMMON
--------------------------------------*/
.freepage .cat-section-block {
  font-family: "Noto Sans JP", sans-serif;
}
.freepage .free-section-block {
  padding-bottom: 50px;
}
.freepage .free-section-block:last-child {
  padding-bottom: 0;
}
.freepage .free-title2 .underline {
  text-decoration: underline;
  text-decoration-color: #a40000;
  text-underline-offset: 0;
  -webkit-text-decoration-thickness: 4px;
  text-decoration-thickness: 4px;
}
.freepage .s,
.freepage p.s{
  font-size: 12px;
}
.freepage p.s {
  letter-spacing: 0;
}
.freepage .free-section-block .free-title2 {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: normal;
  line-height: 1.27;
  margin: 0 0 40px;
}
.freepage .free-section-block .free-title3 {
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: .1em;
  margin: 0 0 20px;
}
.freepage .free-section-block p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2.0;
  letter-spacing: .1em;
  text-align: justify;
}
.freepage .free-section-contents + .free-section-contents {
  margin-top: 60px;
}
.freepage .free-mainimg {
  margin-bottom: 25px;
}
.freepage .free-video {
width:100%;
}
.freepage .free-video iframe {
max-width:100%;
margin: 20px auto;
display:block;
}
.freepage .free-txt-block + .free-img-block,
.freepage .free-img-block + .free-txt-block {
  margin-top: 25px;
}
.freepage .free-txt-block .txt + .free-img{
  margin-top: 30px;
}
.freepage .free-txt-block img,
.freepage .free-img-block img {
  width: 100%;
}
.freepage .free-img + .free-img {
  margin-top: 20px;
}
.freepage .free-img-cap {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400p;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.53;
  margin-top: 10px;
}
.freepage .free-gmap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}
.freepage .free-gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
}

/* ITEM DESCRIPTION */
.freepage .txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.0;
  letter-spacing: .1em;
}

.freepage ul.list-disc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 0;
}
.freepage ul.list-disc li {
  position: relative;
  padding-left: 1.5em;
  list-style: none;
}
.freepage ul.list-disc li:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5em;
}

.freepage ol.list-num {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 0;
  counter-reset: number;
}
.freepage ol.list-num li {
  position: relative;
  padding-left: 1.5em;
  list-style: none;
}
.freepage ol.list-num li:before {
  counter-increment: number;
  content: counter(number) ".";
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5em;
}

@media only screen and (min-width: 768px) {
  .freepage .free-title2 .underline {
    -webkit-text-decoration-thickness: 8px;
    text-decoration-thickness: 8px;
  }
  .freepage .s,
  .freepage p.s{
    font-size: 14px;
    font-size: 1.4rem;
  }
  .freepage .txt {
    /*line-height: 3.0;*/
  }

  .freepage ul.list-disc,
  .freepage ol.list-num {
    line-height: 2.0;
    margin-bottom: 50px;
  }
  .freepage ul.list-disc li,
  .freepage ol.list-num li {
    padding-left: 1.5em;
  }
  .freepage ul.list-disc li + li,
  .freepage ol.list-num li + li {
    margin-top: 1em;
  }
  .freepage ul.list-disc li:before,
  .freepage ol.list-num li:before {
    width: 1.5em;
  }

  .freepage ol.list-num li:before {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.6;
  }
}
/* BG BLOCK */
.block-bg {
  background: #f0f0f0;
  padding: 20px 18px;
  margin: 40px 0 25px;
  font-family: "Noto Sans JP", sans-serif;
}
.block-bg :last-child{
  margin-bottom: 0;
}

.movie-wrap{
  margin: 0 auto 20px;
  width: 100%;
  max-width: 1008px;
}
.movie-wrap-inner{
  width: 100%;
  padding-top: 56.547%;
  position: relative;
}
.movie-wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
}
.list-wrap ul,
.list-wrap ol{
  margin-bottom: 0!important;
}
.list-ttl {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  .block-bg {
    padding: 6.3%;
    margin: 7.1% 0 7.9%;
  }
  .movie-wrap{
    margin-bottom: 50px;
  }
  .list-ttl {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}


@media only screen and (min-width: 768px) {
  .freepage .free-inner{
    margin-left: 5.72vw;
    margin-right: 5.72vw;
  }
  .freepage .free-section-block {
    padding-bottom: 6.77vw;
  }
  .freepage .free-section-block:last-child {
    padding-bottom: 0;
  }
  .freepage .free-section-block .free-title2 {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.85;
    margin: 0 0 4.6875vw;
  }
  .freepage .free-section-block .free-title3 {
    font-size: 26px;
    font-size: 2.6rem;
    /*line-height: 2.0;
    margin: 0 0 1.923em;*/
margin: 0 0 1.423em;
  }
  .freepage .free-section-block p {
    /*line-height: 3.0;*/
    font-size: 16px;
    font-size: 1.6rem;
  }
  .freepage .free-section-head {
    text-align: center;
  }
  .freepage .free-section-contents {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .freepage .free-section-contents:last-child > *:last-child {
margin-bottom: 0;
}
  .freepage .free-section-contents + .free-section-contents {
    margin-top: 5.2vw;
  }
  .freepage .free-section-contents .f-left {
    -webkit-order: 1;
    order: 1;
  }
  .freepage .free-section-contents .f-right {
    -webkit-order: 2;
    order: 2;
  }
  .freepage .free-section-contents .f-center {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .freepage .free-mainimg {
    margin-bottom: 3.6458333vw;
  }
.freepage .free-section-head .free-mainimg {
margin-bottom:5.2vw;
}
.freepage .free-video {
}
  .freepage .free-txt-block {
    width: 46.03%;
  }
  .freepage .free-txt-block .free-title3 {
    margin-top: -.5em;
   }
  .freepage .free-txt-block .txt + .free-img{
    margin-top: 3.64vw;
  }
  .freepage .free-txt-block + .free-img-block {
    margin-top: 0;
  }
  .freepage .free-txt-block.f-left {
    padding-left: 4.427vw;
  }
  .freepage .free-txt-block.f-right {
    padding-right: 4.427vw;
  }
  .freepage .free-img-block {
    width: 46.03%;
    position: relative;
    overflow: hidden;
  }
  .freepage .free-img-block + .free-txt-block {
    margin-top: 0;
  }
  .freepage .free-img + .free-img {
    margin-top: 0;
  }
  .freepage .free-img.f-left {
    float: left;
  }
  .freepage .free-img.f-right {
    float: right;
  }
  .freepage .free-img.f-center {
    clear: both;
  }
  .freepage .free-img-cap {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 20px;
  }
  .freepage .free-img-cap.short {
    max-width: 252px;
  }
  .freepage .free-img-cap.t-left {
    text-align: left;
  }
  .freepage .free-img-cap.t-right {
    text-align: left;
    margin-left: auto;
  }
  .freepage .free-gmap {
    padding-top: 50.79%;
    margin-top: 5.2vw;
    margin-bottom: 5.2vw;
  }
  .freepage .free-gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.freepage table.table-detail {
  border: 0 none;
  border-collapse: collapse;
  border-color: transparent;
  border-spacing: 0;
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  border-top: 1px solid #000;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
}
.freepage table.table-detail th, .freepage table.table-detail td {
  background: transparent;
  text-align: left;
  font-weight: 400;
  line-height: 1.25;
  border-left: 0 none;
  border-right: 0 none;
  padding: 10px 20px;
}
.freepage table.table-detail th {
  border-top: 0 none;
  border-bottom: 0 none;
  padding-bottom: 0px;
}
.freepage table.table-detail td {
  border-top: 0 none;
  border-bottom: 1px solid #000;
}
@media only screen and (max-width: 767px) {
  .freepage table.table-detail, .freepage table.table-detail caption, .freepage table.table-detail thead, .freepage table.table-detail tbody.tfoot, .freepage table.table-detail tr, .freepage table.table-detail th, .freepage table.table-detail td {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .freepage table.table-detail th, .freepage table.table-detail td {
    padding: 30px;
    line-height: 1.75;
  }
  .freepage table.table-detail th {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    vertical-align: top;
    width: 20.61%;
  }
  .freepage table.table-detail td {
    border-top: 1px solid #ccc;
    border-bottom-color: #ccc;
    width: 79.38%;
  }
}

/* 熊谷鍛冶屋について
--------------------------------------*/
#company-02 .free-section-head .free-title2 {
  text-align: center;
  margin-bottom: 20px;
}

/* 熊谷鍛冶屋のものづくり
--------------------------------------*/
@media only screen and (min-width: 768px) {
  #philosopy-01 .free-img.f-left {
    width: 53.91%;
  }
  #philosopy-01 .free-img.f-right {
    width: 41.44%;
  }
  #philosopy-01 .free-img.f-center {
    padding-top: 40px;
  }
}

/* 取扱店一覧
--------------------------------------*/
/* nav */
.shoplist-nav {
  padding-bottom: 0;
  position: relative;
  border-bottom: 1px solid #000;
  text-align: center;
  margin-bottom: 80px;
}
.shoplist-nav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0;
  list-style: none;
}
.shoplist-nav li {
  width: 30%;
  max-width: 302px;
  display: block;
  list-style: none;
  margin-bottom: -1px;
  border: 1px solid #000;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.15em;
}
.shoplist-nav li + li {
  border-left: 0 none;
}
.shoplist-nav li.current {
  border-bottom: 1px solid #fff;
}
.shoplist-nav li a:link, .shoplist-nav li a:visited {
  text-decoration: none;
}
.shoplist-nav li a:hover {
  color: currentColor;
  background-color: #f0f0f0;
}
.shoplist-nav_unit {
  display: block;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: .6em 1em;
  height: 100%;
  width: 100%;
}

/* area nav */
.freepage ul.shoplist-area {
  margin: 0 auto calc(70px - 1em);
  position: relative;
  text-align: center;
  list-style-type: none;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.0;
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.freepage ul.shoplist-area li {
  list-style: none;
  display: block;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  margin-right: -1px;
  padding-left: 1em;
  padding-right: 1em;
  margin-bottom: 1em;
}
.freepage ul.shoplist-area li a {
  text-decoration: none;
}
.freepage ul.shoplist-area li a.current {
  color: #560000;
}

/* section */
.shoplist-section {
  -moz-animation: fadeIn 0.4s linear 0s;
  -webkit-animation: fadeIn 0.4s linear 0s;
  animation: fadeIn 0.4s linear 0s;
  opacity: 1;
  margin: 0 auto;
  font-feature-settings: "palt";
}

/* table */
.freepage table.table-shoplist {
  border: 0 none;
  border-top: 1px solid #000;
  font-size: 16px;
  font-size: 1.6rem;
  margin-left: 0;
  margin-bottom: 45px;
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}
.freepage table.table-shoplist caption {
  text-align: center;
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: 0.15em;
  padding-bottom: 40px;
}
.freepage table.table-shoplist th, .freepage table.table-shoplist td {
  background: transparent;
  text-align: left;
  font-weight: 400;
  line-height: 1.5;
  border-left: 0 none;
  border-right: 0 none;
  padding: 13px 10px;
  border-bottom-color: #ccc;
}
.freepage table.table-shoplist thead th, .freepage table.table-shoplist thead td {
  background-color: #f0f0f0;
  border-top-color: #000;
}
.freepage table.table-shoplist tbody th {
  font-weight: normal;
}
.freepage table.table-shoplist tbody i.icon {
  font-size: 1.14em;
}
.freepage table.table-shoplist a:link, .freepage table.table-shoplist a:visited {
  text-decoration: none;
}
.freepage table.table-shoplist .col1 {
  width: 30%;
  padding-left: 3.5%;
}
.freepage table.table-shoplist .col2 {
  width: 42%;
}
.freepage table.table-shoplist .col3 {
  width: 15%;
}
.freepage table.table-shoplist .col4 {
  width: 13%;
}
.freepage table.table-shoplist .col4 a:before {
  content: '\e900';
  font-family: "icomoon2";
  margin-right: 5px;
  font-size: 13px;
}

@media only screen and (max-width: 767px) {
  /* nav */
  .shoplist-nav {
    margin-bottom: 14.8%;
    border-bottom: 0 none;
  }
  .shoplist-nav ul {
    flex-direction: column;
  }
  .shoplist-nav li {
    width: 100%;
    max-width: inherit;
    margin-bottom: 0;
    border-left: 0 none;
    border-right: 0 none;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
  .shoplist-nav li + li {
    border-top: 0 none;
  }
  .shoplist-nav li.current {
    border-bottom-color: #000;
    background-color: #000;
    color: #fff;
  }
  .shoplist-nav_unit {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding: .55em 4.45%;
  }

  /* area nav */
  .freepage ul.shoplist-area {
    margin-bottom: 9.6%;
    text-align: left;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: .05em;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  /* table */
  .freepage table.table-shoplist {
    margin-bottom: 8.1%;
    display: block;
    border-top: 0 none;
  }
  .freepage table.table-shoplist caption, .freepage table.table-shoplist thead, .freepage table.table-shoplist tbody, .freepage table.table-shoplist tr, .freepage table.table-shoplist th, .freepage table.table-shoplist td {
    display: block;
    width: 100%;
  }
  .freepage table.table-shoplist caption {
    font-size: 20px;
    font-size: 2rem;
    letter-spacing: 0;
    padding-bottom: 20px;
  }
  .freepage table.table-shoplist th, .freepage table.table-shoplist td {
    padding: 4px 10px;
    border: 0 none;
    line-height: 1.3;
  }
  .freepage table.table-shoplist th:empty, .freepage table.table-shoplist td:empty {
    display: none;
  }
  .freepage table.table-shoplist thead {
    display: none;
  }
  .freepage table.table-shoplist tbody tr {
    padding: 10px 0;
    border-top: 1px solid #000;
  }
  .freepage table.table-shoplist tbody tr:last-child {
    border-bottom: 1px solid #000;
  }
  .freepage table.table-shoplist a {
    color: #a40000;
  }
  .freepage table.table-shoplist .col1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
  }
  .freepage table.table-shoplist .col1, .freepage table.table-shoplist .col2, .freepage table.table-shoplist .col3, .freepage table.table-shoplist .col4 {
    width: 100%;
    padding-left: 10px;
  }
}


/* RYOGU CATEGORY */
#ryogu-01 .img-ryogu-04 {
margin-left: -4.427vw;
margin-right: -3.968vw;
}

/* ORDER */
#order * {
  font-family: "Noto Sans JP", sans-serif;
}
#order .free-section-head {
  margin: -20px -18px 0;
}
#order .free-section-head .free-mainimg {
  margin-bottom: 0;
}
#order .free-title2 {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 1em;
  font-family: "Noto Sans JP", sans-serif;
}
#order .free-title3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 1em;
}
#order .free-section-head .free-title2 {
  text-align: center;
  padding: 0 18px;
  margin-top: 1em;
}
#order .free-section-title {
  font-size: 20px;
  border-radius: 5px;
  background: #000;
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 30px;
}
#order .free-img-block {
  overflow: visible;
}
#order .free-txt-block .txt:first-child {
  margin-top: 0;
}
#order .txt {
  font-weight: 500;
}
#order-01 .free-section-contents + .free-section-contents {
  margin-top: 30px;
}
#order-01_2 .free-img img {
  margin-left: -5px;
  margin-top: -5px;
  width: calc(100% + 5px);
  max-width: none;
}
#order-01_3 .f-left .free-img {
  margin-top: 15px;
}
#order-01_3 .f-left .free-img img {
  margin-left: -6px;
  width: calc(100% + 6px);
  max-width: none;
}
#order-01_3 .f-left .free-img-cap {
  /*letter-spacing: .1em;*/
  font-weight: 500;
}
#order-02 .free-img-block img {
  margin-right: -5px;
  width: calc(100% + 5px);
  max-width: none;
}
#order-02 .free-img-block .free-img-cap {
  margin-top: 5px;
  font-weight: 500;
  line-height: 1.928;
}

@media only screen and (min-width: 768px) {
  #order .free-section + .free-section {
    margin-top: 100px;
  }
  #order .free-section-head {
    margin: -8.7% -8.7% 0;
  }
  #order .free-title2 {
    font-size: 48px;
    font-size: 4.8rem;
  }
  #order .free-title3 {
    font-size: 24px;
    font-size: 2.4rem;
  }
  #order .free-section-head .free-title2 {
    padding: 0;
  }
  #order .free-section-title {
    font-size: 32px;
    font-size: 3.2rem;
    border-radius: 10px;
    margin-bottom: 60px;
  }
  #order .free-txt-block {
    width: 45.28%;
  }
  #order .free-img-block {
    width: 50%;
  }
  #order .free-txt-block.f-left {
    padding-left: 0;
  }
  #order .free-txt-block.f-right {
    padding-right: 0;
  }
  
  #order-01_1 .free-img-block img {
    margin-left: -11.32%;
    margin-right: -9.433%;
    width: calc(100% + 11.32% + 9.433%);
    max-width: none;
  }
  #order-01 .free-section-contents + .free-section-contents {
    margin-top: 60px;
  }
  #order-01_2 .free-img {
    width: 45.28%;
  }
  #order-01_2 .free-img img {
    margin-left: -10px;
    margin-top: -10px;
    width: calc(100% + 10px);
  }
  #order-01_3 {
    
  }
  #order-01_3 .f-left .free-img {
    margin-top: 35px;
  }
  #order-01_3 .f-left .free-img img {
    margin-left: -12px;
    margin-right: -10.4166%;
    width: calc(100% + 12px + 10.4166%);
  }
  #order-01_3 .f-left .free-img-cap {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2.0;
    letter-spacing: .1em;
    font-weight: 500;
  }
  #order-01_3 .free-img-block img {
    margin-top: 14px;
    margin-left: -6.89%;
    margin-right: -8.62%;
    width: calc(100% + 6.89% + 8.62%);
    max-width: none;
  }
  
  #order-02 .free-title2 {
    font-size: 39px;
    font-size: 3.9rem;
  }
  #order-02 .free-img-block img {
    margin-right: -10px;
    width: calc(100% + 10px);
  }
  #order-02 .free-img-block .free-img-cap {
    margin-top: -2.28em;
  }
  #order-02 .free-img-block .free-img-cap.short {
    max-width: 260px;
  }
}
@charset "UTF-8";
/* ITEM LIST
--------------------------------------*/
.item-list-noitem {
  padding-top: 30px;
}
@media only screen and (min-width: 960px) {
  .item-list-noitem {
    padding-top: 0;
  }
}

.cat-contents {
  text-align: left;
}
.cat-contents + .cat-block, .cat-contents + .item-list-noitem {
  border-top: 1px solid #000;
  padding-top: 15px;
  margin-top: 40px;
}
.cat-contents + .item-list-noitem {
  padding-top: 55px;
  margin-bottom: 40px;
}
.cat-contents .free-section-block .free-title3 {
  letter-spacing: 0;
}
.cat-contents .block-attention {
  margin-top: 30px;
}
@media only screen and (min-width: 960px) {
  .cat-contents {
    /*margin-left: 5.72vw;
    margin-right: 5.72vw;*/
    max-width:1260px;
    margin-left: auto;
    margin-right: auto;
  }
  .cat-contents + .cat-block, .cat-contents + .item-list-noitem {
    padding-top: 30px;
    margin-top: 10.13%;
  }
  .cat-contents + .item-list-noitem {
    padding-top: 100px;
    margin-bottom: 10.13%;
  }
  .cat-contents .block-attention {
    margin-top: 0;
  }
}

/* stock info */
.block-stockinfo2 {
  max-width: 800px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 50px 0;
  margin: 40px auto;
}
.block-stockinfo2 p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.0;
  text-align: left;
  text-align: justify;
  letter-spacing: .1em;
}
.block-stockinfo2 .stockinfo-ttl {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 35px;
  text-align: center;
}
.block-stockinfo2 .stockinfo-wrap {
  font-family: "Noto Sans JP", sans-serif;
}
.block-stockinfo2 .stockinfo-wrap-ttl {
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 30px 0;
}
.block-stockinfo2 .stockinfo-wrap-content {
  text-align: left;
  width: fit-content;
  margin: 0 auto;
}
.block-stockinfo2 .stockinfo-date {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
}
.block-stockinfo2 .stockinfo-date + .stockinfo-date {
  margin-top: 15px;
}
.block-stockinfo2 .stockinfo-date dt, .block-stockinfo2 .stockinfo-date dd {
  display: inline;
}
.block-stockinfo2 .stockinfo-date dt + dd:before {
  content: "|";
  margin-left: 1em;
  margin-right: 1em;
}

@media only screen and (min-width: 960px) {
  .block-stockinfo2 {
    padding: 50px 8.75%;
    margin-top: 3.95%;
    margin-bottom: 7.9%;
  }
  .block-stockinfo2 .stockinfo-ttl {
    font-size: 26px;
    font-size: 2.6rem;
    margin-bottom: 40px;
  }
  .block-stockinfo2 .stockinfo-wrap {
    margin-top: 40px;
  }
  .block-stockinfo2 .stockinfo-wrap-ttl {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 20px 0;
  }
  .block-stockinfo2 .stockinfo-wrap-content {
    text-align: left;
    width: fit-content;
    margin: 0 auto;
  }
  .block-stockinfo2 .stockinfo-date + .stockinfo-date {
    margin-top: 20px;
  }
}
/* ITEM LIST (Category)
--------------------------------------*/
.cat-outline-section {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 30px;
}
.cat-outline-head {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}
.cat-outline-head .outline-ttl {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: .5em;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
}
.cat-outline-head .outline-txt {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .1em;
}
@media only screen and (min-width: 960px) {
  .cat-outline-section {
    margin-bottom: 5.2vw;
  }
  .cat-outline-head {
    margin-bottom: 2.6vw;
  }
  .cat-outline-head .outline-ttl {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 2.0;
    text-align: center;
  }
  .cat-outline-head .outline-txt {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2.0;
  }
}

.freepage .cat-section-block {
  font-family: "Noto Sans JP", sans-serif;
}
.freepage .cat-section-block .free-title3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.cat-bg-block {
  font-family: "Noto Sans JP", sans-serif;
}

.block-inner {
  margin-bottom: 40px;
}
.block-inner:last-child {
  margin-bottom: 0;
}

.block-ttl {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.cat-bg-block .attention-inner {
  margin-left: -1.58%;
  margin-right: -1.58%;
}
.cat-bg-block .attention-contents {
  font-family: "Noto Sans JP", sans-serif;
}
.cat-bg-block .attention-contents .ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.cat-bg-block .attention-contents .txt {
  font-weight: 500;
}
.cat-bg-block .attention-img.f-left {
  margin-top: 25px;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .freepage .cat-section-block {
    padding-bottom: 5.2vw;
  }

  .block-inner {
    margin-bottom: 4.166vw;
  }
  .block-inner:last-child {
    margin-bottom: 0;
  }

  .block-ttl {
    font-size: 24px;
    font-size: 2.4rem;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .cat-bg-block {
    padding: 6.3%;
  }
  .cat-bg-block .attention-inner {
    -webkit-align-items: center;
    align-items: center;
  }
  .cat-bg-block .attention-contents .ttl {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .cat-bg-block .attention-img.f-left {
    order: -1;
    margin-top: 0;
  }
}
/* 個別スタイル
--------------------------------------*/
/* 草取カギカマ */
@media only screen and (min-width: 960px) {
  #kagikama-03 .free-img-block .free-img {
    margin-left: -5.2vw;
  }
  #kagikama-03 .free-txt-block .free-img {
    margin-right: -5.2vw;
    margin-left: -7.39vw;
    margin-bottom: -3.38vw;
  }
}

/* 三陸鉄あわび */
#tetsuawabi-mainimg {
  position: relative;
}
#tetsuawabi-mainimg .mainimg-contents {
  position: absolute;
  left: 3.9%;
  top: 5.9%;
  color: #fff;
  max-width: 56em;
  text-shadow: 0 0 20px #604c3f, 1px 1px 10px #604c3f, -1px -1px 10px #604c3f;
}
#tetsuawabi-mainimg .mainimg-ttl {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: .5em;
}
#tetsuawabi-mainimg .mainimg-txt {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.3;
  font-feature-settings: "palt";
}
@media only screen and (min-width: 768px) {
  #tetsuawabi-mainimg .mainimg-contents {
    left: 6.3%;
    top: 8.9%;
  }
  #tetsuawabi-mainimg .mainimg-ttl {
    font-size: 3.2vw;
  }
  #tetsuawabi-mainimg .mainimg-txt {
    font-size: 1.45833vw;
    line-height: 1.71;
    letter-spacing: .2em;
  }
}

#tetsuawabi-01 .free-section-contents p {
  font-weight: 500;
}

.list-items {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.list-items li {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.list-items li + li {
  margin-top: 30px;
}
.list-items li:nth-child(even) .item-contents {
  order: -1;
  margin-left: 0;
  margin-right: 2%;
}
.list-items .item-img {
  width: 34%;
  padding-left: 2%;
  padding-right: 2%;
}
.list-items .item-contents {
  width: 64%;
  margin-left: 2%;
  font-weight: 500;
}
.list-items .item-contents dt {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.list-items .item-contents dd {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
  /*letter-spacing: .1em;*/
  text-align: left;
  text-align: justify;
}
@media only screen and (min-width: 768px) {
  .list-items {
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .list-items li {
    display: block;
    max-width: 228px;
    width: 22%;
  }
  .list-items li + li {
    margin-top: 0;
  }
  .list-items li:nth-child(2) {
    width: 23.4%;
    max-width: 242px;
  }
  .list-items .item-img {
    width: 100%;
    margin-bottom: 30px;
  }
  .list-items .item-contents {
    width: 100%;
    margin-left: 0;
  }
  .list-items .item-contents dt {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .list-items .item-contents dd {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2.0;
  }
}

.list-img {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 25px;
}
.list-img li {
  width: 32%;
  max-width: 100px;
  list-style: none;
  display: block;
  line-height: 1.0;
}
.list-img li + li {
  margin-left: 2%;
  margin-bottom: 2%;
}
.list-img li:nth-child(3n + 1) {
  margin-left: 0;
}
@media only screen and (min-width: 768px) {
  .list-img {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .list-img li {
    width: auto;
  }
  .list-img li + li {
    margin-left: 20px;
    margin-bottom: 0;
  }
  .list-img li:nth-child(3n + 1) {
    margin-left: 20px;
  }
}

/* ヤケーヌ */
#yakenu-mainimg .mainimg-contents {
  background: #feede1 url(https://image.raku-uru.jp/01/14620/181/bg-yakenu_1609291266098.png) 0 0 repeat;
  background-size: 23px auto;
  padding: 7.22%;
  font-family: "Noto Sans JP", sans-serif;
}
#yakenu-mainimg .mainimg-logo {
  max-width: 288px;
  margin-bottom: 25px;
}
#yakenu-mainimg .mainimg-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 15px;
}
#yakenu-mainimg .mainimg-txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: left;
  text-align: justify;
}
@media only screen and (min-width: 768px) {
  #yakenu-mainimg {
    display: -webkit-flex;
    display: flex;
  }
  #yakenu-mainimg .mainimg-img, #yakenu-mainimg .mainimg-contents {
    width: 50%;
  }
  #yakenu-mainimg .mainimg-img {
    position: relative;
    overflow: hidden;
  }
  #yakenu-mainimg .mainimg-img img {
    max-height: 100%;
    max-width: inherit;
    width: auto;
    display: block;
    position: absolute;
    left: 20%;
    top: 0;
    transform: translateX(-20%);
  }
  #yakenu-mainimg .mainimg-logo {
    margin-bottom: 50px;
  }
  #yakenu-mainimg .mainimg-ttl {
    font-size: 26px;
    font-size: 2.6rem;
    margin-bottom: 30px;
  }
  #yakenu-mainimg .mainimg-txt {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2.0;
    letter-spacing: .1em;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 1500px) {
  #yakenu-mainimg .mainimg-contents {
    padding: 13% 12% 7.2% 7.2%;
  }
}

#yakenu-outline .cat-outline-head {
  margin-bottom: 40px;
}
#yakenu-outline .cat-outline-contents {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1200px) {
  #yakenu-outline .cat-outline-head {
    margin-bottom: 4.16vw;
  }
  #yakenu-outline .cat-outline-contents {
    max-width: inherit;
    margin-left: 4.16vw;
    margin-right: 4.16vw;
  }
}

#yakenu-01 {
  padding-bottom: 0;
}
#yakenu-01 .free-section-contents {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
#yakenu-01 .free-section-contents p {
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  #yakenu-01 .free-txt-block,
  #yakenu-01 .free-img-block {
    width: 45.45%;
  }
  #yakenu-01 .free-txt-block.f-left {
    padding-left: 0;
  }
  #yakenu-01 .free-txt-block.f-right {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1500px) {
  #yakenu-01 .free-section-contents {
    max-width: inherit;
    margin-left: 4.16vw;
    margin-right: 4.16vw;
  }
}

