@charset "UTF-8";
:root {
  --noto-sans: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --arial: "Arial", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --akshar: "Akshar", sans-serif;
  --poppins: "poppins", sans-serif;
  --white: #fff;
  --black: #000;
  --red: #d7063b;
  --ease: cubic-bezier(0.83, 0, 0.17, 1);
}

　 input[type=search] {
  -webkit-appearance: searchfield;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: searchfield-cancel-button;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=number],
input[type=password],
select,
option {
  background-color: var(--white);
  height: 50px !important;
}

main {
  background: url(../media/images/cms/common/bg_bottom.png) no-repeat center bottom/100%;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  main {
    background: url(../media/images/cms/common/bg_bottom_sp.png) no-repeat center bottom/100%;
    padding-bottom: 80px;
  }
}

.wrapper h1 {
  font-size: 30px;
  text-align: center;
  position: relative;
  padding: 30px 0 10px;
  font-weight: bold;
  margin-bottom: 50px;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .wrapper h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.wrapper h1:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--red);
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.form_Box {
  position: relative;
  z-index: 2;
}
.form_Box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}
@media screen and (max-width: 1350px) {
  .form_Box:before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .form_Box:before {
    display: none;
  }
}

.read_txt {
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .read_txt {
    font-size: 14px;
    text-align: left;
    margin-bottom: 30px;
  }
}

.formArea {
  border-radius: 20px;
  padding: 60px 0;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  background: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .formArea {
    border-radius: 10px;
    padding: 30px 5%;
  }
}
.formArea .fieldWrap {
  margin-bottom: 25px;
}
.formArea .fieldWrap.no_mar {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .formArea .fieldWrap {
    margin-bottom: 20px;
  }
}
.formArea .fieldWrap .fieldBox {
  /*基本css*/
}
.formArea .fieldWrap .fieldBox .inputBox {
  position: relative;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.formArea .fieldWrap .fieldBox .inputBox .list_ttl {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .formArea .fieldWrap .fieldBox .inputBox .list_ttl {
    font-size: 14px;
  }
}
.formArea .fieldWrap .fieldBox .inputBox .list_ttl .tag {
  background: #777;
  color: #fff;
  font-size: 11px;
  border-radius: 5px;
  padding: 2px 8px;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .formArea .fieldWrap .fieldBox .inputBox .list_ttl .tag {
    font-size: 10px;
  }
}
.formArea .fieldWrap .fieldBox .inputBox .list_ttl .tag.red {
  background: var(--red);
}
.formArea .fieldWrap .fieldBox .inputBox .list_ttl .notes {
  color: #999;
  font-size: 14px;
  margin-left: 25px;
}
@media screen and (max-width: 767px) {
  .formArea .fieldWrap .fieldBox .inputBox .list_ttl .notes {
    font-size: 12px;
  }
}
.formArea .fieldWrap .fieldBox .inputBox input {
  width: 100%;
  border-radius: 4px;
  border: none;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: lighter;
  height: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .formArea .fieldWrap .fieldBox .inputBox input {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    height: 20px;
  }
}
.formArea .fieldWrap .fieldBox .inputBox input::-webkit-input-placeholder {
  color: #c6c6c6;
}
.formArea .fieldWrap .fieldBox .inputBox input::-moz-placeholder {
  color: #c6c6c6;
}
.formArea .fieldWrap .fieldBox .inputBox input:-ms-input-placeholder {
  color: #c6c6c6;
}
.formArea .fieldWrap .fieldBox .inputBox input::-ms-input-placeholder {
  color: #c6c6c6;
}
.formArea .fieldWrap .fieldBox .inputBox input::placeholder {
  color: #c6c6c6;
}
.formArea .fieldWrap .fieldBox .inputBox .reset {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 15px;
  right: 17px;
  padding: 0 0 0 5px !important;
  border-radius: 20px;
  background: #cbcbcb;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .formArea .fieldWrap .fieldBox .inputBox .reset {
    right: 5%;
    width: 20px;
    height: 20px;
    top: 15px;
    padding: 0;
  }
}
.formArea .pass_link {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: end;
}
.formArea .pass_link a {
  font-size: 15px;
  font-weight: bold;
  text-align: right;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .formArea .pass_link a {
    font-size: 12px;
  }
}
.formArea .pass_link a:hover {
  text-decoration: none;
}
.formArea .btn_Box {
  position: relative;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}
.formArea .btn_Box:hover .reserve_btn {
  background-color: var(--white);
  color: var(--red);
}
.formArea .btn_Box .reserve_btn {
  text-align: center;
  width: 100%;
  height: 75px;
  background: var(--red);
  border: none;
  border-radius: 80px;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  margin: 60px auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  border: 3px solid var(--red);
  letter-spacing: 0.3rem;
  cursor: pointer;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .formArea .btn_Box .reserve_btn {
    font-size: 18px;
    height: 60px;
    margin: 40px auto 10px;
    letter-spacing: 0.15rem;
  }
}
.formArea #pass-id .fieldWrap {
  margin-bottom: 25px;
}
.formArea #pass-id .fieldWrap.no_mar {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .formArea #pass-id .fieldWrap {
    margin-bottom: 30px;
  }
}
.formArea #pass-id .fieldWrap .fieldBox {
  /*基本css*/
}
.formArea #pass-id .fieldWrap .fieldBox .inputBox {
  position: relative;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.formArea #pass-id .fieldWrap .fieldBox .inputBox .list_ttl {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .formArea #pass-id .fieldWrap .fieldBox .inputBox .list_ttl {
    font-size: 14px;
  }
}
.formArea #pass-id .fieldWrap .fieldBox .inputBox .list_ttl .tag {
  background: #777;
  color: #fff;
  font-size: 11px;
  border-radius: 5px;
  padding: 2px 8px;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .formArea #pass-id .fieldWrap .fieldBox .inputBox .list_ttl .tag {
    font-size: 10px;
  }
}
.formArea #pass-id .fieldWrap .fieldBox .inputBox .list_ttl .tag.red {
  background: var(--red);
}
.formArea #pass-id .fieldWrap .fieldBox .inputBox .list_ttl .notes {
  color: #999;
  font-size: 14px;
  margin-left: 25px;
}
@media screen and (max-width: 767px) {
  .formArea #pass-id .fieldWrap .fieldBox .inputBox .list_ttl .notes {
    font-size: 12px;
  }
}
.formArea #pass-id .fieldWrap .fieldBox .inputBox input {
  width: 100%;
  border-radius: 4px;
  border: none;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: lighter;
  height: 40px;
  position: relative;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .formArea #pass-id .fieldWrap .fieldBox .inputBox input {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    height: 20px;
  }
}
.formArea #pass-id .fieldWrap .fieldBox .inputBox input::-webkit-input-placeholder {
  color: #c6c6c6;
}
.formArea #pass-id .fieldWrap .fieldBox .inputBox input::-moz-placeholder {
  color: #c6c6c6;
}
.formArea #pass-id .fieldWrap .fieldBox .inputBox input:-ms-input-placeholder {
  color: #c6c6c6;
}
.formArea #pass-id .fieldWrap .fieldBox .inputBox input::-ms-input-placeholder {
  color: #c6c6c6;
}
.formArea #pass-id .fieldWrap .fieldBox .inputBox input::placeholder {
  color: #c6c6c6;
}
.formArea #pass-id .fieldWrap .fieldBox .inputBox .reset {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 15px;
  right: 17px;
  padding: 0 0 0 4px !important;
  border-radius: 20px;
  background: #cbcbcb;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .formArea #pass-id .fieldWrap .fieldBox .inputBox .reset {
    right: 5%;
    width: 20px;
    height: 20px;
    top: 15px;
    padding: 0;
  }
}
.formArea #pass-id .pass_link {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: end;
}
.formArea #pass-id .pass_link a {
  font-size: 15px;
  font-weight: bold;
  text-align: right;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .formArea #pass-id .pass_link a {
    font-size: 12px;
  }
}
.formArea #pass-id .pass_link a:hover {
  text-decoration: none;
}
.formArea #pass-id .btn_Box {
  margin: 60px auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 418px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .formArea #pass-id .btn_Box {
    margin: 0 auto 0;
  }
}
.formArea #pass-id .btn_Box .pageTop_Box {
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .formArea #pass-id .btn_Box .pageTop_Box {
    max-width: 230px;
  }
}
.formArea #pass-id .btn_Box .pageTop_Box .pageTop_btn {
  height: 40px;
  background: var(--red);
  border-radius: 80px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px solid var(--red);
  letter-spacing: 0.2rem;
  cursor: pointer;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .formArea #pass-id .btn_Box .pageTop_Box .pageTop_btn {
    height: 50px;
    font-size: 14px;
    letter-spacing: 0.15rem;
    margin-bottom: 10px;
  }
}
.formArea #pass-id .btn_Box .pageTop_Box .pageTop_btn:hover {
  opacity: 0.5;
}
.formArea #pass-id .btn_Box02 {
  max-width: 460px;
  width: 100%;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .formArea #pass-id .btn_Box02 {
    margin: 30px auto 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media (hover) {
  .formArea #pass-id .btn_Box02:hover .reserve_btn {
    background-color: var(--white);
    color: var(--red);
  }
}
.formArea #pass-id .btn_Box02 .reserve_btn {
  text-align: center;
  max-width: 440px;
  width: 100%;
  height: 75px;
  background: var(--red);
  border: none;
  border-radius: 80px;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 3px solid var(--red);
  letter-spacing: 0.3rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  padding-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .formArea #pass-id .btn_Box02 .reserve_btn {
    max-width: 320px;
    font-size: 18px;
    height: 60px;
    margin: 0 auto 20px;
    letter-spacing: 0.15rem;
    padding-bottom: 0;
  }
}