@charset "UTF-8";
/*!
* home CSS
* ---------------------------------------------
* トップページのcss
* 
*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body {
  position: relative;
  min-width: 1000px;
}
@media screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
}

.header-wrap {
  background-color: transparent;
  -webkit-box-shadow: inset 0px 160px 30px -40px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0px 160px 30px -40px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .header-wrap {
    -webkit-box-shadow: inset 0px 70px 30px -40px rgba(0, 0, 0, 0.5);
            box-shadow: inset 0px 70px 30px -40px rgba(0, 0, 0, 0.5);
  }
}
.header-wrap__content {
  background-color: inherit;
}
.header-wrap__content.fixed {
  background-color: #ffffff;
}
.header-wrap a {
  color: #ffffff;
}

#main-contents section {
  margin-bottom: 170px;
}
@media screen and (max-width: 767px) {
  #main-contents section {
    margin-bottom: 50px;
  }
}
#main-contents section h2 {
  font-size: 50px;
  font-family: "Noto Serif TC", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  #main-contents section h2 {
    font-size: 26px;
  }
}
#main-contents section h2 span {
  font-size: 13px;
  display: block;
  padding-top: 5px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  #main-contents section h2 span {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
#main-contents section .contentsBg-off_white {
  position: relative;
}
#main-contents section .contentsBg-off_white:after {
  content: "";
  display: block;
  height: 430px;
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: #fff4e1;
}
@media screen and (max-width: 767px) {
  #main-contents section .contentsBg-off_white:after {
    height: 510px;
  }
}
#main-contents section .swiper-container-wrap {
  position: relative;
}
#main-contents section .swiper-container-wrap .swiper-button-prev, #main-contents section .swiper-container-wrap .swiper-button-next {
  margin-top: auto;
  margin-bottom: auto;
  top: 30%;
}
@media screen and (max-width: 767px) {
  #main-contents section .swiper-container-wrap .swiper-button-prev, #main-contents section .swiper-container-wrap .swiper-button-next {
    display: none;
    width: 30px;
    top: 40%;
  }
}
#main-contents section .swiper-container-wrap .swiper-button-prev:after, #main-contents section .swiper-container-wrap .swiper-button-next:after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 28px;
  border-right: #552b21 1px solid;
  border-top: #552b21 1px solid;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  #main-contents section .swiper-container-wrap .swiper-button-prev:after, #main-contents section .swiper-container-wrap .swiper-button-next:after {
    border-color: #ffffff;
    width: 7px;
    height: 7px;
    right: 13px;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section .swiper-container-wrap .swiper-button-prev:before, #main-contents section .swiper-container-wrap .swiper-button-next:before {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    background-color: rgba(165, 112, 43, 0.9);
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    border-radius: 1em;
  }
}
#main-contents section .swiper-container-wrap .swiper-button-prev {
  right: auto;
  left: -1%;
}
@media screen and (max-width: 767px) {
  #main-contents section .swiper-container-wrap .swiper-button-prev {
    left: 10px;
  }
}
#main-contents section .swiper-container-wrap .swiper-button-prev:after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media screen and (max-width: 767px) {
  #main-contents section .swiper-container-wrap .swiper-button-prev:after {
    right: 10px;
  }
}
#main-contents section .swiper-container-wrap .swiper-button-next {
  right: -1%;
  left: auto;
}
@media screen and (max-width: 767px) {
  #main-contents section .swiper-container-wrap .swiper-button-next {
    right: 10px;
  }
}
#main-contents section .swiper-container {
  padding: 0 24px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  #main-contents section .swiper-container {
    padding: 0 18px;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section .swiper-container .swiper-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#main-contents section .swiper-container a figure img {
  display: block;
  margin-bottom: 25px;
}
#main-contents section .swiper-container a figure figcaption {
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  #main-contents section .swiper-container a figure figcaption {
    font-size: 12px;
  }
}
#main-contents section .border-link {
  display: inline-block;
  min-width: 372px;
  position: relative;
  padding: 15px 5px;
  border-bottom: 1px solid #000000;
  font-family: "Noto Serif TC", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  #main-contents section .border-link {
    width: 100%;
    min-width: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
#main-contents section .border-link:after {
  content: "";
  position: absolute;
  display: block;
  width: 7px;
  height: 7px;
  border-right: #552b21 1px solid;
  border-top: #552b21 1px solid;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#main-contents section#mv {
  margin-bottom: 0px;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .mv-wrap {
    margin-bottom: 40px;
  }
}
#main-contents section#mv .top-swiper {
  position: relative;
}
#main-contents section#mv .top-swiper .swiper-container {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper .swiper-container .swiper-wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper .swiper-slide {
    background-color: #ffffff;
  }
}
#main-contents section#mv .top-swiper .swiper-slide .top-swiper__link {
  display: block;
  opacity: 1;
}
#main-contents section#mv .top-swiper .swiper-slide .top-swiper__link:hover {
  opacity: 1;
}
#main-contents section#mv .top-swiper .swiper-slide .top-swiper__link img {
  vertical-align: top;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0);
          box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0);
  min-height: 900px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper .swiper-slide .top-swiper__link img {
    min-height: auto;
  }
}
#main-contents section#mv .top-swiper .swiper-slide.swiper-slide-active .top-swiper__link img {
  opacity: 1;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15);
}
#main-contents section#mv .top-swiper .swiper-slide.swiper-slide-active .top-swiper__link p {
  opacity: 1;
  letter-spacing: 0.12em;
}
#main-contents section#mv .top-swiper .swiper-button-prev, #main-contents section#mv .top-swiper .swiper-button-next {
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper .swiper-button-prev, #main-contents section#mv .top-swiper .swiper-button-next {
    display: block;
    top: 240px;
    bottom: 0;
    margin: 0;
  }
}
#main-contents section#mv .top-swiper .swiper-button-prev:after, #main-contents section#mv .top-swiper .swiper-button-next:after {
  border-color: #ffffff;
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper .swiper-button-prev:after, #main-contents section#mv .top-swiper .swiper-button-next:after {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper .swiper-button-prev:before, #main-contents section#mv .top-swiper .swiper-button-next:before {
    content: none;
  }
}
#main-contents section#mv .top-swiper .swiper-button-prev {
  left: 40px;
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper .swiper-button-prev {
    left: 10px;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper .swiper-button-prev:after {
    left: 5px;
  }
}
#main-contents section#mv .top-swiper .swiper-button-next {
  right: 40px;
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper .swiper-button-next {
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper .swiper-button-next:after {
    right: 5px;
  }
}
#main-contents section#mv .top-swiper .swiper-pagination-bullet {
  display: none;
}
#main-contents section#mv .top-swiper__link .swiper-slide__text {
  font-size: 24px;
  position: absolute;
  left: 10%;
  bottom: 10%;
  color: #ffffff;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  #main-contents section#mv .top-swiper__link .swiper-slide__text {
    text-shadow: #000 0px 0px 15px, #000 0px 0px 15px, #000 0px 0px 15px;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper__link .swiper-slide__text {
    font-size: 12px;
    position: static;
    color: #000000;
    padding: 25px 30px 40px;
    list-style: 2.2;
  }
}
@media screen and (min-width: 768px) {
  #main-contents section#mv .top-swiper__link .swiper-slide__text .border-link {
    border-bottom: 1px solid #ffffff;
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 30px;
    min-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper__link .swiper-slide__text .border-link {
    font-size: 12px;
    min-width: 230px;
    width: auto;
    padding-right: 20px;
  }
}
@media screen and (min-width: 768px) {
  #main-contents section#mv .top-swiper__link .swiper-slide__text .border-link:after {
    border-color: #ffffff;
  }
}
#main-contents section#mv .top-swiper__link .swiper-slide__text span {
  display: block;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  #main-contents section#mv .top-swiper__link .swiper-slide__text span {
    font-size: 12px;
  }
}
#main-contents section#mv .top-swiper__navi {
  position: relative;
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper__navi {
    padding: 0 20px;
    margin-top: 15px;
    display: none;
  }
}
#main-contents section#mv .top-swiper__counter {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  bottom: 75px;
  z-index: 1;
  width: 190px;
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper__counter {
    right: 15px;
    width: 170px;
  }
}
#main-contents section#mv .top-swiper__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 18px;
  height: 30px;
  line-height: 30px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper__num {
    font-size: 16px;
  }
}
#main-contents section#mv .top-swiper__num .currentNum {
  color: #ffffff;
}
#main-contents section#mv .top-swiper__num .totalNum {
  margin-left: 10px;
  color: #ffffff;
  position: relative;
}
#main-contents section#mv .top-swiper__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 5;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
  width: 150px;
  height: 1px;
  background: #ffffff;
  -webkit-transition: -webkit-transform 5s linear;
  transition: -webkit-transform 5s linear;
  transition: transform 5s linear;
  transition: transform 5s linear, -webkit-transform 5s linear;
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper__bar {
    width: 120px;
  }
}
#main-contents section#mv .top-swiper__barback {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 2;
  width: 150px;
  height: 1px;
  border-bottom: 1px dashed #ffffff;
}
@media screen and (max-width: 767px) {
  #main-contents section#mv .top-swiper__barback {
    width: 120px;
  }
}
#main-contents section#mv .top-swiper .mv-logo {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 50px;
  margin-left: auto;
  margin-right: auto;
  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;
}
@media screen and (min-width: 768px) {
  #main-contents section#mv .top-swiper .mv-logo {
    bottom: 50%;
    left: 10%;
    right: auto;
    top: auto;
  }
}
#main-contents section#topNews {
  background-color: #fff4e1;
}
#main-contents section#topNews .topNews-list {
  border-bottom: 1px solid #c7b8b1;
}
#main-contents section#topNews .topNews-list > li {
  border-top: 1px solid #c7b8b1;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #main-contents section#topNews .topNews-list > li {
    padding: 25px 60px;
  }
}
#main-contents section#menu {
  background-color: #fff4e1;
}
@media screen and (min-width: 768px) {
  #main-contents section#menu .swiper-container {
    overflow: hidden;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  #main-contents section#menu .swiper-container .swiper-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -17px;
    margin-right: -17px;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#menu .swiper-container .swiper-wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (min-width: 768px) {
  #main-contents section#menu .swiper-container .swiper-wrapper .swiper-slide {
    width: 50%;
    padding: 0 17px;
    margin-top: 50px;
  }
}
#main-contents section#menu .swiper-container .swiper-wrapper .swiper-slide figure figcaption {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  #main-contents section#menu .swiper-container .swiper-wrapper .swiper-slide figure figcaption {
    padding-left: 0;
    padding-right: 0;
  }
}
#main-contents section#menu .swiper-container .swiper-wrapper .swiper-slide figure figcaption h3 {
  font-size: 14px;
  margin-top: 15px;
  letter-spacing: 0.14em;
}
@media screen and (min-width: 768px) {
  #main-contents section#menu .swiper-container .swiper-wrapper .swiper-slide figure figcaption h3 {
    font-size: 18px;
    margin-top: 25px;
    letter-spacing: 0.12em;
  }
}
#main-contents section#menu .swiper-container .swiper-wrapper .swiper-slide figure figcaption > p {
  font-size: 12px;
  margin-top: 10px;
  letter-spacing: 0.14em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  #main-contents section#menu .swiper-container .swiper-wrapper .swiper-slide figure figcaption > p {
    font-size: 14px;
    margin-top: 20px;
    letter-spacing: 0.12em;
    line-height: 1.8;
  }
}
#main-contents section#menu .swiper-container .swiper-wrapper .swiper-slide figure figcaption > span {
  display: block;
  font-size: 10px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  #main-contents section#menu .swiper-container .swiper-wrapper .swiper-slide figure figcaption > span {
    font-size: 12px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  #main-contents section#menu .swiper-pagination, #main-contents section#menu .swiper-button-next, #main-contents section#menu .swiper-button-prev {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#menu .swiper-button-prev, #main-contents section#menu .swiper-button-next {
    display: block;
    width: 30px;
    top: auto;
    bottom: -60px;
  }
}
#main-contents section#menu .swiper-button-prev:after, #main-contents section#menu .swiper-button-next:after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 28px;
  border-right: #552b21 1px solid;
  border-top: #552b21 1px solid;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  #main-contents section#menu .swiper-button-prev:after, #main-contents section#menu .swiper-button-next:after {
    border-color: #552b21;
    width: 20px;
    height: 20px;
    right: 13px;
  }
}
#main-contents section#menu .swiper-button-prev:before, #main-contents section#menu .swiper-button-next:before {
  content: none;
}
#main-contents section#menu .swiper-button-prev:after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  right: -2px;
}
@media screen and (max-width: 767px) {
  #main-contents section#menu .swiper-pagination {
    bottom: -50px;
  }
}
#main-contents section#menu .swiper-pagination-bullet {
  margin-left: 8px;
  margin-right: 8px;
}
#main-contents section#menu .swiper-pagination-bullet-active {
  background-color: #552b21;
}
#main-contents section#menu .border-link {
  border: 1px solid #230e02;
  max-width: 500px;
}
#main-contents section#menu .border-link:after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-right: #c4beae 1px solid;
  border-top: #c4beae 1px solid;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  #main-contents section#menu .border-link:after {
    width: 13px;
    height: 13px;
  }
}
#main-contents section#other #contactUs {
  background-image: url("../images/home/contact_bg.jpg");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  #main-contents section#other #contactUs {
    background-image: url("../images/home/contact_bg_sp.jpg");
  }
}
#main-contents section#shop .shop-bg {
  background: url("../images/home/store_bg.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  height: 526px;
}
@media screen and (max-width: 767px) {
  #main-contents section#shop .shop-bg {
    background: url("../images/home/store_bg_sp.jpg");
    background-position: center top;
    height: 267px;
  }
}
#main-contents section#shop .shop-bg02 {
  background: url("../images/home/store_f_bg.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 767px) {
  #main-contents section#shop .shop-bg02 {
    background: url("../images/home/store_f_bg_sp.jpg");
    background-position: center top;
  }
}
#main-contents section#shop .shop-table tr {
  border-bottom: 1px solid #d8d8d8;
}
#main-contents section#shop .shop-table tr th {
  background-color: #fff4e1;
  padding: 15px 10px;
  vertical-align: middle;
  font-size: 13px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #main-contents section#shop .shop-table tr th {
    padding: 25px 30px;
    font-size: 18px;
    text-align: left;
  }
}
#main-contents section#shop .shop-table tr td {
  padding: 15px 15px;
  vertical-align: middle;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  #main-contents section#shop .shop-table tr td {
    padding: 25px 45px;
    font-size: 18px;
  }
}
#main-contents section#shop .border-link {
  border: 1px solid #230e02;
  width: 100%;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  #main-contents section#shop .border-link {
    font-size: 18px;
    min-width: 300px;
  }
}
#main-contents section#shop .border-link:after {
  content: none;
}
#main-contents section#in-page-link {
  padding-top: 0;
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  #main-contents section#in-page-link {
    margin-bottom: 60px;
  }
}
#main-contents section#in-page-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#main-contents section#in-page-link ul li {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  #main-contents section#in-page-link ul li {
    width: 50%;
    min-height: 55px;
  }
}
#main-contents section#in-page-link ul li.bg-brown {
  font-size: 20px;
  position: relative;
}
#main-contents section#in-page-link ul li.bg-brown a {
  padding-left: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #main-contents section#in-page-link ul li.bg-brown a {
    font-size: 15px;
  }
}
#main-contents section#in-page-link ul li.bg-brown span {
  font-size: 12px;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  #main-contents section#in-page-link ul li.bg-brown span {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    padding-left: 0;
  }
}
#main-contents section#in-page-link ul li.bg-brown:before {
  content: "";
  display: block;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 28px;
  height: 29px;
  background-image: url("../images/base/icon_bag-pc.png");
  background-size: contain;
}
@media screen and (max-width: 767px) {
  #main-contents section#in-page-link ul li.bg-brown:before {
    width: 20px;
    height: 21px;
    background-image: url("../images/base/icon_bag-sp.png");
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  #main-contents section#in-page-link ul li.bg-brown a {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #main-contents section#in-page-link ul li.bg-brown span {
    display: block;
    width: 100%;
    padding-left: 0px;
    text-align: center;
  }
}
#main-contents section#in-page-link ul li.bg-yellow {
  position: relative;
}
#main-contents section#in-page-link ul li.bg-yellow a {
  padding-left: 20px;
}
#main-contents section#in-page-link ul li.bg-yellow:before {
  content: "";
  display: block;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 28px;
  height: 31px;
  background-image: url("../images/base/icon_cart-pc.png");
  background-size: contain;
}
@media screen and (max-width: 767px) {
  #main-contents section#in-page-link ul li.bg-yellow:before {
    width: 20px;
    height: 23px;
    background-image: url("../images/base/icon_cart-sp.png");
  }
}
#main-contents section#in-page-link ul li.bg-off_white {
  background-color: #e7dfca;
  position: relative;
}
@media screen and (max-width: 767px) {
  #main-contents section#in-page-link ul li.bg-off_white {
    background-color: inherit;
    border-bottom: 1px solid #cccccc;
  }
}
#main-contents section#in-page-link ul li.bg-off_white + .bg-off_white:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  height: 75%;
  width: 2px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  #main-contents section#in-page-link ul li.bg-off_white + .bg-off_white:before {
    background-color: #cccccc;
    height: 48%;
    width: 1px;
  }
}
#main-contents section#in-page-link ul li a {
  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;
  padding: 15px 0;
  font-size: 17px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #main-contents section#in-page-link ul li a {
    font-size: 12px;
    padding: 7px 0;
  }
}
#main-contents section#pickup h2 {
  text-align: right;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #main-contents section#pickup h2 {
    margin-bottom: 35px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#pickup .swiper-container .swiper-wrapper {
    margin: 0 -6px;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#pickup .swiper-container .swiper-slide {
    width: 50%;
    padding: 0 6px;
    margin-bottom: 25px;
  }
}
#main-contents section#pickup .swiper-container .swiper-slide figure > div {
  overflow: hidden;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  #main-contents section#pickup .swiper-container .swiper-slide figure > div {
    margin-bottom: 10px;
  }
}
#main-contents section#pickup .swiper-container .swiper-slide figure > div img {
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  margin-bottom: 0px;
}
#main-contents section#pickup .swiper-container .swiper-slide figure > div:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#main-contents section#pickup .contentsBg-off_white {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #main-contents section#pickup .contentsBg-off_white {
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#pickup .contentsBg-off_white:after {
    height: 710px;
  }
}
#main-contents section#pickup .swiper-container a figure figcaption {
  min-height: 155px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  #main-contents section#pickup .swiper-container a figure figcaption {
    min-height: 209px;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#pickup .swiper-container a figure figcaption {
    min-height: 155px;
  }
}
#main-contents section#pickup .swiper-container a figure figcaption span {
  min-height: 54px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  #main-contents section#pickup .swiper-container a figure figcaption span {
    min-height: 81px;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#pickup .swiper-container a figure figcaption span {
    min-height: 70px;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#news .contentsBg-off_white {
    background-color: #fff4e1;
  }
}
#main-contents section#news .contentsBg-off_white:after {
  height: 390px;
}
@media screen and (max-width: 767px) {
  #main-contents section#news .contentsBg-off_white:after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#news .swiper-container {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#news .swiper-container .swiper-wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
#main-contents section#news .swiper-container .swiper-wrapper .swiper-slide figure img {
  display: block;
  margin-bottom: 25px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 208px;
}
@media screen and (max-width: 767px) {
  #main-contents section#news .swiper-container .swiper-wrapper .swiper-slide figure img {
    height: 96px;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#news .swiper-container-wrap .swiper-button-prev, #main-contents section#news .swiper-container-wrap .swiper-button-next {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#pickup_collection .contentsBg-off_white {
    background-color: #fff4e1;
  }
}
#main-contents section#pickup_collection .contentsBg-off_white:after {
  height: 320px;
}
@media screen and (max-width: 767px) {
  #main-contents section#pickup_collection .contentsBg-off_white:after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#pickup_collection .swiper-container {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#pickup_collection .swiper-container .swiper-wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (min-width: 768px) {
  #main-contents section#pickup_collection .swiper-container .swiper-wrapper a figure figcaption {
    min-height: 54px;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#pickup_collection .swiper-container .swiper-wrapper a figure figcaption {
    min-height: 43px;
  }
}
@media screen and (max-width: 767px) {
  #main-contents section#pickup_collection .swiper-container-wrap .swiper-button-prev, #main-contents section#pickup_collection .swiper-container-wrap .swiper-button-next {
    display: block;
  }
}
#main-contents section#pickup_collection .btn-online {
  display: block;
  background-color: #42362e;
  color: #ffffff;
  text-align: center;
  border-radius: 3px;
  font-size: 13px;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  #main-contents section#pickup_collection .btn-online {
    font-size: 10px;
    padding: 8px 0;
  }
}
#main-contents section#pickup_collection .btn-online.arrow-link:after {
  border-color: #a5702b;
  right: 10px;
}
#main-contents section#sns {
  background-color: #fff4e1;
}
#main-contents section#sns .instagram-list__wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 24px;
}
@media screen and (max-width: 767px) {
  #main-contents section#sns .instagram-list__wrap {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    row-gap: 8px;
  }
}
#main-contents section#sns .instagram-list__wrap > div {
  aspect-ratio: 1/1; /* アイテムの比率を1:1に設定 */
  position: relative;
  overflow: hidden;
}
#main-contents section#sns .instagram-list__wrap > div a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  #main-contents section#sns .arrow-link:after {
    right: 15px;
  }
}
#main-contents section#sns .arrow-link.others:after {
  display: none;
}
@media screen and (max-width: 767px) {
  #main-contents section#sns .arrow-link.others:after {
    display: block;
  }
}
#main-contents section#sns .diagonal {
  padding-left: 70px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #main-contents section#sns .diagonal {
    padding-left: 0px;
    text-align: center;
  }
}
#main-contents section#sns .diagonal:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 50px;
  background: #333333;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  left: 38px;
}
@media screen and (max-width: 767px) {
  #main-contents section#sns .diagonal:before {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
    height: 25px;
    left: -20px;
  }
}
#main-contents section#sns .diagonal:after {
  content: none;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 25px;
  background: #333333;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  right: -20px;
}
@media screen and (max-width: 767px) {
  #main-contents section#sns .diagonal:after {
    content: "";
  }
}