@charset "UTF-8";
.loading {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: #101010;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.loading .logo {
  position: absolute;
  z-index: 160;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.loading .logo .inner {
  -moz-text-align-last: center;
       text-align-last: center;
}
.loading .logo .inner .img {
  display: inline-block;
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 100vh;
}
.loading .logo .inner .img img {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100px;
}
.loading .logo .inner .img .circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(90deg) scaleX(-1);
          transform: rotate(90deg) scaleX(-1);
  z-index: 5;
}
.loading .logo .inner .img .circle circle {
  fill: none;
  stroke: #fff;
  stroke-width: 1;
  stroke-dasharray: 301.59;
  stroke-dashoffset: 301.59;
  -webkit-transition: stroke-dashoffset 6s ease;
  transition: stroke-dashoffset 6s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.is-loading .circle circle {
  stroke-dashoffset: 0 !important;
}

.is-loaded {
  display: none !important;
}

.site-main section {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .site-main section .h-sec-title .column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .site-main section .h-sec-title .column .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.site-main section .h-sec-title .column .text__en {
  letter-spacing: 5px;
  font-size: 30px;
}
.site-main section .h-sec-title .column .text__ja {
  margin-top: 15px;
  font-size: 15px;
}
.site-main section .h-sec-title .column .line {
  margin-top: 7px;
}
@media screen and (min-width: 1024px) {
  .site-main section .h-sec-title .column .line {
    margin-top: 5px;
    margin-right: 20px;
    width: 40px;
  }
}
.site-main section .h-sec-title .column .line span {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #fff;
}
.site-main__hero {
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100svh;
}
.site-main__hero:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  background-image: url("../../../assets/images/home/hero-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 1s cubic-bezier(0.76, 0, 0.24, 1);
  transition: all 1s cubic-bezier(0.76, 0, 0.24, 1);
}
.site-main__hero .text-container {
  position: absolute;
  z-index: 15;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: clamp(3.125rem, 0.417rem + 11.56vw, 11.25rem);
  font-weight: 900;
  width: 90%;
  max-width: 1350px;
  margin-inline: auto;
  letter-spacing: -2px;
}
@media screen and (min-width: 1024px) {
  .site-main__hero .text-container {
    letter-spacing: -4px;
  }
}
.site-main__hero .text-container .fixed-text {
  position: relative;
  margin-top: -10px;
}
@media screen and (min-width: 768px) {
  .site-main__hero .text-container .fixed-text {
    margin-top: -50px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__hero .text-container .fixed-text {
    margin-top: -100px;
  }
}
.site-main__hero .text-container .fixed-text span {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 1024px) {
  .site-main__hero .text-container .fixed-text:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -140px;
    left: -30px;
    background-image: url("../../../assets/images/home/hero-catch.svg");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 240px auto;
    width: 300px;
    height: 112px;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    opacity: 0;
  }
}
@media screen and (min-width: 1200px) {
  .site-main__hero .text-container .fixed-text:before {
    bottom: -160px;
    background-size: 300px auto;
  }
}
.site-main__hero .text-container .changing-text {
  margin-left: 15%;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .site-main__hero .text-container .changing-text {
    margin-left: 230px;
  }
}
@media screen and (min-width: 1200px) {
  .site-main__hero .text-container .changing-text {
    margin-left: 280px;
  }
}
.site-main__hero .text-container .changing-text .word {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-main__hero .text-container .changing-text .word span {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.site-main__hero .text-container .changing-text .text-show span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.site-main__hero .text-container .changing-text .text-show span:first-child {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.site-main__hero .text-container .changing-text .text-show span:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.site-main__hero .text-container .changing-text .text-show span:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.site-main__hero .text-container .changing-text .text-show span:nth-child(4) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.site-main__hero .text-container .changing-text .text-show span:nth-child(5) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.site-main__hero .text-container .changing-text .text-show span:nth-child(6) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.site-main__hero .text-container .changing-text .text-show span:nth-child(7) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.site-main__hero .text-container .changing-text .text-show span:nth-child(8) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.site-main__hero .text-container .changing-text .text-show span:nth-child(9) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.site-main__hero .text-container .changing-text .text-hide span {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.site-main__hero .text-container .changing-text .text-hide span:first-child {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.site-main__hero .text-container .changing-text .text-hide span:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.site-main__hero .text-container .changing-text .text-hide span:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.site-main__hero .text-container .changing-text .text-hide span:nth-child(4) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.site-main__hero .text-container .changing-text .text-hide span:nth-child(5) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.site-main__hero .text-container .changing-text .text-hide span:nth-child(6) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.site-main__hero .text-container .changing-text .text-hide span:nth-child(7) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.site-main__hero .text-container .changing-text .text-hide span:nth-child(8) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.site-main__hero .text-container .changing-text .text-hide span:nth-child(9) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.site-main__hero .overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.site-main__hero .overlay:before, .site-main__hero .overlay:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #101010;
  -webkit-transition: all 1s cubic-bezier(0.76, 0, 0.24, 1);
  transition: all 1s cubic-bezier(0.76, 0, 0.24, 1);
}
.site-main__hero .overlay:before {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 95% 0, 50% 100%, 0% 100%);
}
@media screen and (min-width: 1024px) {
  .site-main__hero .overlay:before {
    clip-path: polygon(0 0, 100% 0, 50% 100%, 0% 100%);
  }
}
.site-main__hero .overlay:after {
  bottom: 0;
  right: 0;
  clip-path: polygon(80% 0, 100% 0, 100% 100%, 30% 100%);
}
@media screen and (min-width: 1024px) {
  .site-main__hero .overlay:after {
    clip-path: polygon(80% 0, 100% 0, 100% 100%, 25% 100%);
  }
}
.site-main__hero .catch {
  position: absolute;
  z-index: 50;
  bottom: 30px;
  right: 30px;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  .site-main__hero .catch {
    display: none;
  }
}
.site-main__hero .catch img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .site-main__hero .catch img {
    width: 300px;
  }
}
.site-main .is-hero-sec-anim:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.site-main .is-hero-sec-anim .text-container .fixed-text:before {
  opacity: 1;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.site-main .is-hero-sec-anim .text-container .fixed-text span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.site-main .is-hero-sec-anim .text-container .fixed-text span:first-child {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.site-main .is-hero-sec-anim .text-container .fixed-text span:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.site-main .is-hero-sec-anim .text-container .fixed-text span:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.site-main .is-hero-sec-anim .text-container .fixed-text span:nth-child(4) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.site-main .is-hero-sec-anim .text-container .fixed-text span:nth-child(5) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.site-main .is-hero-sec-anim .text-container .fixed-text span:nth-child(6) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.site-main .is-hero-sec-anim .text-container .fixed-text span:nth-child(7) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.site-main .is-hero-sec-anim .overlay:before {
  left: -65%;
}
@media screen and (min-width: 768px) {
  .site-main .is-hero-sec-anim .overlay:before {
    left: -45%;
  }
}
.site-main .is-hero-sec-anim .overlay:after {
  right: -40%;
}
@media screen and (min-width: 768px) {
  .site-main .is-hero-sec-anim .overlay:after {
    right: -25%;
  }
}
.site-main .is-hero-sec-anim .catch {
  opacity: 1;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.site-main__news {
  position: relative;
  z-index: 10;
  padding: clamp(6.25rem, 4.167rem + 8.89vw, 12.5rem) 0;
  background-image: url("../../../assets/images/home/news-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.site-main__news .news-list {
  margin-top: 50px;
}
@media screen and (min-width: 1024px) {
  .site-main__news .news-list {
    margin-top: 100px;
  }
}
.site-main__parallax {
  position: relative;
  z-index: 10;
  background: #101010;
  padding: clamp(6.25rem, 4.167rem + 8.89vw, 12.5rem) 0;
}
.site-main__parallax .parallax-text-wrap {
  position: relative;
  padding: clamp(6.25rem, 4.167rem + 8.89vw, 12.5rem) 0;
}
.site-main__parallax .parallax-text-wrap .parallax-text {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  background: #101010;
}
.site-main__parallax .parallax-text-wrap .parallax-text:nth-child(2) {
  z-index: 5;
}
.site-main__parallax .parallax-text-wrap .parallax-text:nth-child(3) {
  z-index: 10;
}
.site-main__parallax .parallax-text-wrap .parallax-text:nth-child(4) {
  z-index: 5;
}
.site-main__business {
  position: relative;
  z-index: 10;
  padding: clamp(6.25rem, 4.167rem + 8.89vw, 12.5rem) 0;
}
@media screen and (min-width: 1024px) {
  .site-main__business .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__business .wrapper .h-sec-title {
    position: sticky;
    top: 175px;
    width: auto;
    margin-top: 50px;
    margin-right: 50px;
    height: 100%;
  }
}
.site-main__business .wrapper .business-list {
  margin-top: 50px;
}
@media screen and (min-width: 1024px) {
  .site-main__business .wrapper .business-list {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.site-main__business .wrapper .business-list .item {
  position: relative;
  padding-left: 20px;
}
@media screen and (min-width: 481px) {
  .site-main__business .wrapper .business-list .item {
    padding-left: 25px;
  }
}
.site-main__business .wrapper .business-list .item:not(:first-child) {
  margin-top: 50px;
}
@media screen and (min-width: 1024px) {
  .site-main__business .wrapper .business-list .item:not(:first-child) {
    margin-top: 100px;
  }
}
.site-main__business .wrapper .business-list .item:first-child .img:before {
  content: "プロダクション事業";
}
.site-main__business .wrapper .business-list .item:nth-child(2) .img:before {
  content: "イベント企画事業";
}
.site-main__business .wrapper .business-list .item:nth-child(3) .img:before {
  content: "コンテンツ制作事業";
}
.site-main__business .wrapper .business-list .item:nth-child(4) .img:before {
  content: "化粧品事業";
}
.site-main__business .wrapper .business-list .item:nth-child(5) .img:before {
  content: "ウェブ制作事業";
}
.site-main__business .wrapper .business-list .item:nth-child(6) .img:before {
  content: "ファンクラブ事業";
}
.site-main__business .wrapper .business-list .item .img {
  position: relative;
  overflow: hidden;
}
.site-main__business .wrapper .business-list .item .img:before {
  position: absolute;
  bottom: 0;
  left: -20px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 12px;
}
@media screen and (min-width: 481px) {
  .site-main__business .wrapper .business-list .item .img:before {
    font-size: 14px;
    left: -25px;
  }
}
.site-main__business .wrapper .business-list .item .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-main__business .wrapper .business-list .item .contents {
  margin-top: -12px;
  position: relative;
  z-index: 10;
  padding-left: 15px;
}
@media screen and (min-width: 481px) {
  .site-main__business .wrapper .business-list .item .contents {
    margin-top: -16px;
  }
}
.site-main__business .wrapper .business-list .item .contents .title {
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: 600;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 481px) {
  .site-main__business .wrapper .business-list .item .contents .title {
    letter-spacing: 5px;
    font-size: 30px;
  }
}
.site-main__business .wrapper .business-list .item .contents .desc {
  margin-top: 15px;
  line-height: 1.8em;
}
@media screen and (min-width: 1024px) {
  .site-main__business .wrapper .business-list .item .contents .desc {
    margin-top: 20px;
    font-size: 16px;
  }
}
.site-main__business .wrapper .business-list .is-anim-fadeIn img {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}
.site-main__pickup {
  position: relative;
  overflow: hidden;
  z-index: 10;
  padding: clamp(6.25rem, 4.167rem + 8.89vw, 12.5rem) 0;
  background: #000;
}
.site-main__pickup .h-sec-title {
  margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .site-main__pickup .h-sec-title {
    margin-bottom: 100px;
  }
}
.site-main__pickup .pickup-slider {
  overflow: initial;
}
.site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column {
  width: calc(100% - 60px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% - 120px);
  }
}
.site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .thumb {
  position: relative;
  aspect-ratio: 250/300;
}
@media screen and (min-width: 768px) {
  .site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .thumb {
    width: 35%;
  }
}
.site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .contents {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .contents {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .contents {
    margin-left: 75px;
  }
}
.site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .contents .name__main {
  letter-spacing: 5px;
  font-size: 30px;
}
@media screen and (min-width: 1024px) {
  .site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .contents .name__main {
    font-size: 40px;
  }
}
.site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .contents .name__sub {
  margin-top: 15px;
  font-size: 15px;
}
@media screen and (min-width: 1024px) {
  .site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .contents .name__sub {
    margin-top: 25px;
  }
}
.site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .contents .desc {
  margin-top: 20px;
  line-height: 1.8em;
}
@media screen and (min-width: 1024px) {
  .site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .contents .desc {
    margin-top: 60px;
    font-size: 16px;
  }
}
.site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .contents .btn {
  margin-top: 50px;
  -moz-text-align-last: right;
       text-align-last: right;
}
@media screen and (min-width: 1024px) {
  .site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .contents .btn {
    margin-top: 100px;
  }
}
.site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .contents .btn a {
  display: inline-block;
  position: relative;
  letter-spacing: 3px;
  padding-right: 50px;
  padding-bottom: 15px;
  border-bottom: 2px solid #fff;
}
@media screen and (min-width: 1024px) {
  .site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .contents .btn a {
    padding-right: 100px;
    padding-bottom: 20px;
  }
}
.site-main__pickup .pickup-slider .swiper-wrapper .swiper-slide .column .contents .btn a:before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  right: 0;
  background-image: url("../../../assets/images/home/pickup-icon-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
}
.site-main__pickup .pickup-slider .swiper-button-next, .site-main__pickup .pickup-slider .swiper-button-prev {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: auto;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .site-main__pickup .pickup-slider .swiper-button-next, .site-main__pickup .pickup-slider .swiper-button-prev {
    width: 75px;
    height: 75px;
  }
}
.site-main__pickup .pickup-slider .swiper-button-prev {
  left: -25px;
  background-image: url("../../../assets/images/home/icon-arrow_prev.webp");
}
.site-main__pickup .pickup-slider .swiper-button-next {
  right: -25px;
  background-image: url("../../../assets/images/home/icon-arrow_next.webp");
}
.site-main__company {
  position: relative;
  overflow: hidden;
  background: #fff;
  --overlay-opacity: 1;
}
.site-main__company:before {
  content: "";
  position: absolute;
  z-index: 15;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #101010;
  opacity: var(--overlay-opacity);
  -webkit-transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-main__company .logo-fixed {
  position: fixed;
  z-index: 16;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
.site-main__company .logo-fixed img {
  width: 300px;
  opacity: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.site-main__company .company-intro, .site-main__company .overview {
  position: relative;
  z-index: 17;
}
.site-main__company .company-intro {
  height: 100vh;
}
.site-main__company .overview {
  padding-bottom: clamp(6.25rem, 4.167rem + 8.89vw, 12.5rem);
}
.site-main__company .overview .overview-list {
  margin-top: 50px;
  max-width: 800px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .site-main__company .overview .overview-list {
    margin-top: 100px;
  }
}
.site-main__company .overview .overview-list .item {
  border-top: 3px solid #fff;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .site-main__company .overview .overview-list .item {
    padding: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-main__company .overview .overview-list .item:last-child {
  border-bottom: 3px solid #fff;
}
.site-main__company .overview .overview-list .item dt, .site-main__company .overview .overview-list .item dd {
  line-height: 1.4em;
}
.site-main__company .overview .overview-list .item dt {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .site-main__company .overview .overview-list .item dt {
    width: 150px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__company .overview .overview-list .item dt {
    width: 200px;
  }
}
.site-main__company .overview .overview-list .item dd {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .site-main__company .overview .overview-list .item dd {
    margin-top: 0;
  }
}
.site-main__company .sclText {
  position: relative;
  overflow: hidden;
  padding-top: 100vh;
}
.site-main__company .sclText:before {
  content: "";
  position: absolute;
  z-index: 15;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.site-main__company .sclText .text {
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.site-main__company .sclText .text:first-child {
  z-index: 10;
  bottom: 70%;
  left: 30px;
}
@media screen and (min-width: 768px) {
  .site-main__company .sclText .text:first-child {
    left: 100px;
    bottom: 320px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__company .sclText .text:first-child {
    left: 150px;
    bottom: 380px;
  }
}
.site-main__company .sclText .text:nth-child(2) {
  z-index: 5;
  bottom: 42%;
  left: 60px;
}
@media screen and (min-width: 768px) {
  .site-main__company .sclText .text:nth-child(2) {
    bottom: 200px;
    left: 200px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__company .sclText .text:nth-child(2) {
    left: 300px;
  }
}
.site-main__company .sclText .text:nth-child(3) {
  z-index: 10;
  bottom: 15%;
  right: -10px;
}
@media screen and (min-width: 768px) {
  .site-main__company .sclText .text:nth-child(3) {
    bottom: 0;
  }
}
.site-main__company .sclText .text img {
  width: auto;
  max-width: initial;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .site-main__company .sclText .text img {
    height: 150px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__company .sclText .text img {
    height: 200px;
  }
}
.site-main .is-site-main__company .sclText .text {
  opacity: 1;
}
.site-main__bg-movie {
  position: fixed !important;
  z-index: -1 !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  pointer-events: none;
}
.site-main__bg-movie:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.site-main__bg-movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}