@font-face {
  font-family: "perpetua-titling-mt-light";
  src: url("../tont/perpetua-titling-mt-light.woff") format("woff");
}
:root{
  --color01-1: #5D92C0;
  --color01-2: #343254;
  --color02: #8E7A9A;
  --color03: #5B5B5B;
  --color04: #A68175;
  --font-shippori: "Shippori Mincho B1", serif;
}
*,*::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%;height: auto;vertical-align: top;}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}}

*:focus {
  outline: none;
}

body,a,p{
  color: #fff;
  font-family: var(--font-shippori);
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  line-height: 2.2;
  letter-spacing: 0.08rem;
  -webkit-font-smoothing: antialiased;
}
body{
  position: relative;
  background: #536d8a;
}
ul{
  margin: 0;
  padding: 0;
}
li{
  list-style: none;
}
.pc{
  display: block;
}
.sp{
  display: none;
}
.slide-box{
  max-width: 100%;
  overflow: hidden;
}
.flex-box{
  display: flex;
  justify-content: center;
}
.flex-reverse{
  flex-direction: row-reverse;
}
.image{
  width: 100%;
}

/* アニメーション */
.fade{
  opacity: 0;
}
.fade.active{
  animation-name: fade;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fade{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-out{
  opacity: 1;
}
.fade-out.active{
  animation-name: fade-out;
  animation-duration: 6s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 1;
}
@keyframes fade-out{
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.blurfade{
  opacity: 0;
  filter: blur(6px);
}
.blurfade.active{
  animation-name: blurfade;
  animation-duration: 3.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 1.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transform: opacity;
  opacity: 0;
}
@keyframes blurfade{
  0% {
    filter: blur(6px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
.blurfade-out{
  opacity: 0.6;
  filter: blur(6px);
}
.blurfade-out.active{
  animation-name: blurfade-out;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transform: opacity;
  opacity: 0;
}
@keyframes blurfade-out{
  0% {
    filter: blur(6px);
    opacity: 0.6;
  }
  100% {
    filter: blur(0);
    opacity: 0;
  }
}
.zoomin{
  opacity: 1;
  transform: scale(1);
}
.zoomin.active{
  animation-name: zoomin;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  will-change: transform;
}
@keyframes zoomin{
  0% {
    opacity: 0.6;
    opacity: 1;
    transform: scale(1) rotate(0);
  }
  50%{
    opacity: 1;
    transform: scale(1.2) rotate(0);
    filter: drop-shadow(0 0 1px rgb(255 255 200 / 0.6));
  }
  100% {
    opacity: 0.6;
    opacity: 1;
    transform: scale(1) rotate(360deg);
  }
}
.clippath-top{
  opacity: 0;
}
.clippath-top.active{
  animation-name: clippath-top;
  animation-duration: 1.6s;
  animation-timing-function: ease;
  animation-delay: 0.8s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes clippath-top{
  0% {
    filter: blur(3px);
    opacity: 0;
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.clippath-bottom{
  opacity: 0;
}
.clippath-bottom.active{
  animation-name: clippath-bottom;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes clippath-bottom{
  0% {
    filter: blur(3px);
    opacity: 0;
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.slide-right{
  opacity: 0;
}
.slide-right.active{
  animation: slide-right;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
@keyframes slide-right{
  0% {
    opacity: 0;
    transform: translate(-3%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.slide-left{
  opacity: 0;
}
.slide-left.active{
  animation: slide-left;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
  opacity: 0;
}
@keyframes slide-left{
  0% {
    opacity: 1;
    transform: translate(100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.slide-up{
  opacity: 0;
}
.slide-up.active{
  animation: slide-up;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slide-up{
  0% {
    opacity: 0;
    transform: translate(0, 10%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.slide-down{
  opacity: 0;
}
.slide-down.active{
  animation: slide-down;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
  opacity: 0;
}
@keyframes slide-down{
  0% {
    opacity: 0;
    transform: translate(0, -20%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.clippath-left{
  opacity: 0;
}
.clippath-left.active{
  animation-name: clippath-left;
  animation-duration: 1.6s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes clippath-left{
  0% {
    filter: blur(3px);
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.clippath-left02{
  opacity: 0;
}
.clippath-left02.active{
  animation-name: clippath-left02;
  animation-duration: 1.6s;
  animation-timing-function:cubic-bezier(0.19, 0.2, 0.22, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes clippath-left02{
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.star-box{
  position: relative;
}
.star-box .star{
  width: 100%;
}
.star-shine{
  animation-name: star-shine;
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transform-origin: center;
  filter: drop-shadow(0 0 1px rgb(255 255 200 / 0.6));
}
.star-box._03 .star{
  animation-delay: 0.5s;
}
@keyframes star-shine{
  0% {
		opacity: 1;
	}
  30% {
		opacity: 0.1;
	}
  42% {
		opacity: 1;
	}
  50% {
		opacity: 0.2;
    translate: 1px 3px;
	}
	70% {
		opacity: 0.8;
    scale: 1.1;
	}
  80% {
		opacity: 0.1;
	}
  92% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
.star-slide{
  opacity: 0;
}
.star-slide.active{
  animation: star-slide;
  animation-duration: 4s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
.star-slide._04.active{
  animation-delay: 1s;
}
@keyframes star-slide{
  0% {
    opacity: 1;
    transform: translate(0, -200%) scale(2.4);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

/* header */
.header{
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 720;
  overflow: hidden;
}
.header .photo{
  position: relative;
  width: calc(796 / 1280 * 100%);
  margin: 2% 2% auto auto;
  z-index: 2;
}
.header .photo .image{
  animation-duration: 2s;
  animation-delay: 1s;
}
.header .star-box._01{
  position: absolute;
  top: 9%;
  left: 3%;
  width: calc(42.2377 / 1280 * 100%);
  animation-delay: 0.6s;
}
.header .star-box._02{
  position: absolute;
  top: 63%;
  left: 30%;
  width: calc(28.4731 / 1280 * 100%);
  animation-delay: 1s;
}
.header .star-box._04{
  position: absolute;
  bottom: 0;
  right: 10%;
  width: calc(105.9981 / 1280 * 100%);
  z-index: 10;
}
.header .title-box{
  width: calc(363.5973 / 1280 * 100%);
  position: absolute;
  left: 4.5%;
  top: 17%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation-duration: 1.6s;
  animation-delay: 1s;
}
.header .title01{
  width: calc(248.6123 / 363.5973 * 100%);
}
.header .title02{
  position: relative;
  width: calc(363.5973 / 363.5973 * 100%);
  margin-top: 16%;
  padding-bottom: 3%;
}
.header .title02::after{
  content: "";
  display: block;
  width: 3vw;
  height: 1px;
  background: #b9beaf;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
.header .title03{
  width: calc(215 / 363.5973 * 100%);
  margin-top: 12%;
}
.header .title04{
  position: absolute;
  bottom: 14%;
  left: 4%;
  width: calc(732.5184 / 1280 * 100%);
  z-index: 3;
  animation-duration: 2s;
}
.header .title05{
  position: absolute;
  bottom: 13%;
  left: 62%;
  width: calc(85.3965 / 1280 * 100%);
  z-index: 3;
  animation-delay: 2s;
}
.header .title06{
  position: absolute;
  bottom: 6%;
  left: 4%;
  width: calc(730.4497 / 1280 * 100%);
  animation-delay: 2.4s;
}
.header .logo-box{
  position: absolute;
  top: 2%;
  right: 1%;
  width: calc(52 / 1280 * 100%);
  z-index: 2;
}
.header .logo{
  width: 100%;
}
/* lead */
.lead{
  position: relative;
  margin-top: 5%;
}
.lead .text{
  color: #b9beaf;
  text-align: center;
  font-size: calc(16 / 1280 * 100vw);
  line-height: calc(40 / 16);
  letter-spacing: 0.06rem;
  -webkit-font-smoothing: subpixel-antialiased;
}
.lead .star-box .star{
  width: 100%;
}
.lead .star-box._01{
  position: absolute;
  top: -16%;
  left: 13%;
  width: calc(88.0666 / 1280 * 100%);
}
.lead .star-box._02{
  position: absolute;
  top: -70%;
  right: 7%;
  width: calc(106.8249 / 1280 * 100%);
}
/* リンクボックス */
.link-box{
  width: calc(315.4239 / 1280 * 100vw);
  margin: 0 auto;
}
.link-box .main{
  margin-bottom: 5%;
  padding-bottom: 4%;
  border-bottom: 1px solid #fff;
}
.cart-btm{
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-in-out;
  margin-bottom: 0.3em;
}
.cart-title{
  position: relative;
  width: 100%;
  font-size: calc(15.8105 / 1280 * 100vw);
  line-height: 1.4;
  letter-spacing: 0.02rem;
  font-weight: 400;
  font-style: normal;
}
.cart-btm.size1 .cart-title{
  padding-top: 1.5em;
}
.cart-yen{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 1.4;
  font-size: calc(15.8105 / 1280 * 100vw);
  letter-spacing: 0.06rem;
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
}
.cart-yen img{
  width: calc(15.8105 / 1280 * 100vw);
  margin: 0 0.5rem 0 0;
}
.cart-yen .size-space{
  margin-right: 1.06rem;
}
.cart-yen span{
  margin: 0 0 -2px 3%;
  color: #fff;
  font-size: calc(9.0346 / 1280 * 100vw);
}
.cart-btm .btn{
  margin: 0 0 0 1%;
  padding: 0.4em 0.6em;
  color: #536d8a;
  background: #b9beaf;
  border: 1px solid #b9beaf;
  font-family: Arial, Helvetica, sans-serif;
  font-size: calc(10.6904 / 1280 * 100vw);
  line-height: 1em;
}
.other .cart-btm .btn{
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.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;
  letter-spacing: 0.02rem;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: transform;
}
.cart-btm:hover .btn-arrow span {
  -webkit-transform: translate3d(-.5rem, 0, 0);
  transform: translate3d(-.5rem, 0, 0);
}
.btn-arrow img{
  position: absolute;
  width: 0.9em;
  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;
  -webkit-text-stroke-color: transparent;
}
.cart-btm:hover .btn-arrow img {
  opacity: 1;
  right: -0.75rem;
}
/* main-wrapper-- */
.main-wrapper{
  margin-top: 30%;
}
/* side-title-- */
.side-title{
  position: sticky;
  top: 50%;
  left: 2%;
  translate: 0 -50%;
  width: calc(26.2603 / 1280 * 100%);
  z-index: 9;
}
/* 共通---------------------- */
.style-wrapper{
  position: relative;
  margin-top: 5%;
  padding-top: 1%;
  padding-bottom: 10%;
  overflow: hidden;
}
.style-wrapper .number{
  position: relative;
  z-index: 2;
}
.style-wrapper .style-star{
  width: calc(19.2055 / 1280 * 100vw);
  margin: 10% auto 0;
}
.style-wrapper .text,
.accessory .text-title{
  margin-top: 5%;
  text-align: center;
  font-family: var(--font-shippori);
  font-size: calc(24 / 1280 * 100vw);
  line-height: calc(56 / 28);
  letter-spacing: 0;
}
.style-wrapper .text span,
.accessory .text-title span{
  font-size: calc(28 / 1280 * 100vw);
}
/* style01-------------------- */
.style01{
  right: 2%;
  margin-top: -62%;
}
.style01 .box01{
  justify-content: space-between;
  width: calc(1058 / 1280 * 100%);
  margin: 0 auto;
}
.style01 .box01-1{
  display: flex;
  flex-direction: column;
  width: calc(438 / 1058 * 100%);
}
.style01 .box01-1 .number{
  width: calc(140.0015 / 438 * 100%);
  margin: 0 0 0 auto;
}
.style01 .box01-1 .title{
  width: calc(322.3315 / 438 * 100%);
  margin: 2% auto 0;
}
.style01 .box01-1 .photo-box{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 438 / 599;
  margin-top: 16%;
  background: url(../img/style01-frame.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.style01 .box01-1 .photo-box .photo{
  width: calc(378 / 438 * 100%);
}
.style01 .box01-1 .link-box{
  margin-top: 16%;
}
.style01 .box01-2{
  position: relative;
  width: calc(578 / 1058 * 100%);
  margin-top: 4%;
}
.style01 .box02{
  width: calc(384 / 1280 * 100%);
  margin: -30% auto 0 23%;
}
/* style02-------------------- */
.style02 .box01{
  position: relative;
  left: 3%;
  justify-content: space-between;
  width: calc(1093.5 / 1280 * 100%);
  margin: 0 auto;
}
.style02 .box01-1{
  display: flex;
  flex-direction: column;
  width: calc(434 / 1093.5 * 100%);
}
.style02 .box01-1 .number{
  position: relative;
  left: 46%;
  width: calc(164.6983 / 434 * 100%);
  margin: 0 0 0 auto;
}
.style02 .box01-1 .title{
  width: calc(349.2227 / 434 * 100%);
  margin: 2% auto 0;
}
.style02 .box01-1 .link-box{
  margin-top: 16%;
}
.style02 .box01-2{
  width: calc(585 / 1093.5 * 100%);
  margin-top: 5%;
}
.style02 .box01-2 .photo-box{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 438 / 599;
  background: url(../img/style02-frame.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.style02 .box01-2 .photo-box .photo{
  width: calc(525 / 585 * 100%);
}
.style02 .box02{
  position: relative;
  right: 12%;
  justify-content: space-between;
  align-items: flex-end;
  width: calc(950 / 1280 * 100%);
  margin: -26% auto 0 23%;
}
.style02 .box02-1{
  width: calc(434 / 950 * 100%);
}
/* style03-------------------- */
.style03 .box01{
  justify-content: space-between;
  width: calc(1089 / 1280 * 100%);
  margin: 0 auto;
}
.style03 .box01-1{
  display: flex;
  flex-direction: column;
  width: calc(508 / 1089 * 100%);
}
.style03 .box01-1 .number{
  width: calc(154.9463 / 508 * 100%);
  margin: 0 auto;
}
.style03 .box01-1 .title{
  width: calc(293.5415 / 508 * 100%);
  margin: 16% auto 0;
}
.style03 .box01-1 .photo-box{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 508 / 696;
  margin-top: 21%;
  background: url(../img/style03-frame.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.style03 .box01-1 .photo-box .photo{
  width: calc(448 / 508 * 100%);
}
.style03 .box01-1 .link-box{
  margin: 16% 6% 0 auto;
}
.style03 .box01-2{
  width: calc(562 / 1089 * 100%);
  margin-top: 5%;
}
.style03 .box02{
  position: relative;
  width: calc(564 / 1280 * 100%);
  margin: -37% auto 0 14.5%;
  z-index: 2;
}
/* style04-------------------- */
.style04 .bg{
  position: absolute;
  top: 25%;
  left: 39%;
  display: block;
  width: calc(346 / 1280 * 100%);
  height: auto;
  aspect-ratio: 346 / 514;
  background: #72879f;
}
.style04 .box01{
  position: relative;
  right: 3%;
  justify-content: space-between;
  width: calc(1051.5 / 1280 * 100%);
  margin: 0 auto;
}
.style04 .box01-1{
  display: flex;
  flex-direction: column;
  width: calc(380 / 1051.5 * 100%);
}
.style04 .box01-1 .number{
  position: relative;
  right: 58%;
  width: calc(183.4794 / 380 * 100%);
}
.style04 .box01-1 .title{
  width: calc(328.6299 / 380 * 100%);
  margin: -30% auto 0 4%;
}
.style04 .box01-1 .photo-box{
  margin-top: 56%;
}
.style04 .box01-2{
  width: calc(578 / 1051.5 * 100%);
}
.style04 .box01-2 .photo-box{
  width: 100%;
}
.style04 .box02{
  margin-top: -6%;
}
.style04 .box02 .link-box{
  position: relative;
  right: 10%;
}
/* style05-------------------- */
.style05 .box01{
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.style05 .box01 .number{
  width: calc(157.6338 / 1280 * 100%);
}
.style05 .box01 .title{
  width: calc(596.8394 / 1280 * 100%);
  margin: 2% auto 0;
}
.style05 .box01 .style-star{
  margin-top: 2%;
}
.style05 .box01 .text{
  margin-top: 1.5%;
}
.style05 .box01-1 .link-box{
  margin-top: 16%;
}
.style05 .box02{
  justify-content: space-between;
  align-items: flex-end;
  width: calc(1051 / 1280 * 100%);
  margin: 6% auto 0;
}
.style05 .box02-1{
  width: calc(638 / 1051 * 100%);
}
.style05 .box02-1 .photo-box{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 638 / 906;
  background: url(../img/style05-frame.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.style05 .box02-1 .photo-box .list{
  width: calc(578 / 638 * 100%);
}
.style05 .box02-2{
  width: calc(360 / 1051 * 100%);
}
.style05 .box02-2 .link-box{
  margin-top: 36%;
}
/* style06-------------------- */
.style06 .box01{
  justify-content: space-between;
  width: calc(1148 / 1280 * 100%);
  margin: 0 0 0 auto;
}
.style06 .box01-1{
  display: flex;
  flex-direction: column;
  width: calc(480 / 1148 * 100%);
}
.style06 .box01-1 .number{
  width: calc(164.3211 / 480 * 100%);
  margin: 0 auto 0;
}
.style06 .box01-1 .title{
  width: calc(326.75 / 480 * 100%);
  margin: 12% auto 0;
}
.style06 .box01-1 .list{
  margin-top: 16%;
}
.style06 .box01-2{
  width: calc(602 / 1148 * 100%);
  margin-top: 8%;
}
.style06 .box01-2 .link-box{
  margin: 16% auto 0 20%;
}
/* item-area */
.item-area{
  position: relative;
  margin-top: 8%;
}
.item-area .title{
  display: block;
  width: calc(318.7102 / 1280 * 100%);
  margin-inline: auto;
}
.item-area .list{
  display: flex;
  justify-content: center;
  gap: 3%;
  margin-top: 2%;
}
.item-area .list .item{
  width: calc(194 / 1280 * 100%);
}
.item-area .list .item:nth-child(1){
  animation-delay: 0s;
}
.item-area .list .item:nth-child(2){
  animation-delay: 0.4s;
}
.item-area .list .item:nth-child(3){
  animation-delay: 0.8s;
}
.item-area .list .item:nth-child(4){
  animation-delay: 1.2s;
}
.item-area .list .link-box{
  width: calc(155.6606 / 194 * 100%);
  margin-top: 8%;
}
.item-area .list .link-box .main{
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.item-area .star-box{
  position: absolute;
}
.item-area .star-box .star{
  width: 100%;
}
.item-area._01 .star-box._01{
  top: 10%;
  left: 10%;
  width: calc(152.0004 / 1280 * 100%);
}
.item-area._01 .star-box._02{
  top: 20%;
  right: 12%;
  width: calc(107.9998 / 1280 * 100%);
}
.item-area._02 .star-box._01{
  top: 3%;
  left: 4%;
  width: calc(150.9988 / 1280 * 100%);
}
.item-area._02 .star-box._02{
  top: 6%;
  right: 4%;
  width: calc(105.9981 / 1280 * 100%);
}
/* accessory-------------------- */
.accessory{
  justify-content: flex-start;
  align-items: center;
  margin-top: 6%;
  padding: 2% 0;
  background: #7489a0;
  overflow: hidden;
}
.accessory .sidetitle{
  width: calc(98.0661 / 1280 * 100%);
  margin-left: 2%;
}
.accessory .sidetitle .image{
  animation-delay: 0.2s;
}
.accessory .text-box{
  width: calc(405.6884 / 1280 * 100%);
  margin-left: 14%;
}
.accessory .text-title{
  margin-top: 0;
  text-align: left;
}
.accessory .line-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100vw;
  margin-top: 5%;
  margin-left: -12%;
}
.accessory .star{
  width: calc(20 / 1280 * 100vw);
}
.accessory .line{
  width: 100%;
  height: 1px;
  margin-left: 0.5%;
  background: #fff;
  animation-duration: 3s;
  animation-delay: 0.4s;
}
.accessory .text{
  margin-top: 0;
  font-size: calc(18 / 1280 * 100vw);
  line-height: calc(32 / 18);
  letter-spacing: 0;
}
.accessory .btn{
  display: block;
  width: 100%;
  margin-top: 10%;
  padding: 3% 0;
  background: #536d8a;
  border-radius: 27px;
  transition: 0.3s;
}
.accessory .btn:hover{
  background: #b9beaf;
}
.accessory .btn .image{
  display: block;
  width: calc(285.1101 / 412 * 100%);
  margin: 0 auto;
}
.accessory .photo{
  position: relative;
  width: calc(330 / 1280 * 100%);
  margin-left: 4%;
  z-index: 2;
}
.accessory .photo .image{
  animation-duration: 2s;
  animation-delay: 0.8s;
}
/* archive--------------- */
.archive{
  margin: 6% auto 0;
}
.archive .title{
  display: block;
  width: calc(119 / 1280 * 100%);
  margin-inline: auto;
}
.archive .banner{
  display: block;
  width: calc(350 / 1280 * 100%);
  margin: 1.5% auto 0;
}
/* staff--------------- */
.staff{
  width: calc(271.9087 / 1280 * 100%);
  margin: 6% auto 4%;
}
/*banner-block---------------*/
.c-btn01{
  width: calc(603 / 1280 * 100%);
  margin: 0 auto 2% auto;
  border: 1px solid #ccc;
  display: block;
  transition: 0.6s ease-in-out;
}
.c-btn01:hover{
  transition: 0.6s ease-in-out;
  background: rgba(255,255,255,0.2);
}
.end-box{
  width: calc(218.0356 / 1280 * 100%);
  margin: 5% auto 0;
}
/* footer---------------- */
.footer{
  letter-spacing: 0.3em;
  padding: 0 0 2% 0;
  position: relative;
  text-align: center;
}
.footer a{
  transition: 0.3s ease-in-out;
}
.footer a:hover img{
  opacity: 0.6;
  transition: 0.3s ease-in-out;
}
.footer_sns {
  display: inline-block;
  width: 2.5%;
  margin: 3% auto 0;
}
.f-ow {
  width: 120px;
  margin: 25px auto 0 auto;
}
.copyright {
  font-family: "Helvetica",serif;
  font-size: 10px;
  letter-spacing: 0.02em;
  margin: 34px 0 0;
}
.pagetop{
  position: fixed;
  right: 30px;
  bottom: 20px;
  width: calc(79.6479 / 1280 * 100%);
  z-index: 99;
}
/* ナビ */
.stepnav {
  position: fixed;
  align-items: center;
  right: 1%;
  top: 46%;
  width: calc(34.9575 / 1280 * 100%);
  transform: translateY(-50%);
  margin-top: -0.8vw;
  z-index: 99;
}
.stepnav .nav-list{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stepnav .title{
  width: 100%;
  height: auto;
  margin: 0 6% -50% auto;
}
.stepnav .nav-list a{
  position: relative;
  color: #b9beaf;
  font-family: 'perpetua-titling-mt-light', sans-serif;
  font-size: min(32px,2.4vw);
  line-height: 1.8;
}
.stepnav .nav-list a::after{
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.1s ease-in-out;
}
.stepnav .nav-list a.current{
  color: #fff;
}
.stepnav .nav-list a.current::after{
  width: 100%;
}

@media screen and (max-width: 768px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  .flex-reverse{
    flex-direction: column;
  }
  /* アニメーション */
  .clippath-left.active,
  .fade.active{
    animation-delay: 0s;
  }
  /* header */
  .header{
    aspect-ratio: 375 / 667;
  }
  .header .list{
    width: 100%;
    aspect-ratio: 676 / 805;
    margin: 0 auto;
    overflow: hidden;
  }
  .header .title-box{
    width: 100%;
    left: 50%;
    top: 44%;
    translate: -50% 0;
    animation-delay: 1.8s;
  }
  .header .title01{
    width: calc(255.5908 / 375 * 100%); 
    margin-left: -12%;
  }
  .header .title02{
    width: calc(271.9795 / 375 * 100%); 
    margin-top: 1%;
    padding-bottom: 0;
  }
  .header .title03{
     width: calc(287.9538 / 375 * 100%); 
     margin-top: 8%;
  }
  .header .title05{
    bottom: auto;
    top: 9%;
    left: 82%;
    width: calc(53.8501 / 375 * 100%);
  }
  .header .star-box._01{
    top: 69%;
    left: 5%;
    width: calc(43.8216 / 375 * 100%);
  }
  .header .star-box._02{
    top: 90%;
    left: auto;
    right: 5%;
    width: calc(29.9022 / 375 * 100%);
  }
  .header .star-box._04{
    bottom: 20%;
  }
  .header .logo-box{
    display: none;
  }
  /* lead */
  .lead{
    margin-top: 8%;
    padding-bottom: 10%;
  }
  .lead .logo{
    display: block;
    width: calc(66 / 375 * 100%);
    margin: 0 auto;
  }
  .lead .text{
    margin-top: 10%;
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(32 / 15);
  }
  .lead .star-box._01{
    top: 27%;
    left: 4%;
    width: calc(30 / 375 * 100%);
  }
  .lead .star-box._02{
    top: 33%;
    width: calc(20 / 375 * 100%);
  }
  /* リンクボックス */
  .link-box,
  .style03 .box01-1 .link-box,
  .style04 .box02 .link-box,
  .style05 .box02-2 .link-box,
  .style06 .box01-2 .link-box{
    right: auto;
    width: calc(315.4239 / 375 * 100%);
    margin: 12% auto 0;
  }
  .link-box .main{
    padding-bottom: 2%;
  }
  .link-box .mix{
    padding-top: 5%;
  }
  .link-box .cart-btm{
    margin-top: 0.1px;
    margin-bottom: 3%;
    border-bottom: 1px solid rgba(0,0,0,0);
  }
  .cart-title{
    font-size: calc(15.8105 / 375 * 100vw);
    line-height: 1.2;
    letter-spacing: 0.06rem;
  }
  .size-area {
    margin: -1.25em auto 0.5em;
  }
  .size-area a{
    font-size: 0.8rem;
  }
  .cart-yen{
    font-size: calc(15.8105 / 375 * 100vw);
    line-height: 1.2;
    letter-spacing: 0.04rem;
  }
  .cart-yen img{
    width: calc(15.8105 / 375 * 100vw);
    margin: 0 1vw 0 0;
  }
  .cart-yen.price img {
    margin-right: 0.81rem
  }
  .cart-yen span{
    font-size: calc(9.0346 / 375 * 100vw);
    margin: auto 0 2px 3px;
  }
  .cart-btm .btn{
    margin-left: 1%;
    padding: 1.4% 2% 1%;
    font-size: calc(10.6904 / 375 * 100vw);
  }
  /* 共通 */
  .main-wrapper{
    margin-top: 10%;
  }
  .side-title{
    display: none;
  }
  div[class*="style0"].style-wrapper{
    right: auto;
    display: flex;
    flex-direction: column;
    margin-top: 19%;
    padding-top: 1%;
  }
  div[class*="style0"] .box01,
  div[class*="style0"] .box02,
  div[class*="style0"] .box01-1,
  div[class*="style0"] .box01-2,
  div[class*="style0"] .box02-1,
  div[class*="style0"] .box02-2{
    left: auto;
    width: 100%;
    display: contents;
  }
  div[class*="style0"] .box01-1 .number,
  .style05 .box01 .number{
    left: auto;
    right: auto;
    display: block;
    margin-inline: auto;
    order: 1;
  }
  div[class*="style0"] .box01-1 .title,
  .style05 .box01 .title{
    margin: 8% auto 0;
    order: 2;
    animation-delay: 0s;
  }
  .style-wrapper .style-star,
  .style05 .box01 .style-star{
    display: block;
    width: calc(18 / 375 * 100%);
    margin: 7% auto 0;
    order: 3;
  }
  .style-wrapper .text,
  .accessory .text-title{
    margin-top: 5%;
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(38 / 22);
    order: 4;
  }
  .style-wrapper .text span,
  .accessory .text-title span{
    font-size: calc(22 / 375 * 100vw);
  }
  /* style01---------------- */
  .style01 .box01-1 .number{
    width: calc(109.4184 / 375 * 100%);
  }
  .style01 .box01-1 .title{
    width: calc(225.6362 / 375 * 100%);
  }
  .style01 .box01-2 .photo-box{
    margin-top: 8%;
    order: 5;
  }
  .style01 .box01-1 .photo-box{
    width: calc(300 / 375 * 100%);
    aspect-ratio: 300 / 410.274;
    margin: 10% auto 0;
    order: 6;
  }
  .style01 .box02{
    position: relative;
  }
  .style01 .box02 .photo-box{
    width: calc(240 / 375 * 100%);
    margin: 12% auto 0;
    order: 7;
  }
  .style01 .box02 .star-box._01{
    position: absolute;
    top: 66.5%;
    left: 10%;
    width: calc(41 / 375 * 100%);
  }
  .style01 .box02 .star-box._02{
    position: absolute;
    top: 58%;
    right: 10%;
    width: calc(34.1443 / 375 * 100%);
  }
  .style01 .box01-1 .link-box{
    order: 8;
  }
  .style01 .item-area{
    order: 9;
  }
  /* style02-------------------- */
  .style02 .box01-1 .number{
    width: calc(128.7206 / 375 * 100%);
  }
  .style02 .box01-1 .title{
    width: calc(244.4609 / 375 * 100%);
  }
  .style02 .box02{
    margin-top: 30%;
  }
  .style02 .box01-2 .photo-box{
    width: calc(335 / 375 * 100%);
    aspect-ratio: 335 / 532;
    margin: 10% auto 0;
    background: url(../img/style02-frame-sp.svg);
    order: 5;
  }
  .style02 .box01-2 .photo-box .photo{
    width: calc(295 / 335 * 100%);
  }
  .style02 .box02-1 .list{
    width: calc(320 / 375 * 100%);
    margin: 14% 0 0 auto;
    order: 6;
  }
  .style02 .link-box{
    order: 8;
  }
  .style02 .item-area{
    order: 9;
  }
  /* style03-------------------- */
  .style03 .box01-1 .number{
    width: calc(121.0986 / 375 * 100%);
  }
  .style03 .box01-1 .title{
    width: calc(205.4839 / 375 * 100%);
  }
  .style03 .box01-2 .photo-box{
    position: relative;
    margin-top: 10%;
    order: 5;
  }
  .style03 .box01-2 .star-box._01{
    position: absolute;
    bottom: -16.5%;
    right: 10%;
    width: calc(33.9416 / 375 * 100%);
  }
  .style03 .box01-1 .photo-box{
    position: relative;
    width: calc(270 / 375 * 100%);
    aspect-ratio: 270 / 369.9213;
    margin: 14% auto 0;
    order: 6;
  }
  .style03 .box01-1 .photo-box .photo{
    width: calc(238.1102 / 270 * 100%);
  }
  .style03 .box02 .photo-box{
    margin-top: 14%;
    order: 7;
  }
  .style03 .link-box{
    order: 8;
  }
  .style03 .item-area{
    order: 9;
  }
  /* style04-------------------- */
  .style04 .bg{
    top: 27%;
    left: 20%;
    width: calc(237 / 375 * 100%);
    aspect-ratio: 237 / 520;
  }
  .style04 .box01-1 .number{
    width: calc(137.4133 / 375 * 100%);
  }
  .style04 .box01-1 .title{
    width: calc(230.0469 / 375 * 100%);
  }
  .style04 .box01-2 .photo-box{
    width: calc(247 / 375 * 100%);
    margin: 8% auto 0 8%;
    order: 5;
  }
  .style04 .box01-1 .photo-box{
    width: calc(220 / 375 * 100%);
    margin: 10% 6% 0 auto;
    order: 6;
  }
  .style04 .link-box{
    order: 8;
  }
  .style04 .item-area{
    order: 9;
  }
  /* style05-------------------- */
  .style05 .box01 .number{
    width: calc(123.1985 / 375 * 100%);
  }
  .style05 .box01 .title{
    width: calc(273.272 / 375 * 100%);
  }
  .style05 .box02-1 .photo-box{
    width: calc(335 / 375 * 100%);
    aspect-ratio: 335 / 519;
    margin: 14% auto 0;
    background: url(../img/style05-frame-sp.svg);
    order: 5;
  }
  .style05 .box02-1 .photo-box .photo{
    width: calc(295 / 335 * 100%);
  }
  .style05 .box02-2 .photo-box{
    position: relative;
    width: calc(268 / 375 * 100%);
    margin: 12% auto 0;
    order: 6;
  }
  .style05 .box02-2 .star-box._01{
    position: absolute;
    top: 3.5%;
    left: -9%;
    width: calc(38.7199 / 268 * 100%);
  }
  .style05 .link-box{
    order: 8;
  }
  .style05 .item-area{
    order: 9;
  }
  /* style06-------------------- */
  .style06 .box01-1{
    position: relative;
  }
  .style06 .box01-1 .number{
    width: calc(128.4257 / 375 * 100%);
  }
  .style06 .box01-1 .title{
    width: calc(228.7314 / 375 * 100%);
  }
  .style06 .box01-2 .photo-box{
    margin: 10% auto 0;
    order: 5;
  }
  .style06 .box01-1 .list{
    width: calc(340 / 375 * 100%);
    margin-inline: auto;
    order: 6;
  }
  .style06 .box01-1 .star-box._01{
    position: absolute;
    top: 66.5%;
    left: 7%;
    width: calc(53.4573 / 375 * 100%);
  }
  .style06 .box01-1 .star-box._02{
    position: absolute;
    top: 66%;
    right: 6%;
    width: calc(54.3025 / 375 * 100%);
  }
  .style06 .link-box{
    order: 8;
  }
  .style06 .item-area{
    order: 9;
  }
  /* item-area------------- */
  .item-area{
    margin-top: 22%;
  }
  .item-area .title{
    width: calc(206.1813 / 375 * 100%);
  }
  .item-area .list{
    margin-top: 6%;
  }
  .item-area .list .item{
    padding: 0 2vw;
  }
  .item-area .list .item:nth-child(1),
  .item-area .list .item:nth-child(2),
  .item-area .list .item:nth-child(3),
  .item-area .list .item:nth-child(4){
    animation-delay: 0s;
  }
  .item-area .list .link-box{
    width: calc(155.1606 / 166 * 100%);
    margin-bottom: 20%;
  }
  .item-area .slider02 .slide-dots{
    position: absolute;
    bottom: 0;
    display: flex;
  }
  .item-area .slider02 .slide-dots li{
    position: relative;
    display: inline-block;
    width: 2vw;
    height: 2vw;
    margin: 0 10px;
    border: 1px solid #fff;
    border-radius: 50%;
  }
  .item-area .slider02 .slide-dots li button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-indent: -9999px;
    background: none;
    border: none;
    outline: none;
    padding: 0 3vw;
  }
  .item-area .slider02 .slide-dots .slick-active{
    background: #fff;
  }
  .item-area .slider02 .slick-track{
    padding-top: 8%;
  }
  .item-area .item .image{
    width: 90%;
    margin: 0 auto;
  }
  .item-area .main-item::after{
    top: -4%;
    left: 0%;
    width: 32%;
  }
  .item-area .link{
    width: 80%;
    margin-inline: auto;
  }
  .item-area._01 .star-box._01,
  .item-area._02 .star-box._01{
    top: -4%;
    left: 7%;
    width: calc(36 / 375 * 100%);
  }
  .item-area._01 .star-box._02,
  .item-area._02 .star-box._02{
    top: -2%;
    right: 6%;
    width: calc(24 / 375 * 100%);
  }
  /* accessory----------------------- */
  .accessory{
    position: relative;
    flex-direction: column-reverse;
    margin-top: 20%;
    padding-bottom: 12%;
    background: linear-gradient(180deg, transparent 0%, transparent 21%, #7489a0 21%, #7489a0 100%)
  }
  .accessory .sidetitle{
    position: absolute;
    left: 2.5%;
    top: 23%;
    width: calc(43.9741 / 375 * 100%);
  }
  .accessory .sidetitle .image{
    animation-delay: 0.4s;
  }
  .accessory .photo{
    width: calc(315 / 375 * 100%);
  }
  .accessory .text-box{
    width: calc(274.5 / 375 * 100%);
    margin-top: 3%;
    margin-left: 25%;
  }
  .accessory .line-box{
    margin-left: -9%;
  }
  .accessory .star{
    width: calc(20 / 375 * 100vw);
  }
  .accessory .text{
    width: 86%;
    margin-top: -6%;
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(32 / 15);
  }
  .accessory .btn-box{
    width: calc(335 / 375 * 100%);
    margin-top: 6%;
  }
  .accessory .btn{
    padding: 4% 0;
    border-radius: 22.101px;
  }
  .accessory .btn:hover{
    background: #536d8a;
  }
  .accessory .btn .image{
    width: calc(232.073 / 335 * 100%);
  }
  /* archive----------------- */
  .archive{
    margin-top: 16%;
  }
  .archive .title{
    width: calc(119.8242 / 375 * 100%);
  }
  .archive .banner{
    width: calc(294 / 375 * 100%);
    margin-top: 4%;
  }
  /* staff------------- */
  .staff{
    width: calc(200 / 375 * 100%);
    margin-top: 12%;
  }
  /* banner-block-------------- */
  .banner-block{
    margin-top: 8%;
    margin-bottom: 10%;
  }
  .c-btn01{
    width: 80%;
    margin-bottom: 3%;
  }
  .footer{
    padding-bottom: 20%;
  }
  .footer_sns{
    width: 8vw;
  }
  .f-ow{
    width: calc(119.952 / 375 * 100%);
    margin-top: 3%;
  }
  .footer_copyright{
    font-size: 10px;
    letter-spacing: 0.02em;
    margin: 5% 0 0 0;
  }
  /* stepnav */
  .stepnav{
    right: auto;
    top: auto;
    bottom: 0;
    left: 0;
    transform: translateY(0);
    width: 100%;
    margin: 0 auto;
  }
  .stepnav .nav-list{
    flex-direction: row;
    width: 100%;
  }
  .stepnav .nav-list .item{
    position: relative;
  }
  .stepnav .nav-list a{
    display: block;
  }
  .stepnav .nav-list .item .btn{
    width: 100%;
  }
  .stepnav .nav-list .item .btn._on{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .stepnav .nav-list .item .image{
    width: 100%;
  }
  .stepnav .nav-list a::after{
    left: 15%;
    bottom: 14%;
  }
  .stepnav .nav-list a.current::after{
    width: 70%;
  }
  .stepnav .nav-list a.current .btn._off{
    opacity: 0;
  }
  .stepnav .nav-list a.current .btn._on{
    opacity: 1;
  }
}
