/**********************************
HOME
**********************************/
html,
body {
  overflow-x: hidden;
}

/* ローディング */
/* ローディング全体 */
.loading-container {
  position: fixed;
  inset: 0;
  /* top:0; left:0; right:0; bottom:0 と同じ */
  z-index: 9999;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  opacity: 1;
  transition: opacity 2s ease-in;
}

/* ローディング中はスクロール禁止 */
body.is-loading {
  overflow: hidden;
  height: 100%;
}

/* ローディング画像のアニメーション */
.loading-image {
  position: relative;
  max-width: 300px;
  height: auto;
  clip-path: inset(0 100% 0 0);
  /* 最初は隠す */
  animation: revealImage 0.8s ease-out forwards;
  /* 0.8秒で表示 */
}

@keyframes revealImage {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

/* FV画像やキャッチコピーは初期状態非表示 */
.js_mainv_image,
.catchy {
  visibility: hidden;
  /* JSで表示 */
}


/*** first view ***/
.contents {
  padding-top: 100vh;
}

.wrap {
  height: 100vh;
  display: flex;
  align-items: center;
}

.first_v_area {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: -1;
}

.fv_container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  top: -35px;
}

.fv_inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img_area {
  position: relative;
  width: 100%;
  height: 80vh;
  margin-left: 32%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img_area img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: 16px;
}

/* ピンクの写真 */
.img_area::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  width: 100%;
  height: 100%;
  background-image: url("../images/mainv.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #D26E76;
  background-blend-mode: soft-light;
  border-radius: 16px;
  opacity: 0.8;
  z-index: 1;
}

.js_mainv_image {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.8s ease, transform 2.5s cubic-bezier(0.08, 0.68, 0.35, 1);
  -o-object-fit: cover;
  object-fit: cover;
}

.js_mainv_image.is_animate {
  opacity: 1;
  transform: scale(1);
}

/* キャッチコピー */
.main_copy {
  position: absolute;
  left: 0;
  z-index: 10;
  top: 30%;
}

.catchy {
  font-size: 40px;
  font-weight: 400;
  visibility: hidden;
  text-align: left;
  margin-bottom: 0.25em;
}

.catchy_en {
  font-size: 24px;
}

.catchy_en span {
  color: #D26E76;
}

/* 文字のアニメーション */
.letter {
  opacity: 0;
  display: inline-block;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease forwards;
}

/* 文字のアニメーション */
.letter {
  opacity: 0;
  display: inline-block;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.back::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: fff;
  display: block;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

@keyframes zoomOut {
  0% {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
    z-index: 0;
  }
}

@-webkit-keyframes full-rest {
  0% {
    transform-origin: right center;
    transform: scaleX(1);
  }

  100% {
    transform-origin: right center;
    transform: scaleX(1);
  }
}

@keyframes full-rest {
  0% {
    transform-origin: right center;
    transform: scaleX(1);
  }

  100% {
    transform-origin: right center;
    transform: scaleX(1);
  }
}

/**** end first view ****/

.inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}

section {
  background: #ffffff;
}

.mission_area {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.0) 0%, #D26E76 36%, #D26E76 100%);
  color: #ffffff;
  height: 100vh;
  display: flex;
  align-items: end;
  padding: 170vh 0 0;
}

.text_content {
  margin-bottom: 150px;
}

.mission_area .text_content .index_title_h2_en .mission_area .text_content h2,
.mission_area .text_content p,
.mission_area .text_content span {
  color: #ffffff;
}

.mission_photos {
  position: relative;
  width: 100%;
  height: 400px;
  perspective: 1000px;
}

.mission_photos .photo {
  position: absolute;
  width: 45%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.mission_photos .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo_female {
  top: 0;
  left: 6%;
  transform: rotate(-3deg);
  z-index: 2;
}

.photo_male {
  top: 20px;
  right: 6%;
  transform: rotate(3deg);
  z-index: 1;
  filter: brightness(0.9);
}

@media (max-width: 850px) {
  .mission_photos .photo {
    position: relative;
    width: 90%;
    height: 300px;
    margin: 0 auto 20px;
    transform: rotate(0deg);
  }

  .mission_area {
    padding: 170vh 0 180px;
  }
}

.link_btn {
  text-align: right;
}

.learn_more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  color: #fff;
  width: 11.5rem;
  height: auto;
}

.learn_more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #ffffff;
  border-radius: 1.625rem;
}

.learn_more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

.learn_more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.learn_more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.20rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #D26E76;
  border-right: 0.125rem solid #D26E76;
  transform: rotate(45deg);
}

.learn_more .button_text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.8rem 0 0.8rem 4rem;
  margin: 0;
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
  text-transform: uppercase;
}

.learn_more:hover .circle {
  width: 100%;
}

.learn_more:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

.learn_more:hover .button_text {
  color: #D26E76;
}

.index_title_h2_en {
  font-weight: 500;
  font-size: 56px;
  color: #D26E76;
  margin-bottom: 20px;
  line-height: 1;
  display: inline-block;
}

.index_title_h2_jp {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 2em;
}

.index_title_h3 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  letter-spacing: .01em;
}

.index_title_h3::first-letter {
  color: #d16f6f;
}

.mission_text01 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.54;
  margin-bottom: 1.0em;
}

.mission_text02 {
  line-height: 1.7;
  margin-bottom: 1.0em;
}

/*** レスポンシブ対応 ***/
@media (max-width: 850px) {
  .main_copy {
    top: 12vh;
    transform: initial;
  }
}

@media (max-width: 770px) {
  .loading-image {
    max-width: 200px;
  }

  .fv_inner {
    flex-direction: column;
    align-items: start;
  }

  .img_area {
    height: 52vh;
    margin-left: 0;
  }

  .main_copy {
    top: 0;
    position: relative;
    margin-bottom: 10px;
  }

  .catchy {
    font-size: 24px;
    margin-bottom: 0.25em;
    line-height: 1;
  }

  .catchy_en {
    font-size: 18px;
  }

  .inner {
    width: 100%;
  }

  .mission_area {
    padding: 280vh 4% 180px;
  }

  .index_title_h2_en {
    font-size: 40px;
  }

  .index_title_h2_jp,
  .mission_text01 {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .index_title_h3 {
    font-size: 20px;
  }
}