:root {
  --font-ShipporiMincho: "Shippori Mincho", serif;
  --font-ZenKakuGothic: "Zen Kaku Gothic New", sans-serif;
  --color01: #DD88A2;
  --color02: #639EA4;
  --color03: #946470;
  --color04: #9B7FB6;
  --color05: #4CB0A9;
  --color06: #BF9958;
  --color01-back: #C1B8CF;
  --color02-back: #ABC5C0;
  --color03-back: #B9999F;
  --color04-back: #C3B2D3;
  --color05-back: #86C7BE;
  --color06-back: #CFB687;
}
@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: #808093;
}
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;
  color: #808093;
}
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;
  }
}
.slide-right{
  opacity: 0;
}
.slide-right.active{
  animation-name: slide-right;
  animation-duration: 2s;
  animation-timing-function: ease-in-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-down{
  opacity: 0;
}
.slide-down.active{
  animation-name: slide-down;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  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: 1;
}
.zoomin.active{
  animation-name: zoomin;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes zoomin {
  0% {
    opacity: 1;
    scale: 1.1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
.clippath-bottom{
  opacity: 0;
}
.clippath-bottom.active{
  animation-name: clippath-bottom;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-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);
  }
}
/*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: 2.1em;
}
.link .cart-yen .tax{
  margin-left: 0.5em;
  font-size: calc(10 / 1280 * 100vw);
}
.link .cart-btn {
  position: relative;
  margin-left: 1em;
  padding: 0.4em 1em;
  border: 1px solid;
  color: #fff;
  font-family: var(--font-ShipporiMincho);
  font-size: calc(10 / 1280 * 100vw);
  line-height: 1;
}
.item01 .link .cart-btn{
  background: var(--color01);
  border-color:var(--color01) ;
}
.item02 .link .cart-btn{
  background: var(--color02);
  border-color:var(--color02) ;
}
.item03 .link .cart-btn{
  background: var(--color03);
  border-color:var(--color03) ;
}
.item04 .link .cart-btn{
  background: var(--color04);
  border-color:var(--color04) ;
}
.item05 .link .cart-btn{
  background: var(--color05);
  border-color:var(--color05) ;
}
.item06 .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 #808093;
}
.link .other .cart-btn {
  background: transparent;
  color: #808093;
  border-color: #808093;
}
  
/* 共通*/
.pc {
  display: block;
}
.sp {
  display: none;
}
.slide-box {
  overflow: hidden;
}
.flex-box{
  display: flex;
}
/*header*/
.header{
  position: relative;
  aspect-ratio: 1280 / 718;
  width: 100%;
  background: #ffd6df;
  background:  rgb(235,163,178);
  overflow: hidden;
  z-index: 2;
}
.header .photo{
  width: 100%;
}
.header .title01{
  position: absolute;
  top: 11.75%;
  left: 50%;
  translate: -50% 0;
  width: calc(552.5029 / 1280 * 100%);
}
.header .title01 .image{
  animation-delay: 1s;
}
.header .title02{
  position: absolute;
  top: 19%;
  left: 50.2%;
  translate: -50% 0;
  width: calc(645.1739 / 1280 * 100%);
}
.header .title02 .image{
  animation-delay: 1.4s;
}
.header .title03{
  position: absolute;
  top: 68%;
  left: 49.8%;
  translate: -50% 0;
  width: calc(454.313 / 1280 * 100%);
}
.header .title04{
  position: absolute;
  top: 81.4%;
  left: 49.4%;
  translate: -50% 0;
  width: calc(235.4858 / 1280 * 100%);
  z-index: 3;
}
.header .title04 .image{
  animation-delay: 1.8s;
}
.header .item-photo{
  position: absolute;
  top: 20%;
  right: 0%;
  width: calc(375 / 1280 * 100%);
}
.header .item-photo .image{
  animation-delay: 0.6s;
}
.header-logo {
  position: absolute;
  top: 3.5%;
  left: 2%;
  width: calc(68.0369 / 1280 * 100%);
}
/*lead*/
.lead-block{
  position: sticky;
  top: 0;
  z-index: 1;
}
.lead {
  position: relative;
  padding-bottom: 20vh;
  background: #B5B5C4;
}
.lead-inner{
  position: sticky;
  top: 0;
}
.lead .bg{
  width: auto;
  height: 100vh;
  margin: 0 auto;
  padding: 7vh 0;
}
.lead .scroll-wrapper{
  position: absolute;
  bottom: 4%;
  right: 6%;
}
.lead .scroll{
  position: relative;
  width: 2%;
  margin: 0 auto;
}
.lead .scroll::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 10rem;
  background: rgba(255, 225, 238, .2);
  z-index: 1;
}
.lead .scroll::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 10rem;
  background: #FFE1EE;
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
  z-index: 1;
}
@keyframes sdl{
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* main-wrapper---------------- */
.main-wrapper{
  position: relative;
  background: #fff;
  z-index: 2;
}
/* style-box---------------------- */
.style-box{
  position: relative;
}
.style-box:not(.item01){
  margin-top: 10%;
}
.style-box .item-area{
  width: calc(780 / 1280 * 100%);
  margin: 8% auto 0;
  padding: 3% 0;
  border-radius: 2rem;
}
.style-box .item-area .inner{
  justify-content: space-between;
  width: calc(648.714 / 780 * 100%);
  margin-inline: auto;
}
.style-box .item-area .photo-area{
  width: calc(266 / 648.714 * 100%);
}
.style-box .item-area .photo-area .image{
  animation-delay: 0.6s;
}
.style-box .item-area .text-area{
  width: calc(323 / 648.714 * 100%);
}
.style-box .item-area .itemname{
  margin: 2% auto 0;
}
.style-box .item-area .text{
  margin-top: 2em;
  color: #fff;
  font-family: var(--font-ZenKakuGothic);
  font-size: calc(15 / 1280 * 100vw);
  line-height: calc(30 / 16);
  letter-spacing: 0.06em;
}
.style-box .item-area .link._item{
  width: 96%;
  margin: 8% auto 0 0;
}
.style-box .item-area .link._item .cart-title,
.style-box .item-area .link._item .cart-yen{
  color: #fff;
}
/*item01----------------------*/
.item01 .box01{
  position: relative;
}
.item01 .number{
  position: absolute;
  top: 10%;
  left: 6%;
  width: calc(181.7241 / 1280 * 100%);
  z-index: 2;
}
.item01 .name{
  position: absolute;
  top: 27%;
  left: 60%;
  width: calc(271.7852 / 1280 * 100%);
}
.item01 .title{
  position: absolute;
  top: 51%;
  left: 57.5%;
  width: calc(329.7849 / 1280 * 100%);
}
.item01 .photo02{
  width: calc(900 / 1280 * 100%);
  margin: 5% auto 0 24%;
}
.item01 .link{
  margin-left: 25%;
}
.item01 .item-area{
  background: var(--color01-back);
}
.item01 .item-area .itemname{
  width: calc(225.4795 / 320.8633 * 100%);
}
/*item02----------------------*/
.item02 .number{
  width: calc(191.5254 / 1280 * 100%);
  margin-left: 7%;
}
.item02 .box01{
  position: relative;
  right: 1%;
  justify-content: space-between;
  width: calc(925.5037 / 1280 * 100%);
  margin: 3% auto 0;
}
.item02 .box01-1{
  width: calc(460 / 925.5037 * 100%);
}
.item02 .box01-2{
  width: calc(390 / 925.5037 * 100%);
}
.item02 .name{
  width: calc(291.9004 / 390 * 100%);
  margin-top: 8%;
}
.item02 .title{
  width: calc(393.1205 / 390 * 100%);
  margin-top: 22%;
}
.item02 .photo02{
  width: 100%;
  margin-top: 12%;
}
.item02 .link{
  margin: 4% 0 0 auto;
}
.item02 .item-area{
  background: var(--color02-back);
}
.item02 .item-area .itemname{
  width: calc(192.7803 / 320.8633 * 100%);
}
/*item03----------------------*/
.item03 .number{
  width: calc(189.6353 / 1280 * 100%);
  margin-left: auto;
  margin-right: 14.5%;
}
.item03 .box01{
  position: relative;
  right: 3%;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: calc(1060 / 1280 * 100%);
  margin: 3% auto 0;
}
.item03 .box01-1{
  width: calc(624 / 1060 * 100%);
}
.item03 .box01-2{
  position: relative;
  left: 11%;
  width: calc(436 / 1060 * 100%);
  margin-top: 14%;
}
.item03 .name{
  width: calc(291.0898 / 436 * 100%);
  margin: 0 auto 0 12%;
}
.item03 .title{
  width: calc(313.4829 / 436 * 100%);
  margin: 20% auto 0 12%;
}
.item03 .photo02{
  width: 100%;
  margin-top: 48%;
}
.item03 .link{
  margin: 38% auto 0 32%;
}
.item03 .item-area{
  background: var(--color03-back);
}
.item03 .item-area .itemname{
  width: calc(192.7803 / 320.8633 * 100%);
}
/*item04----------------------*/
.item04 .number{
  width: calc(190.5449 / 1280 * 100%);
  margin-top: 14%;
  margin-right: 22%;
  margin-left: auto;
}
.item04 .box01{
  position: relative;
  right: 2%;
  justify-content: space-between;
  width: calc(1020.9089 / 1280 * 100%);
  margin:0 auto 0;
}
.item04 .box01-1{
  position: relative;
  width: calc(540 / 1020.9089 * 100%);
  margin-top: -6%;
}
.item04 .box01-2{
  width: calc(436 / 1020.9089 * 100%);
}
.item04 .name{
  width: calc(429.2817 / 436 * 100%);
  margin-top: 16%;
}
.item04 .title{
  width: calc(322.928 / 436 * 100%);
  margin: 20% auto 0 10%;
}
.item04 .photo02{
  width: 100%;
  margin-top: 18%;
}
.item04 .box01 .link{
  position: absolute;
  bottom: 3%;
  right: 6%;
}
.item04 .item-area{
  background: var(--color04-back);
}
.item04 .item-area .itemname{
  width: calc(296.4106 / 320.8633 * 100%);
}
/*item05----------------------*/
.item05 .box01{
  position: relative;
  right: 1%;
  justify-content: space-between;
  width: calc(1059 / 1280 * 100%);
  margin: 16% auto 0;
}
.item05 .box01-1{
  position: relative;
  width: calc(624 / 1059 * 100%);
}
.item05 .box01-2{
  width: calc(390 / 1059 * 100%);
}
.item05 .name{
  width: calc(328.0928 / 390 * 100%);
  margin-top: 32%;
}
.item05 .title{
  width: calc(383.3924 / 390 * 100%);
  margin: 22% auto 0 0;
}
.item05 .photo02{
  width: 100%;
  margin-top: 22%;
}
.item05 .box01 .link{
  margin-top: 6%;
}
.item05 .item-area{
  background: var(--color05-back);
}
.item05 .item-area .itemname{
  width: calc(258.1797 / 320.8633 * 100%);
}
/*item06----------------------*/
.item06 .box01{
  position: relative;
  margin-top: 14%;
}
.item06 .number{
  position: absolute;
  top: 4%;
  left: 7%;
  width: calc(194.9546 / 1280 * 100%);
  z-index: 2;
}
.item06 .name{
  position: absolute;
  top: 37%;
  left: 18%;
  width: calc(323.8618 / 1280 * 100%);
}
.item06 .title{
  position: absolute;
  top: 62%;
  left: 19%;
  width: calc(322.9282 / 1280 * 100%);
}
.item06 .photo02{
  width: calc(510 / 1280 * 100%);
  margin: 5% auto 0 14%;
}
.item06 .link{
  margin-left: 57%;
  margin-top: -13%;
  margin-bottom: 11%
;
}
.item06 .item-area{
  background: var(--color06-back);
}
.item06 .item-area .itemname{
  width: calc(225.4795 / 320.8633 * 100%);
}
/* bottom-block */
.bottom-block{
  position: relative;
  margin-top: -1px;
  padding-top: 12%;
  background: #fff;
  z-index: 2;
}
/* 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(191.0488 / 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(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(55 / 1280 * 100vw);
  z-index: 9999;
}
.stepnav .title{
  width: calc(35 / 55 * 100%);
  margin-inline: auto;
}
.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;
  margin-top: 1vw;
}
.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*="item0"] .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 / 666;
    background: #fff;
  }
  .header .title01{
    top: 35%;
    width: calc(240 / 375 * 100%);
  }
  .header .title02{
    top: 45.5%;
    width: calc(347 / 375 * 100%);
  }
  .header .title03{
    top: 79%;
    left: 6%;
    translate: 0 0;
    width: calc(165.8813 / 375 * 100%);
  }
  .header .title04{
    top: 92.5%;
    left: 5%;
    translate: 0 0;
    width: calc(176.6904 / 375 * 100%);
  }
  .header .item-photo{
    top: 65%;
    left: 57%;
    width: calc(168.9841 / 375 * 100%);
  }
  .header-logo {
    display: none;
  }
  /* lead */
  .lead{
    padding-bottom: 40vh;
  }
  .lead-inner{
    top: -10%;
  }
  .lead .bg{
    padding: 12vh 0;
  }
  .lead .logo{
    position: absolute;
    top: 12%;
    left: 50%;
    translate: -50% 0;
    width: calc(60 / 375 * 100%);
  }
  .lead .scroll{
    display: none;
  }
  /* main-wrapper */
  .main-wrapper{
    padding-top: 16%;
  }
  /* style-box---------------- */
  div[class*="item0"].style-box{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 10%;
  }
  .style-box:not(.item01){
    margin-top: 20%;
  }
  div[class*="item0"] .box01,
  div[class*="item0"] .box01-1,
  div[class*="item0"] .box01-2{
    flex-direction: column;
    display: contents;
    width: 100%;
  }
  div[class*="item0"] .number{
    position: relative;
    left: auto;
    margin: 0 auto;
    order: 1;
    animation-delay: 0s;
  }
  div[class*="item0"] .name{
    position: relative;
    top: auto;
    left: auto;
    margin: 12% auto 0;
    order: 3;
  }
  div[class*="item0"] .title{
    position: relative;
    top: auto;
    left: auto;
    margin: 12% auto 0;
    order: 4;
  }
  div[class*="item0"] .photo01{
    margin-top: 10%;
    order: 2;
  }
  div[class*="item0"] .photo02{
    margin-top: 10%;
    order: 5;
  }
  div[class*="item0"] .link,
  .item04 .box01 .link{
    position: relative;
    bottom: auto;
    right: auto;
    order: 6;
  }
  .style-box .item-area{
    width: calc(335 / 375 * 100%);
    margin-top: 16%;
    padding: 10% 0;
    border-radius: 1rem;
    order: 7;
  }
  .style-box .item-area .inner{
    flex-direction: column;
    width: calc(296.1182 / 335 * 100%);
  }
  .style-box .item-area .photo-area{
    width: calc(266 / 296.1182 * 100%);
    margin: 12% auto 0;
    order: 2;
  }
  .style-box .item-area .text-area{
    display: contents;
  }
  .style-box .item-area .itemname{
    order: 1;
  }
  .style-box .item-area .text{
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(32 / 15);
    order: 3;
  }
  .style-box .item-area .link{
    order: 4;
  }
  .style-box .item-area .link._item{
    margin-inline: auto;
  }
  /* item01------------------------ */
  .item01{
    padding-top: 0;
  }
  .item01 .number{
    width: calc(181.7241 / 375 * 100%);
  }
  .item01 .name{
    width: calc(271.7852 / 375 * 100%);
  }
  .item01 .title{
    width: calc(280.3158 / 375 * 100%);
  }
  .item01 .photo02{
    width: calc(330 / 375 * 100%);
    margin-inline: auto;
  }
  .item01 .item-area .itemname{
    width: calc(248.0293 / 296.1182 * 100%);
  }
  /* item02------------------------ */
  .item02 .number{
    width: calc(191.5254 / 375 * 100%);
  }
  .item02 .name{
    width: calc(291.9004 / 375 * 100%);
  }
  .item02 .title{
    width: calc(275.8769 / 375 * 100%);
  }
  .item02 .photo02{
    width: calc(280 / 375 * 100%);
    margin-inline: auto;
  }
  .item02 .item-area .itemname{
    width: calc(212.0586 / 296.1182 * 100%);
  }
  /* item03------------------------ */
  .item03 .number{
    width: calc(189.6353 / 375 * 100%);
  }
  .item03 .name{
    width: calc(282.7881 / 375 * 100%);
  }
  .item03 .title{
    width: calc(266.4604 / 375 * 100%);
  }
  .item03 .photo02{
    width: calc(350 / 375 * 100%);
    margin-inline: auto;
  }
  .item03 .item-area .itemname{
    width: calc(212.0586 / 296.1182 * 100%);
  }
  /* item04------------------------ */
  .item04 .number{
    width: calc(190.5449 / 375 * 100%);
  }
  .item04 .name{
    width: calc(308.9961 / 375 * 100%);
  }
  .item04 .title{
    width: calc(274.4874 / 375 * 100%);
  }
  .item04 .photo02{
    width: calc(350 / 375 * 100%);
    margin-left: 0;
    margin-right: auto;
  }
  .item04 .item-area .itemname{
    width: calc(296.374 / 296.1182 * 100%);
  }
  /* item05------------------------ */
  .item05 .number{
    width: calc(191.0356 / 375 * 100%);
  }
  .item05 .name{
    width: calc(324.0332 / 375 * 100%);
  }
  .item05 .title{
    width: calc(249.3672 / 375 * 100%);
  }
  .item05 .photo02{
    width: calc(330 / 375 * 100%);
    margin-inline: auto;
  }
  .item05 .item-area .itemname{
    width: calc(283.999 / 296.1182 * 100%);
  }
  /* item06------------------------ */
  .item06 .number{
    width: calc(190.7559 / 375 * 100%);
  }
  .item06 .name{
    width: calc(323.8613 / 375 * 100%);
  }
  .item06 .title{
    width: calc(274.4875 / 375 * 100%);
  }
  .item06 .photo02{
    width: calc(350 / 375 * 100%);
    margin-inline: auto;
  }
  .item06 .item-area .itemname{
    width: calc(245.9824 / 296.1182 * 100%);
  }
  /* 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%);
  }
  /* bottom-block------------------ */
  .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%;
    padding-top: 2%;
  }
  .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%);
  }
}
@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;
  }
}
/* 【iPad 縦向きのみ】 */
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation:portrait) {
  body{
    background: #B5B5C4;
  }
  .lead{
    padding-bottom: 0;
  }
  .lead .bg{
    position: relative;
    left: 2%;
    width: auto;
    height: 80vh;
  }
  .item01 .photo01 .image{
    animation-duration: 0s;
  }
}  