@font-face {
  src: url(../font/Butler_Regular.otf) format(opentype);
  font-family: ButlerRegular;
}
@font-face {
  src: url(../font/Didot.ttc) format(truetype);
  font-family: Didot;
}
:root {
  --font-ShipporiMincho: "Shippori Mincho B1", serif;
  --font-ButlerRegular: "ButlerRegular", serif;
  --font-Didot: "Didot", serif;
  --color-wool: #9B0023;
  --color-down: #396C7B;
}

*, *::before, *::after {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
  color: #fff;
}
ul[role=list], ol[role=list] {
  list-style: none;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}
input, button, textarea, select {
  font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body, a, p {
  font-style: normal;
  text-decoration: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
body {
  position: relative;
  overflow-anchor: none;
  background: #907C67;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
.image{
  width: 100%;
}
/*animation*/
.header-fadeout{
  animation-name: header-fadeout;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-delay: 1.3s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes header-fadeout {
  0% {
    opacity: 1;
  }
  100% {
   opacity: 0;
  }
}
.header-fadein{
  animation-name: header-fadein;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes header-fadein {
  0% {
    opacity: 1;
  }
  100% {
   opacity: 1;
  }
}

.fade{
  opacity: 0;
}
.fade.active{
  animation-name: fade;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.clippath-top{
  opacity: 0;
}
.clippath-top.active{
  animation-name: clippath-top;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes clippath-top {
  0% {
    opacity: 1;
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
.clippath-bottom{
  opacity: 0;
}
.clippath-bottom.active{
  animation-name: clippath-bottom;
  animation-duration: 1.6s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes clippath-bottom {
  0% {
    opacity: 1;
    clip-path: inset(100% 0 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
.clippath-left{
  opacity: 0;
}
.header-clippath-left,
.clippath-left.active{
  animation-name: clippath-left;
  animation-duration: 1.6s;
  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-left {
  0% {
    opacity: 0;
    filter: blur(6px);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    clip-path: inset(0);
  }
}
.slide-right{
  opacity: 0;
}
.slide-right.active{
  animation-name: slide-right;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes slide-right {
  0% {
    opacity: 0;
    transform: translateX(30%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-left{
  opacity: 0;
}
.slide-left.active{
  animation-name: slide-left;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes slide-left {
  0% {
    opacity: 0;
    transform: translateX(-30%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.header-zoomin{
  animation-name: header-zoomin;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes header-zoomin {
  0% {
    opacity: 0;
    scale: 1.1;
  }
  60% {
    opacity: 1;
    scale: 1.3;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}

/*link*/
.link {
  width: calc(306 / 1280 * 100vw);
  margin: 4% auto 0;
}
.link .cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.link .cart:not(:last-child) {
  margin-bottom: 0.5em;
}
.link .cart__title {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: calc(15 / 1280 * 100vw);
  letter-spacing: 0.01rem;
}
.link .cart__title span {
  display: inline-block;
}
.link .cart__price {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: calc(15 / 1280 * 100vw);
}
.link .cart__price--yen {
  position: relative;
  padding-left: 1.5em;
  letter-spacing: 0.02rem;
  white-space: nowrap;
}
.link .cart__price--yen.size-l::before,
.link .cart__price--yen.size-s::before{
  display: block;
  width: 1em;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: 0 auto;
}
.link .cart__price--yen.size-l::before{
  content: url(../img/size-l.svg);
}
.link .cart__price--yen.size-s::before{
  content: url(../img/size-s.svg);
}
.link .cart__price--yen.price-space{
  padding-left: 2.1em;
}
.link .cart__price--yen .tax{
  margin-left: 0.5em;
  font-size: calc(10 / 1280 * 100vw);
}
.link .cart__price--btn {
  position: relative;
  margin-left: 1em;
  padding: 0.4em 1em;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: calc(10 / 1280 * 100vw);
  line-height: 1;
}
.wool .link .cart__price--btn{
  border: 1px solid var(--color-wool);
  background: var(--color-wool);
}
.down .link .cart__price--btn{
  border: 1px solid var(--color-down);
  background: var(--color-down);
}
.link .cart__price--btn span img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
  width: 1em;
  transition: 0.4s ease-in;
}
.link .cart:hover .cart__price--btn span {
  transform: translateX(-10%);
}
.link .cart__price--btn span {
  display: flex;
  transition: 0.4s ease-in;
}
.link .cart:hover .cart__price--btn span img {
  opacity: 1;
  margin-right: -1.2em;
}
.link .link__other {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #fff;
}
.link .link__other .cart__price--btn {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* 共通*/
.pc {
  display: block;
}
.sp {
  display: none;
}
.slide-box {
  overflow: hidden;
}
.flex-box{
  display: flex;
}
.flex-reverse{
  flex-direction: row-reverse;
}
/*header*/
.header {
  position: relative;
  aspect-ratio: 1280 / 720;
  width: 100%;
  overflow: hidden;
}
.header .image{
  width: 100%;
}
.header .photo01{
  position: absolute;
  top: 5%;
  left: 0;
  width: calc(320 / 1280 * 100%);
  animation-delay: 0.2s;
}
.header .photo02{
  position: absolute;
  bottom: 2%;
  left: 26%;
  width: calc(246 / 1280 * 100%);
  animation-delay: 0.8s;
}
.header .photo03{
  position: absolute;
  top: 0;
  right: 25%;
  width: calc(350 / 1280 * 100%);
  z-index: 2;
  animation-delay: 0.6s;
}
.header .photo04{
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(390 / 1280 * 100%);
  animation-delay: 0.4s;
}
.header .mv01{
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(460 / 1280 * 100%);
}
.header .mv01 .image{
  animation-duration: 1s;
  animation-delay: 2.2s;
}
.header .mv02{
  position: absolute;
  top: 0;
  right: 17%;
  width: calc(360 / 1280 * 100%);
  animation-duration: 1s;
  animation-delay: 2.4s;
}
.header .mv03{
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(278 / 1280 * 100%);
  z-index: 2;
}
.header .mv03 .image{
  animation-duration: 1s;
  animation-delay: 2.2s;
}
.header .title01{
  position: absolute;
  top: 10%;
  right: 5%;
  width: calc(99.1919 / 1280 * 100%);
  z-index: 3;
  animation-delay: 1.8s;
}
.header .title02{
  position: absolute;
  top: 14%;
  left: 22%;
  width: calc(667.2002 / 1280 * 100%);
  animation-delay: 1s;
}
.header .heart{
  position: absolute;
  top: 39%;
  left: 60.5%;
  width: calc(104.9131 / 1280 * 100%);
  animation-duration: 1.4s;
  animation-delay: 3.2s;
}
.header .text{
  position: absolute;
  bottom: 9%;
  left: 32%;
  width: calc(444.0801 / 1280 * 100%);
  animation-duration: 1s;
  animation-delay: 2.8s;
}
.header-logo {
  position: absolute;
  top: 4%;
  left: 1.5%;
  width: calc(71.4653 / 1280 * 100%);
}
/*lead*/
.lead {
  position: relative;
  margin-top: 5%;
}
.lead-logo {
  display: none;
}
.lead .title-box{
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.lead .title{
  padding: 0 0.8em 0.2em;
  text-align: center;
  font-size: max(26px,calc(30 / 1280 * 100vw));
  font-family: var(--font-ShipporiMincho);
}
.lead .heart{
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(25.9732 / 1280 * 100vw);
  animation-duration: 1s;
}
.lead-text {
  margin-top: 1.5%;
  color: #fff;
  text-align: center;
  font-family: var(--font-ShipporiMincho);
  font-size: max(14px,calc(15 / 1280 * 100vw));
  line-height: 2.2;
  letter-spacing: 0.08rem;
}
/* mainnav------------------------------ */
.mainnav{
  margin-top: 6%;
}
.mainnav .list{
  display: flex;
  justify-content: center;
  gap: 4%;
}
.mainnav .list .item{
  width: calc(280 / 1280 * 100%);
}
.mainnav .list .item:nth-child(1){
  animation-duration: 1.2s;
  animation-delay: 0.4s;
}
.mainnav .list .item:nth-child(2){
  animation-duration: 1.2s;
  animation-delay: 0.6s;
}
.mainnav .photo{
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid transparent;
  transition: 0.4s ease;
}
.mainnav .item:nth-child(1) .photo:hover{
  border-color: var(--color-wool);
}
.mainnav .item:nth-child(2) .photo:hover{
  border-color: var(--color-down);
}
.mainnav .photo .image{
  margin-bottom: -1px;
}
.mainnav .list .item .title{
  margin-top: 0.5em;
  text-align: center;
  font-family: var(--font-ButlerRegular);
  font-size: calc(34 / 1280 * 100vw);
  letter-spacing: 0.1em;
  line-height: 1;
}
.mainnav .list .item .subtitle{
  margin-top: -0.3em;
  text-align: center;
  font-family: var(--font-Didot);
  font-size: calc(20 / 1280 * 100vw);
  letter-spacing: 0.08em;
  line-height: 1;
}
/* style-box---------------------- */
.style-box{
  position: relative;
  margin: 13% auto 0;
  padding-top: 1%;
}
.style-box .image{
  width: 100%;
}
.style-box .title-box{
  z-index: 2;
}
.style-box .title-box .number{
  width: calc(186.6938 / 1280 * 100vw);
}
.style-box .title-box .item-name{
  font-family: var(--font-ButlerRegular);
  font-size: calc(75 / 1280 * 100vw);
  line-height: 1.1;
  letter-spacing: 0.02em;
  animation-delay: 0.1s;
}
.wool .style-box .title-box .item-name span{
  color: var(--color-wool);
}
.down .style-box .title-box .item-name span{
  color: var(--color-down);
}
.style-box .text-area{
  width: calc(400 / 1280 * 100vw);
  margin: 3% auto 0;
}
.style-box .text-area .title{
  width: 100%;
}
.style-box .text-area .text{
  margin-top: 6%;
  text-align: justify;
  font-family: var(--font-ShipporiMincho);
  font-size: max(14px,calc(15 / 1280 * 100vw));
  line-height: 2;
}
.style-box .swiper-slide {
  overflow: hidden;
}
.style-box .swiper-slide img {
  height: auto;
  width: 100%;
}
/*wool-type01----------------------*/
.wool-type01{
  margin-top: 6%;
}
.wool-type01 .title-box{
  position: absolute;
  top: 0%;
  right: 11%;
  width: calc(400 / 1280 * 100%);
}
.wool-type01 .title-box .number{
  margin: 0 0 0 auto;
}
.wool-type01 .title-box .item-name{
  margin: 32% auto 0 0;
}
.wool-type01 .content-box{
  justify-content: flex-end;
}
.wool-type01 .box01{
  width: calc(400 / 1280 * 100%);
  margin: 40% auto 0 3%;
}
.wool-type01 .box02{
  width: calc(700 / 1280 * 100%);
}
/*wool-type02----------------------*/
.wool-type02 .title-box{
  position: absolute;
  top: 0%;
  left: 6%;
  width: calc(515.9546 / 1280 * 100vw);
}
.wool-type02 .title-box .number{
  margin: 0 auto 0 0;
}
.wool-type02 .title-box .item-name{
  margin: 8% 0 0 auto;
  text-align: right;
}
.wool-type02 .content-box{
  position: relative;
  justify-content: center;
  right: 3%;
}
.wool-type02 .box01{
  width: calc(580 / 1280 * 100%);
  margin-top: 3%;
}
.wool-type02 .box02{
  width: calc(500 / 1280 * 100%);
  margin: 31% -3% 0 3%;
}
.wool-type02 .text-area{
  margin-left: 21%;
}
/*wool-type03----------------------*/
.wool-type03 .title-box{
  position: absolute;
  top: 0%;
  right: 11%;
  width: calc(576.856 / 1280 * 100%);
}
.wool-type03 .title-box .number{
  margin: 0 0 0 auto;
}
.wool-type03 .title-box .item-name{
  margin: -6% auto 0 0;
}
.wool-type03 .content-box{
  justify-content: flex-end;
}
.wool-type03 .box01{
  width: calc(602 / 1280 * 100%);
  margin-top: 2%;
}
.wool-type03 .box02{
  width: calc(500 / 1280 * 100%);
  margin: 29% auto 0 3%;
}
.wool-type03 .text-area{
  margin-right: 0;
}
/*wool-type04----------------------*/
.wool-type04 .title-box{
  position: absolute;
  top: 0%;
  left: 7%;
  width: calc(680.0942 / 1280 * 100vw);
}
.wool-type04 .title-box .number{
  margin: 0 auto 0 0;
}
.wool-type04 .title-box .item-name{
  margin: -4% 0 0 auto;
  text-align: right;
}
.wool-type04 .content-box{
  justify-content: center;
  gap: 2%;
}
.wool-type04 .box01{
  width: calc(500 / 1280 * 100%);
  margin-top: 11%;
}
.wool-type04 .box02{
  width: calc(500 / 1280 * 100%);
  margin-top: 22%;
}
/*down-type01----------------------*/
.down-type01 .title-box{
  position: absolute;
  top: 0%;
  left: 6%;
  width: calc(518.0132 / 1280 * 100vw);
}
.down-type01 .title-box .number{
  margin: 0 auto 0 0;
}
.down-type01 .title-box .item-name{
  margin: 5% 0 0 auto;
  text-align: right;
}
.down-type01 .content-box{
  position: relative;
  justify-content: center;
  right: 3%;
}
.down-type01 .box01{
  width: calc(580 / 1280 * 100%);
  margin-top: 7%;
}
.down-type01 .box02{
  width: calc(500 / 1280 * 100%);
  margin: 28% -3% 0 3%;
  z-index: 2;
}
.down-type01 .text-area{
  margin-left: 21%;
}
.down-type01 .link{
  margin-right: 6%;
}
/*down-type02----------------------*/
.down-type02 .title-box{
  position: absolute;
  top: 0%;
  right: 11%;
  width: calc(505.6763 / 1280 * 100%);
}
.down-type02 .title-box .number{
  margin: 0 0 0 auto;
}
.down-type02 .title-box .item-name{
  margin: -2% auto 0 0;
}
.down-type02 .content-box{
  justify-content: flex-end;
}
.down-type02 .box01{
  width: calc(500 / 1280 * 100%);
  margin: 30% auto 0 3%;
}
.down-type02 .box02{
  width: calc(602 / 1280 * 100%);
  margin-top: 6%;
}
.down-type02 .text-area{
  margin-right: 10%;
}
/*down-type03----------------------*/
.down-type03 .title-box{
  position: absolute;
  top: 0.5%;
  left: 7%;
  width: calc(462.8403 / 1280 * 100%);
}
.down-type03 .title-box .item-name{
  margin: 9% auto 0 0;
  text-align: right;
}
.down-type03 .content-box{
  justify-content: flex-start;
}
.down-type03 .box01{
  width: calc(400 / 1280 * 100%);
  margin: 38% 3% 0 6%;
}
.down-type03 .box02{
  width: calc(640 / 1280 * 100%);
}
.down-type03 .text-area{
  margin-left: 21%;
}
.down-type03 .link{
  margin-right: 0;
}
/* styling-item */
.styling-item{
  margin-top: 5%;
}
.styling-item .title{
  text-align: center;
  font-family: var(--font-ButlerRegular);
  font-size: calc(40 / 1280 * 100vw);
  animation-timing-function: ease-in;
  animation-duration: 1.2s;
}
.styling-item .list{
  display: flex;
  justify-content: center;
  margin-top: 2%;
}
.styling-item .item{
  position: relative;
  width: calc(160 / 1280 * 100%);
  margin: 0 0.75%;
}
.styling-item .item .image{
  border-radius: 20px;
}
.styling-item .main-item .image{
  border-radius: 20px;
  border: 2px solid;
}
.wool .styling-item .main-item .image{
  border-color: var(--color-wool);
}
.down .styling-item .main-item .image{
  border-color: var(--color-down);
}
.styling-item .main-item::after{
  position: absolute;
  top: -8%;
  left: -12%;
  width: calc(60 / 160 * 100%);
}
.wool .styling-item .main-item::after{
  content: url(../img/wool-stylingitem-icon.svg);
}
.down .styling-item .main-item::after{
  content: url(../img/down-stylingitem-icon.svg);
} 
.styling-item .link{
  width: 100%;
  margin-top: 0.75em;
}
.styling-item .link .cart{
  flex-direction: column;
  align-items: flex-start;
}
.styling-item .link .cart__price{
  justify-content: space-between;
  width: 98%;
  margin-top: 0.3em;
}
.styling-item .link .cart__price--yen{
  padding-left: 0;
}
.styling-item .link .link__other{
  margin-top: 0;
  padding-top: 0;
  border: none;
}
/*slidenav-wrapper--------------------------*/
.slidenav-wrapper {
  position: relative;
  margin-top: 8%;
}
.slidenav-wrapper .title {
  position: relative;
  width: calc(523.0925 / 1280 * 100%);
  margin: 0 auto 1%;
  animation-delay: 0s;
}
.slidenav{
  width: calc(920 / 1280 * 100%);
  margin-inline: auto;
}
.slidenav [dir='rtl'] .slick-slide{
  float: left;
}
.slidenav .list .item{
  overflow: hidden;
  padding: 0 10px;
  transition: 0.4s ease;
}
.slidenav .list:hover .item{
  opacity: 0.5;
}
.slidenav .list .item:hover{
  opacity: 1;
}
.slidenav .slick-slide a{
  display: block;
  overflow: hidden;
}
.slidenav .slick-slide .image{
  transition: 0.4s ease;
}
.slidenav .list .item:hover .image{
  scale: 1.1;
}
/* アーカイブ------------------------- */
.archive{
  margin-top: 6%;
}
.archive .title{
  text-align: center;
  font-family: var(--font-ButlerRegular);
  font-size: calc(27 / 1280 * 100vw);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.archive .banner{
  width: calc(350 / 1280 * 100%);
  margin: 1% auto 0;
}
/*banner-staff*/
.banner-staff {
  margin: 6% auto 0;
}
.banner-staff .text{
  text-align: center;
  font-family: var(--font-Didot);
  font-size: calc(17 / 1280 * 100vw);
  line-height: 1.5;
}
/*banner*/
.banner {
  width: calc(603 / 1280 * 100%);
  margin: 3% auto 0;
}
.banner-item {
  display: block;
  margin-top: 3%;
  border: 1px solid #fff;
  transition: 0.6s ease-in-out;
}
.banner-item:hover {
  background: rgb(255 255 2555 / 0.1);
}
.banner-item img{
  width: 100%;
}
/*footer*/
.footer {
  padding-bottom: 2%;
  text-align: center;
}
.footer-sns {
  display: block;
  width: calc(30 / 1280 * 100%);
  min-width: 30px;
  margin: 4% auto 0;
}
.footer-logo {
  display: block;
  width: calc(102 / 1280 * 100%);
  margin: 3% auto 0;
}
.footer-logo .image{
  width: 100%;
}
.footer-copyright {
  font-family: "Helvetica", serif;
  font-size: calc(8 / 1280 * 100vw);
  letter-spacing: 0.02em;
  margin: 34px 0 0;
}
/*pagetop*/
.pagetop {
  position: fixed;
  right: 1vw;
  bottom: 30px;
  width: calc(98.4614 / 1280 * 100%);
  z-index: 99;
}
.pagetop .image{
  width: 100%;
}
/*footnav*/
.stepnav {
  position: fixed;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: calc(100 / 1280 * 100%);
}
.stepnav .item:nth-child(2){
  margin-top: 16%;
}
.stepnav .item .image{
  border-radius: 20px;
  border: 2px solid transparent;
}
.stepnav .item:nth-child(1):hover .image{
  border-color: var(--color-wool);
}
.stepnav .item:nth-child(2):hover .image{
  border-color: var(--color-down);
}
.stepnav .text{
  margin-top: 8%;
  text-align: center;
  font-family: var(--font-ButlerRegular);
  font-size: calc(14 / 1280* 100vw);
  letter-spacing: 0;
}

@media (max-width: 768px) {
  /* link------------------------ */
  .link .cart__title {
    font-size: calc(15.8105 / 375 * 100vw);
  }
  .link .cart__price,
  .link .cart__price--yen--size{
    font-size: calc(15.8105 / 375 * 100vw);
  }
  .link .cart__price--yen.size-l::before, .link .cart__price--yen.size-s::before{
    width: 3.8vw;
  }
  .link .cart__price--yen .tax{
    font-size: calc(9.0346 / 375 * 100vw);
  }
  .link .cart__price--btn {
    margin-left: 0.5em;
    padding: 0.5em 0.75em;
    font-size: calc(10.6904 / 375 * 100vw);
  }
  .link .link__other {
    margin-top: 0.75em;
    padding-top: 0.75em;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /* header------------------------ */
  .header{
    aspect-ratio: 375 / 667;
  }
  .header .photo01{
    top: 41%;
    width: calc(166 / 375 * 100%);
    z-index: 2;
  }
  .header .photo02{
    bottom: auto;
    top: 10%;
    left: 13%;
    width: calc(110 / 375 * 100%);
  }
  .header .photo03{
    top: 0;
    right: 3%;
    width: calc(174  / 375 * 100%);
    animation-delay: 0.3s;
  }
  .header .photo04{
    width: calc(252 / 375 * 100%);
    animation-delay: 0.5s;
  }
  .header .mv01{
    top: 5%;
    bottom: auto;
    width: calc(280 / 375 * 100%);
  }
  .header .mv01 .image{
    animation-delay: 1.5s;
  }
  .header .mv02{
    right: 12%;
    width: calc(136 / 375 * 100%);
  }
  .header .mv03{
    bottom: 12%;
    width: calc(138 / 375 * 100%);
    z-index: 3;
  }
  .header .title01{
    top: 13%;
    right: 3.5%;
    width: calc(63.0373 / 375* 100%);
    z-index: 3;
    animation-delay: 2s;
  }
  .header .title02{
    top: 59%;
    left: 5%;
    width: calc(323.9658 / 375 * 100%);
    z-index: 3;
  }
  .header .heart{
    top: 70.5%;
    left: 61.5%;
    width: calc(49.8389 / 375 * 100%);
    z-index: 3;
  }
  .header .text{
    bottom: 4%;
    left: 50%;
    translate: -50% 0;
    width: calc(297.5269 / 375 * 100%);
    z-index: 3;
  }

  .header-logo {
    display: none;
  }
  /* lead---------------------------- */
  .lead{
    margin-top: 12%;
  }
  .lead-logo {
    display: block;
    width: calc(66 / 375 * 100%);
    margin: 0 auto;
  }
  .lead .title {
    margin-top: 14%;
    padding: 0;
    font-size: calc(26 / 375 * 100vw);
    line-height: 1.6;
  }
  .lead .heart{
    bottom: 0.25em;
    right: 24%;
    width: calc(23.2809 / 375 * 100vw);
  }
  .lead-text {
    margin-top: 6%;
    font-size: calc(15 / 375 * 100vw);
  }
  /* mainnav---------------------------------- */
  .mainnav{
    margin-top: 12%;
  }
  .mainnav .list .item{
    width: calc(140 / 375 * 100%);
  }
  .mainnav .list .item .title{
    font-size: calc(18 / 375 * 100vw);
  }
  .mainnav .list .item .subtitle{
    font-size: calc(12 / 375 * 100vw);
  }
  /* style-box---------------- */
  .style-box{
    width: 100%;
    margin-top: 20%;
  }
  .style-box .title-box{
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
  }
  .style-box .title-box .number{
    width: calc(136.9014 / 375 * 100%);
  }
  .wool-type01 .title-box .number,
  .wool-type03 .title-box .number,
  .down-type02 .title-box .number{
    margin-right: 6%;
  }
  .wool-type02 .title-box .number,
  .wool-type04 .title-box .number,
  .down-type01 .title-box .number,
  .down-type03 .title-box .number{
    margin-left: 6%;
  }
  .style-box .title-box .item-name{
    font-size: calc(40 / 375 * 100vw);
  }
  .wool-type01 .title-box .item-name,
  .wool-type03 .title-box .item-name,
  .down-type02 .title-box .item-name{
    margin: 3% auto 0 6%;
  }
  .wool-type02 .title-box .item-name,
  .wool-type04 .title-box .item-name,
  .down-type01 .title-box .item-name,
  .down-type03 .title-box .item-name{
    margin: 3% 6% 0 auto;
  }
  .style-box .content-box{
    right: auto;
    left: auto;
    flex-direction: column;
  }
  div[class*="wool-type"] .box01,
  div[class*="wool-type"] .box02,
  div[class*="down-type"] .box01,
  div[class*="down-type"] .box02{
    display: contents;
    width: 100%;
    margin-inline: auto;
  }
  .style-box .text-box,
  .style-box .text-area{
    display: contents;
  }
  .style-box .photo02{
    margin-top: 6%;
    order: 1;
  }
  .style-box .photo01{
    order: 3;
  }
  .style-box .text-area .title{
    width: calc(320 / 375 * 100%);
    margin: 8% auto;
    line-height: 2;
    order: 2;
  }
  .style-box .text-area .text{
    width: calc(279.2803 / 375 * 100%);
    margin: 10% auto 0;
    font-size: calc(15 / 375 * 100vw);
    order: 4;
  }
  .style-box .link{
    width: calc(315.4239 / 375 * 100%);
    margin: 14% auto 0;
    order: 5;
  }
  /* wool-type01---------------------------- */
  .wool-type01 .photo01{
    width: calc(270 / 375 * 100%);
    margin-right: 7%;
    margin-left: auto;
  }
  /* wool-type02---------------------------- */
  .wool-type02 .photo01{
    width: calc(290 / 375 * 100%);
  } 
  .wool-type02 .photo02{
    width: calc(334 / 375 * 100%);
    margin-right: 0;
    margin-left: auto;
  } 
  /* wool-type03---------------------------- */
  .wool-type03 .photo01{
    margin-top: 6%;
    order: 1;
  }
  .wool-type03 .photo02{
    width: calc(300 / 375 * 100%);
    margin: 0 0 0 auto;
    order: 3;
  }
  /* wool-type04---------------------------- */
  .wool-type04 .photo01{
    width: calc(334 / 375 * 100%);
    margin: 6% auto 0;
    order: 1;
  }
  .wool-type04 .photo02{
    width: calc(320 / 375 * 100%);
    order: 3;
  }
  /* down-type01---------------------------- */
  .down-type01 .photo01{
    width: calc(334 / 375 * 100%);
    margin: 6% 0 0 auto;
    order: 1;
  }
  .down-type01 .photo02{
    width: calc(300 / 375 * 100%);
    order: 3;
  }
  /* down-type02---------------------------- */
  .down-type02 .photo01{
    width: calc(300 / 375 * 100%);
    margin-right: 0;
    margin-left: auto;
  }
  /* down-type03---------------------------- */
  .down-type03 .photo01{
    width: calc(270 / 375 * 100%);
    margin-inline: auto;
  }
  /* styling-item-------------------------- */
  .styling-item{
    margin-top: 20%;
  }
  .styling-item .title{
    font-size: calc(30 / 375 * 100vw);
  }
  .styling-item .item{
    margin: 0 auto;
  }
  .styling-item .slider02{
    position: relative;
    width: 100%;
    margin-top: 4%;
    padding-bottom: 10%;
  }
  .styling-item .slider02 .slide .inner{
    padding: 10px 5px;
  }
  .styling-item .slider02 .slide-dots{
    position: absolute;
    bottom: 0;
    display: flex;
  }
  .styling-item .slider02 .slide-dots li{
    position: relative;
    display: inline-block;
    width: 2vw;
    height: 2vw;
    margin: 0 10px;
    border: 1px solid #fff;
    border-radius: 50%;
  }
  .styling-item .slider02 .slide-dots li button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-indent: -9999px;
    background: none;
    border: none;
    outline: none;
    padding: 0 3vw;
  }
  .styling-item .slider02 .slide-dots .slick-active{
    background: #fff;
  }
  .styling-item .slider02 .slick-track{
    padding-top: 8%;
  }
  .styling-item .item .image{
    width: 90%;
    margin: 0 auto;
  }
  .styling-item .main-item::after{
    top: -4%;
    left: 0%;
    width: 32%;
  }
  .styling-item .link{
    width: 80%;
    margin: 0.75em auto 0;
  }
  /* slidenav-------------------------------- */
  .slidenav-wrapper{
    width: 100%;
    padding-top: 16%;
  }
  .slidenav-wrapper .title{
    width: calc(248.8041 / 375 * 100%);
    margin: 0 auto;
  }
  .slidenav{
    width: 100%;
    margin: 5% 0;
  }
  .slidenav .list .item{
    padding: 0 0.2%;
  }
  /* archive--------------------------- */
  .archive {
    margin-top: 20%;
  }
  .archive .title{
    font-size: calc(27 / 375 * 100vw);
  }
  .archive .banner{
    margin-top: 3%;
    width: calc(294 / 375 * 100%);
  }
  /* bottom-block------------------ */
  .banner-staff {
    margin-top: 14%;
  }
  .banner-staff .text{
    font-size: calc(15 / 375 * 100vw);
  }
  .banner {
    width: 80%;
    margin-top: 10%;
  }
  .banner .title{
    width: calc(368 / 1280 * 100%);
  }
  .banner-item {
    margin-top: 6%;
  }
  .footer {
    padding-bottom: 18%;
  }
  .footer-sns {
    width: calc(35.1563 / 375 * 100%);
    margin-top: 10%;
  }
  .footer-logo {
    width: calc(119.5312 / 375 * 100%);
    margin-top: 6%;
  }
  .footer-copyright{
    font-size: calc(8.2032 / 375 * 100vw);
  }
  /* stepnav-------------------- */
  .stepnav{
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    translate: 0 0;
    width: 100%;
    background: #907C67;
    z-index: 999;
  }
  .stepnav .list{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
  }
  .stepnav .item{
    position: relative;
  }
  .stepnav .item:nth-child(1),
  .stepnav .item:nth-child(2){
    width: calc(165 / 375 * 100%);
  }
  .stepnav .item:nth-child(3){
    width: calc(45 / 375 * 100%);
  }
  .stepnav .item:nth-child(2){
    position: relative;
    margin-top: 0;
  }
  .stepnav .item:nth-child(2)::before{
    content: "";
    display: block;
    width: 1px;
    height: 60%;
    background: #fff;
    position: absolute;
    top: 25%;
    left: 0;
  }
  .stepnav .item a{
    display: block;
  }
  .stepnav .item a::after{
    width: calc(24.8031 / 375 * 100vw);
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    right: 7%;
    opacity: 0;
  }
  .stepnav .item:nth-child(1) a::after{    
    content: url(../img/footnav-heart-wool.svg);
  }
  .stepnav .item:nth-child(2) a::after{    
    content: url(../img/footnav-heart-down.svg);
  }
  .stepnav .item a.current::after{
    opacity: 1;
  }
  .stepnav .item .image{
    width: 100%;
    border-radius: 0;
    border: none;
  }

}