@charset "UTF-8";
.important {
  font-weight: bold;
  text-decoration: underline;
}

select:focus-visible, select:focus {
  outline: 0 !important;
}

* {
  box-sizing: border-box;
}

:root {
  --gap: 2.25vw;
}

hr {
  width: 100%;
  opacity: 0.4;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.is-mobile {
  display: none;
}
@media screen and (max-width: 750px) {
  .is-mobile {
    display: initial;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .br-sp {
    display: block;
  }
}

html {
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.62vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

select {
  padding-left: 2rem;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.4);
  color: black;
  border-radius: 0;
  font-size: 1.3rem;
}
@media screen and (max-width: 750px) {
  select {
    font-size: 2.3vw;
  }
}
select {
  color: black;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=file] {
  border-width: 0;
}

.form__bg {
  /* background: repeating-linear-gradient( 90deg, #477388, #477388 var(--gap), #5a8092 var(--gap), #5a8092 calc(var(--gap) * 2)); */
  background-image: url(./../../img/form/2025-12-05_bg.png);
}
@media screen and (max-width: 780px) {
  .form__bg {
    background-size: 100vw;
  }
}

.form__wrapper {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
  margin-bottom: 4rem;
}

.form__container {
  background-color: white;
  width: min(750px, 100%);
  max-width: 90%;
  display: flex;
  flex-direction: column;
  padding: 5rem;
  height: fit-content;
}
@media screen and (max-width: 750px) {
  .form__container {
    padding: 5rem;
  }
}

.form__submit {
  color: black;
  background-color: #f4f4f4;
  margin-top: 3rem;
  width: fit-content;
  padding: 1rem 1.5rem;
  white-space: nowrap;
  font-size: 2rem;
  border-style: solid;
  border-radius: 0.5rem;
  border-width: 50%;
  border-color: black;
  cursor: pointer;
  position: relative;
  z-index: 1;
  box-shadow: 0 0.3rem 0.2rem rgba(0, 0, 0, 0.3);
  min-width: 20rem;
  min-height: 5.6rem;
}
.form__submit:hover {
  box-shadow: none;
  background-color: #eaeaea;
  /* border-color: #80c0cc; */
}

.is-return {
  background-color: white;
  margin-top: 0;
  font-size: 1.5rem;
  padding: 0.7rem 1.2rem;
}

.form__button-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.form__expired {
  font-size: 1.8rem;
  color: black;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 750px) {
  .form__expired {
    font-size: 2.9rem;
  }
}

.fv__wrapper {
  display: flex;
  justify-content: center;
  flex-direction: row;
  width: 100%;
}
.fv__img {
  /* margin-top: 1rem; */
  margin-bottom: 1rem;
  width: 858px;
  max-width: 100%;
}

.header__wrapper {
  text-align: center;
}
.header__title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 4.3rem;
}
@media screen and (max-width: 750px) {
  .header__title {
    margin-bottom: 1;
  }
}

.info__banner {
  width: 100%;
}
.info__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding: 0 3rem; */
  gap: 0.8rem;
}
.info__title {
  font-size: 1.8rem;
  text-align: center;
  color: black;
  margin-bottom: 2rem;
}
@media screen and (max-width: 750px) {
  .info__title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
}
.info__date {
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 0rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .info__date {
    margin-bottom: 1rem;
    font-size: 2.6rem;
  }
}
.info__subtitle {
  font-size: 1.6rem;
  text-align: center;
  color: black;
  margin-bottom: 0rem;
  line-height: 1.3;
}
@media screen and (max-width: 750px) {
  .info__subtitle {
    font-size: 1.7rem;
    margin-bottom: 0rem;
  }
}
.info__disclaimer {
  font-size: 1.3rem;
  margin-top: 0.7rem;
  margin-left: 1.5rem;
}
@media screen and (max-width: 750px) {
  .info__disclaimer {
    font-size: 1.7rem;
  }
}
.info__section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 3vw;
}
.info__label {
  white-space: nowrap;
  font-size: 1.3rem;
  color: black;
}
@media screen and (max-width: 750px) {
  .info__label {
    font-size: 2rem;
  }
}
.info__input {
  padding-left: 2rem;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.4);
  color: black;
  border-radius: 0;
  font-size: 1.3rem;
}
@media screen and (max-width: 750px) {
  .info__input {
    font-size: 2.3vw;
  }
}
.info__input {
  height: 4rem;
  width: 22rem;
}
.info__input.is-checkbox {
  height: 2rem;
  width: 2rem;
}
@media screen and (max-width: 750px) {
  .info__input.is-checkbox {
    height: 3rem;
    width: 3rem;
  }
}

.purchase__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding: 0 3rem; */
  gap: 0.8rem;
}
.purchase__title {
  font-size: 1.8rem;
  text-align: center;
  color: black;
  margin-bottom: 2rem;
}
@media screen and (max-width: 750px) {
  .purchase__title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
}
.purchase__section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 3vw;
}
.purchase__section.is-checkbox {
  display: flex;
  justify-content: start;
  margin-bottom: 1rem;
  gap: 1rem;
}
.purchase__section.is-checkbox .purchase__input.is-checkbox {
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 750px) {
  .purchase__section.is-checkbox .purchase__input.is-checkbox {
    width: 3rem;
    height: 3rem;
  }
}
.purchase__section.is-checkbox .purchase__label {
  white-space: nowrap;
  font-size: 1.3rem;
  color: black;
}
@media screen and (max-width: 750px) {
  .purchase__section.is-checkbox .purchase__label {
    font-size: 2rem;
  }
}
.purchase__input {
  padding-left: 2rem;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.4);
  color: black;
  border-radius: 0;
  font-size: 1.3rem;
}
@media screen and (max-width: 750px) {
  .purchase__input {
    font-size: 2.3vw;
  }
}
.purchase__input {
  height: 4rem;
  width: 22rem;
}
.purchase__online_error {
  color: red;
}
.purchase__label {
  white-space: nowrap;
  font-size: 1.3rem;
  color: black;
}
@media screen and (max-width: 750px) {
  .purchase__label {
    font-size: 2rem;
  }
}
.purchase__select-wrapper {
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.4);
  width: 22rem;
  position: relative;
}
.purchase__select-wrapper::after {
  transform: rotateZ(135deg);
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-width: 0;
  border-style: solid;
  border-right-width: 0.2rem;
  border-top-width: 0.2rem;
  border-color: black;
  position: absolute;
  right: 1rem;
  top: 1.3rem;
}

select.purchase__input {
  border-width: 0;
  border-color: transparent;
}

.submission__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding: 0 3rem; */
  gap: 0.8rem;
}
.submission__amount {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.1rem;
}
@media screen and (max-width: 750px) {
  .submission__amount {
    margin-bottom: 0rem;
    line-height: 0.8;
    margin-bottom: 2rem;
  }
}
.submission__container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.submission__title {
  font-size: 1.8rem;
  text-align: center;
  color: black;
  margin-bottom: 2rem;
}
@media screen and (max-width: 750px) {
  .submission__title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
}
.submission__section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 3vw;
  gap: 0;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  display: block;
}
@media screen and (max-width: 750px) {
  .submission__section {
    gap: 0rem;
    /* display: block; */
    padding-bottom: 0.8rem;
  }
}
.submission__label {
  white-space: nowrap;
  font-size: 1.3rem;
  color: black;
}
@media screen and (max-width: 750px) {
  .submission__label {
    font-size: 2rem;
  }
}
.submission__label {
  white-space: initial;
  /* max-width: 50%; */
  word-break: break-all;
  font-size: 1.7rem;
}
@media screen and (max-width: 750px) {
  .submission__label {
    /* max-width: 21rem; */
    font-size: 1.8rem;
  }
}
.submission__count-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 3.9rem;
  width: 11.5rem;
  margin-top: 1rem;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .submission__count-wrapper {
    margin-top: 1rem;
    height: 4.8rem;
    width: 14.4rem;
  }
}
.submission__input {
  padding-left: 2rem;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.4);
  color: black;
  border-radius: 0;
  font-size: 1.3rem;
}
@media screen and (max-width: 750px) {
  .submission__input {
    font-size: 2.3vw;
  }
}
.submission__input {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  box-sizing: border-box;
  height: 100%;
  width: 33.33%;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-left-width: 0;
  border-right-width: 0;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  text-align: center;
  border-radius: 0;
}
.submission__input::-webkit-outer-spin-button,
.submission__input ::-webkit-inner-spin-button {
  -webkit-appearance: none;
  opacity: 0;
  margin: 0;
}
.submission__input:hover :focus::-webkit-outer-spin-button,
.submission__input:hover :focus ::-webkit-inner-spin-button {
  -webkit-appearance: none;
  opacity: 0;
  margin: 0;
}
.submission__count-btn {
  height: 100%;
  width: 33.33%;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background-color: white;
  position: relative;
}
.submission__count-btn::after, .submission__count-btn::before {
  content: "";
  position: absolute;
  background-color: black;
  height: 5%;
  width: 50%;
  right: 25%;
  min-height: 2px;
}
.submission__count-btn.is-add::after {
  transform: rotateZ(90deg);
}
.submission__count-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.overlay__wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 100;
}
.overlay__window {
  background-color: white;
  width: 80%;
  height: 90%;
  border-radius: 2vw;
  display: flex;
  flex-direction: column;
  max-width: 800px;
  overflow-y: auto;
}
.overlay__window > * {
  padding-right: 15%;
  padding-left: 15%;
}
.overlay__window > hr {
  width: 50%;
  margin-bottom: 2rem;
}
.overlay__heading {
  margin-top: 3rem;
  font-size: 2.3rem;
  text-align: center;
  color: black;
  padding-right: 0;
  padding-left: 0;
}
@media screen and (max-width: 750px) {
  .overlay__heading {
    font-size: 2.3rem;
    margin-bottom: 1rem;
  }
}
.overlay__title {
  font-size: 1.8rem;
  text-align: center;
  color: black;
  margin-bottom: 2rem;
}
@media screen and (max-width: 750px) {
  .overlay__title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
}
.overlay__section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 3vw;
  margin-top: 1rem;
}
@media screen and (max-width: 750px) {
  .overlay__section {
    gap: 0.2vw;
    margin-top: 1rem;
    flex-direction: column;
    align-items: start;
    margin-bottom: 0.5rem;
  }
}
.overlay__label {
  white-space: nowrap;
  font-size: 1.3rem;
  color: black;
}
@media screen and (max-width: 750px) {
  .overlay__label {
    font-size: 2rem;
  }
}
.overlay__label {
  font-size: 1.8rem;
  white-space: initial;
  max-width: 84%;
  word-break: keep-all;
}
.overlay__field {
  font-size: 1.4rem;
}
@media screen and (max-width: 750px) {
  .overlay__field {
    font-size: 2.3rem;
    margin-left: 3rem;
  }
}
.overlay__img {
  width: 8rem;
  max-height: 5rem;
  border: 1px solid black;
  box-shadow: inset 0 0rem 0.9rem rgba(0, 0, 0, 0.3);
}
.overlay__button-wrapper {
  margin-top: 2rem;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: fit-content;
  margin-bottom: 2rem;
}
.overlay__button {
  color: black;
  padding: 1rem 1.5rem;
  background-color: #f4f4f4;
  white-space: nowrap;
  font-size: 2rem;
  border-style: solid;
  border-radius: 0.5rem;
  border-width: 50%;
  border-color: black;
  color: black;
  cursor: pointer;
  position: relative;
  z-index: 1;
  box-shadow: 0 0.3rem 0.2rem rgba(0, 0, 0, 0.3);
}
.overlay__button:hover {
  background-color: #eaeaea;
  box-shadow: none;
}
.overlay__button.is-cancel {
  background-color: rgba(0, 0, 0, 0.3);
}
.overlay__thanks {
  background-color: white;
  width: 80%;
  height: fit-content;
  border-radius: 2vw;
  display: flex;
  flex-direction: column;
  max-width: 800px;
  overflow-y: auto;
}
.overlay__thanks > * {
  padding-right: 15%;
  padding-left: 15%;
}
.overlay__thanks > hr {
  width: 50%;
  margin-bottom: 2rem;
}
.overlay__text {
  font-size: 1.6rem;
  text-align: center;
}
.overlay__close-button-wrapper {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  gap: 2rem;
}

.generic__list {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.generic__list li,
.generic__list p {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 1.3rem;
  line-height: 1.3;
}
.generic__list li.is-text,
.generic__list p.is-text {
  justify-content: start;
}
@media screen and (max-width: 750px) {
  .generic__list li,
  .generic__list p {
    font-size: 1.7rem;
  }
}
.generic__list li a,
.generic__list p a {
  display: inline;
}
.generic__list.is-bullet li,
.generic__list.is-bullet p {
  /* display: flow-root list-item; */
  position: relative;
  display: flex;
  justify-content: start;
  padding-left: 2rem;
}
.generic__list.is-bullet li::before,
.generic__list.is-bullet p::before {
  content: "●";
  position: absolute;
  left: 0;
}
.generic__list.is-astarisk li,
.generic__list.is-astarisk p {
  /* display: flow-root list-item; */
  position: relative;
  display: flex;
  justify-content: start;
  padding-left: 1.8rem;
}
.generic__list.is-astarisk li::before,
.generic__list.is-astarisk p::before {
  top: 0;
  left: 0;
  content: "※";
  position: absolute;
}
.generic__list_v {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 30rem;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .generic__list_v {
    gap: 1rem;
  }
}
.generic__list_v.is-important p {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 750px) {
  .generic__list_v.is-important p {
    font-size: 1.7rem;
  }
}
.generic__list_v li,
.generic__list_v p {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.3rem;
  gap: 0.5rem;
  width: auto;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .generic__list_v li,
  .generic__list_v p {
    font-size: 1.7rem;
  }
}

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