@charset "UTF-8";
.spi {
  display: none;
}

@media screen and (max-width: 768px) {
  .spi {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .pci {
    display: none;
  }
}
/*=================
Web Font
=================*/
* {
  -webkit-transition-property: height, width, top, left, color, background;
  transition-property: height, width, top, left, color, background;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

/*=================
Common Item
=================*/
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif !important;
  -webkit-font-feature-settings: palt;
          font-feature-settings: palt;
  margin: 0;
  padding: 0;
  font-size: 1.6rem !important;
}
@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
    font-size: 1.5rem !important;
  }
}

header {
  text-align: center;
}
header .logo {
  width: 160px;
  margin: 0 auto;
  padding: 0.7em 0 0.5em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  header .logo {
    width: 120px;
  }
}
header .logo img {
  width: 100%;
  height: auto;
}

/*---------
 Botton
---------*/
.btn-def {
  max-width: 240px;
  margin: 1em auto;
}

a.btn_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: #000000;
  border: 1px solid #000000;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 45px 0 25px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  a.btn_01 {
    width: 100%;
  }
}

a.btn_01:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}

a.btn_01:hover {
  background: #fff;
  color: #000000;
}

a.btn_01:hover:before {
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
}

/*---------
 Bottom Fixid
---------*/
.btm-nav {
  position: fixed;
  z-index: 99999 !important;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .btm-nav {
    width: 92%;
  }
}
.btm-nav.scroll-in {
  visibility: visible;
}
.btm-nav .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -6px;
}
.btm-nav img {
  width: 100%;
  height: auto;
}

.site-footer {
  color: #fff;
  font-size: 1.6rem;
  background: #2e2928;
  text-align: center;
  margin-top: 80px;
  padding: 10px 0;
}

.site-footer__copyright {
  font-size: 1.6rem;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
}

/*=================
Utility Class
=================*/
.u-sp-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-br {
    display: block;
  }
}

.u-pc-br {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-pc-br {
    display: none;
  }
}

.u-ex {
  margin: 0.5em 0;
  line-height: 2;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .u-ex {
    font-size: 1.3rem;
  }
}

.u-ex-red, .u-ex-red__bold {
  color: #FF0000;
  line-height: 1.6;
}
.u-ex-red__bold {
  font-weight: bold;
}

.u-ex-center {
  text-align: center !important;
}

ul li, ol li {
  list-style: none;
}

.u-notes {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .u-notes {
    font-size: 1rem;
  }
}
.u-notes li {
  line-height: 1.6;
  text-indent: -1em;
  padding-left: 1em;
}

ol.notes {
  margin-top: 1em;
}
ol.notes li {
  font-size: 14px;
  line-height: 1.6;
  text-indent: -2.5em;
  padding-left: 2.5em;
}
@media screen and (max-width: 768px) {
  ol.notes li {
    font-size: 12px;
  }
}

.u-mt05 {
  margin-top: 0.5em !important;
}

.u-mt1 {
  margin-top: 1em !important;
}

.u-mt2 {
  margin-top: 2em !important;
}

.u-mb1 {
  margin-bottom: 1em !important;
}

@media screen and (max-width: 768px) {
  .u-spmt05 {
    margin-top: 0.5em;
  }

  .u-spmt1 {
    margin-top: 1em;
  }

  .u-spmt2 {
    margin-top: 2em;
  }
}
.u-lead {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 1em 0;
}
@media screen and (max-width: 768px) {
  .u-lead {
    font-size: 1.6rem;
  }
}
.u-lead .underline {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFE2D3));
  background: linear-gradient(transparent 60%, #FFE2D3 60%);
}

/*=================
  Contents
=================*/
.main {
  width: 960px;
  margin: 0 auto 30px auto;
}
@media screen and (max-width: 768px) {
  .main {
    width: 100%;
    margin: 0 auto;
  }
}
.main img {
  width: 100%;
  line-height: auto;
}

.copy-block {
  text-align: center;
  margin: 2em 0;
}
@media screen and (max-width: 768px) {
  .copy-block {
    width: 90%;
    margin: 1em auto;
  }
}
.copy-block p {
  line-height: 1.7;
}
.copy-block .lead {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.8em;
  position: relative;
  padding: 0.3em;
  display: inline-block;
}
.copy-block .lead:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: repeating-linear-gradient(-45deg, #996541, #996541 1px, white 1px, white 4px);
}

.sec-block {
  padding: 30px 0;
}
.sec-block a:link,
.sec-block a:visited {
  color: #3291BA;
  text-decoration: underline;
}
.sec-block a:hover {
  color: #3291BA !important;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .sec-block {
    padding: 20px 0;
  }
}
.sec-block .inner-wrap {
  width: 960px;
  margin: 0 auto;
  background: #fff;
  padding: 25px 40px;
}
@media screen and (max-width: 768px) {
  .sec-block .inner-wrap {
    width: 94%;
    margin: 0 auto;
  }
}
.sec-block .inner {
  width: 750px;
  margin: 2em auto;
}
@media screen and (max-width: 768px) {
  .sec-block .inner {
    width: 90%;
    margin: 1em auto;
  }
}
.sec-block .inner-wide {
  width: 900px;
  margin: 2em auto;
}
@media screen and (max-width: 768px) {
  .sec-block .inner-wide {
    width: 95%;
    margin: 1em auto;
  }
}
.sec-block .tit-block {
  text-align: center;
  margin-bottom: 2em;
}
.sec-block .tit-block .lead {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .sec-block .tit-block .lead {
    font-size: 1.4rem;
  }
}
.sec-block .tit-block .en-tit {
  font-family: bodoni-urw, serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4.4rem;
  letter-spacing: 0.05em;
  color: #996541;
}
@media screen and (max-width: 768px) {
  .sec-block .tit-block .en-tit {
    font-size: 4rem;
  }
}
.sec-block .tit-block .en-tit:after {
  content: "";
  display: block;
  width: 1em;
  height: 5px;
  background: #996541;
  margin: 0 auto;
}
.sec-block .outline {
  margin-top: 2em;
  font-size: 0.9em;
}
.sec-block .outline .title {
  text-align: center;
  background: #000000;
  font-size: 1.2em;
  color: #ffffff;
  padding: 10px 0;
}
.sec-block .outline dl {
  padding-top: 1em;
}
.sec-block .outline dl dt {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.sec-block .outline dl dd {
  margin-bottom: 1em;
}
.sec-block .outline dl ul li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 0.2em;
}

.cp-schedule {
  text-align: center;
  padding: 0 0 0.5em 0;
  font-size: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 620px;
}
@media screen and (max-width: 768px) {
  .cp-schedule {
    width: 100%;
    display: block;
  }
}
.cp-schedule dt {
  position: relative;
  display: inline-block;
  margin: 1em 0;
  padding: 7px 15px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #30c6b0;
  color: #fff;
  border-radius: 5px 5px;
  margin-right: 25px;
}
@media screen and (max-width: 768px) {
  .cp-schedule dt {
    font-size: 11px;
    padding: 5px 10px;
    margin-right: 0;
  }
}
.cp-schedule dt:before {
  content: "";
  position: absolute;
  display: block;
  z-index: 1;
  border-style: solid;
  border-color: transparent #30c6b0;
  border-width: 8px 0 8px 8px;
  top: 50%;
  left: auto;
  right: -8px;
  margin-top: -8px;
}
@media screen and (max-width: 768px) {
  .cp-schedule dt:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    margin-left: -5px;
    border: 5px solid transparent;
    border-top: 5px solid #30c6b0;
    right: auto;
    margin-top: auto;
  }
}
.cp-schedule dt:before span {
  margin: 0;
  padding: 0;
}
.cp-schedule dd {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0;
}

.schedule-archive {
  background: #F8F8F8;
  padding: 20px 60px;
}
@media screen and (max-width: 768px) {
  .schedule-archive {
    padding: 10px 10px;
  }
}
.schedule-archive dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dashed #EBEBEB;
  margin: 0;
  padding: 5px 0;
}
.schedule-archive dl:last-child {
  border-bottom: none;
}
.schedule-archive dl dt {
  position: relative;
  display: inline-block;
  height: 44px;
  padding: 0.4rem 1rem 1rem 1.5rem;
  color: #fff;
  background: #EBEBEB;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  margin-right: 30px;
  color: #ccc;
}
@media screen and (max-width: 768px) {
  .schedule-archive dl dt {
    margin-right: 20px;
  }
}
.schedule-archive dl dt:before {
  position: absolute;
  top: calc(50% - 22px);
  right: -12px;
  width: 0;
  height: 0;
  content: "";
  border-width: 22px 0 22px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #EBEBEB;
}
@media screen and (max-width: 768px) {
  .schedule-archive dl dt {
    padding: 1.4rem 0rem 0rem 1.1em;
    font-size: 0.8rem;
    width: 37px;
  }
}
.schedule-archive dl dt span {
  font-size: 1.4em;
}
@media screen and (max-width: 768px) {
  .schedule-archive dl dt span {
    font-size: 1em;
  }
}
.schedule-archive dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #C3C3C3;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .schedule-archive dl dd {
    font-size: 1.2rem;
  }
}
.schedule-archive dl.active dt {
  position: relative;
  display: inline-block;
  height: 44px;
  padding: 0.4rem 1rem 1rem 1.5rem;
  color: #fff;
  background: #30c6b0;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .schedule-archive dl.active dt {
    margin-right: 20px;
  }
}
.schedule-archive dl.active dt:before {
  position: absolute;
  top: calc(50% - 22px);
  right: -12px;
  width: 0;
  height: 0;
  content: "";
  border-width: 22px 0 22px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #30c6b0;
}
@media screen and (max-width: 768px) {
  .schedule-archive dl.active dt {
    padding: 1.4rem 0rem 0rem 1.1em;
    font-size: 0.8rem;
    width: 37px;
  }
}
.schedule-archive dl.active dt span {
  font-size: 1.4em;
}
@media screen and (max-width: 768px) {
  .schedule-archive dl.active dt span {
    font-size: 1em;
  }
}
.schedule-archive dl.active dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2e2928;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .schedule-archive dl.active dd {
    font-size: 1.2rem;
  }
}

#coupon-area {
  background: url(../img/bg_pttn_smple.png) repeat #F2F2F2;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  #coupon-area {
    padding: 30px 0;
  }
}
#coupon-area .tit-block {
  text-align: center;
  margin-bottom: 2em;
}
#coupon-area .tit-block .lead {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  margin-bottom: 0.5em;
  -webkit-font-feature-settings: palt;
          font-feature-settings: palt;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #coupon-area .tit-block .lead {
    font-size: 1.3rem;
  }
}
#coupon-area .tit-block .headding02 {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  margin-bottom: 0.5em;
  -webkit-font-feature-settings: palt;
          font-feature-settings: palt;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  #coupon-area .tit-block .headding02 {
    font-size: 1.8rem;
  }
}
#coupon-area .tit-block .headding02 span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFE2D3));
  background: linear-gradient(transparent 60%, #FFE2D3 60%);
}

.r-coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.r-coupon img {
  width: 33.33%;
  height: auto;
}

.coupon {
  width: 370px;
  /*width: 616px;*/
  margin: 10px auto;
}
@media screen and (max-width: 768px) {
  .coupon {
    width: 100%;
  }
}

.coupon-outline {
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .coupon-outline {
    margin-top: 1em;
  }
}
.coupon-outline dl {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.5em;
}
.coupon-outline dl:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .coupon-outline dl {
    display: block;
    font-size: 1.2rem;
  }
}
.coupon-outline dl dt {
  width: 18%;
}
@media screen and (max-width: 768px) {
  .coupon-outline dl dt {
    width: 100%;
    margin-bottom: 0.5em;
  }
}
.coupon-outline dl dd {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .coupon-outline dl dd {
    width: 100%;
  }
}
.coupon-outline dl .notes li {
  padding-left: 1em;
  text-indent: -1em;
}
.coupon-outline dl ol li {
  padding-left: 1em;
  text-indent: -1em;
}
.coupon-outline .attn dt, .coupon-outline .attn dd {
  color: #FF0000;
}

#limited-area {
  background: #FFF0F0;
  position: relative;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  #limited-area {
    padding: 30px 0;
  }
}
#limited-area:before {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  background: url("../img/common/tape_txt_top.png") repeat-x center center #E3538A;
  background-size: 200px auto;
  width: 100%;
  height: 40px;
}
@media screen and (max-width: 768px) {
  #limited-area:before {
    background-size: 150px auto;
    height: 28px;
  }
}
#limited-area:after {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  background: url("../img/common/tape_txt_btm.png") repeat-x center center #E3538A;
  background-size: 200px auto;
  width: 100%;
  height: 40px;
}
@media screen and (max-width: 768px) {
  #limited-area:after {
    background-size: 150px auto;
    height: 28px;
  }
}
#limited-area .tit-block {
  text-align: center;
  margin-bottom: 2em;
}
#limited-area .tit-block .lead {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  #limited-area .tit-block .lead {
    font-size: 1.4rem;
  }
}
#limited-area .tit-block .en-tit {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  font-size: 4.4rem;
  letter-spacing: 0.05em;
  color: #E3538A;
}
@media screen and (max-width: 768px) {
  #limited-area .tit-block .en-tit {
    font-size: 3.5rem;
  }
}
#limited-area .tit-block .en-tit:after {
  content: "";
  display: block;
  width: 1em;
  height: 5px;
  background: #E3538A;
  margin: 0 auto;
}
#limited-area .cp-schedule {
  text-align: center;
  padding: 0 0 0.5em 0;
  font-size: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 510px;
}
@media screen and (max-width: 768px) {
  #limited-area .cp-schedule {
    width: 100%;
    display: block;
  }
}
#limited-area .cp-schedule dt {
  position: relative;
  display: inline-block;
  margin: 1em 0;
  padding: 7px 15px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #E3538A;
  color: #fff;
  border-radius: 5px 5px;
  margin-right: 25px;
}
@media screen and (max-width: 768px) {
  #limited-area .cp-schedule dt {
    font-size: 11px;
    padding: 5px 10px;
    margin-right: 0;
  }
}
#limited-area .cp-schedule dt:before {
  content: "";
  position: absolute;
  display: block;
  z-index: 1;
  border-style: solid;
  border-color: transparent #E3538A;
  border-width: 8px 0 8px 8px;
  top: 50%;
  left: auto;
  right: -8px;
  margin-top: -8px;
}
@media screen and (max-width: 768px) {
  #limited-area .cp-schedule dt:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    margin-left: -5px;
    border: 5px solid transparent;
    border-top: 5px solid #E3538A;
    right: auto;
    margin-top: auto;
  }
}
#limited-area .cp-schedule dt:before span {
  margin: 0;
  padding: 0;
}
#limited-area .cp-schedule dd {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0;
}

#other-cp {
  background: url(../img/bg_pttn_smple.png) repeat #F2F2F2;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  #other-cp {
    padding: 20px 0;
  }
}
#other-cp .inner {
  background: #fff;
  width: 800px;
  margin: 0 auto;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  #other-cp .inner {
    width: 90%;
    margin: 0 auto;
  }
}
#other-cp .inner .tit-block {
  text-align: center;
}
#other-cp .inner .tit-block .lead {
  font-size: 1.1em;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  margin-bottom: 1em;
  -webkit-font-feature-settings: palt;
          font-feature-settings: palt;
}
#other-cp .inner .tit-block .en-tit {
  color: #2e2928;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 0;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 768px) {
  #other-cp .inner .tit-block .en-tit {
    font-size: 32px;
  }
}
#other-cp .inner .tit-block .jp-tit {
  font-size: 1em;
  font-weight: bold;
  color: #2e2928;
  display: inline-block;
  padding: 1px 5px;
}
#other-cp ul {
  margin-top: 1em;
}
#other-cp ul li {
  width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #other-cp ul li {
    width: 85%;
  }
}
#other-cp ul li figure {
  margin-bottom: 0.5em;
}
#other-cp ul li figure img {
  width: 100%;
  height: auto;
}
#other-cp ul li p {
  text-align: center;
  font-size: 1.4rem;
}



#instagram-cp {
  background-color: #EED9C8;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  #instagram-cp {
    padding: 20px 0;
  }
}
#instagram-cp .inner {
  background: #fff;
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 40px;
  border-radius:50px;
}
@media screen and (max-width: 768px) {
  #instagram-cp .inner {
    width: 90%;
    margin: 0 auto;
  	padding: 30px 25px;
  }
}
#instagram-cp .inner .tit-block {
  text-align: center;
}

#instagram-cp .inner .tit-block .jp-tit {
  color: #FFF;
  background-color:#E68E21 ;
  font-size: 1.5em;
  font-weight: bold;
  display: inline-block;
  padding: 10px 30px;
  border-radius:50px;
}

@media screen and (max-width: 768px) {
	#instagram-cp .inner .tit-block .jp-tit {
	  width: 100%;
	}
}
#instagram-cp .inner .tit-block p {
  font-size: 1.3em;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  margin-top: 1em;
  margin-bottom: 1em;
  text-align:center;
}
@media screen and (max-width: 768px) {
	#instagram-cp .inner .tit-block p {
	  font-size: 1.2em;
	}
}

#instagram-cp .inner p {
  font-size: 1.1em;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 600;
  line-height:2em;
  margin-top: 1em;
  margin-bottom: 1em;
  text-align:center;
}

@media screen and (max-width: 768px) {
	#instagram-cp .inner p {
	  line-height:1.5em;
	  text-align:left;
	}
}
#instagram-cp .inner p.follow {
  font-size: 1.6em;
  font-family: sans-serif;
  font-weight: bold;
  line-height:2em;
  margin-top: 1em;
  margin-bottom: 1em;
}
#instagram-cp .inner p.follow img {
  width:10%;
  max-width:88px;
}
@media screen and (max-width: 768px) {
	#instagram-cp .inner p.follow img {
	  width:20%;
	  max-width:88px;
	}
}

#instagram-cp .inner .btn-def {
    max-width: 300px;
}
#instagram-cp .inner a.btn_01 {
  font-size: 1.1em;
    font-weight: bold;
    text-align:center;
}


#instagram-feed {
  background-color: #FFF;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  #instagram-feed {
    padding: 20px 0;
  }
}
#instagram-feed .inner {
  background: #fff;
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 40px;
}
@media screen and (max-width: 768px) {
  #instagram-feed .inner {
    width: 90%;
    margin: 0 auto;
  	padding: 30px 25px;
  }
}
#instagram-feed .inner .tit-block {
  text-align: center;
}

#instagram-feed .inner .tit-block .en-tit {
	font-family:"Montserrat",san-selif;
  font-size: 1.7em;
  font-weight: bold;
  display: inline-block;
}
#instagram-feed .inner .tit-block .en-tit img {
  width: 30px;
}

#instagram-feed .inner .tit-block p {
  font-size: 1.3em;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  margin-top: 1em;
  margin-bottom: 1em;
  text-align:center;
}
@media screen and (max-width: 768px) {
	#instagram-feed .inner .tit-block p {
	  font-size: 1.2em;
	}
}

#instagram-feed .inner p {
  font-size: 1.1em;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 600;
  line-height:2em;
  margin-top: 1em;
  margin-bottom: 1em;
  text-align:center;
}

@media screen and (max-width: 768px) {
	#instagram-feed .inner p {
	  line-height:1.5em;
	  text-align:left;
	}
}





.featur p {
  font-size: 16px !important;
}
.featur .title {
  font-size: 2rem !important;
  text-align: center;
}

.item-container .label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.item-container .label-wrap .icon, .item-container .label-wrap .icon__free, .item-container .label-wrap .icon__off {
  border-radius: 4px;
  display: block;
  padding: 2px 8px;
  margin-right: 5px;
  color: #fff;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .item-container .label-wrap .icon, .item-container .label-wrap .icon__free, .item-container .label-wrap .icon__off {
    border-radius: 2px;
    padding: 2px 4px;
    font-size: 1rem;
  }
}
.item-container .label-wrap .icon__off {
  background: #FF0000;
}
.item-container .label-wrap .icon__free {
  background: #6FAFDD;
}
.item-container .item a {
  text-decoration: none;
}
.item-container .item a .lead {
  font-size: 1.6rem;
  margin-bottom: 40px;
  color: #2e2928;
}
@media screen and (max-width: 768px) {
  .item-container .item a .lead {
    font-size: 1.3rem;
    margin-bottom: 0px;
  }
}
.item-container .item a .item-name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1em;
  text-decoration: none;
  color: #2e2928;
}
@media screen and (max-width: 768px) {
  .item-container .item a .item-name {
    margin-bottom: 0.5em;
  }
}
.item-container .item a figure img {
  width: 100%;
  height: auto;
}
.item-container .item a .item-price {
  color: #FF0000;
  font-size: 2.2rem;
  font-weight: bold;
  font-family: roboto-condensed, sans-serif;
}
@media screen and (max-width: 768px) {
  .item-container .item a .item-price {
    font-size: 1.4rem;
  }
}
.item-container .item a .item-price span {
  font-size: 0.6em;
}
.item-container .item-col1 .label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .item-container .item-col1 .label-wrap {
    margin-top: 0;
  }
}
.item-container .item-col1 .label-wrap .icon, .item-container .item-col1 .label-wrap .icon__off, .item-container .item-col1 .label-wrap .icon__free {
  border-radius: 4px;
  display: block;
  padding: 2px 8px;
  margin-right: 5px;
  color: #fff;
  font-size: 1.4rem;
}
.item-container .item-col1 .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .item-container .item-col1 .item a {
    display: block;
    width: 100%;
    margin: 0 auto 0 auto;
  }
}
.item-container .item-col1 .item a figure {
  width: 46.5%;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .item-container .item-col1 .item a figure {
    width: 100%;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .item-container .item-col1 .item a .lead {
    margin-bottom: 10px;
  }
}
.item-container .item-col1 .item a .detail {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .item-container .item-col1 .item a .detail {
    width: 100%;
  }
}
.item-container .item-col1 .item a .detail .item-price {
  font-size: 2.2rem;
}
.item-container .item-col1 .item a .detail .item-price span {
  font-size: 0.6em;
}
.item-container .item-col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.item-container .item-col2 .item a {
  width: 48%;
  margin-bottom: 1.8em;
}
.item-container .item-col2 .item a figure {
  width: 100%;
}
.item-container .item-col2 .item a .detail {
  width: 100%;
}
.item-container .item-col2 .item a .detail .item-name {
  font-size: 2rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .item-container .item-col2 .item a .detail .item-name {
    font-size: 1.25rem;
  }
}
.item-container .item-col3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.item-container .item-col3:after {
  content: "";
  width: 31%;
  display: block;
}
.item-container .item-col3 .item {
  width: 31%;
  margin-bottom: 1.8em;
}
.item-container .item-col3 .item figure {
  width: 100%;
}
.item-container .item-col3 .item .detail {
  width: 100%;
}
.item-container .item-col3 .item .detail .item-price {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .item-container .item-col3 .item .detail .item-price {
    font-size: 1.4rem;
  }
}
.item-container .item-col3 .item .item-name {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .item-container .item-col3__spcol2 .item {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .item-container .item-col3__spcol2 .item-name {
    font-size: 1.2rem;
  }
}

.fix-btmnav {
  position: fixed;
  z-index: 99999 !important;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: bottom 1s;
  transition: bottom 1s;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .fix-btmnav {
    left: 0;
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fix-btmnav.scroll-in {
  visibility: visible;
}
.fix-btmnav__col2 ul li {
  width: 50%;
}
.fix-btmnav__col3 ul li {
  width: 33%;
}
.fix-btmnav__col4 ul li {
  width: 25%;
}
.fix-btmnav ul {
  width: 750px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fix-btmnav ul {
    width: 100%;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -ms-flex-pack: space-between;
  }
}
.fix-btmnav ul a {
  display: block;
  border: 1px solid #fff;
  color: #fff;
  background: #996541;
  border-radius: 10px 10px 0 0;
  padding: 10px 0 0 0;
  font-size: 2.2rem;
  line-height: 1.2;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .fix-btmnav ul a {
    height: 70px;
    font-size: 1.2rem;
  }
}
.fix-btmnav ul a span {
  display: block;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .fix-btmnav ul a span {
    font-size: 1.5rem;
  }
}
.fix-btmnav ul .line-1 a {
  padding-top: 1.3em;
}
@media screen and (max-width: 768px) {
  .fix-btmnav ul .line-1 a {
    padding-top: 1.6em;
  }
}
.fix-btmnav ul .line-2 a {
  padding-top: 0.7em;
}
@media screen and (max-width: 768px) {
  .fix-btmnav ul .line-2 a {
    padding-top: 1em;
  }
}
.fix-btmnav ul .line-3 a {
  padding-top: 0.3em;
}
@media screen and (max-width: 768px) {
  .fix-btmnav ul .line-3 a {
    padding-top: 0.9em;
  }
}

.fix-btmnav ul li.sub a:nth-child(1) {
  background: #30c6b0;
}
@media screen and (max-width: 768px) {
  .fix-btmnav ul li.sub a:nth-child(1) {
    height: 70px;
    font-size: 1.6rem;
  }
}

.block-tit {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px 0;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .block-tit {
    font-size: 1.8rem;
    margin: 25px 0 15px 0;
  }
}
.block-tit .no {
  font-family: bodoni-urw, serif;
  font-weight: 700;
  font-style: normal;
  font-size: 8rem;
  color: #996541;
}
@media screen and (max-width: 768px) {
  .block-tit .no {
    font-size: 5.5rem;
  }
}
.block-tit .block-lead {
  font-size: 1.4rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .block-tit .block-lead {
    ont-size: 1.2rem;
  }
}
.block-tit .block-name {
  font-family: fot-tsukuardgothic-std, sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .block-tit .block-name {
    font-size: 2rem;
  }
}

.cat-tit {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin: 40px 0 30px 0;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .cat-tit {
    font-size: 1.8rem;
    margin: 25px 0 15px 0;
  }
}
.cat-tit span {
  margin-top: 0.5em;
  display: block;
  font-size: 1.4rem;
  color: #996541;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .cat-tit span {
    font-size: 1.2rem;
  }
}

.sub-cat {
  text-align: center;
  font-weight: bold;
  margin: 50px 0 20px 0;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .sub-cat {
    margin: 30px 0 10px 0;
    font-size: 1.7rem;
  }
}

#js_tabbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  margin: 40px 0 20px 0;
}
@media screen and (max-width: 768px) {
  #js_tabbtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -ms-flex-pack: space-between;
    width: 100%;
    margin: 20px 0 10px 0;
  }
}
#js_tabbtn a.select_btn {
  display: block;
  width: 240px;
  text-align: center;
  margin-bottom: 10px !important;
  display: block;
  border: 2px solid #996541;
  border-radius: 30px 30px;
  padding: 5px 20px;
  text-decoration: none;
  margin: 0 5px;
  color: #996541;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
#js_tabbtn a.select_btn:hover, #js_tabbtn a.select_btn.active {
  background: #996541;
  color: #ffffff !important;
}
@media screen and (max-width: 768px) {
  #js_tabbtn a.select_btn {
    width: 49%;
    margin-bottom: 5px !important;
    margin: 0 0px;
    font-size: 1.4rem;
    padding: 5px 0px;
  }
}
@media screen and (max-width: 480px) {
  #js_tabbtn a.select_btn {
    font-size: 1.3rem;
  }
}

.js_content {
  display: none;
}

.js_content.active {
  display: block;
}

.cat-menu {
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
}
.cat-menu li a {
  display: block;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  background: #996541;
  color: #ffffff !important;
  height: 70px;
  width: 250px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none !important;
  margin: 0 10px 10px 0;
}
@media screen and (max-width: 768px) {
  .cat-menu li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    height: 50px;
  }
}
.cat-menu li a:hover {
  background: #ffffff;
  border: 2px solid #996541;
  color: #996541 !important;
}

.btn-cat_back a {
  display: block;
  border-radius: 10px;
  background: #eeeeee;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  text-decoration: none !important;
  color: #666 !important;
}
.btn-cat_back a:hover {
  color: #666 !important;
  background: #dadada;
}

#sec01 {
  background: #DCC9B6;
}
#sec01 .inner-wrap {
  background: #fff;
  color: #2e2928;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #sec01 .inner-wrap {
    padding: 5px 15px 20px 15px;
    margin-bottom: 30px;
  }
}

.voice-module {
  margin-top: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
}
.voice-module figure {
  width: 80px;
}
@media screen and (max-width: 768px) {
  .voice-module figure {
    width: 150px;
  }
}
.voice-module figure img {
  width: 100%;
  height: auto;
}
.voice-module dl {
  margin-left: 10px;
}
.voice-module dl dt {
  font-size: 1.4rem;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .voice-module dl dt {
    margin-bottom: 0px;
  }
}
.voice-module dl dd {
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .voice-module dl dd {
    font-size: 1.1rem;
  }
}

.item-col3__spcol2 .voice-module {
  margin-top: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}
@media screen and (max-width: 768px) {
  .item-col3__spcol2 .voice-module {
    display: block;
  }
}
.item-col3__spcol2 .voice-module figure {
  width: 80px;
}
@media screen and (max-width: 768px) {
  .item-col3__spcol2 .voice-module figure {
    width: 50px !important;
    margin: 0 auto 5px auto;
  }
}
.item-col3__spcol2 .voice-module figure img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .item-col3__spcol2 .voice-module dt {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .item-col3__spcol2 .voice-module dl {
    margin-left: 0 !important;
  }
}

#bnr-area {
  width: 830px;
}

#bnr-area > div {
  margin-bottom: 2%;
}

@media screen and (max-width: 768px) {
  #bnr-area {
    width: 80%;
  }
}
.block-name_s {
  font-size: 2rem;
}