@charset "UTF-8";
body {
  width: 100%;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-size: 12px;
  transition: all 1.6s ease 0s;
  background-color: #F6F6F6;
  font-family: "shippori-mincho-b1", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #262626;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 15px;
  }
}

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

a:hover {
  opacity: 0.6;
  transition: 0.6s;
}

@media screen and (min-width: 1025px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .spNone {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .pcNone {
    display: block;
  }
}

/* .load
===================================================== */
.load {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #F6F6F6;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  /* JSで制御するため、ここではスタイルを定義しない */
}

.fade {
  opacity: 0;
  transition: opacity 1s ease, transform 0.6s ease;
}

/* 初期位置 */
.fade-up {
  transform: translateY(20px);
}

/* その場フェードはtransformなしでもOK */
.fade-in {
  transform: none;
}

/* 表示状態 */
.fade.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

.fade .swiper {
  opacity: 0;
  transition: opacity 0.6s 0.2s ease;
  filter: blur(8px);
}

.fade.is-show {
  opacity: 1;
  filter: blur(0);
}

@keyframes scroll-blur-in {
  from {
    filter: blur(8px);
    opacity: 0;
  }
  to {
    filter: blur(0);
    opacity: 1;
  }
}
.swiper-slide img {
  opacity: 0;
  filter: blur(10px);
  /* 通常のスライド切り替え時のアニメーション準備 */
  transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}

.swiper-slide.is-active-anim img {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.fade.is-show .swiper-slide:first-child.is-active-anim img {
  /* ぼかし(filter)のアニメーション時間を2.5秒に延長 */
  transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}

header {
  position: relative !important;
}

.fv {
  position: relative;
  height: 178vw;
}
@media screen and (min-width: 1025px) {
  .fv {
    height: 48vw;
  }
}
.fv .fv_img, .fv h1 {
  position: absolute;
}
.fv h1 {
  z-index: 1;
  top: 137vw;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 94vw;
}
@media screen and (min-width: 1025px) {
  .fv h1 {
    width: 37vw;
    top: 50%;
    left: 70%;
  }
}
.fv .fv_img {
  position: relative;
  width: 100%;
  aspect-ratio: 375/667;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .fv .fv_img {
    aspect-ratio: 1440/700;
  }
}
.fv .fv_img a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* GSAPで制御するため、opacityは1に設定。GSAPがautoAlphaで非表示にする */
  opacity: 1;
}
.fv .fv_img .main_img {
  height: 100%;
  object-fit: cover;
  /* opacity: 0; GSAPで親要素が制御するため不要 */
}

.lead {
  padding: 60px 37px;
  line-height: 2;
}
@media screen and (min-width: 1025px) {
  .lead {
    text-align: center;
    padding: 90px 0;
  }
}
.lead span {
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  line-height: 1.5;
  display: inline-block;
  margin-top: 15px;
}
@media screen and (min-width: 1025px) {
  .lead span {
    font-size: 12px;
  }
}

.index {
  text-align: center;
}
.index .i_h2 {
  line-height: 0.7;
  font-family: "scotch-display-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .index .i_h2 {
    font-size: 42px;
    margin: 9px auto 75px;
  }
}
.index .i_h2 span {
  font-family: "r41-alfabeta-72", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
}
@media screen and (min-width: 1025px) {
  .index .i_h2 span {
    font-size: 47px;
  }
}
.index ul {
  color: #F6F6F6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 1025px) {
  .index ul {
    grid-template-columns: repeat(6, 1fr);
  }
}
.index li {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(15px);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.index li a {
  position: relative;
  display: block;
}
.index li a p {
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: 50%;
  font-size: 3.7333333333vw;
  width: 90%;
  font-family: "scotch-display-condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  .index li a p {
    font-size: 1.5277777778vw;
    line-height: 1.2;
  }
}
.index li a svg {
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: 70%;
}
@media screen and (min-width: 1025px) {
  .index li a svg {
    top: 64%;
  }
}
.index.is-show li {
  opacity: 1;
  filter: blur(0);
}
.index.is-show li:nth-child(1) {
  transition-delay: 0s;
}
.index.is-show li:nth-child(2) {
  transition-delay: 0.2s;
}
.index.is-show li:nth-child(3) {
  transition-delay: 0.4s;
}
.index.is-show li:nth-child(4) {
  transition-delay: 0.6s;
}
.index.is-show li:nth-child(5) {
  transition-delay: 0.8s;
}
.index.is-show li:nth-child(6) {
  transition-delay: 1s;
}

.brand_area.fade {
  opacity: 1;
}
.brand_area {
  position: relative;
  padding-top: 30px;
  margin: 100px auto 0;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .brand_area {
    margin: 100px auto 100px 10%;
    width: 90%;
    padding-top: 70px;
  }
}
.brand_area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #AEA6A6;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.brand_area .top_text {
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 8px;
  display: flex;
  justify-content: space-between;
  width: 90vw;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .brand_area .top_text {
    width: 90%;
    font-size: 13px;
  }
}
.brand_area .top_text .left {
  text-align: left;
}
.brand_area .top_text .right {
  text-align: right;
}
.brand_area .brandname_top {
  font-family: "r41-alfabeta-72", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 34px;
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .brand_area .brandname_top {
    font-size: 58px;
    margin-top: 90px;
  }
}
.brand_area h2 {
  font-family: "scotch-display-condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 47px;
  line-height: 1;
  margin: 0px auto 10px;
}
@media screen and (min-width: 1025px) {
  .brand_area h2 {
    font-size: 80px;
  }
}
.brand_area .brand_ja {
  font-size: 15px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .brand_area .brand_ja {
    font-size: 26px;
    margin-bottom: 90px;
  }
}

.brand_area.is-show::before {
  transform: scaleX(1);
}

@media screen and (max-width: 1024px) {
  #sec02 h2 {
    font-size: 38px;
  }
}

.black_area {
  background: #262626;
  color: #F6F6F6;
  padding: 40px 0;
}
@media screen and (min-width: 1025px) {
  .black_area {
    padding: 90px 0 120px;
  }
}
.black_area .buy {
  background: #F6F6F6;
  color: #262626;
}

.white_area {
  background: #F6F6F6;
  color: #262626;
  padding: 40px 0;
}
@media screen and (min-width: 1025px) {
  .white_area {
    padding: 90px 0 120px;
  }
}
.white_area h3 {
  color: #262626;
}
.white_area .codecoment.is-long:not(.is-open)::after {
  background: linear-gradient(to bottom, rgba(246, 246, 246, 0), #F6F6F6 80%) !important;
}
.white_area .codecoment .more-btn {
  color: #262626 !important;
  background-color: #F6F6F6 !important;
}
.white_area .buy {
  background: #262626;
  color: #f6f6f6;
}

.look_num {
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 2;
}
@media screen and (min-width: 1025px) {
  .look_num {
    font-size: 20px;
  }
}
.look_num span {
  border-top: 1px solid;
  display: inline-block;
  line-height: 2;
}

h3 {
  font-size: 42px;
  font-family: "scotch-display-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 20px auto 10px;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  h3 {
    font-size: 72px;
    margin: 30px auto 20px;
  }
}

.col_sub {
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  .col_sub {
    font-size: 17px;
  }
}

@media screen and (max-width: 1024px) {
  .swiper {
    margin: 40px auto;
  }
}

@media screen and (min-width: 1025px) {
  .pc_flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 6.25vw;
    margin: 90px auto 0;
  }
  .swiper {
    width: 37.5vw;
  }
  .white_area .pc_flex {
    flex-direction: row-reverse;
  }
}
.codecoment_area {
  width: 81.8666666667vw;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (min-width: 1025px) {
  .codecoment_area {
    width: 29.5138888889vw;
    margin: 0 auto 60px;
    gap: 35px;
  }
}
.codecoment_area .coment_num {
  font-size: 30px;
  font-family: "scotch-display-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 1025px) {
  .codecoment_area .coment_num {
    font-size: 45px;
  }
}
.codecoment_area .coment_num span:nth-child(1) {
  font-size: 9px;
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  .codecoment_area .coment_num span:nth-child(1) {
    font-size: 12px;
  }
}
.codecoment_area .codecoment {
  text-align: left;
  width: 64.8vw;
  position: relative;
  line-height: 1.7;
}
@media screen and (min-width: 1025px) {
  .codecoment_area .codecoment {
    width: 24.5833333333vw;
    margin-top: -7px;
  }
}
.codecoment_area .codecoment.is-long {
  transition: max-height 0.5s ease-out;
}
.codecoment_area .codecoment.is-long:not(.is-open) {
  max-height: 8.5em;
  overflow: hidden;
}
.codecoment_area .codecoment.is-long:not(.is-open)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3em;
  background: linear-gradient(to bottom, rgba(38, 38, 38, 0), #262626 80%);
  pointer-events: none;
  z-index: 5;
}
.codecoment_area .codecoment.is-long.is-open::before {
  display: none;
}
.codecoment_area .codecoment.is-long.is-long:not(.is-open)::after {
  content: "+ MORE";
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
  color: #F6F6F6;
  background-color: #262626;
  padding: 0 5px;
  font-size: 14px;
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  font-style: normal;
  z-index: 10;
  text-decoration: underline;
}
.codecoment_area .codecoment.is-long.is-long:not(.is-open)::after:hover {
  opacity: 0.7;
}
.codecoment_area .codecoment .more-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
  color: #F6F6F6;
  background-color: #262626;
  padding: 0 5px;
  font-size: 14px;
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  font-style: normal;
  z-index: 10;
  text-decoration: underline;
}
.codecoment_area .codecoment .more-btn:hover {
  opacity: 0.7;
}
.white_area .codecoment_area .codecoment.is-long:not(.is-open)::before {
  background: linear-gradient(to bottom, rgba(246, 246, 246, 0), #F6F6F6 80%);
}
.white_area .codecoment_area .codecoment.is-long:not(.is-open)::after {
  color: #262626 !important;
  background-color: #F6F6F6 !important;
}

.credit_area {
  width: 81.8666666667vw;
  text-align: left;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .credit_area {
    width: 29.5138888889vw;
  }
}
.credit_area .cre_title {
  font-size: 10px;
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  font-style: normal;
  border-bottom: 1px solid #AEA6A6;
  margin-bottom: 15px;
}
@media screen and (min-width: 1025px) {
  .credit_area .cre_title {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.credit_area .credit_note {
  font-size: 9px;
}
@media screen and (min-width: 1025px) {
  .credit_area .credit_note {
    font-size: 9px;
  }
}

.credit_area .creditAjax_link, .credit_area .coming {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.coming .cre_img {
  width: 20%;
}
@media screen and (min-width: 1025px) {
  .coming .cre_img {
    width: 17%;
  }
}
.coming .credit_text {
  width: 75%;
}

.credit_text {
  font-size: 9px;
  width: 80%;
  letter-spacing: 0.4px;
}

.cre_img {
  width: 35px;
}
@media screen and (min-width: 1025px) {
  .cre_img {
    width: 10.5%;
  }
}

.buy {
  font-size: 10px;
  width: fit-content;
  padding: 0 3vw;
  font-family: "scotch-display-condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  .buy {
    padding: 0 1vw;
  }
}
.buy.non-buy {
  background-color: #c7c7c7;
  color: #fff;
  padding: 0 6px;
  white-space: nowrap;
}

.credit_box {
  margin-bottom: 2%;
  display: flex;
  justify-content: flex-start;
  gap: 3%;
  width: 82%;
}
@media screen and (min-width: 1025px) {
  .credit_box {
    width: 100%;
  }
}

/* 価格
===================================================== */
.creditAjax_price__proper::before,
.creditAjax_price__sale::before {
  content: "¥";
}

.creditAjax_price__sale {
  color: rgb(240, 46, 46);
  margin-left: 5px;
}

.creditAjax_price__off {
  color: rgb(240, 46, 46);
}
.creditAjax_price__off::before {
  content: "(";
}
.creditAjax_price__off::after {
  content: ")";
}

.creditAjax__saleOn .creditAjax_price__proper {
  text-decoration: line-through;
}

/* アイテム名
===================================================== */
.creditAjax_item {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* --------------------------------
  固定ヘッダー
-------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* 他の要素より手前に表示 */
  display: none; /* JSで制御する前に非表示にしておく */
}
@media screen and (min-width: 1025px) {
  .header {
    width: 10%;
  }
}

.header ul {
  display: flex;
  list-style: none;
  margin: 0;
  font-family: "scotch-display-condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #F6F6F6;
}
@media screen and (min-width: 1025px) {
  .header ul {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .header ul {
    align-items: center;
  }
}
.header ul li {
  width: 16.6666666667%;
}
@media screen and (min-width: 1025px) {
  .header ul li {
    width: 10vw;
    height: 16.6666666667vh;
  }
}
.header ul li.is-active a::before {
  background-color: transparent !important;
}
.header ul li a {
  position: relative;
  display: block;
  text-align: center;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .header ul li a {
    height: 100%;
  }
  .header ul li a picture, .header ul li a img {
    height: 100%;
  }
  .header ul li a img {
    object-fit: cover;
    object-position: top;
  }
}
.header ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
}
.header ul li a:hover {
  opacity: 1;
}
.header ul li a p {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: 50%;
  font-size: 2.6666666667vw;
  width: 95%;
  font-family: "scotch-display-condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  overflow-wrap: break-word;
  line-height: 1.3;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.34);
}
@media screen and (min-width: 1025px) {
  .header ul li a p {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .header ul li:nth-child(2) a p {
    width: 80%;
  }
}

.item_last {
  padding: 50px 0;
  background: #cacaca;
}
@media screen and (min-width: 1025px) {
  .item_last {
    padding: 120px 0;
  }
}
.item_last h4 {
  text-align: center;
  font-family: "scotch-display-condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 27px;
}
@media screen and (min-width: 1025px) {
  .item_last h4 {
    font-size: 40px;
  }
}

@media screen and (max-width: 1024px) {
  #item_area .spNone {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  #item_area .pcNone {
    display: none;
  }
}
#item_area ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 3.8194444444vw 12.0833333333vw 0;
  line-height: 1.6;
}
#item_area ul li a {
  display: grid;
}
#item_area ul li a p.ico_box {
  display: none;
}
#item_area ul li a p.price span {
  display: none;
}
#item_area ul li a p.price span.tt01 {
  display: block;
}
#item_area ul li a p.price.salecolor {
  color: #ae4242;
  order: 4;
  display: inline-block;
  font-size: 0.7638888889vw;
}
#item_area ul li a p.price.salecolor span {
  display: inline-block;
}
#item_area ul li a p.price.salecolor span::after {
  content: "(sale)";
  margin: 0 5px;
  display: inline-block;
}
#item_area ul li a p:first-child span {
  display: none;
}
#item_area ul li a p:nth-child(3) { /* ブランド名 */
  order: 2;
  font-size: 0.7638888889vw;
}
#item_area ul li a p:last-child { /* 値段 */
  order: 4;
  font-size: 0.7638888889vw;
}
#item_area ul li a div.textOverflow { /* アイテム名 */
  order: 1;
  font-size: 0.7638888889vw;
  margin-top: 0.9027777778vw;
}
.sectionAjax {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 10px;
  width: 90%;
  margin: 40px auto;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .sectionAjax {
    gap: 50px 15px;
    width: 80%;
    margin: 40px auto;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    font-size: 0.8333333333vw;
  }
}
.sectionAjax div {
  list-style: none;
}
.sectionAjax div a p.photo span {
  display: none;
}
.sectionAjax div a p.ico_box {
  display: none;
}
.sectionAjax div a p:nth-child(3) {
  order: 2;
  line-height: 1;
  font-size: 2.5vw;
  margin-top: 10px;
  margin-bottom: 4px;
}
.sectionAjax div a p.label { /* アイテム名 */
  order: 1;
  font-size: 2.6666666667vw;
  line-height: 1.2;
}
.sectionAjax div a p.price {
  order: 4;
  font-size: 2.6666666667vw;
}
.sectionAjax div a p.price span {
  display: block;
}
.sectionAjax div a p.price span.text-red {
  display: none;
}
.sectionAjax div a p.price.salecolor {
  color: #ae4242;
  display: inline-block;
  font-size: 2.6666666667vw;
}
.sectionAjax div a p.price.salecolor span {
  display: inline-block;
}
.sectionAjax div a p.price.salecolor span::after {
  content: "(sale)";
  margin: 0 5px;
  display: inline-block;
}

.more_btn {
  background-color: #000;
  width: 50%;
  margin: 40px auto 0;
  padding: 10px;
  font-family: "scotch-display-condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 17px;
}
@media screen and (min-width: 1025px) {
  .more_btn {
    width: 300px;
    font-size: 18px;
    margin: 80px auto 0;
  }
}
.more_btn a {
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8em; /* テキストと矢印の間隔 */
  /* 右向きの三角矢印を生成 */
}
.more_btn a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff; /* 矢印の色 */
}
.more_btn a p {
  color: #fff;
}

.all_btn {
  width: 70%;
  font-size: 19px;
  margin: 120px auto;
}
@media screen and (min-width: 1025px) {
  .all_btn {
    width: 500px;
    font-size: 22px;
    margin: 0px auto 200px;
  }
}

.sta_cre {
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  text-align: center;
  margin: 120px auto;
  line-height: 2;
}
@media screen and (min-width: 1025px) {
  .sta_cre {
    font-size: 13px;
    margin: 200px auto;
  }
}

.copy {
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 9px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .copy {
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */