@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: #cf142b;
  --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: 32px;
  font-weight: bold;
  text-align: center;
  color: var(--red);
  padding: 30px 0;
}
@media screen and (max-width: 580px) {
  .wrapper h1 {
    font-size: 5.5172413793vw;
    padding: 20px 0;
  }
}

.form_Box {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  .form_Box {
    background: none;
  }
}
.form_Box .error_Box {
  border: 2px solid var(--red);
  background: #fff6f6;
  border-radius: 10px;
  padding: 20px 30px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .form_Box .error_Box {
    width: 90%;
  }
}
.form_Box .error_Box li {
  color: var(--red);
  font-size: 16px;
  line-height: 2.3rem;
}
@media screen and (max-width: 767px) {
  .form_Box .error_Box li {
    font-size: 14px;
    line-height: 1.8rem;
  }
}
.form_Box .error_Box li.error_txt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .form_Box .error_Box li.error_txt {
    font-size: 16px;
    line-height: 1.8rem;
  }
}
.form_Box:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 1350px) {
  .form_Box:after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .form_Box:after {
    display: none;
  }
}
.form_Box ul.caution {
  background-color: #f4f4f4;
  padding: 25px 22px;
  border-radius: 20px;
  margin: 40px auto 0;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .form_Box ul.caution {
    margin-top: 30px;
    padding: 20px 5%;
    width: 90%;
  }
}
.form_Box ul.caution li:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #bbbbbb;
}
.form_Box ul.caution li p {
  font-size: 14px;
  text-align: center;
}
.form_Box ul.caution li .browse {
  margin-top: 5px;
  padding: 0;
  text-align: center;
  line-height: 1;
}
.form_Box ul.caution li .browse a {
  text-decoration: underline;
  font-size: 14px;
  line-height: 1;
  color: #000000;
}
.form_Box ul.caution li .browse a:hover {
  text-decoration: none;
}
.form_Box .browse2 {
  margin-top: 15px;
  padding: 0;
  text-align: center;
  line-height: 1;
}
.form_Box .browse2 a {
  text-decoration: underline;
  color: #000000;
  font-size: 14px;
  line-height: 1;
}
.form_Box .browse2 a:hover {
  text-decoration: none;
}

.formArea {
  background: #f4f4f4;
  border-radius: 20px;
  padding: 60px 0;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
@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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.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: normal;
  height: 40px;
  position: relative;
  background-color: var(--white);
}
@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 {
  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 .fieldWrap {
  margin-bottom: 25px;
}
.formArea #pass .fieldWrap.no_mar {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .formArea #pass .fieldWrap {
    margin-bottom: 30px;
  }
}
.formArea #pass .fieldWrap .fieldBox {
  /*基本css*/
}
.formArea #pass .fieldWrap .fieldBox .inputBox {
  position: relative;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.formArea #pass .fieldWrap .fieldBox .inputBox .list_ttl {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .formArea #pass .fieldWrap .fieldBox .inputBox .list_ttl {
    font-size: 14px;
  }
}
.formArea #pass .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 .fieldWrap .fieldBox .inputBox .list_ttl .tag {
    font-size: 10px;
  }
}
.formArea #pass .fieldWrap .fieldBox .inputBox .list_ttl .tag.red {
  background: var(--red);
}
.formArea #pass .fieldWrap .fieldBox .inputBox .list_ttl .notes {
  color: #999;
  font-size: 14px;
  margin-left: 25px;
}
@media screen and (max-width: 767px) {
  .formArea #pass .fieldWrap .fieldBox .inputBox .list_ttl .notes {
    font-size: 12px;
  }
}
.formArea #pass .fieldWrap .fieldBox .inputBox input {
  width: 100%;
  border-radius: 4px;
  border: none;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: normal;
  height: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .formArea #pass .fieldWrap .fieldBox .inputBox input {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    height: 20px;
  }
}
.formArea #pass .fieldWrap .fieldBox .inputBox input::-webkit-input-placeholder {
  color: #c6c6c6;
}
.formArea #pass .fieldWrap .fieldBox .inputBox input::-moz-placeholder {
  color: #c6c6c6;
}
.formArea #pass .fieldWrap .fieldBox .inputBox input:-ms-input-placeholder {
  color: #c6c6c6;
}
.formArea #pass .fieldWrap .fieldBox .inputBox input::-ms-input-placeholder {
  color: #c6c6c6;
}
.formArea #pass .fieldWrap .fieldBox .inputBox input::placeholder {
  color: #c6c6c6;
}
.formArea #pass .fieldWrap .fieldBox .inputBox .reset {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 15px;
  right: 17px;
  padding: 0px;
  border-radius: 20px;
  background: #cbcbcb;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .formArea #pass .fieldWrap .fieldBox .inputBox .reset {
    right: 5%;
    width: 20px;
    height: 20px;
    top: 15px;
    padding: 0;
  }
}
.formArea #pass .pass_link {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: end;
}
.formArea #pass .pass_link a {
  font-size: 15px;
  font-weight: bold;
  text-align: right;
  text-decoration: underline;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .formArea #pass .pass_link a {
    font-size: 12px;
  }
}
.formArea #pass .pass_link a:hover {
  text-decoration: none;
}
.formArea #pass .btn_Box {
  position: relative;
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .formArea #pass .btn_Box {
    max-width: 320px;
  }
}
.formArea #pass .btn_Box:hover .reserve_btn {
  background-color: var(--white);
  color: var(--red);
}
.formArea #pass .btn_Box .reserve_btn {
  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.3s;
  transition: 0.3s;
  border: 3px solid var(--red);
  letter-spacing: 0.3rem;
  cursor: pointer;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .formArea #pass .btn_Box .reserve_btn {
    font-size: 18px;
    height: 60px;
    margin: 40px auto 10px;
    letter-spacing: 0.15rem;
  }
}
.formArea #pass .account_less {
  max-width: 600px;
  width: 100%;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 5px;
  padding: 25px 0;
}
@media screen and (max-width: 767px) {
  .formArea #pass .account_less {
    padding: 20px;
  }
}
.formArea #pass .account_less h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #282828;
  margin-bottom: 10px;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .formArea #pass .account_less h3 {
    font-size: 18px;
  }
}
.formArea #pass .account_less .acc_less {
  font-size: 16px;
  color: #282828;
  text-align: center;
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .formArea #pass .account_less .acc_less {
    font-size: 14px;
  }
}
.formArea #pass .account_less .addrBox {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.formArea #pass .account_less .addrBox:before {
  content: "";
  width: 17px;
  height: 15px;
  background: url(../media/images/cms/common/icn_apply.svg) no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 54%;
  left: 33px;
}
.formArea #pass .account_less .addrBox .addr_btn {
  width: 170px;
  height: 40px;
  background: var(--red);
  font-size: 16px;
  color: #fff;
  border-radius: 10px;
  letter-spacing: 0.15rem;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  margin-top: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .formArea #pass .account_less .addrBox .addr_btn {
    font-size: 16px;
  }
}
.formArea #pass .account_less .addrBox .addr_btn .small {
  font-size: 12px;
}
.formArea #pass .account_less .addrBox:hover {
  opacity: 0.5;
}

/*ログアウト画面↓*/
.logout .wrapper .contents .form_Box .formArea form h2 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.15rem;
}
.logout .wrapper .contents .form_Box .formArea form .read_txt {
  font-size: 16px;
  text-align: center;
  margin-bottom: 60px;
}
.logout .wrapper .contents .form_Box .formArea form .btn_Box02 {
  position: relative;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .logout .wrapper .contents .form_Box .formArea form .btn_Box02 {
    max-width: 450px;
  }
}
.logout .wrapper .contents .form_Box .formArea form .btn_Box02 .reserve_btn {
  width: 100%;
  height: 75px;
  background: var(--red);
  border: none;
  border-radius: 80px;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  margin: 60px auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 3px solid var(--red);
  letter-spacing: 0.3rem;
  cursor: pointer;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .logout .wrapper .contents .form_Box .formArea form .btn_Box02 .reserve_btn {
    font-size: 18px;
    height: 60px;
    margin: 40px auto 20px;
  }
}
.logout .wrapper .contents .form_Box .formArea form .btn_Box02 .reserve_btn:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 40%;
  right: 7%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .logout .wrapper .contents .form_Box .formArea form .btn_Box02 .reserve_btn:before {
    width: 8px;
    height: 8px;
    top: 43%;
  }
}
.logout .wrapper .contents .form_Box .formArea form .btn_Box02 .reserve_btn:hover {
  opacity: 0.5;
}
.logout .wrapper .contents .form_Box .formArea form .eventTop_btn {
  max-width: 350px;
  width: 100%;
  height: 60px;
  background: #777;
  border: none;
  border-radius: 80px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  margin: 0 auto 30px;
  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;
  letter-spacing: 0.3rem;
  cursor: pointer;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logout .wrapper .contents .form_Box .formArea form .eventTop_btn:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .logout .wrapper .contents .form_Box .formArea form .eventTop_btn {
    width: 70%;
    height: 40px;
    font-size: 14px;
    letter-spacing: 0.15rem;
    max-width: 200px;
  }
}