﻿@charset "UTF-8";
/* ---------------------
contact
----------------------- */
.section-contact {
  margin-bottom: 0;
  background-color: #000;
}

.contact {
  padding: 50px 100px 200px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 1023px) {
  .contact {
    padding-inline: 10px;
    padding-top: 50px;
  }
}

.contact-fade-wrap {
  position: relative;
  z-index: 5;
}

.contact-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(180px);
          transform: translateY(180px);
}
@media screen and (max-width: 1023px) {
  .contact-top {
    padding-inline: 10px;
    -webkit-transform: translateY(75px);
            transform: translateY(75px);
  }
}
@media screen and (max-width: 767px) {
  .contact-top {
    padding-inline: 10px;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.contact-circle {
  width: clamp(120px, 25vw, 300px);
  height: clamp(120px, 25vw, 300px);
  border-radius: 50%;
  background-color: rgba(51, 51, 51, 0.3);
  border-radius: 50%;
  border: 4px solid rgba(85, 85, 85, 0.7);
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding-top: 40px;
  padding-inline: 25px;
}
.contact-circle::after {
  content: "";
  position: absolute;
  left: -10px;
  top: -12px;
  width: 100%;
  z-index: -2;
  height: calc(100% - 1px);
  border-radius: 50%;
  background-color: rgba(51, 51, 51, 0.7);
}
.contact-circle.is-tab_active::after {
  background-color: rgba(122, 245, 249, 0.6);
  z-index: -2;
}
@media screen and (max-width: 1023px) {
  .contact-circle {
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact-circle {
    padding-top: 20px;
    padding-inline: 5px;
    font-size: 14px;
  }
}

.contact-circle1,
.contact-circle2,
.contact-circle3 {
  opacity: 1;
}

.contact-circle1 {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}
@media screen and (max-width: 767px) {
  .contact-circle1 {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.contact-circle2.is-tab_active {
  z-index: 2;
}

.contact-circle3 {
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
}
@media screen and (max-width: 767px) {
  .contact-circle3 {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.tab {
  cursor: pointer;
}

.form-bg {
  position: absolute;
  inset: 20% 0 0 0;
  background: url(../image/footer-bg.png) no-repeat center/cover;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: darken;
  mask-image: -webkit-gradient(linear, left bottom, left top, color-stop(95%, black), to(transparent)), -webkit-gradient(linear, left top, left bottom, color-stop(85%, black), to(transparent));
  mask-image: linear-gradient(to top, black 95%, transparent), linear-gradient(to bottom, black 85%, transparent);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, color-stop(95%, black), to(transparent)), -webkit-gradient(linear, left top, left bottom, color-stop(85%, black), to(transparent));
  -webkit-mask-image: linear-gradient(to top, black 95%, transparent), linear-gradient(to bottom, black 85%, transparent);
  -webkit-mask-composite: destination-in;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 1023px) {
  .form-bg {
    inset: 50% 0 0 0;
  }
}

.contact-body {
  border: 1px solid #888;
  border-radius: 20px;
  background-color: #000;
  color: #fff;
  position: relative;
  z-index: 5;
  padding-bottom: 30px;
  font-size: 16px;
}

.tab-content {
  display: none;
}
.tab-content.is-show {
  display: block;
}

.tab-body {
  padding-inline: 100px;
}
@media screen and (max-width: 1023px) {
  .tab-body {
    padding-inline: 10px;
  }
}

.contact-body-title {
  text-align: center;
  margin-block: 50px 20px;
  position: relative;
  color: #fff;
}
.contact-body-title::before, .contact-body-title::after {
  width: 20vw;
  height: 2px;
  background-color: #fff;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.contact-body-title::before {
  left: 20%;
}
.contact-body-title::after {
  left: 80%;
}
@media screen and (max-width: 1023px) {
  .contact-body-title::before, .contact-body-title::after {
    width: 15vw;
  }
}
@media screen and (max-width: 767px) {
  .contact-body-title::before {
    left: 15%;
  }
  .contact-body-title::after {
    left: 85%;
  }
}

.contact-body-sub {
  font-size: 1em;
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contact-body-sub {
    font-size: 0.8em;
  }
}

.form-field {
  padding-inline: 30px;
}

.input-group-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1023px) {
  .input-group-type {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 100px;
  }
}

.label-type {
  color: #fff;
  width: 230px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .label-type {
    width: auto;
  }
}

.input-type-tag {
  margin-right: 3.3rem;
}
@media screen and (max-width: 1023px) {
  .input-type-tag {
    margin-right: 0;
  }
}

.input-type {
  display: inline-block;
  margin-left: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .input-type {
    margin-left: 0;
  }
}

.input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .input-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.input-type {
  margin-left: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .input-type {
    display: inline-block;
  }
}

.input-label {
  text-indent: -3.3em;
  padding-left: 3.3em;
  width: 230px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .input-label {
    width: 100%;
  }
}

.input-tag {
  border: 1px solid #333;
  background-color: #333;
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 0.5rem;
  vertical-align: middle;
  font-size: 0.7em;
}

.input-no-tag {
  margin-right: 3.3rem;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.input-field {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .input-field {
    width: 100%;
  }
}
.input-field:focus {
  background-color: rgba(122, 245, 249, 0.8);
}

.input-textarea {
  height: 200px;
}
.input-textarea:focus {
  background-color: rgba(122, 245, 249, 0.8);
}

.submit-btn {
  color: #fff;
  border: 1px solid #fff;
  padding: 20px 60px;
  border-radius: 30px;
  display: block;
  margin: 0 auto;
  margin-block: 50px 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.submit-btn:hover {
  color: #333;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.wpcf7-contact-form-not-found {
  color: #fff;
}



/* sec-partner (バナー部分画像サイズ調整) */
.slide-auto-loop-txt a img {
  display: block;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-fit: fill;
}
.slide-auto-loop-txt a {
  background: none;
  width: 450px;
}
._reverse .slide-auto-loop-txt a {
  background: #ccc;
  border-radius: 0;
}



/* 背景境目ぼかし */
.sec-fv {
  position: relative;
}
.sec-fv::after {
  height: 200px;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  background: #fff;
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
          mask-image: linear-gradient(to top, black 0%, transparent 100%);
}

.sec-problem {
  position: relative;
}
.sec-problem::before {
  height: 100px;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  background: #fff;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

.sec-warping {
  position: relative;
}
.sec-warping::after {
  z-index: 1;
  height: 200px;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  background: #fff;
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
          mask-image: linear-gradient(to top, black 0%, transparent 100%);
}

.section-contact {
  position: relative;
}
.section-contact::before {
  height: 100px;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  background: #fff;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}


.contact-txt {
  text-align: center;
  color: var(--g-color-white);
  font-size: 17px;
  font-weight: 300;
  line-height: 2;
  margin-block: 20px;
  text-shadow: 1px 1px 3px #000;
}

/* Wを指定の水色に */
.sec-fv-main-txt h2 .char12 {
  color: #73C3CD;  /* R=115, G=195, B=205 */
}
.sec-ttl h2 span:first-child {
  color: #73C3CD;
}
.sec-partner-head-ttl h2 span {
  color: #73C3CD;
}


/* font-size修正 */
.sec-ttl h2 {
    font-size: 42px;
}
.sec-ttl p {
  font-size: 24px;
}

.sec-preneur-wellness-txt p.active {
  font-size: 17px;
  font-weight: 300;
  line-height: 2;
}
.sec-preneur-wellness-txt p {
    font-size: 18px;
}
.sec-spark-txt p {
  /* font-size: 18px; */
}

.sec-tech__elem-txt p {
  font-size: 22px;
}
.sec-tech__elem-txt span {
  font-size: 18px;
}

.sec-warping-list ul li {
  font-size: 17px;
}

.sec-problem__elem-txt h5 {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  line-height: 2;
}

.sec-problem__elem-txt p {
  font-size: 17px;
  font-weight: 300;
  line-height: 2;
}

.sec-problem__elem-txt h5::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 60px;
  background: var(--g-color-white);
  box-shadow: 1px 1px 2px #191919;
}

.sec-problem-content > p {
  font-size: 17px;
}

.sec-world-txt p {
  font-size: 17px;
}

.sec-world-txt p {
  line-height: 2;
}

.sec-partner-head-txt p  {
  font-weight: 600;
  line-height: 2;
}


/* 青い円のサイズ変更 */
.sec-warping-img-hover__elem-area {
  width: 80px;
}
@media screen and (max-width: 1400px) {
  .sec-warping-img-hover__elem-area {
    width: 80rem;
    height: 80rem;
  }
}

.sec-warping-img-hover__elem p {
  background-color: rgba(0,0,0,0.5);
}

/* 青い円 順番にフェードイン */
.sec-warping-img-hover__elem:nth-child(1) {
  transition: all 0.3s ease-in-out;
}
.sec-warping-img-hover__elem:nth-child(2) {
  transition: all 0.6s ease-in-out;
}
.sec-warping-img-hover__elem:nth-child(3) {
  transition: all 0.9s ease-in-out;
}
.sec-warping-img-hover__elem:nth-child(4) {
  transition: all 1.2s ease-in-out;
}
.sec-warping-img-hover__elem:nth-child(5) {
  transition: all 1.5s ease-in-out;
}
.sec-warping-img-hover__elem:nth-child(6) {
  transition: all 1.8s ease-in-out;
}
.sec-warping-img-hover__elem:nth-child(7) {
  transition: all 2.1s ease-in-out;
}
.sec-warping-img-hover__elem:nth-child(8) {
  transition: all 2.4s ease-in-out;
}
.sec-warping-img-hover__elem:nth-child(9) {
  transition: all 2.7s ease-in-out;
}


/* 問い合わせ 水滴アニメーション z-index追加 */
@keyframes bubbleMain {
  0% {
    margin-top: 30px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
    z-index: 5;
  }
}


/* Will solve environment problem部分、Swiperボタン設置 */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

.swiper-button-prev {
  left: -70px;
}
.swiper-button-next {
  right: -70px;
}

/* A Future Reimagined with W.O.W リストスタイル無し */
.sec-warping-list ul li::before {
  content: none;
}




/* 0825 追加 */


/* ホバー要素にグラデーションが被らないように修正 */
.sec-warping {
  min-height: 130vh;
}
.sec-world {
  padding-top: 250px;
}


/* sec-tech 背景左側の黒い円 */
.sec-tech::after {
  content: "";
  position: absolute;
  width: 62.5vw;
  height: 62.5vw;
  border-radius: 50%;
  border: 1px solid #333;
  left: 0;
  bottom: 0;
  transform: translate(-30%, 30%);
}


/* A Future Reimagined with W.O.W、ホバーしたら青い円薄くなる */
.sec-warping-img-hover__elem-area {
  opacity: 1;
}
.sec-warping-img-hover__elem-area.active {
  opacity: 0.4;
}


/* contact タイトル部分下に位置調整、タブとのすき間調整 */
.sec-contact-ttl {
  margin-top: 100px;
}

.contact-top {
  transform: translateY(80px);
}

.contact-body {
  margin-top: -90px;
}
@media screen and (max-width: 1023px) {
  .contact-body {
    margin-top: -50px;
  }
}
@media screen and (max-width: 767px) {
  .contact-body {
    margin-top: 10px;
  }
}

.sec-bubble._show {
  transform: translateY(610px);
}
@media screen and (max-width: 767px) {
  .sec-bubble._show {
    transform: translateY(670px);
  }
}


/* Will solve environment problem部分、画像右寄り 修正 */
.sec-problem-content-slide {
  left: -3px;
  top: 3px;
}

.sec-world-ttl .sec-ttl h2 {
    color: #000;
}
.sec-world-ttl .sec-ttl h2::after {
    background: #000;
}
.sec-ttl._black h2::after {
    width: 100%;
}

/* They are Water-preneur */
.slide-auto-loop-wrap_reverse {
    display: flex;
    align-items: center;
    overflow-x: clip;
    margin-bottom: 50px;
}
