*,*::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%;display:block;height: auto;}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}}
@font-face {
  src: url(../font/Butler_Light.otf) format(opentype);
  font-family: 'ButlerLight';
}
@font-face {
  src: url(../font/Butler_Regular.otf) format(opentype);
  font-family: 'ButlerRegular';
  }
:root{
  --color-scene01: #779090;
  --color-scene02: #BBAA94;
  --color-scene03: #788878;
  --color-scene04: #B4B4A0;
  --color-scene01-bg: #D4E0E1;
  --color-scene03-bg: #C5CCBC;
  --color-scene04-bg: #F1F2EA;
  --font-ButlerLight: 'ButlerLight',serif,
  --font-ButlerRegular: 'ButlerRegular',serif,
}
body, a, p{
  font-family: "Shippori Mincho B1", serif;
  text-decoration: none;
  letter-spacing: 0.01rem;
  line-height: 2.2;
  -webkit-font-smoothing: antialiased;
}
body{
  position: relative;
  -webkit-overflow-scrolling: touch;
}
ul{
  padding: 0;
}
li{
  list-style: none;
}

.pc{
  display: block;
}
.sp{
  display: none;
}
.image{
  width: 100%;
}
.flex-box{
  display: flex;
}
.flex-box-reverse{
  flex-direction: row-reverse;
}
.slide-box{
  overflow: hidden;
}
/* アニメーション--------------------------- */
.header-fadein{
  animation-name: header-fadein;
  animation-duration: 2.8s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes header-fadein{
  0% {
    opacity: 0;
    translate: 3% -3%;
    scale: 1.2;
  }
  100% {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}
.fadein{
  opacity: 0;
}
.fadein.active{
  animation-name: fadein;
  animation-duration: 1.8s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadein{
  0% {
    opacity: 0;
    translate: 0 10%;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    translate: 0 0;
    filter: blur(0);
  }
}
.l-spacing01{
  opacity: 0;
}
.l-spacing01.active{
  animation-name: l-spacing01;
  animation-duration: 1.8s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes l-spacing01{
  0% {
    opacity: 0;
    letter-spacing: ;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    letter-spacing: 0.26em;
    filter: blur(0);
  }
}
.l-spacing02{
  opacity: 0;
}
.l-spacing02.active{
  animation-name: l-spacing02;
  animation-duration: 1.8s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes l-spacing02{
  0% {
    opacity: 0;
    letter-spacing: 0;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    letter-spacing: 0.08em;
    filter: blur(0);
  }
}
.fade-blur{
  opacity: 0;
}
.fade-blur.active{
  animation-name: fade-blur;
  animation-duration: 1.8s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fade-blur{
  0% {
    opacity: 0;
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.fadein-up{
  opacity: 0;
}
.fadein-up.active{
  animation-name: fadein-up;
  animation-duration: 1.6s;
  animation-timing-function: cubic-bezier(0.16, 0.88, 0.25, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadein-up{
  0% {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
  }
  50%{
    opacity: 1;
    filter: blur(40px) brightness(1.1);
  }
  70%{
    opacity: 1;
  }
  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
    clip-path: inset(0% 0 0 0);
  }
}
.clippath-left{
  opacity: 0;
}
.clippath-left.active{
  animation: clippath-left;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clippath;
  opacity: 0;
}
@keyframes clippath-left{
  0% {
    opacity: 1;
    filter: blur(6px);
    -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);
  }
}
.clippath-top{
  opacity: 0;
}
.clippath-top.active{
  animation: clippath-top;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clippath;
  opacity: 0;
}
@keyframes clippath-top{
  0% {
    opacity: 1;
    filter: blur(3px);
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.fade{
  opacity: 0;
}
.fade.active{
  animation-name: fade;
  animation-duration: 1s;
  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;
  }
}
.slideup{
  opacity: 0;
}
.slideup.active{
  animation: slideup;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideup{
  0% {
    opacity: 1;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slidedown{
  opacity: 0;
}
.slidedown.active{
  animation: slidedown;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slidedown{
  0% {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(-10%) scale(1.1);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}
/* ヘッダー--------------------------- */
.header{
  position: relative;
  aspect-ratio: 1280 / 720;
  overflow: hidden;
}
.header .logo{
  position: absolute;
  top: 34.5%;
  left: 50%;
  translate: -50% 0;
  width: calc(269.7068 / 1280 * 100%);
}
.header .photo{
  width: 100%;
}
.header .logo .image{
  animation-delay: 1.2s;
}
.header .title01{
  position: absolute;
  top: 55.5%;
  left: 50%;
  translate: -50% 0;
  width: calc(216.8701 / 1280 * 100%);
  animation-duration: 1.4s;
  animation-delay: 2.4s;
}
.header .title02{
  position: absolute;
  top: 60.5%;
  left: 50%;
  translate: -50% 0;
  width: calc(133.5612 / 1280 * 100%);
  animation-duration: 1.4s;
  animation-delay: 2.8s;
}
/* リード--------------------------- */
.lead{
  position: relative;
  text-align: center;
}
.lead .text{
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  text-align: center;
  color: #63564E;
  font-size: calc(16 / 1280 * 100vw);
  letter-spacing: 0.2em;
  line-height: calc(40 / 16);
}
/* リンクエリア--------------------------- */
.link-area{
  position: relative;
  width: calc(288.33 / 1280 * 100vw);
  margin: 20% auto 0;
  z-index: 2;
}
.link-area a{
  display: flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 0.4em;
  color: #434343;
  transition: 0.6s ease-in-out;
}
.link-area .mainitem{
  margin-bottom: 0.8em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #808080;
}
.link-area .item{
  width: 59%;
  letter-spacing: 0;
  font-size: calc(14 / 1280 * 100vw);
  line-height: 1;
}
.link-area .price{
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-right: 0.2em;
  font-size: calc(14 / 1280 * 100vw);
  white-space: nowrap;
  letter-spacing: 0.08rem;
  line-height: 1;
}
.link-area .price span{
  display: block;
  margin: 0 0.5em 0.1em;
  font-size: calc(7.5 / 1280 * 100vw);
  letter-spacing: 0;
}
.link-area .size-l::before{
  content: url(../img/size-l.svg);
  position: absolute;
  top: 50%;
  left: -1.3em;
  transform: translateY(-50%);
  width: 0.8em;
  height: 0.8em;
}
.link-area .size-s::before{
  content: url(../img/size-s.svg);
  position: absolute;
  top: 50%;
  left: -1.3em;
  transform: translateY(-50%);
  width: 0.8em;
  height: 0.8em;
}
.link-area .price-space::before{
  left: -1.8em;
}
.link-area .detail{
  padding: 0.35em 0.4em 0.5em;
  border: 1px solid #AAAAAA;
}
.scene01 .link-area .mainitem .detail{
  border: 1px solid var(--color-scene01);
  background: var(--color-scene01);
}
.scene02 .link-area .mainitem .detail{
  border: 1px solid var(--color-scene02);
  background: var(--color-scene02);
}
.scene03 .link-area .mainitem .detail{
  border: 1px solid var(--color-scene03);
  background: var(--color-scene03);
}
.scene04 .link-area .mainitem .detail{
  border: 1px solid var(--color-scene04);
  background: var(--color-scene04);
}
.link-area .detail .detail-text{
  display: flex;
  align-items: center;
  margin-top: 0;
  font-size: calc(10 / 1280 * 100vw);
  line-height: 0.8;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  transform: translateX(0.5em);
  transition: 0.3s ease-in-out;
}
.link-area .mainitem .detail .detail-text{
  color: #fff;
}
.link-area .anoteritem .detail{
  color: #808080;
}
.link-area a:hover .detail .detail-text{
  transform: translateX(0);
}
.link-area .detail .arrow{
  opacity: 0;
  width: 0.7vw;
  transform: translateX(-0.3em);
  transition: 0.3s ease-in-out;
}
.link-area a:hover .detail .arrow{
  opacity: 1;
  transform: translateX(0);
}
/* main-------------- */
.main{
  overflow: hidden;
}
/* item-wrapper---------------------------- */
.item-wrapper{
  position: relative;
}
.item-wrapper .number{
  padding-top: 3em;
  text-align: center;
  font-family: var(--font-ButlerRegular);
  font-size: calc(24 / 1280 * 100vw);
  letter-spacing: 0.1em;
}
.item-wrapper .name{
  text-align: center;
  font-family: var(--font-ButlerLight);
  font-size: calc(34 / 1280 * 100vw);
  line-height: 1.8;
}
.item-wrapper .line{
  display: block;
  width: 3em;
  height: 1px;
  margin: 1em auto 2em;
  background: #808080;
}
.item-wrapper .text{
  text-align: center;
  font-size: calc(15 / 1280 * 100vw);
  line-height: calc(38 / 15);
  letter-spacing: 0.06em;
}
.item-wrapper .inner{
  justify-content: space-between;
}
.item-wrapper .style-number{
  font-family: var(--font-ButlerLight);
  font-size: calc(26 / 1280 * 100vw);
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.item-wrapper .style-number span{
  margin-left: 0.4em;
  font-size: calc(34 / 1280 * 100vw);
  letter-spacing: 0.1em;
}
/* scene01---------------------------------- */
.scene01 .bg01{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 57.5%;
  background: var(--color-scene01-bg);
  z-index: -1;
}
.scene01 .bg02{
  position: absolute;
  top: 68.5%;
  left: 0;
  display: block;
  width: 100%;
  height: 19%;
  background: var(--color-scene01-bg);
  z-index: -1;
}
/* scene01-style01---------------------------------- */
.scene01-style01{
  position: relative;
  left: 1%;
  width: calc(878.3304 / 1280 * 100%);
  margin: 4% auto 0;
}
.scene01-style01 .inner{
  align-items: flex-end;
  margin-top: -41%;
}
.scene01-style01 .bg{
  width: calc(390 / 878.3304 * 100%);
  margin: 0 3% 0 auto;
}
.scene01-style01 .text-box{
  width: calc(288.33 / 878.3304 * 100%);
}
.scene01-style01 .scene-photo{
  width: calc(550 / 878.3304 * 100%);
}
/* scene01-style02---------------------------------- */
.scene01-style02{
  position: relative;
  left: 2%;
  width: calc(828.33 / 1280 * 100%);
  margin: 10% auto 0;
}
.scene01-style02 .inner{
  align-items: flex-end;
}
.scene01-style02 .bg{
  width: calc(193 / 828.33 * 100%);
  margin: 0 auto 0 3%;
}
.scene01-style02 .text-box{
  width: calc(288.33 / 828.33 * 100%);
  margin-bottom: 6%;
}
.scene01-style02 .scene-photo{
  width: calc(500 / 828.33 * 100%);
}
/* scene01-style03---------------------------------- */
.scene01-style03{
  position: relative;
  right: 7%;
  width: calc(828.3304 / 1280 * 100%);
  margin: 8% auto 0;
}
.scene01-style03 .inner{
  align-items: center;
}
.scene01-style03 .bg{
  width: calc(400 / 828.3304 * 100%);
  margin: -24% auto 2% -16.5%;
}
.scene01-style03 .text-box{
  width: calc(288.33 / 828.3304 * 100%);
}
.scene01-style03 .scene-photo{
  width: calc(500 / 828.3304 * 100%);
}
/* scene01-style04---------------------------------- */
.scene01-style04{
  position: relative;
  left: 10%;
  width: calc(768.33 / 1280 * 100%);
  margin: -22% auto 0;
}
.scene01-style04 .inner{
  align-items: flex-end;
}  
.scene01-style04 .bg{
  width: calc(193 / 768.33 * 100%);
  margin: 0 auto 0 3%;
}
.scene01-style04 .text-box{
  width: calc(288.33 / 768.33 * 100%);
  margin-bottom: 3%;
}
.scene01-style04 .scene-photo{
  width: calc(440 / 768.33 * 100%);
}
/* scene01-style05---------------------------------- */
.scene01-style05{
  position: relative;
  right: 4%;
  width: calc(828.3304 / 1280 * 100%);
  margin: 8% auto 0;
}
.scene01-style05 .inner{
  align-items: center;
}
.scene01-style05 .text-box{
  width: calc(288.33 / 828.3304 * 100%);
}
.scene01-style05 .scene-photo{
  width: calc(500 / 828.3304 * 100%);
}
/* scene02---------------------------------- */
.scene02{
  margin-top: 12%;
}
.scene02 .bg01{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  z-index: -1;
}
.scene02 .bg02{
  position: absolute;
  top: 64.75%;
  left: 0;
  display: block;
  width: 100%;
  z-index: -1;
}

/* scene02-style01---------------------------------- */
.scene02-style01{
  position: relative;
  left: 1%;
  width: calc(918.3304 / 1280 * 100%);
  margin: 4% auto 0;
}
.scene02-style01 .inner{
  align-items: flex-end;
}
.scene02-style01 .text-box{
  width: calc(288.33 / 918.3304 * 100%);
  margin-bottom: 6%;
}
.scene02-style01 .scene-photo{
  width: calc(590 / 918.3304 * 100%);
}
/* scene02-style02---------------------------------- */
.scene02-style02{
  position: relative;
  left: 2%;
  width: calc(878.33 / 1280 * 100%);
  margin: 8% auto 0;
}
.scene02-style02 .inner{
  align-items: center;
}
.scene02-style02 .text-box{
  width: calc(288.33 / 878.33 * 100%);
}
.scene02-style02 .scene-photo{
  width: calc(550 / 878.33 * 100%);
}
/* scene02-style03---------------------------------- */
.scene02-style03{
  position: relative;
  right: 3%;
  width: calc(824.3304 / 1280 * 100%);
  margin: 8% auto 0;
}
.scene02-style03 .inner{
  align-items: flex-end;
}
.scene02-style03 .text-box{
  width: calc(288.33 / 824.3304 * 100%);
  margin-bottom: 8%;
}
.scene02-style03 .scene-photo{
  width: calc(496 / 824.3304 * 100%);
}
/* scene02-style04---------------------------------- */
.scene02-style04{
  position: relative;
  left: 2%;
  width: calc(878.33 / 1280 * 100%);
  margin: 8% auto 0;
}
.scene02-style04 .inner{
  align-items: flex-end;
}
.scene02-style04 .text-box{
  width: calc(288.33 / 878.33 * 100%);
  margin-bottom: 6%;
}
.scene02-style04 .scene-photo{
  width: calc(550 / 878.33 * 100%);
}
/* scene03---------------------------------- */
.scene03{
  margin-top: 12%;
}
.scene03 .bg01{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 81.8%;
  background: var(--color-scene03-bg);
  z-index: -1;
}
.scene03 .bg02{
  position: absolute;
  top: 11%;
  left: 0;
  display: block;
  width: 100%;
  z-index: 0;
}
.scene03 .bg03{
  position: absolute;
  top: 53%;
  left: 0;
  aspect-ratio: 1280 / 1060;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}
.scene03 .bg03 .image{
  margin-top: -1px;
}
/* scene03-style01---------------------------------- */
.scene03-style01{
  position: relative;
  left: 2%;
  width: 100%;
  margin: 9% auto 0;
}
.scene03-style01 .inner{
  justify-content: center;
  align-items: flex-end;
}
.scene03-style01 .text-box{
  position: relative;
  left: 2%;
  width: calc(288.33 / 1280 * 100%);
  margin-bottom: 2%;
}
.scene03-style01 .scene-photo{
  position: relative;
  right: 5%;
  width: calc(550 / 1280 * 100%);
}
/* scene03-style02---------------------------------- */
.scene03-style02{
  position: relative;
  right: 3%;
  width: calc(828.3304 / 1280 * 100%);
  margin: 9% auto 0;
}
.scene03-style02 .inner{
  justify-content: space-between;
  align-items: center;
}
.scene03-style02 .text-box{
  width: calc(288.33 / 828.3304 * 100%);
  margin-bottom: 2%;
}
.scene03-style02 .scene-photo{
  width: calc(500 / 828.3304 * 100%);
}
/* scene03-style03---------------------------------- */
.scene03-style03{
  position: relative;
  width: calc(930 / 1280 * 100%);
  margin: 6% auto 0;
}
.scene03-style03 .inner{
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.scene03-style03 .text-box{
  display: contents;
  width: calc(288.33 / 930 * 100%);
  margin-bottom: 2%;
}
.scene03-style03 .style-number{
  position: absolute;
  top: 0.75em;
  left: 1.5em;
  color: #fff;
  order: 1;
  z-index: 2;
}
.scene03-style03 .scene-photo{
  width: 100%;
  order: 2;
}
.scene03-style03 .link-area{
  margin: 2% 2% 0 auto;
  order: 3;
}
/* scene03-style04---------------------------------- */
.scene03-style04{
  width: calc(878.3301 / 1280 * 100%);
  margin: 6% auto 0;
}
.scene03-style04 .inner{
  justify-content: space-between;
  align-items: flex-end;
}
.scene03-style04 .text-box{
  width: calc(288.33 / 878.3301 * 100%);
  margin-bottom: 3%;
}
.scene03-style04 .scene-photo{
  width: calc(550 / 878.3301 * 100%);
}
/* scene04---------------------------------- */
.scene04{
  margin-top: 6%;
}
.scene04 .bg01{
  position: absolute;
  top: 16%;
  left: 0;
  display: block;
  width: 100%;
  height: 32.5%;
  background: var(--color-scene04-bg);
  z-index: -1;
}
.scene04 .bg02{
  position: absolute;
  top: 62.8%;
  left: 0;
  display: block;
  width: 100%;
  height: 25%;
  background: var(--color-scene04-bg);
  z-index: -1;
}
/* scene04-style01---------------------------------- */
.scene04-style01{
  position: relative;
  width: calc(881.5381 / 1280 * 100%);
  margin: 8% auto 0;
}
.scene04-style01 .inner{
  align-items: center;
}
.scene04-style01 .text-box{
  width: calc(288.33 / 881.5381 * 100%);
}
.scene04-style01 .scene-photo{
  width: calc(550 / 881.5381 * 100%);
}
/* scene04-style02---------------------------------- */
.scene04-style02{
  position: relative;
  right: 4%;
  width: calc(768.3301 / 1280 * 100%);
  margin: 6% auto 0;
}
.scene04-style02 .inner{
  align-items: center;
}
.scene04-style02 .text-box{
  width: calc(288.33 / 768.3301 * 100%);
  margin-bottom: 16%;
}
.scene04-style02 .scene-photo{
  width: calc(440 / 768.3301 * 100%);
}
/* scene04-style03---------------------------------- */
.scene04-style03{
  position: relative;
  left: 3%;
  width: calc(878.58 / 1280 * 100%);
  margin: 8% auto 0;
}
.scene04-style03 .inner{
  align-items: flex-end;
}
.scene04-style03 .text-box{
  width: calc(288.33 / 878.58 * 100%);
  margin-bottom: 10%;
}
.scene04-style03 .scene-photo{
  width: calc(550 / 878.58 * 100%);
}
/* scene04-style04---------------------------------- */
.scene04-style04{
  position: relative;
  left: 14%;
  width: calc(878.5801 / 1280 * 100%);
  margin-top: 8%;
}
.scene04-style04 .inner{
  align-items: flex-end;
}  
.scene04-style04 .text-box{
  width: calc(288.33 / 878.5801 * 100%);
  margin-bottom: 10%;
}
.scene04-style04 .scene-photo{
  width: calc(550 / 878.5801 * 100%);
}
/* othercut----------------------------- */
.othercut{
  position: relative;
  width: calc(874 / 1280 * 100%);
  margin: 12% auto 0;
}
.othercut .title{
  color: #909090;
  font-family: var(--font-ButlerRegular);
  font-size: calc(43 / 1280 * 100vw);
  letter-spacing: 0.08em;
}
.othercut .list{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0.5vw;
  margin: 2% auto 0;
}
.othercut .slider01{
  margin-top: 0.5vw;
}
.othercut .list .item{
  overflow: hidden;
}
.othercut .list .item .image{
  width: 100%;
}
.othercut .list .item .slidedown.active{
  animation-duration: 1.4s;
  animation-delay: 0s;
}
.othercut .list .item .clippath-left.active{
  animation-delay: 0.6s;
}
/* end-block------------------ */
.end-block{
  position: relative;
  margin-top: 0;
  overflow: hidden;
}
.end-block .bgi-photo{
  position: absolute;
  top: 0;
  left: 0;
}
/*banner-block-----------------------------*/
.banner-block{
  margin: 10% auto 40px;
  position: relative;
}
.banner-block a{
  display: block;
  transition: 0.6s ease-in-out;
}
.banner-block a:hover{
  background: rgba(255,255,255,0.4);
}
.banner-block .c-btn01{
  width: 36%;
  min-width: 600px;
  margin: 0 auto 1rem;
  border: 1px solid #000;
  transition: .3s;
  display: block;
}
.banner-block .line{
  display: block;
  width: 100%;
  max-width: 1200px;
  height: 1px;
  margin: 5% auto 0;
  background: #000;
}
.banner-block .flex-box{
  justify-content: space-between;
  width: 36%;
  min-width: 600px;
  margin: 5% auto;
}
.banner-block .flex-box .c-btn01{
  width: 48%;
  min-width: 290px;
  margin: 0;
}
/* ページトップボタン---------------------------- */
.pagetop{
  position: fixed;
  right: 15px;
  bottom: 20px;
  width: 35px;
  z-index: 99;
}
/* フッター--------------------------------------------- */
.footer{
  letter-spacing: 0.3em;
  position: relative;
  text-align: center;
  padding: 0 0 30px 0;
}
.footer img{
  transition: .3s;
}
.footer img:hover{
  opacity: 0.6;
  transition: .3s;
}
.footer_sns {
  margin: 26px 0 0;
}
.footer_sns .instagram{
  display: block;
  width: 2.5%;
  min-width: 36px;
  margin: 0 auto 2%;
  opacity: 1;
  transition: .3s;
}
.f-ow{
  width: 7vw;
  min-width: 120px;
  margin: 25px auto 0 auto;
}
.footer_copyright{
  font-family: "Helvetica",serif;
  font-size: max(0.6vw,10px);
  letter-spacing: 0.02em;
  margin: 34px 0 0;
}
@media screen and (max-width:768px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  .flex-box{
    flex-direction: column-reverse;
  }
  /* アニメーション-------------------------- */
  .fade-repeat{
    animation-name: fade-repeat;
    animation-duration: 8s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes fade-repeat{
    0% { opacity: 0; }
    10% { opacity: 1; filter: blur(1px)}
    12% {filter: blur(0);}
    45% { opacity: 1; }
    55% { opacity: 0; }
    100% { opacity: 0; }
  }
  /* ヘッダー--------------------------- */
  .header{
    display: flex;
    flex-direction: column;
    align-items: center;
    aspect-ratio: 375 / 665;
  }
  .header .photo{
    position: absolute;
    top: 0;
    left: 0;
  }
  .header .photo02 .image{
    animation-delay: 4s;
  }
  .header .logo{
    top: 66.5%;
    right: 5.25%;
    width: calc(218 / 375 * 100%);
  }
  .header .title01{
    top: 83%;
    width: calc(181.1963 / 375 * 100%);
  }
  .header .title02{
    top: 88%;
    width: calc(112.2881 / 375 * 100%);
  }
  /* リード--------------------------- */
  .lead .text{
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(37 / 16);
    letter-spacing: 0.06em;
  }
  /* リンクエリア--------------------------- */
  div[class*="scene0"] .link-area{
    width: 100%;
    margin: 8% auto 0;
    min-width: inherit;
  }
  .link-area a{
    align-items: center;
  }
  .link-area .item{
    width: 67%;
    font-size: calc(14 / 375 * 100vw);
  }
  .link-area .price{
    font-size: calc(14 / 375 * 100vw);
  }
  .link-area .price span{
    font-size: calc(7.5 / 375 * 100vw);
  }
  .link-area .detail{
    padding: 0.4em;
  }
  .link-area .detail .detail-text{
    font-size: calc(10 / 375 * 100vw);
    transform: translateX(0.25em);
  }
  .link-area .detail .arrow{
    width: 2vw;
  }
  /* item-wrapper---------------------- */
  div[class*="scene0"] {
    left: 0;
    right: 0;
    width: 100%;
  }
  .item-wrapper .number{
    padding-top: 2em;
    font-size: calc(22 / 375 * 100vw);
  }
  .item-wrapper .name{
    font-size: calc(30 / 375 * 100vw);
    line-height: calc(45 / 30);
  }
  .item-wrapper .line{
    width: 2em;
    margin-bottom: 1.2em;
  }
  div[class*="scene0"] .inner{
    right: auto;
    left: auto;
    align-items: center;
    width: 100%;
    margin-inline: auto;
  }
  div[class*="scene0"] .text-box{
    width: calc(288.3303 / 375 * 100%);
    margin-bottom: 0;
  }
  div[class*="scene0"] .text{
    font-size: calc(14.5 / 375 * 100vw);
    line-height: calc(32 / 14.5);
  }
  .item-wrapper .style-number{
    margin-top: 0.5em;
    font-size: calc(20 / 375 * 100vw);
  }
  .item-wrapper .style-number span{
    font-size: calc(27 / 375 * 100vw);
  }
  div[class*="scene0"] .scene-photo{
    margin-top: 14%;
  }
  /* scene01------------- */
  .scene01 .bg01{
    height: 38%;
  }
  .scene01 .bg02{
    top: 55.25%;
    height: 29%;
  }
  /* scene01-style01------------------------- */
  .scene01-style01{
    margin-top: 12%;
  }
  .scene01-style01 .bg{
    width: calc(290 / 375 * 100%);
    margin: 0 0 0 auto;
  }
  .scene01-style01 .inner{
    margin-top: -93%;
  }
  .scene01-style01 .scene-photo{
    width: calc(352 / 375 * 100%);
    margin-left: 0;
    margin-right: auto;
  }
   /* scene01-style02------------------------- */
  .scene01-style02{
    margin-top: 0;
  }
  .scene01-style02 .bg{
    width: calc(156 / 375 * 100%);
    margin-left: 0;
  }
  .scene01-style02 .scene-photo{
    width: calc(330 / 375 * 100%);
    margin-left: auto;
    margin-right: 0;
  } 
   /* scene01-style03------------------------- */
   .scene01-style03{
    margin-top: 0;
  }
  .scene01-style03 .bg{
    position: absolute;
    top: 35%;
    left: 0;
    width: calc(260 / 375 * 100%);
    margin: auto;
    z-index: -1;
  }
  .scene01-style03 .text-box{
    margin-top: 22%;
  }
  .scene01-style03 .scene-photo{
    width: calc(320 / 375 * 100%);
    margin-inline: auto;
  }
  /* scene01-style04------------------------- */
  .scene01-style04{
    margin-top: 0;
  }
  .scene01-style04 .scene-photo{
    width: calc(348 / 375 * 100%);
    margin-left: auto;
    margin-right: 0;
  }
  /* scene01-style05------------------------- */
  .scene01-style05{
    margin-top: 0;
  }
  .scene01-style05 .scene-photo{
    width: 100%;
  }
  /* scene02------------- */
  .scene02 .bg02{
    top: 64.75%;
  }
  /* scene02-style01------------------------- */
  .scene02-style01{
    margin-top: 0;
  }
  .scene02-style01 .scene-photo{
    width: 100%;
  margin-top: 12% !important;
  }
  /* scene02-style02------------------------- */
  .scene02-style02{
    margin-top: 0;
  }
  .scene02-style02 .scene-photo{
    width: calc(348 / 375 * 100%);
    margin-left: auto;
    margin-right: 0;
  }
  /* scene02-style03------------------------- */
  .scene02-style03{
    margin-top: 0;
  }
  .scene02-style03 .scene-photo{
    width: calc(340 / 375 * 100%);
    margin-left: 0;
    margin-right: auto;
  }
  /* scene02-style04------------------------- */
  .scene02-style04{
    margin-top: 0;
  }
  .scene02-style04 .scene-photo{
    width: calc(330 / 375 * 100%);
    margin-inline: auto;
  }
  /* scene03--------------------------------- */
  .scene03 .bg01{
    height: 84.8%;
  }
  .scene03 .bg04{
    position: absolute;
    top: 55.05%;
    left: 0;
    display: block;
    width: 100%;
    height: 21.8%;
    z-index: 0;
  }
  /* scene03-style01------------------------- */
  .scene03-style01{
    margin-top: 10%;
  }
  .scene03-style01 .scene-photo{
    right: auto;
    width: calc(352 / 375 * 100%);
    margin-left: auto;
    margin-right: 0;
  }
  /* scene03-style02------------------------- */
  .scene03-style02{
    margin-top: 0;
  }
  .scene03-style02 .scene-photo{
    width: calc(320 / 375 * 100%);
    margin-inline: auto;
  }
  /* scene03-style03------------------------- */
  .scene03-style03 .inner{
    flex-direction: column-reverse;
  }
  .scene03-style03 .text-box{
    display: block;
  }
  .scene03-style03 .style-number{
    position: relative;
    top: auto;
    left: auto;
    color: #000;
    order: inherit;
  }
  .scene03-style03 .scene-photo{
    width: 100%;
    margin-inline: auto;
    order: inherit;
  }
  .scene03-style03 .link-area{
    order: inherit;
  }
  /* scene03-style04------------------------- */
  .scene03-style04{
    margin-top: 0;
  }
  .scene03-style04 .scene-photo{
    width: calc(330 / 375 * 100%);
    margin-left: 0;
    margin-right: auto;
  }
  /* scene04--------------------------------- */
  .scene04 .bg01{
    height: 30.5%;
  }
  .scene04 .bg02{
    top: 67.5%;
    height: 20%;
  }
  /* scene04-style01------------------------- */
  .scene04-style01{
    margin-top: 0;
  }
  .scene04-style01 .scene-photo{
    width: calc(330 / 375 * 100%);
    margin-left: auto;
    margin-right: 0;
  }
  /* scene04-style02------------------------- */
  .scene04-style02{
    margin-top: 0;
  }
  .scene04-style02 .scene-photo{
    width: 100%;
  }
  /* scene04-style03------------------------- */
  .scene04-style03{
    margin-top: 0;
  }
  .scene04-style03 .scene-photo{
    width: calc(348 / 375 * 100%);
    margin-left: 0;
    margin-right: auto;
  }
  /* scene04-style04------------------------- */
  .scene04-style04{
    margin-top: 0;
  }
  .scene04-style04 .scene-photo{
    width: 100%;
  }
  /* othercut--------------------------- */
  .othercut{
    width: 100%;
    margin-top: 16%;
  }
  .othercut .title{
    text-align: center;
    font-size: calc(30 / 375 * 100vw);
  }
  .othercut .list{
    display: block;
    width: 100%;
    margin: 1% auto 0;
  }
  .othercut .slider01{
    margin-top: 2%;
  }
  .othercut .list .item .clippath-right.active{
    animation-delay: 0.6s;
  }
  .othercut .slick-slide{
    margin: 0 1vw;
  }
  /* バナー--------------------------- */
  .banner-block{
    margin-top: 20%;
    margin-bottom: 12%;
  }
  .banner-block .c-btn01{
    width: 70%;
    min-width: auto;
  }
  .banner-block .line{
    margin-top: 10%;
  }
  .banner-block .flex-box {
    flex-direction: row;
    width: 80%;
    min-width: auto;
    margin: 10% auto;
  }
  .banner-block .flex-box .c-btn01{
    min-width: auto;
  }
  /* ページトップボタン--------------------------- */
  .pagetop{
    position: fixed;
    right: 0;
    bottom: 0;
    width: 10%;
    z-index: 99;
  }
  /* フッター--------------------------- */
  .footer{
    padding-bottom: 20px;
  }
  .footer_sns{
    margin: 0 auto;
  }
}
