@charset "UTF-8";
/* ============================================================
// index.scss
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// hero
------------------------------------------------------------ */
.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.hero__slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero__slider {
    height: 75vh;
  }
}

.hero__slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__content--fixed {
  position: absolute;
  z-index: 100;
  pointer-events: none;
  bottom: 10%;
  left: 5%;
}

.hero__content--fixed .hero__title,
.hero__content--fixed .hero__text {
  opacity: 1;
  transform: none;
}

.swiper-slide-active .hero__title,
.swiper-slide-active .hero__text {
  opacity: 1;
  transform: translateY(0);
}

.hero--full {
  max-width: none;
}

.hero__content--fixed {
  position: absolute;
  left: 5%;
  bottom: 8%;
  z-index: 10;
  max-width: 80%;
  text-align: left;
}
.hero__content--fixed .hero__title {
  font-size: clamp(48px, 10.1657458564vw + 9.8784530387px, 140px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 15px 0;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8), 4px 4px 0px rgba(0, 0, 0, 0.4), 0px 10px 30px rgba(0, 0, 0, 0.5);
}
.hero__content--fixed .hero__text {
  font-size: clamp(16px, 3.2044198895vw + 3.9834254144px, 45px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.8), 0px 5px 15px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .hero__content--fixed {
    left: 6%;
    bottom: 12%;
    max-width: 88%;
  }
  .hero__content--fixed .hero__title {
    line-height: 1.4;
    margin-bottom: 8px;
  }
}
/* ------------------------------------------------------------
// business
------------------------------------------------------------ */
.business-section {
  position: relative;
  width: 100%;
  padding-block: clamp(60px, 10.4166666667vw + -43.3333333333px, 90px);
  overflow: hidden;
}
.business-section__bg-text {
  position: absolute;
  z-index: 1;
  bottom: -22px;
  left: 5%;
  font-size: clamp(54px, 11.7127071823vw + 10.0773480663px, 160px);
  font-weight: 900;
  color: #f5f5f5;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .business-section__bg-text {
    bottom: -8px;
  }
}
@media screen and (max-width: 767px) {
  .business-section__bg-text {
    left: -4px;
  }
}

.business__inner {
  position: relative;
  z-index: 2;
  padding-right: clamp(300px, 39.0625vw + 0px, 500px);
}
@media screen and (max-width: 767px) {
  .business__inner {
    padding-right: 80px;
  }
}

.slider-container {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -140px;
  display: flex;
  gap: 15px;
  width: clamp(400px, 42.96875vw + 70px, 620px);
  height: 760px;
  overflow: hidden;
  transform: translateY(-50%) rotate(12deg);
  transform-origin: center;
}
.slider-container .slider-column {
  flex: 1;
  height: 100%;
  overflow: hidden;
  padding: 0 !important;
}
.slider-container .slider-column .slider-track {
  display: flex;
  flex-direction: column;
}
.slider-container .slider-column .track-up {
  animation: scrollUp 16s linear infinite;
}
.slider-container .slider-column .track-down {
  animation: scrollDown 16s linear infinite;
}
.slider-container .slider-column .slide-item {
  flex-shrink: 0;
  width: 100%;
  height: 260px;
  padding-bottom: 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.slider-container .slider-column .slide-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .slider-container {
    right: -100px;
    gap: 5px;
    width: 180px;
  }
  .slider-container .slider-column .slide-item {
    height: 180px;
    padding-bottom: 5px;
  }
}

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes scrollDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
/* ------------------------------------------------------------
// contents ( works / company )
------------------------------------------------------------ */
.contents-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 530px;
  border-top: 1px solid #ddd;
  overflow: hidden;
}
.contents-section__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(60px, 3.3149171271vw + 47.5690607735px, 90px) 20px;
  z-index: 2;
}
.contents-section__bg-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
}
.contents-section__bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contents-section__text-content {
  width: 100%;
  max-width: clamp(460px, 41.6666666667vw + 46.6666666667px, 580px);
}
.contents-section__description {
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
}
.contents-section__bg-text {
  position: absolute;
  bottom: -22px;
  right: 5%;
  font-size: clamp(54px, 11.7127071823vw + 10.0773480663px, 160px);
  font-weight: 900;
  color: #f5f5f5;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .contents-section__bg-text {
    bottom: -8px;
  }
}
@media screen and (max-width: 767px) {
  .contents-section__bg-text {
    right: -4px;
  }
}
.contents-section--reverse .contents-section__inner {
  justify-content: flex-start;
}
.contents-section--reverse .contents-section__bg-image-wrapper {
  left: auto;
  right: 0;
  width: 50vw;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}
.contents-section--reverse .contents-section__bg-text {
  right: auto;
  left: 5%;
}
@media screen and (max-width: 991px) {
  .contents-section--reverse .contents-section__bg-text {
    bottom: -8px;
  }
}
@media screen and (max-width: 767px) {
  .contents-section--reverse .contents-section__bg-text {
    left: -4px;
  }
}

@media screen and (max-width: 991px) {
  .contents-section {
    display: block;
    min-height: auto;
  }
  .contents-section__inner {
    justify-content: flex-start !important;
  }
  .contents-section__bg-image-wrapper {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100% !important;
    height: 300px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%) !important;
  }
  .contents-section__text-content {
    max-width: 100%;
  }
}
/* ------------------------------------------------------------
// movie
------------------------------------------------------------ */
.movie-section {
  position: relative;
  border-top: 1px solid #ddd;
  overflow: hidden;
}
.movie-section__inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin-inline: auto;
  padding: clamp(60px, 3.3149171271vw + 47.5690607735px, 90px) 20px;
}
.movie-section__header {
  text-align: center;
}
.movie-section__video-container {
  position: relative;
  width: 100%;
  background-color: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.movie-section__video-container::before, .movie-section__video-container::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 30px;
  height: 30px;
  pointer-events: none;
}
.movie-section__video-container::before {
  top: -10px;
  left: -10px;
  border-top: 3px solid #003399;
  border-left: 3px solid #003399;
}
.movie-section__video-container::after {
  bottom: -10px;
  right: -10px;
  border-bottom: 3px solid #003399;
  border-right: 3px solid #003399;
}
.movie-section__bg-text {
  position: absolute;
  z-index: 1;
  bottom: -22px;
  right: 5%;
  font-size: clamp(54px, 11.7127071823vw + 10.0773480663px, 160px);
  font-weight: 900;
  color: #f5f5f5;
  line-height: 1;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .movie-section__bg-text {
    bottom: -8px;
  }
}
@media screen and (max-width: 767px) {
  .movie-section__bg-text {
    right: -4px;
  }
}

/* ------------------------------------------------------------
// contact
------------------------------------------------------------ */
.contact-wrap {
  background: url(../images/index/contact-bg.webp) no-repeat center/cover;
}

.contact-section {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
}
.contact-section__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(60px, 3.3149171271vw + 47.5690607735px, 90px) 20px;
}
.contact-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.contact-section__lead {
  font-weight: 500;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .contact-section__lead {
    text-align: left;
  }
}
.contact-section__content-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 900px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contact-section__content-box {
    flex-direction: column;
    gap: 40px;
  }
}
.contact-section__tel-number {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 700;
}
.contact-section__tel-link {
  display: inline-block;
  font-size: 32px;
  color: #003399;
  line-height: 1.2;
  transition: opacity 0.3s ease;
}
.contact-section__tel-link:hover {
  opacity: 0.7;
}
.contact-section__tel-info {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 4px;
  margin-bottom: -4px;
}
.contact-section__action-block {
  flex-shrink: 0;
}
.contact-section__form-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(16px, 0.2209944751vw + 15.1712707182px, 18px);
  font-weight: 700;
  color: #fff;
  width: 340px;
  min-height: 80px;
  padding-inline: 30px;
  background-color: #003399;
  clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  transition: 0.3s;
}
.contact-section__form-button::after {
  content: "→";
  color: #fff;
  transition: 0.3s;
}
.contact-section__form-button:hover {
  color: #fff;
  background-color: #002266;
}
.contact-section__form-button:hover::after {
  transform: translateX(5px);
}
@media screen and (max-width: 767px) {
  .contact-section__form-button {
    min-height: 50px;
  }
}
.contact-section__bg-text {
  position: absolute;
  z-index: 1;
  bottom: -30px;
  left: 5%;
  font-size: clamp(54px, 11.7127071823vw + 10.0773480663px, 160px);
  font-weight: 900;
  line-height: 1;
  color: #f3f3f3;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  opacity: 0.6;
}
@media screen and (max-width: 991px) {
  .contact-section__bg-text {
    bottom: -8px;
  }
}
@media screen and (max-width: 767px) {
  .contact-section__bg-text {
    left: -4px;
  }
}