@charset "UTF-8";
/*---------------------------------------------
メディアクエリー
---------------------------------------------*/
/*---------------------------------------------
共通
---------------------------------------------*/
html {
  color: #000;
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
  font-family: zen-kaku-gothic-antique, sans-serif;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

/*---------------------------------------------
fonts
---------------------------------------------*/
.jp {
  font-family: zen-kaku-gothic-antique, sans-serif;
  font-style: normal;
}

.num {
  font-family: bc-ludva, sans-serif;
  font-style: normal;
  font-weight: 100;
  letter-spacing: 2px;
}

.eg {
  font-family: "neue-kabel", sans-serif;
  font-style: normal;
  font-weight: 800;
}

.bold {
  font-weight: bold;
}

/*---------------------------------------------
color
---------------------------------------------*/
/*---------------------------------------------
FV
---------------------------------------------*/
h1 {
  display: none;
}

.fv_outer {
  position: relative;
  height: 80vh;
}
@media screen and (min-width: 769px) {
  .fv_outer {
    height: initial;
  }
}
.fv_outer .fv_wrapper {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  height: 70vh;
}
.fv_outer .fv_wrapper .fv_col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
  overflow: hidden;
  position: relative;
  display: none;
}
.fv_outer .fv_wrapper .fv_col .fv_col_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation: move_up 20s linear infinite;
          animation: move_up 20s linear infinite;
}
.fv_outer .fv_wrapper .fv_col .fv_col_inner img {
  width: 100%;
  height: auto;
  padding: 3px;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv_outer .fv_wrapper .fv_col.fv_col_right .fv_col_inner {
  -webkit-animation: move_down 20s linear infinite;
          animation: move_down 20s linear infinite;
}
.fv_outer .fv_title {
  position: absolute;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: -5%;
  bottom: -8%;
}

@-webkit-keyframes move_up {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@keyframes move_up {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@-webkit-keyframes move_down {
  from {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes move_down {
  from {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (min-width: 769px) {
  .fv_outer .fv_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 93vh;
    width: 67vw;
    margin-left: auto;
  }
  .fv_outer .fv_wrapper .fv_col {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
  }
  .fv_outer .fv_wrapper .fv_col .fv_col_inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 50vh;
  }
  .fv_outer .fv_wrapper .fv_col .fv_col_inner img {
    width: 100%;
    height: auto;
    padding: 5px;
  }
  .fv_outer .fv_wrapper .fv_col.fv_col_left .fv_col_inner {
    -webkit-animation: move_left 25s linear infinite;
            animation: move_left 25s linear infinite;
  }
  .fv_outer .fv_wrapper .fv_col.fv_col_right .fv_col_inner {
    -webkit-animation: move_right 25s linear infinite;
            animation: move_right 25s linear infinite;
  }
  .fv_outer .fv_title {
    width: 25%;
    left: 16vw;
    top: 44%;
  }
  .pc_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
  @-webkit-keyframes move_left {
    from {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
  }
  @keyframes move_left {
    from {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
  }
  @-webkit-keyframes move_right {
    from {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
    to {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @keyframes move_right {
    from {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
    to {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
}
/*---------------------------------------------
top
---------------------------------------------*/
.top {
  padding-bottom: 70px;
}
@media screen and (min-width: 769px) {
  .top {
    padding-bottom: 100px;
  }
}
.top .lead {
  font-size: 14px;
  line-height: 2.5;
  text-align: center;
  padding-top: 70px;
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .top .lead {
    font-size: 16px;
    padding-top: 100px;
  }
}
.top img {
  width: 70%;
}
@media screen and (min-width: 769px) {
  .top img {
    width: 100%;
    margin: 0;
  }
}
.top .campaign {
  text-align: center;
  line-height: 1.5;
  border: 1px dotted;
  width: 90%;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .top .campaign {
    max-width: 840px;
    padding: 80px 50px;
  }
  .top .campaign .top_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top .campaign .title {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .top .campaign .title {
    font-size: 22px;
  }
}
.top .campaign .text {
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 14px;
}
@media screen and (min-width: 769px) {
  .top .campaign .text {
    font-size: 18px;
  }
}
.top .campaign .bikou {
  width: 90%;
  margin: 20px auto 0;
  font-size: 12px;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media screen and (min-width: 769px) {
  .top .campaign .bikou {
    width: 70%;
    margin-top: 50px;
  }
}
.top .campaign .bikou li {
  list-style-type: disc;
  margin-bottom: 5px;
}
.top .campaign .fade_container {
  position: relative;
  width: 100%;
  padding-top: 76%;
}
@media screen and (min-width: 769px) {
  .top .campaign .fade_container {
    width: 30%;
    padding-top: 0;
  }
}
.top .campaign .fade_container .fade_img {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.top .campaign .fade_container .fade_img.show {
  opacity: 1;
}

/*---------------------------------------------
index
---------------------------------------------*/
.index {
  padding: 1px 8% 100px;
  background-color: #F4F1ED;
}
@media screen and (min-width: 769px) {
  .index {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 3% 5% 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34%;
            flex: 0 0 34%;
    border-right: 1px solid #E0DBDB;
  }
}
.index h2, .index p {
  font-size: 14px;
  line-height: 2.2;
}
@media screen and (min-width: 769px) {
  .index p {
    font-size: 20px;
  }
}
.index .lead {
  margin-top: 100px;
  margin-bottom: 100px;
}
.index .index_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .index .index_text {
    font-size: 20px;
  }
}
.index .index_text .left_text {
  font-size: 20px;
}
.index .index_text .right_text {
  font-size: 20px;
}
.index .index_text span {
  font-size: 20px;
}
@media screen and (min-width: 769px) {
  .index .index_text span {
    font-size: 22px;
  }
}
.index .section .images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
@media screen and (min-width: 769px) {
  .index .section .images {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

/*---------------------------------------------
sticky_header
---------------------------------------------*/
.sticky_header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1px;
  position: fixed;
  top: 0;
  z-index: 1000;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  opacity: 0;
}
.sticky_header .sticky_header.is-visible {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: opacity 0.3s ease, background-color 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 769px) {
  .sticky_header {
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    width: auto;
    position: sticky;
    right: 0;
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
}
.sticky_header a {
  display: block;
  width: 25%;
  font-size: 23px;
  text-align: center;
  background-color: #C1B5AF;
  color: #fff;
  padding: 4px;
  border-radius: 4px 4px 0 0;
}
@media screen and (min-width: 769px) {
  .sticky_header a {
    font-size: 24px;
    width: auto;
    padding: 30px 6px;
    border-radius: 0 4px 4px 0;
  }
}
.sticky_header a.active {
  background-color: #632407;
}
.sticky_header a li {
  font-family: bc-ludva, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
}
.sticky_header .small_text {
  font-size: 14px;
  padding: 8.5px;
}
@media screen and (min-width: 769px) {
  .sticky_header .small_text {
    font-size: 20px;
    padding: 8px;
  }
}

/*---------------------------------------------
pc_right
---------------------------------------------*/
.pc_right_wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
  overflow-x: hidden;
  background-color: #E4E6EA;
}

.pc_right {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #EFEEEE;
  overflow-x: hidden;
}

.even_bg {
  background-color: #E4E6EA;
}

/*---------------------------------------------
sec
---------------------------------------------*/
.sec {
  padding: 75px 15px 0;
}
@media screen and (min-width: 769px) {
  .sec .inner .top_wrap {
    width: 66%;
    margin: auto;
  }
}
.sec .index_num {
  text-align: right;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .sec .index_num {
    font-size: 20px;
  }
}
.sec .kana {
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .sec .kana {
    font-size: 16px;
  }
}
.sec .top_img {
  width: 150px;
  margin: 15px auto 25px;
}
@media screen and (min-width: 769px) {
  .sec .top_img {
    height: 40px;
    width: auto;
  }
}
.sec .line {
  background: #000;
  display: block;
  width: 60px;
  height: 1px;
  margin: auto;
}
.sec .concept {
  font-size: 15px;
  text-align: center;
  line-height: 2.5;
  width: 80%;
  margin: 50px auto 30px;
  white-space: pre-line;
}
.sec .limited_tag {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  border: 1px solid;
  padding: 2px 10px;
  background-color: #EDF471;
  margin-left: 1px;
  top: 54px;
}
.sec .brand {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 10px;
  padding-top: 70px;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
@media screen and (min-width: 769px) {
  .sec .brand {
    font-size: 30px;
  }
}
.sec .brand .brand_text {
  font-size: 16px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .sec .brand .brand_text {
    font-size: 18px;
  }
}
.sec .brand .brand_name {
  height: 14px;
  width: auto;
}
@media screen and (min-width: 769px) {
  .sec .brand .brand_name {
    height: 18px;
  }
}
.sec #limited .inner {
  /* ===== アイテム情報エリア ===== */
}
.sec #limited .inner .top_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.sec #limited .inner .brand {
  text-align: center;
}
.sec #limited .inner .brand .index_num {
  font-size: 14px;
  color: #000;
}
@media screen and (min-width: 769px) {
  .sec #limited .inner .brand .index_num {
    font-size: 18px;
  }
}
.sec #limited .inner .web_limited_slider_outer {
  width: 100%;
  margin: auto;
  background-color: #fff;
  padding: 0 0 30px 12px;
}
@media screen and (min-width: 769px) {
  .sec #limited .inner .web_limited_slider_outer {
    padding: 50px;
  }
}
.sec #limited .inner .top_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sec #limited .inner .web_limited_slider_inner {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  overflow-x: auto;
  overflow: hidden;
}
.sec #limited .inner .slider_block {
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
}
.sec #limited .inner .web_limited_slider_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-overflow-scrolling: touch;
}
.sec #limited .inner .web_limited_slider_inner .slide_item {
  display: block !important;
  width: 100%;
}
.sec #limited .inner .web_limited_slider_inner .slide_item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.sec #limited .inner .web_limited_slider_inner .credit_wrap {
  margin: 30px auto;
}
.sec #limited .inner .web_limited_slider_inner .credit {
  border: #ccc solid 1px;
}
.sec #limited .inner .web_limited_slider_inner,
.sec #limited .inner .slider_block,
.sec #limited .inner .image_slider {
  overflow: visible;
}
.sec #limited .inner .image_slider .slide_item img {
  width: 100%;
  display: block;
}
.sec #limited .inner .web_limited_slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 20px;
}
.sec #limited .inner .web_limited_slider::-webkit-scrollbar {
  height: 4px;
}
.sec #limited .inner .web_limited_slider::-webkit-scrollbar-thumb {
  background: #732A08;
  border-radius: 50px;
}
@media screen and (min-width: 769px) {
  .sec #limited .inner .web_limited_slider {
    overflow-x: hidden;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.sec #limited .inner .web_limited_slider_inner {
  position: relative;
}
.sec #limited .inner .web_limited_slider_inner .slider_block {
  outline: none;
  margin-right: 13px;
}
@media screen and (min-width: 769px) {
  .sec #limited .inner .web_limited_slider_inner .slider_block {
    margin-right: 0;
  }
}
.sec #limited .inner .web_limited_slider_inner .slick-prev,
.sec #limited .inner .web_limited_slider_inner .slick-next {
  position: absolute;
  bottom: -2%;
  z-index: 2;
  width: 30px;
  height: 30px;
  background: #732A08;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  border-radius: 50%;
}
.sec #limited .inner .web_limited_slider_inner .slick-prev {
  left: -4px;
}
@media screen and (min-width: 769px) {
  .sec #limited .inner .web_limited_slider_inner .slick-prev {
    display: block;
    left: -4vh;
  }
}
.sec #limited .inner .web_limited_slider_inner .slick-prev::before {
  display: none;
}
.sec #limited .inner .web_limited_slider_inner .slick-next {
  right: 8px;
}
@media screen and (min-width: 769px) {
  .sec #limited .inner .web_limited_slider_inner .slick-next {
    display: block;
    right: -4vh;
  }
}
.sec #limited .inner .web_limited_slider_inner .slick-next::before {
  display: none;
}
.sec #limited .inner .item_info {
  max-width: 600px;
  margin: 0 auto;
  padding: 16px;
}
@media screen and (min-width: 769px) {
  .sec #limited .inner .item_info {
    padding: 0;
    padding-top: 16px;
  }
}
.sec #limited .inner .item_info .item_name {
  margin-top: -30px;
  font-size: 30px;
  font-weight: 600;
  color: #732A08;
}
.sec #limited .inner .item_info .price {
  margin-top: 4px;
  font-weight: bold;
  font-size: 26px;
}
.sec #limited .inner .item_info .color {
  margin-top: 2px;
  font-size: 18px;
}
.sec #limited .inner .item_info .text {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
}
.sec .web_limited_inner_slider .slick-slide {
  display: block;
}
.sec .web_limited_inner_slider .slick-prev,
.sec .web_limited_inner_slider .slick-next {
  z-index: 10;
  top: 40%;
}
.sec .slick-dots {
  bottom: 8px;
}
.sec .slick-dots li {
  margin: 0 4px;
}
.sec .slick-dots li button:before {
  font-size: 8px;
  color: #333;
}

#sec4 {
  padding-bottom: 100px;
}

.img_wrap p {
  margin-left: 5px;
}
.img_wrap .item_name {
  color: #732A08;
  font-size: 36px;
  margin-top: 14px;
  line-height: 0.8;
}
@media screen and (min-width: 769px) {
  .img_wrap .item_name {
    font-size: 40px;
    margin-top: 18px;
  }
}
.img_wrap .price {
  color: #000;
  font-size: 33px;
  letter-spacing: normal;
  margin-top: 14px;
}
@media screen and (min-width: 769px) {
  .img_wrap .price {
    font-size: 46px;
  }
}
.img_wrap .color {
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .img_wrap .color {
    font-size: 25px;
  }
}
.img_wrap .color span {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid;
  line-height: 1.2;
}
.img_wrap .text {
  font-size: 14px;
  line-height: 2.1;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .img_wrap .text {
    font-size: 14px;
    margin-top: 30px;
  }
}

@media screen and (min-width: 769px) {
  .details {
    width: 100%;
    margin: auto;
  }
}
.details .detail {
  margin-top: 80px;
}
@media screen and (min-width: 769px) {
  .details .detail {
    width: 65%;
    margin: 50px auto;
  }
}
.details .detail .title {
  font-size: 22px;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .details .detail .title {
    font-size: 26px;
  }
}
.details .detail .title span {
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  .details .detail .title span {
    font-size: 22px;
  }
}
.details .detail .text {
  font-size: 12px;
  line-height: 2;
  width: 96%;
  margin: 14px auto;
}
@media screen and (min-width: 769px) {
  .details .detail .text {
    font-size: 13px;
  }
}

.credit_wrap {
  margin-top: 50px;
  margin-bottom: 70px;
}
@media screen and (min-width: 769px) {
  .credit_wrap {
    width: 80%;
    margin: 50px auto 100px;
  }
}
.credit_wrap .link_wrap .credit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: 10px;
}
@media screen and (min-width: 769px) {
  .credit_wrap .link_wrap .credit {
    padding: 20px;
  }
}
.credit_wrap .link_wrap .credit img {
  width: 20%;
}
.credit_wrap .link_wrap .credit .text_wrap {
  font-size: 12px;
  margin-left: 10px;
  margin-right: 10px;
  line-height: 1.5;
  color: #000;
}
@media screen and (min-width: 769px) {
  .credit_wrap .link_wrap .credit .text_wrap {
    font-size: 13px;
    line-height: 1.6;
    margin-left: 20px;
  }
}
.credit_wrap .link_wrap .credit .buy {
  font-size: 15px;
  background-color: #732A08;
  color: #fff;
  padding: 2px 10px;
  margin-left: auto;
}

@media screen and (min-width: 769px) {
  #limited .credit_wrap {
    width: 100%;
  }
}
#limited .credit_wrap .credit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
}
#limited .credit_wrap .credit .limited_credit_img {
  width: 24%;
}
#limited .credit_wrap .credit .text_wrap {
  font-size: 11px;
  margin-left: 10px;
  margin-right: 10px;
  line-height: 1.5;
  color: #000;
}
#limited .credit_wrap .credit .buy {
  font-size: 13px;
  background-color: #732A08;
  color: #fff;
  padding: 2px 10px;
  margin-left: auto;
}

/*---------------------------------------------
staff snap
---------------------------------------------*/
/* コーデ画像の大きさを揃える
===================================================== */
.staff {
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .staff {
    max-width: 80%;
  }
}
.staff h3 {
  font-size: 36px;
  color: #732A08;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .staff h3 {
    font-size: 50px;
    margin-bottom: 30px;
  }
}
.staff .more_wrap {
  text-align: right;
}
.staff .more {
  font-size: 13px;
  color: #000;
  text-align: right;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
  margin-top: 20px;
  padding-bottom: 100px;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .staff .more {
    font-size: 14px;
  }
}
.staff #styling {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4%;
}
@media screen and (min-width: 769px) {
  .staff #styling {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 12px;
  }
}
.staff .stafflistajax_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .staff .stafflistajax_wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 12px;
  }
}
.staff .stafflistajax {
  width: 48%;
  margin-bottom: 4%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.staff .stafflistajax .stafflistajax_codeUrl {
  display: block;
  position: relative;
  width: 100%;
}
.staff .stafflistajax .stafflistajax_codeUrl::before {
  content: "";
  display: block;
  padding-top: 133.4728033473%;
}
.staff .stafflistajax .stafflistajax_codeUrl .stafflistajax_codeImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 5%;
}

/*---------------------------------------------
Others
---------------------------------------------*/
.others {
  padding-top: 50px;
  /* PCとSPの表示切り替え用
  ===================================================== */
}
.others .titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 20px;
  width: 100%;
}
.others .titles h3 {
  font-size: 36px;
  color: #732A08;
  width: 60%;
}
@media screen and (min-width: 769px) {
  .others .titles h3 {
    font-size: 50px;
  }
}
.others .titles .brand_title {
  text-align: right;
}
@media screen and (min-width: 769px) {
  .others .titles .brand_title {
    font-size: 32px;
  }
}
.others .more_wrap {
  text-align: right;
}
.others .more {
  font-size: 13px;
  color: #000;
  text-align: right;
  display: inline-block;
  text-decoration: underline;
  margin-top: 20px;
  padding-bottom: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .others .more {
    font-size: 14px;
    padding-bottom: 100px;
  }
}
.others .sectionAjax a {
  display: block;
}
.others .sectionAjax a > p {
  position: relative;
}
.others .sectionAjax img + span {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  background: #219bd9;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3px 10px;
  white-space: nowrap;
  font-size: 10px;
}
.others .sectionAjax .ico_box {
  display: none;
}
.others .sectionAjax .ico_box + p {
  display: none;
}
.others .sectionAjax .textOverflow,
.others .sectionAjax .label {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 11px;
  color: #000;
  line-height: 1.2;
  margin-top: 5px;
}
@media screen and (min-width: 769px) {
  .others .sectionAjax .textOverflow,
  .others .sectionAjax .label {
    line-height: 1.4;
    margin-top: 12px;
  }
}
.others .sectionAjax .price {
  margin-bottom: 5px;
  color: #000;
}
@media screen and (min-width: 769px) {
  .others .sectionAjax .price {
    margin-top: 5px;
  }
}
.others .sectionAjax .salecolor,
.others .sectionAjax .salecolor + .price {
  color: #ee2e2e;
}
@media screen and (min-width: 769px) {
  .others .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .others .spNone {
    display: none;
  }
}

.sectionAjax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  gap: 6px;
  padding-bottom: 50px;
}
.sectionAjax::-webkit-scrollbar-track {
  background: rgb(187, 191, 196);
}
.sectionAjax::-webkit-scrollbar-thumb {
  background: #732A08;
  border-radius: 50px;
}
.sectionAjax::-webkit-scrollbar {
  height: 4px;
  border-radius: 50px;
}
.sectionAjax > div {
  width: 42%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .sectionAjax > li {
    width: 29%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.slick-slide {
  min-height: none;
}

.slides li {
  margin-right: 5px;
}
@media screen and (min-width: 769px) {
  .slides li {
    margin-right: 0;
  }
}
.slides li img {
  width: 100%;
  height: auto;
}
.slides .slick-prev {
  left: 48.6%;
  margin-left: -565px;
  display: none;
}
.slides .slick-prev::before {
  top: 50%;
  left: 50%;
  border-left: #575757 1px solid;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  display: none;
}
.slides .slick-next {
  right: 48.6%;
  margin-right: -565px;
  display: none;
}
.slides .slick-next::before {
  content: "";
  display: block;
  opacity: 1;
  width: 6px;
  height: 6px;
  position: absolute;
  right: 50%;
  border-right: #575757 1px solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  top: 50%;
  display: none;
}

[data-aos=fade-up] {
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
}

[data-aos=fade-right] {
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
}

[data-aos=fade-left] {
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
}

.flexslider {
  border: none;
  margin: 0;
}

.flex-control-nav li {
  width: 8px;
}

.flex-control-paging li a {
  width: 8px;
  height: 8px;
}

/* ==================================
   SP余白解消用
================================== */
@media screen and (max-width: 768px) {
  html, body {
    width: 100%;
    overflow-x: hidden !important;
  }
}
@media screen and (min-width: 769px) {
  html, body {
    width: 100%;
    overflow-x: initial;
  }
}
#sec2 .top_wrap, #sec3 .top_wrap, #sec6 .top_wrap, #sec8 .top_wrap {
  margin-top: -100px;
}

.to_top {
  position: fixed;
  bottom: 30px;
  right: 10px;
  width: 80px; /* アイコンサイズ */
  height: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  z-index: 1500;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .to_top {
    width: 110px;
    right: 20px;
    bottom: 20px;
  }
}

.to_top.show {
  opacity: 1;
  pointer-events: auto;
}

footer {
  background-color: #E4E6EA;
}
@media screen and (min-width: 769px) {
  footer {
    background-color: #fff;
  }
}
footer .typy_logo {
  width: 40%;
  margin: 0 auto 10px;
}
@media screen and (min-width: 769px) {
  footer .typy_logo {
    padding-top: 100px;
    width: 10%;
  }
}
footer small {
  display: block;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px !important;
  margin-bottom: 100px;
}
@media screen and (min-width: 769px) {
  footer small {
    font-size: 16px;
  }
}

/* ローディング中のスタイル */
.wf-loading #contents {
  opacity: 0;
}

/* フォント読み込み完了後のスタイル */
.wf-active #contents {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/* フォント読み込み失敗時のスタイル */
.wf-inactive #contents {
  opacity: 1;
}

.slick-prev, .slick-next {
  top: initial;
  bottom: 0;
  -webkit-transform: initial;
          transform: initial;
}

.bg_change {
  background-color: #fff;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}

.bg_change.active {
  background-color: #C3A792;
}/*# sourceMappingURL=style.css.map */