*,*::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}}
:root{
  --color-scene01: #e9c17a;
  --color-scene02: #8a8290;
  --color-scene03: #346b91;
}
body, a, p{
  font-family: "Shippori Mincho B1", serif;
  color: #434343;
  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,
.headerfadein{
  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);
  }
}
.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;
  }
}
.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;
    translate: -3% 0;
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    translate: 0 0;
    filter: blur(0);
  }
}
.clippath-left{
  opacity: 0;
}
.header-clippath,
.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(3px);
    -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: 0s;
  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);
  }
}
.fadein-left{
  opacity: 0;
  transform: translate(-14px, 0);
  scale: 1.1;
  filter: blur(8px);
  transition: all 1.2s ease 0.1s;
}
.fadein-left.active{
  opacity: 1;
  transform: translate(0, 0);
  scale: 1;
  filter: blur(0);
}

.slideup{
  opacity: 0;
}
.slideup.active,
.header-slideup{
  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,
.header-slidedown{
  animation: slidedown;
  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 slidedown{
  0% {
    opacity: 1;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ヘッダー--------------------------- */
.header{
  position: relative;
  aspect-ratio: 1280 / 720;
  overflow: hidden;
}
.header .photo{
  width: 100%;
  position: relative;
}
.header .photo .image{
  width: 100%;
}
.header .logo{
  position: absolute;
  top: 36.5%;
  right: 13%;
  width: calc(317.1022 / 1280 * 100%);
}
.header .logo .image{
  animation-delay: 1.2s;
}
.header .title{
  position: absolute;
  top: 64.5%;
  right: 17.15%;
  width: calc(211.165 / 1280 * 100%);
  animation-duration: 1.4s;
  animation-delay: 2.4s;
}
/* リード--------------------------- */
.lead{
  position: relative;
  margin: 5% auto 0;
  text-align: center;
}
.lead .title{
  width: calc(373.5553 / 1280 * 100%);
  margin-inline: auto;
  animation-duration: 0.6s;
}
.lead .text{
  margin-top: 3%;
  text-align: center;
  font-size: calc(17 / 1280 * 100vw);
  letter-spacing: 0.1rem;
  white-space: nowrap;
}
/* リンクエリア--------------------------- */
.link-area{
  position: relative;
  width: calc(288.3299 / 1280 * 100vw);
  margin: 4% auto 0;
  z-index: 2;
}
.link-area a,
.link-area .comingsoon{
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  margin-bottom: 0.4em;
  transition: 0.6s ease-in-out;
}
.link-area .mainitem{
  margin-bottom: 0.8em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #c0c0c0;
}
.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 #808080;
}
.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);
}
.link-area .detail .detail-text{
  display: flex;
  align-items: center;
  margin-top: 0;
  font-size: calc(9 / 1280 * 100vw);
  line-height: 0.8;
  transform: translateX(0.5em);
  transition: 0.3s ease-in-out;
}
.link-area .mainitem .detail .detail-text{
  color: #fff;
}
.scene01 .link-area .mainitem .detail .detail-text{
  color: #000000;
}
.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{
  margin-top: 10%;
}
/* item-wrapper---------------------------- */
.item-wrapper{
  position: relative;
}
.item-wrapper div[class*="scene01-box0"],
.item-wrapper div[class*="scene02-box0"],
.item-wrapper div[class*="scene03-box0"]{
  position: relative;
  width: 100%;
}
.item-wrapper .text{
  font-size: calc(16 / 1280 * 100vw);
  line-height: calc(40 / 16);
}
/* scene01---------------------------------- */
.scene01 .bg01{
  position: absolute;
  bottom: -14%;
  right: 0;
  width: calc(920 / 1196.6663 * 100vw);
}
.scene01 .bg01 .image{
  animation-delay: 0.6s;
}
.scene01 .bg02{
  position: absolute;
  top: 12%;
  left: 0;
  width: 100%;
}
.scene01 .bg03{
  position: absolute;
  top: 15%;
  left: 0;
  width: calc(830 / 1280 * 100%);
}
.scene01-box01{
  padding-bottom: 8%;
  overflow: hidden;
}
.scene01-box01 .inner{
  justify-content: space-between;
  align-items: flex-end;
  width: calc(1196.6663 / 1280 * 100%);
  margin: 0 0 0 auto;
}
.scene01 .scene01-1{
  width: calc(479.4077 / 1196.6663 * 100%);
  margin-bottom: 3%;
}
.scene01 .number{
  position: relative;
  right: 6%;
  width: calc(153.5441 / 479.4077 * 100%);
  margin-inline: auto;
}
.scene01 .title{
  width: calc(325.3127 / 479.4077 * 100%);
  margin: 6% auto 0;
}
.scene01 .text{
  margin-top: 8%;
  text-align: center;
}
.scene01 .scene-photo{
  width: calc(660 / 1196.6663 * 100%);
}
.scene01-box01 .link-area{
  margin-top: 40%;
  margin-right: 4%;
}
.scene01-box02{
  width: 100%;
}
.scene01-box02 .inner{
  position: relative;
  right: 2%;
  justify-content: space-between;
  width: calc(1090 / 1280 * 100%);
  margin: 10% auto 0;
}
.scene01-2{
  width: calc(550 / 1090 * 100%);
}
.scene01-2 .link-area{
  margin-left: 6%;
}
.scene01-3{
  margin-top: 24%;
  width: calc(500 / 1090 * 100%);
}
.scene01-3 .link-area{
  margin-left: auto;
  margin-right: 6%;
}
.scene01-box03 .inner{
  justify-content: center;
  width: calc(1280 / 1280 * 100%);
  margin: 10% auto 0;
}
.scene01-4{
  position: relative;
  left: 1%;
  width: calc(600 / 1280 * 100%);
}
.scene01-4 .link-area{
  margin-left: 6%;
}
.scene01-5{
  position: relative;
  right: 1%;
  margin-top: 18%;
  width: calc(600 / 1280 * 100%);
}
.scene01-5 .link-area{
  margin-left: auto;
  margin-right: 6%;
}
/* scene02----------------- */
.scene02{
  margin-top: 14%;
}
.scene02 .title-box{
  position: relative;
  aspect-ratio: 1280 / 304;
}
.scene02 .bg01{
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  z-index: -1;
}
.scene02 .bg02{
  position: absolute;
  top: 20%; 
  right: 0;
  width: calc(1120 / 1280 * 100%);
  z-index: -1;
}
.scene02 .bg02 .image{
  animation-delay: 1s;
}
.scene02 .bg03{
  position: absolute;
  bottom: -6%; 
  right: 6%;
  width: 100%;
  z-index: -1;
}
.scene02 .bg04{
  position: absolute;
  top: 22%; 
  right: 0;
  width: calc(1000 / 1280 * 100%);
  z-index: -1;
}
.scene02 .title-box .inner{
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  justify-content: space-between;
  width: calc(1061.4385 / 1280 * 100%);
  margin: auto;
}
.scene02 .title-box .number-box{
  width: calc(385.4735 / 1061.4385 * 100%);
}
.scene02 .title-box .number{
  position: relative;
  right: 4%;
  width: calc(174.4097 / 385.4735 * 100%);
  margin-inline: auto;
}
.scene02 .title-box .title{
  width: 100%;
  margin-top: 6%;
}
.scene02-box01{
  margin-top: 9%;
}
.scene02-1 .photo{
  width: calc(660 / 1280 * 100%);
}
.scene02-1 .link-area{
  margin-left: 3%;
}
.scene02-2{
  align-items: flex-end;
  margin-top: -25%;
}
.scene02-2 .photo{
  width: calc(550 / 1280 * 100%);
  margin-right: 2%;
}
.scene02-2 .link-area{
  margin-left: auto;
  margin: 0 3% 3% auto;
}
.scene02-box02{
  margin-top: 12%;
  padding-bottom: 6%;
}
.scene02-3{
  justify-content: space-between;
  align-items: flex-end;
  width: calc(934.3304 / 1280 * 100%);
  margin: 0 auto;
}
.scene02-3 .photo{
  position: relative;
  width: calc(600 / 934.3304 * 100%);
}
.scene02-3 .link-area{
  margin-right: 0;
  margin-bottom: 3%;
}
.scene02-box03 .inner{
  justify-content: center;
  width: calc(1050 / 1280 * 100%);
  margin: 10% 10% 0 auto;
}
.scene02-4{
  position: relative;
  left: 1%;
  width: calc(550 / 1280 * 100vw);
}
.scene02-4 .link-area{
  margin-left: 6%;
}
.scene02-5{
  position: relative;
  right: 1%;
  margin-top: 18%;
  width: calc(500 / 1280 * 100vw);
}
.scene02-5 .link-area{
  margin-left: auto;
  margin-right: 6%;
}
/* scene03---------------------------------- */
.scene03 .bg01{
  position: absolute;
  top: 0;
  right: 0;
  width: calc(920 / 1280 * 100vw);
  z-index: -1;
}
.scene03 .bg02{
  position: absolute;
  top: 36%;
  left: 0;
  width: calc(820 / 1280 * 100%);
}
.scene03 .bg03{
  position: absolute;
  top: 28%;
  left: 0;
  width: 100%;
}
.scene03 .bg03 .image{
  animation-duration: 1s;
}
.scene03-box01{
  margin-top: 12%;
  padding-top: 6%;
}
.scene03-box01 .inner{
  justify-content: space-between;
  align-items: flex-start;
  width: calc(1216.1038 / 1280 * 100%);
  margin: 0 auto 0 0;
}
.scene03 .scene03-1{
  width: calc(488.0121 / 1216.1038 * 100%);
  margin-top: 8%;
}
.scene03 .number{
  position: relative;
  right: 6%;
  width: calc(170.9127 / 488.0121 * 100%);
  margin-inline: auto;
}
.scene03 .title{
  width: calc(297.7142 / 488.0121 * 100%);
  margin: 6% auto 0;
}
.scene03 .text{
  margin-top: 8%;
  text-align: center;
}
.scene03 .scene-photo{
  width: calc(660 / 1218.9358 * 100%);
}
.scene03-box01 .link-area{
  margin-top: 40%;
  margin-left: 2%;
  margin-right: auto;
}
.scene03-box02 .inner{
  justify-content: center;
  width: calc(1280 / 1280 * 100%);
  margin: 10% auto 0;
}
.scene03-2{
  position: relative;
  left: 1%;
  width: calc(600 / 1280 * 100%);
  margin-top: 16%;
}
.scene03-2 .link-area{
  margin-left: 6%;
}
.scene03-3{
  position: relative;
  right: 1%;
  width: calc(550 / 1280 * 100%);
}
.scene03-3 .link-area{
  margin-left: auto;
  margin-right: 6%;
}
.scene03-box03{
  width: 100%;
  margin-top: 10%;
}
.scene03-box03 .inner{
  justify-content: space-between;
  width: calc(1140 / 1280 * 100%);
  margin-inline: auto;
}
.scene03-4{
  width: calc(550 / 1140 * 100%);
}
.scene03-4 .link-area{
  margin-left: 6%;
}
.scene03-5{
  margin-top: 18%;
  width: calc(550 / 1140 * 100%);
}
.scene03-5 .link-area{
  margin-left: auto;
  margin-right: 6%;
}
/* othercut----------------------------- */
.othercut{
  position: relative;
  margin-top: 12%;
}
.othercut .title{
  width: calc(249.1553 / 1280 * 100%);
  margin: 2.5% auto 0;
}
.othercut .list{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0.5vw;
  width: calc(690 / 1280 * 100%);
  margin: 3% auto 0;
}
.othercut .slider01{
  margin-top: 0.5vw;
}
.othercut .list .item{
  overflow: hidden;
}
.othercut .list .item .image{
  width: 100%;
}
.othercut .list .item .fade-blur.active{
  animation-delay: 0s;
}
.othercut .list .item .fade.active{
  animation-delay: 0.8s;
}
/* 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;
  }
  /* アニメーション-------------------------- */
  .header-fadein{
    animation-duration: 2.4s;
  }
  .fadein.active{
    animation-duration: 0.8s;
  }
  @keyframes fadein{
    0% {
      opacity: 0.5;
      translate: 0 10%;
      filter: blur(2px);
    }
    100% {
      opacity: 1;
      translate: 0 0;
      filter: blur(0);
    }
  }
  /* ヘッダー--------------------------- */
  .header{
    display: flex;
    flex-direction: column;
    align-items: center;
    aspect-ratio: 375 / 665;
  }
  .header .logo{
    top: 16.5%;
    right: 5.25%;
    width: calc(135.3276 / 375 * 100%);
  }
  .header .title{
    top: 30%;
    right: 9%;
    width: calc(105.8516 / 375 * 100%);
  }
  /* リード--------------------------- */
  .lead{
    margin: 10% auto 0;
  }
  .lead .title{
    width: calc(275.415 / 375 * 100%);
    margin-top: 12%;
  }
  .lead .text{
    margin-top: 6%;
    font-size: calc(14 / 375 * 100vw);
    letter-spacing: 0.06em;
  }
  /* リンクエリア--------------------------- */
  div[class*="scene0"] .link-area{
    width: calc(288.3301 / 375 * 100%);
    margin: 6% 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(9 / 375 * 100vw);
    transform: translateX(0.25em);
  }
  .link-area .detail .arrow{
    width: 2vw;
  }
  /* item-wrapper---------------------- */
  .main{
    margin-top: 20%;
  }
  div[class*="scene0"] {
    left: 0;
    right: 0;
    width: 100% !important;
    margin: 0 auto;
    padding: 0;
  }
  div[class*="scene0"] .inner{
    right: auto;
    left: auto;
    width: 100% !important;
    margin: 0 auto;
  }
  .scene01  div[class*="scene0"] .photo,
  .scene02  div[class*="scene0"] .photo, 
  .scene03  div[class*="scene0"] .photo{
    overflow: hidden;
  }
  div[class*="scene0"] .text{
    margin: 12% auto 0;
    font-size: calc(14.5 / 375 * 100vw);
  }
  div[class*="scene0"] .photo{
    margin-top: 18%;
  }
  .scene01 .scene01-1,
  .scene02 .scene02-1,
  .scene03 .scene03-1{
    display: contents;
    overflow: hidden;
  }
  .item-wrapper .number{
    order: 1;
  }
  .item-wrapper .title{
    order: 2;
  }
  .item-wrapper .text{
    order: 3;
  }
  .item-wrapper .scene-photo{
    width: 100%;
    margin-top: 10%;
    order: 4;
  }
  .item-wrapper .link-area{
    order: 5;
  }
  /* scene01----------------- */
  .scene01 .bg01{
    width: 100%;
    top: 2%;
    bottom: auto;
    z-index: -1;
  }
  .scene01 .bg02{
    width: calc(304 / 375 * 100%);
    top: 12%;
    bottom: auto;
    left: auto;
    right: 0;
    z-index: -1;
  }
  .scene01 .bg03{
    display: none;
  }
  .scene01 .number{
    width: calc(88.109 / 375 * 100%);
  }
  .scene01 .title{
    width: calc(216.5244 / 375 * 100%);
  }
  .scene01-2 .photo,
  .scene01-4 .photo{
    width: calc(350 / 375 * 100%);
  }
  .scene01-3 .photo,
  .scene01-5 .photo{
    width: calc(350 / 375 * 100%);
    margin-right: 0;
    margin-left: auto;
  }  
  /* scene02----------------- */
  .scene02{
    margin-top: 20% !important;
  }
  .scene02 .bg01{
    top: 6%;
  }
  .scene02 .bg02,
  .scene02 .bg04{
    display: none;
  }
  .scene02 .bg03{
    top: 14%;
    bottom: auto;
    left: 0;
    width: calc(350 / 375 * 100%);
  }
  .scene02 .title-box{
    aspect-ratio: inherit;
  }
  .scene02 .title-box .inner{
    position: relative;
    top: auto;
    left: auto;
    translate: 0 0;
  }
  .scene02 .title-box .number-box{
    width: 100%;
  }
  .scene02 .title-box .number{
    width: calc(100.4032 / 375 * 100%);
  }
  .scene02 .title-box .title{
    width: calc(256.5142 / 375 * 100%);
    margin-inline: auto;
  }
  .scene02 .title-box .text{
    text-align: center;
  }
  .scene02-1 .photo{
    width: calc(350 / 375 * 100%);
    margin-top: 10% !important;
  }
  .scene02-2 .photo,
  .scene02-4 .photo{
    width: calc(300 / 375 * 100%);
    margin-inline: auto;
  }
  .scene02-3 .photo{
    width: calc(350 / 375 * 100%);
    margin-right: 0;
    margin-left: auto;
  }
  .scene02-5 .photo{
    width: 100%;
  }
  .scene02-3 .link-area{
    margin-top: 14% !important;
  }
  /* scene03----------------- */
  .scene03{
    margin-top: 20% !important;
  }
  .scene03 .bg01{
    top: 2%;
    width: 100%;
    z-index: -1;
  }
  .scene03 .bg02{
    top: 74%;
    bottom: auto;
    left: 0;
    width: 100%;
  }
  .scene03 .bg03{
    display: none;
  }
  .scene03 .title-box{
    aspect-ratio: inherit;
  }
  .scene02 .title-box .inner{
    position: relative;
    top: auto;
    left: auto;
    translate: 0 0;
  }
  .scene03 .title-box{
    aspect-ratio: inherit;
  }
  .scene03 .number{
    width: calc(100.4032 / 375 * 100%);
  }
  .scene03 .title{
    width: calc(256.5142 / 375 * 100%);
  }
  .scene03-3 .photo{
    width: calc(350 / 375 * 100%);
  }
  .scene03 .scene-photo{
    width: calc(350 / 375 * 100%);
    margin-inline: auto;
  }
  .scene03-2 .photo{
    width: calc(350 / 375 * 100%);
    margin-right: 0;
    margin-left: auto;
  }
  .scene03-4 .photo{
    width: calc(335 / 375 * 100%);
    margin-right: 0;
    margin-left: auto;
  }
  /* othercut--------------------------- */
  .othercut{
    margin-top: 26%;
  }
  .othercut .title{
    width: calc(213.0278 / 375 * 100%);
    margin-top: 8%;
  }
  .othercut .list{
    display: block;
    width: 100%;
    margin: 8% auto 2vw;
  }
  .othercut .slider01{
    margin-top: 3%;
  }
  .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;
  }
}
