*,*::before,*::after{box-sizing:border-box}
body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}
ul[role="list"],ol[role="list"]{list-style:none}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

body,a,p{
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  text-decoration: none;
  line-height: 1.6;
  letter-spacing: 0.08rem;
}
body{
  position: relative;
}
ul{
  padding: 0;
}
li{
  list-style: none;
}
/* img{
  width: 100%;
  height: auto;
} */

.pc{
  display: block;
}
.sp{
  display: none;
}
.flex-box{
  display: flex;
}
.slide-box{
  max-width: 100%;
  overflow: hidden;
}
/* リンクボックス */
.link-box{
  margin: 0 auto;
}
.cart-btm{
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-in-out;
  margin-bottom: 0.7em;
  color: #fff;
}
.cart-title{
  position: relative;
  margin-right: 0.5em;
  font-family: "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: clamp(11px,1.1vw,20px);
  line-height: 1.4;
  letter-spacing: 0.02rem;
  font-weight: 400;
  font-style: normal;
}
.price-area{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cart-yen{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 1.4;
  font-size: clamp(12px,1.1vw,20px);
  letter-spacing: 0.06rem;
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
}
.cart-yen img{
  width: clamp(12px, 0.9vw, 16px);
  margin: 0 0.5rem 0 0;
}
.cart-yen span{
  margin: 0 0 -2px 3%;
  font-size: clamp(10px, 0.6vw, 15px);
}
.cart-btm .btn{
  margin: 0 0 0 3%;
  padding: 0.6em 1em;
  background: #aa7570;
  text-align: center;
  color: #fff;
  line-height: 1em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(10px, 0.8vw, 12px);
}
.btn-arrow{
  position: relative;
  -webkit-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out;
}
.btn-arrow span{
  display: inline-block;
  position: relative;
  letter-spacing: 0.02rem;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: transform;
}
.cart-btm:hover .btn-arrow span {
  -webkit-transform: translate3d(-.5rem, 0, 0);
  transform: translate3d(-.5rem, 0, 0);
}
.btn-arrow img{
  position: absolute;
  width: 1.1em;
  right: 0px;
  right: 0rem;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: right, opacity;
}
.btn-arrow img *{
  stroke-width: 5;
  -webkit-text-stroke-color: transparent;
}
.cart-btm:hover .btn-arrow img {
  opacity: 1;
  right: -0.8rem;
}
/* アニメーション */
.clippath.active{
  animation-name: clippath;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes clippath{
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.header-zoom{
  animation: header-zoom;
  animation-duration: 2.4s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes header-zoom{
  0%{
    opacity: 0;
    filter: blur(6px);
    transform: scale(1.15);
  }
  40%{
    opacity: 1;
  }
  100%{
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
.fadein{
  opacity: 0;
}
.header-fade,
.fadein.active{
  animation-name: fade;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-delay: 2.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fade{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.slideup{
  opacity: 0;
}
.header-slideup,
.slideup.active{
  animation: slideup;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transition: ease-out;
  opacity: 0;
}
@keyframes slideup{
  0% {
    opacity: 0;
    transform: translate(0, 80px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.slideright{
  opacity: 0;
}
.header-slideright,
.slideright.active{
  animation: slideright;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transition: ease-out;
  opacity: 0;
}
@keyframes slideright{
  0% {
    opacity: 0;
    transform: translate(80px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.recomend-item:nth-child(even),
.limited-item:nth-child(even),
.item-item:nth-child(even){
  animation-delay: 0.8s;
}
.brand-item:nth-child(2),
.brand-item:nth-child(6){
  animation-delay: 0.7s;
}
.brand-item:nth-child(3),
.brand-item:nth-child(7){
  animation-delay: 0.8s;
}
.brand-item:nth-child(4){
  animation-delay: 0.9s;
}
/* header */
.header{
  position: relative;
  width: 100%;
  overflow: hidden;
}
.header-inner{
  width: 100%;
}
.header .photo-box{
  width: calc(1439 / 2560 * 100%);
  height: auto;
  mix-blend-mode: multiply;
}
.header .photo-box img{
  width: 100%;
  height: auto;
}
.header .title-box{
  width: calc(1121 / 2560 * 100%);
  animation-duration: 1.3s;
  animation-delay: 1.6s;
}
.header .title{
  width: calc(791.4887 / 1121 * 100%);
  height: auto;
  margin: 12% auto 0 20%;
}
.header .text-bgi{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-top: 9.5%;
  background: rgba(170,117,112,0.7);
  mix-blend-mode: multiply;
  animation-delay: 1.6s;
}
.header .text-box{
  position: absolute;
  bottom: 3%;
  left: 0;
  width: 100%;
}
.header .text{
  text-align: center;
  color: #fff;
  font-size: clamp(12px,1.5vw,24px);
  line-height: 2;
  animation-delay: 2.4s;
}
.header .logo{
  position: absolute;
  top: 7.75%;
  right: 6%;
  width: calc(253.6125 / 2560 * 100%);
  z-index: 1;
}
/* recomend */
.recomend .title-box{
  position: relative;
  animation-delay: 0s;
}
.recomend .title-box::after{
  content: "";
  display: block;
  width: 2px;
  height: 70px;
  background: #aa7570;
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
}
.recomend .title{
  width: calc(1102.543 /2560 * 100%);
  height: auto;
  margin: 8% auto;
}
.recomend-list{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 4rem 3rem;
  width: calc(1808 / 2560 * 100%);
  margin: calc(5% + 70px) auto 0;
}
.recomend .photo img{
  width: 100%;
  height: auto;
  transition: 0.6s ease-in-out;
}
.recomend .photo:hover img{
  opacity: 0.8;
}
.recomend .name{
  width: auto;
  height: calc(65.1166 / 2560 * 100vw);
  margin: 3% auto 1%;
}
.recomend .text{
  text-align: center;
  font-family: "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: clamp(10px,1.1vw,20px);
}
.recomend .link-box{
  width: 70%;
  min-width: 240px;
  margin: 3% auto 0;
}
.recomend .btn-box{
  width: 65%;
  min-width: 220px;
  margin: 6% auto 0;
}
.recomend .btn-box .btn{
  transition: 0.6s ease-in-out;
}
.recomend .btn-box .btn:hover{
  opacity: 0.6;
}
/* limited */
.limited{
  margin-top: 160px;
}
.limited .title-box{
  position: relative;
  background: rgba(170,117,112,0.4);
  margin-bottom: -10rem;
  padding: 6rem 0 15rem;
  animation-delay: 0s;
}
.limited .title-box::before{
  content: "";
  display: block;
  width: 2px;
  height: 70px;
  background: #aa7570;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
}
.limited .title{
  width: calc(1095.9182 /2560 * 100%);
  height: auto;
  margin: 0 auto;
}
.limited-list{
  position: relative;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem 3rem;
  width: calc(1808 / 2560 * 100%);
  margin: 0 auto;
  z-index: 2;
}
.limited .photo img{
  width: 100%;
  height: auto;
  box-shadow : 2.88px 2.88px 14.42px rgba(0, 0, 0, 0.2);
  transition: 0.6s ease-in-out;
}
.limited .photo:hover img{
  box-shadow : 2.88px 2.88px 14.42px rgba(170,117,112,0.2);
  opacity: 0.8;
}
.limited .text{
  margin-top: 3%;
  text-align: center;
  font-family: "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: clamp(10px,1vw,21px);
}
.limited .link-box{
  width: 34%;
  min-width: 160px;
  margin: 4% auto 0;
}
.limited .link-box .price-area{
  justify-content: space-between;
}
.limited .link-box .cart-yen{
  justify-content: flex-start;
  width: inherit;
}
.limited .link-box .cart-btm .btn{
  margin-left: 1em
}
/* item */
.item{
  margin-top: 110px;
}
.item .title-box{
  position: relative;
  width: calc(1788 / 2560 * 100%);
  margin: 0 auto;
  animation-delay: 0s;
}
.item .title{
  width: calc(730.4215 / 1688 * 100%);
  height: auto;
  margin: 0 auto 0 0;
}
.item-list{
  position: relative;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 3.5rem;
  width: calc(1588 / 2560 * 100%);
  margin: 4% auto 0;
  z-index: 2;
}
.item .photo img{
  width: 100%;
  height: auto;
  transition: 0.6s ease-in-out;
}
.item .photo:hover img{
  opacity: 0.8;
}
.item .btn{
  width: calc(861.3775 / 2560 * 100%);
  height: auto;
  margin: 3% auto 0;
  transition: 0.6s ease-in-out;
}
.item .btn:hover{
  opacity: 0.6;
}
/* brand */
.brand{
  margin-top: 110px;
}
.brand .title-box{
  position: relative;
  margin: 0 auto;
  animation-delay: 0s;
}
.brand .title{
  width: calc(737.3848 / 2560 * 100%);
  height: auto;
  margin: 0 auto;
}
.brand-list{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
  width: calc(1808 / 2560 * 100%);
  margin: 3% auto 0;
  z-index: 2;
}
.brand .photo img{
  width: 100%;
  height: auto;
  box-shadow : 2.88px 2.88px 14.42px rgba(0, 0, 0, 0.2);
  transition: 0.6s ease-in-out;
}
.brand .photo:hover img{
  box-shadow : 2.88px 2.88px 14.42px rgba(170,117,112,0.2);
  opacity: 0.8;
}
/*footer*/
.footer{
  color: #000;
  letter-spacing: 0.3em;
  margin-top: 12%;
  padding: 0 0 2% 0;
  position: relative;
  text-align: center;
}
.footer a{
  transition: 0.3s ease-in-out;
}
.footer a:hover img{
  opacity: 0.6;
  transition: 0.3s ease-in-out;
}
.footer_sns {
  display: inline-block;
  width: 2.5%;
  margin: auto;
}
.f-ow {
  width: 120px;
  margin: 25px auto 0 auto;
}
.copyright {
  font-family: "Helvetica",serif;
  font-size: 10px;
  letter-spacing: 0.02em;
  margin: 34px 0 0;
}
/* ページトップ */
.pagetop{
  position: fixed;
  right: 30px;
  bottom: 20px;
  width: 35px;
  z-index: 99;
}


@media screen and (max-width:767px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  .flex-box{
    flex-direction: column;
  }

  /* リンク */
  .cart-title{
    font-size: clamp(15px,1.5vw,27px);
    line-height: 1.2;
    letter-spacing: 0.06rem;
  }
  .size-area {
    margin: -1.25em auto 0.5em;
  }
  .size-area a{
    font-size: 0.8rem;
  }
  .cart-yen{
    font-size: clamp(15px,1.5vw,27px);
    line-height: 1.2;
    letter-spacing: 0.04rem;
  }
  .cart-yen img{
    width: 0.95rem;
    margin: 0 0.3rem 0 0;
  }
  .cart-yen.size-space img {
    margin-right: 0.84rem;
  }
  .cart-yen.price img {
    margin-right: 0.81rem
  }
  .cart-yen span{
    font-size: 0.7rem;
    margin: 2px 2px -2px 2px;
  }
  .cart-btm .btn{
    margin-left: 1%;
    padding: 0.5em 1em;
    font-size: 0.7rem;
  }
  /* アニメーション */
  .recomend-item:nth-child(even),
  .limited-item:nth-child(even),
  .item-item:nth-child(even),
  .brand-item:nth-child(3),
  .brand-item:nth-child(7){
    animation-delay: 0.6s;
  }
  .brand-item:nth-child(2),
  .brand-item:nth-child(4),
  .brand-item:nth-child(6){
    animation-delay: 0.7s;
  }
  /* header */
  .header-inner{
    display: block;
  }
  .header .photo-box{
    width: 100%;
  }
  .header .title{
    position: absolute;
    top: 8%;
    right: 3%;
    width: calc(634.062 / 1280 * 100%);
  }
  .header .logo{
    top: 2%;
    right: 4%;
    width: calc(330 / 1280 * 100%);
  }
  .header .text-bgi{
    padding-top: 30%;
  }
  .header .text-box{
    bottom: 1%;
  }
  .header .text{
    font-size: clamp(10px,3.8vw,27px);
    line-height: 1.8;
  }

  /* recomend */
  .recomend .title{
    width: calc(996.6311 / 1280 * 100%);
    margin: 12% auto;
  }
  .recomend-list{
    grid-template-columns: repeat(1,1fr);
    gap: 3rem;
    width: 100%;
    margin: calc(14% + 70px) auto 0;
  }
  .recomend .photo{
    display: block;
    width: calc(1100 / 1280 * 100%);
    margin: 0 auto;
  }
  .recomend .name{
    height: 2.3rem;
    min-height: 9vw;
    margin-bottom: 3%;
  }
  .recomend .text{
    font-size: clamp(15px,1.1vw,20px);
    letter-spacing: 0.04rem;
  }
  .recomend .link-box{
    width: calc(1082.0225 / 1280 * 100%);
    min-width: inherit;
    margin: 3% auto 0;
  }
  .recomend .btn-box{
    width: calc(1082.0225 / 1280 * 100%);
    min-width: inherit;
    margin-top: 3%;
  }
  /* limited */
  .limited {
      margin-top: 18%;
  }
  .limited-list{
    grid-template-columns: repeat(1,1fr);
    gap: 1.5rem;
    width: calc(1160 / 1280 * 100%);
  }
  .limited .title-box{
    margin-bottom: -4rem;
    padding: 4rem 0 8rem;
  }
  .limited .title{
    width: calc(1009.9385 / 1280 * 100%);
  }
  .limited .text{
    font-size: clamp(15px,1vw,20px);
    letter-spacing: 0.04rem;
  }
  /* item */
  .item{
    margin-top: 18%;
  }
  .item .title-box{
    width: calc(957.9976 / 1280 * 100%);
    margin-left: 5%;
  }
  .item .title{
    width: 100%;
  }
  .item-list{
    grid-template-columns: repeat(1,1fr);
    gap: 1.5rem;
    width: calc(950 / 1280 * 100%);
    margin-top: 8%;
  }
  .item .btn{
    width: calc(1082 / 1280 * 100%);
    margin-top: 6%;
  }
  /* brand */
  .brand{
    margin-top: 22%;
  }
  .brand .title{
    width: calc(546.4521 / 1280 * 100%);
  }
  .brand-list{
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
    width: calc(950 / 1280 * 100%);
    margin-top: 8%;
  }
  /* フッター */
  .footer{
    margin-top: 20%;
    padding-bottom: 8%;
  }
  .footer_sns{
    width: 8vw;
  }
  .f-ow{
    margin-top: 3%;
  }
  .footer_copyright{
    font-size: 10px;
    letter-spacing: 0.02em;
    margin: 5% 0 0 0;
  }
  .pagetop{
    right: 0;
    bottom: 0;
  }
}
