:root {
  --font-ShipporiMinchoB1: "Shippori Mincho B1", serif;
  --font-Inter: "Inter", sans-serif;
  --color01: #009c9b;
  --color02: #0064a2;
  --color03: #cead00;
  --color04: #e1814c;
  --color05: #24b9d3;
  --color06: #72c05e;
}
@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*/
.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-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: 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-left {
  0% {
    opacity: 0;
    transform: translateX(-6%);
  }
  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: 0.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: 0.6s;
  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;
    rotate: -180deg;
  }
  100% {
    opacity: 1;
    scale: 1;
    rotate: 0;
  }
}
.zoomup02{
  opacity: 0;
}
.zoomup02.active{
  animation-name: zoomup02;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes zoomup02 {
  0% {
    opacity: 0;
    scale: 0.8;
  }
  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;
}
  
/* 共通*/
.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 / 1011;
  width: 100%;
  background-image: url(../img/mv-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.header .bg01{
  position: absolute;
  top: 8%;
  left: 0;
  width: calc(384.8117 / 1280 * 100%);
  aspect-ratio: 384.8117 / 581;
  background: rgba(99 156 211 / 0.2);
}
.header .bg02{
  position: absolute;
  top: 0;
  left: 27.5%;
  width: calc(286.4621 / 1280 * 100%);
  aspect-ratio: 286.4621 / 441.5467;
  background: rgba(99 156 211 / 0.2);
}
.header .photo01{
  position: absolute;
  top: 10%;
  left: 0;
  width: calc(364.8117 / 1280 * 100%);
}
.header .photo01 .image{
  animation-delay: 0.6s;
}
.header .photo02{
  position: absolute;
  top: 0;
  left: 26%;
  width: calc(286.4621 / 1280 * 100%);
}
.header .photo02 .image{
  animation-delay: 0.8s;
}
.header .photo03{
  position: absolute;
  top: 0;
  right: 0;
  width: calc(551 / 1280 * 100%);
}
.header .title01{
  position: absolute;
  top: 32%;
  left: 50%;
  translate: -50% 0;
  width: calc(790.9478 / 1280 * 100%);
}
.header .title01 .image{
  animation-delay: 1s;
}
.header .title02{
  position: absolute;
  top: 45.5%;
  left: 48.5%;
  translate: -50% 0;
  width: calc(567.5063 / 1280 * 100%);
}
.header .title02{
  animation-delay: 0.8s;
}
.header .title03{
  position: absolute;
  top: 38%;
  right: 6%;
  width: calc(293.9497 / 1280 * 100%);
}
.header .title03{
  animation-duration: 0.4s;
  animation-delay: 2s;
}
.header .title04{
  position: absolute;
  top: 58%;
  left: 50%;
  translate: -50% 0;
  width: calc(199.792 / 1280 * 100%);
  z-index: 3;
}
.header .title04{
  animation-delay: 1.8s;
}
.header .icon{
  position: absolute;
  top: 58%;
  left: 53.25%;
  width: calc(43.0686 / 1280 * 100%);
}
.header .icon{
  animation-delay: 1.2s;
}
.header-logo {
  position: absolute;
  top: 1.5%;
  right: 0.5%;
  width: calc(68.0369 / 1280 * 100%);
}
.lead-title{
  position: absolute;
  bottom: 10%;
  left: 50%;
  translate: -50% 0;
  width: calc(502.0024 / 1280 * 100%);
  margin: 0 auto;
}
.lead-title .image{
  animation-duration: 0.6s;
}
/*nav-wrapper*/
.nav-wrapper {
  padding: 6% 0 3%;
  background: #f4f5d7;
}
.nav-wrapper .title01{
  position: relative;
  width: calc(252.6025 / 1280 * 100%);
  margin: -8% auto 0;
  z-index: 2;
}
.nav-wrapper .title02{
  position: relative;
  left: 11.25%;
  width: calc(117.4653 / 1280* 100%);
  margin: -6% auto;
  z-index: 3;
}
.nav-wrapper .line01{
  position: relative;
  width: calc(780 / 1280 * 100%);
  margin: 2% auto 0;
  z-index: 1;
}
.nav-wrapper .nav{
  position: relative;
  width: calc(780 / 1280 * 100%);
  margin: 1.5% auto 0;
  z-index: 4;
}
.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;
}
.nav-wrapper .line02{
  width: calc(780 / 1280 * 100%);
  margin: 2% auto 0;
}
/* main---------------- */
.main{
  padding-top: 8%;
  padding-bottom: 14%;
  background-image: url(../img/main-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
/* style-box---------------------- */
.style-box{
  position: relative;
  margin-top: 12%;
}
.style-box .number{
  width: calc(150.2292 / 1280 * 100%);
}
.style-box .title01,
.style-box .title02,
.style-box .title03,
.style-box .title04,
.style-box .title05,
.style-box .title06,
.style-box .line{
  position: relative;
  z-index: 2;
}
.style-box .title02{
  animation-duration: 1.4s;
  animation-delay: 0.4s;
}
.style-box .title04{
  animation-duration: 1s;
  animation-delay: 0.8s;
}
/*item01----------------------*/
.item01{
  margin-top: 0;
}
.item01 .number{
  position: relative;
  margin: 0 12% -4% auto;
  z-index: 2;
}
.item01 .box01{
  position: relative;
  right: 3%;
  width: calc(1138 / 1280 * 100%);
  margin-inline: auto;
}
.item01 .box01-1{
  width: calc(680 / 1138 * 100%);
}
.item01 .box01-2{
  position: relative;
  left: 5.5%;
  width: calc(473.3862 / 1138 * 100%);
  margin-top: 6%;
}
.item01 .box02{
  width: calc(1080 / 1280 * 100%);
  margin: -5.5% auto 6%;
}
.item01 .photo02{
  width: calc(458 / 473.3862 * 100%);
  margin: 0 auto;
}
.item01 .title01{
  width: calc(469.0532 / 473.3862 * 100%);
}
.item01 .title02{
  position: relative;
  right: 1%;
  width: calc(203.4837 / 473.3862 * 100%);
  margin: -33% auto 0;
}
.item01 .title03{
  width: calc(336 / 473.3862 * 100%);
  margin: 18% auto 0;
}
.item01 .title04{
  width: calc(380.6871 / 473.3862 * 100%);
  margin: -23% auto 23%;
}
.item01 .line{
  width: calc(380.6871 / 473.3862 * 100%);
  margin: 23% auto 0;
}
.item01 .title05{
  width: calc(371.6728 / 1280 * 100%);
  margin: -7% 16% 0 auto;
}
.item01 .title06{
  width: calc(474.3159 / 1280 * 100%);
  margin: -3% 5.5% 0 auto;
}
.item01 .link{
  margin: 6% 1% 0 auto;
}
/*item02----------------------*/
.item02 .number{
  position: relative;
  margin: 0 auto -6% 7%;
  z-index: 2;
}
.item02 .box01{
  width: calc(1199 / 1280 * 100%);
  margin: 0 0 0 auto;
}
.item02 .box01-1{
  width: calc(738 / 1199 * 100%);
}
.item02 .box01-2{
  position: relative;
  left: 5%;
  width: calc(461.1191 / 1199 * 100%);
  margin-top: 11%;
}
.item02 .box02{
  width: calc(1199 / 1280 * 100%);
  margin: -5.5% auto 6%;
}
.item02 .photo02{
  width: calc(458 / 461.1191 * 100%);
  margin: 0 auto;
}
.item02 .title01{
  width: calc(457.9668 / 461.1191 * 100%);
}
.item02 .title02{
  position: relative;
  right: 3%;
  width: calc(241.3764 / 461.1191 * 100%);
  margin: -30% auto 0;
}
.item02 .title03{
  width: calc(327 / 461.1191 * 100%);
  margin: 18% auto 0;
}
.item02 .title04{
  width: calc(437.718 / 461.1191 * 100%);
  margin: -44% auto 20%;
}
.item02 .line{
  width: calc(437.718 / 461.1191 * 100%);
  margin: 18% auto 0;
}
.item02 .title05{
  position: relative;
  right: 6%;
  width: calc(686.8817 / 738 * 100%);
  margin: -4% auto 0;
}
.item02 .link{
  margin: 12% auto 0 14%;
}
/*item03----------------------*/
.item03 .number{
  position: relative;
  margin: 0 22% 2% auto;
  z-index: 2;
}
.item03 .box01{
  justify-content: space-between;
  width: calc(1184.001 / 1280 * 100%);
}
.item03 .box01-1{
  width: calc(608 / 1184.001 * 100%);
}
.item03 .box01-2{
  width: calc(525.6143 / 1184.001 * 100%);
  margin-top: 9%;
}
.item03 .box02{
  width: calc(1080 / 1280 * 100%);
  margin: -5.5% auto 6%;
}
.item03 .photo02{
  width: calc(458 / 525.6143 * 100%);
  margin: 0 auto;
}
.item03 .photo03{
  width: calc(390 / 608 * 100%);
  margin: 0 0 0 auto;
}
.item03 .title01{
  width: calc(525.6143 / 525.6143 * 100%);
}
.item03 .title02{
  position: relative;
  left: 1%;
  width: calc(351.6071 / 525.6143 * 100%);
  margin: -26% auto 0;
}
.item03 .title03{
  width: calc(307 / 525.6143 * 100%);
  margin: 14% auto 0;
}
.item03 .title04{
  width: calc(434.0107 / 525.6143 * 100%);
  margin: -37% auto 12%;
}
.item03 .line{
  width: calc(434.0107 / 525.6143 * 100%);
  margin: 16% auto 0;
}
.item03 .title05{
  width: calc(381.436 / 608 * 100%);
  margin: -4% 5% 0 auto;
}
.item03 .title06{
  width: calc(356.946 / 608 * 100%);
  margin: -4% -6.5% -8% auto;
}
.item03 .link{
  margin: 12% auto 0 6%;
}
/*item04----------------------*/
.item04{
  margin-top: 10%;
}
.item04 .number{
  position: relative;
  margin: 0 11% -1% auto;
  z-index: 2;
}
.item04 .box01{
  justify-content: space-between;
  width: calc(1128 / 1280 * 100%);
  margin: 4% auto 0;
}
.item04 .box01-1{
  width: calc(544 / 1128 * 100%);
}
.item04 .box01-2{
  width: calc(544 / 1128 * 100%);
}
.item04 .box02{
  width: calc(1216 / 1280 * 100%);
  margin-top: 4%;
}
.item04 .title-box{
  width: calc(407.1297 / 1216 * 100%);
}
.item04 .photo03{
  position: relative;
  right: 8%;
  width: calc(458 / 1216 * 100%);
  margin-top: 1.5%;
}
.item04 .link-box{
  position: relative;
  right: 12%;
  width: calc(351 / 1216 * 100%);
}
.item04 .title01{
  width: calc(579.2734 / 1280 * 100%);
  margin: 0 auto;
}
.item04 .title02{
  position: relative;
  right: 19%;
  width: calc(298.3861 / 1280 * 100%);
  margin: -8% auto 0;
}
.item04 .title03{
  width: calc(240.0156 / 1280 * 100%);
  margin: 3% auto 0;
}
.item04 .title04{
  width: calc(351 / 351 * 100%);
  margin: -57% auto 43%;
}
.item04 .line{
  width: calc(351 / 351 * 100%);
  margin: 25% auto 0;
}
.item04 .title05{
  width: calc(317.3558 / 407.1297 * 100%);
  margin: -4% 5% 0 auto;
}
.item04 .title06{
  width: calc(351.6553 / 407.1297 * 100%);
  margin: -4% -16.5% -8% auto;
}
.item04 .link{
  margin: 6% auto 0 6%;
}
/*item05----------------------*/
.item05 .number{
  position: relative;
  margin: 0 16% -5.5% auto;
  z-index: 2;
}
.item05 .box01{
  position: relative;
  width: calc(1080 / 1280 * 100%);
  margin-inline: auto;
}
.item05 .box02{
  justify-content: space-between;
  width: calc(1180 / 1280 * 100%);
  margin: 4% 0 0 auto;
}
.item05 .box02-1{
  width: calc(540 / 1180 * 100%);
}
.item05 .box02-2{
  width: calc(574 / 1180 * 100%);
}
.item05 .title01{
  position: absolute;
  top: 26.5%;
  right: 5%;
  width: calc(252.248 / 1080 * 100%);
}
.item05 .title02{
  position: absolute;
  top: 15%;
  right: 6%;
  width: calc(256.6489 / 1080 * 100%);
}
.item05 .title03{
  position: absolute;
  top: 52%;
  right: 5%;
  width: calc(242.6236 / 1080 * 100%);
}
.item05 .title04{
  width: calc(436 / 574 * 100%);
  margin: -36% auto 17% 0;
}
.item05 .line{
  width: calc(436 / 574 * 100%);
  margin: 18% auto 0 0;
}
.item05 .title05{
  width: calc(316.7764 / 540 * 100%);
  margin: -17% auto 0 -10%;
}
.item05 .title06{
  width: calc(451.4378 / 540 * 100%);
  margin: -11% auto 0 3%;
}
.item05 .link{
  margin: 10% 0 0 auto;
}
/*item06----------------------*/
.item06{
  margin-top: 14%;
  padding-top: 4%;
}
.item06 .number{
  position: relative;
  margin: 0 22% -16% auto;
  z-index: 2;
}
.item06 .box01{
  justify-content: space-between;
  width: calc(1201 / 1280 * 100%);
}
.item06 .box01-1{
  width: calc(608 / 1201 * 100%);
}
.item06 .box01-2{
  width: calc(544 / 1201 * 100%);
  margin-top: 18%;
}
.item06 .photo02{
  width: calc(458 / 608 * 100%);
  margin: 22% 7% 0 auto;
}
.item06 .title01{
  width: calc(387.0151 / 544 * 100%);
  margin: 16% auto 0;
}
.item06 .title02{
  position: relative;
  right: 21%;
  width: calc(221.2045 / 544 * 100%);
  margin: -21% auto 0;
}
.item06 .title03{
  width: calc(221 / 544 * 100%);
  margin: 10% auto 0;
}
.item06 .title04{
  width: calc(414 / 544 * 100%);
  margin: -23% auto 10%;
}
.item06 .line{
  width: calc(414 / 544 * 100%);
  margin: 18% auto 0;
}
.item06 .title05{
  width: calc(354.1653 / 608 * 100%);
  margin: -9% auto 0 13%;
}
.item06 .title06{
  width: calc(333.1992 / 608 * 100%);
  margin: -7% 4% -8% auto;
}
.item06 .link{
  margin: 10% auto 0 0;
}
/*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(70 / 1280 * 100vw);
  z-index: 9999;
}
.stepnav .list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}
.stepnav .list a{
  position: relative;
  display: block;
  min-width: 20px;
}
.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(45.6885 / 1280 * 100%);
  z-index: 99;
}
.pagetop .image{
  width: 100%;
}
/*footnav*/
.footnav {
  display: none;
}
.footlist {
  display: flex;
  align-items: flex-end;
}

@media (max-width: 768px) {
  /* link------------------------ */
  div[class*="item0"] .link{
    right: auto;
    width: calc(315.4235 / 375 * 100%);
    margin: 14% 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;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .zoomup.active,
  .zoomup02.active,
  .slide-up.active,
  .slide-right.active,
  .slide-left.active
  .fade.active,
  .style-box .title02{
    animation-delay: 0s;
  }
  /* header------------------------ */
  .header{
    aspect-ratio: 375 / 1218;
    background-image: url(../img/mv-bg-sp.png);
  }
  .header .title01{
    top: 39%;
    width: calc(340.0474 / 375 * 100%);
  }
  .header .title02{
    width: calc(325.4834 / 375 * 100%);
  }
  .header .title03{
    top: 41.75%;
    width: calc(158.5786 / 375 * 100%);
  }
  .header .title04{
    top: 51%;
    width: calc(242.7495 / 375 * 100%);
  }
  .header .icon{
    top: 50%;
    left: 77.25%;
    width: calc(32.9938 / 375 * 100%);
  }
  .header-logo {
    top: 59%;
    left: 50%;
    translate: -50% 0;
    width: calc(66 / 375 * 100%);
  }
  .header .lead-title{
    bottom: 8%;
    width: calc(269.7667 / 375 * 100%);
  }
  /*nav-wrapper*/
  .nav-wrapper{
    position: relative;
    padding-bottom: 12%;
  }
  .nav-wrapper .title01{
    width: calc(242.8174 / 375 * 100%);
    margin: -14% auto 0;
  }
  .nav-wrapper .title02{
    left: 23.25%;
    width: calc(113.7148 / 375* 100%);
    margin: -16.5% auto;
  }
  .nav-wrapper .line01{
    position: absolute;
    top: 4%;
    width: 100%;
    z-index: 1;
  }
  .nav-wrapper .line02{
    width: 100%;
    margin-top: 10%;
  }
  .nav-wrapper .nav{
    position: relative;
    width: 97%;
    margin: 20% auto 0 3%;
    z-index: 4;
  }
  .nav-wrapper .nav .list .item{
    padding: 0 1vw;
  }
  /* style-box---------------- */
  .style-box{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 1%;
    padding-bottom: 10%;
  }
  div[class*="item0"] .box01,
  div[class*="item0"] .box02{
    right: 0;
    left: 0;
    display: contents;
    width: 100%;
    margin: 0 auto;
  }
  div[class*="item0"] .box01-1,
  div[class*="item0"] .box01-2,
  div[class*="item0"] .box02-1,
  div[class*="item0"] .box02-2{
    display: contents;
  }
  div[class*="item0"] .number{
    width: calc(105.1664 / 375 * 100%);
    order: 1;
  }
  div[class*="item0"] .photo01{
    order: 2;
  }
  div[class*="item0"] .title01{
    order: 3;
  }
  div[class*="item0"] .title02{
    order: 4;
  }
  div[class*="item0"] .title03{
    order: 5;
  }
  div[class*="item0"] .title04{
    order: 6;
  }
  div[class*="item0"] .line{
    order: 7;
  }
  div[class*="item0"] .photo02{
    order: 8;
  }
  div[class*="item0"] .photo03{
    order: 8;
  }
  div[class*="item0"] .title05{
    order: 9;
  }
  div[class*="item0"] .title06{
    order: 11;
  }
  div[class*="item0"] .link{
    order: 12;
  }
  .main{
    position: relative;
    padding: 18% 0 20%;
    background: none;
  }
  .main .bg-box{
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  /* item01------------------------ */
  .item01 .number{
    margin: 0 auto -14% 6%;
  }
  .item01 .box01-1{
    width: 100%;
  }
  .item01 .photo01{
    width: calc(350 / 375 * 100%);
    margin: 0 0 0 auto;
   }
   .item01 .photo02{
    width: calc(300 / 375 * 100%);
    margin: 10% auto 0;
   }
   .item01 .photo03{
    width: 100%;
    margin: 8% auto 0;
   }
  .item01 .title01{
    width: calc(304.8828 / 375 * 100%);
    margin: 12% auto 0;
  }
  .item01 .title02{
    width: calc(132.2599 / 375 * 100%);
    margin: -27% auto 18%;
  }
  .item01 .title03{
    width: calc(301 / 375 * 100%);
    margin: 0 auto;
  }
  .item01 .title04{
    width: calc(266.481 / 375 * 100%);
    margin: 10% auto 0;
  }
  .item01 .line{
    width: calc(266.481 / 375 * 100%);
    margin: -18% auto 0;
    z-index: 0;
  }
  .item01 .title05{
    width: calc(223.0034 / 375 * 100%);
    margin: -17% 29% 0 auto;
  }
  .item01 .title06{
    width: calc(284.588 / 375 * 100%);
    margin: -6% 6.5% 0 auto;
  }
  /* item02------------------------ */
  .item02{
    margin-top: 20%;
    overflow: hidden;
  }
  .item02 .number{
    margin: 0 6% -25% auto;
  }
  .item02 .box01-1{
    width: 100%;
  }
  .item02 .photo01{
    width: calc(350 / 375 * 100%);
    margin: 10% 0 0 auto;
   }
   .item02 .photo02{
    width: calc(300 / 375 * 100%);
    margin: 10% auto 0 0;
   }
   .item02 .photo03{
    width: 100%;
    margin: 8% auto 0;
   }
  .item02 .title01{
    width: calc(297.6768 / 375 * 100%);
    margin: 12% auto 0;
  }
  .item02 .title02{
    width: calc(156.8983 / 375 * 100%);
    margin: -24% auto 18%;
  }
  .item02 .title03{
    width: calc(291 / 375 * 100%);
    margin: 0 auto;
  }
  .item02 .title04{
    width: calc(306.4026 / 375 * 100%);
    margin: 10% auto 0;
  }
  .item02 .line{
    width: calc(306.4026 / 375 * 100%);
    margin: -38% auto 0;
    z-index: 0;
  }
  .item02 .title05{
    width: calc(342.5208 / 375 * 100%);
    margin: -5% auto 0 12%;
  }
  /* item03------------------------ */
  .item03{
    margin-top: 20%;
  }
  .item03 .number{
    margin: 0 auto -25% 6%;
  }
  .item03 .box01-1{
    width: 100%;
  }
  .item03 .photo01{
    width: 100%;
    margin: 10% 0;
   }
   .item03 .photo02{
    width: calc(300 / 375 * 100%);
    margin: 14% auto 0;
    order: 7 !important;
   }
   .item03 .photo03{
    width: calc(286 / 375 * 100%);
    margin: 8% auto 0 0;
   }
  .item03 .title01{
    width: calc(213.0776 / 375 * 100%);
    margin: 10% auto 0;
  }
  .item03 .title02{
    width: calc(214.9327 / 375 * 100%);
    margin: -32% auto 18%;
  }
  .item03 .title03{
    width: calc(273 / 375 * 100%);
    margin: 6% auto;
  }
  .item03 .title04{
    width: calc(303.8075 / 375 * 100%);
    margin: 5% auto 0;
  }
  .item03 .line{
    width: calc(303.8075 / 375 * 100%);
    margin: -36% auto 0;
    z-index: 0;
  }
  .item03 .title05{
    width: calc(228.8606 / 375 * 100%);
    margin: -4% auto 0 24%;
  }
  .item03 .title06{
    width: calc(214.1665 / 375 * 100%);
    margin: -3% auto 0 40%;
  }
  /* item04------------------------ */
  .item04{
    overflow: hidden;
  }
  .item04 .title-box,.item04 .link-box{
    display: contents;
  }
  .item04 .number{
    margin: 0 auto -14% 6%;
  }
  .item04 .box01-1{
    width: 100%;
  }
  .item04 .photo01{
    width: 100%;
    margin: 0 auto;
   }
   .item04 .photo02{
    width: calc(320 / 375 * 100%);
    margin: 12% auto 0 0;
   }
   .item04 .photo03{
    right: auto;
    width: calc(295 / 375 * 100%);
    margin: 8% 0 0 auto;
   }
  .item04 .title01{
    width: calc(248.1957 / 375 * 100%);
    margin: 18% auto 0;
  }
  .item04 .title02{
    right: 9%;
    width: calc(132.2599 / 375 * 100%);
    margin: -32% auto 18%;
  }
  .item04 .title03{
    width: calc(211 / 375 * 100%);
    margin: 10% auto 0;
  }
  .item04 .title04{
    width: calc(245.7 / 375 * 100%);
    margin: 12% auto 0;
  }
  .item04 .line{
    width: calc(245.7 / 375 * 100%);
    margin: -36% auto 0;
    z-index: 0;
  }
  .item04 .title05{
    width: calc(222.1494 / 375 * 100%);
    margin: -7% 35% 0 auto;
  }
  .item04 .title06{
    width: calc(246.1585 / 375 * 100%);
    margin: -6% 18.5% 0 auto;
  }
  /* item05------------------------ */
  .item05 .number{
    margin: 0 6% -21% auto ;
  }
  .item05 .box01-1{
    width: 100%;
  }
  .item05 .photo01{
    width: 100%;
    margin: 10% 0;
   }
   .item05 .photo02{
    width: calc(335 / 375 * 100%);
    margin: 12% 0 0 auto;
   }
   .item05 .photo03{
    width: calc(287 / 375 * 100%);
    margin: 8% auto 0 0;
   }
  .item05 .title01{
    position: relative;
    right: auto;
    top: auto;
    width: calc(163.9595 / 375 * 100%);
    margin: 12% auto 0;
  }
  .item05 .title02{
    position: relative;
    right: 3%;
    top: 0;
    width: calc(166.8208 / 375 * 100%);
    margin: -35% auto 18%;
  }
  .item05 .title03{
    position: relative;
    right: auto;
    width: calc(217 / 375 * 100%);
    margin: 10% auto 0;
  }
  .item05 .title04{
    width: calc(296.9155 / 375 * 100%);
    margin: 12% auto 0;
  }
  .item05 .line{
    width: calc(296.9155 / 375 * 100%);
    margin: -36% auto 0;
    z-index: 0;
  }
  .item05 .title05{
    width: calc(190.0706 / 375 * 100%);
    margin: -3% auto 0 8%;
  }
  .item05 .title06{
    width: calc(270.8672 / 375 * 100%);
    margin: -9% auto 0 19%;
  }
  /* item06------------------------ */
  .item06 .number{
    margin: 0 auto -14% 6%;
  }
  .item06 .box01-1{
    width: 100%;
  }
  .item06 .photo01{
    width: 100%;
    margin: 0 auto;
   }
   .item06 .photo02{
    width: calc(335 / 375 * 100%);
    margin: 12% auto 0 0;
   }
   .item06 .photo03{
    width: calc(287 / 375 * 100%);
    margin: 8% 0 0 auto;
   }
  .item06 .title01{
    width: calc(251.5581 / 375 * 100%);
    margin: 22% auto 0;
  }
  .item06 .title02{
    width: calc(143.7818 / 375 * 100%);
    margin: -22% auto 12%;
  }
  .item06 .title03{
    width: calc(193 / 375 * 100%);
    margin: 2% auto;
  }
  .item06 .title04{
    width: calc(289.8 / 375 * 100%);
    margin: 8% auto 0;
  }
  .item06 .line{
    width: calc(289.8 / 375 * 100%);
    margin: -22% auto 0;
    z-index: 0;
  }
  .item06 .title05{
    width: calc(212.4978 / 375 * 100%);
    margin: -4% 35% 0 auto;
  }
  .item06 .title06{
    width: calc(199.9175 / 375 * 100%);
    margin: -6% 11.5% 0 auto;
  }
  /* bottom-block------------------ */
  .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: #f6f7d9;
    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%);
  }
}