@charset "utf-8";

/* ----------------------------------------
  D/O
---------------------------------------- */

/* ---------- intro ---------- */
.p-do-intro {
  width: 100%;
  margin-top: 180px;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s cubic-bezier(.7,0,.3,1), transform .8s cubic-bezier(.7,0,.3,1);
}

.is-active.p-do-intro {
  opacity: 1;
  transform: translateY(0);
}

.p-do-intro__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.p-do-intro__text {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: calc(32 / 16);
}

.p-do-intro__text--dot {
  display: none;
}

@media screen and (max-width:768px) {
  .p-do-intro {
    margin-top: 100px;
  }

  .p-do-intro__text {
    text-align: left;
    font-size: 1.4rem;
  }

  .p-do-intro__text--dot {
    display: inline-block;
  }
}



/* ---------- form ---------- */
.p-do-form {
  width: 100%;
  margin-top: 150px;
  padding: 0 50px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s cubic-bezier(.7,0,.3,1), transform .8s cubic-bezier(.7,0,.3,1);
}

.is-active.p-do-form {
  opacity: 1;
  transform: translateY(0);
}

.p-do-form__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.p-do-form__title {
  width: 100%;
  text-align: center;
  font-feature-settings: "palt";
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: calc(36 / 24);
  color: var(--color-wht);
  background-color: var(--color-sub);
  border-radius: 10px 10px 0 0;
  padding: 30px;
}

.p-do-form__body {
  background-color: var(--color-gray);
  border-radius: 0 0 10px 10px;
  padding: 50px 10%;
}

.p-do-form__wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.p-do-form__id {
  width: calc(100% * (400 / 800));
}

.p-do-form__pass {
  width: calc(100% * (350 / 800));
}

.p-do-form__id p,
.p-do-form__pass p {
  font-size: 1.6rem;
  letter-spacing: 0;
  margin-bottom: 15px;
}

@font-face {
  font-family: "NotoSansJPRegular";
  src: url("/assets/fonts/NotoSansJP-Regular.ttf");
}

.p-do-form__id input,
.p-do-form__pass input {
  width: 100%;
  font-family: "NotoSansJPRegular", 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-main);
  padding: 18px;
  border: none;
  border-radius: 50px;
  outline: none;
  background: var(--color-wht);
  appearance: none;
}

.p-do-form__btn {
  display: block;
  width: 360px;
  height: 80px;
  font-size: 2rem;
  color: var(--color-wht);
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: var(--color-main);
  border-radius: 10px;
  margin: 50px auto 0 auto;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.p-do-form__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: var(--color-sub);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: 0% 0%;
  transition: transform .3s cubic-bezier(.7,0,.3,1);
}

.p-do-form__btn:hover::before {
  transform: scaleX(1);
}

.p-do-form__text {
  text-align: center;
  margin-top: 35px;
}

.p-do-form__link {
  font-size: 1.6rem;
  line-height: calc(21 / 14);
  text-decoration: underline;
  transition: opacity .3s;
}

.p-do-form__link:hover {
  opacity: 0.5;
  text-decoration: none !important;
}

@media screen and (max-width:768px) {
  .p-do-form {
    margin-top: 100px;
    padding: 0 20px;
  }

  .p-do-form__title {
    font-size: 1.8rem;
    padding: 20px;
  }

  .p-do-form__body {
    padding: 30px 20px;
  }

  .p-do-form__wrap {
    display: block;
  }

  .p-do-form__id {
    width: 100%;
  }

  .p-do-form__pass {
    width: 100%;
    margin-top: 20px;
  }

  .p-do-form__id p,
  .p-do-form__pass p {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .p-do-form__id input,
  .p-do-form__pass input {
    font-size: 1.4rem;
    padding: 12px;
  }

  .p-do-form__btn {
    width: 295px;
    height: 60px;
    font-size: 1.6rem;
    margin: 30px auto 0 auto;
  }

  .p-do-form__text {
    margin-top: 20px;
  }

  .p-do-form__link {
    font-size: 1.4rem;
  }
}



/* ---------- issue ---------- */
.p-do-issue {
  width: 100%;
  margin-top: 50px;
  padding: 0 50px;
}

.p-do-issue__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px;
  background-color: var(--color-gray);
  border-radius: 10px;
}

.p-do-issue__btn {
  width: 360px;
  height: 60px;
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-wht);
  background-color: var(--color-sub);
  border-radius: 10px;
  margin: 0 auto;
  display: block flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.p-do-issue__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: var(--color-main);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: 0% 0%;
  transition: transform .3s cubic-bezier(.7,0,.3,1);
}

.p-do-issue__btn:hover::before {
  transform: scaleX(1);
}

.p-do-issue__text {
  text-align: center;
  margin-top: 40px;
}

.p-do-issue__link {
  display: inline-block;
  font-size: 1.6rem;
  text-decoration: underline;
  transition: opacity .3s;
}

.p-do-issue__link:hover {
  opacity: 0.5;
  text-decoration: none !important;
}

@media screen and (max-width:768px) {
  .p-do-issue {
    margin-top: 30px;
    padding: 0 20px;
  }

  .p-do-issue__inner {
    padding: 30px 20px;
  }

  .p-do-issue__btn {
    width: 295px;
    font-size: 1.4rem;
  }

  .p-do-issue__text {
    margin-top: 25px;
  }

  .p-do-issue__link {
    font-size: 1.4rem;
  }
}
