@charset "utf-8";
/* ===================================================================
 File Name  : front-page.css
 Style Info : ページに関するスタイル指定
=================================================================== */

/*----------------------------------------------------
  トップページ index
--------------------------------------------------- */
.mainVisual {
  width: 100%;
  padding: 0 20px;
  background: #000;
  height: 100vh;
  position: relative;
}

.mv_copy {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 0;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  margin: auto;
  opacity: 25%;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .mv_copy {
    gap: 0;
    justify-content: center;
    text-align: center;
    margin: auto;
    align-items: center;
    opacity: 100%;
  }
}

.mv_copy h1 {
  color: white;
  font-family: var(--alphabet);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.025em;
  width: fit-content;
  margin-left: -48px;
}

@media (max-width: 767px) {
  .mv_copy figure {
    border-right: 1px solid white;
    flex: 1 1 35%;
    display: flex;
    justify-content: flex-end;
    margin-left: 12px;
  }

  .mv_copy h1 {
    font-size: 18px;
    margin-left: 24px;
    margin-right: 12px;
    width: fit-content;
    display: block;
    text-align: left;
    flex: 1 1 65%;
  }
}

.mv_copy figure img {
  width: auto;
  height: 300px;
  object-fit: contain;
  margin-left: -20px;
}

@media (max-width: 767px) {
  .mv_copy figure img {
    width: auto;
    height: 50px;
    margin-left: auto;
    margin-right: 24px;
  }
}

.movie {
  position: -webkit-fixed;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .mainVisual {
    width: 100%;
    padding: 0 5.33vw;
  }
}

article>section {
  position: relative;
}

/*トップ ABOUT C&*/

.loop_slider {
  position: relative;
  z-index: 10;
  margin-bottom: 28px;
}

.loop01,
.loop02 {
  width: 100%;
  overflow: visible;
}

.swiper-slide {
  width: 25% !important;
  padding: 0 14px;
  height: inherit;
  object-fit: cover;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

.loop01 .swiper-wrapper,
.loop02 .swiper-wrapper {
  transition-timing-function: linear;
}

.slide-content {
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  color: white;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%);
  width: 100%;
  transition: opacity 0.4s;
  display: block;
}

.swiper-slide:hover .slide-content {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .loop_slider {
    margin-bottom: 4vw;
  }

  .swiper-slide {
    width: 42% !important;
    padding: 0 2vw;
  }

  .swiper-slide img {
    border-radius: 1.33vw;
  }
}


/*=========================
トップページ
=========================*/
@media screen and (max-width: 767px) {
  .home #page {
    padding-top: 0;
  }
}

.index_about {
  position: relative;
  z-index: 0;
}

.index_about::before {
  content: "";
  background-image: url("../img/common/cand_bg.webp");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  display: block;
  width: 600px;
  height: 600px;
  position: absolute;
  right: -40px;
  top: 400px;
  left: auto;
  bottom: 0;
  margin: auto;
  z-index: 0;
}

.index_about_inner {
  max-width: 1320px;
  margin: auto;
  padding: 128px 48px 64px 48px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .index_about_inner {
    max-width: 1320px;
    margin: auto;
    padding: 0 24px 64px 24px;
  }
}

.index_about_title {
  font-size: clamp(30px, 3.91vw, 40px);
  line-height: 64px;
  letter-spacing: 0.15em;
  color: #324065;
  font-weight: 600;
}

.index_about_text {
  font-size: 16px;
  color: #324065;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: 0.025em;
  margin-top: 48px;
}

/*=========================
トップページModulaギャラリー
=========================*/
/* ギャラリー */

.custom-gallery {
  max-width: 1400px;
  width: 100vw;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3.12vw + 7px, 32px);
  padding: 0 32px;
}

@media (max-width: 767px) {
  .custom-gallery {
    padding: 0 24px;
    width: 160vw;
    position: relative;
  }
}

.gallery-row01 {
  display: flex;
  gap: clamp(24px, 3.12vw + 7px, 32px);
  justify-content: flex-end;
  flex-wrap: nowrap;

  align-items: flex-end;
  margin-left: 8vw;
}

.gallery-row02 {
  display: flex;
  gap: clamp(24px, 3.12vw + 7px, 32px);
  justify-content: flex-start;
  flex-wrap: nowrap;

  align-items: flex-start;
  margin-right: 8vw;
}

.gallery-item {
  flex: 1 1 auto;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  transition: filter 0.3s ease;
}

/* 任意で hover エフェクト */
.gallery-item:hover img {
  filter: brightness(1.1);
}

/* 個別アスペクト比を指定したい場合（オプション） */
.gallery-row01 .gallery-item:nth-child(1) {
  flex: 1 1 200px;
}

.gallery-row01 .gallery-item:nth-child(1) img {
  aspect-ratio: 200 / 112;
}

.gallery-row01 .gallery-item:nth-child(2) {
  flex: 1 1 287px;
}

.gallery-row01 .gallery-item:nth-child(2) img {
  aspect-ratio: 287 / 216;
}

.gallery-row01 .gallery-item:nth-child(3) {
  flex: 1 1 324px;
}

.gallery-row01 .gallery-item:nth-child(3) img {
  aspect-ratio: 324 / 216;
}

.gallery-row01 .gallery-item:nth-child(4) {
  flex: 1 1 421px;
}

.gallery-row01 .gallery-item:nth-child(4) img {
  aspect-ratio: 421 / 272;
}

.gallery-row02 .gallery-item:nth-child(1) {
  flex: 1 1 421px;
}

.gallery-row02 .gallery-item:nth-child(1) img {
  aspect-ratio: 421 / 272;
}

.gallery-row02 .gallery-item:nth-child(2) {
  flex: 1 1 324px;
}

.gallery-row02 .gallery-item:nth-child(2) img {
  aspect-ratio: 324 / 216;
}

.gallery-row02 .gallery-item:nth-child(3) {
  flex: 1 1 288px;
}

.gallery-row02 .gallery-item:nth-child(3) img {
  aspect-ratio: 288 / 216;
}

.gallery-row02 .gallery-item:nth-child(4) {
  flex: 1 1 200px;
}

.gallery-row02 .gallery-item:nth-child(4) img {
  aspect-ratio: 200 / 112;
}

/*Modula*/
.modula-items,
.modula-item,
.modula-item img,
.figc {
  all: unset;
  /* 既存の style を無視 */
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  left: auto !important;
  top: auto !important;
}

.modula-items {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3.12vw + 7px, 32px);
  position: relative;
}

.modula-items>.modula-item:nth-child(1) {
  position: absolute !important;
  left: 0% !important;
  bottom: 30% !important;
  /* width: 200px !important;
  height: 112px !important; */
  width: 20% !important;
  height: auto !important;
  aspect-ratio: 200 / 112 !important;
  object-fit: cover !important;
}

.modula-items>.modula-item:nth-child(2) {
  position: absolute !important;
  left: 23% !important;
  bottom: 30% !important;
  /* width: 287px !important;
  height: 216px !important; */
  width: 20% !important;
  height: auto !important;
  aspect-ratio: 287 / 216 !important;
  object-fit: cover !important;
}

.modula-items>.modula-item:nth-child(3) {
  position: absolute !important;
  left: 45% !important;
  bottom: 30% !important;
  width: 20% !important;
  height: auto !important;
  aspect-ratio: 324 / 216 !important;
  object-fit: cover !important;
}

.modula-items>.modula-item:nth-child(4) {
  position: absolute !important;
  left: 70% !important;
  bottom: 30% !important;
  width: 20% !important;
  height: auto !important;
  aspect-ratio: 421 / 272 !important;
  object-fit: cover !important;
}

.modula-items>.modula-item:nth-child(5) {
  position: absolute !important;
  left: 0% !important;
  top: 40% !important;
  width: 20% !important;
  height: auto !important;
  aspect-ratio: 421 / 272 !important;
  object-fit: cover !important;
}

.modula-items>.modula-item:nth-child(6) {
  position: absolute !important;
  left: 23% !important;
  top: 40% !important;
  width: 20% !important;
  height: auto !important;
  aspect-ratio: 324 / 216 !important;
  object-fit: cover !important;
}

.modula-items>.modula-item:nth-child(7) {
  position: absolute !important;
  width: 20% !important;
  height: auto !important;
  aspect-ratio: 288 / 216 !important;
  object-fit: cover !important;
}

.modula-items>.modula-item:nth-child(8) {
  position: absolute !important;
  left: 70% !important;
  top: 40% !important;
  width: 20% !important;
  height: auto !important;
  aspect-ratio: 200 / 112 !important;
  object-fit: cover !important;
}


/* =========================
   Modulaの画像スライドオーバーレイ実装
========================= */
#simpleLightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}

#simpleLightbox.visible {
  display: block;
}

#simpleLightbox .lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
  z-index: 1;
}

#simpleLightbox .lightbox-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  box-sizing: border-box;
  z-index: 2;
}

#simpleLightbox .lightbox-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: min(88vw, 1400px);
  max-height: 84vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

#simpleLightbox .lightbox-image-wrapper img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: none;
  /* ← 影なし */
  border-radius: 0;
  /* ← 角丸なし */
  background: none;
  /* ← 背景なし */
  opacity: 1;
}


@keyframes slideInNext {
  from {
    transform: translateX(80px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutNext {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(-80px);
    opacity: 0;
  }
}

@keyframes slideInPrev {
  from {
    transform: translateX(-80px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutPrev {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(80px);
    opacity: 0;
  }
}

#simpleLightbox img.slide-in.next {
  animation: slideInNext 0.5s ease-out forwards;
}

#simpleLightbox img.slide-out.next {
  animation: slideOutNext 0.5s ease-out forwards;
}

#simpleLightbox img.slide-in.prev {
  animation: slideInPrev 0.5s ease-out forwards;
}

#simpleLightbox img.slide-out.prev {
  animation: slideOutPrev 0.5s ease-out forwards;
}


#simpleLightbox .lightbox-prev,
#simpleLightbox .lightbox-next,
#simpleLightbox .lightbox-close {
  position: fixed;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 4;
}

#simpleLightbox .lightbox-prev:hover,
#simpleLightbox .lightbox-next:hover,
#simpleLightbox .lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* 閉じるボタン */
#simpleLightbox .lightbox-close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  font-size: 24px;
  line-height: 44px;
}

/* 左右ボタン */
#simpleLightbox .lightbox-prev,
#simpleLightbox .lightbox-next {
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 28px;
  line-height: 54px;
  transform: translateY(-50%);
}

#simpleLightbox .lightbox-prev {
  left: 16px;
}

#simpleLightbox .lightbox-next {
  right: 16px;
}

@media (max-width: 480px) {

  #simpleLightbox .lightbox-prev,
  #simpleLightbox .lightbox-next {
    width: 46px;
    height: 46px;
    font-size: 24px;
    line-height: 46px;
  }

  #simpleLightbox .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 22px;
    line-height: 40px;
  }
}

/*----------------
トップ CONTENTS
----------------*/
#index_contents {
  margin: 25px 0;

}

#index_contents .en_ttl {
  margin-bottom: 80px;
}

.index_contents_bg01 {
  position: absolute;
  left: calc(50% - 1080px);
  top: -300px;
}

.index_contents_bg02 {
  position: absolute;
  right: calc(50% - 1200px);
  bottom: 0;
}

@media screen and (max-width: 767px) {
  #index_contents {
    padding: 32px 0;
    overflow: auto;

  }

  #index_contents .en_ttl {
    margin-bottom: 10.66vw;
  }

  .index_contents_bg01 {
    left: -52vw;
    top: -72vw;
  }

  .index_contents_bg01 img {
    width: 88vw;
    height: auto;
  }

  .index_contents_bg02 {
    right: -50vw;
    bottom: 9vw;
  }

  .index_contents_bg02 img {
    width: 90vw;
    height: auto;
  }
}

/*-----------------------
GREETING
------------------------*/
.greeting {
  position: relative;
  padding: 24px;
  padding-bottom: 158px;
}

.greeting_inner {
  display: flex;
  gap: 64px;
  margin: auto;
  max-width: 1400px;
  background-color: rgba(255, 255, 255, 0.48);
  align-items: center;
  padding: 64px clamp(24px, 3.12vw + 7px, 96px);
}

@media (max-width: 767px) {
  .greeting_inner {
    display: flex;
    flex-direction: column-reverse;
    padding: 24px;
  }
}

.greeting_left {
  flex: 1 1 50%;
}

.greeting_left>* {
  max-width: 530px;
}

.greeting_right {
  flex: 1 1 calc(50% - 48px);
}

.greeting_inner h3 {
  font-size: clamp(16px, 2.08vw + 7px, 28px);
  line-height: 200%;
  letter-spacing: 0.2em;
  color: #324065;
}

.greeting_txt {
  margin-top: 48px;
}

.greeting_txt .name>*:nth-child(1) {
  font-size: 12px;
  line-height: 19.2px;
  letter-spacing: 2.4px;
  color: #71819e;
  font-weight: 300;
}

.greeting_txt .name>*:nth-child(2) {
  font-size: 18px;
  line-height: 28.8px;
  letter-spacing: 3.6px;
  color: #324065;
  font-weight: 600;
}

.greeting_txt .prof {
  font-size: 15px;
  line-height: 180%;
}


/*トップ INSTAGRAM*/
.index_insta {
  background: rgba(255, 255, 255, 0.48);
  padding: 92px 0 92px 0;
}

.insta_box {
  margin: 0px 0 40px;
}

.insta_box figure {
  position: relative;
}

.insta_box figure::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "SAMPLE";
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 5.6rem;
  letter-spacing: 0.1em;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 767px) {
  #index_insta {
    padding: 50px 0;
    margin-top: 17.6vw;
  }

  .insta_box {
    margin-bottom: 5vw;
  }

  .insta_box figure::after {
    font-size: 10vw;
  }
}