:root {
  --font-NotoSerifJP: "Noto Serif JP", serif;
  --font-NotoSansJP: "Noto Sans JP", serif;
  --font-Lust-Didone: "Lust-Didone", serif;
  --font-DIN: "DIN", sans-serif;
  --font-Cardo: "Cardo", serif;
}
@font-face {
  font-family: 'DIN';
  src: url(../font/DIN-light.otf) format(opentype);
}
@font-face {
src: url(../font/fonnts.com-Lust-Didone-Display-.otf) format(opentype);
font-family: "Lust-Didone";
}
@font-face {
  font-family: 'GoudyOldStyleN';
  src: url(../font/Goudy-Old-Style) format(opentype);
}
*, *::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;
  background: #FCFAF7;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
.image{
  width: 100%;
}
.slide-box{
  overflow: hidden;
}
/*animation*/
.fade{
  opacity: 0;
}
.fade.active{
  animation-name: fade;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.slideup{
  opacity: 0;
  translate: 0 10%;
  filter: blur(2px);
}
.slideup.active{
  animation-name: slideup;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes slideup {
  0% {
    opacity: 0;
    translate: 0 10%;
    filter: blur(2px);
  }
  100% {
      opacity: 1;
      translate: 0 0;
      filter: blur(0);
  }
}
.clippath-left{
  opacity: 0;
}
.clippath-left.active{
  animation-name: clippath-left;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  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: 0s;
  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);
  }
}
.photo-translate01{
  opacity: 0;
  translate: 2% 0;
  rotate: 2deg;
  scale: 1.2;
  filter: blur(4px);
}
.photo-translate01.active{
  animation-name: photo-translate01;
  animation-duration: 1.4s;
  animation-timing-function: ease;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes photo-translate01 {
  0% {
    opacity: 1;
    translate: 2% 0;
    rotate: 2deg;
    scale: 1.2;
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    translate: 0 0;
    rotate: 0deg;
    scale: 1;
    filter: blur(0);
  }
}
.photo-translate02{
  opacity: 0;
  translate: -2% 0;
  rotate: -2deg;
  scale: 1.2;
  filter: blur(4px);
}
.photo-translate02.active{
  animation-name: photo-translate02;
  animation-duration: 1.4s;
  animation-timing-function: ease;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes photo-translate02 {
  0% {
    opacity: 1;
    translate: -2% 0;
    rotate: -2deg;
    scale: 1.2;
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    translate: 0 0;
    rotate: 0deg;
    scale: 1;
    filter: blur(0);
  }
}
/*link*/
.link {
  position: relative;
  width: calc(246 / 1280 * 100vw);
  margin-bottom: 0.6%;
  z-index: 2;
}
.link-other{
  margin-top: 8%;
  padding-top: 8%;
  border-top: 1px solid #333;
}
.link .cart{
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
.link .cart:not(:last-child) {
  margin-bottom: 4%;
}
.link .cart:hover{
  opacity: 0.7;
}
.link .carttitle {
  font-family: var(--font-NotoSerifJP);
  font-size: calc(13 / 1280 * 100vw);
  letter-spacing: 0.04em;
}
.link .carttitle span {
  display: inline-block;
}
.link .cartprice {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: var(--font-NotoSerifJP);
  font-size: calc(13 / 1280 * 100vw);
}
.link .cartprice-yen {
  position: relative;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.link .cartprice-yen.size-l,
.link .cartprice-yen.size-s{
  padding-left: 1.3em;
}
.link .cartprice-yen.size-l::before,
.link .cartprice-yen.size-s::before{
  display: block;
  width: 1em;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: 0 auto;
}
.link .cartprice-yen.size-l::before{
  content: url(../img/sizeL-black.svg);
}
.link .cartprice-yen.size-s::before{
  content: url(../img/sizeS-black.svg);
}
.link._white .cartprice-yen.size-l::before{
  content: url(../img/sizeL-white.svg);
}
.link._white .cartprice-yen.size-s::before{
  content: url(../img/sizeS-white.svg);
}
.link .cartprice-yen.price-space{
  padding-left: 2.1em;
}
.link .cartprice-yen .tax{
  margin-left: 0.5em;
  font-size: calc(9 / 1280 * 100vw);
}
.link .cartprice-btn {
  position: relative;
  display: inline-block;
  margin-left: 1em;
  font-family: var(--font-DIN);
  font-size: calc(11 / 1280 * 100vw);
  line-height: 1;
}
.link .cartprice-btn::after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #333;
  position: absolute;
  bottom: -6%;
  left: 0;
}
.link._white .link-other,
.link._white .carttitle,
.link._white .cartprice,
.link._white .cartprice-yen,
.link._white .cartprice-btn{
  color: #fff;
  border-color: #fff;
}
.link._white .cartprice-btn::after{
  background: #fff;
}
  
/* 共通*/
.pc {
  display: block;
}
.sp {
  display: none;
}
.flex-box{
  display: flex;
}
.flex-reverse{
  flex-direction: row-reverse;
}
._white{
  color: #fff;
}
/*header*/
.header {
  position: relative;
  width: 100%;
}
.header .photo .image{
  animation-duration: 1s;
  animation-delay: 0.1s;
}
.header .title01{
  position: absolute;
  top: 34.4%;
  left: 4.3%;
  width: calc(528 / 1280 * 100%);
  animation-duration: 1s;
  animation-delay: 0.6s;
}
.header .title02{
  position: absolute;
  top: 49.7%;
  left: 2.8%;
  width: calc(683 / 1280 * 100%);
  animation-duration: 1s;
  animation-delay: 1s;
}
.header .title03{
  position: absolute;
  top: 68.5%;
  left: 15.4%;
  translate: -50% 0;
  width: calc(158 / 1280 * 100%);
  animation-duration: 1s;
  animation-delay: 0.9s;
}
.header .title04{
  position: absolute;
  top: 84.7%;
  left: 21.3%;
  width: calc(254 / 1280 * 100%);
  animation-duration: 0.6s;
  animation-delay: 1.5s;
}
.header .logo {
  position: absolute;
  top: 6.2%;
  left: 3.8%;
  width: calc(68 / 1280 * 100%);
}
/*nav-wrapper*/
.nav-wrapper {
  padding: 6% 0;
  aspect-ratio: 1280 / 902;
  background-image: url(../img/lead-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
/*lead*/
.lead .title{
  width: calc(713 / 1280 * 100%);
  margin-inline: auto;
}
.lead .text{
  margin-top: 3%;
  text-align: center;
  font-family: var(--font-NotoSerifJP);
  font-size: calc(18 / 1280 * 100vw);
  line-height: calc(44 / 22);
  letter-spacing: 0.12em;
}
/* nav-------------------- */
.nav{
  width: 100%;
  margin-top: 4%;
}
.nav .list{
  position: relative;
  width: 94%;
  margin-inline: auto;
}
.nav .item{
  animation-duration: 0.6s;
}
.nav .item._01{
  margin: 0 auto 0 10%;
  width: calc(189.644 / 1280 * 100%);
}
.nav .item._02{
  position: absolute;
  top: 0;
  left: 38%;
  width: calc(194.644 / 1280 * 100%);
}
.nav .item._03{
  position: absolute;
  top: 0;
  left: 66%;
  width: calc(205.5361 / 1280 * 100%);
}
.nav .item._04{
  position: absolute;
  bottom: 0;
  left: 24%;
  width: calc(196.6982 / 1280 * 100%);
}
.nav .item._05{
  position: absolute;
  bottom: 0;
  left: 52%;
  width: calc(210.6831 / 1280 * 100%);
}
.nav .item._06{
  margin: -18.5% 3% 0 auto;
  width: calc(227.9473 / 1280 * 100%);
}
.nav .item._01 .photo{
  width: calc(189.644 / 189.644 * 100%);
}
.nav .item._02 .photo{
  width: calc(194.644 / 194.644 * 100%);
}
.nav .item._03 .photo{
  width: calc(174.644 / 205.5361 * 100%);
}
.nav .item._04 .photo{
  width: calc(174.644 / 196.6982 * 100%);
}
.nav .item._05 .photo{
  width: calc(174.644 / 210.6831 * 100%);
}
.nav .item._06 .photo{
  width: calc(174.644 / 227.9473 * 100%);
}
.nav .item._01 .title{
  width: calc(172.5059 / 189.644 * 100%);
  margin: 0 auto 0 -8%;
}
.nav .item._02 .title{
  width: calc(169.1865 / 194.644 * 100%);
  margin: 0 auto 0 -8%;
}
.nav .item._03 .title{
  width: calc(205.5361 / 205.5361 * 100%);
  margin: -2% auto 0 -4%;
}
.nav .item._04 .title{
  width: calc(196.6982 / 196.6982 * 100%);
  margin: 0 auto 0 -16%;
}
.nav .item._05 .title{
  width: calc(210.6831 / 210.6831 * 100%);
  margin: 0 auto 0 -16%;
}
.nav .item._06 .title{
  width: calc(227.9473 / 227.9473 * 100%);
  margin: 0 auto 0 -18%;
}
.nav .item .photo{
  rotate: 0deg;
  scale: 1;
  transform-origin: bottom;
  transition: 0.1s;
}
.nav .item:hover .photo{
  scale: 1.1;
  rotate: -1deg;
}
/* item-box---------------------- */
.item-box{
  position: relative;
}
.item-box .sidetitle{
  position: absolute;
  top: 1vw;
  left: 1vw;
  width: calc(16.2466 / 1280 * 100%);
}
.item-box .slider-wrapper{
  width: 100%;
  overflow: hidden;
}
.item-box .slider01{
  width: calc(1001 / 1280 * 100%);
  margin: 4% auto 0 -12%;
}
.item-box .slider02{
  width: calc(1001 / 1280 * 100%);
  margin: 4% -14% 0 auto;
}
.item-box .text-box{
  position: relative;
  margin-top: 3%;
}
.item-box._01 .text-box{
  background-image: url('../img/textbox-bg01.png');
}
@supports (background-image: url('image.webp')) {
  .item-box._01 .text-box{
    background-image: url('../img/textbox-bg01.webp');
  }
}
.item-box._02 .text-box{
  background-image: url('../img/textbox-bg02.png');
}
@supports (background-image: url('image.webp')) {
  .item-box._02 .text-box{
    background-image: url('../img/textbox-bg02.webp');
  }
}
.item-box .text-box .inner{
  justify-content: space-between;
  align-items: flex-end;
  padding: 2% 0 3%;
}
.item-box._01 .text-box .inner{
  margin-left: auto;
  margin-right: 10.5%;
}
.item-box._02 .text-box .inner{
  margin-left: 9%;
}
.item-box .itemname-en{
  position: absolute;
}
.item-box .itemname-ja{
  font-family: var(--font-NotoSansJP);
  font-size: calc(21 / 1280 * 100vw);
  font-weight: 200;
  line-height: calc(44 / 24);
  letter-spacing: 0.1em;
}
.item-box .itemname-ja span{
  position: relative;
  width: fit-content;
  font-family: var(--font-NotoSerifJP);
  font-size: calc(31 / 1280 * 100vw);
  font-weight: 400;
  line-height: 1.1;
}
.item-box .itemname-ja span::after{
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 16%;
  left: 0;
  background: #333;
}
.item-box .itemname-ja._white span::after{
  background: #fff;
}
.item-box .text{
  margin-top: 4%;
  font-family: var(--font-NotoSansJP);
  font-size: calc(14 / 1280 * 100vw);
  font-weight: 200;
  line-height: calc(32.8095 / 16);
  letter-spacing: 0.02em;
}
.item-box .text-box{
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.item-box .photo {
  position: relative;
  margin-top: -4.5%;
  padding-top: 4.5%;
  z-index: 100;
}
/*item01----------------------*/
.item01{
  margin-top: 3%;
  padding-top: 3%;
  padding-bottom: 2%;
} 
.item01 .title{
  width: calc(689.2803 / 1280 * 93%);
  margin: 0 auto 0 35%;
}
.item01 .text-box .inner{
  width: calc(687.0083 / 1280 * 94%);
}
.item01 .itemname-en{
  top: 11%;
  left: 36%;
  width: calc(18.5981 / 1280 * 91%);
}
.item01 .photo{
  position: absolute;
  bottom: -3%;
  left: 1%;
  width: calc(483.373 / 1280 * 92.75%);
  z-index: 100;
}
/*item02----------------------*/
.item02{
  padding-top: 2%;
  z-index: 3;
}
.item02 .sidetitle{
  top: 0;
}
.item02 .title{
  width: calc(674.0137 / 1280 * 93%);
  margin: 3% 34% 0 auto;
}
.item02 .text-box .inner{
  width: calc(718 / 1280 * 94%);
}
.item02 .itemname-en{
  top: 11%;
  left: 6%;
  width: calc(18.5981 / 1280 * 91%);
}
.item02 .photo{
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(475.6734 / 1280 * 92.75%);
}
/*item03----------------------*/
.item03{
  padding-top: 3%;
  padding-bottom: 2%;
}
.item03 .sidetitle{
  top: 1vw;
}  
.item03 .title{
  width: calc(702.708 / 1280 * 93%);
  margin: 1% auto 0 34.5%;
}
.item03 .slider02{
  margin-top: 3.5%;
}
.item03 .text-box .inner{
  width: calc(687.0083 / 1280 * 94%);
}
.item03 .itemname-en{
  top: 11%;
  left: 35%;
  width: calc(37.2822 / 1280 * 91%);
}
.item03 .photo{
  position: absolute;
  top: -2.5%;
  left: 0;
  width: calc(423.082 / 1280 * 92.75%);
}
/*item04----------------------*/
.item04 .title{
  width: calc(640.2549 / 1280 * 93%);
  margin: 3% 33% 0 auto;
}
.item04 .slider01{
  margin-top: 3.5%;
}
.item04 .text-box .inner{
  width: calc(717.1837 / 1280 * 94%);
}
.item04 .itemname-en{
  top: 11%;
  left: 6%;
  width: calc(15.5396 / 1280 * 91%);
}
.item04 .photo{
  position: absolute;
  bottom: 0;
  right: 1%;
  width: calc(476.7603 / 1280 * 92.75%);
}
/*item05----------------------*/
.item05{
  padding-top: 3%;
  padding-bottom: 2%;
}
.item05 .sidetitle{
  top: 1vw;
}  
.item05 .title{
  width: calc(668.8779 / 1280 * 93%);
  margin: 1% auto 0 40.5%;
}
.item05 .slider02{
  margin-top: 3%;
}
.item05 .text-box .inner{
  width: calc(687.0083 / 1280 * 94%);
}
.item05 .itemname-en{
  top: 11%;
  left: 35%;
  width: calc(33.4994 / 1280 * 91%);
}
.item05 .photo{
  position: absolute;
  top: 0;
  left: 1%;
  width: calc(445 / 1280 * 92.75%);
}
/*item06----------------------*/
.item06{
  padding-top: 2%;
  padding-bottom: 6%;
}
.item06 .title{
  width: calc(640.2549 / 1280 * 93%);
  margin: 3% 36% 0 auto;
}
.item06 .text-box .inner{
  width: calc(718.0001 / 1280 * 94%);
}
.item06 .itemname-en{
  top: 11%;
  left: 5%;
  width: calc(37.2822 / 1280 * 91%);
}
.item06 .photo{
  position: absolute;
  bottom: -1%;
  right: 1%;
  width: calc(476.7603 / 1280 * 92.75%);
}
/* pickup */
.pickup .title{
  width: calc(150 / 1280 * 100%);
  margin-inline: auto;
}
.pickup .photo{
  width: calc(557 / 1280 * 100%);
  margin: 2% auto 0;
}
/*banner-staff*/
.banner-staff {
  margin: 6% auto 0;
}
.banner-staff .text{
  text-align: center;
  font-family: "Cardo", serif;
  font-size: calc(14 / 1280 * 100vw);
  line-height: calc(25 / 14);
  letter-spacing: 0.03em;
}
/*banner*/
.banner {
  width: calc(603 / 1280 * 100%);
  margin: 4% auto 0;
}
.banner-item {
  display: block;
  margin-top: 3%;
  border: 1px solid #333;
  transition: 0.6s ease-in-out;
}
/*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(40 / 1280 * 100vw);
  z-index: 9999;
}
.stepnav .list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.stepnav .list .title{
  width: calc(13.0938 / 50 * 100%);
  margin-bottom: 30%;
}
.stepnav .list .item{
  position: relative;
}
.stepnav .list .on{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  z-index: 2;
}
.stepnav .list a.current .on{
  opacity: 1;
}
/*pagetop*/
.pagetop {
  position: fixed;
  right: 1vw;
  bottom: 30px;
  width: calc(35 / 1280 * 100%);
  z-index: 99;
}
.pagetop .image{
  width: 100%;
}
/*footnav*/
.footnav {
  display: none;
}

@media (max-width: 768px) {
  /* link------------------------ */
  .link{
    width: 100%;
    margin-top: 12%;
  }
  .link .carttitle {
    font-size: calc(15 / 375 * 100vw);
  }
  .link .cartprice,
  .link .cartprice-yen-size{
    font-size: calc(15 / 375 * 100vw);
  }
  .link .cartprice-yen.size-l::before, .link .cartprice-yen.size-s::before{
    width: 3.8vw;
  }
  .link .cartprice-yen .tax{
    font-size: calc(10 / 375 * 100vw);
  }
  .link .cartprice-btn {
    margin-left: 1em;
    font-size: calc(15 / 375 * 100vw);
  }
  .link .cartprice-btn::after{
    bottom: -9%;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /* アニメーション */
  /* header------------------------ */
  .header{
    aspect-ratio: inherit;
  }
  .header .title01{
    top: 27%;
    left: 7%;
    width: calc(256.6844 / 375 * 105%);
  }
  .header .title02{
    top: 35.5%;
    left: 4%;
    width: calc(336.8706 / 375 * 105%);
  }
  .header .title03{
    top: 46%;
    left: 27%;
    width: calc(65.5025 / 375 * 120%);
  }
  .header .title04{
    top: 54%;
    left: 35%;
    width: calc(130.2407 / 375 * 105%);
  }
  .header .logo{
    top: 2%;
    left: 2%;
    width: calc(66 / 375 * 100%);
  }
  /*nav-wrapper*/
  .nav-wrapper{
    padding: 12% 0;
  }
  /* lead */
  .lead .title{
    width: calc(309 / 375 * 100vw);
  }
  .lead .text{
    margin-top: 8%;
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(30 / 16);
    letter-spacing: 0;
  }
  /* nav */
  .nav{
    margin-top: 6%;
  }
  .nav .item._01,
  .nav .item._02,
  .nav .item._03,
  .nav .item._04,
  .nav .item._05,
  .nav .item._06 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 auto;
    width: calc(180 / 375 * 100%);
  }
  .nav .item._01 .photo,
  .nav .item._02 .photo,
  .nav .item._03 .photo,
  .nav .item._04 .photo,
  .nav .item._05 .photo,
  .nav .item._06 .photo{
    width: 98%;
    margin: auto;
  }
  .nav .item:hover .photo{
    scale: 1;
    rotate: 0deg;
  }

  /* item-box */
  section[class*="item0"]{
    margin-top: 12%;
    /* margin-bottom: 6%; */
    padding-top: 2%;
    padding-bottom: 0;
    overflow: clip;
  }
  section[class*="item0"] .sidetitle{
    top: 45vw;
    width: calc(16.2461 / 375 * 100%);
    display: none;
  }
  .item-box div[class*="photo"] {
    bottom: auto;
    top: 24%;
    z-index: 2;
  }
  .item-box div[class*="photo"] .image{
    animation-duration: 1s;
    animation-delay: 0s;
  }
  section[class*="item0"] .slider01,
  section[class*="item0"] .slider02 {
      width: 100%;
      margin-inline: auto;
      animation-duration: 0s;
      opacity: 1;
  }
  .item-box._01 .text-box,
  .item-box._02 .text-box{
    padding-top: 10%;
  }
  .item-box._01 .text-box .inner,
  .item-box._02 .text-box .inner{
    flex-direction: column;
    align-items: flex-start;
    width: calc(320 / 375 * 100%);
    margin-right: auto;
    margin-left: auto;
    padding: 6% 0 14%;
  }
  .item-box .itemname-en{
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 7% 0  auto;
  }
  .item-box .itemname-ja{
    text-align: right;
    font-size: calc(20 / 375 * 100vw);
  }
  .item-box .itemname-ja span{
    font-size: calc(27 / 375 * 100vw);
  }
  .item-box .text{
    margin-top: 6%;
    font-size: calc(15 / 375 * 100vw);
    letter-spacing: 0;
  }
  /* item01 */
  .item01 .title{
    width: calc(325.7036 / 375 * 100%);
    margin: 0 auto;
  } 
  .item01 .photo{
    left: 0;
    width: calc(287.925 / 375 * 44%);
  }
  .item01 .itemname-en{
    width: calc(220 / 375 * 90%);
  }
  /* item02 */
  .item02 .title{
    width: calc(318.4712 / 375 * 100%);
    margin: 0 auto;
  }
  .item02 .photo{
    width: 33%;
    top: 22% !important;
  }
  .item02 .itemname-en{
    width: calc(201 / 375 * 90%);
    margin-left: 7%;
    margin-right: auto;
  }
  .item02 .itemname-ja{
    text-align: left;
  }
  /* item03 */
  .item03 .title{
    width: calc(332.0493 / 375 * 100%);
    margin: 0 auto;
  }
  .item03 .photo{
    top: 22% !important;
    width: calc(253.0824 / 375 * 44%);
  }
  .item03 .itemname-en{
    width: calc(220 / 375 * 100%);
  }
  /* item04 */
  .item04 .title{
    width: calc(302.5186 / 375 * 100%);
    margin: 0 auto;
  }
  .item04 .photo{
    right: 0;
    width: calc(375 / 375 * 31%);
  }
  .item04 .itemname-en{
    width: calc(225 / 375 * 90%);
    margin-left: 7%;
    margin-right: auto;
  }
  .item04 .itemname-ja{
    text-align: left;
  }
  /* item05 */
  .item05 .title{
    width: calc(316.0439 / 375 * 100%);
    margin: 0 auto;
  }
  .item05 .photo{
    top: 22% !important;
    left: -2%;
    width: calc(375 / 375 * 29%);  
  }
  .item05 .itemname-en{
    width: calc(219 / 375 * 90%);
  }
  /* item06 */
  .item06 .title{
    width: calc(304.4814 / 375 * 100%);
    margin: 0 auto;
  }
  .item06 .photo{
    top: 21% !important;
    right: 0;
    width: calc(239.2306 / 375 * 50%);
  }
  .item06 .itemname-en{
    width: calc(220 / 375 * 90%);
    margin-left: 7%;
    margin-right: auto;
  }
  .item06 .itemname-ja{
    text-align: left;
  }
  /* pickup */
  .pickup{
    padding-top: 12%;
  }
  .pickup .title{
    width: calc(111.8286 / 375 * 96%);
  }
  .pickup .photo{
    width: calc(320 / 375 * 100%);
    margin-top: 3%;
  }
  /* bottom-block------------------ */
  .banner-staff{
    margin-top: 14%;
  }
  .banner-staff .text{
    font-size: calc(12 / 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 */
  .stepnav{
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    width: 100%;
    transform: translateY(0);
    background: rgb(255 255 255 / 0.7);    
    overflow: hidden;
  }
  .stepnav .list{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .stepnav .list .title{
    width: calc(77 / 375 * 100%);
    margin: 0 auto;
  }
  .stepnav .list .item{
    width: calc(42 / 375 * 100%);
  }
  .stepnav .sp-pagetop{
    width: calc(47 / 375 * 100%);
  }
}