@charset "utf-8";
:root {
    --text-color: #333333;
    --bg-color: #FFF;
    --height: 100vh;
}
#wrapper .font_abril {
    font-family: "abril-display", serif;
    font-weight: 400;
    font-style: italic;
}
#wrapper .font_altG {
    font-family: "alternate-gothic-atf", sans-serif;
    font-weight: 500;
    font-style: normal;
}
html {
	scroll-behavior: smooth;
}
#wrapper {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  color: var(--text-color);
  letter-spacing: 0.125rem;
  background-color: var(--bg-color);
  padding-bottom: 8%;
  @media (width >= 768px){
    
	  /* width: 780px; */
	  line-height: 32px;
	  padding-bottom: 0;
	  
  }
  & img{
    width: 100%;
    height: auto;
  }
  & a {
	  text-decoration: none;
	  color: var(--text-color);
	  display: block;
  }
  .pc {
	  display: none;
    @media (width >= 768px) {
      display: unset;
    }
  }
  & span.br {
    display: block;
  }
  & span.br_sp {
    display: block;
    @media (width >= 768px){
      display: unset;
    }
  }
}
@media (width >= 768px){
#wrapper .sp {
    display:none;
}
#wrapper .pc-wrapper {
    width: 780px;
    margin: 0 auto;
}
}
/*フェード表示*/
#wrapper .fadeIn {
  opacity: 0;
  transition: 1.5s;
}
#wrapper .fadeIn.is-show {
  opacity: 1;
}
#wrapper .fadeUp {
  opacity: 0;
  -webkit-transform: translateY(20%);
  transform: translateY(20%);
  transition: 1.5s ease;
}
#wrapper .fadeLeft {
  opacity: 0;
  -webkit-transform: translateX(-20%);
  transform: translateX(-20%);
  transition: 1.5s ease;
}
#wrapper .fadeRight {
  opacity: 0;
  -webkit-transform: translateX(20%);
  transform: translateX(20%);
  transition: 1.5s ease;
}
#wrapper .fadeUp.is-show , #wrapper .fadeLeft.is-show , #wrapper .fadeRight.is-show  {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
/*メインビジュアル*/
#wrapper #main-visual {  
   aspect-ratio: 522 / 1068.5;
   @media (width >= 768px) {
    aspect-ratio: 2 / 1;
   }
  .fadeIn {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    scale: 0.98;
    & img {
      -webkit-filter: blur(10px);
      filter: blur(10px);
    }
  }
  .fadeIn.is-show {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
    transition: 1.5s ease;
    scale: 1;
    
    & img {
      -webkit-filter: blur(0px);
      filter: blur(0px);
      transition: 1.5s ease;
    }
  }
  .title-container {
    position: relative;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s cubic-bezier(0.37, 0, 0.63, 1.25);
    height: 100%;
    width: 100%;
    /*aspect-ratio: 522 / 1069;*/
    margin-top: -205%;
    @media (width >= 768px) {
		margin-top: -50%;
    transition: clip-path 3s cubic-bezier(0.37, 0, 0.63, 1.25);
	  }
    .brand {
      position: absolute;
      width: 36%;
      top: 17%;
      left: 7%;
      @media (width >= 768px) {
        width: 160px;
        left: 17%;
      }
      @media (width >= 1200px) {
        width: 180px;
      }
      @media (width >= 1200px) {
        top: 16%;
      }
    }
    .main-title-box {
      position: absolute;
      top: 22%;
      left: 6%;
      color: #FFF;
      @media (width >= 768px) {
        top: 25%;
        left: 16.5%;
      }
      .main-title {
        font-size: 580%;
        line-height: 6.5rem;
        @media (width >= 768px) {
          font-size: 130px;
          line-height: 110px;
          padding-bottom: 5%;
        }
        @media (width >= 1200px) {
          font-size: 150px;
          line-height: 125px;
        }
      }
      .season {
         color: #FFF;
         font-size: 190%;
         @media (width >= 768px) {
          font-size: 34px;
         }
         @media (width >= 1200px) {
          font-size: 45px;
         }
      }
    }
  }
  .title-container.is-show {
    clip-path: inset(0 0 0 0);
  }
}
#wrapper #text-container {
  padding: 10%;
  position: relative;
  @media (width >= 768px) {
    padding: 120px 50px;
    margin: 30px 0 60px;
  }
  &::before {
    content: "";
    background: url('/img_visu/page/2025/other/24_contents04/bg_main_ico.png')no-repeat;
    background-size: contain;
    width: 40%;
    display: block;
    aspect-ratio: 1/1;
    position: absolute;
    right: 0%;
    top: 0%;
    @media (width >= 768px) {
      top: 50%;
      transform: translateY(-50%);
      width: 390px;
    }
  }
  .brand {
    width: 20%;
    max-width: 95px;
  }
  & h2 {
    font-size: 180%;
    line-height: 1.75rem;
    margin-bottom: 1.5rem;
    @media (width >= 768px) {
      font-size: 42px;
      margin-top: 7px;
      margin-bottom: 60px;
    }
  }
  & p {
    font-size: 80%;
    line-height: 2rem;
    @media (width >= 768px) {
      font-size: 18px;
      line-height: 35px
    }
  }
}
#wrapper .item-container {
  margin-bottom: 40vw;
  @media (width >= 768px) {
    margin-bottom: 220px;
  }
  .title-box {
    position: relative;
  }
  & hgroup {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s cubic-bezier(0.37, 0, 0.63, 1.25);
    position: absolute;
    width: fit-content;
    @media (width >= 768px) {
      padding: 10px 0;
    }
    .number {
      font-size: 150%;
      @media (width >= 768px) {
        font-size: 52px;
      }
    }
    & h3 .font_altG {
      font-size: 220%;
      line-height: 2rem;
      @media (width >= 768px) {
        font-size: 75px;
        line-height: 90px;
      }
    }
    & h3 .font_abril {
      font-size: 140%;
      letter-spacing: 0.1rem;
      @media (width >= 768px) {
        font-size: 50px;
      }
    }
  }
  & hgroup.is-show {
    clip-path: inset(0 0 0 0);
  }
  & dl {
    margin: 8% 0 0 0;
    padding: 0 0 0 5%;
    letter-spacing: unset;
    @media (width >= 768px) {
      padding: 0 0 0 55px;
    }
    & dt {
      font-size: 90%;
      @media (width >= 768px) {
        font-size: 100%;
        margin-bottom: 10px;
      }
    }
    & dd {
      font-size: 90%;
      line-height: 2.25rem;
      display: flex;
      align-items: center;
      @media (width >= 768px) {
        font-size: 100%;
        line-height: 40px;
      }
      .more_btn {
        width: fit-content;
        margin-left: 1em; 
     }
      & a {
        padding: 0rem 0.75rem;
        display: inline-block;
        line-height: normal;
        border: solid 1px #333;
        @media (width >= 768px) {
          padding: 2px 1em 2px;
        }
      }
      & a:hover {
        background-color: #333;
        color: #FFF;
      }
    }
    .list01 {
      transition-delay: .3s;
    }
    .list02 {
      transition-delay: .5s;
    }
    .list03 {
      transition-delay: .7s;
    }
    .list04 {
      transition-delay: 9s;
    }
  }
  .movie_wrap {
    width: 50%;
    margin: 0 auto;
    aspect-ratio: 215 / 397.2;
    .hacobune-unit-video {
      margin: 0;
    }
    .hacobune-app-container-no-font.hacobune-app-container {
      border-radius: 19vw;
      overflow: hidden;
      padding: 0;
      @media (width >= 768px) {
        border-radius: 150px;
      }
      .hacobune-unit-video-outline {
		  display: none;
	    }
    }
  }
}
#wrapper #item01 { 
  .item01_model01 {
    width: 85%;
    margin: 0 0 8% auto;
  }
  .item01_model02 {
    width: 60%;
  }
  .item01_model03 {
    width: 60%;
    margin: -4% 6% 8% auto;
    position: relative;
  }
  .item-container_title {
    right: 6%;
    top: 28%;
    @media (width >= 768px) {
      right: 25px;
    }
  }
}
#wrapper #item02 {
  .parallax-container{
    position: relative;
    height: auto;
  }
  .parallax {
    position: sticky;
    top: 10%;
    height: auto;
    display: block;
    @media (width >= 768px) {
      position: unset;
    }
  }
  .parallax.item02_model01 {
    z-index: 1;
    width: 85%;
    margin: 0 auto 0;
  }
  .parallax.item02_model02 {
    z-index: 2;
    width: 85%;
    margin: 15% 3% 0 auto;
    padding-top: 15%;
    @media (width >= 768px) {
      padding-top: 0px;
      margin-top: 80px;
    }
    }
  .parallax.title-box {
    z-index: 3;
    width: 100%;
    margin: 0 0 0 auto;
    padding-top: 28%;
    @media (width >= 768px) {
      padding-top: 0px;
      margin-top: 80px;
      position: relative;
    }
    .item02_model03 {
      width: 85%;
      margin: 0 0 0 auto;
    }
    .item-container_title {
        left: 7%;
        top: 31%;
        @media (width >= 768px) {
          top: 12.5%;
          left: 5%;
        }
      }
  }
}
#wrapper #item03 {
  overflow: hidden;
  .item03_model01 {
    width: 80%;
    margin: -4% 0 15% auto;
    position: relative;
  }
  .item-container_title {
    left: 6%;
    bottom: -11%;
  }
  .item03_model02 {
    width: 88%;
    margin: -4% auto 0 5%;
    position: relative;
  }
}
#wrapper #item04 {
  overflow: hidden;
  padding-top: 18vw;
  @media (width >= 768px) {
    padding-top: 200px;
  }
  .item04_model01 {
    width: 72%;
    margin: -85vw 0 18% auto;
    @media (width >= 768px) {
      margin-top: -720px;
    }
  }
  .item-container_title {
    left: 10%;
    bottom: -10%;
  }
}
#wrapper .my-swiper {
  .swiper-wrapper {
    transition-timing-function: linear !important;
  }
}
#wrapper #item05 {
  overflow: hidden;
  .model-box {
    display: flex;
    margin-bottom: 2%;
    .item05_model01 {
      width: 46%;
      padding: 0 0 0 6%;
    }
    .item05_model02, .item05_model04 {
      width: 53%;
      margin-left: 2%;
      padding: 0 5% 0 0; 
    }
    .item05_model03 {
      width: 46%;
    }
  }
  .item-container_title {
    left: 15%;
    bottom: 0%;
    @media (width >= 768px) {
      left: 12.5%;
    }
  }
}
#wrapper .balletCore-container {
  background-color: #ffeded;
  padding-bottom:1%;
}
#wrapper #item06 {
  padding-top: 40%;
  overflow: hidden;
  position: relative;
  @media (width >= 768px) {
    padding-top: 250px;
  }
  .item06_model01 {
    width: 90%;
    max-width: 665px;
    margin: 0 auto 15%;
  }
  .title-box {
    margin-bottom: 12%;
    position: relative;
  }
  .movie_wrap {
    position: relative;
    z-index: 1;
    .hacobune-app-container[data-v-06004ed0] {
      background-color: unset;
    }
  }
  .text-img {
    position: absolute;
    width: 35%;
    z-index: 0;
    bottom: -1%;
    right: 5%;
  }
  .item-container_title {
    left: 7%;
    bottom: -4%;
    z-index: 2;
  }
}
.svg-text {
  width: 115%;
  position: absolute;
  top: 10.5%;
  left: -5%;
  font-size: 2.375rem;
  font-style: italic;
  user-select: none;
  @media (width >= 768px) {
    font-size: 25px;
    top: 6%;
  }
  .c-svg1__wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
  }
  .c-svg1__wrap svg {
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .c-svg1__wrap text {
    font-size: 300%;
    letter-spacing: 0.5rem;
  }
}
#wrapper #item07 {
  .swiper {
    margin-bottom: 8%;
  }
  .item07_model04 {
    width: 65%;
  }
  .item-container_title {
    right: 5%;
    top: 15%;
    & h3 span.font_altG {
      line-height: 2.5rem;
      @media (width >= 768px) {
        line-height: 65px;
      }
    }
    & h3 .font_abril {
    margin-top: -0.25rem;
    @media (width >= 768px) {
      margin-top: 15px;
    }
    }
  }
}
#wrapper #item08 {
  .parallax-container{
    position: relative;
    height: auto;
    margin-bottom: 8rem;
  }
  .parallax {
    position: sticky;
    top: 10%;
    height: auto;
    display: block;
    @media (width >= 768px) {
      position: unset;
    }
  }
  .parallax.item08_model01 {
    z-index: 1;
    width: 100%;
    margin: 0 auto 0;
    @media (width >= 768px) {
      width: 90%;
    }
  }
  .parallax.item08_model02 {
    z-index: 2;
    width: 80%;
    max-width: 605px;
    margin: 0 5% 0 auto;
    padding-top: 30%;
    @media (width >= 768px) {
      padding-top: 80px;
    }
  }
  .parallax.title-box {
    z-index: 3;
    width: 100%;
    margin: 0 0 0 auto;
    padding-top: 58%;
    @media (width >= 768px) {
      padding-top: 80px;
    }
    .position-box {
      position: relative;
      .item08_model03 {
        width: 60%;
        margin: 0 auto 0 8%;
      }
      .item-container_title {
          right: 10%;
          bottom: -30%;
      }
    }
    .dl01 {
      margin-top: 25%;
    }
    }
}
#wrapper #item08.item-container {
  margin-bottom: 20vw;
}
#wrapper #other {
  .more_btn {
    width: fit-content;
    min-width: 80%;
    margin: 20% auto;
    cursor: pointer;
    box-sizing: border-box;
    @media (width >= 768px) {
      width: 350px;
      margin: 120px auto;
    }
    & a {
      padding: 1.25rem 1.8rem 1.25rem 1rem;
      text-align: center;
      background-color: #333;
      color: #fff;
      border-radius: 50px;
      position: relative;
      @media (width >= 768px) {
        padding: 1em 1em 1em 0;
        font-size: 15px;
        width: 75%;
        margin: 0 auto;
      }
    }
  }
  .more_btn a::after {
    position: absolute;
    right: 1.8em;
    top: calc(50% - 0.25rem);
    display: block;
    content: '';
    width: 0.5em;
    height: 0.5em;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: rotate(45deg);
    transition: all 0.2s;
    @media (width >= 768px){
      right: 2.5em;
      top: calc(50% - 0.85rem);
      width: 0.65em;
      height: 0.65em;
    }
  }
  & p {
    text-align: center;
    margin-bottom: 2em;
  }
  .end-logo {
    width: 25%;
    max-width: 146px;
    margin: 15% auto 20%;
  }
}