:root {
  --font-ShipporiMincho: "Shippori Mincho", serif;
  --font-ZenKakuGothic: "Zen Kaku Gothic New", sans-serif;
  --color01: #3693CC;
  --color02: #BCAD92;
  --color03: #234898;
  --color04: #A4A1BD;
  --color05: #EBAC61;
  --color06: #C69696;
  --color01-back: #E6E9EC;
  --color02-back: #F2F0E7;
  --color03-back: #CBD7ED;
  --color04-back: #DCDDEE;
  --color05-back: #FFEBCE;
  --color06-back: #EFE1E1;
}
@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;
}
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;
  color: #3B3E60;
  line-height: 1;
}
body {
  position: relative;
  overflow-anchor: none;
}
ul, ol {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
.image{
  width: 100%;
}
/*animation*/
.fade{
  opacity: 0;
}
.fade.active{
  animation-name: fade;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.slide-right{
  opacity: 0;
  transform: translateX(-10%);
}
.slide-right.active{
  animation-name: slide-right;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes slide-right {
  0% {
    opacity: 1;
    transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-left{
  opacity: 0;
  transform: translateX(10%);
}
.slide-left.active{
  animation-name: slide-left;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes slide-left {
  0% {
    opacity: 1;
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-up{
  opacity: 0;
  transform: translateY(100%);
}
.slide-up.active{
  animation-name: slide-up;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes slide-up {
  0% {
    opacity: 1;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-down{
  opacity: 0;
  transform: translateY(-10%);
}
.slide-down.active{
  animation-name: slide-down;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.3s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.zoomin{
  opacity: 0;
  scale: 1.2;
}
.zoomin.active{
  animation-name: zoomin;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes zoomin {
  0% {
    opacity: 0;
    scale: 1.2;
  }
  4% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
.clippath-top{
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  -webkit-clip-path: inset(0 0 100% 0);
}
.clippath-top.active{
  animation-name: clippath-top;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: opacity, clip-path;
}
@keyframes clippath-top {
  0% {
    opacity: 1;
    clip-path: inset(0 0 100% 0);
    -webkit-clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
    -webkit-clip-path: inset(0);
  }
}
.clippath-bottom{
  opacity: 0;
  clip-path: inset(100% 0 0 0);
}
.clippath-bottom.active{
  animation-name: clippath-bottom;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
  animation-delay: 1.4s;
  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-right{
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}
.clippath-right.active{
  animation-name: clippath-right;
  animation-duration: 0.8s;
  animation-timing-function: ease-in;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clippath;
}
@keyframes clippath-right {
  0% {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
/*link*/
.link {
  width: calc(275.4239 / 1280 * 100vw);
  margin-top: 2%;
}
.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-ShipporiMincho);
  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-ShipporiMincho);
  font-size: calc(15 / 1280 * 100vw);
}
.link .cart-yen {
  position: relative;
  padding-left: 1.5em;
  letter-spacing: 0.02rem;
  white-space: nowrap;
}
.link .cart-yen.size-l::before,
.link .cart-yen.size-s::before{
  display: block;
  width: 1em;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: 0 auto;
}
.link .cart-yen.size-l::before{
  content: url(../img/size-l.svg);
}
.link .cart-yen.size-s::before{
  content: url(../img/size-s.svg);
}
.link .cart-yen.price-space{
  padding-left: 1.95em;
}
.link .cart-yen .tax{
  margin-left: 0.3em;
  font-size: calc(10 / 1280 * 100vw);
}
.link .cart-btn {
  position: relative;
  margin-left: 0.3em;
  padding: 0.4em 1em;
  border: 1px solid;
  color: #fff;
  font-family: var(--font-ShipporiMincho);
  font-size: calc(10 / 1280 * 100vw);
  line-height: 1;
}
.select01 .link .cart-btn{
  background: var(--color01);
  border-color:var(--color01) ;
}
.select02 .link .cart-btn{
  background: var(--color02);
  border-color:var(--color02) ;
}
.select03 .link .cart-btn{
  background: var(--color03);
  border-color:var(--color03) ;
}
.select04 .link .cart-btn{
  background: var(--color04);
  border-color:var(--color04) ;
}
.select05 .link .cart-btn{
  background: var(--color05);
  border-color:var(--color05) ;
}
.select06 .link .cart-btn{
  background: var(--color06);
  border-color:var(--color06) ;
}
.link .cart-btn span img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
  width: 1em;
  transition: 0.4s ease-in;
}
.link .cart-btn span {
  display: flex;
  transition: 0.4s ease-in;
}
.link .other {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid rgb(59 62 96 / 0.5);
}
.link .other .cart-btn {
  background: transparent;
  color: #80808D;
  border-color: rgb(59 62 96 / 0.5);
}
  
/* 共通*/
.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 / 718;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}
.header .bg{
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.header .title01{
  position: absolute;
  top: 53.75%;
  left: 17.5%;
  width: calc(343.2985 / 1280 * 100%);
  z-index: 2;
}
.header .title01 .image{
  animation-delay: 1.4s;
}
.header .title02{
  position: absolute;
  top: 62%;
  left: 51%;
  translate: -50% 0;
  width: calc(843.9116 / 1280 * 100%);
  z-index: 2;
}
.header .title02 .image{
  animation-duration: 1s;
  animation-delay: 0.4s;
}
.header .title03{
  position: absolute;
  top: 88%;
  left: 49.4%;
  translate: -50% 0;
  width: calc(383.9924 / 1280 * 100%);
  z-index: 2;
}
.header .title03 .image{
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-delay: 1.2s;
}
.header .line{
  position: absolute;
  top: 67.8%;
  left: 43%;
  width: calc(185.2504 / 1280 * 100%);
  z-index: 2;
}
.header .line .image{
  animation-duration: 0.6s;
  animation-delay: 1.8s;
}
.header-logo {
  position: absolute;
  top: 2%;
  right: 1%;
  width: calc(68 / 1280 * 100%);
}
/* lead-block */
.lead-block{
  padding: 6% 0 12%;
  background: #E6E9EC;
}
/*lead*/
.lead {
  width: calc(507.1436 / 1280 * 100%);
  margin-inline: auto;
}
/* mainnav */
.mainnav{
  position: relative;
  right: 1%;
  width: calc(676 / 1280 * 100%);
  margin: 4% auto 0;
}
.mainnav .list{
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.mainnav .list .item{
  position: relative;
  width: calc(192 / 676 * 100%);
  margin-top: 12%;
  background: #fff;
}
.mainnav .list .item .photo{
  width: calc(180 / 192 * 100%);
  margin: 3% auto;
  overflow: hidden;
}
.mainnav .list .item .photo .image{
  transition: 0.2s ease;
}
.mainnav .list .item a:hover .photo .image{
  rotate: -2deg;
  scale: 1.1; 
}
.mainnav .list .photo .image{
  margin-inline: auto;
}
.mainnav .list .number{
  position: absolute;
  top: -12%;
  left: -6%;
  width: calc(60 / 192 * 100%);
  z-index: 2;
}
.mainnav .list .title{
  position: absolute;
  bottom: 2%;
  left: calc(12 / 192 * 50%);
  width: calc(180 / 192 * 100%);
}  
/* style-box---------------------- */
.style-box{
  position: relative;
}
.style-box .number-box,
.style-box .maintitle-box{
  z-index: 2;
}
.style-box .number-box .flex-box{
  align-items: flex-end;
}
.style-box .number-box .title01{
  width: calc(116.4552 / 1280 * 100vw);
  margin-right: 8%;
  animation-delay: 0.3s;
}
.style-box .number-box .number{
  width: calc(109 / 1280 * 100vw);
}
.style-box .number-box .title02{
  width: calc(219.0581 / 1280 * 100vw);
  margin-top: 5%;
}
.style-box .maintitle-box .title01{
  margin-bottom: 4%;
}
.style-box:not(.select01){
  margin-top: 12%;
}
.style-box .item-area{
  width: calc(710 / 1280 * 100%);
  margin: 8% auto 0;
  padding: 3% 0;
  clip-path: polygon(0 0, 95% 0, 100% 10%, 100% 100%, 0 100%);
}
.select01 .item-area{
  background: var(--color01-back);
}
.select02 .item-area{
  background: var(--color02-back);
}
.select03 .item-area{
  background: var(--color03-back);
}
.select04 .item-area{
  background: var(--color04-back);
}
.select05 .item-area{
  background: var(--color05-back);
}
.select06 .item-area{
  background: var(--color06-back);
}
.style-box .item-area .inner{
  justify-content: space-between;
  width: calc(623 / 710 * 100%);
  margin-inline: auto;
}
.style-box .item-area .photo-area{
  width: calc(266 / 623 * 100%);
  overflow: hidden;
}
.style-box .item-area .photo-area a{
  display: block;
}
.style-box .item-area .photo-area .image{
  transition: 0.3s ease;
}
.style-box .item-area .photo-area a:hover .image{
  display: block;
  rotate: -1deg;
  scale: 1.1; 
}
.style-box .item-area .text-area{
  width: calc(311 / 623 * 100%);
  margin-top: 1%;
}
.style-box .item-area .itemtitle{
  position: relative;
  right: 4%;
  width: calc(184.6087 / 311 * 100%);
  margin-inline: auto;
}
.style-box .item-area .itempoint{
  position: relative;
  right: 4%;
  width: calc(84.4907 / 311 * 100%);
  margin: 3% auto 0;
}
.style-box .item-area .itemline{
  position: relative;
  right: 4%;
  width: calc(107.6915 / 311 * 100%);
  margin: 0 auto;
  animation-duration: 0.6s;
  animation-delay: 0.4s;
}
.style-box .item-area .text-list{
  margin-top: 10%;
}
.style-box .item-area .text{
  position: relative;
  padding: 0.3em 0 0.3em 1.2em;
  text-align: left;
  font-family: var(--font-ZenKakuGothic);
  font-size: calc(16 / 1280 * 100vw);
  line-height: calc(25.875 / 16);
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.style-box .item-area .text:not(:last-child){
  border-bottom: 1px solid rgb(59 62 96 / 0.2);
}
.style-box .item-area .text::before{
  content: "";
  display: block;
  width: 1.1em;
  position: absolute;
  top: 0.35em;
  left: 0;
}
.select01 .item-area .text::before{
  content: url(../img/select01-itemcheck.svg);
}
.select02 .item-area .text::before{
  content: url(../img/select02-itemcheck.svg);
}
.select03 .item-area .text::before{
  content: url(../img/select03-itemcheck.svg);
}
.select04 .item-area .text::before{
  content: url(../img/select04-itemcheck.svg);
}
.select05 .item-area .text::before{
  content: url(../img/select05-itemcheck.svg);
}
.select06 .item-area .text::before{
  content: url(../img/select06-itemcheck.svg);
}
.style-box .item-area .link._item{
  width: 96%;
  margin: 10% auto 0 0;
}
/* select01---------------------- */
.select01 .box01{
  position: relative;
  margin-top: -4%;
}
.select01 .number-box{
  position: absolute;
  top: 16%;
  left: 12%;
  z-index: 3;
}
.select01 .maintitle-box{
  position: absolute;
  top: 43%;
  left: 22%;
  width: calc(311.9917 / 1280 * 100%);
  z-index: 3;
}
.select01 .maintitle-box .title01{
  width: calc(294.8804 / 311.9917 * 100%);
  margin-inline: auto;
}
.select01 .photo01{
  position: relative;
  width: calc(1065 / 1280 * 100%);
  margin: 0 0 0 auto;
  z-index: 2;
}
.select01 .box02{
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  left: 2%;
  width: calc(725.424 / 1280 * 100%);
  margin: -7% auto 0;
}
.select01 .photo02{
  position: relative;
  width: calc(394 / 725.424 * 100%);
  animation-delay: 0s;
  z-index: 3;
}
.select01 .photo02 .image{
  animation-duration: 1s;
  animation-delay: 0.4s;
}
.select01 .link{
  margin-bottom: 6%;
}
/* 
.select02------------------------ */
.select02 .box01{
  position: relative;
  margin-top: 1%;
}
.select02 .number-box{
  position: absolute;
  top: 0;
  right: 14%;
}
.select02 .maintitle-box{
  position: absolute;
  top: 24%;
  right: 12%;
  width: calc(401.4399 / 1280 * 100%);
}
.select02 .maintitle-box .title01{
  width: calc(351.645 / 401.4399 * 100%);
}
.select02 .photo01{
  position: relative;
  width: calc(460 / 1280 * 100%);
  margin: 0 auto 0 13%;
  z-index: 2;
}
.select02 .box02{
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  left: 7.8%;
  width: calc(724 / 1280 * 100%);
  margin: -26% auto 0;
}
.select02 .photo02{
  width: calc(390 / 724 * 100%);
}
.select02 .link{
  margin-bottom: 3%;
}
/* select03---------------------- */
.select03 .box01{
  position: relative;
}
.select03 .number-box{
  position: absolute;
  top: 3%;
  left: 12%;
}
.select03 .maintitle-box{
  position: absolute;
  top: 26%;
  left: 12%;
  width: calc(434.9287 / 1280 * 100%);
}
.select03 .maintitle-box .title01{
  width: calc(339.3384 / 434.9287 * 100%);
}
.select03 .photo01{
  width: calc(552 / 1280 * 100%);
  margin: 0 4.5% 0 auto;
}
.select03 .box02{
  justify-content: space-between;
  align-items: flex-end;
  width: calc(795.4241 / 1280 * 100%);
  margin: -32% auto 0 12%;
}
.select03 .photo02{
  width: calc(460 / 795.4241 * 100%);
}
.select03 .link{
  margin-bottom: 6%;
}
/* select04---------------------- */
.select04 .box01{
  position: relative;
}
.select04 .number-box{
  position: absolute;
  top: 3%;
  left: 55.5%;
}
.select04 .maintitle-box{
  position: absolute;
  top: 28%;
  left: 55.5%;
  width: calc(413.8232 / 1280 * 100%);
}
.select04 .maintitle-box .title01{
  width: calc(363.3632 / 413.8232 * 100%);
}
.select04 .photo01{
  width: calc(552 / 1280 * 100%);
  margin: 0 auto 0 8%;
}
.select04 .box02{
  position: relative;
  right: 0.5%;
  justify-content: space-between;
  align-items: flex-end;
  width: calc(1040 / 1280 * 100%);
  margin: -25% auto 0;
}
.select04 .photo02{
  width: calc(440 / 1040 * 100%);
}
.select04 .link{
  margin-bottom: 18%;
}
/* select05---------------------- */
.select05 .box01{
  position: relative;
  padding-top: 10%;
}
.select05 .number-box{
  position: absolute;
  top: 0;
  left: 14%;
}
.select05 .maintitle-box{
  position: absolute;
  top: 22%;
  right: 17%;
  width: calc(347.5547 / 1280 * 100%);
}
.select05 .maintitle-box .title01{
  width: calc(328.7549 / 347.5547 * 100%);
  margin-inline: auto;
}
.select05 .photo01{
  position: relative;
  width: calc(460 / 1280 * 100%);
  margin: 0 auto 0 13%;
  z-index: 2;
}
.select05 .box02{
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  left: 6%;
  width: calc(748 / 1280 * 100%);
  margin: -31% auto 0;
}
.select05 .photo02{
  width: calc(390 / 748 * 100%);
}
.select05 .photo02 a{
  display: block;
}
/* select06---------------------- */
.select06 .box01{
  position: relative;
  padding-top: 6%;
}
.select06 .number-box{
  position: absolute;
  top: 0;
  left: 11.5%;
}
.select06 .maintitle-box{
  position: absolute;
  top: 21%;
  left: 10%;
  width: calc(436.4287 / 1280 * 100%);
}
.select06 .maintitle-box .title01{
  width: calc(354.0386 / 436.4287 * 100%);
  margin-right: 0;
  margin-left: auto;
}
.select06 .photo01{
  position: relative;
  width: calc(552 / 1280 * 100%);
  margin: 0 6% 0 auto;
  z-index: 2;
}
.select06 .box02{
  position: relative;
  right: 0.5%;
  justify-content: space-between;
  align-items: flex-end;
  width: calc(1026.424 / 1280 * 100%);
  margin: -38% auto 0 14%;
}
.select06 .photo02{
  width: calc(394 / 1026.424 * 100%);
  margin-bottom: 12vh;
}
/* bottom-block */
.bottom-block{
  padding-top: 12%;
}
/* all-btn */
.all-btn{
  width: calc(664 / 1280 * 100%);
  margin-inline: auto;
}
/* pickup */
.pickup{
  width: calc(560 / 1280 * 100%);
  margin: 8% auto 0;
}
.pickup .title{
  width: calc(154.627 / 560 * 100%);
  margin-inline: auto;
}
.pickup .photo{
  width: 100%;
  margin-top: 4%;
}
/*banner-staff*/
.banner-staff {
  margin: 6% auto 0;
}
.banner-staff .text{
  text-align: center;
  font-family: 'EBGaramond', serif;
  font-size: calc(14 / 1280 * 100vw);
  line-height: calc(25 / 14);
  letter-spacing: 0.1em;
}
/*banner*/
.banner {
  width: calc(560 / 1280 * 100%);
  margin: 6% auto 0;
}
.banner-item {
  display: block;
  margin-top: 3%;
  border: 1px solid #333;
  transition: 0.6s ease-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(47 / 1280 * 100vw);
  z-index: 9999;
}
.stepnav .title{
  width: calc(39.4047 / 47 * 100%);
  margin-inline: auto;
}
.stepnav .list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}
.stepnav .list .item{
  width: 100%;
}
.stepnav .list a{
  position: relative;
  display: block;
  min-width: 20px;
  margin-top: 1vw;
}
.stepnav .list a::after{
  content: url(../img/sidenav-icon.svg);
  display: block;
  width: calc(47 / 1280 * 100vw);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  opacity: 0;
}
.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{
  display: none;
}
.stepnav .list a.current .number-on{
  display: block;
}
/*pagetop*/
.pagetop {
  position: fixed;
  right: 1vw;
  bottom: 30px;
  width: calc(31 / 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*="select0"] .link{
    right: auto;
    width: calc(315.4235 / 375 * 100%);
    margin: 10% auto 0;
  }
  .link .cart-title {
    font-size: calc(16 / 375 * 100vw);
  }
  .link .cart-price,
  .link .cart-yen--size{
    font-size: calc(16 / 375 * 100vw);
  }
  .link .cart-yen.size-l::before, .link .cart-yen.size-s::before{
    width: 3.8vw;
  }
  .link .cart-yen .tax{
    font-size: calc(10 / 375 * 100vw);
  }
  .link .cart-btn {
    margin-left: 0.5em;
    padding: 0.5em 0.75em;
    font-size: calc(10 / 375 * 100vw);
  }
  .link .other {
    margin-top: 0.75em;
    padding-top: 0.75em;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /* header------------------------ */
  .header{
    aspect-ratio: 375 / 667;
  }
  .header .title01{
    top: 56%;
    left: 5%;
    width: calc(218.08 / 375 * 100%);
  }
  .header .title02{
    top: 64%;
    left: 50%;
    width: calc(335.9233 / 375 * 100%);
  }
  .header .title03{
    top: 93%;
    left: 50%;
    width: calc(253.0232 / 375 * 100%);
  }
  .header .line{
    top: 68.5%;
    left: 33%;
    translate: 0 0;
    width: calc(130.8848 / 375 * 100%);
  }
  .header .line .image{
    animation-duration: 0.4s;
  }
  .header-logo {
    display: none;
  }
  /* lead */
  .lead{
    width: 100%;
    padding: 6% 0;
  }
  .lead .lead-logo{
    display: block;
    width: calc(66 / 375 * 100%);
    margin-inline: auto;
  }
  .lead .text{
    width: calc(262.1758 / 375 * 100%);
    margin: 12% auto 0;
  }
  /* mainnav */
  .mainnav{
    left: 0;
    width: 100%;
  }
  .mainnav .list .item{
    width: calc(119 / 375 * 100%);
    margin-top: 6%;
    background: none;
  }
  .mainnav .list .number{
    display: none;
  }
  .mainnav .list .item .photo{
    width: 100%;
    margin: auto;
    background: #fff;
  }
  .mainnav .list .item .photo .image{
    width: calc(113 / 119 * 100%);
    padding: 2% 0;
  }
  .mainnav .list .item a:hover .photo .image{
    rotate: 0deg;
    scale: 1; 
  }
  .mainnav .list .title{
    position: relative;
    bottom: auto;
    left: 0;
    width: 100%;
    margin-top: 8%;
  }
  .mainnav .list .title .image{
   animation-delay: 0s; 
  }
  /* style-box---------------- */
  div[class*="select0"]{
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .style-box:not(.select01),
  .select01{
    margin-top: 30%;
  }
  div[class*="select0"] .box01,
  div[class*="select0"] .box02{
    flex-direction: column;
    display: contents;
    width: 100%;
  }
  div[class*="select0"] .number-box,
  div[class*="select0"] .maintitle-box{
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    margin-inline: auto;
    overflow: hidden;
  }
  .style-box .number-box .flex-box{
    position: relative;
    left: 2.5%;
    justify-content: center;
  }
  .style-box .number-box .title01{
    width: calc(75.4651 / 375 * 100%);
    margin-right: 3%;
  }
  .style-box .number-box .number{
    width: calc(71 / 375 * 100%);
  }
  .style-box .number-box .title02{
    width: calc(141.947 / 375 * 100%);
    margin: 3% auto 0;
  }
  div[class*="select0"] .maintitle-box{
    margin-top: 7%;
  }
  div[class*="select0"] .maintitle-box .title01{
    margin-inline: auto;
  }
  div[class*="select0"] .photo01{
    margin-top: 12%;
  }
  .style-box .item-area{
    width: calc(335 / 375 * 100%);
    margin-top: 16%;
    clip-path: polygon(0 0, 90% 0, 100% 5%, 100% 100%, 0 100%);
  }
  .style-box .item-area .inner{
    position: relative;
    flex-direction: column;
    width: 100%;
    padding: 8% 0;
  }
  .style-box .item-area .photo-area{
    width: calc(266 / 335 * 100%);
    margin: 6% auto 0;
    order: 2;
  }
  .style-box .item-area .photo-area a:hover .image{
    rotate: 0deg;
    scale: 1;
  }
  .style-box .item-area .text-area{
    display: contents;
    width: 100%;
    margin-top: 0;
  }
  .style-box .item-area .itemtitle{
    right: auto;
    width: calc(259.7326 / 335 * 100%);
    order: 1;
  }
  .style-box .item-area .text{
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(32 / 15);
  }
  .style-box .item-area .itempoint{
    position: absolute;
    top: 10.35%;
    right: 13.5%;
    width: calc(85.218 / 335 * 100%);
    margin: inherit;
  }
  .style-box .item-area .itemline{
    position: absolute;
    top: 14.1%;
    right: 9.25%;
    width: calc(108.6181 / 335 * 100%);
    margin: inherit;
    animation-duration: 0.4s;
  }
  .style-box .item-area .text-list{
    width: calc(295 / 335 * 100%);
    margin: 6% auto 0;
    order: 3;
  }
  .style-box .item-area .link._item{
    width: calc(294.1147 / 335 * 100%);
    margin: 8% auto 0;
    order: 4;
  }
  /* select01------------------------ */
  .select01 .maintitle-box .title01{
    width: calc(214.9678 / 375 * 100%);
  }
  .select01 .photo01{
    width: 100%;
  }
  .select01 .photo02{
    width: calc(295 / 375 * 100%);
    margin: 12% auto 0;
  }
  /* select02------------------------ */
  .select02 .maintitle-box .title01{
    width: calc(256.3496 / 375 * 100%);
  }
  .select02 .photo01{
    width: 100%;
    margin-inline: auto;
  }
  .select02 .photo02{
    width: calc(335 / 375 * 100%);
    margin: 12% auto 0 0;
  }
  /* select03------------------------ */
  .select03 .maintitle-box .title01{
    width: calc(247.2329 / 375 * 100%);
  }
  .select03 .photo01{
    width: calc(353 / 375 * 100%);
    margin-right: auto;
    margin-left: 0;
  }
  .select03 .photo02{
    width: calc(335 / 375 * 100%);
    margin: 12% auto 0;
  }
  /* select04------------------------ */
  .select04 .maintitle-box .title01{
    width: calc(264.8921 / 375 * 100%);
  }
  .select04 .photo01{
    width: calc(335 / 375 * 100%);
    margin-inline: auto;
  }
  .select04 .photo02{
    width: calc(280 / 375 * 100%);
    margin: 12% auto 0;
  }
  /* select05------------------------ */
  .select05 .maintitle-box .title01{
    width: calc(239.6631 / 375 * 100%);
  }
  .select05 .photo01{
    width: calc(335 / 375 * 100%);
    margin-inline: auto;
  }
  .select05 .photo02{
    width: calc(294 / 375 * 100%);
    margin: 10% auto 0 0;
  }
  /* select06------------------------ */
  .select06 .maintitle-box .title01{
    width: calc(258.0938 / 375 * 100%);
  }
  .select06 .photo01{
    width: calc(335 / 375 * 100%);
    margin-inline: auto;
  }
  .select06 .photo02{
    width: calc(280 / 375 * 100%);
    margin: 10% auto 0 0;
  }
  /* bottom-block------------------ */
  .bottom-block{
    margin-top: 14%;
  }
  /* all-btn */
  .all-btn{
    width: calc(335 / 375 * 100%);
  }
  /* pickup */
  .pickup{
    width: calc(320 / 375 * 100%);
    margin-top: 16%;
  }
  .pickup .title{
    width: calc(114.6274 / 320 * 100%);
  }
  .banner-staff{
    margin-top: 14%;
  }
  .banner-staff .text{
    font-size: calc(14 / 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: 0;
    right: auto;
    left: 0;
    width: 100%;
    background: #fff;
    transform: translate(0);
  }
  .stepnav .title{
    width: calc(35 / 375 * 100%);
    margin-left: 3%;
  }
  .stepnav .list{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .stepnav .list a{
    margin-top: 0;
  }
  .stepnav .list .item{
    width: calc(55 / 375 * 100%);
  }
  .stepnav .list a::after{
    width: calc(44.7073 / 375 * 100vw);
  }
  .stepnav .list li.sp{
    width: calc(45 / 375 * 100%);
  }
}
@media (min-width: 769px) {
  .link .cart:hover .cart-btn span {
    transform: translateX(-10%);
  }
  .link .cart:hover .cart-btn span img {
    opacity: 1;
    margin-right: -1.2em;
  }
  .stepnav .list a:hover .number-off{
    display: none;
  }
  .stepnav .list a:hover .number-on{
    display: block;
  }
} 