@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
/* 共通設定 */
html {
  font-size: 62.5%;
}

.inner {
  margin: 0 auto;
}

/* header */


/* form */
.form {
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  font-family: Noto Sans JP;
}

.form .title {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 61px;
  background-color: #1ab188;
}

.form .title p {
  font-weight: 700;
  color: #fff;
}

.form .box {
  background-color: #f3f3f3;
  padding-top: 32px;
  padding-bottom: 59px;
}

.form .box .mail {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  gap: 5px;
}

.form .box .mail p {
  font-size: 1.5rem;
}

.form .box .mail input {
  height: 55px;
  background-color: #fff;
  border: 0;
  padding: 0px 10px;
  border: 1px solid #ccc
}

.form .box .mail input:focus {
  outline: orange 2px solid;
}

.form .box .pass {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  margin-top: 10px;
  gap: 5px;
}


.form .box .pass p {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.form .box .pass input {
  height: 55px;
  background-color: #fff;
  border: 0;
  padding: 0px 10px;
  border: 1px solid #ccc;
}

.form .box .mail input:focus,
.form .box .pass input:focus {
  border: 2px solid orange; /* 全体の枠線をオレンジ色に設定 */
  outline: none; /* デフォルトのアウトラインを削除 */
}

.form .btn {
  margin: 0 auto;
  display: flex;
  height: 60px;
  background-color: #1ab188;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 700;
  border-radius: 5px;
  margin-top: 60px;
  border: none;
  transition: transform 0.1s ease;
}
.form .btn:active {
  transform: scale(0.98); /* 少し縮む */
  background-color: #169e79; /* 色も少し暗くなる */
}
.form .text {
  width: 220px;
  margin: 0 auto;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  margin-top: 10px;
  color: #000;
  position: relative;
}

.form .text::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* cta */
.cta {
  overflow: hidden;
  padding: 0px 0 133px;
}

.cta a {
  display: block;
  margin: 0 auto;
  background-color: #e5a723;
  color: #fff;
  font-weight: 700;
  width: 40%;
  height: auto;
  padding: 15px 0px;
  text-align: center;
  border-radius: 10px; 
  transition: transform 0.1s ease, background-color 0.1s ease; 
}
.cta a:active {
  transform: scale(0.98); /* 少し縮む */
  background-color: #cc951f;/* 色も少し暗くなる */
}
/* footer */
footer {
  padding: 55px 0 116px;
}

footer h2 {
  font-size: 4rem;
  font-weight: 700;
}

footer p {
  font-size: 2rem;
}
/* PC幅 */
@media screen and (min-width: 769px) {
  .cta a {
    width: 30%;
    font-size: 2.5rem;
  }
  .form .btn {
    width: 30%;
    font-size: 2.5rem;
  }
  .form .title p {
    font-size: 2.5rem;
  }
  .inner {
    width: 70%;
  }
}
/* スマホ・タブレット幅 */
@media screen and (max-width: 768px) {
  .cta a {
    width: 50%;
    font-size: 20px;
  }
  .form .btn {
    width: 60%;
    font-size: 20px;
  }
  .form .title p {
    font-size: 20px;
  }
  .inner {
    width: 90%;
  }
}
