@charset "UTF-8";
@import url("//fonts.googleapis.com/css?family=Noto+Sans+JP:400,700|Noto+Serif+JP:300,600");
@import url("../../../font-awesome/4.7.0/css/font-awesome.min.css");
@import url("setting.css");
@import url("slick/slick.css");
@import url("slick/slick-theme.css");
@import url("../../js/common/litebox/css/lightbox.min.css");
/*---------------------------------------------
Initialization
---------------------------------------------*/
html {
  font: 62.5%/1.231 "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
}

body {
  font-size: 1.5rem;
  font-family: "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
  letter-spacing: -0.001em;
  -webkit-text-size-adjust: 100%;
}

select,
input,
button,
textarea,
table {
  font: 1.5rem "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
}

pre,
code,
kbd,
samp,
tt {
  font-family: "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
  line-height: 1;
}

*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

@media all and (min-width: 768px) {
  html,
  body {
    height: 100%;
  }
}

body {
  overflow-x: hidden;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 10px;
  }
  .inner.spInnerNone {
    padding: 0;
  }
}

@media all and (min-width: 768px) {
  .inner {
    width: 1080px;
    margin: 0 auto;
  }
}

/*---------------------------------------------
Font Setting
---------------------------------------------*/
.fonmin {
  font-family: a-otf-ryumin-pr6n, serif;
}

.yumin {
  font-family: a-otf-ryumin-pr6n, '游明朝体', 'Yu mincho', YuMincho, serif;
}

/*---------------------------------------------
Column Setting
---------------------------------------------*/
/* float
------------------------------- */
.fll > * {
  float: left;
}

.flr > * {
  float: right;
}

@media screen and (max-width: 767px) {
  .fll.nosp > *,
  .flr.nosp > * {
    float: none;
  }
}

/* display inline-block
------------------------------- */
/*.dib { font-size: 0; }*/
.dib > * {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .dib.nosp > * {
    width: 100%;
  }
}

/* display table
------------------------------- */
.dtc {
  display: table;
}

.dtc > * {
  display: table-cell;
  vertical-align: top;
}

.dtc .max_w_none {
  max-width: none;
}

@media screen and (max-width: 767px) {
  .dtc.nosp,
  .dtc.nosp > * {
    display: block;
  }
  .dtc.nosp .max_w_none {
    max-width: 100%;
  }
}

@media screen and (min-width: 768px), print {
  .col-2 > * {
    width: 49%;
  }
  .col-2 > *:nth-child(even) {
    margin-left: 2%;
  }
  .col-3 > * {
    width: 32%;
    margin-left: 2%;
  }
  .col-3 > *:nth-child(3n+1) {
    margin-left: 0 !important;
  }
  .col-4 > * {
    width: 24%;
    margin-left: 1.33%;
  }
  .col-4 > *:nth-child(4n+1) {
    margin-left: 0 !important;
  }
  .rev > *:nth-child(even) {
    margin-left: 0;
    margin-right: 2%;
  }
  .rev > *:nth-child(odd) {
    float: right;
  }
}

@media screen and (max-width: 768px) {
  .spcol-2 > * {
    width: 49%;
  }
  .spcol-2 > *:nth-child(even) {
    margin-left: 2%;
  }
  .spcol-3 > * {
    width: 32%;
    margin-left: 2%;
  }
  .spcol-3 > *:nth-child(3n+1) {
    margin-left: 0 !important;
  }
}

/*---------------------------------------------
flex Setting
---------------------------------------------*/
.flex {
  display: flex;
}

.fd__row {
  flex-direction: row;
}

.fd__row__rev {
  flex-direction: row-reverse;
}

.fd__col {
  flex-direction: column;
}

.fd__col__rev {
  flex-direction: column-reverse;
}

.fw__no {
  flex-wrap: nowrap;
}

.fw__wrap {
  flex-wrap: wrap;
}

.fw__wrap__rev {
  flex-wrap: wrap-reverse;
}

.jc__st {
  justify-content: start;
}

.jc__end {
  justify-content: end;
}

.jc__center {
  justify-content: center;
}

.jc__fs {
  justify-content: flex-start;
}

.jc__fe {
  justify-content: flex-end;
}

.jc__left {
  justify-content: left;
}

.jc__right {
  justify-content: right;
}

.jc__sb {
  justify-content: space-between;
}

.jc__sa {
  justify-content: space-around;
}

.jc__se {
  justify-content: space-evenly;
}

.jc__str {
  justify-content: stretch;
}

.jc__no {
  justify-content: normal;
}

.ai__str {
  align-items: stretch;
}

.ai__center {
  align-items: center;
}

.ai__fs {
  align-items: flex-start;
}

.ai__fe {
  align-items: flex-end;
}

.ai__st {
  align-items: start;
}

.ai__end {
  align-items: end;
}

.ai__ss {
  align-items: self-start;
}

.ai__se {
  align-items: self-end;
}

.ai__base {
  align-items: baseline;
}

.ai__no {
  align-items: normal;
}

.ac__str {
  align-content: stretch;
}

.ac__st {
  align-content: start;
}

.ac__end {
  align-content: end;
}

.ac__fs {
  align-content: flex-start;
}

.ac__center {
  align-content: center;
}

.ac__fe {
  align-content: flex-end;
}

.ac__no {
  align-content: normal;
}

.ac__base {
  align-content: baseline;
}

.ac__sb {
  align-content: space-between;
}

.ac__sa {
  align-content: space-around;
}

.ac__se {
  align-content: space-evenly;
}

.as__auto {
  align-self: auto;
}

.as__no {
  align-self: normal;
}

.as__center {
  align-self: center;
}

.as__st {
  align-self: start;
}

.as__end {
  align-self: end;
}

.as__ss {
  align-self: self-start;
}

.as__se {
  align-self: self-end;
}

.as__fs {
  align-self: flex-start;
}

.as__fe {
  align-self: flex-end;
}

.as__base {
  align-self: baseline;
}

.fb40 {
  flex-basis: 40%;
}

.fb55 {
  flex-basis: 55%;
}

.fb30 {
  flex-basis: 30%;
}

.fb60 {
  flex-basis: 60%;
}

@media screen and (max-width: 767px) {
  .sp__fd__col {
    flex-direction: column;
  }
  .sp__fd__col__rev {
    flex-direction: column-reverse;
  }
}

/*---------------------------------------------
Icon Setting
---------------------------------------------*/
/*---------------------------------------------
module
---------------------------------------------*/
.fc01 {
  color: #791500;
}

.fcbk {
  color: #000;
}

.fs13 {
  font-size: 1.3rem;
}

.disc {
  line-height: 2;
}

.rightArw::before {
  content: '\f0da';
  font-family: 'fontawesome';
  color: #791500;
}

.rightArw02::before {
  margin-right: 10px;
  content: '\f138';
  font-family: 'fontawesome';
}

.hr01 {
  margin: 0 0 20px 0;
  border: none;
  border-bottom: 1px solid #ddd;
}

.box01 {
  padding: 30px;
  background-color: #F4F2F1;
}

.box01.box01_co02 {
  background-color: #f5f5f5;
}

.box02 {
  padding: 20px;
  background-color: #F4F2F1;
}

.box02 .shiteiText {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.box02 .shitei {
  position: static;
  visibility: visible;
  opacity: 1;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.2rem;
}

.box02 .shitei span:first-child {
  margin-right: 10px;
  font-weight: bold;
}

.nothing {
  padding-top: 30px;
  text-align: center;
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .spSearchBox {
    padding-top: 5px;
  }
  .spSearchBox .itemSearch {
    display: block !important;
  }
}

@media all and (min-width: 768px) {
  .spSearchBox .itemSearch {
    display: none !important;
  }
  .box01 {
    padding: 50px;
  }
}

/*---------------------------------------------
title
---------------------------------------------*/
.ttl01 {
  margin-bottom: 28px;
  font-size: 2.2rem;
  letter-spacing: 2.4px;
}

.ttl02 {
  font-size: 2.0rem;
  letter-spacing: 4px;
}

.ttl03 {
  margin-bottom: 15px;
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1.47;
  letter-spacing: 6px;
}

.titleArea {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.titleArea .more {
  margin-bottom: 28px;
}

.titleArea .more a {
  color: #000;
  font-size: 1.4rem;
  text-decoration: none;
}

.titleArea .more a::after {
  content: '\f138';
  font-family: 'fontawesome';
  margin-left: 10px;
}

@media all and (min-width: 768px) {
  .ttl01 {
    font-size: 2.4rem;
  }
  .ttl02 {
    font-size: 2.0rem;
  }
  .ttl03 {
    font-size: 3.0rem;
  }
}

/*---------------------------------------------
button
---------------------------------------------*/
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  border-color: transparent;
  -webkit-appearance: none;
}

.btn:focus {
  outline: none;
}

.btn.btn01 {
  padding: 0 10px;
  height: 35px;
  line-height: 35px;
  border: none;
  background-color: #791500;
  color: #fff;
  border-radius: 3px;
}

.btn.btn02 {
  width: 300px;
  height: 65px;
  background-color: #222;
  color: #fff;
}

.btn.btn03 {
  width: 100%;
  height: 65px;
  border: 1px solid #000;
}

.btn.btn04 {
  width: 250px;
  height: 40px;
  background-color: #791500;
  font-size: 1.3rem;
  color: #fff;
}

.btn.btn05 {
  width: 130px;
  height: 35px;
  margin: 0 auto;
  line-height: 35px;
  border-radius: 3px;
}

.btn.cart {
  padding-left: 30px;
}

.btn.cart::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 10px;
  display: block;
  content: '';
  width: 13px;
  height: 11px;
  background: url("../../img/common/icon/cart.svg") center center/cover no-repeat;
}

.btn.cart.cart02 {
  padding-left: 0px;
}

.btn.cart.cart02::before {
  position: static;
  margin: auto 10px auto 0;
  background: url("../../img/common/icon/cart2.svg") center center/cover no-repeat;
  width: 17.64px;
  height: 17.36px;
}

.btn.iconBook::before {
  margin: auto 15px auto 0;
  display: block;
  content: '';
  width: 18px;
  height: 18px;
  background: url("../../img/common/icon/book.svg") center center/cover no-repeat;
}

.btn.btnCenter {
  margin: 0 auto;
}

.btn:hover {
  text-decoration: none;
  opacity: .8;
}

.btn.btnDis {
  pointer-events: none !important;
  background-color: #ccc !important;
  opacity: 1 !important;
  border-color: #ccc !important;
  color: #999 !important;
}

.hover {
  transition: 0.2s ease-in-out;
}

.hover:hover {
  opacity: .8;
}

.scrollBtn {
  margin-bottom: 50px;
}

.scrollBtn li a {
  position: relative;
  padding-bottom: 10px;
  display: block;
  text-decoration: none;
  color: #000;
  border-bottom: 2px solid #ddd;
  transition: 0.2s ease-in-out;
}

.scrollBtn li a::after {
  position: absolute;
  right: 0;
  content: '\f13a';
  font-family: 'fontawesome';
}

.scrollBtn li a:hover {
  border-bottom: 2px solid #791500;
}

@media screen and (max-width: 767px) {
  .scrollBtn li:nth-of-type(n+2) {
    margin-top: 20px;
  }
}

@media all and (min-width: 768px) {
  .scrollBtn {
    display: flex;
    justify-content: space-between;
  }
  .scrollBtn li {
    width: 200px;
  }
}

.modalSelect {
  position: relative;
  padding: 0 20px;
  display: flex;
  align-items: center;
  border: 1px solid #707070;
  height: 62px;
  cursor: pointer;
}

.modalSelect::after {
  margin-right: 20px;
  position: absolute;
  right: 0;
  content: '\f055';
  font-family: 'fontawesome';
  font-size: 3rem;
}

@media all and (min-width: 768px) {
  .modalSelect {
    width: 390px;
  }
}

.send {
  margin-top: 10px;
  text-align: center;
}

.send .back_to_delivery_button,
.send .back_to_customer_button,
.send .back_cart_button,
.send .continue_shopping_button {
  display: inline-block;
  padding: 0 10px;
  min-width: 135px;
  height: 45px;
  text-align: center;
  background-color: #efefef;
  border: none;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
  cursor: pointer;
  -webkit-appearance: none;
}

.send .back_to_delivery_button:hover,
.send .back_to_customer_button:hover,
.send .back_cart_button:hover,
.send .continue_shopping_button:hover {
  opacity: .8;
}

.send input.checkout_button,
.send input.to_confirm_button,
.send input.to_reganddeliveryinfo_button,
.send input.to_deliveryinfo_button,
.send input.to_memberlogin_button,
.send input.to_customerinfo_button {
  margin: 0 !important;
  display: inline-block;
  padding: 0 10px;
  min-width: 135px;
  height: 45px;
  text-align: center;
  border: none;
  border-radius: 3px;
  background-color: #791500 !important;
  transition: 0.2s ease-in-out;
  -webkit-appearance: none;
  cursor: pointer;
}

.send input.checkout_button:hover,
.send input.to_confirm_button:hover,
.send input.to_reganddeliveryinfo_button:hover,
.send input.to_deliveryinfo_button:hover,
.send input.to_memberlogin_button:hover,
.send input.to_customerinfo_button:hover {
  opacity: .8;
}

@media screen and (max-width: 767px) {
  .send input.to_reganddeliveryinfo_button {
    display: block;
    margin-top: 10px !important;
  }
}

#cart .action input.delButton {
  padding: 0 !important;
  width: 30px;
  height: 22px;
  text-align: center;
  background-color: #efefef;
  border: none;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
  font-size: 1.0rem;
  cursor: pointer;
  -webkit-appearance: none;
}

#cart .action input.delButton:hover {
  opacity: .8;
}

#wc_cart #cart .upbutton input {
  -webkit-appearance: none;
}

#wc_cart .currency_code {
  font-size: 1.3rem;
}

.error_message {
  color: red;
}

#wc_ordercompletion .send a.back_to_top_button {
  text-decoration: none;
  color: #000;
}

@media screen and (max-width: 350px) {
  div.cart_navi li {
    font-size: 10px !important;
  }
}

/*---------------------------------------------
list
---------------------------------------------*/
.newsList li:nth-of-type(odd) a {
  background-color: #F4F2F1;
}

.newsList li a {
  display: block;
  padding: 20px 30px;
  text-decoration: none;
  color: #000;
}

.newsList li a .date {
  margin-right: 50px;
}

.newsList li a .text {
  word-break: break-all;
}

@media all and (min-width: 768px) {
  .newsList li a {
    display: flex;
  }
}

.recList {
  display: flex;
  flex-wrap: wrap;
}

.recList li {
  margin-bottom: 50px;
  width: 49%;
}

.recList li a {
  display: block;
  color: #000;
  text-decoration: none;
  text-align: center;
}

.recList li a figure {
  margin-bottom: 5px;
}

.recList li a .publisher {
/*  padding: 3px 0;*/
    margin: 3px 0;
  font-size: 1.5rem;
}

.recList li a .price {
  margin-bottom: 10px;
}

.recList .skubutton {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  border-color: transparent;
  padding: 0 10px;
  height: 35px;
  line-height: 35px;
  border: none;
  background-color: #791500;
  color: #fff;
  border-radius: 3px;
  padding-left: 30px;
  margin: 0 auto;
  -webkit-appearance: none;
}

.recList .skubutton:focus {
  outline: none;
}

.recList .skubutton:hover {
  text-decoration: none;
  opacity: .8;
}

.recList form {
  position: relative;
}

.recList a[name="cart_button"] {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 90px;
  margin: auto;
  display: block;
  width: 13px;
  height: 11px;
  background: url("../../img/common/icon/cart.svg") center center/cover no-repeat;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .recList {
    justify-content: space-between;
  }
  .recList img {
/*    height: auto;*/
      height: auto;
      width: auto;
  }
}

@media all and (min-width: 768px) {
  .recList li {
    margin-left: 40px;
    width: 185px;
  }
  .recList li:nth-of-type(4n+1) {
    margin-left: 0;
  }
  .recList.newList li {
    margin-left: 20px;
    width: 175px;
  }
  .recList.newList li:nth-of-type(4n+1) {
    margin-left: 0;
  }
  .recList img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    font-family: 'object-fit: cover;object-position: center center;';
  }
}

.indent {
  padding-left: 20px;
  text-indent: -15px;
}

.ul01 {
  margin-bottom: 20px;
  line-height: 2;
}

.ul01 li {
  padding-left: 15px;
  position: relative;
}

.ul01 li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '';
  width: 4px;
  height: 4px;
  margin: 14px 0 0;
  background-color: #791500;
}

.sitmapList {
  margin-bottom: 50px;
}

.sitmapList li {
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.sitmapList li a {
  text-decoration: none;
  color: #000;
}

.sitmapList li a::before {
  margin-right: 15px;
  content: '\f0da';
  font-family: 'fontawesome';
  color: #791500;
}

@media all and (min-width: 768px) {
  .sitmapList {
    display: flex;
    flex-wrap: wrap;
  }
  .sitmapList li {
    width: 250px;
    margin-left: 36px;
  }
}

/*---------------------------------------------
form
---------------------------------------------*/
/*---------------------------------------------
select
---------------------------------------------*/
.select01 {
  position: relative;
}

.select01 select {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  width: 100%;
  padding: 20px;
  border: 1px solid #707070;
  text-decoration: none;
  color: #000;
  letter-spacing: 3px;
  cursor: pointer;
}

.select01 select::-ms-expand {
    display: none;
}

.select01::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 15px;
  margin: auto 0;
  margin-right: 20px;
  content: '\f0d7';
  font-family: 'fontawesome';
}

.selectJs01 {
  margin-bottom: 50px;
  position: relative;
}

.selectJs01 p {
  position: relative;
  padding: 20px;
  display: block;
  border: 1px solid #707070;
  text-decoration: none;
  color: #000;
  letter-spacing: 3px;
  cursor: pointer;
}

.selectJs01 p::after {
  position: absolute;
  right: 0;
  margin-right: 20px;
  content: '\f0d7';
  font-family: 'fontawesome';
}

.selectJs01 ul {
  position: absolute;
  width: 100%;
  background: #fff;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.selectJs01 ul li a {
  position: relative;
  padding: 20px;
  display: block;
  border: 1px solid #707070;
  text-decoration: none;
  color: #000;
  letter-spacing: 3px;
}

.selectJs01 ul li a::after {
  position: absolute;
  right: 0;
  margin-right: 20px;
  content: '\f0d7';
  font-family: 'fontawesome';
}

.selectJs01.show ul {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .selectArea01 .select01:first-of-type {
    margin-bottom: 20px;
  }
}

@media all and (min-width: 768px) {
  .selectArea01 {
    display: flex;
    justify-content: space-between;
  }
  .selectArea01 .select01 {
    width: 390px;
  }
}

/*---------------------------------------------
radio
---------------------------------------------*/
.mwform-radio-field input[type="radio"],
.radioStyle01 input[type="radio"] {
  display: none;
}

.mwform-radio-field input[type="radio"] + .mwform-radio-field-text,
.mwform-radio-field input[type="radio"] + label,
.radioStyle01 input[type="radio"] + .mwform-radio-field-text,
.radioStyle01 input[type="radio"] + label {
  padding-left: 30px;
  position: relative;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.mwform-radio-field input[type="radio"] + .mwform-radio-field-text::before,
.mwform-radio-field input[type="radio"] + label::before,
.radioStyle01 input[type="radio"] + .mwform-radio-field-text::before,
.radioStyle01 input[type="radio"] + label::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
  border: 1px solid #707070;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}

.mwform-radio-field input[type="radio"] + .mwform-radio-field-text::after,
.mwform-radio-field input[type="radio"] + label::after,
.radioStyle01 input[type="radio"] + .mwform-radio-field-text::after,
.radioStyle01 input[type="radio"] + label::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 12px;
  height: 12px;
  margin: auto 4px;
  background-color: #791500;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.mwform-radio-field input[type="radio"]:checked + .mwform-radio-field-text::after,
.mwform-radio-field input[type="radio"]:checked + label::after,
.radioStyle01 input[type="radio"]:checked + .mwform-radio-field-text::after,
.radioStyle01 input[type="radio"]:checked + label::after {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .radio2 .item {
    width: 49%;
  }
  .radio2 .horizontal-item {
    width: 49%;
  }
  .radio3 .item,
    .radio4 .item,
  .radio6 .item {
    width: 49%;
  }
  .radio3 .item:nth-of-type(n+3),
    .radio4 .item:nth-of-type(n+3),
  .radio6 .item:nth-of-type(n+3) {
    margin-top: 10px;
  }
  .radio3 .horizontal-item,
    .radio4 .horizontal-item,
  .radio6 .horizontal-item {
    width: 49%;
  }
  .radio3 .horizontal-item:nth-of-type(n+3),
    .radio4 .horizontal-item:nth-of-type(n+3),
  .radio6 .horizontal-item:nth-of-type(n+3) {
    margin-top: 10px;
  }
  .mw_wp_form .radio2 .horizontal-item + .horizontal-item,
  .mw_wp_form .radio3 .horizontal-item + .horizontal-item,
    .mw_wp_form .radio4 .horizontal-item + .horizontal-item,
  .mw_wp_form .radio6 .horizontal-item + .horizontal-item {
    margin-left: 0;
  }
}

@media all and (min-width: 768px) {
  .mw_wp_form .radio2 .horizontal-item:nth-of-type(n+2) {
    margin-left: 60px;
  }
  .mw_wp_form .radio3 .horizontal-item + .horizontal-item {
    margin-left: 0;
  }
    .mw_wp_form .radio4 .horizontal-item + .horizontal-item {
        margin-left: 0;
    }
  .radio2 .item:nth-of-type(n+2) {
    margin-left: 60px;
  }
  .radio3 .item {
    width: calc(100%/3);
  }
  .radio3 .item:nth-of-type(n+4) {
    margin-top: 10px;
  }
  .radio3 .horizontal-item {
    width: calc(100%/3);
  }
  .radio3 .horizontal-item:nth-of-type(n+4) {
    margin-top: 10px;
  }
    .radio4 .item {
        width: calc(100%/4);
    }
    .radio4 .item:nth-of-type(n+5) {
        margin-top: 10px;
    }
    .radio4 .horizontal-item {
        width: calc(100%/4);
    }
    .radio4 .horizontal-item:nth-of-type(n+5) {
        margin-top: 10px;
    }
}

/*---------------------------------------------
checkbox
---------------------------------------------*/
.mwform-checkbox-field input[type="checkbox"],
.checkboxStyle01 input[type="checkbox"] {
  display: none;
}

.mwform-checkbox-field input[type="checkbox"] + .mwform-checkbox-field-text,
.mwform-checkbox-field input[type="checkbox"] + label,
.checkboxStyle01 input[type="checkbox"] + .mwform-checkbox-field-text,
.checkboxStyle01 input[type="checkbox"] + label {
  padding-left: 30px;
  position: relative;
  transition: 0.2s ease-in-out;
  cursor: pointer;
  display: inline-block;
}

.mwform-checkbox-field input[type="checkbox"] + .mwform-checkbox-field-text::before,
.mwform-checkbox-field input[type="checkbox"] + label::before,
.checkboxStyle01 input[type="checkbox"] + .mwform-checkbox-field-text::before,
.checkboxStyle01 input[type="checkbox"] + label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  transition: 0.2s ease-in-out;
}

.mwform-checkbox-field input[type="checkbox"] + .mwform-checkbox-field-text::after,
.mwform-checkbox-field input[type="checkbox"] + label::after,
.checkboxStyle01 input[type="checkbox"] + .mwform-checkbox-field-text::after,
.checkboxStyle01 input[type="checkbox"] + label::after {
  margin: 3px;
  content: '\f00c';
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  font-family: 'fontawesome';
  font-size: 1.4rem;
  text-shadow: 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff;
  color: #791500;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.mwform-checkbox-field input[type="checkbox"]:checked + .mwform-checkbox-field-text::after,
.mwform-checkbox-field input[type="checkbox"]:checked + label::after,
.checkboxStyle01 input[type="checkbox"]:checked + .mwform-checkbox-field-text::after,
.checkboxStyle01 input[type="checkbox"]:checked + label::after {
  visibility: visible;
  opacity: 1;
}

@media all and (min-width: 768px) {
  .checkboxStyle01 input[type="checkbox"] + label::before {
    margin: 0;
  }
  .checkboxStyle01 input[type="checkbox"] + label::after {
    margin: 3px 3px;
  }
}

.wpcf7c-conf {
  background-color: #ddd !important;
}

.customer_form th {
  text-align: left;
}

.customer_form textarea,
.customer_form input {
  padding: 10px;
  max-width: 100%;
  border: 1px solid #ddd;
}

.customer_form input {
  height: 34px;
}

.customer_form td label{
  cursor: pointer;
}

.customer_form select {
  height: 34px;
}

.customer_form textarea {
  width: 100%;
  height: 150px;
}

.customer_form input[type="radio"] {
  height: auto;
  margin: 0 5px;
  line-height: 1;
  display: inline-block;
  vertical-align: text-top;
}
@supports (-ms-ime-align:auto) {
  .customer_form input[type="radio"] {
    vertical-align: middle;
  }
}
@media all and (-ms-high-contrast: none){
  .customer_form input[type="radio"] {
    vertical-align: middle;
  }
}

@media screen and (max-width: 767px) {
  input:not([type="radio"]) {
    border-radius: 0;
  }
  .customer_form {
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-word;
  }
  .customer_form tr {
    padding: 0 0 1.071428em !important;
  }
}

/*---------------------------------------------
table
---------------------------------------------*/
.flexTable {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  line-height: 1.87;
}

.flexTable .ftr {
  display: flex;
}

.flexTable .ftr li {
  padding: 18px 10px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.flexTable .ftr li:first-child {
  padding: 18px 0;
  flex-basis: 136px;
  text-align: center;
}

.flexTable .ftr li:nth-of-type(n+2) {
  flex-basis: 384px;
}

.table99 {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  line-height: 1.87;
}

.table99 th,
.table99 td {
  padding: 18px 10px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.table99 th {
  padding: 18px 0;
  width: 136px;
  text-align: center;
}

.table99 td {
  width: 384px;
}

.table99 td p {
  word-break: break-all;
}

@media all and (min-width: 768px) {
  .flexTable .ftr li {
    padding: 18px;
  }
  .table99 th,
  .table99 td {
    padding: 18px;
  }
}

.flexTable02 {
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.flexTable02 .tr li {
  padding: 14px 10px;
}

.flexTable02 .thead li {
  font-weight: bold;
}

.flexTable02 .tbody {
  border-top: 1px solid #791500;
}

.flexTable02 .tbody li {
  border-bottom: 1px solid #ddd;
}

.flexTable02 .tbody li a {
  color: #5589FF;
}

.flexTable02 .tbody .th {
  font-weight: bold;
  background-color: #F4F2F1;
}

.flexTable02 .tbody .th .year {
  font-weight: normal;
}

.flexTable02 .tbody .td {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .flexTable02 .thead {
    display: none;
  }
  .flexTable02 .tbody .th .year {
    margin-right: 10px;
  }
  .flexTable02 .tbody .td {
    padding: 16px 0;
  }
  .flexTable02 .tbody .td .spTh {
    display: inline-block;
    width: 25%;
    font-weight: bold;
    text-align: center;
    /*flex-basis: 1;*/
  }
  .flexTable02 .tbody .td .spTd {
    text-align: left;
    width: 75%;
    /*flex-basis: 2;*/
  }
}

@media all and (min-width: 768px) {
  .flexTable02 .t100 {
    width: 60px;
  }
  .flexTable02 .t180 {
    width: 110px;
    font-size: 13px;
  }
  .flexTable02 .t480 {
    width: 620px;
  }
  .flexTable02 .tr {
    display: flex;
  }
  .flexTable02 .tbody .th .year {
    display: block;
  }
  .flexTable02 .tbody .td.x1 {
    padding-left: 40px;
  }
  .flexTable02 .tbody .td.x2 {
    justify-content: center;
  }
  .flexTable02 .tbody .td .spTh {
    display: none;
  }
}

.table01 {
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.table01 th,
.table01 td {
  padding: 16px;
}

.table01 thead th {
  border-bottom: 1px solid #791500;
}

.table01 tbody th,
.table01 tbody td {
  border-bottom: 1px solid #ddd;
}

.table01 tbody th {
  background-color: #F4F2F1;
}

.table01 tbody td a {
  color: #5589FF;
}

.table01 tbody td:first-of-type {
  padding-left: 40px;
}

.table01 tbody .year {
  font-weight: normal;
  display: block;
}

.table02 {
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.table02 th,
.table02 td {
  text-align: center;
  padding: 22px;
  border: 1px solid #ddd;
}

.table02 th {
  background-color: #F4F2F1;
}

.table03 {
  margin-bottom: 20px;
  border-top: 1px solid #ddd;
  letter-spacing: 2px;
}

.table03 th,
.table03 td {
  border-bottom: 1px solid #ddd;
  padding: 20px;
}

.table03 th {
  white-space: nowrap;
  text-align: center;
  background-color: #F4F2F1;
}

.formTable {
  margin-bottom: 30px;
}

.formTable .tr {
  margin-top: 10px;
}

.formTable .tr .th {
  padding-left: 20px;
  display: flex;
  align-items: center;
  flex-basis: 240px;
  background-color: #F4F2F1;
  font-weight: bold;
}

.formTable .tr .td {
  flex-basis: 610px;
}

.formTable .tr .td input {
  padding: 10px;
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
}

.formTable .tr .td input.i80 {
  width: 80px;
}

.formTable .tr .td input.i140 {
  width: 140px;
}

.formTable .tr .td textarea {
  padding: 10px;
  width: 100%;
  height: 150px;
  border: 1px solid #ddd;
}

.formTable .hyphen {
  display: inline-block;
  width: 10px;
  height: 1px;
  margin: 25px 10px 0;
  background-color: #000;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .sptableB th, .sptableB td {
    display: block;
  }
  .sptableB td {
    padding-bottom: 40px;
  }
  .formTable .tr .th {
    padding: 15px;
  }
}

@media all and (min-width: 768px) {
  .formTable .tr {
    display: flex;
    justify-content: space-between;
  }
}

.required {
  padding: 2px 8px;
  display: inline-block;
  background-color: #791500;
  color: #fff;
  font-size: 1.1rem;
  font-weight: normal;
  width: 40px;
  height: 17px;
  border-radius: 3px;
}

.searchModal {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
  transition: 0.2s ease-in-out;
}

.searchModal .searchModalWrap {
  position: relative;
  top: 0;
  padding: 20px;
  background-color: #F4F2F1;
  z-index: 2;
}

.searchModal .searchModalWrap .close {
  margin: -20px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  text-align: center;
  cursor: pointer;
}

.searchModal .searchModalWrap .close i {
  padding-top: 7px;
  color: #fff;
  font-size: 2rem;
}

.searchModal::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.searchTable {
  margin-bottom: 30px;
}

.searchTable th,
.searchTable td {
  padding: 5px 20px;
    border-top: 15px solid #F4F2F1;
    border-bottom: 15px solid #F4F2F1;
}

.searchTable tr {
    border-left: 15px solid #F4F2F1;
    border-right: 15px solid #F4F2F1;
}

.searchTable th {
  padding-left: 0;
  
  vertical-align: top;
    background-color: #F4F2F1;
}

.searchTable th span {
  
  font-weight: normal;
  font-size: 1.2rem;
}

.searchTable td {
  background-color: #fff;
}

/*
.searchTable .bd20 th,
.searchTable .bd20 td {
    border-bottom: 20px solid #F4F2F1;
}

.searchTable .bd15 th,
.searchTable .bd15 td {
    border-bottom: 15px solid #F4F2F1;
}
*/

.searchTable .tana2,
.searchTable .tana3 {
  display: none;
}

@media screen and (max-width: 767px) {
  .searchModal {
    left: 0;
    right: 0;
    margin: 0 10px;
  }
  .searchModal .searchModalWrap .close {
    margin: -20px -5px;
  }
  .searchTable th,
  .searchTable td {
    display: block;
      border-top: 5px solid #F4F2F1;
  }
  .searchTable th {
      text-align: left;
    padding: 0;
      border-bottom: 0;
  }
    .searchTable th span {
        margin-left: 10px;
    }
}

@media all and (min-width: 768px) {
  .searchModal {
    width: 860px;
  }
    .searchTable th {
        width: 100px;
    }
    .searchTable th span {
        display: block;
    }
}

.modalShow .searchModal {
  visibility: visible;
  opacity: 1;
}


.searchTable {
    padding: 10px;
    background-color: #F4F2F1;
}

.searchTable .tableTitle {
    padding: 10px 0;
    font-weight: bold;
    
}
.searchTable .tableTitle span {
    font-weight: normal;
    font-size: 1.2rem;
}
.searchTable .tableDesc {
    padding: 10px;
    background-color: #fff;
}
@media all and (min-width: 768px) {
    .searchTable>div>* {
        float: left;
    }
    .searchTable .tableTitle {
        width: 100px;
        text-align: center;
    }
    .searchTable .tableDesc {
        width: 740px;
    }
    .searchTable .tableTitle span {
        display: block;
    }
}
/*---------------------------------------------
label
---------------------------------------------*/
.label {
  margin-right: 10px;
  display: inline-block;
  width: 40px;
  height: 30px;
  line-height: 30px;
  font-size: 1.2rem;
  background-color: #000;
  color: #fff;
  text-align: center;
  vertical-align: bottom;
  letter-spacing: normal;
}

/*---------------------------------------------
Slide Setting
---------------------------------------------*/
.slider02 img {
  margin: 0 auto;
  width: 50%;
  height: auto;
}

.slider01 {
  padding: 0 30px;
}

.slider01 img {
  margin: 0 auto;
}

.slider01 li {
  text-align: center;
}

.slider01 li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
}

.slider01 li .more {
  margin: 0 10px 5px 0;
  position: absolute;
  right: 0;
  bottom: 0;
}

.slider01 li .more::after {
  margin-left: 10px;
  content: '\f138';
  font-family: 'fontawesome';
}

.slider01 *:focus {
  outline: none;
}

@media screen and (max-width: 767px) {
  .slider01 li .more {
    font-size: 1.2rem;
  }
}

@media all and (min-width: 768px) {
  .slider01 li .more {
    margin: 0 15px 10px 0;
  }
}

*:focus {
  outline: none;
}

.slider_dots01 {
  padding-top: 10px;
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}

.slider_dots01 li:nth-of-type(n+2) {
  margin-left: 10px;
}

.slider_dots01 li.slick-active button {
  background: #505050;
}

.slider_dots01 li:only-child {
  display: none;
}

.slider_dots01 button {
  padding: 0;
  font-size: 0;
  border: 1px solid #505050;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  cursor: pointer;
}

.slider_dots01.var2 {
    position: static;
/*
  padding-top: 0;
  bottom: 0;
  margin-bottom: 10px;
*/
}
.slider_dots01.var2 li button {
    background: #ddd;
}
.slider_dots01.var2 li.slick-active button {
  background: #000;
}

.slider_dots01.var2 button {
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  background-color: #000;
}

.slider_dots01.var3 {
  padding-top: 0;
  bottom: 0;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .slider_dots01.var3 {
    margin-bottom: 10px;
  }
  .slider_dots01.var3 button {
    width: 15px;
    height: 15px;
    background: #fff;
  }
}

.arw01 {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 15px;
  margin: auto;
  cursor: pointer;
}

.arw01.prev {
  left: 0;
}

.arw01.next {
  right: 0;
}

/*---------------------------------------------
header
---------------------------------------------*/
@media screen and (max-width: 767px) {
  #contents {
    padding-top: 76px;
  }
  .menuBtn {
    text-align: center;
  }
  .menuBtn .bars,
  .menuBtn .bars span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .menuBtn .bars {
    margin-bottom: 4px;
    position: relative;
    width: 32px;
    height: 24px;
  }
  .menuBtn .bars span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #666;
    border-radius: 4px;
  }
  .menuBtn .bars span:nth-of-type(1) {
    top: 0;
  }
  .menuBtn .bars span:nth-of-type(2) {
    top: 10px;
  }
  .menuBtn .bars span:nth-of-type(3) {
    bottom: 0;
  }
  .menuBtn .text .openText {
    display: none;
  }
  .menuOpen .menuBtn .bars span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
            transform: translateY(10px) rotate(-45deg);
  }
  .menuOpen .menuBtn .bars span:nth-of-type(2) {
    opacity: 0;
  }
  .menuOpen .menuBtn .bars span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
            transform: translateY(-10px) rotate(45deg);
  }
  .menuOpen .menuBtn .text .closeText {
    display: none;
  }
  .menuOpen .menuBtn .text .openText {
    display: inline;
  }
  .menuOpen #side {
    visibility: visible;
    opacity: 1;
  }
  .itemSearch {
    position: relative;
    display: none;
    margin-bottom: 30px;
  }
  .itemSearch input {
    padding: 10px 10px 10px 30px;
    border: none;
    background-color: #EDEDED;
    width: 100%;
    height: 50px;
    border-radius: 3px;
  }
  .itemSearch::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 18px;
    margin: auto 10px;
    content: '\f002';
    font-family: 'fontawesome';
    color: #a2a2a2;
  }
  #header {
    position: fixed;
    width: 100%;
    height: 76px;
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 20;
  }
  #header .logo {
    width: 60%;
  }
  #header .logo a {
    display: block;
    font-size: 0;
    line-height: 0;
  }
  #header .siteDesc {
    display: none;
  }
  #header .gnav {
    display: none;
  }
  #header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  #header .hRight {
    display: flex;
    font-size: 1.1rem;
    font-family: 'Noto Sans JP';
    font-weight: bold;
  }
  #header .hRight .cartBtn {
    margin-right: 15px;
    position: relative;
  }
  #header .hRight .cartBtn a {
    text-decoration: none;
    color: #000;
    text-align: center;
  }
  #header .hRight .cartBtn a i {
    color: #791500;
    font-size: 3.0rem;
  }
  #header .hRight .cartBtn .num {
    margin: -4px -6px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #791500;
    color: #fff;
    display: block;
    width: 16px;
    height: 16px;
    line-height: 14px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 1.0rem;
    font-weight: normal;
  }
  #side {
    margin-top: 76px;
    position: fixed;
    left: 0;
    padding: 10px;
    width: 100%;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s ease-in-out;
    z-index: 10;
    overflow-y: scroll;
  }
  #side::-webkit-scrollbar {
    display: none;
  }
  #side .sideBox:nth-of-type(1) {
    border-bottom: 1px solid #ddd;
  }
  #side .sideBox dt {
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 1.8rem;
  }
  #side .sideBox dt .rightTextLink a {
    color: #000;
    font-size: 1.3rem;
  }
  #side .sideBox dd {
    margin-bottom: 25px;
    margin-left: 0;
  }
  #side .sideBox dd a {
    color: #000;
    text-decoration: none;
  }
  #side .sideBox dd a::before {
    margin-right: 10px;
    content: '\f0da';
    font-family: 'fontawesome';
    color: #791500;
  }
  #side .sadoBnr {
    padding-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
  }
  #side .prBorder {
    display: none;
  }
  #side .gnav li {
    margin-bottom: 25px;
  }
  #side .gnav li a {
    color: #000;
    text-decoration: none;
  }
  #side .gnav li a::before {
    margin-right: 10px;
    content: '\f0da';
    font-family: 'fontawesome';
    color: #791500;
  }
}

@media all and (min-width: 768px) {
  #header {
    padding: 30px 0 48px;
  }
  #header .siteDesc {
    margin-bottom: 7px;
    font-size: 1.2rem;
  }
  #header nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  #header nav .hRight {
    display: flex;
  }
  #header nav .hRight .gnav {
    padding-top: 10px;
    margin-right: 10px;
    display: flex;
  }
  #header nav .hRight .gnav li {
    margin-right: 20px;
  }
  #header nav .hRight .gnav li a {
    position: relative;
    font-size: 1.6rem;
    color: #000;
    text-decoration: none;
  }
  #header nav .hRight .gnav li a::after {
    margin: 0 auto -14px;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #791500;
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
    opacity: 0;
    transition: 0.2s ease-in-out;
  }
  #header nav .hRight .gnav li a:hover::after {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  #header nav .hRight .cartBtn {
    position: relative;
  }
  #header nav .hRight .cartBtn a {
    display: block;
    width: 162px;
    height: 49px;
    line-height: 47px;
    border: 1px solid #C4C4C4;
    border-radius: 3px;
    text-align: center;
    color: #000;
    text-decoration: none;
  }
  #header nav .hRight .cartBtn a::before {
    margin-right: 10px;
    content: '\f07a';
    font-family: 'fontawesome';
    color: #791500;
  }
  #header nav .hRight .cartBtn .num {
    margin: -10px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #791500;
    color: #fff;
    display: block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    text-align: center;
  }
  #header nav .hRight .menuBtn {
    display: none;
  }
  #side {
    margin-bottom: 100px;
    width: 180px;
  }
  #side .sideInner .itemSearch {
    position: relative;
    margin-bottom: 30px;
  }
  #side .sideInner .itemSearch input {
    padding: 10px 10px 10px 30px;
    border: none;
    background-color: #EDEDED;
    width: 100%;
    height: 32px;
    border-radius: 3px;
  }
  #side .sideInner .itemSearch::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 18px;
    margin: auto 10px;
    content: '\f002';
    font-family: 'fontawesome';
    color: #a2a2a2;
  }
  #side .sideInner .sideBox dt {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
  }
  #side .sideInner .sideBox dt .rightTextLink a {
    font-size: 1.3rem;
    color: #000;
  }
  #side .sideInner .sideBox dd {
    margin: 0 0 20px 0;
  }
  #side .sideInner .sideBox dd a {
      margin-left: 15px;
      position: relative;
    color: #000;
    text-decoration: none;
    display: inline-block;
    overflow: visible;
  }
  #side .sideInner .sideBox dd a::before {
    position: absolute;
      left: -12px;
      top: 0;
    content: '\f0da';
    font-family: 'fontawesome';
    color: #791500;
  }
  #side .sideInner .sideBox dd a::after {
      display: block;
      position: absolute;
      bottom: 0;
    content: '';
    background-color: #791500;
      margin-bottom: -10px;
    height: 2px;
    width: 100%;
      visibility: hidden;
      opacity: 0;
      transition: 0.2s ease-in-out;
  }
    #side .sideInner .sideBox dd a:hover::after {
        visibility: visible;
        opacity: 1;
        margin-bottom: -7px;
    }
  #side .sideInner .prBorder {
    margin-bottom: 15px;
    position: relative;
    display: block;
    text-align: center;
    color: #ddd;
    font-size: 1.1rem;
  }
    
  #side .sideInner .prBorder::before, #side .sideInner .prBorder::after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: '';
    background-color: #ddd;
    width: 40%;
    height: 1px;
  }
  #side .sideInner .prBorder::before {
    left: 0;
  }
  #side .sideInner .prBorder::after {
    right: 0;
  }
  #side .sideInner .gnav {
    display: none !important;
  }
  #main {
    display: flex;
    justify-content: space-between;
  }
  #contents {
    width: 860px;
  }
}

/*---------------------------------------------
header
---------------------------------------------*/
#footer {
  background-color: #F4F2F1;
}

#footer .fTop {
  padding: 30px 10px;
}

#footer .fTop .fLogo {
  margin-bottom: 20px;
}

#footer .fTop .fContents .fLeft .addr {
  margin-bottom: 10px;
}

#footer .fTop .fContents .fLeft dl dt {
  margin-top: 3px;
}

#footer .fTop .fContents .fLeft dl dd {
  margin-bottom: 5px;
  margin-left: 20px;
}

#footer .fTop .fContents .fLeft dl dd .sptel {
  font-size: 2.0rem;
  color: #791500;
  font-weight: bold;
}

#footer .fTop .fContents .fLeft dl dd .sptel a {
  font-size: 2.0rem;
  color: #791500;
  font-weight: bold;
}

#footer .fTop .fContents .fLeft dl dd.faxNum {
  font-size: 2.0rem;
  font-weight: bold;
}

#footer .fTop .fContents .fnav ul li a {
  text-decoration: none;
  color: #000;
}

#footer .fTop .fContents .fnav ul li a::before {
  margin-right: 15px;
  content: '\f0da';
  font-family: 'fontawesome';
  color: #791500;
}

#footer .copy {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  #footer .fTop .fContents .fLeft {
    padding-bottom: 10px;
    border-bottom: 1px solid #707070;
  }
  #footer .fTop .fContents .fLeft dl {
    margin-bottom: 10px;
    display: flex;
  }
  #footer .fTop .fContents .fnav {
    padding-top: 10px;
  }
  #footer .fTop .fContents .fnav ul li {
    margin-top: 17px;
  }
  #footer .copy {
    padding: 15px 0;
  }
}

@media all and (min-width: 768px) {
  #footer .fTop {
    padding: 50px 0;
  }
  #footer .fTop .fLogo {
    margin-bottom: 8px;
  }
  #footer .fTop .fContents {
    display: flex;
  }
  #footer .fTop .fContents .fLeft,
  #footer .fTop .fContents .fnav {
    width: 50%;
  }
  #footer .fTop .fContents .fLeft .addr {
    margin-bottom: 10px;
  }
  #footer .fTop .fContents .fLeft dl {
    display: flex;
  }
  #footer .fTop .fContents .fLeft dl dd {
    margin-bottom: 5px;
  }
  #footer .fTop .fContents .fnav {
    display: flex;
    margin-left: 30px;
    border-left: 1px solid #707070;
  }
  #footer .fTop .fContents .fnav ul {
    padding-top: 5px;
    margin-left: 70px;
  }
  #footer .fTop .fContents .fnav ul li:nth-of-type(n+2) {
    margin-top: 17px;
  }
  #footer .copy {
    height: 50px;
    line-height: 50px;
  }
}

/*---------------------------------------------
Pagetop Btn
---------------------------------------------*/
#pagetop {
  margin: 10px;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9;
  cursor: pointer;
  transition: 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

#pagetop::before {
  content: '';
  width: 40px;
  height: 40px;
  background: #000;
  display: block;
  transition: 0.2s ease-in-out;
  border-radius: 3px;
}

#pagetop::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  margin: 17px 15px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

#pagetop.show {
  opacity: 1;
  visibility: visible;
}

@media all and (min-width: 768px) {
  #pagetop {
    margin: 20px;
  }
  #pagetop::before {
    width: 50px;
    height: 50px;
  }
  #pagetop::after {
    margin: 23px 20px;
    width: 10px;
    height: 10px;
  }
  #pagetop:hover::before {
    background: #791500;
  }
}

/*---------------------------------------------
Display setting
---------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sptel a {
    color: #791500;
  }
}

@media all and (min-width: 768px) {
  .sp {
    display: none;
  }
}

#wpadminbar {
  position: fixed !important;
}

/* ----------------------------------------

clearfix

---------------------------------------- */
/* Modern Browsers
------------------------------- */
.searchTable>div:after,
.cf:after,
.fll:after,
.flr:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: " ";
  line-height: 0;
}

/* Legacy IE
------------------------------- */
.searchTable>div,
.cf,
.fll,
.flr {
  *zoom: 1;
}


/* ----------------------------------------

20190411 谷口追加

---------------------------------------- */
/*
a img{
  transition: .2s ease-in-out;
}
*/

a:hover img{
  opacity: .7;
}
.slideMv a:hover img{
  opacity: 1;
}
.slideMv a:hover figure.image img{
  opacity: .7;
}

/* ----------------------------------------

20200728 谷口追加

---------------------------------------- */
.contentsInner .disc a{
  color: #000;
}
.contentsInner .disc a:hover{
  text-decoration: none;
}