.form__label {
  display: block;
  margin-bottom: 1em;
}
.form__ttl {
  display: block;
  margin-bottom: 0.5em;
}
.form input[type="email"], .form input[type="text"], .form input[type="url"], .form input[type="tel"], .form textarea {
  font-size: 16px;
  padding: 10px;
  width: 100%;
  display: block;
  border: none;
  background-color: #F0EEEE;
  border-radius: 0px;
}
.form input[type="email"]:focus, .form input[type="text"]:focus, .form input[type="url"]:focus, .form input[type="tel"]:focus, .form textarea:focus {
  outline: none;
}
.form input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  font-size: 16px;
  border-radius: 0;
  background-color: #B8B8B8;
}

.pHomeFv {
  height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pHomeFv__inner {
  position: relative;
}
.pHomeFv__ttl {
  opacity: 0;
  animation: ttl .5s forwards ease;
  animation-delay: 2.2s;
  text-align: center;
  font-size: 16px;
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 0%);
  white-space: nowrap;
  letter-spacing: 0.2em;
  font-weight: 500;
}
@keyframes ttl {
  0% {
    opacity: 0;
    bottom: 0;
  }
  100% {
    opacity: 1;
    bottom: -5%;
  }
}
.pHomeFv__ttl__small {
  font-size: 0.7em;
}
.pHomeFv__txtBox {
  display: flex;
  align-items: center;
  column-gap: 50px;
  padding-bottom: 30px;
  animation: txtBox 1s forwards ease;
  animation-delay: 2s;
}
@keyframes txtBox {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20%);
  }
}
@media screen and (max-width: 960px) {
  .pHomeFv__txtBox {
    column-gap: 20px;
  }
}
.pHomeFv__x {
  font-size: 50px;
}
@media screen and (max-width: 960px) {
  .pHomeFv__x {
    font-size: 30px;
  }
}
.pHomeFv__txtJp {
  font-size: 26px;
  display: block;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 960px) {
  .pHomeFv__txtJp {
    font-size: 16px;
  }
}
.pHomeFv__txtEn {
  font-size: 110px;
  display: block;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 960px) {
  .pHomeFv__txtEn {
    font-size: 60px;
  }
}
.pHomeFv__txt {
  opacity: 0;
  animation: txtAnime .5s forwards ease;
}
.pHomeFv__txt--01 {
  animation-delay: 1s;
}
.pHomeFv__txt--02 {
  animation-delay: 1.3s;
}
@keyframes txtAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pHomeFv__square {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  animation: square .6s ease forwards;
}
.pHomeFv__square--right {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  animation: squareRight 1.5s ease forwards;
}
@keyframes squareRight {
  0% {
    top: 50%;
    right: 50%;
    width: 100%;
    height: 100%;
    transform: translate(50%, -50%);
  }
  50% {
    top: 50%;
    right: 50%;
    width: 700px;
    height: 300px;
    transform: translate(50%, -50%);
  }
  100% {
    top: -200px;
    right: -100px;
    width: 700px;
    height: 300px;
    transform: translate(0);
  }
}
@media screen and (max-width: 960px) {
  @keyframes squareRight {
    0% {
      top: 50%;
      right: 50%;
      width: 100%;
      height: 100%;
      transform: translate(50%, -50%);
    }
    50% {
      top: 50%;
      right: 50%;
      width: 350px;
      height: 160px;
      transform: translate(50%, -50%);
    }
    100% {
      top: -100px;
      right: -100px;
      width: 350px;
      height: 160px;
      transform: translate(0);
    }
  }
}
.pHomeFv__square--left {
  bottom: 50%;
  left: 50%;
  transform: translate(50%, 50%);
  animation: squareLeft 1.5s ease forwards;
}
@keyframes squareLeft {
  0% {
    bottom: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, 50%);
  }
  50% {
    bottom: 50%;
    left: 50%;
    width: 700px;
    height: 300px;
    transform: translate(-50%, 50%);
  }
  100% {
    bottom: -200px;
    left: -100px;
    width: 700px;
    height: 300px;
    transform: translate(0);
  }
}
@media screen and (max-width: 960px) {
  @keyframes squareLeft {
    0% {
      bottom: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      transform: translate(-50%, 50%);
    }
    50% {
      bottom: 50%;
      left: 50%;
      width: 350px;
      height: 160px;
      transform: translate(-50%, 50%);
    }
    100% {
      bottom: -100px;
      left: -100px;
      width: 350px;
      height: 160px;
      transform: translate(0);
    }
  }
}

.pHomeCom {
  padding-bottom: 200px;
}
@media screen and (max-width: 960px) {
  .pHomeCom {
    padding-bottom: 100px;
  }
}
.pHomeCom__comming {
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: flex;
  justify-content: center;
  column-gap: 20px;
  align-items: center;
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .pHomeCom__comming {
    font-size: 14px;
  }
}
.pHomeCom__comming__wrap {
  padding: 200px 0;
  background-color: #FCFCFC;
  margin-bottom: 150px;
}
@media screen and (max-width: 960px) {
  .pHomeCom__comming__wrap {
    padding: 80px 0;
    margin-bottom: 80px;
  }
}
.pHomeCom__comming:before {
  display: block;
  content: "";
  width: 2em;
  height: 1px;
  background-color: #333;
}
.pHomeCom__comming:after {
  display: block;
  content: "";
  width: 2em;
  height: 1px;
  background-color: #333;
}
.pHomeCom__comming__span:before {
  display: block;
  content: "coming soon";
  letter-spacing: 0;
  font-size: 60px;
  font-weight: 900;
}
@media screen and (max-width: 960px) {
  .pHomeCom__comming__span:before {
    font-size: 36px;
  }
}
.pHomeCom__comming__txt01 {
  text-align: center;
  margin: 40px auto 0;
  line-height: 2.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 960px) {
  .pHomeCom__comming__txt01 {
    font-size: 14px;
    text-align: left;
  }
}
.pHomeCom__ttl {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 2em;
}
@media screen and (max-width: 960px) {
  .pHomeCom__ttl {
    margin-bottom: 1.3em;
    font-size: 24px;
  }
}
.pHomeCom__table {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}
.pHomeCom__dl {
  display: flex;
}
.pHomeCom__dt {
  flex-shrink: 0;
  min-width: 9em;
  padding: 2em 0 2em;
  border-bottom: solid 1px #D3D3D3;
}
@media screen and (max-width: 960px) {
  .pHomeCom__dt {
    padding-top: 2.3em;
    font-size: 14px;
    min-width: 7em;
  }
}
.pHomeCom__dd {
  padding: 2.3em 0 2em;
  border-bottom: solid 1px #ECECEC;
  flex-grow: 1;
  font-size: 14px;
}

.pHomeContact {
  background-color: #FCFCFC;
  width: 700px;
  max-width: 100%;
  margin: 100px auto 0;
  text-align: center;
  padding: 50px 5%;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .pHomeContact {
    font-size: 16px;
    margin-top: 80px;
  }
}
.pHomeContact__ttl {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 0.5em;
  letter-spacing: 0.06em;
}
.pHomeContact__txt {
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  line-height: 1.6;
}
