@charset "UTF-8";
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
@font-face {
  font-family: "avenir";
  src: url(../assets/font/AvenirLTStd-Light.otf);
}
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* vw変換(PC用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.en {
  font-family: "din-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ja {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-weight: 800;
}

img,
video,
object {
  width: 100%;
  border: none;
  display: block;
}

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

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

/*--------------------------------------*
* aタグ
*--------------------------------------*/
a {
  display: block;
  text-decoration: none;
  transition: all 0.4s;
  color: #000;
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.6;
    transition: all 0.4s;
  }
}
a[href=""] {
  pointer-events: none;
}

/*--------------------------------------*
* ローディング
*--------------------------------------*/
#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
}

/*--------------------------------------*
* layout
*--------------------------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* ヘッダー
*--------------------------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* フッター
*--------------------------------------*/
/*--------------------------------------*
* object
*--------------------------------------*/
/*-------------------
* component
-------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* コンテンツ幅
*--------------------------------------*/
/*-------------------
* project
-------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* FV
*--------------------------------------*/
.fv {
  height: 100vh;
  position: relative;
  color: #fff;
}
.fv .fv_image {
  height: 100vh;
}
.fv .swiper .swiper-slide {
  height: 100vh;
}
.fv img {
  object-fit: cover;
  height: 100%;
  object-position: top;
}
.fv .fv_title {
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  width: fit-content;
  z-index: 10;
}
.fv h1 {
  font-size: 7.5vw;
  text-align: center;
  white-space: nowrap;
}
.fv h2 {
  text-align: right;
  font-size: 1.5vw;
  font-family: "avenir";
}

@media screen and (max-width: 768px) {
  .fv h1 {
    font-size: 54px;
  }
  .fv h2 {
    font-size: 12px;
  }
}
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* lead
*--------------------------------------*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* 共通
*--------------------------------------*/
header .btn {
  position: fixed;
  width: 80px;
  height: 80px;
  z-index: 99;
  right: 10px;
  top: 10px;
  border-radius: 100vmax;
  background-color: #f7f2f2;
  z-index: 999;
  cursor: pointer;
}
header .btn span {
  position: absolute;
  width: 45px;
  height: 1px;
  background-color: #000;
  translate: -50% 0;
  left: 50%;
  transition: all 0.4s;
  transform-origin: center;
}
header .btn span:nth-child(1) {
  top: 40%;
}
header .btn span:nth-child(2) {
  top: 55%;
}
header .btn.active span {
  transition: all 0.4s;
}
header .btn.active span:nth-child(1) {
  rotate: 45deg;
  top: 50%;
}
header .btn.active span:nth-child(2) {
  rotate: -45deg;
  top: 50%;
}

nav {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  background-color: #fff;
  z-index: 10;
  display: grid;
  place-content: center;
  text-align: center;
  opacity: 0;
  translate: 0 -50%;
  pointer-events: none;
  z-index: 99;
}
nav .nav_title {
  font-size: 32px;
  padding-bottom: 8px;
}
nav .sub_title {
  font-size: 14px;
}
nav.active {
  translate: 0 0;
  opacity: 1;
  pointer-events: inherit;
}
nav ul {
  margin-top: 40px;
  font-size: 18px;
  display: grid;
  gap: 20px;
}
nav ul a {
  width: 250px;
  background-color: #fff;
  border: 1px solid #000;
  padding: 10px 0;
}

.cate .bg {
  background-color: #f7f2f2;
  padding: 120px 0;
}
.cate h3 {
  font-size: 24px;
  text-align: center;
  padding-bottom: 15px;
}
.cate .cate_ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  width: fit-content;
  margin: 0 auto;
}
.cate .cate_li a {
  position: relative;
  width: 12.5vw;
}
.cate .cate_li a:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.35);
}
.cate .cate_title {
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  text-align: center;
  font-size: 32px;
  z-index: 3;
}

.sec {
  padding: 60px 0 0 0;
}
.sec .section_title {
  font-size: 134px;
  color: #801d1d;
  padding: 0 0 0 20px;
  width: fit-content;
  border-bottom: 1px solid #801d1d;
}
.sec .bg {
  padding: 80px 0;
  background-color: #f7f2f2;
}
.sec .sale_title {
  font-family: "avenir";
  font-size: 32px;
  text-align: center;
  color: #000;
  padding-bottom: 35px;
}

.all_btn {
  font-size: 20px;
  text-align: center;
  width: 400px;
  margin: 80px auto 0;
  padding: 20px 0 18px;
  color: #801d1d;
  border: 1px solid #801d1d;
  font-family: "avenir";
  position: relative;
}
.all_btn:after {
  content: ">";
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: 25px;
}
.all_btn:hover {
  opacity: 1;
  background-color: #801d1d;
  color: #fff;
}

.sec_image {
  overflow: hidden;
  position: relative;
  padding-bottom: 70px;
}

footer .container {
  padding: 180px 0 30px;
}
footer .footer_link {
  font-family: "avenir";
  display: grid;
  gap: 15px;
}
footer .footer_link .all_btn {
  margin: 0 auto;
}
footer .logo {
  width: 120px;
  margin: 150px auto 15px;
}
footer .copy {
  font-size: 10px;
  font-family: "avenir";
  text-align: center;
}

.credit {
  position: relative;
  z-index: 10;
  font-family: "avenir";
  font-size: 14px;
  display: grid;
  gap: 10px;
  width: fit-content;
}
.credit .creditAjax_link,
.credit .price {
  display: flex;
  gap: 3px;
}
.credit .price {
  margin-left: 2px;
  gap: 2px;
}
.credit .creditAjax_price__proper::before,
.credit .creditAjax_price__sale::before {
  content: "¥";
}
.credit .arrow {
  display: none;
}
.credit .creditAjax_price:has(.creditAjax_price__sale) .creditAjax_price__proper {
  text-decoration: line-through;
}
.credit .creditAjax_price:has(.creditAjax_price__sale) .arrow {
  display: block;
}
.credit .creditAjax_price__sale {
  color: red;
  text-decoration: underline;
}
.credit .creditAjax_price__off {
  display: none;
}

.item_ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 71.6666666667vw;
  margin: 0 auto;
}
.item_ul img {
  padding-bottom: 10px;
}
.item_ul a {
  position: relative;
  font-size: 12px;
  line-height: 1.4166666667;
}
.item_ul a:after {
  content: "BUY";
  background-color: #fff;
  color: #000;
  text-align: center;
  display: block;
  padding: 5px 0;
  width: 135px;
  margin: 20px auto 0;
  font-size: 20px;
}
.item_ul .price {
  padding-top: 5px;
  display: inline-block;
}
.item_ul .tt02 {
  color: red;
}

@media screen and (min-width: 769px) {
  #sec1 .sec_image {
    overflow: inherit;
  }
  #sec1 .img1,
  #sec1 .img2 {
    width: 25vw;
  }
  #sec1 .img1 {
    margin: 2.5vw auto 0 2.5vw;
  }
  #sec1 .img2 {
    position: absolute;
    left: 31vw;
    top: 6.6666666667vw;
    z-index: 3;
  }
  #sec1 .img3 {
    width: 58.3333333333vw;
    position: absolute;
    right: 0;
    top: -6.6666666667vw;
  }
  #sec1 .credit {
    margin: 0 auto 0 62.6666666667vw;
  }
  #sec2 .sec_image,
  #sec6 .sec_image {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5vw;
    width: fit-content;
    margin: 2.5vw auto 0;
  }
  #sec2 .sec_image figure,
  #sec6 .sec_image figure {
    width: 29.1666666667vw;
  }
  #sec2 .img2,
  #sec6 .img2 {
    margin-top: 4.1666666667vw;
  }
  #sec2 .img3,
  #sec6 .img3 {
    margin-top: 8.3333333333vw;
  }
  #sec2 .credit,
  #sec6 .credit {
    margin: -6.6666666667vw auto 0 0;
  }
  #sec3 .sec_image {
    display: grid;
    grid-template-columns: 25vw 25vw 33.3333333333vw;
    gap: 2.9166666667vw;
    width: fit-content;
    margin: 2.5vw auto 0;
  }
  #sec3 .img1 {
    margin-top: 3.3333333333vw;
  }
  #sec3 .img3 {
    margin-top: 5vw;
  }
  #sec3 .credit {
    position: absolute;
    left: 20.8333333333vw;
    bottom: 70px;
  }
  #sec4 .img1,
  #sec4 .img3 {
    width: 29.1666666667vw;
    z-index: 3;
    position: relative;
  }
  #sec4 .img1 {
    margin-top: 1.6666666667vw;
  }
  #sec4 .img2 {
    width: 55vw;
    position: absolute;
    translate: -50% 0;
    left: 50%;
    top: 8.3333333333vw;
    z-index: 1;
  }
  #sec4 .img3 {
    position: absolute;
    right: 0;
    top: 12.5vw;
  }
  #sec4 .credit {
    margin: 8.3333333333vw auto 0;
  }
  #sec5 .img1 {
    width: 48.3333333333vw;
    margin: 5vw auto 0 4.1666666667vw;
  }
  #sec5 .img2,
  #sec5 .img3 {
    width: 29.1666666667vw;
  }
  #sec5 .img2 {
    position: absolute;
    left: 37.3333333333vw;
    top: 8.3333333333vw;
  }
  #sec5 .img3 {
    position: absolute;
    right: 0;
    top: 3.3333333333vw;
  }
  #sec5 .credit {
    margin: 4.1666666667vw auto 8.3333333333vw 4.1666666667vw;
  }
}
@media screen and (max-width: 768px) {
  header .btn {
    width: 60px;
    height: 60px;
  }
  header .btn span {
    width: 35px;
  }
  .cate .bg {
    padding: 100px 0;
  }
  .cate h3 {
    padding-bottom: 10px;
  }
  .cate .cate_ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
  .cate .cate_li a {
    width: 120px;
  }
  .cate .cate_title {
    font-size: 24px;
  }
  .sec {
    padding: 60px 0 0 0;
  }
  .sec .section_title {
    font-size: 48px;
    margin-bottom: 30px;
  }
  .sec .bg {
    padding: 60px 0;
    background-color: #f7f2f2;
  }
  .sec .sale_title {
    font-size: 24px;
    padding-bottom: 25px;
  }
  .all_btn {
    width: 300px;
  }
  .credit {
    margin: 10.6666666667vw auto 0 4vw;
    font-size: 12px;
  }
  .item_ul {
    width: 84vw;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }
  .item_ul a {
    font-size: 12px;
  }
  .item_ul a:after {
    font-size: 15px;
    padding: 3px 0;
    width: 100px;
  }
  #sec1 .img1 {
    width: 40vw;
    padding: 33.0666666667vw 0 0 4vw;
    position: relative;
    z-index: 3;
  }
  #sec1 .img2 {
    width: 48vw;
    margin: -37.8666666667vw 4vw 0 auto;
  }
  #sec1 .img3 {
    width: 80vw;
    position: absolute;
    right: 0;
    top: 0;
  }
  #sec2 .img1 {
    width: 65.3333333333vw;
    padding: 80vw 0 0 0;
    position: relative;
    z-index: 3;
  }
  #sec2 .img2 {
    width: 40vw;
    position: absolute;
    left: 4vw;
    top: 0;
  }
  #sec2 .img3 {
    position: absolute;
    right: 0;
    top: 16vw;
    width: 53.3333333333vw;
  }
  #sec3 .img1 {
    width: 48vw;
    padding: 14.6666666667vw 0 0 0;
  }
  #sec3 .img2 {
    width: 48vw;
    position: absolute;
    right: 0;
    top: 0;
  }
  #sec3 .img3 {
    width: 80vw;
    margin: -10.6666666667vw 0 0 auto;
  }
  #sec4 .img1 {
    width: 48vw;
    padding: 70.6666666667vw 0 0 0;
  }
  #sec4 .img2 {
    position: absolute;
    top: 0;
  }
  #sec4 .img3 {
    width: 48vw;
    margin: -30.6666666667vw 0 0 auto;
  }
  #sec5 .img1 {
    width: 85.3333333333vw;
  }
  #sec5 .img2 {
    width: 53.3333333333vw;
    margin: 6.1333333333vw 0 0 auto;
  }
  #sec5 .img3 {
    width: 40vw;
    margin: -45.3333333333vw auto 0 0;
  }
  #sec6 .img1 {
    width: 58.6666666667vw;
  }
  #sec6 .img2 {
    width: 40vw;
    position: absolute;
    top: 42.6666666667vw;
    right: 8vw;
    z-index: 3;
  }
  #sec6 .img3 {
    width: 53.3333333333vw;
    margin: 10.6666666667vw auto 0;
  }
}/*# sourceMappingURL=style.css.map */