@charset "UTF-8";
.only_pc {
  display: inline-block;
}

.only_sp {
  display: none;
}

.media_pc {
  display: inline-block;
}

.media_sp {
  display: none;
}

/*スマホ*/
@media screen and (max-width: 896px) {
  .only_pc {
    display: none;
  }

  .only_sp {
    display: inline-block;
  }

  .media_pc {
    display: none;
  }

  .media_sp {
    display: inline-block;
  }
}
body {
  width: 100%;
}

.wrapper {
  background: #fff;
}

.area-container {
  background: #fff;
  padding-bottom: 50px;
}

/*
    .area-wrapper
=========================================*/
.area-wrapper {
  line-height: 2;
  text-align: center;
  color: #000;
  font-size: 14px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
}
.area-wrapper a {
  color: #000;
}
.area-wrapper .mainvisual img {
  width: 100%;
}
.area-wrapper .bodyWrap {
  position: relative;
  z-index: auto;
}
@media screen and (max-width: 896px) {
  .area-wrapper {
    font-size: 12px;
  }
}

a:focus,
*:focus {
  outline: none;
}

/*
    area-header
=========================================*/
.area-header .header-text {
  font-size: 15px;
  font-weight: normal;
  margin: 50px 0;
}
.area-header .area-logo {
  width: 800px;
  margin: 0 auto 100px;
  padding: 70px 0;
  background: #f7f5e2;
}
.area-header .area-logo h2 {
  width: 230px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 896px) {
  .area-header .header-text {
    text-align: left;
    font-size: 13px;
    font-weight: normal;
    margin: 20px;
  }
  .area-header .header-text br {
    display: none;
  }
  .area-header .area-logo {
    width: auto;
    margin: 0 auto 50px;
    padding: 30px 40px;
  }
  .area-header .area-logo h2 {
    width: 150px;
    margin: 0 auto 20px;
  }
  .area-header .area-logo p {
    text-align: left;
  }
  .area-header .area-logo p br {
    display: none;
  }
}

/* これが無いとモーダルウィンドウ表示の際に余白が出る */
* {
  margin: 0;
  padding: 0;
}

/* モーダル全体(背景＋本体) */
.pop-modal {
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 9999;
}

/* モーダル本体 */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: scroll;
  /* はみ出た部分はスクロールさせる */
  height: 100%;
  /* これが無いと「overflow:scroll」が利かない */
  width: 100%;
  /* これが無いと「overflow:scroll」が利かない */
  background: #fff;
  padding: 0;
  overflow-y: scroll;
  /* IE, Edge 対応 */
  -ms-overflow-style: none;
  /* Firefox 対応 */
  scrollbar-width: none;
}
.modal-content::-webkit-scrollbar {
  display: none;
}
.modal-content .slider {
  width: 100%;
  position: relative;
}
.modal-content .slider li {
  margin: 0;
  padding: 0;
}
.modal-content .slider .slick-arrow {
  display: block !important;
}
.modal-content .slider .prev-arrow {
  position: absolute;
  top: 44%;
  left: 17vw;
  z-index: 2;
}
.modal-content .slider .next-arrow {
  position: absolute;
  top: 44%;
  right: 17vw;
  z-index: 2;
}
.modal-content .thumb {
  width: 200px;
  margin: 20px auto 0;
}
.modal-content .thumb li {
  line-height: 27px;
  width: auto;
  height: 30px;
  color: #015734;
  display: block;
  margin: 0 5px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
.modal-content .thumb li:focus {
  outline: none;
}
.modal-content .thumb .slick-current {
  background: #015734;
  color: #fff;
  border-radius: 50%;
}
.modal-content.short .thumb {
  left: 40px;
}
.modal-content .product-info {
  margin: 0;
}
.modal-content .product-info a {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.modal-content .product-info a .info-image {
  width: 240px;
  margin: 0 40px 0 0;
}
.modal-content .product-info a .info-text {
  text-align: center;
}
.modal-content .product-info a .info-text h3 {
  font-weight: 500;
  font-size: 15px;
}
.modal-content .btn-buy {
  font-weight: 500;
  line-height: 1;
  width: 240px;
  margin: 20px auto 0;
  padding: 20px 0;
  background: #015734;
  color: #fff;
  position: relative;
}
.modal-content .btn-buy a {
  display: block;
  width: 100%;
  padding: 0;
  color: #fff;
  text-decoration: none;
}
.modal-content .arrow01 {
  display: inline-block;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 896px) {
  .modal-content .slider .prev-arrow {
    width: 12px;
    left: 20px;
  }
  .modal-content .slider .next-arrow {
    width: 12px;
    right: 20px;
  }
  .modal-content .product-info {
    margin: 0 30px 40px;
  }
  .modal-content .product-info a {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }
  .modal-content .product-info a .info-image {
    width: 40%;
    margin: 0 5% 0 0;
  }
  .modal-content .product-info a .info-text {
    width: 55%;
    text-align: left;
  }
  .modal-content .product-info a .info-text h3 {
    font-size: 12px;
    padding: 0;
  }
  .modal-content .btn-buy {
    width: 85%;
    margin: 0 auto 60px;
    padding: 20px 0;
  }
  .modal-content .arrow01 {
    display: inline-block;
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.modal-content .js-modal-close {
  display: block;
  padding: 0 0 100px;
  text-decoration: none;
}
@media screen and (max-width: 896px) {
  .modal-content .js-modal-close {
    padding: 0 0 160px;
  }
}
.modal-content .batsu {
  display: inline-block;
  position: relative;
  width: 15px;
  height: 15px;
  left: -3px;
  top: 2px;
}
.modal-content .batsu::before,
.modal-content .batsu::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  /* 棒の幅（太さ） */
  height: 15px;
  /* 棒の高さ */
  background: #000;
}
.modal-content .batsu::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-content .batsu::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.pop-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

/*
    area-body
=========================================*/
.area-body {
  padding: 0;
  color: #000;
  margin: 0;
  font-weight: normal;
}
.area-body .list {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 15px;
}
.area-body .list li {
  cursor: pointer;
  width: calc(33.3333% - 30px);
  margin: 15px;
}
.area-body .list li .list-text {
  text-align: left;
  font-size: 13px;
}
.area-body .list li a {
  display: block;
  position: relative;
  overflow: hidden;
}
.area-body .list li a i {
  width: 24px;
  position: absolute;
  right: 10px;
  bottom: 8px;
}
.area-body .list li a .hover-mask {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 30px;
}
.area-body .list li a .hover-mask div {
  font-weight: 500;
  width: 100%;
}
.area-body .list li a:hover .hover-mask {
  opacity: 1;
  transition: all 0.6s ease;
}
.area-body .btn-all {
  margin: 100px 0;
}

@media screen and (max-width: 896px) {
  .area-body .list {
    flex-flow: column;
    margin: 0 15px;
  }
  .area-body .list li {
    width: auto;
    margin: 15px 15px 30px;
  }
  .area-body .list li .list-text {
    text-align: left;
    font-size: 11px;
  }
  .area-body .list li a i {
    width: 20px;
  }
  .area-body .list li a:hover .hover-mask {
    opacity: 0;
  }
  .area-body .list li .name {
    width: 100%;
    text-align: left;
    margin: 10px 0;
    font-weight: 500;
  }
  .area-body .btn-all {
    margin: 100px 30px;
  }
}
img {
  max-width: 100%;
  vertical-align: bottom;
}

.inview {
  opacity: 0;
}

.up {
  -webkit-animation: VisualImage 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s both 1 normal;
  animation: VisualImage 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s both 1 normal;
}

.fade {
  opacity: 0;
}

.fadeup {
  transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1);
  opacity: 1;
}

.imagefade {
  opacity: 0;
}

/*VisualImage*/
@-webkit-keyframes VisualImage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes VisualImage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.VisualImage {
  -webkit-animation-name: VisualImage;
  animation-name: VisualImage;
}