@charset "utf-8";
/* CSS Document */
/*==================================

COMMON

==================================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #3b3b3f;
  line-height: 1.5em;
  letter-spacing: nomal;
  background-color: rgb(255, 255, 255);
  background-attachment: fixed;
  background-size: 100%;
  background-repeat: no-repeat, repeat;
  background-position: center bottom, right top;
}
img {
  width: 100%;
}
/*表示⇔非表示*/
.pc-none {
  display: none;
}
.sp-none {
  display: block;
}
/* sectionごとの設定 */
.main-section {
  padding: 100px 0;
}
.section-inner {
  padding: 50px 0 0 0;
  /* width: 95%; */
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  overflow-x: hidden;
}
.section-ttl {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
}
.section-text {
  font-weight: 500;
  margin-top: 40px;
  font-size: 16px;
  text-align: center;
  /* letter-spacing: 2px; */
  line-height: 2.4;
  color: #fff;
}
.section-more-button {
  margin-top: 64px;
  width: 60%;
  display: inline-block;
  background-color: #d4b26f;
  border-radius: 6px;
}
.section-more-button a {
  display: block;
  padding: 20px;
  position: relative;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.section-more-button a::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%) translateX(-50%);
  background: url("../img/common/btn-arrow.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.section-more-button:hover {
  opacity: 0.8;
}
.copyright {
  text-align: center;
  font-size: 13px;
  padding: 20px 0;
}

/* フェードインさせる要素 */
.block {
  /* margin-bottom: 100px; */
  opacity: 0; /* 最初は非表示にしておく */
  transition: all 2s; /* 動きを滑らかに */
}
/* フェードイン用のクラス */
.fadeIn {
  opacity: 1;
}
@media all and (max-width: 768px) {
  .block {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  /*表示⇔非表示*/
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
  /* sectionごとの設定 */
  .main-section {
    padding: 80px 0;
  }
  .section-inner {
    width: 90%;
    padding: 20px 0 0 0;
  }
  .section-ttl {
    margin-bottom: 40px;
    width: 90%;
  }
  .section-text {
    margin-top: 32px;
    font-size: 15px;
    /* letter-spacing: 1.5px; */
    line-height: 2;
  }
  .section-more-button {
    margin-top: 48px;
    width: 80%;
  }
  .section-more-button a {
    padding: 10px;
    font-size: 13px;
    /* letter-spacing: 1px; */
  }
  .section-more-button a::after {
    width: 10px;
    height: 10px;
    top: 50%;
    right: 4%;
  }
}
/*=======================================================

COMMON - SLIDER

=======================================================*/
.product-image-slider {
  margin-top: 50px;
  width: 100%;
}

.product-image-slider .slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: 8vw;
  object-fit: cover;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.product-image-slider .slider .slick-slide {
  margin: 0 15px; /*スライド左右の余白調整*/
}
@media screen and (max-width: 768px) {
  .product-image-slider {
    margin-top: 30px;
  }
  .product-image-slider .slider img {
    height: 20vh;
  }
  .product-image-slider .slider .slick-slide {
    margin: 0 0; /*スライド左右の余白調整*/
  }
}

@media screen and (max-width: 768px) {
  .swiper-container {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    position: relative;
  }
  .swiper-wrapper {
    max-width: 500px;
  }
  .swiper-slide {
    height: auto;
    width: 100%;
  }
  .swiper-slide:not(.swiper-slide-visible) {
    opacity: 0.3;
  }
  .product-list.swiper-wrapper {
    flex-wrap: nowrap;
  }
  .swiper-button-next,
  .swiper-button-prev {
    position: absolute;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    content: "";
    position: absolute;
    width: 50px; /* 背景画像の幅を必ず指定 */
    height: 50px; /* 背景画像の高さを必ず指定 */
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .swiper-button-prev {
    left: -12%;
  }
  .swiper-button-prev::after {
    background: transparent url(../img/common/btn-prev.png) no-repeat center /
      contain;
  }
  .swiper-button-next {
    right: -12%;
  }
  .swiper-button-next::after {
    background: transparent url(../img/common/btn-next.png) no-repeat center /
      contain;
  }
}
/*=======================================================

COMMON - MAIN PRODUCT

=======================================================*/
.main-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0 10px;
  background: #fff;
  padding: 40px;
}
.main-product .product-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
}
.main-product .product-img {
  width: 40%;
  border: 0.8px solid #a0a0a0;
}
.main-product .product-desc {
  width: 55%;
  text-align: left;
  overflow: hidden;
}
.main-product .product-desc-name {
  font-weight: 700;
  line-height: 1.4em;
  font-size: 18px;
}
.main-product .product-tag {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #d4b26f;
}
.main-product .product-desc-text {
  margin-top: 14px;
  font-size: 13px;
}
.main-product .product-desc-saleprice {
  margin-top: 20px;
  font-size: 35px;
  padding-bottom: 5px;
  font-weight: 700;
}
.main-product .product-desc-saleprice span {
  font-size: 20px;
  padding-left: 5px;
}

.main-product .customer-review {
  background: #f3efe2;
  margin-top: 24px;
}
.main-product .customer-review-wrapper {
  margin: 0 auto;
  padding: 20px 0px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-product .customer-review-img {
  width: 15%;
}
.main-product .customer-review-desc {
  width: 70%;
  text-align: left;
  margin-left: 30px;
}
.main-product .customer-review-ttl {
  font-weight: 600;
  /* color: #d4b26f; */
  font-size: 18px;
}
.main-product .customer-review-main-text {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 700;
}
.main-product .customer-review-sub-text {
  margin-top: 10px;
  font-size: 13px;
}
.main-product .customer-review-date {
  margin-top: 10px;
  color: #666;
  font-size: 11px;
}
.main-product .main-product-button {
  margin-top: 30px;
  width: 60%;
  display: inline-block;
  background-color: #d4b26f;
  border-radius: 6px;
}
.main-product .main-product-button a {
  display: block;
  padding: 20px;
  position: relative;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.main-product .main-product-button a::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%) translateX(-50%);
  background: url("../img/common/btn-arrow.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.main-product .main-product-button:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .main-product {
    margin: 30px 0 0;
    padding: 30px 20px;
  }
  .main-product .product-wrapper {
    align-items: center;
    flex-direction: column;
  }
  .main-product .product-img {
    width: 100%;
  }
  .main-product .product-desc {
    width: 100%;
    /* text-align: center; */
    margin-top: 20px;
  }
  .main-product .product-desc-name {
    font-size: 18px;
  }
  .main-product .product-tag {
    text-align: left;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.5;
  }
  .main-product .product-desc-text {
    margin-top: 14px;
    font-size: 13px;
  }
  .main-product .product-desc-saleprice {
    margin-top: 20px;
    font-size: 30px;
    padding-bottom: 5px;
  }
  .main-product .product-desc-saleprice span {
    font-size: 20px;
    padding-left: 5px;
  }
  .main-product .customer-review {
    margin-top: 20px;
  }
  .main-product .customer-review-wrapper {
    padding: 30px 0px 25px;
    flex-direction: column;
  }
  .main-product .customer-review-img {
    width: 40%;
  }
  .main-product .customer-review-desc {
    width: 100%;
    padding: 15px;
    text-align: center;
    margin-left: 0;
  }
  .main-product .customer-review-ttl {
    margin-top: 15px;
    font-size: 16px;
  }
  .main-product .customer-review-main-text {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
  }
  .main-product .customer-review-sub-text {
    text-align: left;
    margin-top: 16px;
    font-size: 13px;
  }
  .main-product .main-product-button {
    margin-top: 20px;
    width: 90%;
  }
  .main-product .main-product-button a {
    padding: 14px;
    font-size: 16px;
    /* letter-spacing: 1px; */
  }
}

/*=======================================================

COMMON - PRODUCT LIST

=======================================================*/
.product-wrapper {
  text-align: center;
  margin: 0 auto;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 0;
  margin: 0 auto;
  /* gap: 32px; */
}
.product-list .product-item {
  width: calc((100% - 32px * 2) / 3);
  position: relative;
  background-color: #fff;
  padding-bottom: 24px;
  margin-top: 40px;
}
.product-list .product-img {
  margin: 10px;
  padding: 5px;
  border: 1px solid #bebebe;
  /* width: 100%; */
}
.product-list .product-tag {
  padding: 10px 15px 0;
  text-align: left;
  font-size: 13px;
  line-height: 1.5;
  color: #d4b26f;
}
.product-list .product-desc {
  /* text-align: center; */
  text-align: left;
  color: #3b3b3f;
  padding: 10px 14px;
  font-weight: 700;
}
.product-list .product-desc-name {
  line-height: 1.4em;
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /*2行以上になったら3点リード。ここの数字はお好みで調整。*/
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-list .product-desc-saleprice {
  padding-top: 16px;
  font-size: 26px;
  padding-bottom: 5px;
}
.product-list .product-desc-saleprice span {
  font-size: 16px;
  padding-left: 5px;
}
.product-list .product-button {
  padding: 10px;
  width: 90%;
  display: inline-block;
  background-color: #d4b26f;
  border-radius: 6px;
}
.product-list .btn-gobuy {
  position: relative;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.product-list .btn-gobuy::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%) translateX(-50%);
  background: url("../img/common/btn-arrow.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.product-list .btn-gobuy:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .product-list .product-item {
    width: calc((100% - 20px) / 2);
    margin-top: 32px;
  }
  .product-list .product-tag {
    padding: 10px 12px 0;
    font-size: 12px;
  }
  .product-list .product-desc {
    padding: 10px 13px 0px;
  }
  .product-list .product-desc-name {
    line-height: 1.4em;
    font-size: 12px;
  }
  .product-list .product-desc-saleprice {
    padding-top: 10px;
    font-size: 22px;
    padding-bottom: 5px;
  }
  .product-list .product-desc-saleprice span {
    font-size: 10px;
    padding-left: 5px;
  }
  .product-list .product-button {
    padding: 5px;
    width: 90%;
  }
  .product-list .btn-gobuy {
    font-size: 13px;
    /* letter-spacing: 1px; */
  }
  .product-list .btn-gobuy::after {
    width: 8px;
    height: 8px;
    top: 50%;
    right: 3%;
  }
}

/*==================================

SECTION - FV

==================================*/
.fv {
  background-color: #033c2d;
  position: relative;
}
.fv-wrapper img {
  object-fit: cover;
  margin: 0 auto;
  width: 100%;
  height: 60vh;
  min-height: 700px;
}
.fv-ttl {
  margin: 0 auto;
  text-align: center;
  width: 65%;
  max-width: 650px;
}
.fv-ttl-text {
  font-weight: 700;
  margin-top: 40px;
  font-size: 20px;
  text-align: center;
  /* letter-spacing: 2px; */
  line-height: 2.4;
  color: #fff;
}
.fv-menu-btn {
  width: 100%;
  position: absolute;
  z-index: 10;
  bottom: -4%;
  left: 50%;
  /* margin-top: 30px; */
  transform: translateY(-50%) translateX(-50%);
}
.fv-menu-btn ul {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fv-menu-btn ul li {
  width: 80%;
  min-width: 140px;
  max-width: 160px;
  /* width: 160px; */
  margin-right: 20px;
}
.fv-menu-btn ul li:last-child {
  margin-right: 0 !important;
}

@media all and (max-width: 768px) {
  .fv-wrapper {
    margin: 0 auto;
    width: 100%;
  }
  .fv-wrapper img {
    object-fit: cover;
    width: 100%;
    height: auto;
  }
  .fv-ttl {
    width: 90%;
  }
  .fv-ttl-text {
    margin-top: 90px;
    font-size: 14px;
    /* letter-spacing: 1.2px; */
    line-height: 2.5;
  }
  .fv-menu-btn {
    bottom: 5vw;
    left: 0;
    transform: none;
    margin: 0 auto;
    width: 100%;
    padding: 10px 20px 40px;
  }
  .fv-menu-btn ul {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .fv-menu-btn ul li {
    margin-right: 0;
    width: calc((100% - 10px) / 2);
    max-width: 160px;
  }
}

/*==================================

SECTION - WRAPPING

==================================*/
.wrapping {
  background-color: #f3efe2;
  position: relative;
  padding: 0 0 120px 0;
}
.wrapping::after {
  content: "";
  width: 100%;
  padding-top: 8.35938%;
  background: url(../img/common/sec_bg_r.svg) no-repeat top center/cover;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 3;
}
.wrapping-wrapper {
  padding: 50px 0;
}
.wrapping-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 50vh;
  min-height: 600px;
}
@media all and (max-width: 768px) {
  .wrapping {
    padding: 0 0 40px 0;
  }
  .wrapping-wrapper {
    padding: 0;
  }
  .wrapping-wrapper img {
    height: auto;
  }
}
/*==================================

SECTION - FOR GIFT

==================================*/
.gift {
  background-color: #941415;
  position: relative;
  padding: 0 0 240px 0;
  background: url(../img/common/sec_bg_01_pc_l.png) no-repeat top left,
    url(../img/common/sec_bg_01_pc_r.png) no-repeat top right, #941415;
}
.gift::after {
  content: "";
  width: 100%;
  padding-top: 8.35938%;
  background: url(../img/common/sec_bg_g.svg) no-repeat top center/cover;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 3;
}
.gift .section-ttl {
  width: 320px;
}
.gift .main-product .customer-review-main-text {
  color: #941415;
}
.gift .main-product {
  box-shadow: 0 5px 10px 0 rgba(75, 13, 13, 0.5);
}
.gift .product-item {
  box-shadow: 0 5px 10px 0 rgba(75, 13, 13, 0.5);
}
@media all and (max-width: 768px) {
  .gift {
    padding: 60px 0 80px 0;
    background: url(../img/common/sec_bg_01_sp_l.png) no-repeat top left,
      url(../img/common/sec_bg_01_sp_r.png) no-repeat top right, #941415;
  }
  .gift .section-ttl {
    width: 260px;
  }
}
/*==================================

SECTION - TO YOU

==================================*/
.toyou {
  background-color: #033c2d;
  position: relative;
  padding: 0 0 240px 0;
  background: url(../img/common/sec_bg_02_pc_l.png) no-repeat top left,
    url(../img/common/sec_bg_02_pc_r.png) no-repeat top right, #033c2d;
}
.toyou::after {
  content: "";
  width: 100%;
  padding-top: 8.35938%;
  background: url(../img/common/sec_bg_r.svg) no-repeat top center/cover;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 3;
}
.toyou .section-ttl {
  width: 260px;
}
.toyou .main-product .customer-review-main-text {
  color: #033c2d;
}
.toyou .main-product {
  box-shadow: 0 5px 10px 0 rgba(3, 29, 7, 0.5);
}
.toyou.product-item {
  box-shadow: 0 5px 10px 0 rgba(3, 29, 7, 0.5);
}
@media all and (max-width: 768px) {
  .toyou {
    padding: 60px 0 80px 0;
    background: url(../img/common/sec_bg_02_sp_l.png) no-repeat top left,
      url(../img/common/sec_bg_02_sp_r.png) no-repeat top right, #033c2d;
  }
  .toyou .section-ttl {
    width: 220px;
  }
}
/*==================================

SECTION - PICKUP

==================================*/
.pickup {
  background-color: #941415;
  position: relative;
  padding: 0 0 240px 0;
  background: url(../img/common/sec_bg_01_pc_l.png) no-repeat top left,
    url(../img/common/sec_bg_01_pc_r.png) no-repeat top right, #941415;
}
.pickup::after {
  content: "";
  width: 100%;
  padding-top: 8.35938%;
  background: url(../img/common/sec_bg_g.svg) no-repeat top center/cover;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 3;
}
.pickup .section-ttl {
  width: 260px;
}
.pickup .product-item {
  box-shadow: 0 5px 10px 0 rgba(75, 13, 13, 0.5);
}
@media all and (max-width: 768px) {
  .pickup {
    padding: 60px 0 80px 0;
    background: url(../img/common/sec_bg_01_sp_l.png) no-repeat top left,
      url(../img/common/sec_bg_01_sp_r.png) no-repeat top right, #941415;
  }
  .pickup .section-ttl {
    width: 220px;
  }
  .pickup .section-inner {
    width: 100%;
  }
}
/*==================================

SECTION - SERACH

==================================*/
.search {
  background-color: #033c2d;
  padding: 0 0 100px 0;
  background: url(../img/common/sec_bg_02_pc_l.png) no-repeat top left,
    url(../img/common/sec_bg_02_pc_r.png) no-repeat top right, #033c2d;
}
.search .section-ttl {
  width: 170px;
}
.search .sub-section {
  margin-top: 90px;
}
.search .sub-section .search-ttl {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 40px;
}
.search .brand ul {
  display: flex;
  margin: 0 auto;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px;
}
.search .brand ul li {
  width: calc((100% - 40px * 3) / 4);
}
.search .brand img {
  object-fit: cover;
}
.search .category ul,
.search .price ul {
  display: flex;
  margin: 0 auto;
  width: 100%;
  flex-wrap: wrap;
  gap: 32px;
}
.search .category ul li,
.search .price ul li {
  background-color: #d4b26f;
  padding: 15px 0;
  width: calc((100% - 32px * 2) / 3);
  border-radius: 4px;
}
.search .category ul li:hover,
.search .price ul li:hover {
  opacity: 0.8;
}
.search .category ul li a,
.search .price ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: block;
}
.search_bar {
  padding: 20px 15px;
  background-color: #333;
}
.search_box {
  margin: 0 auto;
  width: 70%;
}
.search_box form {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.search_box form input {
  font-size: 16px;
  width: 100%;
  /* height: 40px; */
  padding: 20px 30px;
  border: none;
}
.search_box button {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100px;
  height: 100%;
  border: none;
  padding: 0;
  background-color: transparent;
}
.search_box button i {
  font-size: 32px;
  color: #666;
}
.word_box__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.word_box__inner a {
  color: #fff;
  font-size: 14px;
  padding: 5px 9px;
}
.search .wrapping-service-bnr {
  margin: 0 auto;
  width: 70%;
}

@media all and (max-width: 768px) {
  .search {
    padding: 60px 0 80px 0;
    background-size: 28%;
  }
  .search .section-ttl {
    width: 140px;
  }
  .search .sub-section {
    margin-top: 50px;
  }
  .search .sub-section .search-ttl {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .search .brand ul {
    gap: 20px;
  }
  .search .brand ul li {
    width: calc((100% - 20px) / 2);
  }
  .search .brand img {
    object-fit: cover;
  }
  .search .category ul,
  .search .price ul {
    gap: 20px;
  }
  .search .category ul li,
  .search .price ul li {
    padding: 16px 0;
    width: calc((100% - 20px) / 2);
  }
  .search .category ul li a {
    font-size: 16px;
  }
  .search .price ul li a {
    font-size: 18px;
  }
  .search_box {
    width: 100%;
  }
  .search_box form input {
    font-size: 18px;
    padding: 20px 20px;
    border: none;
  }
  .search .wrapping-service-bnr {
    width: 100%;
  }
}
