@charset "UTF-8";
/* CSS Document */
/* ---- reset ----- */
.sp {
  display: block;
}
.pc {
  display: none;
}
body {
  font-family: "Shippori Mincho B1", serif;
}
img {
  width: 100%;
}
.header {
  background: #360e08;
}
.header .logo2 {
  max-width: 80px;
  display: block;
  margin: 0px auto;
  width: 20%;
}
.kv_img {
  position: relative;
}
.kv_img::before {
  content: '';
  position: absolute;
  background-image: url("../img/kv_deco_sp.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
}
.content-main {
  position: relative;
}
.content-main::after {
  content: '';
  position: absolute;
  background-image: url("../img/bg_deco.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 200px;
  z-index: -1;
}
.goodslineup-block {
  position: relative;
}
.goodslineup-block::before {
  content: '';
  position: absolute;
  background-image: url("../img/flower_1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
  top: -100px;
  width: 60px;
  height: 90px;
}
.goodslineup-block::after {
  content: '';
  position: absolute;
  background-image: url("../img/bg_deco.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  right: 0;
  top: 0;
  width: 200px;
  height: 200px;
  z-index: -1;
}
.goods_head h2 {
  text-align: center;
  border: solid 1px #fff;
  width: 70%;
  padding: 0.5em 1.3em;
  font-size: 2em;
  margin: 1em auto 2em;
  max-width: 300px;
}
.goods_img {
  margin-bottom: 1.5em;
}
.goods_text h3 {
  font-size: 1.7em;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.goods_price p {
  font-size: 1.5em;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.goods_price p span {
  font-size: .6em;
  font-weight: lighter;
}
.goods_spec p {
  font-size: .8em;
  letter-spacing: 0.01em;
  line-height: 2;
}
.info_wrap {
  position: relative;
}
.info_wrap::before {
  content: '';
  position: absolute;
  background-image: url("../img/flower_2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  right: 0;
  top: -100px;
  width: 80px;
  height: 75px;
}
.info_wrap::after {
  content: '';
  position: absolute;
  background-image: url("../img/bg_deco.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  width: 200px;
  height: 200px;
  z-index: -1;
}
.info_head h2 {
  text-align: center;
  border: solid 1px #fff;
  width: 70%;
  padding: 0.5em 1.3em;
  font-size: 2em;
  margin: 0 auto 2em;
  max-width: 300px;
}
.information {
  background-color: rgba(255, 255, 255, 1);
  padding: 2em 1em;
}
.information ul li {
  color: #1c1c1c;
}
.information ul li a {
  transition: all 0.5s;
}
.information ul li a:hover {
  opacity: .6;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .kv_img::before {
    background-image: url("../img/kv_deco_pc.png");
  }
  .goodslineup-block::before {
    top: -50px;
    width: 130px;
    height: 200px;
  }
  .goodslineup-block::after {
    width: 400px;
    height: 400px;
  }
  .information {
    padding: 2em;
  }
  .info_wrap::before {
    top: -80px;
    width: 130px;
    height: 120px;
  }
  .info_wrap::after {
    top: 200px;
    width: 400px;
    height: 400px;
  }
  .content-main::after {
    width: 400px;
    height: 400px;
    bottom: -200px;
  }
}
.fade-in {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(50px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.fade-in.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: .3s; /* フェード開始を0.3秒遅らせる */
}
.fade-in.is-inview.fade-in_after, .fade-in.is-inview.fade-in_after2 {
  transition-delay: 1s;
}
.fade-in.is-inview.fade-in_after2 {
  transition-delay: 1.5s;
}
/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(54, 14, 8, 0.8);
}
/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  background-color: #fff;
  width: 100%;
  max-width: 500px;
  padding: 20px;
}
/* モーダルを閉じるボタン */
.modal__close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  border: none;
  cursor: pointer;
  z-index: 10;
  font-size: 2.5em;
  color: #707070;
}
/* Swiperの矢印部分 */
/*@media (max-width: 768px) {
  .modal .swiper-button-next,
  .modal .swiper-button-prev {
    display: none;
  }
}*/
.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 0 !important;
  left: auto;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 0 !important;
  right: auto;
}