@charset "utf-8";

/* loginKv
---------------------------------------------- */
.loginKv {
  padding-block: clamp(120px, 5.83rem + 7.11vw, 200px) 100px;
  position: relative;
  z-index: 0;
}

.kvContents__title {
  text-align: center;
}
.kvContents__title .en,
.kvContents__title .ja {
  clip-path: inset(0);
}
.kvContents__title .ja {
  letter-spacing: 0.1em;
  margin-top: 1.5em;
}

.logionBox {
  max-width: 1000px;
  background-color: rgb(148 146 138 / .5);
  border-radius: 60px 0 0 0;
  margin-top: 70px;
  padding-block: 40px;
}
.logionBox__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px 5%;
  width: calc(100% - 100px);
  max-width: 900px;
  margin-inline: auto;
}

.logionBoxHead {
  flex: 1;
}
.logionBox__text {
  color: #fff;
}

.logionBoxBody {
  width: calc(400 / 900 * 100%);
}
.loginForm__btn {
  display: block;
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 0;
  font-size: 16px;
  padding: .5em 1em;
}
.loginForm__btn + .loginForm__btn {
  margin-top: 20px;
}
.loginForm__btn--submit {
  background-color: #aaa065;
  font-size: 20px;
}
::placeholder {
  color: #ccc;
  font-size: 16px;
}

.loginKv__bg {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: -1;
}
.loginKv__bg img {
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .loginKv {
    padding-bottom: 80px;
  }

  .kvContents__title .ja {
    margin-top: .5em;
  }

  .logionBox {
    width: calc(100% - 35px);
    max-width: 560px;
    margin-top: 40px;
    padding-block: 60px;
  }
  .logionBox__inner {
    flex-direction: column;
    width: calc(100% - 30px);
    max-width: 400px;
  }

  .logionBoxHead {
    flex: revert;
    width: 100%;
  }

  .logionBox__text {
    text-align: center;
  }

  .logionBoxBody {
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
  }
  .loginForm__btn {
    height: 50px;
  }
  .loginForm__btn--submit {
    font-size: 17px;
  }
}

/* flow
---------------------------------------------- */
.flow {
  padding-block: clamp(60px, 2.92rem + 3.56vw, 100px) clamp(80px, 4.58rem + 1.78vw, 100px);
}
.flow__title {
  max-width: 1000px;
}

.flowBox {
  max-width: 1000px;
  margin-top: 50px;
}

.flowStep {
  background-color: var(--color-base);
  border-radius: 60px 0 0 0;
  margin-top: 20px;
  padding-block: 30px;
}
.flowStepList {
  display: flex;
}
.flowStepList > li {
  width: calc(330 / 1000 * 100%);
  color: #fff;
  padding: 20px calc(50 / 1000 * 100%) 30px;
  position: relative;
  z-index: 0;
}
.flowStepList > li + li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: rgb(255 255 255 / .4);
  z-index: 0;
}
.flowStepList__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.flowStepList__title .num {
  font-size: 147%;
  margin-left: 2px;
}
.flowStepList__copy {
  font-size: clamp(16px, 0.74rem + 0.55vw, 20px);
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 1em;
}
.flowStepList__text {
  margin-block: 1em;
}
.flowStepList__text:last-child {
  margin-bottom: 0;
}
.flowStepList__btn {
  font-size: 12px;
  margin-top: auto;
}

.flowStepList__tri {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 13px;
  aspect-ratio: 13 / 30;
  background-color: rgb(255 255 255 / .4);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  z-index: 1;
}
.flowStepList__tri::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 11px;
  aspect-ratio: 11 / 28;
  background-color: var(--color-base);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  z-index: 1;
}
.flowStepList__tri::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background-color: var(--color-base);
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .flow__title {
    max-width: 560px;
  }

  .flowBox {
    width: calc(100% - 35px);
    max-width: 560px;
    margin-top: 40px;
  }

  .flowStep {
    margin-top: 30px;
    padding: 30px;
  }
  .flowStepList {
    flex-direction: column;
  }
  .flowStepList > li {
    width: 100%;
    padding: 40px 0;
  }
  .flowStepList > li + li::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
  }
  .flowStepList__inner {
    display: block;
    height: auto;
  }
  .flowStepList__copy {
    font-size: 20px;
  }
  .flowStepList__text {
    margin-bottom: 0;
  }
  .flowStepList__btn {
    font-size: 16px;
    margin-top: 30px;
    padding-block: 1.1em;
  }

  .flowStepList__tri {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    aspect-ratio: 30 / 12.5;
    clip-path: polygon(0 0, 52% 100%, 100% 0);
  }
  .flowStepList__tri::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    aspect-ratio: 28 / 11;
    clip-path: polygon(0 0, 52% 100%, 100% 0);
  }
  .flowStepList__tri::after {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 1px;
  }
}