@charset "UTF-8";
/*共通の設定*/
@font-face {
  font-family: "noto-serif";
  src: url("../fonts/NotoSerifJP-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "noto-serif";
  src: url("../fonts/NotoSerifJP-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "noto-serif";
  src: url("../fonts/NotoSerifJP-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "noto-serif";
  src: url("../fonts/NotoSerifJP-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "noto-serif";
  src: url("../fonts/NotoSerifJP-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "noto-serif";
  src: url("../fonts/NotoSerifJP-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "noto-serif";
  src: url("../fonts/NotoSerifJP-ExtraBold.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "noto-serif";
  src: url("../fonts/NotoSerifJP-Black.ttf");
  font-weight: 900;
}
/*共通の設定*/
body {
  font-family: "noto-serif", sans-serif;
  position: relative;
}
.sp_br {
  display: none;
}
.ec-layoutRole__header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
}
.ec-layoutRole__header .og_header {
  padding: 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
.ec-layoutRole__header .og_header .header_logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ec-layoutRole__header .og_header .header_logo a {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.ec-layoutRole__header .og_header .header_logo a img, .ec-layoutRole__header .og_header .header_logo a span {
  display: block;
}
.ec-layoutRole__header .og_header .header_logo a img {
  max-width: 250px;
}
.ec-layoutRole__header .og_header .header_logo a span {
  font-size: 18px;
}
.ec-layoutRole__header .og_header .menu_wrap {
  position: relative;
}
.ec-layoutRole__header .og_header .menu_wrap .pc_nav_bt {
  width: auto;
  border-radius: 5px;
  padding: 1em;
  display: block;
}
.ec-layoutRole__header .og_header .menu_wrap .pc_nav_bt span {
  display: block;
  border-bottom: 2px solid #615d7f;
  width: 30px;
}
.ec-layoutRole__header .og_header .menu_wrap .pc_nav_bt span:nth-of-type(1), .ec-layoutRole__header .og_header .menu_wrap .pc_nav_bt span:nth-of-type(2) {
  margin: 0 0 10px 0;
}
.ec-layoutRole__header .og_header .menu_wrap .pc_nav_bt.open + .pc_nav {
  transform: translateX(0%);
  transition: 0.7s;
  opacity: 1;
}
.ec-layoutRole__header .og_header .menu_wrap .pc_nav {
  transform: translateX(-100%);
  transition: 0.7s;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.ec-layoutRole__header .og_header .menu_wrap .pc_nav .main_menu_list {
  width: 300px;
  margin: 0 auto 0 0;
  height: 100lvh;
  background-color: #fff;
  padding: 2em;
  font-size: 16px;
  line-height: 2;
  overflow-y: scroll;
  max-height: 100vh;
}
.ec-layoutRole__header .og_header .menu_wrap .pc_nav .main_menu_list .sub_menu_title {
  border-bottom: 1px solid #615d7f;
}
.ec-layoutRole__header .og_header .menu_wrap .pc_nav .main_menu_list .sub_menu_list {
  padding: 1em;
}
.ec-layoutRole__header .og_header .menu_wrap .pc_nav .main_menu_list > li {
  margin-bottom: 16px;
}
.ec-layoutRole__header .og_header .icons_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  position: relative;
}
.ec-layoutRole__header .og_header .icons_wrap .header_search_bt {
  width: 40px;
  height: 40px;
  background-image: url("../img/common/search_icon.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.ec-layoutRole__header .og_header .icons_wrap .search_zone {
  position: fixed;
  opacity: 0;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100vw;
  transform: translate(100%);
  transition: 0.5s;
  background-color: rgba(0, 0, 0, 0.3);
}
.ec-layoutRole__header .og_header .icons_wrap .search_zone.open {
  opacity: 1;
  transform: translate(0%);
  transition: 0.5s;
  z-index: 1;
  padding: 10vh 0 0 0;
}
.ec-layoutRole__header .og_header .icons_wrap .search_zone .search_wrap {
  background-color: #f3efec;
  padding: 30px 1em;
}
.ec-layoutRole__header .og_header .icons_wrap .search_zone .search_wrap form {
  border-bottom: 1px solid #000;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.ec-layoutRole__header .og_header .icons_wrap .search_zone .search_wrap form .search-name {
  display: block;
  width: 100%;
  padding: 0.5em;
  line-height: 2;
  outline: none;
}
.ec-layoutRole__header .og_header .icons_wrap .search_zone .search_wrap form button {
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("../img/common/search_icon.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.ec-layoutRole__header .og_header .icons_wrap .header_cart_bt {
  width: 40px;
  height: 40px;
  background-image: url("../img/common/cart.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
}
.ec-layoutRole__header .og_header .icons_wrap .header_cart_bt span {
  display: block;
  text-align: center;
  position: absolute;
  top: -11px;
  right: -11px;
  font-size: 16px;
  font-weight: bold;
}
.ec-layoutRole__header .og_header .icons_wrap .header_log_bt {
  font-weight: bold;
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: 100%;
}
.ec-layoutRole__header .og_header .icons_wrap .header_log_bt.in {
  background-image: url("../img/common/login.svg");
}
.ec-layoutRole__footer {
  border-top: 1px solid #615d7f;
  margin-top: 40px;
}
.ec-layoutRole__footer .og_footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  flex-wrap: wrap;
}
.ec-layoutRole__footer .og_footer ul li {
  border-left: 1px solid #000;
  margin: 0 0 1em 0;
}
.ec-layoutRole__footer .og_footer ul li a {
  padding: 0 2em;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.ec-layoutRole__footer .og_footer ul li:nth-of-type(1) {
  border-left: none;
}
.ec-layoutRole__footer .og_footer small {
  display: block;
  text-align: center;
  font-size: 16px;
  padding: 30px 0;
}
.ec-blockTopBtn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.recommend {
  background-color: #fff;
  padding: 100px 0;
}
.recommend h2 {
  max-width: 1090px;
  width: 95%;
  font-size: 32px;
  padding: 1em 0;
}
.recommend .swiper_controller {
  position: relative;
  max-width: 1090px;
  margin: 0 auto;
}
.recommend .swiper_controller .swiper-horizontal > .swiper-pagination-bullets,
.recommend .swiper_controller .swiper-pagination-bullets.swiper-pagination-horizontal,
.recommend .swiper_controller .swiper-pagination-custom,
.recommend .swiper_controller .swiper-pagination-fraction {
  bottom: auto;
  top: -80px;
  right: 0;
  text-align: right;
}
.recommend .swiper_controller .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.recommend .swiper_controller .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 20px 20px 10px auto;
  border: 1px solid #615d7f;
}
.recommend .swiper_controller .swiper-pagination-bullet {
  opacity: 1;
  background-color: #fff;
  width: 10px;
  height: 10px;
}
.recommend .swiper_controller .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #615d7f;
}
.recommend .swiper_controller .swiper-button-prev, .recommend .swiper_controller .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: #615d7f;
}
.recommend .swiper_controller .swiper-button-prev {
  left: auto;
  right: 70px;
}
.recommend .swiper_controller .swiper-button-next:after, .recommend .swiper_controller .swiper-button-prev:after {
  color: #fff;
  font-size: 25px;
  font-weight: bold;
}
.recommend .swiper_zone .swiper_recommend {
  max-width: 1090px;
}
.recommend .swiper_zone .swiper_recommend .swiper-wrapper .swiper-slide {
  transition: 0.5s;
}
.recommend .swiper_zone .swiper_recommend .swiper-wrapper .swiper-slide.swiper-slide-active {
  transition: 0.5s;
}
.recommend .swiper_zone .swiper_recommend .swiper-wrapper .swiper-slide img {
  width: 100%;
}
.recommend .swiper_zone .swiper_recommend .swiper-wrapper .swiper-slide p {
  font-size: 16px;
  padding: 1em 0;
  line-height: 1.5;
}
.related_products {
  background-color: #fff;
  padding: 100px 0;
}
.related_products h2 {
  max-width: 1090px;
  width: 95%;
  font-size: 32px;
  padding: 1em 0;
}
.related_products .swiper_controller {
  position: relative;
  max-width: 1090px;
  margin: 0 auto;
}
.related_products .swiper_controller .swiper-horizontal > .swiper-pagination-bullets,
.related_products .swiper_controller .swiper-pagination-bullets.swiper-pagination-horizontal,
.related_products .swiper_controller .swiper-pagination-custom,
.related_products .swiper_controller .swiper-pagination-fraction {
  bottom: auto;
  top: -80px;
  right: 0;
  text-align: right;
}
.related_products .swiper_controller .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.related_products .swiper_controller .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 20px 20px 10px auto;
  border: 1px solid #615d7f;
}
.related_products .swiper_controller .swiper-pagination-bullet {
  opacity: 1;
  background-color: #fff;
  width: 10px;
  height: 10px;
}
.related_products .swiper_controller .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #615d7f;
}
.related_products .swiper_controller .swiper-button-prev, .related_products .swiper_controller .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: #615d7f;
}
.related_products .swiper_controller .swiper-button-prev {
  left: auto;
  right: 70px;
}
.related_products .swiper_controller .swiper-button-next:after, .related_products .swiper_controller .swiper-button-prev:after {
  color: #fff;
  font-size: 25px;
  font-weight: bold;
}
.related_products .swiper_zone .swiper_related_products {
  max-width: 1090px;
}
.related_products .swiper_zone .swiper_related_products .swiper-wrapper .swiper-slide {
  transition: 0.5s;
}
.related_products .swiper_zone .swiper_related_products .swiper-wrapper .swiper-slide.swiper-slide-active {
  transition: 0.5s;
}
.related_products .swiper_zone .swiper_related_products .swiper-wrapper .swiper-slide img {
  width: 100%;
}
.related_products .swiper_zone .swiper_related_products .swiper-wrapper .swiper-slide p {
  font-size: 16px;
  padding: 1em 0;
  line-height: 1.5;
}
.ec-orderRole {
  position: relative;
}
.ec-orderRole .ec-orderRole__summary2 {
  width: 100%;
}
.ec-orderRole .ec-orderRole__summary2 .ec-inlineBtn {
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .ec-orderRole .ec-orderRole__detail {
    width: calc(100% - 21rem);
  }
  .ec-orderRole .ec-orderRole__summary2 {
    width: 21rem;
  }
  .ec-orderRole .ec-orderRole__summary2 .ec-inlineBtn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .ec-layoutRole__header .og_header {
    padding: 10px;
  }
  .ec-layoutRole__header .og_header .header_logo a img {
    max-width: 180px;
  }
  .ec-layoutRole__header .og_header .header_logo a span {
    font-size: 14px;
  }
  .ec-layoutRole__header .og_header .icons_wrap {
    gap: 10px;
  }
  .ec-layoutRole__header .og_header .icons_wrap .header_search_bt,
  .ec-layoutRole__header .og_header .icons_wrap .header_cart_bt,
  .ec-layoutRole__header .og_header .icons_wrap .header_log_bt {
    width: 20px;
    height: 20px;
  }
  .ec-layoutRole__header .og_header .icons_wrap .header_cart_bt span {
    font-size: 13px;
    top: -10px;
    right: -8px;
  }
}
/*# sourceMappingURL=style.css.map */