@charset 'UTF-8';

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  margin: 0;
  padding: 0;
  text-align: inherit;
  vertical-align: middle;
  text-transform: inherit;
  color: inherit;
  border-radius: 0;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  border: none;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="email"],
input[type="password"],
select {
  font-size: 16px;
  line-height: 1.6;

  width: 100%;
  margin-top: 5px;
  padding: 11px 17px;

  background-color: #fff;
  border: none;
}
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="tel"],
  input[type="number"],
  input[type="email"],
  input[type="password"],
  select {
    padding: 8px 12px;
  }
}

.select {
  position: relative;
}
.select:after {
  position: absolute;
  top: calc(50% - 9px);
  right: 25px;

  width: 10px;
  height: 18px;

  content: "";
  pointer-events: none;

  background: url(../../common/img/icn_select.svg) no-repeat center;
}
@media screen and (max-width: 768px) {
  .select:after {
    right: 15px;
  }
}
.select select {
  cursor: pointer;

  border: 1px solid #ddd;
  border-radius: 4px;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(50%, rgb(255, 255, 255)),
    color-stop(110%, rgba(100, 100, 100, 0.15))
  );
  background-image: -webkit-linear-gradient(
    top,
    rgb(255, 255, 255) 50%,
    rgba(100, 100, 100, 0.15) 110%
  );
  background-image: linear-gradient(
    180deg,
    rgb(255, 255, 255) 50%,
    rgba(100, 100, 100, 0.15) 110%
  );
}

input[type="submit"],
.a-btn {
  font-size: 18px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  min-width: 220px;
  height: 45px;
  margin: 30px auto 0;
  padding: 0 27px;
  transition: opacity 0.3s, box-shadow 0.3s;

  color: #fff;
  text-align: center;
  border-radius: 6px;
  background: url(../../common/img/icon-arrow-circle-right.svg) no-repeat right
    8px center var(--c_green);
  background-size: 16px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
  justify-content: center;
  align-items: center;
}
@media (hover) {
  input[type="submit"]:hover {
    opacity: 0.6;
    box-shadow: none;
  }
}
@media screen and (max-width: 768px) {
  input[type="submit"] {
    font-size: 16px;
  }
}
.a-btn {
  max-width: 220px;
}

input::-webkit-input-placeholder {
  font-size: 16px;
}

input::-moz-placeholder {
  font-size: 16px;
}

input:-ms-input-placeholder {
  font-size: 16px;
}

input::-ms-input-placeholder {
  font-size: 16px;
}

input::placeholder {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  input::-webkit-input-placeholder {
    font-size: 11px;
  }
  input::-moz-placeholder {
    font-size: 11px;
  }
  input:-ms-input-placeholder {
    font-size: 11px;
  }
  input::-ms-input-placeholder {
    font-size: 11px;
  }
  input::placeholder {
    font-size: 11px;
  }
}

::-webkit-input-placeholder {
  color: #999;
}

::-moz-placeholder {
  color: #999;
}

:-ms-input-placeholder {
  color: #999;
}

::-ms-input-placeholder {
  color: #999;
}

::placeholder {
  color: #999;
}

label,
input[type="checkbox"] {
  cursor: pointer;
}

span.required,
span.req {
  font-size: 14px;

  padding-left: 8px;

  color: #f80;
}
@media screen and (max-width: 768px) {
  span.required,
  span.req {
    font-size: 13px;
  }
}
span.req {
  display: none;
}

input[type="checkbox"] {
  position: relative;

  padding-left: 30px; /*label手前にチェックボックス用の余白を開ける*/

  cursor: pointer;
  vertical-align: middle;
}
input[type="checkbox"]:before,
input[type="checkbox"]:after {
  position: absolute;

  display: block;

  content: "";
}
input[type="checkbox"]:before {
  top: -12px;
  left: 3px;

  width: 20px;
  height: 20px;

  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
}
input[type="checkbox"]:after {
  top: -7px;
  left: 8px;

  width: 11px;
  height: 7px;

  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);

  opacity: 0;
  border-bottom: 3px solid var(--c_green);
  border-left: 3px solid var(--c_green);
}
input[type="checkbox"]:checked:after {
  opacity: 1; /*チェック後表示*/
}

_:lang(x) + _:-webkit-full-screen-document:before,
input[type="checkbox"]:before {
  top: -4px;
}
_:lang(x) + _:-webkit-full-screen-document:after,
input[type="checkbox"]:after {
  top: 1px;
}

section.member {
  position: relative;
}
section.member:before {
  position: absolute;
  z-index: -1;
  bottom: -370px;
  left: 0;

  width: 100%;
  height: 500px;

  content: "";

  opacity: 0.8;
  background: url(../../common/img/bg.jpg) no-repeat center/100%;
}
@media screen and (max-width: 768px) {
  section.member:before {
    bottom: -280px;
  }
}
section.member .gray-area {
  width: 90%;
  max-width: 1040px;
  margin: 50px auto 0;
  padding: 40px 40px 50px;

  background-color: rgba(243, 243, 243, 0.85);
}
@media screen and (max-width: 768px) {
  section.member .gray-area {
    padding: 25px 5% 30px;
  }
}
section.member .gray-area:first-child {
  margin-top: 0;
}
section.member .gray-area .inner {
  max-width: 700px;
  margin: 0 auto;
}
section.member .gray-area .inner h2 {
  font-size: 24px;
  font-weight: bold;

  text-align: center;
  letter-spacing: 0;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  section.member .gray-area .inner h2 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

section.member .gray-area .inner h2.form-title {
  margin-bottom: 1em;
}

section.member .gray-area .inner p {
  margin-top: 30px;
}
section.member .gray-area .inner p.login_status {
  margin-top: 0;
}

/* 2024-06-03 追加 */
.req-text,
.link-text {
  display: none;
}

/*# sourceMappingURL=member.css.map */
