*,*::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,h1,h2,h3,h4{
  font-family: yu-mincho-pr6n, serif;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.8;
}
body{
  position: relative;
  -webkit-overflow-scrolling: touch;
}
ul{
  padding: 0;
  margin: 0 auto;
}
li{
  list-style: none;
}
a{
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
}
img{
  width: 100%;
}

.pc{
  display: block;
}
.sp{
  display: none;
}
.flex-box{
  display: flex;
  justify-content: space-between;
}

/* アニメーション */
@keyframes sdl{
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.fadeinDown{
  animation: fadeinDown;
  animation-duration: 1.4s;
  animation-timing-function: ease-out;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

.mvZoom01{
  animation: mvZoom01;
  animation-duration: 1.8s;
  animation-timing-function: ease-in-out;
  animation-delay: 2.1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes mvZoom01{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.mvZoom02{
  animation: mvZoom02;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-delay: 2.1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes mvZoom02{
  0%{
    opacity: 0;
    filter: blur(15px);
  }
  100%{
    opacity: 1;
    filter: blur(0);
  }
}

.zoom{
  opacity: 0;
  transition-duration: 2.75s;
}
.zoom.active{
  opacity: 1;
}
.fadeDown{
  opacity: 0;
}
.fadeDown.active{
  animation: fadeinDown;
  animation-duration: 1.4s;
  animation-timing-function: ease-out;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeinDown{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    -ms-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeinUp{
  animation: fadeinUp;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 1.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp{
  opacity: 0;
}
.fadeUp.active{
  animation: fadeinUp;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 2;
}
@keyframes fadeinUp{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 80px, 0);
    -ms-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeUp02{
  opacity: 0;
}
.fadeUp02.active{
  animation: fadeinUp;
  animation-duration: 1.4s;
  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;
  z-index: 2;
}
@keyframes fadeinUp02{
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.mv_fadeinLeft{
  animation: mv_fadeinLeft;
  animation-duration: 1.4s;
  animation-timing-function: ease-out;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes mv_fadeinLeft{
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeLeft{
  will-change: transform;
  opacity: 0;
}
.fadeLeft.active{
  animation: fadeinLeft;
  animation-duration: 1.2s;
  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 fadeinLeft{
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


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

.fadeRight{
  will-change: transform;
  opacity: 0;
}
.fadeRight.active{
  animation: fadeinRight;
  animation-duration: 1.4s;
  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;
  z-index: 1;
}


@keyframes fadeinRight{
  0% {
    opacity: 0;
    transform: translate(50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* header */
header{
  position: relative;
}
header .mv_photo{
  display: flex;
  width: 100%;
}
header .photo-box{
  display: block;
  overflow: hidden;
  width: 33.33333%;
}
header .logo{
  position: absolute;
  top: 1vw;
  right: 2vw;
  width: 4.4%;
}
header .text01{
  position: absolute;
  top: 66%;
  left: 50%;
  transform: translateY(-66%) translateX(-50%);
  -webkit- transform: translateY(-66%) translateX(-50%);
  width: 32%;
  margin: auto;
  z-index: 2;
}
header .text02{
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translateY(-85%) translateX(-50%);
  -webkit- transform: translateY(-85%) translateX(-50%);
  width: 61%;
  margin: auto;
  z-index: 2;
}
header .text03{
  position: absolute;
  top: 92%;
  left: 50%;
  transform: translateY(-92%) translateX(-50%);
  -webkit- transform: translateY(-92%) translateX(-50%);
  width: 24%;
  margin: auto;
  z-index: 2;
}

/* lead */
.lead{
  position: relative;
  margin: 4% auto 10px;
  padding-bottom: 120px;
  text-align: center;
}
.lead::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: rgba(82, 46, 11, .2);
  z-index: 1;
}
.lead::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #522e0b;
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
  z-index: 1;
}
.lead p{
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.1rem;
  line-height: 2.4;
  font-family: shippori-mincho, sans-serif;
  color: #522e0b;
}
.lead .main_text{
  font-size: clamp(24px,1.5vw,26px);
  letter-spacing: 0.2rem;
  line-height: 3;
}
/* メインナビ */
 .main_nav{
  display: flex;
  justify-content: space-between;
  width: 60%;
  max-width: 1400px;
  margin: 0 auto 8%;
 }
 .main_nav .nav{
   width: 33%;
 }
 .main_nav img{
   filter: drop-shadow(2px 2px 4px rgb(0 0 0 / 20%));
 }
 .main_nav a{
   transition: filter 1s ease;
 }
 .main_nav a:hover{
   filter: opacity(90%) sepia(20%);
 }
/* メインタイトル */
.main-title{
  width: 80%;
  max-width: 1600px;
  margin: 0 auto 2%;
  text-align: center;
}
.main-title .text{
  font-size: clamp(13px, 1.3vw, 33px);
  letter-spacing: 0.2rem;
  font-family: cormorant-garamond, serif;
  font-weight: bold;
}
.main-title .item-name{
  font-size: clamp(56px, 5.3vw, 95px);
  letter-spacing: 0.6rem;
  font-family: cormorant-garamond, serif;
}

/* item_box共通 */
.item_box{
  position: relative;
  width: 80%;
  max-width: 1600px;
  margin: 0 auto 12%;
}
.item_box .photo_box,
.item_box .box01, .item_box .box02{
  position: relative;
  width: 49%;
}
.item_box .title{
  width: auto;
  height: clamp(41px,4.7vw,72px);
  margin: 0 auto 2.5rem;
}
.item_box .tips{
  width: auto;
  height: clamp(22px,2.9vw,33px);
  margin: 0 auto 2% 0;
}
.item_box .text{
  color: #522e0b;
  text-align: justify;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.08rem;
  line-height: 2;
}
/* #skirt */
#skirt .main-title .text{
  border-top: 3px solid #8b4b5d;
  border-bottom: 1px solid #8b4b5d;
  color: #8b4b5d;
}
#skirt .main-title .item-name {
    color: #8b4b5d;
}
#skirt .main .btn{
  background: #8b4b5d;
}
/* #skirt01 */
#skirt01 .box02{
  margin-top: 9%;
}
#skirt01 .photo01{
  margin-bottom: 6%;
}
#skirt01 .photo02{
  margin-bottom: 1.5rem;
  animation-delay: 1s;
}
#skirt01 .text_area{
  width: 80%;
  margin: auto;
}
#skirt01 .link-box{
  width: 80%;
  margin: auto;
}
/* スカート02 */
#skirt02 .photo_box{
  margin: 0 auto 6%;
}
#skirt02 ul{
  width: 74%;
}
#skirt02 .link-box{
  width: 80%;
  margin: calc(2rem + 3%) auto 0;
  animation-delay: 1s;
}
/* スカート03 */
#skirt03 .photo_box{
  width: 100%;
  margin: 0 auto 3%;
}
#skirt03 .photo{
  width: 97%;
  margin: auto;
}
#skirt03 ul{
  width: 74%;
}
#skirt03 .link-box{
  width: 80%;
  margin: calc(2rem + 3%) auto 0;
  animation-delay: 1s;
}
/* スカート04 */
#skirt04 .box02{
  padding: 6% 10% 0 5%;
}
#skirt04 .title{
  height: clamp(90px,7.7vw,127px);
  margin: 0 auto 26% 0;
}
#skirt04 .text{
  margin-bottom: 10%;
}
/* ニット */
#knit .main-title .text{
  border-top: 3px solid #966026;
  border-bottom: 1px solid #966026;
  color: #966026;
}
#knit .main-title .item-name {
    color: #966026;
}
#knit .main .btn{
  background: #966026;
}
/* ニット01 */
#knit01 .box02{
  margin-top: 9%;
}
#knit01 .photo01{
  margin-bottom: 6%;
}
#knit01 .photo02{
  margin-bottom: 1.5rem;
}
#knit01 .text_area{
  width: 80%;
  margin: auto;
}
#knit01 .link-box{
  width: 80%;
  margin: auto;
}
/* ニット02 */
#knit02 .box01 .photo_area{
  position: relative;
  margin-bottom: 6%;
  z-index: 5;
}
#knit02 .box02{
  margin-left: -15%;
}
#knit02 .box02 .photo02{
  margin: 0 auto 1.5rem -10%;
}
#knit02 .title{
  height: clamp(90px,13.7vw,186px);
  margin: 34% auto 32%;
}
#knit02 .text_area{
  width: 80%;
  margin: 0 10% 0 auto;
}
#knit02 .link-box{
  width: 80%;
  margin: auto;
}
/* ニット03 */
#knit03 .title{
  margin: 8% auto 13%;
}
#knit03 .photo01{
  display: block;
  margin-bottom: 6%;
}
#knit03 .photo02{
  margin-bottom: 1.5rem;
}
#knit03 .text_area{
  width: 80%;
  margin: auto;
}
#knit03 .link-box{
  width: 80%;
  margin: auto;
}
/* ニット04 */
#knit04 .title{
  margin: 10% auto 14%;
}
#knit04 .photo01{
  margin-bottom: 6%;
}
#knit04 .photo02{
  display: block;
  margin-bottom: 3%;
}
#knit04 .text_area{
  width: 80%;
  margin: auto;
}
#knit04 .link-box{
  width: 80%;
  margin: auto;
}
/* ニット05 */
#knit05 .photo_box{
  margin: 0 auto 6%;
}
#knit05 ul{
  width: 74%;
}
#knit05 .link-box{
  width: 80%;
  margin: calc(2rem + 3%) auto 0;
  animation-delay: 1s;
}
/* アウター */
#outer .main-title .text{
  border-top: 3px solid #656756;
  border-bottom: 1px solid #656756;
  color: #656756;
}
#outer .main-title .item-name {
    color: #656756;
}
#outer .main .btn{
  background: #656756;
}
/* アウター01 */
#outer01 .box02{
  margin-top: 4%;
}
#outer01 .photo01{
  margin-bottom: 6%;
}
#outer01 .photo02{
  margin-bottom: 1.5rem;
  animation-delay: 1s;
}
#outer01 .title{
  height: clamp(71px,8.7vw,118px);
  margin: 0 auto 9% 6%;
}
#outer01 .text_area{
  width: 80%;
  margin: auto;
}
#outer01 .link-box{
  width: 80%;
  margin: auto;
}
/* アウター02 */
#outer02 .box01 .photo_area{
  position: relative;
  margin-bottom: 6%;
  z-index: 5;
}
#outer02 .box02{
  margin-left: -15%;
}
#outer02 .box02 .photo02{
  margin: 0 auto 1.5rem -10%;
}
#outer02 .title{
  height: clamp(90px,13.7vw,192px);
  margin: 38% auto 33% 19%;
}
#outer02 .text_area{
  width: 80%;
  margin: 0 10% 0 auto;
}
#outer02 .link-box{
  width: 80%;
  margin: auto;
}
/* アウター03 */
#outer03{
  width: 66%;
  margin: 0 auto 12% 14%;
}
#outer03 .box01{
  width: 100%;
}
#outer03 .box02{
  width: 104%;
}
#outer03 .photo{
  margin: 0 auto 6% 6%;
}
#outer03 .title{
  height: clamp(90px,13.7vw,186px);
  margin: 26% auto 0;
}
#outer03 .text_area{
  width: 100%;
  margin: 0 10% 0 auto;
}
#outer03 .link-box{
  width: 90%;
  margin: calc(2rem + 1.4%) auto 0;
  animation-delay: 1s;
}

/* カート */
.link-box .main{
  padding-bottom: 3%;
  border-bottom: 1px solid #522e0b;
}
.link-box .mix{
  padding-top: 3%;
}
.link-box p{
  text-align: left;
  line-height: 1.8;
}
.cart-btm{
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-in-out;
}
.cart-title{
  position: relative;
  width: 100%;
  color: #522e0b;
  letter-spacing: 0.1rem;
  font-size: 0.95rem;
  font-family: yu-mincho-pr6n, serif;
  text-transform: uppercase;
}
.cart-yen{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #522e0b;
  font-size: 1.05rem;
  letter-spacing: 0.06rem;
  font-family: "YuMincho", 'Yu Mincho', serif;
  white-space: nowrap;
}
.cart-yen img{
  width: clamp(12px, 1vw, 21px);
  margin: 0 0.5rem 1px 0;
}
.cart-yen.price img{
  margin-right: 1.075rem;
}
.cart-yen span{
  font-size: 0.7rem;
  margin: 0 0 -4px 5px;
}
.cart-btm .btn{
  padding: 1.2% 4% 1.3%;
  margin: 0 0 0 10px;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1em;
  font-family: "Arial", "メイリオ", Arial, sans-serif;
}
.mix .cart-btm .btn{
  box-sizing: border-box;
  border: 1px solid #808080;
  background: #fff;
  color: #808080;
}
.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;
  font-family: "Arial",sans-serif;
  letter-spacing: 0.02rem;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: transform;
}
.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;
}
.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;
  stroke-color: transparent;
}
.cart-btm:hover .btn-arrow img {
  opacity: 1;
  right: -1rem;
}

.all_btn{
  margin-bottom: 4%;
  text-align: center;
}
.all_btn a{
  position: relative;
  display: inline-block;
  margin: auto;
  padding: 1.5em 12em;
  background: #000;
  color: #fff;
  font-family: "YuMincho", 'Yu Mincho', serif;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  transition: 0.6s ease-in-out;
}
.all_btn a::before{
  content: url(../img/btn_arrow.svg);
  display: block;
  position: absolute;
  top: 1.25em;
  right: 2em;
  width: 3em;
  transition: 0.6s ease-in-out;
}
.all_btn a:hover{
  opacity: 0.8;
}
.all_btn a:hover::before{
  right: 1em;
}

/* credit */
.credit{
  margin-bottom: 5%;
}
.credit p{
  text-align: center;
  font-size: 14px;
  font-family: 'EB Garamond', serif;
}

/*banner-block*/
.banner-block{
  width: 100%;
  max-width: 960px;
  margin: 0 auto 5%;
  position: relative;
  z-index: 10;
}
.c-btn01{
  width: 70%;
  margin: 0 auto 2% auto;
  border: 1px solid #ccc;
  display: block;
}
.c-btn01:hover{
  border: 1px solid #000;
}

#sidenav{
  display: none;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7vw;
  max-width: 120px;
  margin-top: -1vw;
  z-index: 99;
}
#sidenav > div{
  filter: drop-shadow(0 1px 2px rgb(0 0 0 / 20%));
}
#sidenav > div:not(:last-child){
  margin-bottom: 0.5vw;
}
#sidenav a{
  transition: filter 1s ease;
}
#sidenav a:hover{
  filter: opacity(80%) sepia(10%);
}

#pagetop{
  position: fixed;
  right: 15px;
  bottom: 20px;
  width: 35px;
  z-index: 99;
}

.end-box{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 4% auto;
}
.end-box .txt{
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 2.5em;
  text-align: center;
  color: #595757;
  font-family: 'EB Garamond', serif;
}

.footer {
  color: #000;
  letter-spacing: 0.3em;
  padding: 0 0 2% 0;
  position: relative;
  text-align: center;
}
.footer .insta-banner{
  display: block;
  width: 16%;
  min-width: 260px;
  border: 1px solid #ccc;
  margin: 0 auto 3% auto;
  transition: .3s;
}
.footer .insta-banner:hover{
  border: 1px solid #000;
  transition: .3s;
}
.footer_sns {
  margin: 26px 0 0;
}
.footer_sns .instagram{
  display: block;
  width: 6%;
  min-width: 80px;
  margin: 0 auto 40px;
}
.f-ow {
  width: 120px;
  margin: 25px auto 0 auto;
}
.footer_copyright {
  font-family: "Helvetica",serif;
  font-size: 10px;
  letter-spacing: 0.02em;
  margin: 34px 0 0;
}

@media screen and (min-width:1040px) and (max-width:1400px){
  body, a, p, h1, h2, h3, h4{
    font-size: 14px;
  }
  .item_box{
    width: 92%;
  }
  .cart-yen{
    font-size: 1.15vw;
  }
  .cart-yen span{
    font-size: 9px;
    margin-bottom: 0;
  }
  .cart-btm .btn{
    font-size: 0.9vw;
  }
}
@media screen and (min-width:768px) and (max-width:1039px){
  .item_box{
    width: 90%;
  }
  .item_box .textarea .text, .cart-title{
    font-size: 1.2vw;
  }
  .cart-yen{
    font-size: 1.2vw;
  }
  .cart-yen span{
    margin-bottom: 0;
    font-size: 9px;
  }
  .cart-yen.price img{
    margin-right: 1rem;
  }
  .cart-btm .btn{
    font-size: 0.9vw;
  }
}
@media screen and (max-width:767px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  .flex-box{
    flex-direction: column;
  }

  /* アニメーション */
  .mvZoom01{
    animation-duration:  1.6s;
    animation-delay: 0.6s;
  }
  .mvZoom02{
    animation-duration:  2.8s;
    animation-delay: 0.4s;
  }
  .fadein-mv{
    animation: fadeIn-mv 2.4s 0s 1 normal;
    -webkit-animation: fadeIn-mv 2.4s 0s 1 normal;
    transition: ease-out;
  }
  @keyframes fadeIn-mv{
    0% {
      opacity: 0;
      transform: scale(1.06);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  .fadeLeft.active,
  .fadeRight.active,
  #skirt01 .photo02,
  #skirt02 .link-box,
  #skirt03 .link-box,
  #knit05 .link-box,
  #outer01 .photo02,
  #outer03 .link-box{
    animation-delay: 0s;
  }

  header{
    margin-bottom: 9%;
  }
  header .swiper-container{
    display: block;
    width: 100%;
    margin: auto;
    overflow: hidden;
  }
  header .text01{
    top: 68%;
    transform: translateY(-68%) translateX(-50%);
    -webkit- transform: translateY(-68%) translateX(-50%);
    width: 60%;
  }
  header .text02{
    top: 86%;
    transform: translateY(-86%) translateX(-50%);
    -webkit- transform: translateY(-86%) translateX(-50%);
    width: 80%;
  }
  header .text03{
    width: 58%;
  }

  .lead{
    margin: 0 auto 6%;
    padding-bottom: 25%;
  }
  .lead::before,
  .lead::after{
    height: 80px;
  }
  .lead .header_logo{
    width: 18%;
    margin: 16% auto 10%;
  }
  .lead .lead_text{
    width: 90%;
    margin: 0 auto 2%;
    text-align: center;
    font-size: 0.85rem;
    line-height: 2.2;
  }
  .lead .main_text{
    font-size: 1.3rem;
    line-height: 1.8;
  }
/* メインナビ   */
  .main_nav{
    width: 92%;
    margin-bottom: 16%;
  }
  .main_nav p {
    font-family: shippori-mincho, sans-serif;
    font-size: 3.2vw;
    margin: auto;
    text-align: center;
    color: #522e0b;
  }
  .main_nav .arrow{
    width: 4vw;
    margin: 2% auto;
  }
/* itemエリア   */
  .main-title{
    width: 92%;
    margin-bottom: 4%;
  }
  .main-title .item-name{
    font-size: 2.9rem;
  }
  .item_box{
    width: 100%;
    margin-bottom: 20%;
  }
  .item_box .photo_box, .item_box .box01, .item_box .box02{
    width: 100%;
  }
  .item_box .title{
    height: 10vw;
    margin: 0 auto 4%;
  }
  .item_box .tips{
    height: 6.5vw;
  }
  .item_box .text{
    margin-bottom: 12%;
  }

  /* スカート01 */
  #skirt01 .box02{
    margin-top: 0;
  }
  #skirt01 .photo01{
    margin-bottom: 0;
  }
  #skirt01 .photo02{
    margin-bottom: 6%;
  }
  /* スカート02 */
  #skirt02 .photo_box{
    width: 92%;
  }
  #skirt02 ul{
    width: 80%;
  }
  #skirt02 .link-box{
    width: 100%;
    margin: 0 auto;
  }
  /* スカート03 */
  #skirt03 .title{
    height: 26vw;
    margin: 0 auto 4% 10%;
  }
  #skirt03 .photo_box{
    margin: 0 auto 6%;
  }
  #skirt03 .photo{
    width: 100%;
  }
  #skirt03 .link-box {
    width: 100%;
    margin: 0 auto;
  }
/* スカート04 */
  #skirt04 .box01{
    margin-bottom: 6%;
  }
  #skirt04 .box02{
    padding: 0;
  }
  #skirt04 .title{
    height: 10vw;
    margin: 0 auto 4%;
  }
  #skirt04 .tips{
    margin-left: 10%;
  }
  #skirt04 .text{
    width: 80%;
    margin: 0 auto 12%;
  }
/* ニット01   */
  #knit01 .box02{
    margin-top: 0;
  }
  #knit01 .photo02{
    display: block;
    width: 78%;
    margin: 0 auto 6%;
  }
/* ニット02   */
  #knit02 .title{
    height: 29vw;
    margin: 0 auto 4% 10%;
  }
  #knit02 .photo01{
    display: block;
    width: 76%;
    margin: 0 0 6% auto;
  }
  #knit02 .photo02{
    display: block;
    width: 86%;
    margin: 0 auto 6% 0;
  }
/* ニット03   */
  #knit03 .photo02{
    margin-bottom: 6%;
  }
  #knit03 .photo01{
    width: 86%;
    margin: 0 auto 6% 0;
  }
  #knit03 .title{
    margin: 0 auto 4%;
  }
  /* ニット04 */
  #knit04 .title{
    margin: 0 auto 4%;
  }
  #knit04 .photo02{
    width: 86%;
    margin: 0 0 6% auto;
  }
/* ニット05 */
  #knit05 .title {
    height: 26vw;
    margin: 0 auto 4% 10%;
  }
  #knit05 .link-box{
    width: 100%;
    margin: 0 auto;
  }
/* アウター01   */
  #outer01 .title {
    height: 29vw;
    margin: 0 auto 4% 10%;
  }
  #outer01 .photo02{
    display: block;
    width: 86%;
    margin: 0 0 6% auto;
  }
/* アウター02  */
  #outer02 .title{
    height: 29vw;
    margin: 0 auto 4% 10%;
  }
  #outer02 .photo01{
    display: block;
    width: 76%;
    margin: 0 auto 6% 0;
  }
  #outer02 .photo02{
    display: block;
    width: 86%;
    margin: 0 0 6% auto;
  }
/* アウター03  */
  #outer03{
    width: 100%;
    margin: 0 auto 20%;
  }
  #outer03 .title{
    height: 29vw;
    margin: 0 auto 4% 10%;
  }
  #outer03 .photo{
    margin: 0 auto 6%;
  }
  #outer03 .box02{
    width: 80%;
    margin: auto;
  }
  #outer03 .link-box{
    width: 100%;
    margin: 0 auto;
  }

/* リンクエリア */
 .link-box{
    width: 80%;
    margin: auto;
  }
  .link-box .cart-btm{
    width: 100%;
    margin-bottom: 0.15rem;
  }
  .cart-title{
    font-size: 0.95rem;
    line-height: 2;
    letter-spacing: 0;
  }
  .cart-yen{
    font-size: 0.95rem;
    line-height: 1.2;
  }
  .cart-yen span{
    margin-left: 0.3em;
    margin-bottom: 0;
    font-size: 9px;
  }
  .cart-yen img{
    width: 0.95rem;
    margin: 0 0.5rem 0.15em;
  }
  .cart-yen.price img{
    margin-right: 1.07rem;
  }
  .cart-btm .btn{
    margin-left: 0.3em;
    font-size: 11px;
    line-height: 1em;
    padding: 1.2% 4% 1.3%;
    margin: 0 0 0 10px;
    font-family: "Arial", "メイリオ", Arial, sans-serif;
  }
  .link-line{
    margin: 4% 0;
  }

  .all_btn{
    width: 80%;
    margin: 30% auto 16%;
  }
  .all_btn a{
    width: 100%;
    padding: 2em 0;
    letter-spacing: 0.1rem;
  }
  .all_btn a::before{
    top: auto;
    bottom: 0.3em;
    right: 0.75em;
    width: 2em;
  }

  .credit{
    margin-bottom: 12%;
  }

  .banner-block{
    margin-bottom: 10%;
  }
  .c-btn01{
    width: 79%;
  }

  #footnav{
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    z-index: 10;
  }

  .footer{
    margin-bottom: 3%;
    padding-bottom: 20%;
  }
  .footer .insta-banner{
    width: 46%;
    min-width: inherit;
    margin-bottom: 6%;
  }
  .footer_sns .instagram{
    width: 20%;
    min-width: inherit;
  }
  .f-ow{
    width: 32%;
  }

}
