:root {
  --font-ShipporiMinchoB1: "Shippori Mincho B1", serif;
  --font-ZenKakuGothicNew: "Zen Kaku Gothic New", sans-serif;
  --font-Inter: "Inter", sans-serif;
  --color01: #d41335;
  --color02: #404855;
  --color03: #cabc93;
  --color04: #90c299;
  --color05: #92b9ed;
  --color06: #d7a29d;
  --color01-sub: rgb(212 19 53 / 0.1);
  --color02-sub: rgb(64 72 85 / 0.1);
  --color03-sub: rgb(202 188 147 / 0.2);
  --color04-sub: rgb(144 194  153 / 0.2);
  --color05-sub: rgb(146 185 237 / 0.2);
  --color06-sub: rgb(215 162 157 / 0.2);
}
@font-face {
  font-family: 'EBGaramond';
  src: url(../font/EBGaramond-Medium.ttf) format(truetype);
}
*, *::before, *::after {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
  color: #333333;
}
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;
}
body {
  position: relative;
  overflow-anchor: none;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
.image{
  width: 100%;
}
/*animation*/
.header-slide-right{
  animation-name: header-slide-right;
  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 header-slide-right {
  0% {
    opacity: 1;
    transform: translateX(30%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.header-slide-left{
  animation-name: header-slide-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;
}
@keyframes header-slide-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

.fade{
  opacity: 0;
}
.fade.active{
  animation-name: fade;
  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 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: ease-in-out;
  animation-delay: 0.8s;
  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;
}
.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;
}
@keyframes clippath-left {
  0% {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
.clippath-right{
  opacity: 0;
}
.clippath-right.active{
  animation-name: clippath-right;
  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-right {
  0% {
    opacity: 1;
    clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
.slide-up{
  opacity: 0;
}
.slide-up.active{
  animation-name: slide-up;
  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 slide-up {
  0% {
    opacity: 1;
    transform: translateY(100%);
  }
  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);
  }
}
.slide-right{
  opacity: 0;
}
.slide-right.active{
  animation-name: slide-right;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-delay: 1.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes slide-right {
  0% {
    opacity: 0.6;
    transform: translateX(6%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.zoomup{
  opacity: 0;
}
.zoomup.active{
  animation-name: zoomup;
  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 zoomup {
  0% {
    opacity: 0;
    scale: 0.6;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
/*link*/
.link {
  width: calc(306 / 1280 * 100vw);
}
.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: var(--font-ShipporiMinchoB1);
  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: var(--font-ShipporiMinchoB1);
  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;
  border: 1px solid;
  color: #fff;
  font-family: var(--font-Inter);
  font-size: calc(10 / 1280 * 100vw);
  line-height: 1;
}
.item01 .link .cart__price--btn{
  background: var(--color01);
  border-color:var(--color01) ;
}
.item02 .link .cart__price--btn{
  background: var(--color02);
  border-color:var(--color02) ;
}
.item03 .link .cart__price--btn{
  background: var(--color03);
  border-color:var(--color03) ;
}
.item04 .link .cart__price--btn{
  background: var(--color04);
  border-color:var(--color04) ;
}
.item05 .link .cart__price--btn{
  background: var(--color05);
  border-color:var(--color05) ;
}
.item06 .link .cart__price--btn{
  background: var(--color06);
  border-color:var(--color06) ;
}
.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 #000;
}
.link .link__other .cart__price--btn {
  background: transparent;
  color: #333;
  border-color: #000;
}
.link .link__other .cart__price--btn.comingsoon{
  padding: 0.3em 0.7em;
}
.link .cart:hover .cart__price--btn.comingsoon span {
  transform: translateX(0);
}
/* 共通*/
.pc {
  display: block;
}
.sp {
  display: none;
}
.slide-box {
  overflow: hidden;
}
.flex-box{
  display: flex;
}
/*header*/
.header {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.header .title{
  position: absolute;
  top: 17%;
  left: 11.5%;
  width: calc(383.8824 / 1280 * 100%);
}
.header-logo {
  position: absolute;
  top: 2.5%;
  left: 2%;
  width: calc(76 / 1280 * 100%);
}
.header .mask{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}
/*lead*/
.lead {
  position: relative;
  margin-top: 5%;
}
.lead-logo {
  display: none;
}
.lead .title{
  width: calc(577.2598 / 1280 * 100%);
  margin-inline: auto;
}
.lead .title .image{
  animation-duration: 1s;
}
.lead-text {
  margin-top: 3%;
  text-align: center;
  font-family: var(--font-ZenKakuGothicNew);
  font-size: calc( 15/ 1280 * 100vw);
  line-height: 2.2;
  font-weight: 200;
  letter-spacing: 0.08rem;
}
/*nav-wrapper*/
.nav-wrapper {
  margin-top: 6%;
  padding: 6% 0;
  background-image: url(../img/nav-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.nav-wrapper .inner{
  align-items: center;
  justify-content: space-between;
  width: calc(1200.124 / 1280 * 100%);
  margin: 0 0 0 auto;
  overflow: hidden;
}
.nav-wrapper .title-box{
  width: calc(196.1465 / 1200.124 * 100%);
}
.nav-wrapper .nav{
  width: calc(961.0005 / 1200.124 * 100%);
}
.nav-wrapper .nav .list .item{
  overflow: hidden;
  padding: 0 10px;
  transition: 0.4s ease;
}
.nav-wrapper .nav .list:hover .item{
  opacity: 0.5;
}
.nav-wrapper .nav .list .item:hover{
  opacity: 1;
}
.nav-wrapper .nav .slick-slide a{
  display: block;
  overflow: hidden;
}
.nav-wrapper .nav .slick-slide .image{
  transition: 0.4s ease;
}
.nav-wrapper .nav .list .item:hover .image{
  scale: 1.1;
}
/* style-box---------------------- */
.style-box{
  position: relative;
  margin: 10% auto 0;
  padding-top: 0.5%;
}
.style-box .mainphoto-box{
  position: relative;
  z-index: 3;
}
.style-box .mainphoto-box .photo01{
  position: relative;
}
.style-box .mainphoto-box .bg{
  position: absolute;
  top: -5%;
  left: -7%;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.style-box .text{
  text-align: justify;
  font-family: var(--font-ZenKakuGothicNew);
  font-size: calc(15 / 1280 * 100vw);
  font-weight: 200;
  line-height: calc(30 / 15);
  letter-spacing: 0.04em;
}
.style-box .frame-box{
  position: relative;
  height: fit-content;
}
.style-box .frame-box .frame{
  animation-delay: 0s;
}
.style-box .photo03{
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}  
/*item01----------------------*/
.item01 .mainphoto-box{
  padding-top: 6%;
}
.item01 .mainphoto-box .photo01{
  left: 3%;
  width: calc(560 / 1280 * 100%);
  margin-inline: auto;
}
.item01 .mainphoto-box .bg{
  background: var(--color01-sub);
}
.item01 .mainphoto-box .number{
  position: absolute;
  top: 3%;
  right: 18.75%;
  width: calc(114.8358 / 1280 * 100%);
}
.item01 .mainphoto-box .title{
  position: absolute;
  top: 0;
  left: 35%;
  width: calc(60 / 1280 * 100%);
}
.item01 .mainphoto-box .icon{
  position: absolute;
  top: 51.5%;
  left: 12%;
  width: calc(322.1675 / 1280 * 100%);
}
.item01 .second-box{
  flex-direction: row-reverse;
  justify-content: space-between;
  width: calc(975.3728 / 1280 * 100%);
  margin: 5% auto 0;
}
.item01 .box01{
  width: calc(370 / 975.3728 * 100%);
}
.item01 .box01 .text{
  width: calc(314 / 370 * 100%);
  margin: 6% auto 0;
}
.item01 .box01 .link{
  width: calc(314 / 370 * 100%);
  margin: 12% auto 0;
}
.item01 .frame-box{
  width: calc(536 / 975.3728 * 100%);
}
.item01 .frame-box .frame{ 
  background: var(--color01-sub);
}
.item01 .photo03{
  width: calc(436 / 536 * 100%);
}
/*item02----------------------*/
.item02 .mainphoto-box{
  padding-top: 6%;
}
.item02 .mainphoto-box .photo01{
  right: 9%;
  width: calc(560 / 1280 * 100%);
  margin-inline: auto;
}
.item02 .mainphoto-box .bg{
  background: var(--color02-sub);
}
.item02 .mainphoto-box .number{
  position: absolute;
  top: 13%;
  right: 15.5%;
  width: calc(118.3773 / 1280 * 100%);
}
.item02 .mainphoto-box .title{
  position: absolute;
  top: 1%;
  left: 55%;
  width: calc(60 / 1280 * 100%);
}
.item02 .mainphoto-box .icon{
  position: absolute;
  top: 42%;
  left: 59.5%;
  width: calc(403.2766 / 1280 * 100%);
}
.item02 .second-box{
  position: relative;
  left: 4%;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: calc(989 / 1280 * 100%);
  margin: -14% auto 0;
}
.item02 .box01{
  position: relative;
  width: calc(320 / 989 * 100%);
  z-index: 5;
}
.item02 .box01 .text{
  width: calc(314 / 320 * 100%);
  margin: 24% auto 0;
}
.item02 .box01 .link{
  width: calc(314 / 320 * 100%);
  margin: 12% auto 0;
}
.item02 .frame-box{
  width: calc(554 / 989 * 100%);
  margin-top: 28%;
}
.item02 .frame-box .frame{ 
  background: var(--color02-sub);
}
.item02 .photo03{
  width: calc(454 / 554 * 100%);
}
/*item03----------------------*/
.item03 .mainphoto-box{
  padding-top: 6%;
}
.item03 .mainphoto-box .photo01{
  position: relative;
  right: 17%;
  width: calc(560 / 1280 * 100%);
  margin-inline: auto;
  z-index: 2;
}
.item03 .bg{
  position: absolute;
  top: 21%;
  left: auto;
  right: 0;
  width: calc(636 / 1280* 100%);
  height: 45%;
  background: var(--color03-sub);
}
.item03 .mainphoto-box .number{
  position: absolute;
  top: 1%;
  right: 43.25%;
  width: calc(114.5072 / 1280 * 100%);
  z-index: 3;
}
.item03 .mainphoto-box .icon{
  position: absolute;
  top: 17.5%;
  left: 57%;
  width: calc(419.2092 / 1280 * 100%);
}
.item03 .second-box{
  position: relative;
  right: 0.75%;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: calc(1073.5 / 1280 * 100%);
  margin: -35% auto 0;
}
.item03 .box01{
  position: relative;
  width: calc(436 / 1073.5 * 100%);
  z-index: 4;
}
.item03 .box01 .text{
  width: calc(313.4912 / 436 * 100%);
  margin: 27% auto 0 0;
}
.item03 .box01 .link{
  width: calc(313.4912 / 436 * 100%);
  margin: 12% auto 0 0;
}
.item03 .frame-box{
  width: calc(531 / 1073.5 * 100%);
  margin-top: 49%;
}
.item03 .photo03{
  width: calc(436 / 531 * 100%);
}
.item03 .photo03 a{
  position: relative;
  display: block;
}
.item03 .photo03 .title{
  position: absolute;
  top: 6%;
  left: 78%;
  width: calc(60 / 436 * 100%);
}
/*item04----------------------*/
.item04 .mainphoto-box{
  padding-top: 12.5%;
}
.item04 .mainphoto-box .photo01{
  left: 17%;
  width: calc(640 / 1280 * 100%);
  margin-inline: auto;
}
.item04 .mainphoto-box .bg{
  display: none;
  background: var(--color04-sub);
}
.item04.style-box .number{
  position: absolute;
  top: 2.5%;
  left: 6.5%;
  width: calc(115.8206 / 1280 * 100%);
  z-index: 4;
}
.item04 .mainphoto-box .title{
  position: absolute;
  top: 39%;
  left: 84%;
  width: calc(60.1133 / 1280 * 100%);
}
.item04 .mainphoto-box .icon{
  position: absolute;
  top: 0;
  left: 63%;
  width: calc(355.4355 / 1280 * 100%);
}
.item04 .second-box{
  position: relative;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: calc(1057.583 / 1280 * 100%);
  margin: 5% auto 0 0;
  z-index: 3;
}
.item04 .box01{
  width: calc(312.833 / 1057.583 * 100%);
}
.item04 .box01 .text{
  width: 100%;
  margin: 6% 0 0 auto;
}
.item04 .box01 .link{
  width: 100%;
  margin: 12% 0 0 auto;
}
.item04 .box02{
  width: calc(556 / 1057.583 * 100%);
  margin-top: -102%;
}
.item04 .photo02{
  position: relative;
  left: 19%;
  width: calc(370/ 556 * 100%);
}
.item04 .frame-box{
  width: 100%;
  margin-top: 28%;
}
.item04 .frame-box .frame{ 
  background: var(--color04-sub);
}
.item04 .photo03{
  left: 0;
  translate: 0 -50%;
  width: calc(436 / 531 * 100%);
}
/*item05----------------------*/
.item05 .bg{
  position: absolute;
  top: 19.5%;
  left: 0;
  display: block;
  width: 100%;
  height: 63.5%;
  background: var(--color05-sub);

}
.item05 .mainphoto-box{
  padding-top: 6%;
}
.item05 .mainphoto-box .photo01{
  position: relative;
  right: 21%;
  width: calc(560 / 1280 * 100%);
  margin-inline: auto;
}
.item05 .mainphoto-box .number{
  position: absolute;
  top: 0.5%;
  left: 9.5%;
  width: calc(115.8206 / 1280 * 100%);
}
.item05 .title{
  position: absolute;
  top: 12%;
  left: 81%;
  width: calc(60.1133 / 1280 * 100%);
  z-index: 5;
}
.item05 .mainphoto-box .icon{
  position: absolute;
  top: 0;
  left: 43.5%;
  width: calc(355.4355 / 1280 * 100%);
}
.item05 .second-box{
  position: relative;
  left: 7%;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  width: calc(911.3052 / 1280 * 100%);
  margin: -47% auto 0;
}
.item05 .second-box .bg{
  background: transparent;
}
.item05 .box01{
  position: relative;
  width: calc(532 / 911.3052 * 100%);
  z-index: 4;
}
.item05 .frame-box{
  width: 100%;
}
.item05 .frame-box .frame{ 
  background: transparent;
}
.item05 .photo03{
  width: calc(454 / 532 * 100%);
}
.item05 .box01 .link{
  width: calc(315.4239 / 532 * 100%);
  margin: 6% 7% 0 auto;
}
.item05 .box02{
  width: calc(379.5581 / 911.3052 * 100%);
}
.item05 .box02 .text{
  width: 100%;
  margin: 0 0 65% auto;
}
/*item06----------------------*/
.item06 .mainphoto-box{
  padding-top: 6%;
}
.item06 .mainphoto-box .photo01{
  left: 3%;
  width: calc(640 / 1280 * 100%);
  margin-inline: auto;
}
.item06 .mainphoto-box .bg{
  background: var(--color06-sub);
}
.item06 .mainphoto-box .number{
  position: absolute;
  top: 3%;
  right: 16%;
  width: calc(114.8358 / 1280 * 100%);
}
.item06 .mainphoto-box .icon{
  position: absolute;
  top: 53.5%;
  left: 14%;
  width: calc(322.1675 / 1280 * 100%);
}
.item06 .second-box{
  position: relative;
  left: 3%;
  flex-direction: row;
  justify-content: space-between;
  width: calc(1048 / 1280 * 100%);
  margin: 6% auto 0;
}
.item06 .box01{
  width: calc(370 / 1048 * 100%);
  margin-top: 2%;
}
.item06 .box01 .text{
  width: calc(314 / 370 * 100%);
  margin: 10% 0 0 auto;
}
.item06 .box02{
  width: calc(554 / 1048 * 100%);
}
.item06 .box02 .link{
  width: calc(315.4239 / 554 * 100%);
  margin: 8% 10% 0 auto;
}
.item06 .frame-box{
  width: 100%;
}
.item06 .frame-box .frame{ 
  background: var(--color06-sub);
}
.item06 .photo03{
  width: calc(454 / 554 * 100%);
}
.item06 .photo03 .title{
  position: absolute;
  top: 11%;
  left: 10%;
  width: calc(59.946 / 454 * 100%);
  animation-delay: 0.6s;
}
/* bottom-block------------- */
.bottom-block{
  margin-top: 14%;
}
/*banner-staff*/
.banner-staff {
  margin: 8% auto 0;
}
.banner-staff .text{
  text-align: center;
  font-family: 'EBGaramond', serif;
  font-size: calc(17 / 1280 * 100vw);
  line-height: calc(27 / 17);
  letter-spacing: 0.1em;
}
/*banner*/
.banner {
  width: calc(603 / 1280 * 100%);
  margin: 6% auto 0;
}
.banner-item {
  display: block;
  margin-top: 3%;
  border: 1px solid #333;
  transition: 0.6s ease-in-out;
}
.banner-item:hover {
  border: 1px solid #000;
}
/*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;
}
/*stepnav*/
.stepnav{
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: calc(80 / 1280 * 100vw);
  z-index: 9999;
}
.stepnav .list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}
.stepnav .list .title .image{
  width: 100%;
}
.stepnav .list a{
  position: relative;
  display: block;
  min-width: 20px;
  padding-top: 1%;
}
.stepnav .list a.current::after{
  opacity: 1;
}
.stepnav .list .number{
  margin-inline: auto;
  transition: 0.1s ease;
}
.stepnav .list .number-on{
  display: none;
}
.stepnav .list a.current .number-off,
.stepnav .list a:hover .number-off{
  display: none;
}
.stepnav .list a.current .number-on,
.stepnav .list a:hover .number-on{
  display: block;
}
/*pagetop*/
.pagetop {
  position: fixed;
  right: 1vw;
  bottom: 30px;
  width: calc(75.3188 / 1280 * 100%);
  z-index: 99;
}
.pagetop .image{
  width: 100%;
}
/*footnav*/
.footnav {
  display: none;
}
.footlist {
  display: flex;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .zoomup.active,
  .clippath-right.active,
  .clippath-left.active{
    animation-delay: 0s;
  }
  /* link------------------------ */
  div[class*="item0"] .box01 .link,
  .item06 .box02 .link{
    right: auto;
    width: calc(315.4235 / 375 * 100%);
    margin: 16% auto 0;
    order: 4;
  }
  .link .cart__title {
    font-size: calc(14 / 375 * 100vw);
  }
  .link .cart__price,
  .link .cart__price--yen--size{
    font-size: calc(14 / 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 / 375 * 100vw);
  }
  .link .cart__price--btn {
    margin-left: 0.5em;
    padding: 0.5em 0.75em;
    font-size: calc(10 / 375 * 100vw);
  }
  .link .link__other {
    margin-top: 0.75em;
    padding-top: 0.75em;
  }
  .link .link__other .cart__price--btn.comingsoon{
    padding: 0.3em 0.45em;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /* header------------------------ */
  .header{
    aspect-ratio: 375 / 664;
  }
  .header .title{
    left: 0;
    top: auto;
    bottom: 1px;
    width: 100%;
  }
  .header .title .image{
    animation-delay: 1s;
  }
  .header-logo {
    display: none;
  }
  /* lead---------------------------- */
  .lead{
    margin-top: 16%;
  }
  .lead-logo {
    display: block;
    width: calc(66 / 375 * 100%);
    margin: 0 auto;
  }
  .lead .title {
    width: calc(266.2515 / 375 * 100%);
    margin-top: 10%;
  }
  .lead .title .image{
    animation-delay: 0s;
  }
  .lead-text {
    margin-top: 10%;
    font-size: calc(15 / 375 * 100vw);
  }
  /* nav-------------------------------- */
  .nav-wrapper{
    width: 100%;
    margin-top: 16%;
    padding: 10% 0 16%;
    background-image: url(../img/nav-bg-sp.png);
  }
  .nav-wrapper .inner{
    flex-direction: column;
    width: 100%;
  }
  .nav-wrapper .title-box{
    width: calc(154.3828 / 375 * 100%);
    margin: 0 auto;
  }
  .nav-wrapper .nav{
    width: calc(356 / 375 * 100%);
    margin-top: 6%;
    margin-left: calc(19 / 375* 100%);
  }
  /* style-box---------------- */
  .style-box{
    width: 100%;
    margin-top: 20%;
    padding-bottom: 10%;
  }
  div[class*="item0"] .mainphoto-box .bg{
    position: absolute;
    top: -5%;
    display: block;
    width: 100%;
    height: 100%;
  }
  .item01 .mainphoto-box .bg,
  .item02 .mainphoto-box .bg{
    left: -7%;
  }
  .item03 .mainphoto-box .bg,
  .item05 .mainphoto-box .bg,
  .item06 .mainphoto-box .bg{
    left: auto;
    right: -7% ;
  }
  div[class*="item0"] .mainphoto-box .photo01{
    left: auto;
    right: auto;
    width: calc(350 / 375 * 100%);
  }
  .item01 .mainphoto-box .photo01,
  .item02 .mainphoto-box .photo01,
  .item04 .mainphoto-box .photo01{
    margin-left: auto;
    margin-right: 0;
  }
  div[class*="item0"] .mainphoto-box .title,
  .item05 .title{
    width: calc(54 / 375 * 100%);
  }
  div[class*="item0"] .second-box{
    left: auto;
    right: auto;
    flex-direction: column;
    width: 100%;
  }
  div[class*="item0"] .box01{
    display: contents;
    width: 100%;
  }
  div[class*="item0"] .frame-box{
    width: calc(335 / 375 * 100%);
    margin: 12% auto 0;
    order: 2;
  }
  div[class*="item0"] .box01 .text,
  div[class*="item0"] .box02 .text{
    width: calc(304 / 375 * 100%);
    margin: 8% auto 0;
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(33 / 16);
    order: 3;
  }
  div[class*="item0"] .photo02,
  .item05 .photo03{
    width: calc(300 / 375 * 100%);
    order: 1;
  }
  .item03 .photo02{
    margin-right: 0;
    margin-left: auto;
  }
  /* item01------------------------ */
  .item01 .mainphoto-box{
    padding-top: 34%;
  }
  .item01 .mainphoto-box .number{
    top: 0;
    right: 8%;
    width: calc(80.384 / 375 * 100%);
  }
  .item01 .mainphoto-box .title{
    top: 10%;
    left: 14%; 
  }
  .item01 .mainphoto-box .icon{
    top: 86.5%;
    left: 13%;
    width: calc(258.5659 / 375 * 100%);
  }
  .item01 .second-box{
    margin-top: 38%;
  }
  .item01 .photo02{
    margin-inline: auto;
  }
  /* item02------------------------ */
  .item02 .mainphoto-box{
    padding-top: 13%;
  }
  .item02 .mainphoto-box .number{
    top: 0;
    right: 8%;
    width: calc(82.8634 / 375 * 100%);
  }
  .item02 .mainphoto-box .title{
    top: 29%;
    left: 73%;
  }
  .item02 .mainphoto-box .icon{
    top: 86.25%;
    left: 6.5%;
    width: calc(323.2101 / 375 * 100%);
  }
  .item02 .second-box{
    margin-top: 42%;
  }
  /* item03------------------------ */
  .item03 .mainphoto-box{
    padding-top: 33.5%;
  }
  .item03 .mainphoto-box .photo01{
    margin-left: 0;
  }
  .item03 .mainphoto-box .number{
    top: 0;
    right: left;
    left: 8%;
    width: calc(80.154 / 375 * 100%);
  }
  .item03 .mainphoto-box .title{
    position: absolute;
    top: 11%;
    left: 73%;
    z-index: 4;
  }
  .item03 .mainphoto-box .icon{
    top: 161.5%;
    left: 4%;
    width: calc(336.4475 / 375 * 100%);
  }
  .item03 .second-box{
    margin-top: 12%;
    z-index: 1;
  }
  .item03 .frame-box{
    margin-top: 38% !important;
  }
  .item03 .frame-box .frame{
    background: var(--color03-sub);
  }
  /* item04------------------------ */
  .item04.style-box{
    padding-top: 2%;
  }
  .item04 .mainphoto-box{
    padding-top: 11.5%;
  }
  .item04.style-box .number{
    top: 0;
    left: 69%;
    width: calc(81.0729 / 375 * 100%);
    padding-top: 1%;
  }
  .item04 .mainphoto-box .title{
    top: 27%;
    left: 79%;
  }
  .item04 .second-box{
    margin-top: 12%;
  }
  .item04 .box02{
    width: 100%;
    margin: 0 auto;
  }
  .item04 .photo02{
    left: auto;
    margin: 0 auto 0 0;
  }
  .item04 .box02 .icon{
    width: calc(285.2021 / 375 * 100%);
    margin: -15% 12% 0 auto;
  }
  .item04 .frame-box{
    margin-top: 12% !important;
  }
  .item04 .photo03{
    left: 50%;
    translate: -50% -50%;
  }

  /* item05------------------------ */
  .item05 .mainphoto-box{
    padding-top: 13.5%;
  }
  .item05 .bg{
    display: none;
  }
  .item05 .photo01 .bg{
    top: -5%;
    width: 100%;
    height: 100%;
  }
  .item05 .mainphoto-box .photo01{
    margin-left: 0;
  }
  .item05 .mainphoto-box .number{
    width: calc(81.1579 / 375 * 100%);
  }
  .item05 .title{
    top: 4.5%;
    left: 73%;
  }
  .item05 .mainphoto-box .icon{
    top: 86%;
    left: 5%;
    width: calc(336.3282 / 375 * 100%);
  }
  .item05 .second-box{
    margin-top: 28%;
  }
  .item05 .box02{
    display: contents;
  }
  .item05 .frame-box .frame{
    background: var(--color05-sub);
  }

  /* item06------------------------ */
  .item06 .mainphoto-box{
    padding-top: 33.5%;
  }
  .item06 .mainphoto-box .photo01{
    margin-left: 0;
  }
  .item06 .mainphoto-box .number{
    top: 0;
    right: 0;
    left: 9%;
    width: calc(85.2204 / 375 * 100%);
  }
  .item06 .mainphoto-box .title{
    position: absolute;
    bottom: 4%;
    left: 9%;
  }
  .item06 .mainphoto-box .icon{
    top: 162%;
    left: 14%;
    width: calc(264.0355 / 375 * 100%);
  }
  .item06 .photo02{
    margin: 6% 0 20% auto;
  }
  .item06 .box02{
    display: contents;
  }
  .item06 .frame-box{
    margin-top: 18% !important;
  }
  /* bottom-block------------------ */
  .bottom-block{
    margin-top: 22%;
  }
  .banner-staff{
    margin-top: 14%;
  }
  .banner-staff .text{
    font-size: calc(16 / 375 * 100vw);
  }
  .banner {
    width: 80%;
    margin-top: 12%;
  }
  .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{
    top: auto;
    bottom: -2px;
    right: auto;
    left: 0;
    width: 100%;
    background: #fbfbfb;
    transform: translate(0);
  }
  .stepnav .list{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .stepnav .list .item{
    width: calc(55 / 375 * 100%);
  }
  .stepnav .list li.sp{
    width: calc(45 / 375 * 100%);
  }
}