@charset "UTF-8";


/*----------------------------------------
Variables
----------------------------------------*/
/*
# Color */
/* $black: #111; */
/* $white: #fff; */
/* $gray-black: #999; */
/* $gray-black2: #525252; */
/* $primary: #343434; */
/* $primary-white: #777; */
/* $white-gray: #f5f5f5; */
/* $white-gray2: #f9f9f9; */
/* $white-gray3: #eee; */
/* $gray-pale: #efefef; */
/* $gray-light: #d0d0d0; */
/* $gray-light02: #b2b2b2; */
/* $gray: #cccccc; */
/* $gray02: #666; */
/* $gray-dull: #707070; */
/* $gray-dark: #909090; */
/* $blue-gray: #f7f6f2; */
/* $red: #ab2d2d; */
/* $red-light: #bf3333; */
/* $red-black: #751313; */
/* $red-white: #d23d3d; */
/* $orange: #ff5722; */
/* $pink1: #dd4688; */
/* $pink2: #d46abf; */
/* $pink3: #cc8ef5; */
/* $green: #4caf50; */
/*

# Border */
/* $color-border: #ddd; */
/* $color-border-black: #111; */
/* $color-border-gray: #707070; */
/*

/*

# Shadow */
/* $shadow: rgba(#777, .1); */
/* $shadow-hover: rgba(#777, .3); */
/*

# Hover */
/* $opacity: .7; */
/*

# Font Family */
/* $font: 游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif */
/* $font-en: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif; */
/* $font-jp: "Noto Sans JP", Arial, Helvetica, sans-serif; */
/* $font-cn: "Microsoft Yahei", "PingHei"; */
/*

# Font Weight */
/* $light: 300; */
/* $regular:400; */
/* $medium: 500; */
/* $bold: 900; */
/*

# Width */
/* $outer-width: 1920px; */
/* $content-width: 1280px; */
/*

# Padding */
/* $side-padding: 80px; */
/* $side-padding-mobile: 16px; */
/*

# Easing */
/* $ease: cubic-bezier(.19, 1, .22, 1); */
/*----------------------------------------
Extend
----------------------------------------*/
.g-header__nav-search-btn, .g-search__form-submit-btn, .c-btn-choices__body, .c-cart-btn__body {
  position: relative;
}

.g-header__nav-search-btn::before, .g-search__form-submit-btn::before, .c-btn-choices__body::before, .c-cart-btn__body::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: #343434;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transform-origin: center;
          transform-origin: center;
}

@media screen and (min-width: 1199px) {
  .g-header__nav-search-btn:hover::before, .g-search__form-submit-btn:hover::before, .c-btn-choices__body:hover::before, .c-cart-btn__body:hover::before {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.g-hamburger__menu-list-link, .c-breadcrumbs__list-item-body {
  position: relative;
  -webkit-transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.is-current.g-hamburger__menu-list-link, .is-current.c-breadcrumbs__list-item-body {
  color: #fff;
}

.is-current.g-hamburger__menu-list-link::after, .is-current.c-breadcrumbs__list-item-body::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: center left;
          transform-origin: center left;
}

@media screen and (min-width: 1199px) {
  .g-hamburger__menu-list-link:hover, .c-breadcrumbs__list-item-body:hover {
    color: #fff;
  }
  .g-hamburger__menu-list-link:hover::after, .c-breadcrumbs__list-item-body:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
}

.g-hamburger__menu-list-link::after, .c-breadcrumbs__list-item-body::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  content: "";
  -webkit-transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.5s, -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center right;
          transform-origin: center right;
}

.c-blog-categories__list-item-link {
  position: relative;
  -webkit-transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.is-current.c-blog-categories__list-item-link {
  color: #ab2d2d;
}

.is-current.c-blog-categories__list-item-link::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: center left;
          transform-origin: center left;
}

@media screen and (min-width: 1199px) {
  .c-blog-categories__list-item-link:hover {
    color: #ab2d2d;
  }
  .c-blog-categories__list-item-link:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
}

.c-blog-categories__list-item-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #ab2d2d;
  content: "";
  -webkit-transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.5s, -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center right;
          transform-origin: center right;
}

@media screen and (min-width: 1199px) {
  .p-index__category-list-figure:hover .c-img-hover-item {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.c-img-hover-item {
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.g-hamburger__pickup-figure, .c-sidebar__new-figure, .c-style-book-list__figure, .c-style-book-photo-thumb-figure, .c-style-book-photo-figure, .p-about__intro-figure, .p-about__feature-item-figure, .p-index__visual-main-figure, .p-index__visual-sub-figure, .p-index__category-list-figure, .p-index__pickup-figure, .p-index__other-figure, .p-single__content-eyecatch {
  position: relative;
  overflow: hidden;
}

.g-hamburger__pickup-figure::after, .c-sidebar__new-figure::after, .c-style-book-list__figure::after, .c-style-book-photo-thumb-figure::after, .c-style-book-photo-figure::after, .p-about__intro-figure::after, .p-about__feature-item-figure::after, .p-index__visual-main-figure::after, .p-index__visual-sub-figure::after, .p-index__category-list-figure::after, .p-index__pickup-figure::after, .p-index__other-figure::after, .p-single__content-eyecatch::after {
  display: block;
  padding-bottom: 70%;
  content: "";
}

.g-hamburger__pickup-figure .c-img, .c-sidebar__new-figure .c-img, .c-style-book-list__figure .c-img, .c-style-book-photo-thumb-figure .c-img, .c-style-book-photo-figure .c-img, .p-about__intro-figure .c-img, .p-about__feature-item-figure .c-img, .p-index__visual-main-figure .c-img, .p-index__visual-sub-figure .c-img, .p-index__category-list-figure .c-img, .p-index__pickup-figure .c-img, .p-index__other-figure .c-img, .p-single__content-eyecatch .c-img {
  display: none;
}

.g-hamburger__pickup-figure .c-img-bg, .c-sidebar__new-figure .c-img-bg, .c-style-book-list__figure .c-img-bg, .c-style-book-photo-thumb-figure .c-img-bg, .c-style-book-photo-figure .c-img-bg, .p-about__intro-figure .c-img-bg, .p-about__feature-item-figure .c-img-bg, .p-index__visual-main-figure .c-img-bg, .p-index__visual-sub-figure .c-img-bg, .p-index__category-list-figure .c-img-bg, .p-index__pickup-figure .c-img-bg, .p-index__other-figure .c-img-bg, .p-single__content-eyecatch .c-img-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
}

/*----------------------------------------
Keyframes
----------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes activeBtn {
  0%,
  100% {
    color: #ab2d2d;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  50% {
    color: #dd4688;
  }
}

@keyframes activeBtn {
  0%,
  100% {
    color: #ab2d2d;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  50% {
    color: #dd4688;
  }
}

@-webkit-keyframes activeBtnCircle {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    border-color: #dd4688;
    opacity: 1;
  }
  80% {
    border-width: 0;
    border-color: #d46abf;
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    border-width: 0;
    border-color: #cc8ef5;
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@keyframes activeBtnCircle {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    border-color: #dd4688;
    opacity: 1;
  }
  80% {
    border-width: 0;
    border-color: #d46abf;
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    border-width: 0;
    border-color: #cc8ef5;
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@-webkit-keyframes activeBtnIcon {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  25% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
            transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes activeBtnIcon {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  25% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
            transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

/*----------------------------------------
add_to_any
----------------------------------------*/
.a2a_kit a {
  margin: 0 10px;
  padding: 0;
}

.a2a_mini {
  width: 312px !important;
}

.a2a_svg {
  background: none !important;
}

.a2a_svg svg {
  width: 28px;
  height: 28px;
}

.a2a_svg svg,
.a2a_svg path,
.a2a_svg g {
  fill: #111;
}

.a2a_full {
  height: 340px !important;
}

.a2a_full_footer {
  padding: 18px 14px !important;
}

.a2a_menu a {
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif !important;
  color: #111 !important;
}

.a2a_mini_services {
  overflow: hidden;
  padding: 6px !important;
}

.a2a_menu_show_more_less span {
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif !important;
  font-size: 14px;
  font-size: 1.4rem;
}

/*----------------------------------------
select2
----------------------------------------*/
.select2 {
  display: block;
}

.select2.select2-container .select2-selection--single {
  height: 48px;
  border-color: #111;
  border-radius: 0;
}

.select2.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 48px;
}

.select2.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
}

.select2 .select2-container .select2-selection--single .select2-selection__rendered,
.select2 .select2-container--default .select2-selection--single .select2-selection__rendered,
.select2 .select2.select2-container--default .select2-selection--single .select2-selection__rendered {
  width: 100%;
  padding: 10px 40px 10px 20px;
  border: 1px solid #343434;
  background: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .select2 .select2-container .select2-selection--single .select2-selection__rendered,
  .select2 .select2-container--default .select2-selection--single .select2-selection__rendered,
  .select2 .select2.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 10px 40px 10px 15px;
  }
}

.select2 .select2-container .select2-selection--single .select2-selection__rendered:disabled,
.select2 .select2-container--default .select2-selection--single .select2-selection__rendered:disabled,
.select2 .select2.select2-container--default .select2-selection--single .select2-selection__rendered:disabled {
  background: #f5f5f5;
  opacity: .3;
}

.select2 .select2-container .select2-selection--single {
  margin: 0;
}

.select2 .select2.select2-container .select2-selection--single {
  height: auto;
}

.select2 .select2-container--default .select2-selection--single {
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.select2 .select2.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: normal;
}

.select2 .select2.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

.select2-results__option {
  text-align: left;
}

/*--------------------
Swiper 4.5.1
--------------------*/
.swiper-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  list-style: none;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}

.swiper-wrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  margin: 0 auto;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -ms-flex-align: start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
  -webkit-box-align: start;
  align-items: flex-start;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  z-index: 10;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 27px 44px;
  cursor: pointer;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  pointer-events: none;
  cursor: auto;
  opacity: 0.35;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  right: auto;
  left: 10px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  z-index: 10;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #007aff;
  opacity: 1;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  top: 50%;
  right: 10px;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: 6px 0;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  width: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

.swiper-pagination-progressbar {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #007aff;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  position: relative;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  -ms-touch-action: none;
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  z-index: 50;
  bottom: 3px;
  left: 1%;
  width: 98%;
  height: 5px;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  z-index: 50;
  top: 1%;
  right: 3px;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  content: '';
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.swiper-container .swiper-notification {
  position: absolute;
  z-index: -1000;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  z-index: 1;
  visibility: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  visibility: visible;
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  z-index: 0;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  z-index: 1;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/*----------------------------------------
g-cart
----------------------------------------*/
body[data-cart="active"] .g-cart {
  background: rgba(17, 17, 17, 0.7);
  pointer-events: auto;
}

body[data-cart="active"] .g-cart__container {
  overflow-y: auto;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.g-cart {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  -webkit-transition: background cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  transition: background cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

.g-cart__container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  padding: 80px 0;
  opacity: 0;
  -webkit-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.3s, -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.3s, -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.3s, transform cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.3s, transform cubic-bezier(0.19, 1, 0.22, 1) 0.3s, -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 767px) {
  .g-cart__container {
    padding: 0;
  }
}

.g-cart__burger {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border: 0;
  background: none;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .g-cart__burger {
    width: 60px;
    height: 60px;
  }
}

.g-cart__burger-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 1px;
  border-radius: 10px;
  background: #cccccc;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.g-cart__burger-line:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.g-cart__burger-line:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.g-cart__enabled {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.g-cart__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 80px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .g-cart__inner {
    min-height: 100vh;
    padding: 60px 20px 20px;
  }
}

.g-cart__header-ttl {
  margin: 0 0 30px;
  padding: 0 0 20px;
  border-bottom: 1px solid #ddd;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 900;
  color: #ab2d2d;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
  .g-cart__header-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.g-cart__body {
  margin: 0 0 30px;
  padding: 0 0 30px;
  border-bottom: 1px solid #ddd;
}

.g-cart__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: justify;
      -ms-flex-align: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 1024px) {
  .g-cart__item {
    display: block;
  }
}

.g-cart__item-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.g-cart__item-detail-img {
  position: relative;
  width: 160px;
  background: no-repeat center;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .g-cart__item-detail-img {
    width: 100px;
  }
}

.g-cart__item-detail-img::before {
  display: block;
  padding: 120% 0 0;
  content: "";
}

.g-cart__item-detail-img-src {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}

.g-cart__item-detail-data {
  padding: 0 0 0 30px;
  text-align: justify;
}

@media screen and (max-width: 1024px) {
  .g-cart__item-detail-data {
    padding: 0 0 0 15px;
  }
}

.g-cart__item-detail-data-name {
  margin: 0 0 5px;
  padding: 0 5px;
  font-weight: 900;
  letter-spacing: 1px;
  letter-spacing: 0.1rem;
}

@media screen and (max-width: 1024px) {
  .g-cart__item-detail-data-name {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.g-cart__item-detail-data-list {
  display: table;
  width: 100%;
}

.g-cart__item-detail-data-list-row {
  display: table-row;
}

.g-cart__item-detail-data-list-ttl, .g-cart__item-detail-data-list-desc {
  display: table-cell;
  padding: 5px;
}

@media screen and (max-width: 1024px) {
  .g-cart__item-detail-data-list-ttl, .g-cart__item-detail-data-list-desc {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 1024px) {
  .g-cart__item-price {
    padding: 0 0 0 15px;
  }
}

.g-cart__item-price #js-modal_purchased_price {
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 20px;
  font-size: 2rem;
}

.g-cart__item-price-txt {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
  .g-cart__item-price-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.g-cart__item-price-tax {
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
  .g-cart__item-price-tax {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

/*----------------------------------------
common
----------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  text-align: center;
  letter-spacing: 1px;
  letter-spacing: 0.1rem;
  word-break: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  overflow-wrap: break-word;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 374px) {
  body {
    overflow-x: auto;
    min-width: 320px;
  }
}

body::before {
  display: block;
  padding: 60px 0 0;
  content: "";
}

@media screen and (max-width: 1330px) {
  body::before {
    padding: 120px 0 0;
  }
}

@media screen and (max-width: 767px) {
  body::before {
    padding: 88px 0 0;
  }
}

body.is-not-before::before {
  padding: 60px 0 0;
}

@media screen and (max-width: 1330px) {
  body.is-not-before::before {
    padding: 120px 0 0;
  }
}

@media screen and (max-width: 767px) {
  body.is-not-before::before {
    padding: 88px 0 0;
  }
}

a {
  color: #111;
  text-decoration: none;
}

a:not([class]) {
  color: #ab2d2d;
  text-decoration: none;
}

a:not([class]):hover {
  text-decoration: underline;
}

select,
input,
textarea {
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  line-height: normal;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

::-moz-selection {
  background-color: #343434;
  color: #fff;
}

::selection {
  background-color: #343434;
  color: #fff;
}

/*----------------------------------------
Media
----------------------------------------*/
@media screen and (max-width: 1024px) {
  .is-pc,
  .pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .is-pc,
  .pc {
    display: none;
  }
}

.is-sp,
.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .is-sp,
  .sp {
    display: block;
  }
}

.is-tablet,
.tablet {
  display: none;
}

@media screen and (max-width: 1024px) {
  .is-tablet,
  .tablet {
    display: block;
  }
}

/*----------------------------------------
g-footer
----------------------------------------*/
.g-footer {
  display: block;
  padding: 50px 80px 50px 40px;
  background: #111;
  color: #fff;
}

@media screen and (max-width: 1330px) {
  .g-footer {
    padding: 40px 70px 40px 25px;
  }
}

@media screen and (max-width: 1024px) {
  .g-footer {
    margin-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .g-footer {
    margin-top: 50px;
    padding: 40px 16px 80px;
  }
}

.g-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.g-footer .c-nav__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 300px);
  padding: 0 80px 0 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__categories {
    display: block;
    width: 100%;
    padding: 0;
  }
}

.g-footer .c-nav__categories-ttl {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__categories-ttl {
    display: none;
    padding: 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.g-footer .c-nav__categories-child {
  width: 33.33333%;
  padding: 20px 20px 20px 0;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .g-footer .c-nav__categories-child {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__categories-child {
    padding: 0;
  }
}

.g-footer .c-nav__categories-child-ttl {
  position: relative;
  font-weight: 900;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__categories-child-ttl {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
  }
}

.g-footer .c-nav__categories-child-ttl::before, .g-footer .c-nav__categories-child-ttl::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 14px;
  height: 2px;
  margin: -1px 0 0;
  background: #fff;
}

.g-footer .c-nav__categories-child-ttl::after {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.g-footer .c-nav__categories-child-ttl.is-active::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.g-footer .c-nav__categories-child-ttl.js-accrodion-btn {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__categories-child-ttl.js-accrodion-btn {
    pointer-events: auto;
  }
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__categories-child-ttl.js-accrodion-btn::before, .g-footer .c-nav__categories-child-ttl.js-accrodion-btn::after {
    display: block;
    content: "";
  }
}

.g-footer .c-nav__categories-child-ttl.js-accrodion-btn .c-nav__categories-child-ttl-link {
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__categories-child-ttl.js-accrodion-btn .c-nav__categories-child-ttl-link {
    pointer-events: none;
  }
}

.g-footer .c-nav__categories-child-ttl-link {
  display: block;
  padding: 10px 0;
  color: #fff;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__categories-child-ttl-link {
    padding: 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.g-footer .c-nav__categories-child-ttl-link:hover {
  opacity: .5;
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__categories-child-ttl-link:hover {
    opacity: 1;
  }
}

.g-footer .c-nav__categories-list {
  display: block;
}

@media screen and (min-width: 1199px) {
  .g-footer .c-nav__categories-list {
    display: block !important;
    height: auto !important;
  }
}

@media screen and (max-width: 1024px) {
  .g-footer .c-nav__categories-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__categories-list {
    display: none;
    padding: 10px 0;
    background: #fff;
  }
}

.g-footer .c-nav__categories-list-item {
  margin: 5px 0;
}

@media screen and (max-width: 1024px) {
  .g-footer .c-nav__categories-list-item {
    margin: 0 20px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__categories-list-item {
    margin: 0;
  }
}

.g-footer .c-nav__categories-list-item-link {
  display: inline-block;
  padding: 5px 0;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__categories-list-item-link {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-size: 1.4rem;
    color: #111;
  }
}

.g-footer .c-nav__categories-list-item-link::before {
  display: inline-block;
  width: 10px;
  height: 1px;
  margin: 0 10px 0 0;
  background: #fff;
  vertical-align: middle;
  content: "";
  -webkit-transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__categories-list-item-link::before {
    width: 8px;
    margin: 0 8px 0 0;
    background: #111;
  }
}

.g-footer .c-nav__categories-list-item-link:hover::before {
  width: 15px;
}

.g-footer .c-nav__pages {
  width: 300px;
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__pages {
    width: 100%;
  }
}

.g-footer .c-nav__pages-list-item {
  margin: 0 0 10px;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__pages-list-item {
    padding: 0;
  }
}

.g-footer .c-nav__pages-list-item-link {
  display: block;
  padding: 20px 0;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  text-align: left;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__pages-list-item-link {
    padding: 20px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 900;
  }
}

.g-footer .c-nav__pages-list-item-link:hover {
  opacity: .5;
}

@media screen and (max-width: 767px) {
  .g-footer .c-nav__pages-list-item-link:hover {
    opacity: 1;
  }
}

.g-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: justify;
      -ms-flex-align: center;
  max-width: 1920px;
  margin: 0 auto;
  padding: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .g-footer__bottom {
    padding: 40px 20px 60px;
  }
}

.g-footer__logo {
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .g-footer__logo {
    width: 100%;
  }
}

.g-footer__logo-link {
  display: inline-block;
  padding: 20px 0;
  line-height: 1;
  color: #fff;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .g-footer__logo-link {
    padding: 10px 0;
  }
}

.g-footer__logo-link:hover {
  opacity: .5;
}

.g-footer__logo-txt {
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 26px;
  font-size: 2.6rem;
  letter-spacing: 4px;
  letter-spacing: 0.4rem;
}

.g-footer__logo-img {
  max-width: 480px;
  max-height: 15px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .g-footer__logo-img {
    max-width: 100%;
  }
}

.g-footer__help {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 40px;
}

@media screen and (max-width: 1330px) {
  .g-footer__help {
    margin-left: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .g-footer__help {
    width: 100%;
    margin: 0 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .g-footer__help {
    margin: 0;
    padding: 20px 0;
  }
}

.g-footer__help-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-align: center;
  margin: 0 -10px;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 1330px) {
  .g-footer__help-list {
    margin: 0 -5px;
  }
}

@media screen and (max-width: 1024px) {
  .g-footer__help-list {
        -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .g-footer__help-list {
    display: block;
  }
}

.g-footer__help-list-item-link {
  position: relative;
  display: block;
  padding: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  text-align: left;
  opacity: 1;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

@media screen and (min-width: 1199px) {
  .g-footer__help-list-item-link:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 1330px) {
  .g-footer__help-list-item-link {
    padding: 5px;
  }
}

@media screen and (max-width: 767px) {
  .g-footer__help-list-item-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.g-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 70px;
}

@media screen and (max-width: 1330px) {
  .g-footer__sns {
    margin-left: 50px;
  }
}

@media screen and (max-width: 1024px) {
  .g-footer__sns {
    margin-left: 0;
  }
}

.g-footer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-align: center;
  margin: 0 -10px;
  -webkit-box-align: center;
          align-items: center;
}

.g-footer__sns-list-item-link {
  position: relative;
  display: block;
  padding: 10px;
  font-size: 0;
  color: #fff;
  opacity: 1;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

.g-footer__sns-list-item-link:hover {
  opacity: .7;
}

.g-footer__sns-list-item-link-icon {
  font-size: 18px;
  font-size: 1.8rem;
}

.g-footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: end;
      -ms-flex-align: center;
  margin-left: 70px;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 1199px) {
  .g-footer__copyright {
        -ms-flex-pack: start;
    width: 100%;
    margin-left: 0;
    padding: 20px 0;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .g-footer__copyright {
    padding: 30px 0 0;
  }
}

.g-footer__copyright-txt {
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
  text-align: left;
}

.g-hamburger__container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100vh;
  pointer-events: none;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

@media screen and (max-width: 1199px) {
  .g-hamburger__container {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .g-hamburger__container {
    margin-top: 44px;
    padding-bottom: 44px;
  }
}

.g-hamburger__container-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
      -ms-flex-pack: stretch;
  height: 100%;
  background: #fff;
  -webkit-box-pack: stretch;
          justify-content: stretch;
}

@media screen and (max-width: 1199px) {
  .g-hamburger__container-inner {
    overflow-x: hidden;
    overflow-y: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

[data-menu='active'] .g-hamburger__container {
  pointer-events: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.g-hamburger__container[data-under-menu='active']::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.g-hamburger__container::before {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  content: "";
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.g-hamburger__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: stretch;
  width: 83%;
  -webkit-box-pack: stretch;
          justify-content: stretch;
}

@media screen and (max-width: 1199px) {
  .g-hamburger__right {
    position: relative;
        -ms-flex-order: 1;
    width: 100%;
    -webkit-box-ordinal-group: 2;
            order: 1;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.g-hamburger__block-other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-pack: end;
  width: 17%;
  padding: 20px 30px 30px;
  background: #111;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 1199px) {
  .g-hamburger__block-other {
        -ms-flex-order: 2;
    width: 100%;
    padding: 30px 30px 30px;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
}

@media screen and (max-width: 767px) {
  .g-hamburger__block-other {
    padding: 30px 16px 70px;
  }
}

.g-hamburger__block-pickup {
  width: 32.5%;
}

@media screen and (max-width: 1199px) {
  .g-hamburger__block-pickup {
        -ms-flex-order: 2;
    width: 100%;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
}

.g-hamburger__block-menu {
  overflow-y: auto;
  width: 77.5%;
  padding: 110px 160px;
}

@media screen and (max-width: 1330px) {
  .g-hamburger__block-menu {
    padding: 70px;
  }
}

@media screen and (max-width: 1199px) {
  .g-hamburger__block-menu {
        -ms-flex-order: 1;
    width: 100%;
    padding: 35px;
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
}

@media screen and (max-width: 767px) {
  .g-hamburger__block-menu {
    padding: 30px 16px;
  }
}

.g-hamburger__logo {
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
}

@media screen and (max-width: 1199px) {
  .g-hamburger__logo {
    position: fixed;
    z-index: 2;
    top: -60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        -ms-flex-align: center;
    width: 100%;
    height: 60px;
    background: #111;
    -webkit-box-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 1199px) and (max-width: 767px) {
  .g-hamburger__logo {
    top: -44px;
    height: 44px;
  }
}

.g-hamburger__logo-link {
  display: block;
  padding: 30px 40px;
  opacity: 1;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

.g-hamburger__logo-link:hover {
  opacity: .7;
}

@media screen and (max-width: 1199px) {
  .g-hamburger__logo-link {
    padding: 4px 16px;
  }
}

.g-hamburger__logo-img {
  max-width: 480px;
  max-height: 15px;
}

@media screen and (max-width: 767px) {
  .g-hamburger__logo-img {
    max-width: 200px;
  }
}

@media screen and (max-width: 374px) {
  .g-hamburger__logo-img {
    max-width: 132px;
  }
}

.g-hamburger__othermenu {
  margin: 0 10px;
}

@media screen and (max-width: 1199px) {
  .g-hamburger__othermenu {
    margin: 0;
  }
}

.g-hamburger__help {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .g-hamburger__help {
    margin-bottom: 30px;
  }
}

.g-hamburger__help-list {
  margin: -10px;
}

@media screen and (max-width: 767px) {
  .g-hamburger__help-list {
    margin: -6px;
  }
}

.g-hamburger__help-list-item-link {
  display: block;
  padding: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  text-align: left;
  opacity: 1;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

@media screen and (min-width: 1199px) {
  .g-hamburger__help-list-item-link:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 767px) {
  .g-hamburger__help-list-item-link {
    padding: 6px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.g-hamburger__sns {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .g-hamburger__sns {
    margin-bottom: 30px;
  }
}

.g-hamburger__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -10px;
}

.g-hamburger__sns-list-item-link {
  display: block;
  padding: 10px;
  color: #fff;
  opacity: 1;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

@media screen and (min-width: 1199px) {
  .g-hamburger__sns-list-item-link:hover {
    opacity: .7;
  }
}

.g-hamburger__sns-list-item-link:hover i {
  opacity: .7;
}

.g-hamburger__sns-list-item-link i {
  font-size: 18px;
  font-size: 1.8rem;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

.g-hamburger__copyright {
  text-align: left;
}

.g-hamburger__copyright-txt {
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
}

.g-hamburger__pickup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}

.g-hamburger__pickup-item {
  height: 33.33333%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.g-hamburger__pickup-link {
  position: relative;
  display: block;
  height: 100%;
}

.g-hamburger__pickup-link:hover .g-hamburger__pickup-bg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.g-hamburger__pickup-link::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(17, 17, 17, 0.35);
  content: "";
}

.g-hamburger__pickup-bg {
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.g-hamburger__pickup-title {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  padding: 20px 40px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .g-hamburger__pickup-title {
    padding: 16px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.g-hamburger__pickup-figure {
  height: 100%;
}

.g-hamburger__pickup-figure::after {
  padding-bottom: 0;
}

@media screen and (max-width: 1199px) {
  .g-hamburger__pickup-figure::after {
    padding-bottom: 70%;
  }
}

.g-hamburger__menu {
  margin-bottom: 100px;
}

@media screen and (max-width: 1199px) {
  .g-hamburger__menu {
    margin-bottom: 0;
  }
}

.g-hamburger__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -30px -45px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1330px) {
  .g-hamburger__menu-list {
    margin: -20px;
  }
}

@media screen and (max-width: 1199px) {
  .g-hamburger__menu-list {
    margin: -15px;
  }
}

.g-hamburger__menu-list-item {
  width: 50%;
}

@media screen and (max-width: 1199px) {
  .g-hamburger__menu-list-item {
    width: 100%;
  }
}

.g-hamburger__menu-list-link {
  display: block;
  padding: 30px 45px;
  text-align: left;
}

@media screen and (min-width: 1199px) {
  .g-hamburger__menu-list-link:hover {
    color: #ab2d2d;
  }
}

.g-hamburger__menu-list-link::after {
  left: 45px;
  width: calc(100% - 80px);
  height: 1px;
  background: #ab2d2d;
}

@media screen and (max-width: 1330px) {
  .g-hamburger__menu-list-link {
    padding: 20px;
  }
}

@media screen and (max-width: 1199px) {
  .g-hamburger__menu-list-link {
    padding: 15px;
  }
}

.g-hamburger__menu-list-txt-main {
  display: inline-block;
  margin-right: 5px;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 1;
  vertical-align: bottom;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 1330px) {
  .g-hamburger__menu-list-txt-main {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .g-hamburger__menu-list-txt-main {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.g-hamburger__menu-list-txt-sub {
  display: inline-block;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.2;
  vertical-align: bottom;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 1330px) {
  .g-hamburger__menu-list-txt-sub {
    width: 100%;
  }
}

@media screen and (max-width: 1199px) {
  .g-hamburger__menu-list-txt-sub {
    width: auto;
    margin-left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .g-hamburger__menu-list-txt-sub {
    letter-spacing: 1px;
    letter-spacing: 0.1rem;
  }
}

.g-hamburger__categories-ttl {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #111;
  text-align: left;
}

@media screen and (max-width: 1199px) {
  .g-hamburger__categories-ttl {
    position: relative;
    margin: 10px -15px 0;
    padding: 15px 30px 15px 15px;
    border: none;
    cursor: pointer;
  }
  .g-hamburger__categories-ttl::before, .g-hamburger__categories-ttl::after {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 1px;
    background: #666;
    content: '';
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .g-hamburger__categories-ttl::before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .g-hamburger__categories-ttl[data-category="active"]::before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

.g-hamburger__categories-ttl-main {
  display: inline-block;
  margin-right: 10px;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  vertical-align: bottom;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 1199px) {
  .g-hamburger__categories-ttl-main {
    font-size: 34px;
    font-size: 3.4rem;
  }
}

@media screen and (max-width: 767px) {
  .g-hamburger__categories-ttl-main {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.g-hamburger__categories-ttl-sub {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
  vertical-align: bottom;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

.g-hamburger__categories-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1199px) {
  .g-hamburger__categories-list {
    display: none;
    margin: 0;
  }
}

.g-hamburger__categories-list-ttl {
  width: 33.3333%;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 1199px) {
  .g-hamburger__categories-list-ttl {
    position: relative;
    width: 100%;
    margin-left: 10px;
    padding-left: 10px;
  }
}

.g-hamburger__categories-list-ttl:not(:nth-child(-n+3)) {
  margin-top: 60px;
}

@media screen and (max-width: 1199px) {
  .g-hamburger__categories-list-ttl:not(:nth-child(-n+3)) {
    margin-top: 0;
  }
}

.g-hamburger__categories-list-ttl::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 1px;
  background: #111;
  content: '';
}

.g-hamburger__categories-list-ttl-link {
  display: block;
  padding: 5px;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

@media screen and (min-width: 1199px) {
  .g-hamburger__categories-list-ttl-link:hover {
    color: #ab2d2d;
  }
}

@media screen and (max-width: 1199px) {
  .g-hamburger__categories-list-ttl-link {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .g-hamburger__categories-list-ttl-link {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

/*----------------------------------------
g-header
----------------------------------------*/
.g-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
}

@media screen and (max-width: 1024px) {
  .g-header {
    z-index: 101;
  }
}

.g-header__main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-align: center;
  height: 60px;
  padding: 0 75px 0 20px;
  background: #111;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 1330px) {
  .g-header__main {
        -ms-flex-pack: end;
    padding: 0;
    -webkit-box-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (max-width: 767px) {
  .g-header__main {
    height: 44px;
  }
}

@media screen and (max-width: 1330px) {
  .g-header__logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
  }
}

.g-header__logo-link {
  display: block;
  padding: 4px 20px 4px 25px;
  line-height: 1;
  color: #fff;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .g-header__logo-link {
    padding: 4px 16px;
  }
}

.g-header__logo-link:hover {
  opacity: .7;
}

.g-header__logo-txt {
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 26px;
  font-size: 2.6rem;
  vertical-align: middle;
  letter-spacing: 4px;
  letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
  .g-header__logo-txt {
    font-size: 20px;
    font-size: 2rem;
  }
}

.g-header__logo-img {
  max-width: 480px;
  max-height: 15px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .g-header__logo-img {
    max-width: 200px;
  }
}

@media screen and (max-width: 374px) {
  .g-header__logo-img {
    max-width: 132px;
  }
}

.g-header__logo-img.is-pc {
  display: block;
}

@media screen and (max-width: 1024px) {
  .g-header__logo-img.is-pc {
    max-width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .g-header__logo-img.is-pc {
    display: none;
  }
}

.g-header__menu {
  display: none;
}

.g-header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 25px;
}

@media screen and (max-width: 1024px) {
  .g-header__menu-list {
    padding: 2px 10px;
  }
}

@media screen and (max-width: 767px) {
  .g-header__menu-list {
    padding: 0;
  }
}

@media screen and (max-width: 1024px) {
  .g-header__menu-list-item {
    display: none;
    padding: 2px 0 0;
  }
}

@media screen and (max-width: 374px) {
  .g-header__menu-list-item {
    padding: 2px 2px 0;
  }
}

.g-header__menu-list-item.is-search {
  display: none;
}

@media screen and (max-width: 1330px) {
  .g-header__menu-list-item.is-search {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .g-header__menu-list-item.is-cart {
    display: block;
  }
}

.g-header__menu-list-item-link {
  position: relative;
  display: block;
  margin: 10px;
  padding: 10px;
  font-size: 0;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .g-header__menu-list-item-link {
    margin: 0;
  }
}

.g-header__menu-list-item-link::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.g-header__menu-list-item-link:hover::before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.g-header__menu-list-item-link-icon {
  position: relative;
  z-index: 1;
  font-size: 26px;
  font-size: 2.6rem;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .g-header__menu-list-item-link-icon {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.g-header__menu-list-item-link-img {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  fill: #fff;
}

.g-header__menu-list-item-link-txt {
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
  max-width: 220px;
  margin: 0 15px 0 0;
  font-weight: 900;
  vertical-align: middle;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1024px) {
  .g-header__menu-list-item-link-txt {
    display: none;
  }
}

.g-header__menu-count {
  position: absolute;
  z-index: 1;
  top: 5px;
  right: 5px;
  min-width: 18px;
  height: 18px;
  padding: 0 3px;
  border-radius: 50px;
  background: #ab2d2d;
  font-size: 10px;
  font-size: 1rem;
  line-height: 18px;
  color: #fff;
}

.g-header__menu-count[data-count="0"] {
  display: none;
}

.g-header__burger {
  position: absolute;
  top: 0;
  right: 15px;
  width: 60px;
  height: 60px;
  border: 0;
  background: none;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .g-header__burger {
    right: 8px;
    width: 44px;
    height: 44px;
  }
}

.g-header__burger-line {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  -webkit-transform: translateX(50%) translateX(4px);
          transform: translateX(50%) translateX(4px);
}

.g-header__burger-line:first-child {
  width: 28px;
  margin: -10px 0 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

@media screen and (max-width: 767px) {
  .g-header__burger-line:first-child {
    margin: -8px 0 0;
  }
}

.g-header__burger-line:last-child {
  width: 16px;
  margin: 10px 0 0;
  -webkit-transform: translateX(50%) translateX(6px);
          transform: translateX(50%) translateX(6px);
}

@media screen and (max-width: 767px) {
  .g-header__burger-line:last-child {
    margin: 8px 0 0;
  }
}

.g-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: justify;
      -ms-flex-align: center;
  padding: 14px 15px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(17, 17, 17, 0.1);
          box-shadow: 0 0 10px rgba(17, 17, 17, 0.1);
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 1330px) {
  .g-header__nav {
    padding: 0;
  }
}

.g-header__nav-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
      -ms-flex-align: center;
  height: 100%;
  -webkit-box-align: center;
          align-items: center;
}

.g-header__nav-categories::-webkit-scrollbar {
  width: 5px;
  height: 2px;
}

.g-header__nav-categories::-webkit-scrollbar-track {
  background: #f8f8f8;
}

.g-header__nav-categories::-webkit-scrollbar-thumb {
  background: #6c6c6c;
}

@media screen and (max-width: 1330px) {
  .g-header__nav-categories {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 60px;
    margin: 0;
    background: #efefef;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@media screen and (max-width: 767px) {
  .g-header__nav-categories {
    height: 44px;
  }
}

.g-header__nav-categories-list {
  white-space: nowrap;
}

@media screen and (max-width: 1330px) {
  .g-header__nav-categories-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        -ms-flex-align: center;
    height: 100%;
    padding: 15px 25px 15px 15px;
    -webkit-box-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .g-header__nav-categories-list {
    padding-left: 6px;
  }
}

.g-header__nav-categories-list-item {
  display: inline-block;
}

.g-header__nav-categories-list-item-link {
  display: block;
  padding: 0 20px;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  opacity: 1;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

@media screen and (min-width: 1199px) {
  .g-header__nav-categories-list-item-link:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 1330px) {
  .g-header__nav-categories-list-item-link {
    padding: 0 10px;
  }
}

@media screen and (max-width: 1330px) {
  .g-header__nav-categories-list-item-link {
    color: #111;
  }
}

@media screen and (max-width: 767px) {
  .g-header__nav-categories-list-item-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.g-header__nav-categories-list-item-link.is-current {
  opacity: .7;
}

.g-header__nav-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 25px 0 0;
}

@media screen and (max-width: 1330px) {
  .g-header__nav-search {
    display: block;
    width: 100%;
    padding: 0;
  }
}

.g-header__nav-search-form {
  position: relative;
  width: calc(100% - 240px);
}

@media screen and (max-width: 1330px) {
  .g-header__nav-search-form {
    display: none;
  }
}

.g-header__nav-search-form-btn {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 20px;
  padding: 10px;
  border: 0;
  background: none;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.g-header__nav-search-form-btn::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  border-radius: 50%;
  background: rgba(52, 52, 52, 0.1);
  content: "";
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: scale(0);
          transform: scale(0);
}

.g-header__nav-search-form-icon {
  font-size: 20px;
  font-size: 2rem;
  color: #707070;
}

.g-header__nav-search-form-input {
  width: 480px;
  padding: 12px 70px 12px 16px;
  border: 1px solid #707070;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
}

.g-header__nav-search-form-input:not(:placeholder-shown) {
  border-color: #ab2d2d;
}

.g-header__nav-search-form-input:not(:placeholder-shown) + .g-header__nav-search-form-btn::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.g-header__nav-search-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: center;
      -ms-flex-align: center;
  width: 240px;
  margin: 0 0 0 20px;
  border: 0;
  background: #cccccc;
  color: #fff;
  cursor: pointer;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1330px) {
  .g-header__nav-search-btn {
    display: none;
  }
}

.g-header__nav-search-btn-txt {
  position: relative;
  z-index: 1;
  margin: 0 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

.g-header__nav-search-btn-icon {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-size: 2rem;
}

.g-header__nav-search-btn-mobile {
  display: none;
      -ms-flex-pack: center;
      -ms-flex-align: center;
  width: 100%;
  padding: 24px 0;
  border: 0;
  background: #fff;
  color: #111;
  cursor: pointer;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1330px) {
  .g-header__nav-search-btn-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .g-header__nav-search-btn-mobile {
    padding: 15px 0;
  }
}

.g-header__nav-search-btn-mobile-txt {
  margin: 0 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

.g-header__nav-search-btn-mobile-icon {
  font-size: 18px;
  font-size: 1.8rem;
}

/*----------------------------------------
g-menu
----------------------------------------*/
body[data-menu="active"] {
  overflow: hidden;
  height: 100%;
}

body[data-menu="active"] .g-menu {
  pointer-events: auto;
}

body[data-menu="active"] .g-menu__header {
  opacity: 1;
}

body[data-menu="active"] .g-menu__container {
  overflow-y: auto;
  opacity: 1;
}

.g-menu {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  pointer-events: none;
}

@media screen and (max-width: 1330px) {
  .g-menu {
    display: block;
  }
}

.g-menu__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: justify;
      -ms-flex-align: center;
  background: #343434;
  -webkit-box-shadow: 0 -1px 0 #343434 inset;
          box-shadow: 0 -1px 0 #343434 inset;
  opacity: 0;
  -webkit-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.3s 0.1s;
  transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.3s 0.1s;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
}

.g-menu__header__logo-link {
  display: block;
  padding: 4px 20px;
  line-height: 1;
  color: #fff;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.g-menu__header__logo-link:hover {
  opacity: .8;
}

.g-menu__header__logo-txt {
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 26px;
  font-size: 2.6rem;
  letter-spacing: 4px;
  letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
  .g-menu__header__logo-txt {
    font-size: 20px;
    font-size: 2rem;
  }
}

.g-menu__header__logo-img {
  max-width: 480px;
  max-height: 38px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .g-menu__header__logo-img {
    max-width: 190px;
  }
}

@media screen and (max-width: 374px) {
  .g-menu__header__logo-img {
    max-width: 132px;
  }
}

.g-menu__header__burger {
  position: absolute;
  top: 0;
  right: 15px;
  width: 60px;
  height: 60px;
  border: 0;
  background: none;
  cursor: pointer;
}

@media screen and (max-width: 1199px) {
  .g-menu__header__burger {
    top: 30px;
    right: 6px;
    width: 35px;
    height: 35px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (max-width: 1024px) {
  .g-menu__header__burger {
    position: fixed;
    z-index: 2;
    top: -30px;
  }
}

@media screen and (max-width: 767px) {
  .g-menu__header__burger {
    top: -22px;
  }
}

.g-menu__header__burger-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1px;
  border-radius: 10px;
  background: #111;
  -webkit-transform: translateX(-12px);
          transform: translateX(-12px);
  -webkit-transform-origin: center;
          transform-origin: center;
}

@media screen and (max-width: 1199px) {
  .g-menu__header__burger-line {
    width: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .g-menu__header__burger-line {
    background: #fff;
  }
}

.g-menu__header__burger-line:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.g-menu__header__burger-line:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.g-menu__container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: calc(100% - 70px);
  background: #343434;
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.3s 0.1s;
  transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.3s 0.1s;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 767px) {
  .g-menu__container {
    height: calc(100% - 58px);
  }
}

.g-menu__account-list-item {
  border-bottom: 1px solid #343434;
}

.g-menu__account-list-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-align: center;
  padding: 15px 20px;
  background: #cccccc;
  color: #fff;
  -webkit-box-align: center;
          align-items: center;
}

.g-menu__account-list-item-link-icon {
  width: 28px;
  margin: 0 20px 0 0;
  font-size: 24px;
  font-size: 2.4rem;
}

.g-menu__account-list-item-link-img {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  margin: 0 20px 0 0;
  vertical-align: middle;
  fill: #fff;
}

.g-menu__account-list-item-link-txt {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
}

.g-menu .c-nav__categories {
  display: block;
  width: 100%;
}

.g-menu .c-nav__categories-ttl {
  display: none;
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .g-menu .c-nav__categories-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.g-menu .c-nav__categories-child {
  width: 100%;
  padding: 0;
  text-align: left;
}

.g-menu .c-nav__categories-child-ttl {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 900;
  color: #fff;
  cursor: pointer;
}

.g-menu .c-nav__categories-child-ttl::before, .g-menu .c-nav__categories-child-ttl::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 14px;
  height: 2px;
  margin: -1px 0 0;
  background: #fff;
}

.g-menu .c-nav__categories-child-ttl::after {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.g-menu .c-nav__categories-child-ttl.is-active::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.g-menu .c-nav__categories-child-ttl.js-accrodion-btn::before, .g-menu .c-nav__categories-child-ttl.js-accrodion-btn::after {
  display: block;
  content: "";
}

.g-menu .c-nav__categories-child-ttl.js-accrodion-btn .c-nav__categories-child-ttl-link {
  pointer-events: none;
}

.g-menu .c-nav__categories-child-ttl-link {
  display: block;
  padding: 20px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .g-menu .c-nav__categories-child-ttl-link {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.g-menu .c-nav__categories-list {
  display: none;
  padding: 10px 0;
  border-bottom: 1px solid #343434;
  background: #fff;
}

.g-menu .c-nav__categories-list-item-link {
  display: block;
  padding: 10px 20px;
  color: #111;
}

@media screen and (max-width: 767px) {
  .g-menu .c-nav__categories-list-item-link {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.g-menu .c-nav__categories-list-item-link::before {
  display: inline-block;
  width: 10px;
  height: 1px;
  margin: 0 10px 0 0;
  background: #111;
  vertical-align: middle;
  content: "";
}

@media screen and (max-width: 767px) {
  .g-menu .c-nav__categories-list-item-link::before {
    width: 8px;
    margin: 0 8px 0 0;
  }
}

.g-menu .c-nav__pages {
  width: 100%;
}

.g-menu .c-nav__pages-list-item-link {
  display: block;
  padding: 20px;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .g-menu .c-nav__pages-list-item-link {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 900;
  }
}

.g-side__menu {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
  -webkit-animation: sidemenu_reverse 1s ease forwards;
          animation: sidemenu_reverse 1s ease forwards;
}

[data-menu="active"] .g-side__menu {
  -webkit-animation: sidemenu 1s ease forwards;
          animation: sidemenu 1s ease forwards;
}

@media screen and (max-width: 1024px) {
  .g-side__menu {
    left: 0;
    pointer-events: none;
    -webkit-animation: none;
            animation: none;
  }
}

.g-side__menu-list {
  background: #111;
}

@media screen and (max-width: 1024px) {
  .g-side__menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity .6s ease, -webkit-transform .6s ease;
    transition: opacity .6s ease, -webkit-transform .6s ease;
    transition: transform .6s ease, opacity .6s ease;
    transition: transform .6s ease, opacity .6s ease, -webkit-transform .6s ease;
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
        justify-content: space-around;
  }
}

@media screen and (max-width: 1024px) {
  .g-side__menu-list.is-reverse {
    pointer-events: initial;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.g-side__menu-list-item-link {
  position: relative;
  display: block;
  padding: 20px;
  line-height: 0;
}

@media screen and (min-width: 1199px) {
  .g-side__menu-list-item-link:hover .g-side__menu-list-item-link-img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@media screen and (max-width: 1330px) {
  .g-side__menu-list-item-link {
    padding: 15px;
  }
}

.g-side__menu-list-item-link-img {
  width: 22px;
  height: 22px;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.g-side__menu-list-item-link-login {
  width: 25px;
  height: 25px;
}

.g-side__menu-list-item-link-login-g {
  fill: none;
  stroke: #fff;
}

.g-side__menu-list-item-link-login-rect-01 {
  stroke: none;
}

.g-side__menu-list-item-link-login-rect-02 {
  fill: none;
}

.g-side__menu-list-item-link-login-path {
  fill: #fff;
  stroke: #111;
}

.g-side__menu-list-item-link-search-g {
  fill: none;
  stroke: #fff;
}

.g-side__menu-list-item-link-search-line {
  fill: none;
  stroke: #fff;
}

.g-side__menu-list-item-link-search-circle-01 {
  stroke: none;
}

.g-side__menu-list-item-link-search-circle-02 {
  fill: none;
}

.g-side__menu-list-item-link-news-path {
  fill: none;
  stroke: #fff;
}

.g-side__menu-list-item-link-wish-path {
  fill: #fff;
}

.g-side__menu-list-item-link-cart {
  width: 25px;
  height: 25px;
}

.g-side__menu-list-item-link-cart-path {
  fill: #fff;
  stroke: #111;
}

.g-side__menu-count {
  position: absolute;
  top: 16px;
  right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: center;
      -ms-flex-align: center;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #ab2d2d;
  color: #fff;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 1330px) {
  .g-side__menu-count {
    top: 11px;
    right: 11px;
  }
}

@-webkit-keyframes sidemenu {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  30% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  40% {
    -webkit-transform: translateX(100%) translateY(65px);
            transform: translateX(100%) translateY(65px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(65px);
            transform: translateX(0) translateY(65px);
  }
}

@keyframes sidemenu {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  30% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  40% {
    -webkit-transform: translateX(100%) translateY(65px);
            transform: translateX(100%) translateY(65px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(65px);
            transform: translateX(0) translateY(65px);
  }
}

@-webkit-keyframes sidemenu_reverse {
  0% {
    -webkit-transform: translateX(0) translateY(65px);
            transform: translateX(0) translateY(65px);
  }
  30% {
    -webkit-transform: translateX(100%) translateY(65px);
            transform: translateX(100%) translateY(65px);
  }
  40% {
    -webkit-transform: translateX(100%) translateY(0);
            transform: translateX(100%) translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

@keyframes sidemenu_reverse {
  0% {
    -webkit-transform: translateX(0) translateY(65px);
            transform: translateX(0) translateY(65px);
  }
  30% {
    -webkit-transform: translateX(100%) translateY(65px);
            transform: translateX(100%) translateY(65px);
  }
  40% {
    -webkit-transform: translateX(100%) translateY(0);
            transform: translateX(100%) translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

@media screen and (max-width: 1330px) {
  @-webkit-keyframes sidemenu {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    30% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
    40% {
      -webkit-transform: translateX(100%) translateY(55px);
              transform: translateX(100%) translateY(55px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0) translateY(55px);
              transform: translateX(0) translateY(55px);
    }
  }
  @-webkit-keyframes sidemenu_reverse {
    0% {
      -webkit-transform: translateX(0) translateY(55px);
              transform: translateX(0) translateY(55px);
    }
    30% {
      -webkit-transform: translateX(100%) translateY(55px);
              transform: translateX(100%) translateY(55px);
    }
    40% {
      -webkit-transform: translateX(100%) translateY(0);
              transform: translateX(100%) translateY(0);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0) translateY(0);
              transform: translateX(0) translateY(0);
    }
  }
  @keyframes sidemenu {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    30% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
    40% {
      -webkit-transform: translateX(100%) translateY(55px);
              transform: translateX(100%) translateY(55px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0) translateY(55px);
              transform: translateX(0) translateY(55px);
    }
  }
  @keyframes sidemenu_reverse {
    0% {
      -webkit-transform: translateX(0) translateY(55px);
              transform: translateX(0) translateY(55px);
    }
    30% {
      -webkit-transform: translateX(100%) translateY(55px);
              transform: translateX(100%) translateY(55px);
    }
    40% {
      -webkit-transform: translateX(100%) translateY(0);
              transform: translateX(100%) translateY(0);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0) translateY(0);
              transform: translateX(0) translateY(0);
    }
  }
}

/*----------------------------------------
g-pagetop
----------------------------------------*/
@media screen and (max-width: 1024px) {
  .g-pagetop {
    position: absolute;
    right: 0;
    bottom: 20px;
    pointer-events: initial;
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
  }
  .is-reverse + .g-pagetop {
    -webkit-transform: translateY(-55px);
            transform: translateY(-55px);
  }
}

.g-pagetop-btn {
  width: 65px;
  height: 65px;
  border: 0;
  outline: none;
  background: #efefef;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}

@media screen and (max-width: 1330px) {
  .g-pagetop-btn {
    width: 55px;
    height: 55px;
  }
}

@media screen and (max-width: 767px) {
  .g-pagetop-btn {
    width: 44px;
    height: 44px;
  }
}

@media screen and (min-width: 1199px) {
  .g-pagetop-btn:hover::before {
    -webkit-transform: translateY(25%) rotate(45deg) scale(1.2);
            transform: translateY(25%) rotate(45deg) scale(1.2);
  }
}

.g-pagetop-btn::before {
  display: inline-block;
  width: 9px;
  height: 9px;
  border: solid #111;
  border-width: 1px 0 0 1px;
  content: "";
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform: translateY(25%) rotate(45deg) scale(1);
          transform: translateY(25%) rotate(45deg) scale(1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

/*----------------------------------------
g-search
----------------------------------------*/
body[data-search="active"] {
  overflow: hidden;
  height: 100%;
}

body[data-search="active"] .g-search {
  pointer-events: auto;
}

body[data-search="active"] .g-search::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  content: '';
}

body[data-search="active"] .g-search__container {
  overflow-y: auto;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body[data-search="active"] .g-search__form-submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

.g-search {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  -webkit-transition: background cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  transition: background cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

.g-search__container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: end;
  height: 100vh;
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.3s, -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.3s, -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.3s, transform cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.3s, transform cubic-bezier(0.19, 1, 0.22, 1) 0.3s, -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-overflow-scrolling: touch;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .g-search__container {
    padding: 0;
  }
}

.g-search__ttl {
  margin-bottom: 70px;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .g-search__ttl {
    margin-bottom: 14px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.g-search__burger {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border: 0;
  background: none;
  cursor: pointer;
}

@media screen and (max-width: 1199px) {
  .g-search__burger {
    top: 6px;
    right: 6px;
    width: 35px;
    height: 35px;
  }
}

.g-search__burger-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1px;
  border-radius: 10px;
  background: #cccccc;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
  -webkit-transform-origin: center;
          transform-origin: center;
}

@media screen and (max-width: 1199px) {
  .g-search__burger-line {
    width: 20px;
  }
}

.g-search__burger-line:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.g-search__burger-line:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.g-search__enabled {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.g-search__inner {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  max-width: 480px;
  padding: 100px 40px 135px;
  background: #111;
}

@media screen and (max-width: 767px) {
  .g-search__inner {
    padding: 16px 16px 20px;
  }
}

@media screen and (max-width: 767px) {
  .g-search__form {
    padding: 16px 16px 0;
  }
}

.g-search__form-txt {
  position: relative;
  margin: 0 0 20px;
}

@media screen and (max-width: 767px) {
  .g-search__form-txt {
    margin: 0;
  }
}

.g-search__form-txt-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  color: #cccccc;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.g-search__form .g-search__form-txt-icon + input[type="text"] {
  padding: 15px 60px 15px 20px;
  border: 1px solid #fff;
  background: #111;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .g-search__form .g-search__form-txt-icon + input[type="text"] {
    padding: 10px 45px 10px 15px;
  }
}

.g-search__form input[type="text"] {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #fff;
  background: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .g-search__form input[type="text"] {
    padding: 10px 15px;
  }
}

.g-search__form input[type="text"]:not(:placeholder-shown) {
  border-color: #ab2d2d;
}

.g-search__form select {
  width: 100%;
  padding: 15px 40px 15px 20px;
  border: 1px solid #fff;
  background: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .g-search__form select {
    padding: 10px 40px 10px 15px;
  }
}

.g-search__form select:disabled {
  background: #f5f5f5;
  color: #fff;
  opacity: .3;
}

.g-search__form-select {
  position: relative;
}

.g-search__form-select::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 10px;
  height: 10px;
  border: solid #cccccc;
  border-width: 0 1px 1px 0;
  pointer-events: none;
  content: "";
  -webkit-transform: translateY(-75%) rotate(45deg);
          transform: translateY(-75%) rotate(45deg);
}

.g-search__form-checkbox, .g-search__form-radio {
  display: block;
}

.g-search__form-checkbox input, .g-search__form-radio input {
  display: none;
}

.g-search__form-checkbox input + span, .g-search__form-radio input + span {
  position: relative;
  display: inline-block;
  margin: 0 40px 10px 0;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: left;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .g-search__form-checkbox input + span, .g-search__form-radio input + span {
    margin-right: 20px;
  }
}

.g-search__form-checkbox input + span::before, .g-search__form-radio input + span::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 10px 0 0;
  border: 1px solid #fff;
  background: #111;
  vertical-align: middle;
  content: "";
  -webkit-transition: background 0.3s cubic-bezier(0.19, 1, 0.22, 1), border 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background 0.3s cubic-bezier(0.19, 1, 0.22, 1), border 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.g-search__form-checkbox input + span::after, .g-search__form-radio input + span::after {
  position: absolute;
  top: 6px;
  left: 11px;
  display: inline-block;
  width: 2px;
  height: 8px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.g-search__form-checkbox input:checked + span::before, .g-search__form-radio input:checked + span::before {
  border-color: #ab2d2d;
  background: #ab2d2d;
}

.g-search__form-checkbox input:checked + span::after, .g-search__form-radio input:checked + span::after {
  opacity: 1;
}

.g-search__form-checkbox input[type="radio"] + span::before, .g-search__form-radio input[type="radio"] + span::before {
  border-radius: 50%;
}

.g-search__form-checkbox input[type="checkbox"] + span::before, .g-search__form-radio input[type="checkbox"] + span::before {
  border-radius: 1px;
}

.g-search__form-submit {
  padding: 40px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .g-search__form-submit {
    padding: 20px 0 0;
  }
}

.g-search__form-submit-btn {
  position: relative;
  display: none;
  width: 100%;
  height: 60px;
  border: 0;
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #111;
  cursor: pointer;
}

@media screen and (min-width: 1199px) {
  .g-search__form-submit-btn:hover {
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .g-search__form-submit-btn {
    padding: 12px 0;
  }
}

.g-search__form-submit-btn:disabled {
  cursor: auto;
  opacity: .5;
}

.g-search__form-submit-btn:disabled::before {
  display: none;
}

.g-search__form-submit-btn-txt {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .g-search__form-submit-btn-txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.g-search__form-submit-btn-icon {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-size: 2rem;
}

.g-search__form-submit-btn-img {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
}

.g-search__form-submit-btn-search-g {
  fill: none;
  stroke: #111;
}

.g-search__form-submit-btn:hover .g-search__form-submit-btn-search-g {
  stroke: #fff;
}

.g-search__form-submit-btn-search-line {
  fill: none;
  stroke: #111;
}

.g-search__form-submit-btn:hover .g-search__form-submit-btn-search-line {
  stroke: #fff;
}

.g-search__form-submit-btn-search-circle-01 {
  stroke: none;
}

.g-search__form-submit-btn-search-circle-02 {
  fill: none;
}

.g-search__form-ttl {
  position: relative;
  margin: 30px 0 10px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .g-search__form-ttl {
    display: block;
  }
}

.g-search__form-ttl-txt {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  color: #fff;
}

.g-search__form-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .g-search__form-list {
    padding: 0;
  }
}

.g-search__form-hyphen {
  padding: 0 10px;
}

.g-search__form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .g-search__form-row {
    padding: 0;
  }
}

.g-search__form-cell {
  width: 100%;
  padding: 20px 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .g-search__form-cell {
    padding: 16px 0;
  }
}

.g-search__form-cell-label {
  display: block;
  margin: 0 0 10px;
  color: #fff;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .g-search__form-cell-label {
    margin: 0 0 6px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.g-search__form-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: justify;
      -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.g-search__form-price input[type="text"] {
  width: 45%;
}

/*----------------------------------------
g-select
----------------------------------------*/
body[data-select="active"] {
  overflow: hidden;
  height: 100%;
}

body[data-select="active"] .g-select {
  overflow-y: auto;
  pointer-events: auto;
}

body[data-select="active"] .g-select__enabled {
  opacity: 1;
}

body[data-select="active"] .g-select__container {
  opacity: 1;
}

.g-select {
  position: fixed;
  z-index: 11;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  pointer-events: none;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 1330px) {
  .g-select {
    display: block;
  }
}

.g-select::before {
  display: block;
  padding: 151px 0 0;
  content: "";
}

@media screen and (max-width: 1330px) {
  .g-select::before {
    padding: 143px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .g-select::before {
    padding: 114px 0 0;
  }
}

.g-select__container {
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.3s 0.1s;
  transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.3s 0.1s;
}

.g-select__enabled {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(17, 17, 17, 0.8);
  opacity: 0;
  -webkit-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.3s 0.1s;
  transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.3s 0.1s;
}

.g-select__category {
  position: relative;
  z-index: 1;
}

.g-select__category-list-item {
  border-bottom: 1px solid #cccccc;
}

.g-select__category-list-item-link {
  display: block;
  padding: 15px 20px;
  background: #fff;
  color: #111;
  text-align: center;
}

.g-select__category-list-item-link.is-current {
  background: #ab2d2d;
  color: #fff;
}

.g-select__category-list-item-link-txt {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
}

/*----------------------------------------
c-blog-categories
----------------------------------------*/
.c-blog-categories {
  margin: 0 0 30px;
}

@media screen and (max-width: 1024px) {
  .c-blog-categories {
    margin: 0 0 20px;
  }
}

.c-blog-categories__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -10px -20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .c-blog-categories__list {
    margin: -10px;
  }
}

.c-blog-categories__list-item {
  padding: 5px 20px;
}

@media screen and (max-width: 1024px) {
  .c-blog-categories__list-item {
    padding: 5px 10px;
  }
}

.c-blog-categories__list-item-link {
  display: block;
  padding: 5px 0;
}

.c-blog-categories__list-item-link::after {
  height: 1px;
}

/*----------------------------------------
c-breadcrumbs
----------------------------------------*/
.c-breadcrumbs {
  max-width: 1920px;
  margin: 20px auto;
  padding: 0 80px;
}

@media screen and (max-width: 1024px) {
  .c-breadcrumbs {
    margin: 30px auto;
    padding: 0;
  }
}

.c-breadcrumbs__list {
  overflow: hidden;
  margin: 0 -30px;
  text-align: left;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  .c-breadcrumbs__list {
    display: none;
  }
}

.c-breadcrumbs__list-item {
  position: relative;
  display: inline-block;
  padding: 10px;
}

.c-breadcrumbs__list-item:last-child::after {
  display: none;
}

.c-breadcrumbs__list-item::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 6px;
  height: 6px;
  border: solid #111;
  border-width: 1px 1px 0 0;
  content: "";
  -webkit-transform: rotate(45deg) translateY(-100%);
          transform: rotate(45deg) translateY(-100%);
}

.c-breadcrumbs__list-item-body {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

.c-breadcrumbs__list-item-body:hover {
  color: #111;
}

.c-breadcrumbs__list-item-body::after {
  left: 20px;
  width: calc(100% - 40px);
  height: 1px;
  background: #111;
}

.c-breadcrumbs__list-item-body.is-link-none {
  color: #b2b2b2;
  cursor: default;
}

.c-breadcrumbs__list-item-body.is-link-none::after {
  content: none;
}

/*----------------------------------------
c-btn-choices
----------------------------------------*/
.c-btn-choices {
  padding: 20px 0;
  font-size: 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-btn-choices {
    padding: 0;
  }
}

.c-btn-choices__body {
  position: relative;
  display: inline-block;
  width: 320px;
  max-width: 100%;
  margin: 0 20px;
  padding: 20px 0;
  border: 0;
  background: #111;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .c-btn-choices__body {
    width: 100%;
    margin: 10px 0;
  }
}

.c-btn-choices__body.is-primary {
  background: #ab2d2d;
}

.c-btn-choices__body.is-primary::before {
  background: #751313;
}

.c-btn-choices__body-txt {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .c-btn-choices__body-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/*----------------------------------------
c-btn
----------------------------------------*/
.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: end;
  margin: 0 -20px 0 0;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.c-btn.is-square {
      -ms-flex-pack: center;
  margin: 0;
  -webkit-box-pack: center;
          justify-content: center;
}

.c-btn__body {
  position: relative;
  display: inline-block;
  padding: 15px 20px 15px 40px;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (min-width: 1199px) {
  .c-btn__body:hover::after {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
}

@media screen and (max-width: 767px) {
  .c-btn__body {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.c-btn__body::after {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: calc(100% - 20px);
  height: 1px;
  background: #111;
  content: "";
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: center left;
          transform-origin: center left;
}

.is-square .c-btn__body {
  min-width: 280px;
  padding: 15px 40px;
  background: #111;
  color: #fff;
}

.is-square .c-btn__body::after {
  content: none;
}

.c-slider-nav-next {
  position: relative;
  width: 60px;
  height: 60px;
  margin-left: 1px;
  background: #efefef;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .c-slider-nav-next {
    width: 40px;
    height: 40px;
  }
}

@media screen and (min-width: 1199px) {
  .c-slider-nav-next:hover::before {
    -webkit-transform: translateY(-50%) translateX(-75%) rotate(135deg) scale(1.2);
            transform: translateY(-50%) translateX(-75%) rotate(135deg) scale(1.2);
  }
}

.c-slider-nav-next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 9px;
  height: 9px;
  border: solid #111;
  border-width: 1px 0 0 1px;
  content: "";
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform: translateY(-50%) translateX(-75%) rotate(135deg) scale(1);
          transform: translateY(-50%) translateX(-75%) rotate(135deg) scale(1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.c-slider-nav-prev {
  position: relative;
  width: 60px;
  height: 60px;
  background: #efefef;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .c-slider-nav-prev {
    width: 40px;
    height: 40px;
  }
}

@media screen and (min-width: 1199px) {
  .c-slider-nav-prev:hover::before {
    -webkit-transform: translateY(-50%) translateX(-25%) rotate(315deg) scale(1.2);
            transform: translateY(-50%) translateX(-25%) rotate(315deg) scale(1.2);
  }
}

.c-slider-nav-prev::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 9px;
  height: 9px;
  border: solid #111;
  border-width: 1px 0 0 1px;
  content: "";
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform: translateY(-50%) translateX(-25%) rotate(315deg) scale(1);
          transform: translateY(-50%) translateX(-25%) rotate(315deg) scale(1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

/*----------------------------------------
c-cart-btn
----------------------------------------*/
.c-cart-btn.is-small .c-cart-btn__body {
  padding: 10px 0;
}

.c-cart-btn.is-small .c-cart-btn__body-icon {
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .c-cart-btn.is-small .c-cart-btn__body-icon {
    margin: 0 10px 0 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-cart-btn.is-small .c-cart-btn__body-txt {
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .c-cart-btn.is-small .c-cart-btn__body-txt {
    letter-spacing: 1px;
    letter-spacing: 0.1rem;
  }
}

@media screen and (max-width: 374px) {
  .c-cart-btn.is-small .c-cart-btn__body-txt {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-cart-btn__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: center;
      -ms-flex-align: center;
  width: 100%;
  padding: 20px 0;
  border: 0;
  outline: none;
  background: #ab2d2d;
  color: #fff;
  cursor: pointer;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

.c-cart-btn__body::before {
  background: #751313;
}

.c-cart-btn__body.is-sold-out {
  background: #777;
  pointer-events: none;
}

.c-cart-btn__body.is-sold-out:hover {
  background: #777;
}

.c-cart-btn__body-icon {
  position: relative;
  z-index: 1;
  margin: 0 20px 0 0;
  font-size: 28px;
  font-size: 2.8rem;
}

.c-cart-btn__body-txt {
  position: relative;
  z-index: 1;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

/*----------------------------------------
c-cart-price
----------------------------------------*/
.c-cart-price {
  padding: 30px 20px;
  background: #f9f9f9;
}

.c-cart-price__detail {
  display: table;
  width: 100%;
}

.c-cart-price__detail-row {
  display: table-row;
}

.c-cart-price__detail-cell-ttl, .c-cart-price__detail-cell-desc {
  display: table-cell;
  padding: 5px;
}

.c-cart-price__detail-cell-ttl {
  font-weight: 900;
  text-align: left;
}

.c-cart-price__detail-cell-desc {
  text-align: right;
}

.c-cart-price__all {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid #707070;
}

.c-cart-price__all-ttl, .c-cart-price__all-desc {
  display: inline-block;
  padding: 5px;
}

/*----------------------------------------
c-category-header
----------------------------------------*/
.c-category-header {
  margin: 0 0 26px;
  color: #343434;
}

@media screen and (max-width: 1024px) {
  .c-category-header {
    padding: 10px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .c-category-header {
    margin: 0 0 20px;
    padding: 0;
  }
}

.c-category-header__form {
  display: table;
  width: 100%;
}

.c-category-header__row {
  display: table-row;
  width: 100%;
}

.c-category-header__cell {
  display: table-cell;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .c-category-header__category {
    overflow: hidden;
    max-height: 72px;
  }
}

.c-category-header__category.is-active {
  max-height: 100%;
}

.c-category-header__category-item {
  display: inline-block;
  margin: 0 20px 10px 0;
  padding: 4px 16px;
  border-radius: 50px;
  background: #f9f9f9;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .c-category-header__category-item {
    margin: 0 5px 10px 0;
  }
}

.c-category-header__category-item:hover {
  background: #eee;
}

.c-category-header__category-item-txt {
  font-size: 14px;
  font-size: 1.4rem;
}

.c-category-header__category-item-icon {
  color: #999;
}

/*----------------------------------------
c-data-table
----------------------------------------*/
.c-data-table {
  text-align: justify;
}

.c-data-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #f7f6f2;
  text-align: justify;
}

@media screen and (max-width: 1024px) {
  .c-data-table__row {
    display: block;
    border-bottom: none;
  }
  .c-data-table__row:not(:first-child) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .c-data-table__row:not(:first-child) {
    margin-top: 20px;
  }
}

.c-data-table__row:nth-child(even) {
  background: none;
}

.c-data-table__ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-align: center;
  width: 30%;
  padding: 30px 10px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 1024px) {
  .c-data-table__ttl {
    width: 100%;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #f7f6f2;
  }
}

@media screen and (max-width: 767px) {
  .c-data-table__ttl {
    padding-bottom: 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.c-data-table__ttl::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: #111;
  content: "";
}

@media screen and (max-width: 1024px) {
  .c-data-table__ttl::after {
    right: auto;
    width: 180px;
  }
}

.c-data-table__desc {
  width: 70%;
  padding: 30px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
}

@media screen and (max-width: 1024px) {
  .c-data-table__desc {
    width: 100%;
    padding: 20px 0 0 0;
  }
}

@media screen and (max-width: 767px) {
  .c-data-table__desc {
    padding-top: 10px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

/*----------------------------------------
c-d-list
----------------------------------------*/
.c-d-list {
  margin: -25px 0 0;
  text-align: justify;
}

.c-d-list__row {
  padding: 25px 0;
}

.c-d-list__ttl {
  padding: 5px 0;
  color: #ab2d2d;
}

.c-d-list__desc {
  padding: 5px 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
}

/*----------------------------------------
c-detail-data
----------------------------------------*/
.c-detail-data {
  padding: 40px 0 0;
  text-align: left;
}

@media screen and (max-width: 1199px) {
  .c-detail-data {
    padding: 40px 0 40px;
  }
}

@media screen and (max-width: 1024px) {
  .c-detail-data {
    padding: 20px 0 40px;
  }
}

.c-detail-data__ttl {
  position: relative;
  padding: 30px 50px 30px 0;
  border-bottom: 1px solid #f7f6f2;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
  .c-detail-data__ttl {
    padding: 18px 50px 18px 0;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.c-detail-data__ttl::before, .c-detail-data__ttl::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 1px;
  background: #343434;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-detail-data__ttl::after {
  opacity: 1;
  -webkit-transform: translateY(0) rotate(90deg);
          transform: translateY(0) rotate(90deg);
}

.c-detail-data__ttl.is-active::after {
  opacity: 0;
  -webkit-transform: translateY(10px) rotate(90deg);
          transform: translateY(10px) rotate(90deg);
}

.c-detail-data__ttl.js-accrodion-btn {
  cursor: pointer;
}

.c-detail-data__ttl.js-accrodion-btn::before, .c-detail-data__ttl.js-accrodion-btn::after {
  display: block;
  content: "";
}

.c-detail-data__ttl-container::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 180px;
  height: 1px;
  background: #111;
  content: '';
}

.c-detail-data__desc {
  margin: 20px -10px -10px;
}

@media screen and (max-width: 767px) {
  .c-detail-data__desc {
    margin-top: 10px;
  }
}

.c-detail-data__desc table {
  width: 100%;
  table-layout: fixed;
}

.c-detail-data__desc p:not([class]) {
  padding: 10px;
  text-align: justify;
  letter-spacing: 1px;
  letter-spacing: 0.1rem;
}

/*----------------------------------------
c-detail-header
----------------------------------------*/
.c-detail-header {
  text-align: left;
  opacity: 1;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 1024px) {
  .c-detail-header {
    padding: 20px 0 0;
  }
}

.c-detail-header[data-status="fixed"] {
  position: fixed;
}

@media screen and (max-width: 1024px) {
  .c-detail-header[data-status="fixed"] {
    position: static;
  }
}

.c-detail-header[data-status="fadeout"] {
  position: fixed;
  pointer-events: none;
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  .c-detail-header[data-status="fadeout"] {
    position: static;
    pointer-events: auto;
    opacity: 1;
  }
}

.c-detail-header__ttl {
  margin: 0 0 10px;
  font-size: 22px;
  font-size: 2.2rem;
}

@media screen and (max-width: 1024px) {
  .c-detail-header__ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-detail-header__price {
  margin: 0 0 10px;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
  .c-detail-header__price {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.c-detail-header__price.is-variation {
  padding: 8px 20px 10px;
  background: #f5f5f5;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 1px;
  letter-spacing: 0.1rem;
}

@media screen and (max-width: 1024px) {
  .c-detail-header__price.is-variation {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-detail-header__price.is-variation small {
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
  .c-detail-header__price.is-variation small {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-detail-header__price.is-discount {
  margin: 0;
  font-size: 22px;
  font-size: 2.2rem;
  text-decoration: line-through;
}

@media screen and (max-width: 1024px) {
  .c-detail-header__price.is-discount {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.c-detail-header__price.is-discount small {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 1024px) {
  .c-detail-header__price.is-discount small {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-detail-header__price.is-sale {
  color: #ab2d2d;
}

.c-detail-header__price + :not([class^="c-detail-header__price"]) {
  padding: 20px 0 0;
}

.c-detail-header__price small {
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 1024px) {
  .c-detail-header__price small {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-detail-header__price small:last-child {
  margin: 0 0 0 5px;
}

.c-detail-header__colors {
  margin: 0 0 10px;
}

@media screen and (max-width: 1024px) {
  .c-detail-header__colors {
    margin: 0;
  }
}

.c-detail-header__colors-ttl {
  font-weight: 900;
}

.c-detail-header__colors-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-detail-header__colors-list-item {
  padding: 10px;
}

.c-detail-header__colors-list-item-btn {
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid #ddd;
  outline: none;
  background: none;
  cursor: pointer;
}

.c-detail-header__colors-list-item-btn-radio {
  display: none;
}

.c-detail-header__colors-list-item-btn-radio:checked + .c-detail-header__colors-list-item-btn-color {
  border: 3px solid #ab2d2d;
  -webkit-box-shadow: 0 0 0 4px #fff inset;
          box-shadow: 0 0 0 4px #fff inset;
}

.c-detail-header__colors-list-item-btn-color {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: border 0.3s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: border 0.3s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-detail-header__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .c-detail-header__form {
    margin: 0 -10px 20px;
  }
}

.c-detail-header__form .c-error {
  margin: 10px 0 0;
}

.c-detail-header__form-item {
  width: 50%;
  padding: 10px 20px;
}

@media screen and (max-width: 1024px) {
  .c-detail-header__form-item {
    padding: 10px;
  }
}

.c-detail-header__form-item-ttl {
  display: block;
  margin: 0 0 10px;
  font-weight: 900;
}

.c-detail-header__form input[type="number"] {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #cccccc;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .c-detail-header__form input[type="number"] {
    padding: 10px 15px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-detail-header__form select {
  width: 100%;
  padding: 10px 40px 10px 20px;
  border: 1px solid #cccccc;
  background: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .c-detail-header__form select {
    padding: 10px 40px 10px 15px;
  }
}

.c-detail-header__form-select {
  position: relative;
}

.c-detail-header__form-select::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 10px;
  height: 10px;
  border: solid #cccccc;
  border-width: 0 1px 1px 0;
  pointer-events: none;
  content: "";
  -webkit-transform: translateY(-75%) rotate(45deg);
          transform: translateY(-75%) rotate(45deg);
}

.c-detail-header .c-cart-btn {
  margin: 0 0 20px;
}

.c-detail-header__nav-item {
  padding: 10px 0;
}

.c-detail-header__nav-item-link {
  text-decoration: underline;
}

/*----------------------------------------
c-detail-images
----------------------------------------*/
.c-detail-images__outer {
  position: relative;
}

.c-detail-images__outer .c-favorite-btn {
  top: 20px;
  right: 20px;
  width: 68px;
  height: 68px;
}

@media screen and (max-width: 1024px) {
  .c-detail-images__outer .c-favorite-btn {
    top: 10px;
    right: 10px;
    width: 46px;
    height: 46px;
  }
}

.c-detail-images__outer .c-favorite-btn::before {
  border-width: 34px;
}

@media screen and (max-width: 767px) {
  .c-detail-images__outer .c-favorite-btn::before {
    border-width: 23px;
  }
}

.c-detail-images__outer .c-favorite-btn::after {
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 1024px) {
  .c-detail-images__outer .c-favorite-btn::after {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.c-detail-images__slide-link {
  display: block;
  background: no-repeat center;
  background-size: cover;
}

.c-detail-images__slide-link::after {
  display: block;
  padding: 120% 0 0;
  content: "";
}

.c-detail-images__thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
  padding: 10px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .c-detail-images__thumbnails {
    display: block;
    overflow-x: auto;
    margin: 0;
    padding: 6px;
    white-space: nowrap;
  }
}

.c-detail-images__thumbnails-item {
  width: 20%;
  padding: 10px;
}

@media screen and (max-width: 1024px) {
  .c-detail-images__thumbnails-item {
    display: inline-block;
    width: 100px;
    padding: 6px;
    white-space: normal;
  }
}

.c-detail-images__thumbnails-item-btn {
  display: block;
  width: 100%;
  border: 0;
  outline: none;
  background: none;
  cursor: pointer;
}

.c-detail-images__thumbnails-item-btn.is-active .c-detail-images__thumbnails-item-figure-img {
  -webkit-box-shadow: 0 0 0 3px #ab2d2d;
          box-shadow: 0 0 0 3px #ab2d2d;
}

.c-detail-images__thumbnails-item-figure {
  position: relative;
}

.c-detail-images__thumbnails-item-figure-img {
  margin: 0 0 10px;
  background: no-repeat center;
  background-size: cover;
  -webkit-transition: -webkit-box-shadow 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-box-shadow 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: box-shadow 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: box-shadow 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-box-shadow 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-detail-images__thumbnails-item-figure-img::after {
  display: block;
  padding: 120% 0 0;
  content: "";
}

.c-detail-images__thumbnails-item-figure-src {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}

.c-detail-images__thumbnails-item-figure-caption {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .c-detail-images__thumbnails-item-figure-caption {
    font-size: 10px;
    font-size: 1rem;
  }
}

.c-detail-images__controls {
  position: absolute;
  z-index: 10;
  top: 50%;
  right: -50px;
  left: -50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: justify;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .c-detail-images__controls {
    right: 0;
    left: 0;
  }
}

.c-detail-images__controls-next, .c-detail-images__controls-prev {
  display: block;
  width: 50px;
  height: 50px;
  border: 0;
  outline: none;
  background: none;
  pointer-events: auto;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .c-detail-images__controls-next, .c-detail-images__controls-prev {
    width: 40px;
    height: 80px;
    background: rgba(255, 255, 255, 0.5);
  }
}

.c-detail-images__controls-next::after, .c-detail-images__controls-prev::after {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: solid #707070;
  border-width: 2px 2px 0 0;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 1024px) {
  .c-detail-images__controls-next::after, .c-detail-images__controls-prev::after {
    width: 18px;
    height: 18px;
    border-width: 1px 1px 0 0;
  }
}

@media screen and (max-width: 1024px) {
  .c-detail-images__controls-next {
    padding: 0 10px 0 0;
  }
}

@media screen and (max-width: 1024px) {
  .c-detail-images__controls-prev {
    padding: 0 0 0 10px;
  }
}

.c-detail-images__controls-prev::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

/*----------------------------------------
c-error
----------------------------------------*/
.c-error {
  margin: 5px 0;
  color: #ab2d2d;
}

/*----------------------------------------
c-faq
----------------------------------------*/
.c-faq {
  text-align: left;
}

.c-faq__item {
  margin: 0 0 20px;
}

.c-faq__ttl {
  position: relative;
  padding: 30px 70px 30px 40px;
  background: #cccccc;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
  .c-faq__ttl {
    padding: 16px 50px 16px 20px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.c-faq__ttl::before, .c-faq__ttl::after {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 18px;
  height: 1px;
  background: #343434;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .c-faq__ttl::before, .c-faq__ttl::after {
    right: 20px;
    width: 15px;
  }
}

.c-faq__ttl::after {
  opacity: 1;
  -webkit-transform: translateY(0) rotate(90deg);
          transform: translateY(0) rotate(90deg);
}

.c-faq__ttl.is-active::after {
  opacity: 0;
  -webkit-transform: translateY(10px) rotate(90deg);
          transform: translateY(10px) rotate(90deg);
}

.c-faq__ttl.js-accrodion-btn {
  cursor: pointer;
}

.c-faq__ttl.js-accrodion-btn::before, .c-faq__ttl.js-accrodion-btn::after {
  display: block;
  content: "";
}

.c-faq__ttl-icon {
  float: left;
  margin: 0 10px 5px 0;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
}

.c-faq__desc {
  padding: 20px 40px;
}

@media screen and (max-width: 767px) {
  .c-faq__desc {
    padding: 16px 20px;
  }
}

.c-faq__desc.js-accrodion-target {
  display: none;
}

.c-faq__desc p:not([class]) {
  font-size: 15px;
  font-size: 1.5rem;
  text-align: justify;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-faq__desc p:not([class]) {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-faq__desc a:not([class]) {
  text-decoration: underline;
}

.c-faq__desc a:not([class]):hover {
  color: #ab2d2d;
}

/*----------------------------------------
c-favorite-btn
----------------------------------------*/
.c-favorite-btn {
  position: absolute;
  z-index: 2;
  top: -6.5px;
  right: -5px;
  width: 34px;
  height: 34px;
  border: 0;
  outline: none;
  background: none;
  color: #707070;
  cursor: pointer;
}

.summary .c-favorite-btn {
  top: -3px;
}

@media screen and (max-width: 767px) {
  .c-favorite-btn {
    top: -7px;
    right: -5px;
  }
}

.c-favorite-btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 17px solid #ab2d2d;
  border-radius: 50%;
  content: "";
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.c-favorite-btn::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 16px;
  height: 18px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20class%3D%22g-side__menu-list-item-link-img%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219.2%22%20height%3D%2219.643%22%20viewBox%3D%220%200%2019.2%2019.643%22%3E%20%3Cdefs%3E%20%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.g-side__menu-list-item-link-wish-path-line%20%7B%20fill%3A%20%23707070%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20class%3D%22g-side__menu-list-item-link-wish-g%22%20transform%3D%22translate(-1882%20-698)%22%3E%20%3Cg%20class%3D%22g-side__menu-list-item-link-wish-g2%22%20transform%3D%22translate(1870.305%20687.19)%22%20fill%3D%22rgba(255%2C255%2C255%2C0)%22%3E%20%3Cpath%20class%3D%22g-side__menu-list-item-link-wish-path-surface%22%20d%3D%22M%2021.29510688781738%2029.71967887878418%20L%2013.74620056152344%2021.64999771118164%20C%2011.67305374145508%2019.28089332580566%2011.67466926574707%2015.43716812133789%2013.75084018707275%2013.07766151428223%20L%2013.75382041931152%2013.07427215576172%20L%2013.75674057006836%2013.07083225250244%20C%2014.6972599029541%2011.96227169036865%2016.07056045532227%2011.32047176361084%2017.52449035644531%2011.30999183654785%20C%2018.54859924316406%2011.31000232696533%2019.69911956787109%2011.94415187835693%2020.94050979614258%2013.1948413848877%20L%2021.29457092285156%2013.55156230926514%20L%2021.64945030212402%2013.19565200805664%20C%2022.67907524108887%2012.16302108764648%2024.04849433898926%2011.57714366912842%2025.50615882873535%2011.54559230804443%20L%2025.51598930358887%2011.54559230804443%20C%2026.79195976257324%2011.54897212982178%2028.00271987915039%2012.10595226287842%2028.83648109436035%2013.07371139526367%20C%2029.85922050476074%2014.2637414932251%2030.41269111633301%2015.78371143341064%2030.39454078674316%2017.35318183898926%20L%2030.39447975158691%2017.35903167724609%20L%2030.39455032348633%2017.36489105224609%20C%2030.41311836242676%2018.93172073364258%2029.86204719543457%2020.44939231872559%2028.84273719787598%2021.63941955566406%20L%2021.29510688781738%2029.71967887878418%20Z%22%20stroke%3D%22none%22%2F%3E%20%3Cpath%20class%3D%22g-side__menu-list-item-link-wish-path-line%22%20d%3D%22M%2017.52387809753418%2011.81000518798828%20C%2016.21726608276367%2011.82067108154297%2014.98332023620605%2012.39796829223633%2014.13800048828125%2013.39431190490723%20L%2014.13216972351074%2013.40118217468262%20L%2014.1262092590332%2013.40795135498047%20C%2013.20327949523926%2014.45684242248535%2012.69499969482422%2015.86167144775391%2012.69499969482422%2017.36366271972656%20C%2012.69499969482422%2018.86077117919922%2013.19992256164551%2020.26321601867676%2014.1171760559082%2021.31465721130371%20L%2021.29484176635742%2028.98748779296875%20L%2028.46980285644531%2021.30619621276855%20C%2029.40583419799805%2020.20955085754395%2029.91168212890625%2018.81280136108398%2029.89458084106445%2017.37082099914551%20L%2029.89443969726563%2017.35911178588867%20L%2029.89458084106445%2017.34740257263184%20C%2029.91131019592285%2015.89956092834473%2029.40073013305664%2014.49738121032715%2028.45767974853516%2013.40007209777832%20C%2027.71865081787109%2012.54226112365723%2026.64548110961914%2012.0485725402832%2025.51598930358887%2012.04559135437012%20L%2025.5115966796875%2012.04559135437012%20C%2024.18576622009277%2012.07571983337402%2022.94019317626953%2012.60927581787109%2022.00350952148438%2013.54868125915527%20L%2021.29376029968262%2014.2604923248291%20L%2020.58563995361328%2013.54706192016602%20C%2019.45900726318359%2012.41198921203613%2018.40031433105469%2011.8113956451416%2017.52387809753418%2011.81000518798828%20M%2017.52088928222656%2010.81000137329102%20C%2018.68882942199707%2010.81000137329102%2019.9570198059082%2011.49421119689941%2021.29537963867188%2012.84260177612305%20C%2022.41218948364258%2011.72254180908203%2023.91947937011719%2011.07842254638672%2025.50094985961914%2011.04559135437012%20L%2025.51598930358887%2011.04559135437012%20C%2026.93756103515625%2011.04934120178223%2028.28746032714844%2011.67041206359863%2029.21529006958008%2012.74736213684082%20C%2030.31705093383789%2014.02934265136719%2030.9140510559082%2015.6687126159668%2030.89451026916504%2017.35896110534668%20C%2030.91456031799316%2019.04996109008789%2030.31756019592285%2020.69033241271973%2029.21529006958008%2021.97306251525879%20L%2021.29537963867188%2030.45187187194824%20L%2013.3754711151123%2021.98559188842773%20C%2011.13484001159668%2019.43167114257813%2011.13484001159668%2015.29377174377441%2013.3754711151123%2012.74736213684082%20C%2014.40932083129883%2011.52880096435547%2015.92288017272949%2010.8215217590332%2017.52088928222656%2010.81000137329102%20Z%22%20stroke%3D%22none%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  font-family: "Font Awesome 5 Free";
  font-size: 17px;
  font-size: 1.7rem;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  line-height: 20px;
  content: '';
  -webkit-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
          transform-origin: center;
  text-rendering: auto;
}

.c-favorite-btn:hover {
  color: #ab2d2d;
}

.c-favorite-btn:hover::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20class%3D%22g-side__menu-list-item-link-img%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219.2%22%20height%3D%2219.643%22%20viewBox%3D%220%200%2019.2%2019.643%22%3E%20%3Cdefs%3E%20%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.g-side__menu-list-item-link-wish-path-line%20%7B%20fill%3A%20%23ab2d2d%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20class%3D%22g-side__menu-list-item-link-wish-g%22%20transform%3D%22translate(-1882%20-698)%22%3E%20%3Cg%20class%3D%22g-side__menu-list-item-link-wish-g2%22%20transform%3D%22translate(1870.305%20687.19)%22%20fill%3D%22rgba(255%2C255%2C255%2C0)%22%3E%20%3Cpath%20class%3D%22g-side__menu-list-item-link-wish-path-surface%22%20d%3D%22M%2021.29510688781738%2029.71967887878418%20L%2013.74620056152344%2021.64999771118164%20C%2011.67305374145508%2019.28089332580566%2011.67466926574707%2015.43716812133789%2013.75084018707275%2013.07766151428223%20L%2013.75382041931152%2013.07427215576172%20L%2013.75674057006836%2013.07083225250244%20C%2014.6972599029541%2011.96227169036865%2016.07056045532227%2011.32047176361084%2017.52449035644531%2011.30999183654785%20C%2018.54859924316406%2011.31000232696533%2019.69911956787109%2011.94415187835693%2020.94050979614258%2013.1948413848877%20L%2021.29457092285156%2013.55156230926514%20L%2021.64945030212402%2013.19565200805664%20C%2022.67907524108887%2012.16302108764648%2024.04849433898926%2011.57714366912842%2025.50615882873535%2011.54559230804443%20L%2025.51598930358887%2011.54559230804443%20C%2026.79195976257324%2011.54897212982178%2028.00271987915039%2012.10595226287842%2028.83648109436035%2013.07371139526367%20C%2029.85922050476074%2014.2637414932251%2030.41269111633301%2015.78371143341064%2030.39454078674316%2017.35318183898926%20L%2030.39447975158691%2017.35903167724609%20L%2030.39455032348633%2017.36489105224609%20C%2030.41311836242676%2018.93172073364258%2029.86204719543457%2020.44939231872559%2028.84273719787598%2021.63941955566406%20L%2021.29510688781738%2029.71967887878418%20Z%22%20stroke%3D%22none%22%2F%3E%20%3Cpath%20class%3D%22g-side__menu-list-item-link-wish-path-line%22%20d%3D%22M%2017.52387809753418%2011.81000518798828%20C%2016.21726608276367%2011.82067108154297%2014.98332023620605%2012.39796829223633%2014.13800048828125%2013.39431190490723%20L%2014.13216972351074%2013.40118217468262%20L%2014.1262092590332%2013.40795135498047%20C%2013.20327949523926%2014.45684242248535%2012.69499969482422%2015.86167144775391%2012.69499969482422%2017.36366271972656%20C%2012.69499969482422%2018.86077117919922%2013.19992256164551%2020.26321601867676%2014.1171760559082%2021.31465721130371%20L%2021.29484176635742%2028.98748779296875%20L%2028.46980285644531%2021.30619621276855%20C%2029.40583419799805%2020.20955085754395%2029.91168212890625%2018.81280136108398%2029.89458084106445%2017.37082099914551%20L%2029.89443969726563%2017.35911178588867%20L%2029.89458084106445%2017.34740257263184%20C%2029.91131019592285%2015.89956092834473%2029.40073013305664%2014.49738121032715%2028.45767974853516%2013.40007209777832%20C%2027.71865081787109%2012.54226112365723%2026.64548110961914%2012.0485725402832%2025.51598930358887%2012.04559135437012%20L%2025.5115966796875%2012.04559135437012%20C%2024.18576622009277%2012.07571983337402%2022.94019317626953%2012.60927581787109%2022.00350952148438%2013.54868125915527%20L%2021.29376029968262%2014.2604923248291%20L%2020.58563995361328%2013.54706192016602%20C%2019.45900726318359%2012.41198921203613%2018.40031433105469%2011.8113956451416%2017.52387809753418%2011.81000518798828%20M%2017.52088928222656%2010.81000137329102%20C%2018.68882942199707%2010.81000137329102%2019.9570198059082%2011.49421119689941%2021.29537963867188%2012.84260177612305%20C%2022.41218948364258%2011.72254180908203%2023.91947937011719%2011.07842254638672%2025.50094985961914%2011.04559135437012%20L%2025.51598930358887%2011.04559135437012%20C%2026.93756103515625%2011.04934120178223%2028.28746032714844%2011.67041206359863%2029.21529006958008%2012.74736213684082%20C%2030.31705093383789%2014.02934265136719%2030.9140510559082%2015.6687126159668%2030.89451026916504%2017.35896110534668%20C%2030.91456031799316%2019.04996109008789%2030.31756019592285%2020.69033241271973%2029.21529006958008%2021.97306251525879%20L%2021.29537963867188%2030.45187187194824%20L%2013.3754711151123%2021.98559188842773%20C%2011.13484001159668%2019.43167114257813%2011.13484001159668%2015.29377174377441%2013.3754711151123%2012.74736213684082%20C%2014.40932083129883%2011.52880096435547%2015.92288017272949%2010.8215217590332%2017.52088928222656%2010.81000137329102%20Z%22%20stroke%3D%22none%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}

.c-favorite-btn[data-status="loading"] {
  color: #707070;
  -webkit-animation: activeBtn 0.5s cubic-bezier(0.19, 1, 0.22, 1);
          animation: activeBtn 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-favorite-btn[data-status="loading"]::after {
  background: none;
  font-weight: 700;
  content: "\f110";
  -webkit-animation: rotate 1s linear infinite;
          animation: rotate 1s linear infinite;
}

.c-favorite-btn[data-status="true"] {
  color: #ab2d2d;
}

.c-favorite-btn[data-status="true"]::before {
  -webkit-animation: activeBtnCircle 0.8s cubic-bezier(0.19, 1, 0.22, 1);
          animation: activeBtnCircle 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-favorite-btn[data-status="true"]::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20class%3D%22g-side__menu-list-item-link-img%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219.2%22%20height%3D%2219.643%22%20viewBox%3D%220%200%2019.2%2019.643%22%3E%20%3Cdefs%3E%20%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.g-side__menu-list-item-link-wish-path-surface%20%7B%20fill%3A%20%23ab2d2d%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20class%3D%22g-side__menu-list-item-link-wish-g%22%20transform%3D%22translate(-1882%20-698)%22%3E%20%3Cg%20class%3D%22g-side__menu-list-item-link-wish-g2%22%20transform%3D%22translate(1870.305%20687.19)%22%20fill%3D%22rgba(255%2C255%2C255%2C0)%22%3E%20%3Cpath%20class%3D%22g-side__menu-list-item-link-wish-path-surface%22%20d%3D%22M%2021.29510688781738%2029.71967887878418%20L%2013.74620056152344%2021.64999771118164%20C%2011.67305374145508%2019.28089332580566%2011.67466926574707%2015.43716812133789%2013.75084018707275%2013.07766151428223%20L%2013.75382041931152%2013.07427215576172%20L%2013.75674057006836%2013.07083225250244%20C%2014.6972599029541%2011.96227169036865%2016.07056045532227%2011.32047176361084%2017.52449035644531%2011.30999183654785%20C%2018.54859924316406%2011.31000232696533%2019.69911956787109%2011.94415187835693%2020.94050979614258%2013.1948413848877%20L%2021.29457092285156%2013.55156230926514%20L%2021.64945030212402%2013.19565200805664%20C%2022.67907524108887%2012.16302108764648%2024.04849433898926%2011.57714366912842%2025.50615882873535%2011.54559230804443%20L%2025.51598930358887%2011.54559230804443%20C%2026.79195976257324%2011.54897212982178%2028.00271987915039%2012.10595226287842%2028.83648109436035%2013.07371139526367%20C%2029.85922050476074%2014.2637414932251%2030.41269111633301%2015.78371143341064%2030.39454078674316%2017.35318183898926%20L%2030.39447975158691%2017.35903167724609%20L%2030.39455032348633%2017.36489105224609%20C%2030.41311836242676%2018.93172073364258%2029.86204719543457%2020.44939231872559%2028.84273719787598%2021.63941955566406%20L%2021.29510688781738%2029.71967887878418%20Z%22%20stroke%3D%22none%22%2F%3E%20%3Cpath%20class%3D%22g-side__menu-list-item-link-wish-path-line%22%20d%3D%22M%2017.52387809753418%2011.81000518798828%20C%2016.21726608276367%2011.82067108154297%2014.98332023620605%2012.39796829223633%2014.13800048828125%2013.39431190490723%20L%2014.13216972351074%2013.40118217468262%20L%2014.1262092590332%2013.40795135498047%20C%2013.20327949523926%2014.45684242248535%2012.69499969482422%2015.86167144775391%2012.69499969482422%2017.36366271972656%20C%2012.69499969482422%2018.86077117919922%2013.19992256164551%2020.26321601867676%2014.1171760559082%2021.31465721130371%20L%2021.29484176635742%2028.98748779296875%20L%2028.46980285644531%2021.30619621276855%20C%2029.40583419799805%2020.20955085754395%2029.91168212890625%2018.81280136108398%2029.89458084106445%2017.37082099914551%20L%2029.89443969726563%2017.35911178588867%20L%2029.89458084106445%2017.34740257263184%20C%2029.91131019592285%2015.89956092834473%2029.40073013305664%2014.49738121032715%2028.45767974853516%2013.40007209777832%20C%2027.71865081787109%2012.54226112365723%2026.64548110961914%2012.0485725402832%2025.51598930358887%2012.04559135437012%20L%2025.5115966796875%2012.04559135437012%20C%2024.18576622009277%2012.07571983337402%2022.94019317626953%2012.60927581787109%2022.00350952148438%2013.54868125915527%20L%2021.29376029968262%2014.2604923248291%20L%2020.58563995361328%2013.54706192016602%20C%2019.45900726318359%2012.41198921203613%2018.40031433105469%2011.8113956451416%2017.52387809753418%2011.81000518798828%20M%2017.52088928222656%2010.81000137329102%20C%2018.68882942199707%2010.81000137329102%2019.9570198059082%2011.49421119689941%2021.29537963867188%2012.84260177612305%20C%2022.41218948364258%2011.72254180908203%2023.91947937011719%2011.07842254638672%2025.50094985961914%2011.04559135437012%20L%2025.51598930358887%2011.04559135437012%20C%2026.93756103515625%2011.04934120178223%2028.28746032714844%2011.67041206359863%2029.21529006958008%2012.74736213684082%20C%2030.31705093383789%2014.02934265136719%2030.9140510559082%2015.6687126159668%2030.89451026916504%2017.35896110534668%20C%2030.91456031799316%2019.04996109008789%2030.31756019592285%2020.69033241271973%2029.21529006958008%2021.97306251525879%20L%2021.29537963867188%2030.45187187194824%20L%2013.3754711151123%2021.98559188842773%20C%2011.13484001159668%2019.43167114257813%2011.13484001159668%2015.29377174377441%2013.3754711151123%2012.74736213684082%20C%2014.40932083129883%2011.52880096435547%2015.92288017272949%2010.8215217590332%2017.52088928222656%2010.81000137329102%20Z%22%20stroke%3D%22none%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  font-weight: 900;
  -webkit-animation: activeBtnIcon 0.8s cubic-bezier(0.19, 1, 0.22, 1);
          animation: activeBtnIcon 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/*----------------------------------------
c-flow-list
----------------------------------------*/
.c-flow-list {
  position: relative;
  text-align: justify;
}

.c-flow-list__row {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  padding: 40px;
  background: #f7f6f2;
}

@media screen and (max-width: 767px) {
  .c-flow-list__row {
    padding: 20px;
  }
}

.c-flow-list__txt {
  overflow: hidden;
}

.c-flow-list__ttl {
  position: relative;
  margin-bottom: 30px;
  padding-left: 55px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 40px;
}

@media screen and (max-width: 767px) {
  .c-flow-list__ttl {
    margin-bottom: 20px;
    padding-left: 40px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 30px;
  }
}

.c-flow-list__ttl::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: #111;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 34px;
  color: #fff;
  text-align: center;
  text-indent: .2rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  content: attr(data-num);
}

@media screen and (max-width: 767px) {
  .c-flow-list__ttl::before {
    width: 30px;
    height: 30px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 26px;
  }
}

.c-flow-list__desc {
  overflow: hidden;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .c-flow-list__desc {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-flow-list__desc-sub {
  display: block;
  margin: 50px 0 15px;
  padding: 0 0 10px;
  line-height: 1.5;
  color: #bf3333;
}

@media screen and (max-width: 767px) {
  .c-flow-list__desc-sub {
    margin: 30px 0 10px;
    padding: 0 0 5px;
  }
}

.c-flow-list__desc-sub:first-child {
  margin: 0 0 15px;
}

@media screen and (max-width: 767px) {
  .c-flow-list__desc-sub:first-child {
    margin: 0 0 10px;
  }
}

/*----------------------------------------
c-form
----------------------------------------*/
.c-form {
  display: block;
  width: 100%;
}

.c-form-container {
  padding: 80px 120px;
  background: #f7f6f2;
}

@media screen and (max-width: 1024px) {
  .c-form-container {
    padding: 40px 60px;
  }
}

@media screen and (max-width: 767px) {
  .c-form-container {
    padding: 20px 16px 40px;
  }
}

@media screen and (max-width: 767px) {
  .c-form__table, .c-form__tbody, .c-form__row, .c-form__ttl, .c-form__cnt {
    display: block;
  }
}

.c-form__table {
  width: 100%;
}

.c-form__ttl, .c-form__cnt {
  display: block;
  padding: 10px 0;
  text-align: left;
  vertical-align: top;
}

.c-form__ttl {
  padding-top: 20px;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .c-form__cnt {
    padding: 0 0 20px;
  }
}

.c-form__cnt .error {
  margin: 10px 0 0;
}

.c-form__cnt .horizontal-item {
  display: inline-block;
  padding: 5px 0;
}

.c-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: left;
      -ms-flex-align: center;
  -webkit-box-pack: left;
          justify-content: left;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .c-form__label {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-form__label-txt, .c-form__label-val {
  display: block;
}

.c-form__label-txt {
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-form__label-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-form__label-val {
  margin: 0 15px 0 0;
  padding: 8px;
  background: #bf3333;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-form__label-val {
    margin: 0 10px 0 0;
    padding: 2px 6px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.c-form__label-val.is-any {
  background: #cccccc;
}

.c-form input:not([type="radio"]):not([type="checkbox"]),
.c-form textarea,
.c-form select {
  width: 100%;
  padding: 10px 20px;
  border-color: #777;
  background: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  letter-spacing: 0.05rem;
  -webkit-transition: border-color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: border-color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media screen and (max-width: 767px) {
  .c-form input:not([type="radio"]):not([type="checkbox"]),
  .c-form textarea,
  .c-form select {
    padding: 10px;
  }
}

.c-form input:not([type="radio"]):not([type="checkbox"])::-webkit-input-placeholder, .c-form textarea::-webkit-input-placeholder, .c-form select::-webkit-input-placeholder {
  color: #999;
}

.c-form input:not([type="radio"]):not([type="checkbox"])::-moz-placeholder, .c-form textarea::-moz-placeholder, .c-form select::-moz-placeholder {
  color: #999;
}

.c-form input:not([type="radio"]):not([type="checkbox"]):-ms-input-placeholder, .c-form textarea:-ms-input-placeholder, .c-form select:-ms-input-placeholder {
  color: #999;
}

.c-form input:not([type="radio"]):not([type="checkbox"])::-ms-input-placeholder, .c-form textarea::-ms-input-placeholder, .c-form select::-ms-input-placeholder {
  color: #999;
}

.c-form input:not([type="radio"]):not([type="checkbox"])::placeholder,
.c-form textarea::placeholder,
.c-form select::placeholder {
  color: #999;
}

.c-form input:not([type="radio"]):not([type="checkbox"]):hover, .c-form input:not([type="radio"]):not([type="checkbox"]):focus,
.c-form textarea:hover,
.c-form textarea:focus,
.c-form select:hover,
.c-form select:focus {
  border-color: #343434;
}

.c-form textarea {
  width: 100%;
  min-height: 80px;
  resize: vertical;
}

.c-form input[type="radio"], .c-form input[type="checkbox"] {
  display: none;
}

.c-form input[type="radio"] + span, .c-form input[type="checkbox"] + span {
  position: relative;
  display: inline-block;
  margin: 0 30px 0 0;
  padding: 0 0 0 28px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
}

.c-form input[type="radio"] + span::before, .c-form input[type="checkbox"] + span::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #cccccc;
  background: #fff;
  vertical-align: sub;
  content: "";
}

.c-form input[type="radio"] + span::after, .c-form input[type="checkbox"] + span::after {
  position: absolute;
  top: 4px;
  left: 4px;
  display: inline-block;
  width: 10px;
  height: 10px;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-form input[type="radio"]:checked + span::after, .c-form input[type="checkbox"]:checked + span::after {
  opacity: 1;
}

.c-form input[type="radio"] + span::before {
  border-radius: 50%;
}

.c-form input[type="radio"] + span::after {
  border-radius: 50%;
  background: #111;
}

.c-form input[type="checkbox"] + span::before {
  border-width: 2px;
  border-radius: 1px;
}

.c-form input[type="checkbox"] + span::after {
  top: 2px;
  left: 6px;
  width: 5px;
  border: solid #111;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-form__consent {
  padding: 60px 0 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-form__consent {
    padding-top: 20px;
  }
}

.c-form__consent-check {
  margin-top: 30px;
}

.c-form__consent label {
  font-weight: 900;
}

.c-form__consent .error {
  margin: 10px 0 0;
}

.c-form__consent input[type="checkbox"] + span, .c-form__consent input[type="radio"] + span {
  margin: 0;
}

.c-form__consent-link {
  color: #ab2d2d;
}

.c-form-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: center;
  margin-top: 80px;
  -webkit-box-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .c-form-btn {
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.c-form-btn__body {
  min-width: 260px;
  padding: 30px 80px;
  border: none;
  background: #111;
  cursor: pointer;
  -webkit-transition: background-color .2s ease;
  transition: background-color .2s ease;
}

@media screen and (min-width: 1199px) {
  .c-form-btn__body:hover {
    background: #343434;
  }
}

@media screen and (max-width: 767px) {
  .c-form-btn__body {
    padding: 20px 80px;
  }
}

.c-form-btn__body:not(:first-child) {
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .c-form-btn__body:not(:first-child) {
    margin-top: 20px;
    margin-left: 0;
  }
}

.c-form-btn__body-txt {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  text-indent: .2rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-form-btn__body-txt {
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 1px;
    letter-spacing: 0.1rem;
  }
}

.mw_wp_form_confirm .is-confirm-none {
  display: none;
}

.mw_wp_form_confirm .c-form-ttl {
  padding: 20px 0;
}

.mw_wp_form_confirm .c-form-cnt {
  padding: 20px 0 20px 40px;
  background: #f9f9f9;
}

@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .c-form-cnt {
    padding: 20px;
  }
}

.mw_wp_form_confirm .c-form-label-val {
  display: none;
}

.mw_wp_form_confirm .c-form-lead {
  display: none;
}

.mw_wp_form_confirm .c-form-lead__confirm {
  display: block;
}

.mw_wp_form_input .is-input-none {
  display: none;
}

/*----------------------------------------
c-gmap
----------------------------------------*/
.c-gmap {
  padding: 30px 0;
}

.c-gmap iframe {
  height: 300px;
}

/*----------------------------------------
c-grid
----------------------------------------*/
.c-grid {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .c-grid {
    margin: 0 -7.5px;
  }
}

.c-grid.is-blog {
  margin: -10px -10px 0;
}

.is-ranking .c-grid {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.c-grid.is-no-padding {
  margin: 0;
}

.c-grid.is-no-padding .c-grid__item {
  padding: 0;
}

.c-grid__item {
  position: relative;
  padding: 15px;
}

.is-blog .c-grid__item {
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .c-grid__item {
    padding: 12.5px 7.5px;
  }
}

.is-ranking .c-grid__item {
  min-width: 22.222%;
}

@media screen and (max-width: 1024px) {
  .is-ranking .c-grid__item {
    min-width: 45%;
  }
}

@media screen and (max-width: 767px) {
  .is-general .c-grid__item {
    padding: 7.5px;
  }
}

.c-grid[data-grid="5"] .c-grid__item {
  width: 20%;
}

@media screen and (max-width: 1023px) {
  .c-grid[data-grid="5"] .c-grid__item {
    width: 50%;
  }
}

.c-grid[data-grid="4-5"] .c-grid__item {
  width: 25%;
}

@media screen and (max-width: 1023px) {
  .c-grid[data-grid="4-5"] .c-grid__item {
    width: 50%;
  }
}

.c-grid[data-grid="4-5"] .c-grid__item:nth-child(9n-4), .c-grid[data-grid="4-5"] .c-grid__item:nth-child(9n-3), .c-grid[data-grid="4-5"] .c-grid__item:nth-child(9n-2), .c-grid[data-grid="4-5"] .c-grid__item:nth-child(9n-1), .c-grid[data-grid="4-5"] .c-grid__item:nth-child(9n) {
  width: 20%;
}

@media screen and (max-width: 1023px) {
  .c-grid[data-grid="4-5"] .c-grid__item:nth-child(9n-4), .c-grid[data-grid="4-5"] .c-grid__item:nth-child(9n-3), .c-grid[data-grid="4-5"] .c-grid__item:nth-child(9n-2), .c-grid[data-grid="4-5"] .c-grid__item:nth-child(9n-1), .c-grid[data-grid="4-5"] .c-grid__item:nth-child(9n) {
    width: 50%;
  }
}

.c-grid[data-grid="4"] .c-grid__item {
  width: 25%;
}

@media screen and (max-width: 1330px) {
  .c-grid[data-grid="4"] .c-grid__item {
    width: 50%;
  }
}

.c-grid[data-grid="3-4"] .c-grid__item {
  width: 33.33333%;
}

@media screen and (max-width: 1330px) {
  .c-grid[data-grid="3-4"] .c-grid__item {
    width: 50%;
  }
}

.c-grid[data-grid="3-4"] .c-grid__item:nth-child(7n-3), .c-grid[data-grid="3-4"] .c-grid__item:nth-child(7n-2), .c-grid[data-grid="3-4"] .c-grid__item:nth-child(7n-1), .c-grid[data-grid="3-4"] .c-grid__item:nth-child(7n) {
  width: 25%;
}

@media screen and (max-width: 1330px) {
  .c-grid[data-grid="3-4"] .c-grid__item:nth-child(7n-3), .c-grid[data-grid="3-4"] .c-grid__item:nth-child(7n-2), .c-grid[data-grid="3-4"] .c-grid__item:nth-child(7n-1), .c-grid[data-grid="3-4"] .c-grid__item:nth-child(7n) {
    width: 50%;
  }
}

.c-grid[data-grid="3-4"] .c-grid__item .c-item__figure-img::before {
  padding: 70% 0 0;
}

.c-grid[data-grid="3"] .c-grid__item {
  width: 33.33333%;
}

@media screen and (max-width: 1330px) {
  .c-grid[data-grid="3"] .c-grid__item {
    width: 50%;
  }
}

.c-grid[data-grid="3"].is-blog .c-grid__item:nth-child(-n+2) {
  width: 50%;
}

@media screen and (max-width: 1330px) {
  .c-grid[data-grid="3"].is-blog .c-grid__item:nth-child(-n+2) {
    width: 100%;
  }
}

.c-grid[data-grid="3"].is-blog.is-under-page .c-grid__item:nth-child(-n+2) {
  width: 33.33333%;
}

@media screen and (max-width: 1024px) {
  .c-grid[data-grid="3"].is-blog.is-under-page .c-grid__item:nth-child(-n+2) {
    width: 50%;
  }
}

.c-grid[data-grid="2"] .c-grid__item {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .c-grid[data-grid="2"] .c-grid__item {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .c-grid[data-grid="2"] .c-grid__item .c-item {
    padding: 12px 0;
  }
}

.c-grid[data-grid="2"] .c-grid__item .c-item__favorite {
  top: 25px;
  right: 35px;
}

.c-grid[data-grid="2"] .c-grid__item .c-item__figure-img::before {
  padding: 60% 0 0;
}

/*----------------------------------------
c-guid-desc
----------------------------------------*/
.c-guid-desc {
  margin: 0 0 20px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
}

.mw_wp_form_complete .c-guid-desc {
  margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .mw_wp_form_complete .c-guid-desc {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .c-guid-desc {
    text-align: left;
  }
}

:not(:last-child) > .c-guid-desc:last-child {
  margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
  :not(:last-child) > .c-guid-desc:last-child {
    margin-bottom: 40px;
  }
}

.c-form-container .c-guid-desc {
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .c-form-container .c-guid-desc {
    text-align: left;
  }
}

.c-guid-desc.is-center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-guid-desc.is-center {
    text-align: justify;
  }
}

/*----------------------------------------
c-item-style
----------------------------------------*/
.c-item-style {
  position: relative;
}

.c-item-style.is-sold-out .c-item-style__figure::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 0;
  left: 0;
  display: block;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  letter-spacing: 4px;
  letter-spacing: 0.4rem;
  content: "SOLD OUT";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .c-item-style.is-sold-out .c-item-style__figure::after {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 374px) {
  .c-item-style.is-sold-out .c-item-style__figure::after {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-item-style.is-sold-out .c-item-style__figure-img::before {
  background: rgba(17, 17, 17, 0.3);
}

.c-item-style__favorite {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
}

@media screen and (max-width: 1330px) {
  .c-item-style__favorite {
    width: 200px;
  }
}

@media screen and (max-width: 1024px) {
  .c-item-style__favorite {
    width: 120px;
  }
}

.c-item-style__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: justify;
  text-align: left;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.c-item-style__link:hover .c-item-style__figure-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.c-item-style__figure {
  position: relative;
  overflow: hidden;
  width: 40%;
}

@media screen and (max-width: 1330px) {
  .c-item-style__figure {
    width: 200px;
  }
}

@media screen and (max-width: 1024px) {
  .c-item-style__figure {
    width: 120px;
  }
}

.c-item-style__figure-img {
  background: no-repeat center;
  background-size: cover;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-item-style__figure-img::before {
  display: block;
  padding: 118% 0 0;
  content: "";
}

.c-item-style__figure-src {
  display: none;
}

.c-item-style__txt {
  width: 55%;
}

@media screen and (max-width: 1330px) {
  .c-item-style__txt {
    width: calc(100% - 200px);
    padding: 0 0 0 40px;
  }
}

@media screen and (max-width: 1024px) {
  .c-item-style__txt {
    width: calc(100% - 120px);
    padding: 0 0 0 20px;
  }
}

.c-item-style__ttl {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .c-item-style__ttl {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.8;
  }
}

.c-item-style__desc {
  padding: 15px 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .c-item-style__desc {
    padding: 6px 0;
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.8;
  }
}

.c-item-style__price {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  letter-spacing: 0.15rem;
}

@media screen and (max-width: 767px) {
  .c-item-style__price {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-item-style__price.is-discount {
  text-decoration: line-through;
}

.c-item-style__price small {
  margin: 0 0 0 5px;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .c-item-style__price small {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.c-item-style__discount {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
  color: #ab2d2d;
  letter-spacing: 1.5px;
  letter-spacing: 0.15rem;
}

@media screen and (max-width: 767px) {
  .c-item-style__discount {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-item-style__discount span:not([class]) {
  display: inline-block;
  margin: 0 5px 0 0;
}

.c-item-style__discount small {
  margin: 0 0 0 2px;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .c-item-style__discount small {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

/*----------------------------------------
c-item
----------------------------------------*/
.c-item {
  position: relative;
}

.is-new .c-item::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  border-top: 30px solid #fff;
  border-right: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid #fff;
  content: "";
}

@media screen and (max-width: 767px) {
  .is-new .c-item::before {
    border-top: 24px solid #fff;
    border-right: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 24px solid #fff;
  }
}

.is-new .c-item::after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  text-indent: .2rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  content: "NEW";
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .is-new .c-item::after {
    top: -2px;
    left: -2px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-item.is-sold-out .c-item__figure::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 0;
  left: 0;
  display: block;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  letter-spacing: 4px;
  letter-spacing: 0.4rem;
  content: "SOLD OUT";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .c-item.is-sold-out .c-item__figure::after {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 374px) {
  .c-item.is-sold-out .c-item__figure::after {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-item.is-sold-out .c-item__figure-img::before {
  background: rgba(17, 17, 17, 0.3);
}

.c-item__rank {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
  background: #111;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 35px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .c-item__rank {
    width: 30px;
    height: 30px;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 25px;
  }
}

.c-item__link {
  display: block;
  text-align: left;
}

@media screen and (min-width: 1199px) {
  .c-item__link:hover .c-item__figure-img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.c-item__figure {
  position: relative;
  overflow: hidden;
  margin: 0 0 20px;
}

@media screen and (max-width: 767px) {
  .c-item__figure {
    margin-bottom: 10px;
  }
}

.c-item__figure-img {
  background: no-repeat center #f5f5f5;
  background-size: contain;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-item__figure-img.is-contain {
  background-color: #f5f5f5;
  background-size: contain;
}

.c-item__figure-img::before {
  display: block;
  padding: 69% 0 0;
  content: "";
}

.c-item__figure-src {
  display: none;
}

.c-item__txt {
  position: relative;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .c-item__txt {
    padding: 0;
  }
}

.c-item__ttl {
  margin: 0 0 5px;
  padding-right: 20px;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-item__ttl {
    padding-right: 25px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-item__ttl.is-new::before {
  display: inline-block;
  margin: 0 8px 2px 0;
  padding: 1px 6px;
  border: 1px solid #ab2d2d;
  font-size: 12px;
  font-size: 1.2rem;
  color: #ab2d2d;
  content: "NEW";
}

.c-item__price, .c-item__discount {
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-item__price, .c-item__discount {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.c-item__price.is-discount, .c-item__discount.is-discount {
  font-size: 16px;
  font-size: 1.6rem;
  text-decoration: line-through;
}

@media screen and (max-width: 767px) {
  .c-item__price.is-discount, .c-item__discount.is-discount {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-item__price.is-discount small, .c-item__discount.is-discount small {
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .c-item__price.is-discount small, .c-item__discount.is-discount small {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.c-item__price.is-nearly, .c-item__discount.is-nearly {
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-item__price.is-nearly, .c-item__discount.is-nearly {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-item__price span:not([class]), .c-item__discount span:not([class]) {
  display: inline-block;
  margin: 0 5px 0 0;
}

.c-item__price small, .c-item__discount small {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  letter-spacing: 0.05rem;
}

@media screen and (max-width: 767px) {
  .c-item__price small, .c-item__discount small {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-item__price small:first-child, .c-item__discount small:first-child {
  margin: 0 2px 0 0;
}

.c-item__price-parcent, .c-item__discount-parcent {
  position: absolute;
  top: -20px;
  left: 0;
  padding: 10px;
  background: #ab2d2d;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-indent: .2rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

@media screen and (max-width: 767px) {
  .c-item__price-parcent, .c-item__discount-parcent {
    top: -10px;
    padding: 6px;
  }
}

.c-item__price-parcent small, .c-item__discount-parcent small {
  font-size: 13px;
  font-size: 1.3rem;
}

.c-item__discount {
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 900;
  color: #ab2d2d;
}

.c-item__colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -4px;
  padding: 20px 0 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .c-item__colors {
    margin: -2px;
  }
}

.c-item__colors-item {
  width: 24px;
  height: 6px;
  margin: 4px;
  border: 1px solid #b2b2b2;
}

@media screen and (max-width: 767px) {
  .c-item__colors-item {
    width: 20px;
    margin: 1.5px;
  }
}

.c-item__colors-item.is-last {
  position: relative;
}

.c-item__colors-item.is-last::after {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 10px;
  height: 1px;
  background: #111;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-item__colors-item.is-last::before {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 10px;
  height: 1px;
  background: #111;
  content: "";
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.c-item .c-cart-btn {
  margin: 20px 0 0;
}

/*----------------------------------------
news-list
----------------------------------------*/
.c-news__list-item {
  border-bottom: 1px solid #f7f6f2;
}

.c-news__list-link {
  display: block;
  padding: 30px 10px;
}

@media screen and (max-width: 767px) {
  .c-news__list-link {
    padding: 15px 0;
  }
}

.c-news__list-link:hover .c-news__list-ttl {
  color: #ab2d2d;
}

.c-news__list-link:hover .c-news__list-time {
  color: #ab2d2d;
}

.c-news__list-time {
  position: relative;
  width: 20%;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  color: rgba(17, 17, 17, 0.5);
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

@media screen and (max-width: 1024px) {
  .c-news__list-time {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .c-news__list-time {
    margin-bottom: 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.c-news__list-time::before {
  position: absolute;
  right: 0;
  bottom: -31px;
  left: -10px;
  height: 1px;
  background: #111;
  content: '';
}

@media screen and (max-width: 1024px) {
  .c-news__list-time::before {
    content: none;
  }
}

.c-news__list-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .c-news__list-txt {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-news__list-ttl {
  padding-left: 30px;
  font-size: 15px;
  font-size: 1.5rem;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

@media screen and (max-width: 1024px) {
  .c-news__list-ttl {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .c-news__list-ttl {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

/*----------------------------------------
c-notice
----------------------------------------*/
.c-notice {
  padding: 80px 0;
  border: 1px solid #ddd;
  background: #f5f5f5;
}

/*----------------------------------------
c-o-list-child
----------------------------------------*/
.c-o-list-child {
  position: relative;
  text-align: justify;
}

.c-o-list-child:not(:first-child) {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .c-o-list-child:not(:first-child) {
    margin-top: 10px;
  }
}

.c-o-list-child__item {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  padding: 0 0 0 25px;
  counter-increment: c-o-list-child-number;
}

.c-o-list-child__item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
  content: "(" counter(c-o-list-child-number) ")";
}

.c-o-list-child__item-txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
}

/*----------------------------------------
c-o-list
----------------------------------------*/
.c-o-list {
  position: relative;
  text-align: justify;
}

.c-o-list:not(:last-child) {
  margin-bottom: 110px;
}

@media screen and (max-width: 767px) {
  .c-o-list:not(:last-child) {
    margin-bottom: 60px;
  }
}

.c-o-list__item {
  position: relative;
  z-index: 1;
  margin: 0 0 40px;
  padding: 0 0 0 25px;
  counter-increment: c-o-list-number;
}

.c-o-list__item:last-child {
  margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .c-o-list__item:last-child {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .c-o-list__item {
    margin-bottom: 30px;
  }
}

.c-o-list__item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.2;
  text-align: center;
  content: counter(c-o-list-number);
}

.c-o-list__item-txt {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .c-o-list__item-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*----------------------------------------
c-pagination
----------------------------------------*/
.c-pagination.is-top {
  position: absolute;
  top: 8px;
  right: 0;
  padding: 0;
}

@media screen and (max-width: 1199px) {
  .c-pagination.is-top {
    position: static;
  }
}

@media screen and (max-width: 1330px) {
  .c-pagination.is-top {
    margin-bottom: 15px;
  }
}

.c-search-header .c-pagination.is-top {
  top: auto;
  bottom: 6px;
}

@media screen and (max-width: 1330px) {
  .c-search-header .c-pagination.is-top {
    margin-top: 15px;
    margin-bottom: 0;
  }
}

.is-blog .c-pagination.is-top {
  top: -50px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

@media screen and (max-width: 1024px) {
  .is-blog .c-pagination.is-top {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.c-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.c-pagination__list-dot {
  display: block;
  padding: 10px;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .c-pagination__list-dot {
    padding: 5px;
  }
}

.c-pagination__list-item {
  position: relative;
}

.c-pagination__list-item.is-current .c-pagination__list-item-body {
  pointer-events: none;
}

.c-pagination__list-item.is-current .c-pagination__list-item-body::before {
  display: none;
}

.c-pagination__list-item.is-current .c-pagination__list-item-body-txt {
  border: 0;
  color: #f7f6f2;
}

.c-pagination__list-item-body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-align: center;
  height: 100%;
  padding: 8px;
  font-size: 0;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .c-pagination__list-item-body {
    padding: 6px;
  }
}

@media screen and (min-width: 1199px) {
  .c-pagination__list-item-body:hover .c-pagination__list-item-body-txt,
  .c-pagination__list-item-body:hover .c-pagination__list-item-body-icon {
    color: #f7f6f2;
  }
}

.c-pagination__list-item-body-txt {
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  text-indent: .2rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  -webkit-transition: color 0.3s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.3s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-pagination__list-item-body-icon {
  font-size: 14px;
  font-size: 1.4rem;
  color: #cccccc;
  -webkit-transition: color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-pagination__list-item-body.is-next {
  position: relative;
  z-index: 1;
  top: 50%;
  right: 0;
  display: block;
  width: 27px;
  height: 27px;
  margin: 1px 0 0 15px;
  background: #efefef;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .c-pagination__list-item-body.is-next {
    margin-left: 8px;
  }
}

.c-pagination__list-item-body.is-next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 5px;
  height: 5px;
  border: solid #111;
  border-width: 1px 0 0 1px;
  content: "";
  -webkit-transform: translateY(-50%) translateX(-75%) rotate(135deg);
          transform: translateY(-50%) translateX(-75%) rotate(135deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.c-pagination__list-item-body.is-prev {
  position: relative;
  z-index: 1;
  top: 50%;
  left: 0;
  display: block;
  width: 27px;
  height: 27px;
  margin: 1px 15px 0 0;
  background: #efefef;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .c-pagination__list-item-body.is-prev {
    margin-right: 8px;
  }
}

.c-pagination__list-item-body.is-prev::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 5px;
  height: 5px;
  border: solid #111;
  border-width: 1px 0 0 1px;
  content: "";
  -webkit-transform: translateY(-50%) translateX(-25%) rotate(315deg);
          transform: translateY(-50%) translateX(-25%) rotate(315deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

/*----------------------------------------
c-post
----------------------------------------*/
.c-post {
  position: relative;
}

.c-post__link {
  position: relative;
  display: block;
  text-align: left;
}

.c-post__link:hover .c-post__figure-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.c-post__time {
  display: block;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  color: rgba(102, 102, 102, 0.5);
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-post__time {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-post__figure {
  overflow: hidden;
}

.c-post__figure-img {
  background: no-repeat center;
  background-size: cover;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-post__figure-img::before {
  display: block;
  padding: 70% 0 0;
  content: "";
}

.c-post__figure-src {
  display: none;
}

.c-post__txt {
  z-index: 1;
  padding: 20px 10px;
}

@media screen and (max-width: 767px) {
  .c-post__txt {
    padding: 16px 0;
  }
}

.c-post__category {
  display: inline-block;
  padding: 10px;
  background: #111;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .c-post__category {
    padding: 8px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-post__category:not(:last-child) {
  margin-right: 1px;
}

.c-post__category-container {
  position: absolute;
  top: 0;
  left: 0;
}

.c-post__ttl {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: justify;
}

.c-grid[data-grid="3"].is-blog .c-grid__item:nth-child(-n+2) .c-post__ttl {
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .c-grid[data-grid="3"].is-blog .c-grid__item:nth-child(-n+2) .c-post__ttl {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .c-post__ttl {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-refusal {
  margin-top: 30px;
  text-align: right;
}

.c-refusal img {
  width: 100%;
  max-width: 300px;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .c-refusal img {
    max-width: 270px;
  }
}

/*----------------------------------------
c-sale
----------------------------------------*/
.c-sale {
  display: block;
  height: 80px;
}

@media screen and (max-width: 767px) {
  .c-sale {
    height: 50px;
  }
}

.c-sale__body {
  position: fixed;
  z-index: 10;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80px;
  background: repeat-x center #d23d3d;
  background-size: auto 100%;
}

@media screen and (max-width: 767px) {
  .c-sale__body {
    height: 50px;
  }
}

/*----------------------------------------
c-search-header
----------------------------------------*/
.c-search-header {
  position: relative;
  margin: 0 0 40px;
  color: #343434;
}

@media screen and (max-width: 1024px) {
  .c-search-header {
    margin-bottom: 20px;
  }
}

.c-search-header__form {
  display: table;
  width: 100%;
}

.c-search-header__row {
  display: table-row;
  width: 100%;
}

.c-search-header__cell {
  display: table-cell;
  padding: 8px 20px 8px 0;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .c-search-header__cell {
    padding: 6px 12px 6px 0;
  }
}

.c-search-header__ttl {
  width: 8%;
  font-size: 14px;
  font-size: 1.4rem;
  white-space: nowrap;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
  .c-search-header__ttl {
    width: 80px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-search-header__result {
  padding: 0 10px;
}

.c-search-header__result-num {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-search-header__category {
    overflow: hidden;
    max-height: 72px;
  }
}

.c-search-header__category.is-active {
  max-height: 100%;
  margin-bottom: -10px;
}

.c-search-header__category-toggle {
  display: none;
  width: 100%;
  border: 0;
  outline: none;
  background: none;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  color: #cccccc;
  text-align: right;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .c-search-header__category-toggle {
    display: block;
  }
}

.c-search-header__category-item {
  display: inline-block;
  margin: 0 4px 10px 0;
  padding: 4px 10px;
  background: #efefef;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .c-search-header__category-item {
    margin: 0 5px 10px 0;
  }
}

.c-search-header__category-item:hover {
  background: #eee;
}

.c-search-header__category-item-txt {
  margin: 0 10px 0 0;
  font-size: 14px;
  font-size: 1.4rem;
}

.c-search-header__category-item-icon {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
}

.c-search-header__category-item-icon::before {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 10px;
  height: 1px;
  background: #111;
  content: '';
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.c-search-header__category-item-icon::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 10px;
  height: 1px;
  background: #111;
  content: '';
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.c-search-header__select {
  position: relative;
  display: inline-block;
}

.c-search-header__select::after {
  position: absolute;
  top: 50%;
  right: 14px;
  display: block;
  width: 7px;
  height: 7px;
  border: solid #111;
  border-width: 0 1px 1px 0;
  pointer-events: none;
  content: "";
  -webkit-transform: translateY(-75%) rotate(45deg);
          transform: translateY(-75%) rotate(45deg);
}

.c-search-header__select select {
  padding: 4px 30px 4px 10px;
  border: 1px solid #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .c-search-header__select select {
    padding: 4px 30px 4px 10px;
  }
}

/*----------------------------------------
c-sidebar
----------------------------------------*/
.c-sidebar {
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px 0 0;
}

@media screen and (max-width: 1024px) {
  .c-sidebar {
    padding: 0;
  }
}

.c-sidebar .c-nav__categories {
  width: 100%;
  margin: -20px;
}

@media screen and (max-width: 1024px) {
  .c-sidebar .c-nav__categories {
    display: none;
  }
}

.c-sidebar .c-nav__categories-child {
  width: 100%;
  padding: 0;
  text-align: left;
}

.c-sidebar .c-nav__categories-child-ttl {
  position: relative;
  cursor: pointer;
}

.c-sidebar .c-nav__categories-child-ttl::before, .c-sidebar .c-nav__categories-child-ttl::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 1px;
  background: #666;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-sidebar .c-nav__categories-child-ttl::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-sidebar .c-nav__categories-child-ttl.is-active::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-sidebar .c-nav__categories-child-ttl.js-accrodion-btn::before, .c-sidebar .c-nav__categories-child-ttl.js-accrodion-btn::after {
  display: block;
  content: "";
}

.c-sidebar .c-nav__categories-child-ttl.js-accrodion-btn:hover .c-nav__categories-child-ttl-link {
  color: #ab2d2d;
}

.c-sidebar .c-nav__categories-child-ttl.js-accrodion-btn .c-nav__categories-child-ttl-link {
  pointer-events: none;
}

.c-sidebar .c-nav__categories-child-ttl-link {
  display: block;
  padding: 20px;
  -webkit-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .c-sidebar .c-nav__categories-child-ttl-link {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-sidebar .c-nav__categories-child-ttl-link:hover {
  color: #ab2d2d;
}

.c-sidebar .c-nav__categories-list {
  position: relative;
  z-index: 1;
  display: none;
}

.c-sidebar .c-nav__categories-list-item {
  position: relative;
}

.c-sidebar .c-nav__categories-list-item-link {
  position: relative;
  display: block;
  padding: 10px 20px 10px 40px;
  color: #666;
  -webkit-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .c-sidebar .c-nav__categories-list-item-link {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-sidebar .c-nav__categories-list-item-link:hover {
  color: #ab2d2d;
}

.c-sidebar .c-nav__categories-list-item-link::before {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 4px;
  height: 1px;
  background: #666;
  content: "";
}

.c-sidebar .c-nav__categories-list-item-link-container::before, .c-sidebar .c-nav__categories-list-item-link-container::after {
  position: absolute;
  top: 17.5px;
  right: 0;
  width: 10px;
  height: 1px;
  background: #666;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-sidebar .c-nav__categories-list-item-link-container::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-sidebar .c-nav__categories-list-item-link-container.is-active::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-sidebar .c-nav__categories-list-item-link-container.js-accrodion-btn {
  cursor: pointer;
}

.c-sidebar .c-nav__categories-list-item-link-container.js-accrodion-btn::before, .c-sidebar .c-nav__categories-list-item-link-container.js-accrodion-btn::after {
  display: block;
  content: "";
}

.c-sidebar .c-nav__categories-list-item-link-container.js-accrodion-btn:hover .c-nav__categories-list-item-link {
  color: #ab2d2d;
}

.c-sidebar .c-nav__categories-list-item-link-container.js-accrodion-btn .c-nav__categories-list-item-link {
  pointer-events: none;
}

.c-sidebar .c-nav__categories-list .c-nav__categories-list {
  padding-left: 20px;
}

.c-sidebar .c-nav__pages {
  width: 100%;
  padding: 20px 0 0;
}

@media screen and (max-width: 1024px) {
  .c-sidebar .c-nav__pages {
    display: none;
  }
}

.c-sidebar .c-nav__pages-list-item {
  margin: 10px 0 0;
}

.c-sidebar .c-nav__pages-list-item-link {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #343434;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: left;
  -webkit-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .c-sidebar .c-nav__pages-list-item-link {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 900;
  }
}

.c-sidebar .c-nav__pages-list-item-link:hover {
  color: #ab2d2d;
}

.c-sidebar .c-nav__sns {
  margin-top: 45px;
}

@media screen and (max-width: 1024px) {
  .c-sidebar .c-nav__sns {
    display: none;
  }
}

.c-sidebar .c-nav__sns-list {
  margin: -15px;
}

.c-sidebar .c-nav__sns-list-item {
  text-align: left;
}

.c-sidebar .c-nav__sns-list-item-link {
  display: block;
  padding: 15px;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  vertical-align: middle;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

@media screen and (min-width: 1199px) {
  .c-sidebar .c-nav__sns-list-item-link:hover {
    color: #ab2d2d;
  }
  .c-sidebar .c-nav__sns-list-item-link:hover i {
    color: #ab2d2d;
  }
}

.c-sidebar .c-nav__sns-list-item-link i {
  width: 17px;
  margin-right: 20px;
  font-size: 17px;
  font-size: 1.7rem;
  text-align: center;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

.c-sidebar__banner {
  padding: 30px 0 0;
}

@media screen and (max-width: 1024px) {
  .c-sidebar__banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-sidebar__banner-item {
  padding: 30px 0 0;
}

@media screen and (max-width: 1024px) {
  .c-sidebar__banner-item {
    width: 100%;
    padding: 0;
  }
  .c-sidebar__banner-item:not(:first-child) {
    margin-top: 30px;
  }
}

.c-sidebar__banner-link {
  display: block;
  font-size: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-sidebar__banner-link-img {
  width: 100%;
}

.c-sidebar__banner-link:hover {
  opacity: .8;
}

.c-sidebar__ttl {
  margin-bottom: 30px;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-sidebar__ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.c-sidebar__section:not(:first-child) {
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .c-sidebar__section:not(:first-child) {
    margin-top: 50px;
  }
}

.c-sidebar__categories-list {
  margin: -15px;
}

@media screen and (max-width: 767px) {
  .c-sidebar__categories-list {
    margin: -12px;
  }
}

.c-sidebar__categories-list-item {
  text-align: left;
}

.c-sidebar__categories-list-item-link {
  display: block;
  padding: 15px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

@media screen and (min-width: 1199px) {
  .c-sidebar__categories-list-item-link:hover {
    color: #ab2d2d;
  }
}

@media screen and (max-width: 767px) {
  .c-sidebar__categories-list-item-link {
    padding: 12px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.c-sidebar__new-link {
  position: relative;
  display: block;
}

.c-sidebar__new-link:hover .c-sidebar__new-figure-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.c-sidebar__new-figure-img {
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.c-sidebar__new-category {
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-sidebar__new-category {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-sidebar__new-category-container {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  background: #111;
}

.c-sidebar__new-txt {
  padding: 20px 10px 30px;
}

@media screen and (max-width: 767px) {
  .c-sidebar__new-txt {
    padding: 15px 0 30px;
  }
  .c-sidebar__new-item:last-child .c-sidebar__new-txt {
    padding: 15px 0 0;
  }
}

.c-sidebar__new-ttl {
  margin-bottom: 10px;
  font-size: 15px;
  font-size: 1.5rem;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-sidebar__new-ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-sidebar__new-time {
  display: block;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  color: rgba(17, 17, 17, 0.5);
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-sidebar__new-time {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*----------------------------------------
c-style-book
----------------------------------------*/
.c-style-book-list {
  position: relative;
  margin: 0 -15px;
  padding-left: calc(50% + 15px);
}

@media screen and (max-width: 1024px) {
  .c-style-book-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .c-style-book-list {
    margin: 0 -7.5px;
  }
}

.c-style-book-list__article {
  height: 100%;
}

.c-style-book-list.is-short {
  padding: 0;
}

.c-style-book-list.is-short:nth-child(2n) {
  padding: 0;
}

.c-style-book-list.is-short:nth-child(2n) .c-style-book-list__item {
  float: left;
  width: 25%;
}

@media screen and (max-width: 1024px) {
  .c-style-book-list.is-short:nth-child(2n) .c-style-book-list__item {
    float: none;
    width: 50%;
  }
}

.c-style-book-list.is-short .c-style-book-list__item {
  width: 25%;
}

@media screen and (max-width: 1024px) {
  .c-style-book-list.is-short .c-style-book-list__item {
    width: 50%;
  }
}

.c-style-book-list__item {
  float: left;
  width: 50%;
  padding: 15px;
}

@media screen and (max-width: 1024px) {
  .c-style-book-list__item {
    float: none;
        -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .is-short .c-style-book-list__item {
        -ms-flex-order: initial;
    -webkit-box-ordinal-group: initial;
            order: initial;
  }
}

@media screen and (max-width: 767px) {
  .c-style-book-list__item {
    padding: 7.5px;
  }
}

.c-style-book-list__item.is-large-item {
  position: absolute;
  top: 0;
  left: 0;
  float: none;
  width: 50%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .c-style-book-list__item.is-large-item {
    position: static;
        -ms-flex-order: 1;
    width: 100%;
    height: auto;
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
}

.c-style-book-list:nth-child(2n) {
  padding-right: calc(50% + 15px);
  padding-left: 0;
}

@media screen and (max-width: 1024px) {
  .c-style-book-list:nth-child(2n) {
    padding-right: 0;
  }
}

.c-style-book-list:nth-child(2n) .c-style-book-list__item {
  float: right;
}

@media screen and (max-width: 1024px) {
  .c-style-book-list:nth-child(2n) .c-style-book-list__item {
    float: none;
  }
}

.c-style-book-list:nth-child(2n) .c-style-book-list__item.is-large-item {
  top: 0;
  right: 0;
  left: auto;
  float: none;
}

.is-large-item .c-style-book-list__figure {
  height: 100%;
}

.is-large-item .c-style-book-list__figure::after {
  padding-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .is-large-item .c-style-book-list__figure::after {
    padding-bottom: 60%;
  }
}

.c-style-book-list__bg.c-img-bg {
  background-color: #f5f5f5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-style-book-list__ttl {
  margin-bottom: 30px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-style-book-list__ttl {
    margin-bottom: 20px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.c-style-book-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: justify;
  height: 700px;
  margin: 40px 0 60px;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .c-style-book-header {
    width: 100vw;
    height: auto;
    margin: 40px -80px 60px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .c-style-book-header {
    margin: 30px -16px 40px;
  }
}

.c-style-book-photo {
  position: relative;
  width: 78.125%;
  height: 100%;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .c-style-book-photo {
    width: 100%;
  }
}

.c-style-book-photo .swiper-wrapper {
  height: 100%;
}

.c-style-book-photo-thumb {
  width: 18%;
  height: 100%;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .c-style-book-photo-thumb {
    width: 100%;
    margin-top: 30px;
  }
}

.c-style-book-photo-thumb-item {
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .c-style-book-photo-thumb-item {
    width: 29%;
  }
}

.c-style-book-photo-thumb-item::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(17, 17, 17, 0.5);
  pointer-events: none;
  content: '';
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

.c-style-book-photo-thumb-item.swiper-slide-thumb-active::before {
  pointer-events: initial;
  opacity: 1;
}

.c-style-book-photo-thumb-figure {
  height: 100%;
}

.c-style-book-photo-thumb-figure::after {
  padding-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .c-style-book-photo-thumb-figure::after {
    padding-bottom: 60%;
  }
}

.c-style-book-photo-figure {
  height: 100%;
}

.c-style-book-photo-figure::after {
  padding-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .c-style-book-photo-figure::after {
    padding-bottom: 60%;
  }
}

.c-style-book-photo-nav-next {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  width: 50px;
  height: 50px;
  margin-left: 1px;
  background: #111;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .c-style-book-photo-nav-next {
    width: 38px;
    height: 38px;
  }
}

@media screen and (min-width: 1199px) {
  .c-style-book-photo-nav-next:hover::before {
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(135deg);
            transform: translateY(-50%) translateX(-50%) rotate(135deg);
  }
}

.c-style-book-photo-nav-next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 9px;
  height: 9px;
  border: solid #fff;
  border-width: 1px 0 0 1px;
  content: "";
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform: translateY(-50%) translateX(-75%) rotate(135deg);
          transform: translateY(-50%) translateX(-75%) rotate(135deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.c-style-book-photo-nav-prev {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 50px;
  height: 50px;
  background: #111;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .c-style-book-photo-nav-prev {
    width: 38px;
    height: 38px;
  }
}

@media screen and (min-width: 1199px) {
  .c-style-book-photo-nav-prev:hover::before {
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(315deg);
            transform: translateY(-50%) translateX(-50%) rotate(315deg);
  }
}

.c-style-book-photo-nav-prev::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 9px;
  height: 9px;
  border: solid #fff;
  border-width: 1px 0 0 1px;
  content: "";
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform: translateY(-50%) translateX(-25%) rotate(315deg);
          transform: translateY(-50%) translateX(-25%) rotate(315deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

/*----------------------------------------
c-style
----------------------------------------*/
.c-style__link {
  display: block;
}

.c-style__link:hover .c-style__figure-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.c-style__figure {
  overflow: hidden;
}

.c-style__figure-img {
  background: no-repeat center #f5f5f5;
  background-size: contain;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-style__figure-img::before {
  display: block;
  padding: 60% 0 0;
  content: "";
}

.c-style__figure-src {
  display: none;
}

/*----------------------------------------
c-ttl
----------------------------------------*/
.c-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-align: end;
  margin: 0 0 35px;
  -webkit-box-align: end;
          align-items: flex-end;
}

.is-blog .c-ttl {
      -ms-flex-order: 1;
  width: 100%;
  -webkit-box-ordinal-group: 2;
          order: 1;
}

.p-index__pickup-txt .c-ttl {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .p-index__pickup-txt .c-ttl {
    margin-bottom: 30px;
  }
}

.p-index__other-txt .c-ttl {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .p-index__other-txt .c-ttl {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1199px) {
  .c-ttl.is-pagination-header {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .c-ttl.is-pagination-header {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .c-ttl {
    margin-bottom: 20px;
  }
}

.c-ttl__main {
  display: inline-block;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.1;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}

@media screen and (max-width: 767px) {
  .c-ttl__main {
    font-size: 22px;
    font-size: 2.2rem;
    letter-spacing: 0.5px;
    letter-spacing: 0.05rem;
  }
}

.c-ttl__main .is-parent {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #ab2d2d;
}

.c-ttl__sub {
  display: inline-block;
  margin-left: 10px;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-ttl__sub {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1;
    letter-spacing: 0.5px;
    letter-spacing: 0.05rem;
  }
}

/*----------------------------------------
c-page-ttl
----------------------------------------*/
.c-page-ttl {
  text-align: justify;
}

.c-page-ttl__txt {
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-page-ttl__txt {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.c-page-ttl__txt .is-parent {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #ab2d2d;
}

.c-page-ttl-sub {
  margin-bottom: 70px;
  font-size: 30px;
  font-size: 3rem;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
  .c-page-ttl-sub {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .c-page-ttl-sub {
    margin-bottom: 30px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.c-page-ttl-under {
  position: relative;
  margin-bottom: 40px;
  padding: 0 10px 30px;
  border-bottom: 1px solid #f7f6f2;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .c-page-ttl-under {
    margin-bottom: 20px;
    padding: 0 0 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.c-page-ttl-under::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  width: 30%;
  height: 1px;
  background: #111;
  content: '';
}

/*----------------------------------------
c-u-list-child
----------------------------------------*/
.c-u-list-child {
  padding: 5px 0;
  text-align: justify;
}

.c-u-list-child__item {
  position: relative;
  padding: 0 0 0 10px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #999;
}

.c-u-list-child__item::before {
  position: absolute;
  top: 10px;
  left: 2px;
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50px;
  background: #999;
  content: "";
}

/*----------------------------------------
c-u-list
----------------------------------------*/
.c-u-list {
  text-align: justify;
}

.c-u-list__item {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 0 20px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.c-u-list__item::before {
  position: absolute;
  top: 10px;
  left: 2px;
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50px;
  background: #343434;
  content: "";
}

.l-content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 80px 100px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.l-content.p-single-product-container {
  position: static;
  overflow: visible;
}

@media screen and (max-width: 1024px) {
  .l-content.p-single-product-container {
    overflow: hidden;
  }
}

@media screen and (max-width: 1024px) {
  .l-content {
    display: block;
    padding: 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .l-content {
    padding: 0 16px;
  }
}

@media screen and (max-width: 1024px) {
  .l-content.is-front {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-content__main {
  width: calc(100% - 340px);
  padding: 0 0 0 80px;
}

@media screen and (max-width: 1330px) {
  .l-content__main {
    width: calc(100% - 250px);
    padding: 0 0 0 60px;
  }
}

@media screen and (max-width: 1024px) {
  .l-content__main {
    width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .l-content__main {
    padding: 0;
  }
}

@media screen and (max-width: 1024px) {
  .is-front .l-content__main {
        -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
}

.is-blog .l-content__main {
      -ms-flex-order: 2;
  -webkit-box-ordinal-group: 3;
          order: 2;
}

.l-content__main.is-one {
  width: 100%;
  margin-top: 30px;
  padding: 0 240px;
}

@media screen and (max-width: 1600px) {
  .l-content__main.is-one {
    padding: 0 180px;
  }
}

@media screen and (max-width: 1400px) {
  .l-content__main.is-one {
    padding: 0 120px;
  }
}

@media screen and (max-width: 1199px) {
  .l-content__main.is-one {
    padding: 0 80px;
  }
}

@media screen and (max-width: 1024px) {
  .l-content__main.is-one {
    margin-top: 0;
    padding: 0 40px;
  }
}

@media screen and (max-width: 767px) {
  .l-content__main.is-one {
    padding: 0;
  }
}

.l-content__side {
  width: 340px;
}

@media screen and (max-width: 1330px) {
  .l-content__side {
    width: 250px;
  }
}

@media screen and (max-width: 1024px) {
  .l-content__side {
    width: 100%;
    margin-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .l-content__side {
    margin-top: 50px;
  }
}

@media screen and (max-width: 1024px) {
  .is-front .l-content__side {
        -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
            order: 4;
  }
}

.is-blog .l-content__side {
      -ms-flex-order: 3;
  -webkit-box-ordinal-group: 4;
          order: 3;
}

.p-single-product-container .l-content__side {
      -ms-flex-order: 3;
  -webkit-box-ordinal-group: 4;
          order: 3;
}

.l-detail {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-align: start;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 1024px) {
  .l-detail {
    display: block;
    margin: -20px 0 0;
    padding: 0;
  }
}

.l-detail__head {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 50%;
  padding: 0 40px 40px 80px;
}

@media screen and (max-width: 1024px) {
  .l-detail__head {
    position: static;
        -ms-flex-order: 0;
    width: 100%;
    padding: 0 80px 60px;
    -webkit-box-ordinal-group: 1;
            order: 0;
  }
}

@media screen and (max-width: 767px) {
  .l-detail__head {
    padding: 0 16px 60px;
  }
}

.l-detail__main {
  width: 50%;
  padding: 0 40px;
}

@media screen and (max-width: 1024px) {
  .l-detail__main {
    width: 100%;
    padding: 0;
  }
}

.l-main {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px 40px;
}

@media screen and (max-width: 1024px) {
  .l-main {
    display: block;
    padding: 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .l-main {
    padding: 0 16px;
  }
}

/*----------------------------------------
404
----------------------------------------*/
.p-404__section {
  margin: 0 0 40px;
}

@media screen and (max-width: 767px) {
  .p-404__section {
    padding: 20px 0 0;
  }
}

.p-404__section .c-guid-desc {
  margin: 0 0 40px;
}

.p-404__section .c-guid-desc p:not([class]) {
  margin: 0 0 20px;
}

/*----------------------------------------
about
----------------------------------------*/
.p-about__section:not(:last-child) {
  margin-bottom: 160px;
}

@media screen and (max-width: 767px) {
  .p-about__section:not(:last-child) {
    margin-bottom: 70px;
  }
}

.p-about__intro {
  position: relative;
}

@media screen and (max-width: 1024px) {
  .p-about__intro-img-container {
    position: relative;
  }
}

.p-about__intro-figure {
  margin-right: 100px;
}

@media screen and (max-width: 1024px) {
  .p-about__intro-figure {
    margin-right: 60px;
  }
}

@media screen and (max-width: 767px) {
  .p-about__intro-figure {
    margin-right: 32px;
  }
}

.p-about__intro-figure::after {
  padding-bottom: 70%;
}

@media screen and (max-width: 1024px) {
  .p-about__intro-figure::after {
    padding-bottom: 80%;
  }
}

@media screen and (max-width: 767px) {
  .p-about__intro-figure::after {
    padding-bottom: 110%;
  }
}

.p-about__intro-figure:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40.625%;
  height: 66.666%;
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  .p-about__intro-figure:nth-child(2) {
    top: 130px;
    bottom: auto;
    bottom: -50px;
    height: auto;
  }
}

.p-about__intro-figure:nth-child(2)::after {
  height: 100%;
  padding-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .p-about__intro-figure:nth-child(2)::after {
    height: auto;
  }
}

.p-about__intro-txt {
  width: 50%;
  padding: 80px 60px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .p-about__intro-txt {
    width: 100%;
    padding: 80px 0 60px;
  }
}

@media screen and (max-width: 1024px) {
  .p-about__intro-txt {
    padding: 80px 0 50px;
  }
}

.p-about__feature {
  position: relative;
}

.p-about__feature-item {
  position: relative;
}

@media screen and (max-width: 1024px) {
  .p-about__feature-item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.p-about__feature-item:nth-child(odd)::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -320px;
  width: 100vw;
  background: #f7f6f2;
  content: '';
}

@media screen and (max-width: 1600px) {
  .p-about__feature-item:nth-child(odd)::after {
    left: -260px;
  }
}

@media screen and (max-width: 1400px) {
  .p-about__feature-item:nth-child(odd)::after {
    left: -200px;
  }
}

@media screen and (max-width: 1199px) {
  .p-about__feature-item:nth-child(odd)::after {
    left: -160px;
  }
}

@media screen and (max-width: 1024px) {
  .p-about__feature-item:nth-child(odd)::after {
    left: -120px;
  }
}

@media screen and (max-width: 767px) {
  .p-about__feature-item:nth-child(odd)::after {
    left: -16px;
  }
}

.p-about__feature-item:nth-child(even) .p-about__feature-item-container {
  padding-right: calc(40.625% + 220px);
  padding-left: 60px;
}

@media screen and (max-width: 1600px) {
  .p-about__feature-item:nth-child(even) .p-about__feature-item-container {
    padding-right: calc(40.625% + 120px);
  }
}

@media screen and (max-width: 1330px) {
  .p-about__feature-item:nth-child(even) .p-about__feature-item-container {
    padding-right: calc(40.625% + 60px);
  }
}

@media screen and (max-width: 1024px) {
  .p-about__feature-item:nth-child(even) .p-about__feature-item-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 80px 0 120px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .p-about__feature-item:nth-child(even) .p-about__feature-item-container {
    padding: 40px 0 100px;
  }
}

.p-about__feature-item:nth-child(even) .p-about__feature-item-figure {
  right: 0;
  left: auto;
}

@media screen and (max-width: 1024px) {
  .p-about__feature-item:nth-child(even) .p-about__feature-item-figure {
        -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
}

@media screen and (max-width: 1024px) {
  .p-about__feature-item:nth-child(even) .p-about__feature-item-ttl-en {
        -ms-flex-order: 1;
    padding: 0 40px 0 0;
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-about__feature-item:nth-child(even) .p-about__feature-item-ttl-en {
    padding: 0 20px 0 0;
  }
}

@media screen and (max-width: 1024px) {
  .p-about__feature-item:nth-child(even) .p-about__feature-item-ttl {
        -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
            order: 3;
  }
}

@media screen and (max-width: 1024px) {
  .p-about__feature-item:nth-child(even) .p-about__feature-item-desc {
        -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
            order: 4;
  }
}

.p-about__feature-item:nth-child(3n)::after {
  background: #cccccc;
}

.p-about__feature-item-container {
  position: relative;
  z-index: 1;
  padding: 100px 220px 320px 0;
  padding-left: calc(40.625% + 60px);
}

.p-about__feature-item-container::after {
  display: block;
  clear: both;
  content: "";
}

@media screen and (max-width: 1600px) {
  .p-about__feature-item-container {
    padding-right: 120px;
  }
}

@media screen and (max-width: 1330px) {
  .p-about__feature-item-container {
    padding-right: 60px;
  }
}

@media screen and (max-width: 1024px) {
  .p-about__feature-item-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 80px 0 120px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .p-about__feature-item-container {
    padding: 40px 0 100px;
  }
}

.p-about__feature-item-figure {
  position: absolute;
  top: -120px;
  bottom: 160px;
  left: 0;
  width: 40.625%;
}

@media screen and (max-width: 1024px) {
  .p-about__feature-item-figure {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: 48%;
    margin-top: -180px;
  }
  .p-about__feature-item-figure::after {
    padding-bottom: 80%;
  }
}

@media screen and (max-width: 767px) {
  .p-about__feature-item-figure {
    margin-top: -100px;
  }
}

.p-about__feature-item-ttl {
  margin-bottom: 60px;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .p-about__feature-item-ttl {
    width: 100%;
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .p-about__feature-item-ttl {
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-about__feature-item-ttl-en {
  margin-bottom: 30px;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
  .p-about__feature-item-ttl-en {
    width: 52%;
    padding: 0 0 0 40px;
  }
}

@media screen and (max-width: 767px) {
  .p-about__feature-item-ttl-en {
    padding: 0 0 0 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-about__feature-item-ttl-en::after {
  display: block;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 50px;
  font-size: 5rem;
  line-height: 1;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  content: attr(data-num);
}

@media screen and (max-width: 767px) {
  .p-about__feature-item-ttl-en::after {
    font-size: 30px;
    font-size: 3rem;
  }
}

.p-about__feature-item-desc {
  font-size: 15px;
  font-size: 1.5rem;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .p-about__feature-item-desc {
    width: 100%;
  }
}

.p-about__access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-about__access-txt {
  width: 60%;
  padding: 60px 0;
}

@media screen and (max-width: 1330px) {
  .p-about__access-txt {
        -ms-flex-order: 2;
    width: 100%;
    padding: 60px 0 0;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
}

@media screen and (max-width: 767px) {
  .p-about__access-txt {
    padding: 30px 0 0;
  }
}

.p-about__access .c-gmap {
  width: 40%;
  padding: 0 0 0 60px;
}

@media screen and (max-width: 1330px) {
  .p-about__access .c-gmap {
        -ms-flex-order: 1;
    width: 100%;
    padding-left: 0;
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
}

.p-about__access .c-gmap iframe {
  height: 100%;
}

@media screen and (max-width: 1330px) {
  .p-about__access .c-gmap iframe {
    height: 300px;
  }
}

/*----------------------------------------
content
----------------------------------------*/
.p-content__section:not(:last-child) {
  margin: 0 0 80px;
}

@media screen and (max-width: 767px) {
  .p-content__section:not(:last-child) {
    margin: 0 0 40px;
  }
}

/*----------------------------------------
index
----------------------------------------*/
.p-index__visual-outer {
  position: relative;
  width: 78.125vw;
}

@media screen and (max-width: 1024px) {
  .p-index__visual-outer {
    width: 100%;
  }
}

.p-index__visual-main-container {
  overflow: hidden;
  height: calc(100vh - 60px);
  margin: 0;
}

@media screen and (max-width: 1330px) {
  .p-index__visual-main-container {
    height: calc(100vh - 120px);
  }
}

@media screen and (max-width: 1024px) {
  .p-index__visual-main-container {
    width: 100%;
    height: auto;
    min-height: calc(100vh - 200px);
  }
}

.p-index__visual-main-container .swiper-wrapper {
  height: 100%;
}

.p-index__visual-main-slide {
  height: 100%;
}

.p-index__visual-main-link {
  position: relative;
  display: block;
  height: 100%;
}

.p-index__visual-main-figure {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .p-index__visual-main-figure {
    width: 87.5%;
    height: calc(60vh - 65px);
  }
}

@media screen and (max-width: 767px) {
  .p-index__visual-main-figure {
    height: calc(60vh - 50px);
  }
}

.p-index__visual-main-txt {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-pack: center;
  min-height: calc(100% - 450px);
  margin-bottom: 450px;
  padding: 40px calc(80px + 14%) 40px 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1024px) {
  .p-index__visual-main-txt {
    position: static;
    width: 100vw;
    height: auto;
    margin-bottom: 0;
    padding-top: 115px;
  }
}

@media screen and (max-width: 767px) {
  .p-index__visual-main-txt {
    padding: 80px 16px 0;
  }
}

.p-index__visual-main-ttl {
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 50px;
  font-size: 5rem;
  line-height: 1.2;
  color: #fff;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
  .p-index__visual-main-ttl {
    color: #111;
  }
}

@media screen and (max-width: 767px) {
  .p-index__visual-main-ttl {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.p-index__visual-main-desc {
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  max-height: 200px;
}

@media screen and (max-width: 1024px) {
  .p-index__visual-main-desc {
    color: #111;
  }
}

@media screen and (max-width: 767px) {
  .p-index__visual-main-desc {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-index__visual-main-desc:not(:first-child) {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .p-index__visual-main-desc:not(:first-child) {
    margin-top: 20px;
  }
}

.p-index__visual-sub-container {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  width: 25vw;
  height: calc(78vh - 60px);
  text-align: right;
  pointer-events: none;
  -webkit-transform: translateY(-50%) translateX(50%);
          transform: translateY(-50%) translateX(50%);
}

@media screen and (max-width: 1330px) {
  .p-index__visual-sub-container {
    height: calc(78vh - 120px);
  }
}

@media screen and (max-width: 1024px) {
  .p-index__visual-sub-container {
    top: 60vh;
    right: auto;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        -ms-flex-pack: end;
    width: 100%;
    height: 360px;
    -webkit-transform: translateY(-100%) translateX(0);
            transform: translateY(-100%) translateX(0);
    -webkit-box-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (max-width: 767px) {
  .p-index__visual-sub-container {
    height: 180px;
  }
}

.p-index__visual-sub-container .swiper-wrapper {
  height: 100%;
}

.p-index__visual-sub-inner {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .p-index__visual-sub-inner {
    width: 43.75%;
    margin: 0;
    pointer-events: initial;
  }
}

.p-index__visual-sub-slide {
  height: 100%;
}

.p-index__visual-sub-link {
  display: block;
  height: 100%;
}

.p-index__visual-sub-figure {
  height: 100%;
}

.p-index__visual-nav {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
  pointer-events: initial;
}

@media screen and (max-width: 1024px) {
  .p-index__visual-nav {
    pointer-events: initial;
  }
}

@media screen and (max-width: 767px) {
  .p-index__visual-nav {
        -ms-flex-pack: end;
    -webkit-box-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (max-width: 767px) {
  .p-index__visual-nav-next {
    width: 38px;
    height: 38px;
  }
}

@media screen and (max-width: 767px) {
  .p-index__visual-nav-prev {
    width: 38px;
    height: 38px;
  }
}

.p-index__visual-pagination {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
      -ms-flex-pack: end;
  margin-top: 30px;
  pointer-events: initial;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .p-index__visual-pagination {
    position: absolute;
    right: auto;
    bottom: 0;
    left: 0;
    margin-top: 0;
    padding: 25px 30px 0;
    background: #fff;
    pointer-events: initial;
  }
}

@media screen and (max-width: 767px) {
  .p-index__visual-pagination {
    padding-top: 10px;
  }
}

.p-index__visual-pagination::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #d0d0d0;
  content: "";
}

@media screen and (max-width: 1024px) {
  .p-index__visual-pagination::after {
    left: 30px;
    width: calc(100% - 60px);
  }
}

.p-index__visual-pagination .swiper-pagination-bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-align: center;
  width: 40px;
  height: 40px;
  outline: none;
  background: none;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  color: #b2b2b2;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .p-index__visual-pagination .swiper-pagination-bullet {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-index__visual-pagination .swiper-pagination-bullet-active {
  background: none;
  color: #111;
}

.p-index__visual-pagination .swiper-pagination-bullet-active::before {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #111;
  content: "";
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: progress 4s linear forwards;
          animation: progress 4s linear forwards;
}

@media screen and (max-width: 1024px) {
  .p-index__visual-pagination .swiper-pagination-bullet-active::before {
    left: 30px;
    width: calc(100% - 60px);
  }
}

.p-index__visual-campaign {
  position: absolute;
  z-index: 1;
  bottom: 50px;
  left: 80px;
  max-width: 340px;
}

@media screen and (max-width: 1024px) {
  .p-index__visual-campaign {
    display: none;
  }
}

@media screen and (max-height: 748px) {
  .p-index__visual-campaign {
    display: none;
  }
}

.p-index__visual-campaign-link {
  display: block;
  height: 100%;
}

.p-index-campaign-img {
  max-height: 38vh;
}

.p-index__visual-campaign-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border: 0;
  background: none;
  cursor: pointer;
}

.p-index__visual-campaign-close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #111;
  content: "";
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(45deg);
          transform: translateY(-50%) translateX(-50%) rotate(45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.p-index__visual-campaign-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #111;
  content: "";
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(-45deg);
          transform: translateY(-50%) translateX(-50%) rotate(-45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.p-index__category {
  max-width: 1920px;
  margin: 120px auto 100px;
  padding: 0 80px;
}

@media screen and (max-width: 767px) {
  .p-index__category {
    margin: 50px auto 50px;
    padding: 0 16px;
  }
}

.p-index__category-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-align: end;
  margin-bottom: 60px;
  -webkit-box-align: end;
          align-items: flex-end;
}

.p-index__category-ttl-main {
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

.p-index__category-ttl-sub {
  margin-left: 20px;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

.p-index__category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .p-index__category-list {
    margin: 0 -8px;
  }
}

.p-index__category-list-container {
  overflow: hidden;
  margin-top: -8px;
}

.p-index__category-list-item {
  width: 20%;
}

@media screen and (max-width: 1330px) {
  .p-index__category-list-item {
    width: 33.3333%;
  }
}

@media screen and (max-width: 1024px) {
  .p-index__category-list-item {
    width: 50%;
  }
}

.p-index__category-list-link {
  display: block;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .p-index__category-list-link {
    padding: 8px;
  }
}

.p-index__category-list-ttl {
  padding: 20px 10px 0;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .p-index__category-list-ttl {
    padding: 10px 0 0;
  }
}

.p-index__category-more {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px auto 0;
  padding: 10px 50px 10px 10px;
  border: 0;
  background: none;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  cursor: pointer;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

@media screen and (min-width: 1199px) {
  .p-index__category-more:hover {
    color: #ab2d2d;
  }
  .p-index__category-more:hover::before {
    background: #ab2d2d;
  }
  .p-index__category-more:hover::after {
    background: #ab2d2d;
  }
}

@media screen and (max-width: 767px) {
  .p-index__category-more {
    margin-top: 20px;
    padding: 10px 30px 10px 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.p-index__category-more.is-dispay-none {
  display: none;
}

.p-index__category-more::before {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 15px;
  height: 1px;
  background: #111;
  content: "";
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-index__category-more::before {
    width: 10px;
  }
}

.p-index__category-more::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 15px;
  height: 1px;
  background: #111;
  content: "";
  -webkit-transition: -webkit-transform .5s ease;
  -webkit-transition: color .2s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  transition: color .2s ease;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

@media screen and (max-width: 767px) {
  .p-index__category-more::after {
    width: 10px;
  }
}

[data-status="is-open"] + .p-index__category-more::after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}

.p-index__pickup {
  position: relative;
  overflow: hidden;
  max-width: 1920px;
  margin: 0 auto 100px;
}

@media screen and (max-width: 767px) {
  .p-index__pickup {
    margin-bottom: 50px;
  }
}

.p-index__pickup-container {
  width: 100%;
}

.p-index__pickup-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .p-index__pickup-item {
        -ms-flex-direction: column;
            flex-direction: column;
        -ms-flex-pack: start;
        -ms-flex-align: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
}

.p-index__pickup-txt {
  width: 40%;
  padding: 8% 80px 10%;
}

@media screen and (max-width: 1330px) {
  .p-index__pickup-txt {
    width: 50%;
    padding: 7% 80px 8%;
  }
}

@media screen and (max-width: 1024px) {
  .p-index__pickup-txt {
    width: 100%;
    padding: 100px 80px 0;
  }
}

@media screen and (max-width: 767px) {
  .p-index__pickup-txt {
    padding: 70px 16px 0;
  }
}

.p-index__pickup-ttl {
  margin-bottom: 120px;
  text-align: left;
}

.p-index__pickup-ttl-main {
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 50px;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

.p-index__pickup-ttl-sub {
  margin-left: 10px;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

.p-index__pickup-ttl-catch {
  font-size: 20px;
  font-size: 2rem;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .p-index__pickup-ttl-catch {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-index__pickup-desc {
  line-height: 1.8;
  text-align: left;
  letter-spacing: 1px;
  letter-spacing: 0.1rem;
}

.p-index__pickup-desc:not(:first-child) {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .p-index__pickup-desc:not(:first-child) {
    margin-top: 20px;
  }
}

.p-index__pickup-figure {
  width: 60%;
}

@media screen and (max-width: 1330px) {
  .p-index__pickup-figure {
    width: 50%;
  }
}

@media screen and (max-width: 1024px) {
  .p-index__pickup-figure {
    width: 100%;
  }
}

.p-index__pickup-figure::after {
  height: 100%;
  padding-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .p-index__pickup-figure::after {
    height: auto;
    padding-bottom: 60%;
  }
}

.p-index__pickup-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: end;
  margin: 95px -20px -15px;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 1199px) {
  .p-index__pickup-button {
    margin: 95px -20px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .p-index__pickup-button {
    margin-top: 30px;
  }
}

.p-index__pickup-link {
  position: relative;
  overflow: hidden;
  padding: 15px 20px 15px 40px;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (min-width: 1199px) {
  .p-index__pickup-link:hover::after {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
}

@media screen and (max-width: 767px) {
  .p-index__pickup-link {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.p-index__pickup-link::after {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: calc(100% - 20px);
  height: 1px;
  background: #111;
  content: "";
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: center left;
          transform-origin: center left;
}

.p-index__pickup-pagination {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.p-index__pickup-pagination::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #d0d0d0;
  content: "";
}

.p-index__pickup-pagination.swiper-pagination-bullets {
  position: absolute;
  bottom: 130px;
  left: 60%;
  width: auto;
  margin-left: 80px;
}

@media screen and (max-width: 1330px) {
  .p-index__pickup-pagination.swiper-pagination-bullets {
    bottom: 110px;
    left: 50%;
  }
}

@media screen and (max-width: 1199px) {
  .p-index__pickup-pagination.swiper-pagination-bullets {
    bottom: 90px;
  }
}

@media screen and (max-width: 1024px) {
  .p-index__pickup-pagination.swiper-pagination-bullets {
    top: 0;
    bottom: auto;
    left: 0;
    margin-top: 60%;
    margin-left: 60px;
  }
}

@media screen and (max-width: 767px) {
  .p-index__pickup-pagination.swiper-pagination-bullets {
    margin-left: 16px;
  }
}

.p-index__pickup-pagination .swiper-pagination-bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-align: center;
  width: 40px;
  height: 40px;
  outline: none;
  background: none;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  color: #b2b2b2;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .p-index__pickup-pagination .swiper-pagination-bullet {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-index__pickup-pagination .swiper-pagination-bullet-active {
  background: none;
  color: #111;
}

.p-index__pickup-pagination .swiper-pagination-bullet-active::before {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #111;
  content: "";
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: progress 4s linear forwards;
          animation: progress 4s linear forwards;
}

.p-index__pickup-nav {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

@media screen and (max-width: 1330px) {
  .p-index__pickup-nav {
    left: 50%;
  }
}

@media screen and (max-width: 1024px) {
  .p-index__pickup-nav {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    margin-top: 60%;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@media screen and (max-width: 767px) {
  .p-index__pickup-nav {
    width: 80px;
  }
}

.p-index__section {
  position: relative;
}

.p-index__section:not(:last-child) {
  margin: 0 0 100px;
}

@media screen and (max-width: 767px) {
  .p-index__section:not(:last-child) {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 1024px) {
  .p-index__section.is-new {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  .p-index__section.is-new {
    margin-bottom: 50px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .p-index__section.is-ranking {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 1024px) {
  .p-index__section.is-sale {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  .p-index__section.is-sale {
    margin-bottom: 50px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .p-index__section.is-general {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  .p-index__section.is-general {
    margin-bottom: 40px;
  }
}

.p-index__section-list:not(:last-child) {
  margin: 0 0 50px;
}

@media screen and (max-width: 767px) {
  .p-index__section-list:not(:last-child) {
    margin-bottom: 30px;
  }
}

.is-new .p-index__section-list {
  position: relative;
  margin-bottom: 0;
  padding: 0 0 60px 80px;
}

@media screen and (max-width: 1024px) {
  .is-new .p-index__section-list {
    position: static;
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .is-new .p-index__section-list {
    margin-top: -12.5px;
    padding-bottom: 17.5px;
  }
}

.is-new .p-index__section-list::after {
  position: absolute;
  top: 140px;
  right: -80px;
  bottom: 0;
  left: 0;
  background: #f7f6f2;
  content: "";
}

@media screen and (max-width: 1199px) {
  .is-new .p-index__section-list::after {
    top: 80px;
  }
}

@media screen and (max-width: 1024px) {
  .is-new .p-index__section-list::after {
    top: 240px;
    right: -80px;
    left: -80px;
  }
}

@media screen and (max-width: 767px) {
  .is-new .p-index__section-list::after {
    top: 100px;
    right: -16px;
    left: -16px;
  }
}

.p-index__section-list.is-ranking {
  overflow-x: auto;
  overflow-y: hidden;
  margin-right: -80px;
  margin-bottom: 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media screen and (max-width: 767px) {
  .p-index__section-list.is-ranking {
    margin-top: -12.5px;
    margin-right: -16px;
    margin-bottom: 30px;
  }
}

.p-index__section-list.is-ranking::-webkit-scrollbar {
  display: none;
}

.is-sale .p-index__section-list {
  position: relative;
  margin-bottom: 0;
  padding: 0 0 60px 80px;
}

@media screen and (max-width: 1024px) {
  .is-sale .p-index__section-list {
    position: static;
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .is-sale .p-index__section-list {
    margin-top: -12.5px;
    padding-bottom: 17.5px;
  }
}

.is-sale .p-index__section-list::after {
  position: absolute;
  top: 140px;
  right: -80px;
  bottom: 0;
  left: 0;
  background: #cccccc;
  content: "";
}

@media screen and (max-width: 1199px) {
  .is-sale .p-index__section-list::after {
    top: 80px;
  }
}

@media screen and (max-width: 1024px) {
  .is-sale .p-index__section-list::after {
    top: 240px;
    right: -80px;
    left: -80px;
  }
}

@media screen and (max-width: 767px) {
  .is-sale .p-index__section-list::after {
    top: 100px;
    right: -16px;
    left: -16px;
  }
}

.is-front .is-general .p-index__section-list {
  margin-right: -80px;
}

@media screen and (max-width: 1024px) {
  .is-front .is-general .p-index__section-list {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .is-front .is-general .p-index__section-list {
    margin-top: -8px;
    margin-bottom: 30px;
  }
}

.p-index__button {
  position: absolute;
  top: -15px;
  right: 0;
}

@media screen and (max-width: 1024px) {
  .p-index__button {
    position: static;
  }
}

.p-index__button.is-other {
  position: static;
  margin: 85px -20px 0 0;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .p-index__button.is-other {
    margin-top: 30px;
  }
}

.p-index__ranking-scroll-bar {
  position: relative;
  width: 34%;
  height: 2px;
  margin: 0 auto;
  background: #efefef;
}

@media screen and (max-width: 1024px) {
  .p-index__ranking-scroll-bar {
    width: 100%;
    height: 2px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .p-index__ranking-scroll-bar {
    margin-bottom: 30px;
  }
}

.p-index__ranking-scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background: #111;
  cursor: pointer;
}

.p-index__other {
  position: relative;
  width: 100%;
  padding: 80px 0 70px;
}

@media screen and (max-width: 767px) {
  .p-index__other {
    padding: 40px 0 50px;
  }
}

@media screen and (max-width: 1024px) {
  .is-front .p-index__other {
        -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
}

.p-index__other::after {
  position: absolute;
  top: 0;
  right: -80px;
  bottom: 0;
  left: -80px;
  background: #f7f6f2;
  content: "";
}

.p-index__other-container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .p-index__other-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-index__other-figure {
  width: 60%;
  margin-right: 80px;
  margin-left: -80px;
}

@media screen and (max-width: 1330px) {
  .p-index__other-figure {
    width: 50%;
  }
}

@media screen and (max-width: 1024px) {
  .p-index__other-figure {
    width: 100vw;
    margin-right: -80px;
    margin-left: -80px;
  }
}

@media screen and (max-width: 767px) {
  .p-index__other-figure {
    margin-right: -16px;
    margin-left: -16px;
  }
}

.p-index__other-figure::after {
  padding-bottom: 80%;
}

@media screen and (max-width: 1330px) {
  .p-index__other-figure::after {
    padding-bottom: 100%;
  }
}

@media screen and (max-width: 1199px) {
  .p-index__other-figure::after {
    padding-bottom: 120%;
  }
}

@media screen and (max-width: 1024px) {
  .p-index__other-figure::after {
    padding-bottom: 60%;
  }
}

.p-index__other-txt {
  width: 40%;
  padding: 80px 0 170px;
  text-align: left;
}

@media screen and (max-width: 1330px) {
  .p-index__other-txt {
    width: 50%;
    padding: 60px 0 120px;
  }
}

@media screen and (max-width: 1024px) {
  .p-index__other-txt {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-index__other-txt {
    padding-top: 30px;
  }
}

.p-index__other-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-index__other-ttl:not(:last-child) {
  margin-bottom: 120px;
}

.p-index__other-ttl-main {
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 50px;
  font-size: 5rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

.p-index__other-ttl-sub {
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

.p-index__other-copy {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .p-index__other-copy {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-index__other-copy:not(:last-child) {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .p-index__other-copy:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-index__other-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.p-index__blog {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .is-front .p-index__blog {
        -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
            order: 3;
  }
}

.p-index__blog::before {
  position: absolute;
  top: 0;
  right: -80px;
  left: -80px;
  display: block;
  padding-bottom: 12%;
  background: #f7f6f2;
  content: "";
}

@media screen and (max-width: 1330px) {
  .p-index__blog::before {
    padding-bottom: 16%;
  }
}

@media screen and (max-width: 1024px) {
  .p-index__blog::before {
    padding-bottom: 30%;
  }
}

.p-index__blog-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -15px;
}

@-webkit-keyframes progress {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes progress {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

/*----------------------------------------
option
----------------------------------------*/
.p-option {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .p-option {
    padding-bottom: 50px;
  }
}

.p-option .c-page-ttl {
  max-width: 1920px;
  margin: 0 auto 60px;
  padding: 0 80px;
}

@media screen and (max-width: 1024px) {
  .p-option .c-page-ttl {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .p-option .c-page-ttl {
    padding: 0 16px;
  }
}

/*----------------------------------------
single
----------------------------------------*/
.p-single {
  text-align: justify;
}

.p-single__btn {
  margin: 0 0 40px;
  padding: 80px 0;
}

@media screen and (max-width: 1199px) {
  .p-single__btn {
    padding: 40px 0 0;
  }
}

.p-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-align: center;
  margin: 0 0 20px;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .p-single__meta {
    display: block;
    margin: 0 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .p-single__meta-item {
    margin: 0 0 10px;
  }
}

.p-single__meta-cat {
  display: inline-block;
  margin: 0 20px 0 0;
  vertical-align: middle;
}

.p-single__meta-link {
  display: block;
  padding: 10px;
  background: #111;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-single__meta-link {
    padding: 6px 10px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-single__meta-date {
  display: inline-block;
  margin: 0 20px 0 0;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  color: #666;
  vertical-align: middle;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .p-single__meta-date {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-single-ttl {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .p-single-ttl {
    margin-bottom: 30px;
  }
}

.p-single-ttl__txt {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .p-single-ttl__txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-single__content {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 1px;
  letter-spacing: 0.1rem;
}

.p-single__content-lead {
  margin: 0 0 40px;
}

.p-single__content .addtoany_shortcode {
  margin: 60px 0 0;
  text-align: center;
}

.p-single__content-container {
  position: relative;
  padding: 0 240px 70px;
}

@media screen and (max-width: 1600px) {
  .p-single__content-container {
    padding: 0 180px 70px;
  }
}

@media screen and (max-width: 1400px) {
  .p-single__content-container {
    padding: 0 120px 70px;
  }
}

@media screen and (max-width: 1199px) {
  .p-single__content-container {
    padding: 0 80px 70px;
  }
}

@media screen and (max-width: 1024px) {
  .p-single__content-container {
    padding: 0 0 70px;
  }
}

@media screen and (max-width: 767px) {
  .p-single__content-container {
    padding: 0 0 30px;
  }
}

.p-single__content-container.is-eyecatch-none {
  padding-top: 70px;
}

@media screen and (max-width: 767px) {
  .p-single__content-container.is-eyecatch-none {
    padding-top: 30px;
  }
}

.p-single__content-container.is-eyecatch-none::after {
  top: 0;
}

.p-single__content-container::after {
  position: absolute;
  z-index: 0;
  top: 240px;
  right: 0;
  bottom: 0;
  left: 0;
  background: #f7f6f2;
  content: '';
}

@media screen and (max-width: 1024px) {
  .p-single__content-container::after {
    top: 80px;
    right: -80px;
    left: -80px;
  }
}

.p-single__content-eyecatch {
  margin-bottom: 40px;
  background: #f5f5f5;
}

.p-single__content-eyecatch .c-img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-single__content-inner {
  position: relative;
  z-index: 1;
}

.p-single__content-inner > [class|='wp'] {
  margin: 24px 0 0;
}

.p-single__content-inner > ol:not([class]) {
  margin: 24px 0 0;
  padding: 0 0 0 1em;
  counter-reset: order 0;
}

@media screen and (max-width: 767px) {
  .p-single__content-inner > ol:not([class]) {
    margin: 12px 0 0;
  }
}

.p-single__content-inner > ol:not([class]) > li:not([class]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
}

.p-single__content-inner > ol:not([class]) > li:not([class])::before {
  display: inline-block;
  margin: 0 .5em 0 0;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  color: #111;
  content: counter(order, decimal-leading-zero) "";
  counter-increment: order 1;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.p-single__content-inner > ol:not([class]) > li:not([class]) + li:not([class]) {
  margin: .5em 0 0;
}

.p-single__content-inner > ul:not(.wp-block-gallery) {
  margin: 24px 0 0;
  padding: 0 0 0 1em;
}

@media screen and (max-width: 767px) {
  .p-single__content-inner > ul:not(.wp-block-gallery) {
    margin: 12px 0 0;
  }
}

.p-single__content-inner > ul:not(.wp-block-gallery) > li:not([class]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
}

.p-single__content-inner > ul:not(.wp-block-gallery) > li:not([class])::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 .5em 0 0;
  border-radius: 50%;
  background: #111;
  content: "";
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.p-single__content-inner > ul:not(.wp-block-gallery) > li:not([class]) + li:not([class]) {
  margin: .5em 0 0;
}

.p-single__content p:not([class]) {
  margin: 24px 0 0;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.8;
}

.p-single__content p:not([class]) + p:not([class]) {
  margin: 12px 0 0;
}

.p-single__content .wp-block-quote p:not([class]):first-child {
  margin: 0;
}

.p-single__content h2:not([class]) {
  padding: 14px 10px;
  background: #111;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #fff;
}

.p-single__content h2:not([class]):not(:first-child) {
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .p-single__content h2:not([class]):not(:first-child) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .p-single__content h2:not([class]) {
    padding: 8px 10px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-single__content h3:not([class]) {
  padding: 0 0 24px;
  border-bottom: 1px solid #111;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
}

.p-single__content h3:not([class]):not(:first-child) {
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .p-single__content h3:not([class]):not(:first-child) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .p-single__content h3:not([class]) {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-single__content h4:not([class]) {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.5;
}

.p-single__content h4:not([class]):not(:first-child) {
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .p-single__content h4:not([class]):not(:first-child) {
    margin-top: 12px;
  }
}

@media screen and (max-width: 767px) {
  .p-single__content h4:not([class]) {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-single__content figure:not([class]) {
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .p-single__content figure:not([class]) {
    margin-top: 12px;
  }
}

.p-single__content b:not([class]),
.p-single__content strong:not([class]) {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(45%, rgba(52, 52, 52, 0.2)));
  background: -webkit-linear-gradient(transparent 55%, rgba(52, 52, 52, 0.2) 45%);
  background: linear-gradient(transparent 55%, rgba(52, 52, 52, 0.2) 45%);
}

.p-single__content em:not([class]) {
  font-style: italic;
}

.p-single__content .wp-block-image {
  position: relative;
  font-size: 0;
}

.p-single__content .wp-block-image figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 1em 1.5em;
  background: rgba(17, 17, 17, 0.3);
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #fff;
}

.p-single__content .wp-block-image figure {
  display: block;
}

.p-single__content .wp-block-quote {
  padding: 2em;
  border-color: #cccccc;
  background: #f5f5f5;
}

@media screen and (max-width: 767px) {
  .p-single__content .wp-block-audio audio {
    min-width: 100%;
  }
}

.p-single__content .wp-block-audio figcaption {
  margin: .5em 0 0;
}

.p-single__content .wp-block-file .wp-block-file__button {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  border: 1px solid #111;
  border-radius: 0;
  background: #fff;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  color: #111 !important;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 2.5px;
  letter-spacing: 0.25rem;
  opacity: 1 !important;
}

@media screen and (max-width: 767px) {
  .p-single__content .wp-block-file .wp-block-file__button {
    width: 100%;
    margin: 10px 0 0;
  }
}

.p-single__content .wp-block-file .wp-block-file__button:hover {
  background: #111 !important;
  color: #fff !important;
}

.p-single__content .wp-block-code {
  padding: 2em;
  border: 0;
  border-radius: 0;
  background: #111;
  color: #f5f5f5;
}

.p-single__content .wp-block-pullquote {
  border-color: #111;
  color: #111;
}

.p-single__content .wp-block-pullquote p:not([class]) {
  font-size: 24px;
  font-size: 2.4rem;
}

.p-single__content .wp-block-pullquote p:not([class]):first-child {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .p-single__content .wp-block-pullquote p:not([class]) {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-single__content .wp-block-pullquote cite:not([class]) {
  color: #343434;
}

.p-single__content .wp-block-button__link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 10px 45px;
  border: 2px solid #111;
  border-radius: 0;
  background: #fff;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  color: #111;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 2.5px;
  letter-spacing: 0.25rem;
}

@media screen and (max-width: 767px) {
  .p-single__content .wp-block-button__link {
    width: 100%;
    margin: 10px 0 0;
  }
}

.p-single__content .wp-block-button__link:hover {
  background: #111;
  color: #fff;
}

.p-single__content .wp-block-separator {
  margin-right: auto;
  margin-left: auto;
  border-color: #111;
}

.p-single__content .wp-block-separator::before {
  color: #111;
}

.p-single__content .wp-block-calendar caption {
  color: #111;
}

.p-single__content .wp-block-calendar th:not([class]) {
  border-color: #111;
  background: #111;
  color: #fff;
}

.p-single__content .wp-block-calendar td:not([class]) {
  border-color: #111;
}

.p-single__content .wp-block-calendar a {
  display: block;
  padding: 5px 0;
  color: #111;
}

.p-single__content .wp-block-calendar tbody td, .p-single__content .wp-block-calendar th {
  border-color: #111;
}

.p-single__content .wp-block-embed__wrapper {
  text-align: center;
}

.p-single__content .wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  overflow: hidden;
}

.p-single__content .wp-block-embed-youtube .wp-block-embed__wrapper::after {
  display: block;
  padding-top: 56.25%;
  content: "";
}

.p-single__content .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-single__content .wp-embed-aspect-4-3 .wp-block-embed-youtube .wp-block-embed__wrapper::after {
  padding-top: 75%;
}

.p-single__content .wp-embed-aspect-16-9 .wp-block-embed-youtube .wp-block-embed__wrapper::after {
  padding-top: 56.25%;
}

.p-single__content .wp-block-embed-twitter {
  text-align: center;
}

.p-single__content .wp-block-embed-twitter .wp-block-embed__wrapper {
  display: inline-block;
  border: 1px solid #ddd;
}

.p-single__content .addtoany_share_save_container {
  margin-top: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-single__content .addtoany_share_save_container {
    margin-top: 50px;
  }
}

.p-single__pager-container {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 auto;
}

.p-single__pager-index-btn {
  position: relative;
  display: block;
  padding: 10px 20px;
}

.p-single__pager-index-btn:hover::after {
  -webkit-transform: scale(1) translateX(-50%) translateY(-50%);
          transform: scale(1) translateX(-50%) translateY(-50%);
}

.p-single__pager-index-btn::before {
  position: relative;
  z-index: 2;
  padding-left: 2px;
  font-family: "Font Awesome 5 Free";
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 42px;
  color: #666;
  content: '';
  content: '\f58e';
}

.p-single__pager-index-btn::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #d0d0d0;
  content: '';
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform: scale(0) translateX(-50%) translateY(-50%);
          transform: scale(0) translateX(-50%) translateY(-50%);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

.p-single__pager-prev-link {
  position: relative;
  position: absolute;
  left: 0;
  display: block;
  height: 100%;
  padding: 20px 20px 20px 50px;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  white-space: nowrap;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.p-single__pager-prev-link:hover {
  color: #ab2d2d;
}

.p-single__pager-prev-link:hover::after {
  border-color: #ab2d2d;
  -webkit-transform: translateX(-45%) translateY(-50%) rotate(225deg);
          transform: translateX(-45%) translateY(-50%) rotate(225deg);
}

@media screen and (max-width: 767px) {
  .p-single__pager-prev-link {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.p-single__pager-prev-link::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 30px;
  height: 30px;
  background: #efefef;
  content: '';
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-single__pager-prev-link::after {
  position: absolute;
  top: 50%;
  left: 15px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border: solid #111;
  border-width: 1px 1px 0 0;
  content: "";
  -webkit-transition: border-color .2s ease, -webkit-transform .2s ease;
  transition: border-color .2s ease, -webkit-transform .2s ease;
  transition: border-color .2s ease, transform .2s ease;
  transition: border-color .2s ease, transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform: translateX(-25%) translateY(-50%) rotate(225deg);
          transform: translateX(-25%) translateY(-50%) rotate(225deg);
}

.p-single__pager-next-link {
  position: relative;
  position: absolute;
  right: 0;
  display: block;
  height: 100%;
  padding: 20px 50px 20px 20px;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  white-space: nowrap;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.p-single__pager-next-link:hover {
  color: #ab2d2d;
}

.p-single__pager-next-link:hover::after {
  border-color: #ab2d2d;
  -webkit-transform: translateX(45%) translateY(-50%) rotate(45deg);
          transform: translateX(45%) translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .p-single__pager-next-link {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.p-single__pager-next-link::before {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 30px;
  height: 30px;
  background: #efefef;
  content: '';
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-single__pager-next-link::after {
  position: absolute;
  top: 50%;
  right: 15px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border: solid #111;
  border-width: 1px 1px 0 0;
  content: "";
  -webkit-transition: border-color .2s ease, -webkit-transform .2s ease;
  transition: border-color .2s ease, -webkit-transform .2s ease;
  transition: border-color .2s ease, transform .2s ease;
  transition: border-color .2s ease, transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform: translateX(25%) translateY(-50%) rotate(45deg);
          transform: translateX(25%) translateY(-50%) rotate(45deg);
}

.wp-block-table {
  width: 100%;
  min-width: 240px;
  border-collapse: collapse;
}

.wp-block-table td {
  padding: 5px;
  border: 1px solid #111;
  word-break: break-all;
}

.wp-block-table th {
  padding: 5px;
  border: 1px solid #111;
  word-break: break-all;
}

.p-seo-nav {
  display: inline-block;
  padding: 0 40px;
  border-left: 1px solid #111;
}

.p-seo-nav-list-item {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .p-seo-nav-list-item {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-seo-nav-list-item-child {
  position: relative;
  padding: 15px 0 0 15px;
}

@media screen and (max-width: 767px) {
  .p-seo-nav-list-item-child {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.p-seo-nav-list-item-child .p-seo-nav-link {
  color: #666;
}

.p-seo-nav-list-item-child::before {
  position: absolute;
  top: calc(50% + 7.5px);
  left: 0;
  width: 4px;
  height: 1px;
  background: #666;
  content: '';
}

.p-seo-nav-ttl {
  margin-bottom: 30px;
  font-family: "Playfair Display", Arial, Helvetica, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .p-seo-nav-ttl {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.woocommerce .woocommerce-order h2:not([class])::after {
  content: none;
}
@media screen and (max-width: 480px) {
  .g-search__inner {
    padding: 16px 16px 120px;
  }
}

@media screen and (max-width: 500px) {
  .woocommerce-order-details .woocommerce-table tr, .woocommerce-order-details .woocommerce-table th, .woocommerce-order-details .woocommerce-table td, .woocommerce-order-details .woocommerce-table small {
    display: block;
  }
  .woocommerce-order-details .woocommerce-table th {
    border-bottom: 1px dashed #ccc !important;
  }
  .woocommerce-order-details .woocommerce-table td {
    text-align: right;
  }
  .woocommerce-order-details .woocommerce-table thead {
    display: none;
  }
  .c-breadcrumbs__list {
    margin: 0;
  }
}
@media screen and (max-width: 1024px) {
  .c-breadcrumbs {
    margin: 0;
  }
}
strong, b {
  font-weight: bold;
}
.c-breadcrumbs__list {
  display: block;
  overflow-y: auto;
  overflow: auto;
  margin: 0 0 0 -1em;
}
.woocommerce .u-columns {
  width: 100%;
}
a:not([class]) {
  text-decoration: underline;
}
/* 20210601 */
.c-data-table__desc .c-refusal {
  margin-top: 0;
  text-align: left;
}
.c-data-table__desc .c-refusal img {
  max-width: 285px;
  margin-left: auto;
}
.p-index__other-txt {
  padding: 80px 0 20px;
}
@media screen and (max-width: 1330px){
  .p-index__other-txt {
      padding: 60px 0 0px;
  }
}

.g-header__logo-link {
  padding: 0 20px 0 0;
}
.g-header__logo-img, .g-hamburger__logo-img {
  max-width: 200px;
  max-height: 40px;
  height: auto;
}
.g-hamburger__logo-img {
  width: 100%;
  max-height: 100px;
}
.g-hamburger__logo-link {
  padding: 30px 4em;
  width: 100%;
  text-align: center;
}
.g-hamburger__logo {
  width: 17%;
}
.g-footer__logo-img {
  max-width: 150px;
  max-height: 40px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1330px) {
  .g-header__logo-link {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1199px) {
  .g-header__logo-link, .g-hamburger__logo-link {
    padding: 0 20px;
  }
  .g-hamburger__logo {
    width: 100%;
  }
  .g-hamburger__logo-link {
    text-align: left;
    display: flex;
    width: 60vw;
  }
  .g-header__logo-img, .g-hamburger__logo-img {
    max-width: 200px;
    max-height: 46px;
  }
}
@media screen and (max-width: 767px){
  .g-header__logo-img, .g-hamburger__logo-img {
    max-width: 81px;
    max-height: 32px;
    width: auto;
  }
  .g-header__logo-link, .g-hamburger__logo-link {
    padding: 0 16px;
  }
}
/* 20210621 */
.c-category-header__category-toggle {
  margin: 0 20px 10px 0;
  padding: 4px 16px;
  border-radius: 50px;
  background: #111;
  color: #fff;
  cursor: pointer;
  border: none;
}
@media screen and (min-width: 768px) {
  .c-category-header__category-toggle {
    display: none;
  }
}
.c-ttl__main,
.c-ttl__main .is-parent {
  line-height: 1.4;
}
.a2a_kit .a2a_label {display:none !important;}

/* 20211001 */
.c-style-book-photo-bg.c-img-bg {
  background-position: 50% 50%;
}
.c-style-book-photo-figure::after {
  padding-bottom: 69%;
}
.c-style-book-header {
  height: auto;
}
.c-style-book-photo-thumb-figure::after {
  padding-bottom: 69%;
}
.c-style-book-photo-thumb {
  height: 700px;
}
@media screen and (max-width: 1024px) {
  .c-style-book-photo-thumb-item {
    width: calc(25% - 10px);
  }
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto !important;
}
.c-style-book-photo-nav {
  display: none;
}
.swiper-container-initialized .c-style-book-photo-nav {
  display: block;
}
/***** 20220111 *****/
.c-form textarea {
  vertical-align: top;
}
/***** 20221021 *****/
.a2a_svg path {fill: #222 !important;}.a2a_s_share1 svg path:first-child {fill: none !important;}

.g-hamburger__pickup-figure .c-img-bg, .c-sidebar__new-figure .c-img-bg, .c-style-book-list__figure .c-img-bg, .c-style-book-photo-thumb-figure .c-img-bg, .c-style-book-photo-figure .c-img-bg, .p-about__intro-figure .c-img-bg, .p-about__feature-item-figure .c-img-bg, .p-index__visual-main-figure .c-img-bg, .p-index__visual-sub-figure .c-img-bg, .p-index__category-list-figure .c-img-bg, .p-index__pickup-figure .c-img-bg, .p-index__other-figure .c-img-bg, .p-single__content-eyecatch .c-img-bg {
  background-size: 100% auto;
  background-repeat:no-repeat;
}

@media screen and (max-width: 1330px) {
  .p-index__pickup-txt {
    padding: 160px 80px 50px;
  }
}

@media screen and (max-width: 1199px) {
  .p-index__pickup-txt {
    padding: 140px 80px 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-index__pickup-txt {
    padding: 70px 16px 0;
  }
}

.p-index__pickup-nav {
  bottom: 5px;
}
.p-about__intro-figure::after,
.p-about__intro-figure:nth-child(2)::after,
.p-about__feature-item-figure::after,
.p-index__pickup-figure::after {
  content: none;
}
@media screen and (max-width: 1024px) {
  .p-about__intro-figure::after,
  .p-about__intro-figure:nth-child(2)::after,
  .p-about__feature-item-figure::after,
  .p-index__pickup-figure::after {
    content: none;
  }
}
.p-about__intro-figure .c-img,
.p-about__feature-item-figure .c-img {
  display: inline-block;
  vertical-align: top;
}
.p-index__pickup-bg{
background-position: center center;
}
@media screen and (max-width: 1330px){
  .p-index__pickup-nav,
  .p-index__pickup-pagination.swiper-pagination-bullets {
    bottom: 90px;
  }
}
@media screen and (max-width: 1024px){
  .p-index__pickup-nav,
  .p-index__pickup-pagination.swiper-pagination-bullets {
    bottom: auto;
    margin-top: 72%;
  }
}

@media screen and (max-width: 1024px) {
  .p-about__intro-bg {
    background-position: center;
  }
}


.p-index__visual-main-container {
  height: 56.25vw;
}

@media screen and (max-width: 1330px) {
  .p-index__visual-main-container {
    height: 56.25vw;
  }
}

@media screen and (max-width: 1024px) {
  .p-index__visual-main-container {
    width: 100%;
    height: auto;
    min-height: calc(100vh - 200px);
  }
}

.p-index__visual-sub-container {
  height: calc(25vw * 1.629);
}

@media screen and (max-width: 1330px) {
  .p-index__visual-sub-container {
    height: calc(25vw * 1.629);
  }
}
@media screen and (max-width: 1024px) {
  .p-index__visual-sub-container {
    height: 360px;
  }
}
@media screen and (max-width: 767px) {
  .p-index__visual-sub-container {
    height: 180px;
  }
  .g-footer__logo-img {
    max-height: 110px;
  }
}


@media screen and (max-width: 1024px) {
  .p-about__intro-figure:nth-child(2) {
    bottom: -140px;
  }
}
@media screen and (max-width: 1024px) {
  .p-about__intro-txt {
    padding: 130px 0 50px;
  }
}

.p-index__visual-main-figure::after {
  padding-bottom: 68%;
}

.g-hamburger__pickup-figure .c-img-bg {
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}


.restructuring-wrap {
    position: fixed;
    background-color: #efefef;
    opacity: 0.7;
    text-align: right;
    left: 15px;
    bottom: 15px;
    z-index: 100;
    font-size: 14px;
    width: 100px;
}
.restructuring {
    text-align: center;
}