@charset "UTF-8";
:root{
  --font-notosans: "Noto Sans JP", sans-serif;
  --font-notoserif: "Noto Serif JP", serif;
  --font-ShipporiMincho: "Shippori Mincho B1", serif;
  --font-ZenKakuGothic: "Zen Kaku Gothic New", sans-serif;
  --font-Inter-V: "Inter-V", serif;
  --color-setup01: #6092ed;
  --color-setup02: #b0c8f6;
  --color-blouse01: #ea4e92;
  --color-blouse02: #f4a1c5;
  --color-blouse03: #bab8f2;
}

@font-face {
  src: url(../font/Inter-V.ttf) format(truetype);
  font-family: Inter-V;
  }

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
  color: #000;
  font-style: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
body {
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-anchor: none;
}
ul, ol {
  margin: 0;
  padding: 0;
}
ul[role=list], ol[role=list] {
  list-style: none;
}
li {
  list-style: none;
}
a{
  text-decoration: none;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img, picture {
  display: block;
  max-width: 100%;
  height: auto;
}

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;
  }
}
/*animation*/
.rotaate-fadein{
  opacity: 0;
}
.rotaate-fadein.active{
  animation-name: rotaate-fadein;
  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;
  transform-origin: top;
  opacity: 0;
}
@keyframes rotaate-fadein {
  0% {
    opacity: 0;
    transform: scale(1.2) rotate(4deg);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
}
}
.clippath-bottom {
  opacity: 0;
}
.clippath-bottom.active {
  animation-name: clippath-bottom;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes clippath-bottom {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
.clippath-left {
  opacity: 0;
}
.clippath-left.active {
  animation-name: clippath-left;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes clippath-left {
  0% {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
.clippath-center{
  opacity: 0;
}
.clippath-center.active{
  animation-name: clippath-center;
  animation-duration: 0.2s;
  animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation-delay: 0.1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes clippath-center {
  0% {
    opacity: 0;
    clip-path: inset(0 50% 0 50%);
  }
  10%{
    opacity: 0.8;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
.slide-left {
  opacity: 0;
  transform-origin: top left;
}
.slide-left.active {
  animation-name: slide-left;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
@keyframes slide-left {
  0% {
    opacity: 1;
    transform: translate(-10%, 0) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
.slide-right {
  opacity: 0;
  transform-origin: top right;
}
.slide-right.active {
  animation-name: slide-right;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
@keyframes slide-right {
  0% {
    opacity: 1;
    transform: translate(10%, 0) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
.slide-up {
  opacity: 0;
}
.slide-up.active {
  animation-name: slide-up;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(3%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-down {
  opacity: 0;
}
.slide-down.active {
  animation-name: slide-down;
  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;
  will-change: transform;
}
@keyframes slide-down {
  0% {
    opacity: 1;
    transform: translateY(-14%) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.fade {
  opacity: 0;
}
.fade.active {
  animation-name: fade;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.zoomin{
  transform: scale(1.3);
  transform-origin: top;
  opacity: 0;
}
.zoomin.active {
  animation-name: zoomin;
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
  
}
@keyframes zoomin {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  10%{
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* 共通*/
.pc {
  display: block;
}
.sp {
  display: none;
}
.image{
  width: 100%;
}
.flex-box{
  display: flex;
}
.flex-reverse{
  flex-direction: row-reverse;
}
.slide-box{
  overflow: hidden;
}
/*header*/
.header {
  position: relative;
  aspect-ratio: 1280 / 956;
  width: 100%;
  overflow: hidden;
}
.header .photo01{
  position: absolute;
  top: 0;
  left: 6%;
  width: calc(632 / 1280 * 100%);
}
.header .photo02{
  position: absolute;
  top: 9%;
  right: 6%;
  width: calc(560 / 1280 * 100%);
}
.header .title01{
  position: absolute;
  top: 28%;
  left: 0;
  width: 100%;
  animation-duration: 0.6s;
  animation-delay: 0.8s;
}
.header .title02{
  position: absolute;
  top: 56%;
  right: 6.8%;
  width: calc(567.1077 / 1280 * 100%);
  animation-duration: 0.6s;
  animation-delay: 1.4s;
}
.header .logo-box{
  position: absolute;
  top: 2%;
  right: 1%;
  width: calc(180 / 1280 * 100%);
  z-index: 3;
}
/* lead */
.lead{
  position: relative;
  justify-content: space-between;
  align-items: center;
  margin: 3% auto 0;
}
.lead .text{
  text-align: center;
  font-family: var(--font-ShipporiMincho);
  font-size: calc(18 / 1280 * 100vw);
  font-weight: 500;
  line-height: calc(26 / 18);
  letter-spacing: 0;
  white-space: nowrap;
}
.lead .text .linetext{
  display: block;
  font-size: calc(28 / 1280 * 100vw);
}
.lead .text .space{
  margin-left: -0.4em;
}
.lead .line01{
  position: absolute;
  top: 40%;
  left: 49%;
  translate: -50% 0;
  width: calc(162 / 1280 * 100%);
}
.lead .line02{
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: calc(445.5707 / 1280 * 100%);
}
/*link----------------------------------*/
.link {
  position: relative;
  width: calc(300 / 500 * 100%);
  margin: 8% auto 0;
}
.link .cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5em;
}
.link .cart__title,
.link .cart__brand {
  color: #000;
  font-family: var(--font-notosans);
  font-size: calc(12 / 1280 * 100vw);
  letter-spacing: 0.01rem;
  line-height: 1.3;
}
.link .size-area {
  margin-top: 0.5em;
  text-align: left;
  font-family: var(--font-notosans);
  font-size: calc(12 / 1280 * 100vw);
}
.link .cart__price-area {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.link .cart__price {
  display: flex;
  align-items: center;
  color: #000;
  font-family: var(--font-ShipporiMincho);
  font-size: calc(14 / 1280 * 100vw);
  letter-spacing: 0.06rem;
}
.link .cart__price.price-space{
  margin-right: 0.5em;
}
.link .cart__price--btn {
  position: relative;
  margin-left: 0.5em;
  padding: 0.3em 0.8em;
  border: 1px solid #8b8b8b;
  color: #8b8b8b;
  font-family: var(--font-Inter-V);
  font-size: calc(10 / 1280 * 100vw);
  letter-spacing: 0.02rem;
  line-height: 1;
}
.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__price--btn span {
  display: flex;
  transition: 0.4s ease-in;
}
.link .main{
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #8b8b8b;
}
.link .main .cart__price--btn{
  color: #fff;
}
.setup .link .main .cart__price--btn{
  background: var(--color-setup01);
  border: 1px solid var(--color-setup01);
}
.blouse .link .main .cart__price--btn{
  background: var(--color-blouse02);
  border: 1px solid var(--color-blouse02);
}

@media (hover: hover) and (pointer: fine){
  .link .cart:hover .cart__price--btn span {
    transform: translateX(-0.35em);
  }
  .link .cart:hover .cart__price--btn span img {
    opacity: 1;
    margin-right: -0.95em;
  }
}
.link .size-area a:hover {
  border-bottom: 1px solid #000;
}
/* section-wrapper------------------------ */
.main-wrapper{
  margin-top: 4%;
}
/* section-photo----------------- */
.section-photo{
  position: relative;
  margin-bottom: -1px;
}
.section-photo .title{
  position: absolute;
  top: 22%;
  left: 8%;
}
.setup .section-photo .title{
  width: calc(428.6558 / 1280 * 100%);
}
.blouse .section-photo .title{
  width: calc(422.8501 / 1280 * 100%);
}
.section-photo .text{
  position: absolute;
  top: 62%;
  left: 8%;
  font-family: var(--font-ZenKakuGothic);
  font-size: calc(18 / 1280 * 100vw);
  line-height: calc(36 / 18);
}
.section-photo .icon{
  position: absolute;
  bottom: 36%;
  right: 3%;
  width: calc(146.3052 / 1280 * 100%);
}
.section-photo .name{
  position: absolute;
  bottom: 10%;
  right: 4%;
}
.setup .section-photo .name{
  width: calc(342.7749 / 1280 * 100%);
}
.blouse .section-photo .name{
  width: calc(618.4087 / 1280 * 100%);
}
.item-wrapper{
  position: relative;
  padding-top: 30%;
  padding-bottom: 10%;
}
.blouse .item-wrapper{
  padding-top: 27%;
}
 /* fix-area------------------------ */
.fix-area{
  position: sticky;
  top: -13%;
  translate: 0 ;
  width: calc(800 / 1280 * 100%);
  padding-top: 11%;
  margin-left: calc(97 / 1280 * 100%);
  z-index: 10;
  position: sticky;
  top: 43%;
  transform: translateY(-50%);
  width: calc(800 / 1280* 100%);
  /* padding-top: 49%; */
  margin-left: calc(97 / 1280* 100%);
  z-index: 10;
  /* margin-top: 75%; */
}
.fix-area .title{
  width: calc(406 / 800 * 100%);
}
.fix-area .list{
  justify-content: space-between;
  flex-wrap: wrap;
  width: calc(406 / 800 * 100%);
  margin-top: 2%;
}
.fix-area .list .item{
  width: calc(122 / 406 * 100%);
  margin-bottom: 3%;
  overflow: hidden;
}
.fix-area .list .item .image{
  opacity: 0.3;
  transition: 0.2s ease;
}
.fix-area .list .item:hover .image{
  opacity: 1;
}

.fix-area .list .item a.current .image{
  opacity: 1;
}
.fix-area .title-name{
  width: calc(561.4946 / 800 * 100%);
  margin-top: -0.5%;
  opacity: 0.6;
}
/*sideicon*/
.sideicon{
  position: sticky;
  top: 13%;
  right: 2%;
  translate: 0 -50%;
  width: 100%;
  margin: -82% 0 0 auto;
  z-index: 9;
}
.blouse .sideicon{
  margin-top: -65%;
}
.sideicon .icon{
  width: calc(146.3052 / 1280 * 100%);
  margin: 0 8.4% 0 auto;
}
.sideicon .banner{
  width: calc(100 / 1280 * 100%);
  margin: 0 1% 0 auto;
}
/* bg----------------------- */
.bg-box{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* top: -2.45%; */
}
/* .blouse .bg-box{
  top: -0.65%;
} */
.bg-box span{
  position: sticky;
  top: 0;
  display: block;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
}
.setup .bg-box span{
  background-image: url(../img/setup-bg.svg);
}
.blouse .bg-box span{
  background-image: url(../img/blouse-bg.svg);
}
/* scroll-area------------------------ */
.scroll-area{
  position: relative;
  width: calc(500 / 1280 * 100%);
  margin-top: -20%;
  margin-left: calc(590 / 1280 * 100%);
  padding-top: 3%;
  padding-bottom: 2%;
  border-radius: 20px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
  background: rgb(255 255 255 / 0.4);
  z-index: 100;
}
.blouse .scroll-area{
  margin-top: -22%;
}
/* item-block--------------------------- */
.item-block{
  margin-bottom: 10%;
  padding-top: 3%;
}
.item-block .block-inner{
  width: calc(432 / 500 * 100%);
  margin-inline: auto;
}
.item-block .block-inner .title{
  width: fit-content;
  margin-left: -1.8em;
  padding: 0 1em 0 1.5em;
  color: #fff;
  font-family: var(--font-notoserif);
  font-size: calc(19 / 1280 * 100vw);
  font-weight: 500;
  line-height: calc(35 / 19);
  white-space: nowrap;
}
.setup .item-block .block-inner .title{
  background: var(--color-setup01);
}
.blouse .item-block .block-inner .title{
  background: var(--color-blouse01);
}
.item-block .block-inner .name{
  position: relative;
  margin-top: 0.3em;
  margin-left: -0.1em;
  font-family: var(--font-ShipporiMincho);
  font-size: calc(31 / 1280 * 100vw);
  font-weight: 800;
  line-height: calc(42/31);
  letter-spacing: -0.04em;
}
.setup .item-block .block-inner .name{
  color: var(--color-setup01);
}
.blouse .item-block .block-inner .name{
  color: var(--color-blouse01);
}
.item-block .block-inner .title-img{
  margin-top: 2%;
}
.item-block .block-inner .photo{
  margin-top: 4%;
  overflow: hidden;
}
.item-block .block-inner .photo .image{
  margin-top: -1px;
}
.item-block .block-inner .text{
  width: calc(390 / 432 * 100%);
  margin: 3% auto 0;
  text-align: justify;
  font-family: var(--font-notoserif);
  font-size: calc(17 / 1280 * 100vw);
  line-height: calc(33 / 18);
}
/* coordinate---------------- */
.coordinate{
  position: relative;
  width: 100%;
  margin-bottom: 14%;
}
.coordinate.active{
  animation-delay: 0s;
}
.coordinate .line{
  display: block;
  width: 2px;
  height: 6em;
  background: var(--color-blouse03);
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
.coordinate .icon{
  width: calc(217 / 500 * 100%);
}
.coordinate .inner{
  width: calc(432 / 500* 100%);
  margin-top: -11%;
  margin-inline: auto;
  padding: 3% 0 6%;
  border: 2px solid var(--color-blouse03);
  border-radius: 20px;
  background:rgb(255 255 255 / 0.4);
}
.coordinate .item-box{
  justify-content: space-between;
  width: calc(372.6811 / 432 * 100%);
  margin-top: 6%;
  margin-inline: auto;
}
.coordinate .item-box .photo{
  width: calc(240 / 372.6811 * 100%);
}
.coordinate .item-box .link{
  width: calc(115.3618 / 372.6811 * 100%);
  margin: 13% 0 0 auto;
}
.coordinate .item-box .link .main{
  margin-bottom: 0.75em;
  padding-bottom: 0.75em;
}
.coordinate .item-box .link .cart{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.coordinate .item-box .link .cart__price-area{
  justify-content: flex-start;
  margin-top: 0.5em;
}
.coordinate .item-box .link .main .cart__price-area{
  margin-top: 0;
}
.coordinate .item-box .link .other .cart{
  margin-bottom: 0.5em;
}
.coordinate .text{
  width: calc(340 / 432 * 100%);
  margin-inline: auto;
  font-family: var(--font-notoserif);
  font-size: calc(16 / 1280 * 100vw);
  line-height: calc(27 / 16);
}
/* recommend------------------- */
.recommend{
  margin-top: 8%;
  position: relative;
}
.recommend .title{
  margin-inline: auto;
}
.setup .recommend .title{
  width: calc(325.3379 / 1280 * 100%);
}
.recommend .list-wrapper{
  position: relative;
  width: calc(976 / 1280 * 100%);
  margin: 2% auto 0;
}
.recommend .slider{
  position: relative;
  width: 100%;
  margin: 5% 0;
}
.recommend .item{
  margin-inline: auto;
}
.recommend .item .inner{
  margin: 0 4%;
  padding-top: 3%;
  aspect-ratio: 312 / 394;
  border-radius: 20px;
  box-shadow: 0px 0px 15px -5px #777777;
}
.recommend .item .logo{
  margin-top: 3%;
}
.recommend .flex-box{
  justify-content: space-between;
  width: calc(268 / 312 * 100%);
  margin: 3% auto 0;
}
.recommend .tops,
.recommend .bottoms{
  width: calc(130 / 268 * 100%);
}
.recommend .item .image{
  width: 100%;
  text-align: center;
}
.recommend .bottoms .image{
  width: calc(120 / 130 * 100%);
  margin-inline: auto 0;
}
.recommend .link{
  width: calc(115.36252 / 130 * 100%);
  margin: 8% auto 0;
}
.recommend .unfilo .tops .link,
.recommend .anyfam .tops .link{
  visibility: visible;
}
.recommend .unfilo .bottoms .link,
.recommend .anyfam .bottoms .link{
  margin-top: 6%;
}
.recommend .unfilo .tops .cart__price--btn,
.recommend .anyfam .tops .cart__price--btn{
  visibility: visible;
  background: transparent;
  border: none;
}
.recommend .unfilo .bottom .link,
.recommend .anyfam .bottom .link{
  margin-top: 0;
}
.recommend .link .main{
  margin-bottom: 0;
  border: none;
}
.recommend .link .cart{
  display: block;
  margin-top: 0.5em;
  margin-bottom: 0;
}
.recommend .bottoms .link .cart{
  margin-top: 0;
}
.recommend .item-title{
  font-family: var(--font-notosans);
  font-size: calc(12 / 1280 * 100vw);
  white-space: nowrap;
}
.recommend .link .cart__price--btn{
  margin: 0 0 0 auto;
}
.recommend .link .size-area{
  height: 1em;
  margin-top: 0.5em;
  margin-bottom: 0.7em;
}
.recommend .btn{
  width: calc(180 / 268 * 100%);
  margin: 3% auto 0;
  transition: 0.3s ease-in-out;
}
.recommend .btn:hover{
  opacity: 0.6;
}
/* blouse------------------------- */
.blouse .recommend .title{
  width: calc(325.3379 / 1280 * 100%);
}
.blouse .recommend .list{
  flex-wrap: wrap;
  width: calc(902.2399 / 1280 * 100%);
  margin-top: 1%;
}
.blouse .recommend .list .item{
  width: calc(182 / 902.2399 * 100%);
  margin: initial;
  margin-top: 3%;
  box-shadow: none;
  animation-delay: 0s;
}
.blouse .recommend .list .logo{
  scale: 1.3;
  margin-bottom: 6%;
}
.blouse .recommend .list .photo{
  width: 100%;
}
.blouse .recommend .item .image{
  margin-top: 3%;
}
.blouse .recommend .link{
  width: calc(140/ 182 * 100%);
}
.blouse .recommend .btn{
  width: calc(180 / 182 * 100%);
}
.blouse .recommend .link .size-area{
  margin-bottom: 0;
}
/* slider---------------------------- */
.slick-list{
  padding-bottom: 3%;
}
.slick-slide{
  margin-top: 10px;
}
.slider .prev-arrow,
.slider .next-arrow {
  display: block;
  width: calc(10 / 1280 * 100%);
  position: absolute;
  padding: 2%;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all .3s ease;
  cursor: pointer;
  z-index: 3;
}
.slider .prev-arrow{
  background-image: url(../img/slide-arrow02.svg);
}
.slider .next-arrow{
  background-image: url(../img/slide-arrow01.svg);
}
.slider01 .prev-arrow,
.slider01 .next-arrow{
  top: 44.5%;
}
.slider01 .prev-arrow{
  left: -3.5%;
}
.slider01 .next-arrow{
  right: -4.5%;
}
/* bottom-block------------------- */
.bottom-block{
  padding-top: 2%;
}
/* banner ----------------------------------- */
.banner{
  width: calc(704 / 1280 * 100%);
  margin: 6% auto 0;
}
.banner a{
  transition: 0.6s ease;
}
.banner a:hover{
  opacity: 0.7;
}
/* staff -------------------------------------*/
.staff{
  margin-top: 2%;
}
.staff .text {
  margin: 0 auto;
  font-family: var(--font-ShipporiMincho);
  font-size: calc(13 / 1280 * 100vw);
  line-height: 2em;
  text-align: center;
}
/*footer*/
.footer {
  margin-top: 3%;
  padding-bottom: 2%;
  text-align: center;
}
.footer-sns {
  display: block;
  width: 2.5%;
  min-width: 36px;
  margin: 0 auto 2%;
  opacity: 1;
  transition: 0.3s;
}
.footer-logo {
  display: block;
  width: calc(316.2825 / 1280 * 100%);
  margin: 2% auto 0 auto;
}
.footer-copyright {
  font-family: "Helvetica", serif;
  font-size: calc(8 / 1280 * 100vw);
  letter-spacing: 0.02em;
  margin: 1.5% 0 0;
}
/*pagetop*/
.pagetop {
  position: fixed;
  right: 60px;
  bottom: 60px;
  width: calc(30 / 1280 * 100%);
  mix-blend-mode: color-dodge;
  z-index: 99;
}
/* sidebanner */
.sidebanner{
  position: fixed;
  top: 53%;
  right: 1%;
  translate: 0 -50%;
  width: calc(100 / 1280 * 100%);
  z-index: 1000;
}
@media (max-width: 768px){
  .otheritem .slider::before{
      width: 22%;
      height: 54%;
    }
}
@media (max-width: 767px){
  .otheritem .slider::before{
      width: 17%;
      height: 54%;
    }
}  
@media (max-width: 768px){
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /* link------------------------ */
  .link{
    width: calc(306 / 375* 100%);
    margin-top: 6%;
  }
  .link .cart{
    margin-top: 0.5em;
  }
  .link .cart__title,
  .link .cart__brand{
    font-size: calc(14 / 375 * 100vw);
    white-space: nowrap;
  }
  .link .cart__price{
    font-size: calc(16 / 375 * 100vw);
  }
  .link .cart__price--btn{
    margin-left: 0.5em;
    padding: 0.25em 0.75em;
    font-size: calc(13 / 375 * 100vw);
  }
  .link .main{
    margin-bottom: 1em;
    padding-bottom: 1em;
  }
  .link .other{
    margin-top: 0;
  }
  .link .size-area {
    font-size: calc(12 / 375 * 100vw);
  }
  /* header-box----------------------------- */
  .header-box{
    overflow: hidden;
  }
  /* header----------------------------- */
  .header{
    aspect-ratio: 375 / 667;
  }
  .header .photo01{
    left: 0;
    width: calc(192 / 375 * 100%);
  }
  .header .photo02{
    top: 7%;
    right: 0;
    width: calc(218.9267 / 375 * 100%);
  }
  .header .photo02 .image{
    animation-duration: 1.4s;
    animation-delay: 0s;
  }
  .header .icon01{
    left: auto;
    right: 0;
    width: calc(229.527 / 375 * 100%);
  }
  .header .icon02{
    right: auto;
    left: 0;
    width: calc(344.0001 / 375 * 100%);
  }
  .header .title01{
    top: 46%;
    left: 0;
    width: 100%;
  }
  .header .title02{
    top: 78%;
    right: 5%;
    width: calc(240.4827 / 375 * 100%);
  }
  .header .logo-box {
    right: auto;
    top: 2%;
    right: 3%;
    width: calc(150 / 375 * 100%);
  }
  /* lead-----------------------------  */
  .lead{
    width: 100%;
    margin-top: 10%;
  }
  .lead .text{
    text-align: center;
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(30 / 16);
  }
  .lead .text .linetext{
    margin-top: 2%;
    font-size: calc(23 / 375 * 100vw);
    line-height: calc(38 / 23);
  }
  .lead .line01{
    top: 40%;
    width: calc(133.7475 / 375 * 100%);
  }
  .lead .line02{
    top: 64%;
    width: calc(191.8946 / 375 * 100%);
  } 
  .lead .line03{
    position: absolute;
    left: 50%;
    translate: -50% 0;
    top: 90%;
    width: calc(191.8946 / 375 * 100%);
  }
  /* main-wrapper----------------- */
  .main-wrapper{
    margin-top: 12%;
  }
  /* section-photo-------------------- */
  .setup .section-photo .title{
    width: calc(253.5209 / 375 * 100%);
  }
  .section-photo .icon{
    bottom: auto;
    top: 9%;
    right: auto;
    left: 6%;
    width: calc(128.6875 / 375 * 100%);
  }
  .blouse .section-photo .icon{
    top: 17%;
  }
  .section-photo .name{
    bottom: 21%;
  }
  .setup .section-photo .name{
    width: calc(133.3857 / 375 * 100%);
  }
  .blouse .section-photo .name{
    width: calc(253.457 / 375 * 100%);
  }
  .blouse .section-photo .title{
    top: 40%;
    width: calc(281.7129 / 375 * 100%);
  }
  .section-photo .title{
    top: 48%;
    left: 8%;
  }
  .section-photo .text{
    position: relative;
    top: auto;
    left: auto;
    margin: 6% auto 0;
    text-align: center;
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(30 / 15);
    animation-duration: 0s;
  }
  .item-wrapper,
  .blouse .item-wrapper{
    margin-top: 10%;
    padding-top: 0;
  }
  /* fix-area----------- */
  .fix-area,
  .bg-box{
    display: none;
  }
  /* sp-nav----------------------- */
  .sp-nav{
    padding-top: 6%;
    padding-bottom: 6%;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .setup .sp-nav{
    background-image: url(../img/setup-bg-sp.svg);
  }
  .blouse .sp-nav{
    background-image: url(../img/blouse-bg-sp.svg);
  }
  .sp-nav .slider02{
    margin-top: 3%;
  }
  .sp-nav a{
    display: block;
    margin: 0 2%;
  }
  .sp-nav .title{
    margin-inline: auto;
  }
  .setup .sp-nav .title{
    width: calc(218.5636 / 375 * 100%);
  }
  .blouse .sp-nav .title{
    width: calc(218.5636 / 375 * 100%);
  }
  .sp-nav .title-name{
    margin: 2% auto 0 6%;
  }
  .setup .sp-nav .title-name{
    right: 3%;
    width: calc(179.6926 / 375 * 100%);
  }
  /* sideicon--------------- */
  .sideicon, .blouse .sideicon{
    position: relative; top: auto;
    left: auto;
    translate: 0 0;
    margin: 0 auto;
  }
  .sideicon .icon{
    width: calc(128.6875 / 375 * 100%);
    margin: -16% 3% 0 auto;
  }
  /* scroll-area------------------- */
  .scroll-area,
  .blouse .scroll-area{
    position: relative;
    width: 100%;
    margin-top: -19%;
    margin-inline: auto;
    padding-top: 13%;
    padding-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    z-index: 1;
  }
  .setup .scroll-area{
    background: #ebf5f7;
  }
  .blouse .scroll-area{
    background: #f7f2f8;
  }
  /* item-block---------------------- */
  .item-block{
    padding-top: 4%;
    margin-bottom: 16%;
  }
  .item-block .block-inner{
    width: calc(324 / 375 * 100%);
  }
  .item-block .block-inner .title{
    border-radius: 0;
    font-size: calc(16 / 375 * 100vw);
  }
  .item-block .block-inner .name{
    font-size: calc(27 / 375 * 100vw);
    line-height: calc(32 / 27);
  }
  .item-block .block-inner .text{
    width: calc(300 / 324 * 100%);
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(29 / 15);
  }
  /* slider------------------------------ */
  .slider .prev-arrow, .slider .next-arrow{
    width: calc(10 / 375 * 100%);
    padding: 3%;
  }
  .slider01 .prev-arrow{
    left: -5%;
  }
  .slider01 .next-arrow{
    right: -8%;
  }
  /* coordinate----------------------- */
  .coordinate .icon{
    width: calc(168.0113 / 375 * 100%);
  }
  .coordinate .inner{
    width: calc(340 / 375 * 100%);
    border-width: 1px;
  }
  .coordinate .line{
    top: -1em;
    width: 1px;
    height: 5em;
  }
  .coordinate .item-box{
    width: calc(311 / 340 * 100%);
    margin-top: 8%;
  }
  .coordinate .item-box .photo{
    width: calc(184 / 311 * 100%);
  }
  .coordinate .item-box .link{
    margin-top: 3%;
    width: calc(115.3623 / 311 * 100%);
  }
  .coordinate .item-box .link .cart__title{
    font-size: calc(12 / 375 * 100vw);
  }
  .coordinate .item-box .link .cart__price-area{
    margin-top: 0.5em;
  }
  .coordinate .link .cart__price{
    font-size: calc(14 / 375 * 100vw);
  }
  .coordinate .item-box .link .other .cart{
    margin-bottom: 0.5em;
  }
  .coordinate .link .cart__price--btn span{
    font-size: calc(10 / 375 * 100vw);
  }
  .coordinate .text{
    width: calc(296 / 340 * 100%);
    margin-top: 3%;
    font-size: calc(15 / 375 * 100vw);
  }
  /* recommend--------------- */
  .recommend{
    margin-top: 6%;
    margin-bottom: 15%;
  }
  .setup .recommend .title{
    width: calc(196.7168 / 375 * 100%);
  }
  .blouse .recommend .title{
    width: calc(196.7168 / 375 * 100%);
  }
  .recommend .list-wrapper{
    width: calc(312 / 375 * 100%);
  }
  .recommend .item .inner{
    margin: 0 2%;
    aspect-ratio: 312 / 380;
    border-radius: 10px;
    box-shadow: 0px 0px 10px -5px #777777;
  }
  .recommend .item .logo {
    width: 80%;
    margin: 2% auto 0;
    text-align: center;
  }
  .recommend .item-title,
  .recommend .size-area a{
    font-size: calc(12 / 375 * 100vw);
  }
  .recommend .link .cart{
    margin-top: 0.5em;
  }
  .recommend .link .cart__price{
    font-size: calc(14 / 375 * 100vw);
  }
  .recommend .link .main .cart__price--btn{
    font-size: calc(10 / 375 * 100vw);
  }
  /* blouse ------------------------- */
  .blouse .recommend{
    overflow: hidden;
  }
  .blouse .recommend .list{
    width: calc(344 / 375 * 100%);
    margin-top: 6%;
  }
  .blouse .recommend .list .item{
    width: calc(166 / 344 * 100%);
    margin-top: 6%;
  }
  .blouse .recommend .item .image{
    width: 100%;
  }
  .blouse .recommend .photo{
    width: calc(130 / 166 * 100%);
    margin-inline: auto;
  }
  /* bottom-block-------------------- */
  .bottom-block{
    padding-top:0;
  }
  /* footnav------------------------ */
  .staff{
    margin-top: 6%;
  }
  .staff .text {
    font-size: calc(12 / 375 * 100vw);
  }
  /* banner-------------------------- */
  .banner{
    width: calc(320 / 375 * 100%);
    margin-top: 10%;
  }
  /* footer------------------------ */
  .footer {
    margin-top: 10%;
    padding-bottom: 18%;
  }
  .footer-logo {
    width: 76%;
  }
  .footer-copyright {
    font-size: 10px;
    letter-spacing: 0.02em;
    margin: 3% 0 0 0;
  }
  /* footnav----------------------------- */
  .footnav{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
  }
  .footnav .page-btn{
    width: calc(343 / 375 * 100%);
  }
  .pagetop {
    right: 0;
    bottom: 0;
    width: calc(35 / 375 * 100%);
  }
}