* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  color: #333;
}

body.form .page {
  background: white;
  max-width: 600px;
  margin: 0 auto;
  min-height: 100vh;
}

body.form .page.mail {
  max-width: initial;
  padding: 0 10%;
}

.imgs_ctn {
  margin-bottom: 70px;
}

.imgs_ctn img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
}

h1 {
  font-size: 1.2rem;
  margin: 2rem 0 2rem;
  text-align: center;
  color: #333;
  line-height: 1.5;
}

.process {
  margin: 0.5rem 1rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

.process div {
  margin: 0;
  padding: 0.1rem 0 0;
  border: solid 1px #ccc;
  border-right: none;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #999;
}

.process div.active {
  background: #E67C5C;
  color: white;
  border: none;
}

.process div.past {
  background: #bbb;
  color: white;
}

.process div:last-child {
  border-right: solid 1px #ccc;
}

section.forms {
  margin: 0 1rem 4rem;
}

section.forms .event_description {
  padding: 10px 0 30px;
}

section.forms .event_description p {
  line-height: 1.4;
  font-size: 0.9rem;
}

@media screen and (max-width: 480px) {
  section.forms .event_description p .pc_only {
    display: none;
  }
}

section.forms .event_description p .sp_only {
  display: none;
}

@media screen and (max-width: 480px) {
  section.forms .event_description p .sp_only {
    display: block;
  }
}

section.forms .back_color {
  background: #F9E5E0;
  border-radius: 5px;
  margin: 2rem 0 0.5rem;
  padding: 0.5rem 0.5rem;
}

section.forms .back_color.no_margin {
  margin-top: 10px;
}

section.forms h2 {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}

section.forms h2.required::after {
  content: "*";
  color: #f00;
  margin-top: 0.2rem;
  margin-left: 0.3rem;
  font-size: 2rem;
  line-height: 0.3rem;
  vertical-align: middle;
  font-weight: normal;
}

section.forms p {
  margin: 0;
  font-size: 0.9rem;
}

section.forms input {
  font-size: 1rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid #aaa;
  border-radius: 5px;
}

section.forms input::-webkit-input-placeholder {
  color: #999;
}

section.forms input:-ms-input-placeholder {
  color: #999;
}

section.forms input::-ms-input-placeholder {
  color: #999;
}

section.forms input::placeholder {
  color: #999;
}

section.forms input[type=text],
section.forms input[type=tel],
section.forms input[type=email] {
  height: 40px;
}

section.forms input[type=radio],
section.forms input[type=checkbox] {
  cursor: pointer;
}

section.forms select {
  margin-right: 5px;
  font-size: 1rem;
  padding: 0.5rem 0.5rem;
  border: 1px solid #aaa;
  border-radius: 5px;
  cursor: pointer;
  height: 38px;
  max-width: 100%;
}

section.forms label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border: 1px solid #aaa;
  border-radius: 5px;
}

section.forms textarea {
  width: 100%;
  font-size: 1rem;
  padding: 0.5rem 0.5rem;
  border: 1px solid #aaa;
  border-radius: 5px;
  line-height: 1.3;
}

section.forms textarea::-webkit-input-placeholder {
  color: #999;
}

section.forms textarea:-ms-input-placeholder {
  color: #999;
}

section.forms textarea::-ms-input-placeholder {
  color: #999;
}

section.forms textarea::placeholder {
  color: #999;
}

section.forms .msg {
  line-height: 1.3;
}

section.forms .note {
  margin: 0.5rem 0 0.3rem;
  font-size: 1rem;
  line-height: 1.3;
}

section.forms .thx_msg {
  font-size: 1.1rem;
  margin: 3rem 0.3rem;
  line-height: 1.8;
}

section.forms .alert_msg {
  color: #f00;
}

section.forms .notice {
  font-size: 0.9rem;
}

section.forms .notice span {
  color: #f00;
  font-size: 2rem;
  line-height: 0.3rem;
  vertical-align: middle;
}

section.forms .formSingle {
  width: 100%;
}

section.forms .formSingle input[type=text],
section.forms .formSingle input[type=tel],
section.forms .formSingle input[type=email] {
  width: 100%;
}

section.forms .formPair input[type=text] {
  width: 48%;
}

section.forms .formPair input:first-child {
  display: inline-block;
  margin-right: 4%;
}

section.forms .formFrex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem;
}

section.forms .formGrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
  gap: 8px 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 480px) {
  section.forms .formGrid {
    display: block;
  }
}

section.forms .formGrid div:nth-child(odd) {
  padding: 0 0.5rem 0 0;
  text-align: right;
}

@media screen and (max-width: 480px) {
  section.forms .formGrid div:nth-child(odd) {
    text-align: left;
    margin-top: 5px;
  }
}

section.forms .formGrid input[type=text],
section.forms .formGrid input[type=tel],
section.forms .formGrid input[type=email] {
  width: 100%;
}

section.forms .formGrid .formPair input[type=text] {
  width: 48%;
}

section.forms .formGrid .height_ctn input[type=text] {
  width: 80px;
  margin-right: 5px;
}

section.forms #event_date_container,
section.forms #child1_container,
section.forms #child2_container,
section.forms #child3_container,
section.forms #member_info_container {
  overflow: hidden;
}

section.forms #event_date_container.visible,
section.forms #child1_container.visible,
section.forms #child2_container.visible,
section.forms #child3_container.visible,
section.forms #member_info_container.visible {
  height: auto;
}

section.forms #event_date_container.hidden,
section.forms #child1_container.hidden,
section.forms #child2_container.hidden,
section.forms #child3_container.hidden,
section.forms #member_info_container.hidden {
  height: 0rem;
}

section.forms #num_container label,
section.forms #child1_container label,
section.forms #child2_container label,
section.forms #child3_container label,
section.forms #ismember_container label {
  min-width: 120px;
}

section.forms #num_container label {
  margin-bottom: 0.5rem;
}

section.forms #via_container .via_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

@media screen and (max-width: 480px) {
  section.forms #via_container .via_grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

section.forms #via_container .via_grid label {
  width: 100%;
}

section.forms .btn {
  margin: 3rem 0 0;
}

section.forms .btn .form_proceed, section.forms .btn .form_reject {
  display: block;
  margin: 1rem 0;
  padding: 1.2rem 0.5rem;
  width: 100%;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  border-radius: 0.3rem;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

section.forms .btn .form_proceed:hover, section.forms .btn .form_reject:hover {
  opacity: 0.9;
}

section.forms .btn .form_proceed {
  background: #E67C5C;
  color: white;
}

section.forms .btn .form_reject {
  background: #999;
  color: white;
}

section.forms #cancel_msg {
  padding-top: 5px;
}

footer {
  height: 1.2rem;
}

footer .copyright {
  width: 100vw;
  position: fixed;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  line-height: 1.2rem;
  background: #333;
  color: white;
  text-align: center;
}
/*# sourceMappingURL=page-form.css.map */