@charset "UTF-8";
.youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*form*/
#form {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: block;
  padding: max(1.5em, 30px);
  margin: auto;
  margin-top: 40px;
  color: #1a1a1a;
  border-radius: 20px;
  z-index: 4;
}
@media (max-width: 480px) {
  #form {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
  }
}
#form h4 {
  font-size: 20px;
  margin-top: 20px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 480px) {
  #form h4 {
    font-size: 18px;
  }
}
#form h5 {
  font-size: 16px;
  margin-top: 20px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 480px) {
  #form h5 {
    font-size: 14px;
  }
}

.form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.form dt span {
  font-size: 90%;
  line-height: 1;
  text-align: center;
  display: block;
  width: 3em;
  padding: 0.3em;
  margin-left: 0.75em;
  background-color: #fff;
  color: #FF931E;
  float: right;
}
.form dd {
  padding: 20px;
  width: 65%;
  background-color: #fff;
}
.form dd p {
  font-size: 13px;
}
#contents section .form dd p {
  margin-bottom: 10px;
}
#contents section .form dd p:last-of-type {
  margin-bottom: 0;
}
.form dd span {
  display: inline-block;
  padding: 0 4px;
}
.form input[type=text],
.form input[type=tel],
.form input[type=email],
.form textarea {
  width: 100%;
  background-color: #fff;
  padding: 0.4em;
  line-height: 1.5;
  border-radius: 0;
  border: 1px solid #ccc;
}
.form input[type=text]:focus,
.form input[type=tel]:focus,
.form input[type=email]:focus,
.form textarea:focus {
  border-color: #29ABE2;
}
.form .cp_ipselect {
  margin: 10px 0;
  text-align: center;
}
.form .cp_ipselect select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.form .cp_ipselect select::-ms-expand {
  display: none;
}
.form .cp_ipselect.cp_sl01 {
  width: 50%;
  position: relative;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: #ffffff;
}
.form .cp_ipselect.cp_sl01::before {
  position: absolute;
  top: 0.8em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}
.form .cp_ipselect.cp_sl01 select {
  padding: 8px 38px 8px 8px;
  color: #1a1a1a;
}
.form li {
  display: inline-block;
  margin-right: 2em;
}
.form .checker {
  background-color: #F2F2F2;
  padding: 20px;
  border-radius: 6px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
}
.form .checker p {
  font-size: 1rem;
  margin-bottom: 0.7em;
  font-weight: normal;
}
.form .check {
  margin: 0;
}

.submit {
  width: 100%;
  font-size: 20px;
  padding-top: 1em;
  padding-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.submit input {
  background-color: #00A99D;
  border: 2px solid #00A99D;
  width: 100%;
  max-width: 420px;
  padding: 0.7em 1em;
  margin-left: 14px;
  margin-right: 14px;
  color: #fff;
  border-radius: 1.5em;
  font-family: "zen-maru-gothic", sans-serif !important;
  line-height: 1;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.submit input:hover {
  background-color: #fff;
  color: #00A99D;
}

/* チェックボックス01 */
.check {
  margin: 3em auto 1.5em;
  text-align: center;
}

input[type=checkbox] {
  opacity: 0;
  z-index: -1;
  position: absolute;
}

.checkbox01 {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 3px 30px;
  position: relative;
  width: auto;
}

.checkbox01::before {
  background: #fff;
  border: 1px solid #ccc;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 45%;
  width: 16px;
}

.checkbox01::after {
  border-right: 3px solid #29ABE2;
  border-bottom: 3px solid #29ABE2;
  content: "";
  display: block;
  height: 9px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 45%;
  transform: rotate(45deg);
  width: 5px;
}

input[type=checkbox]:checked + .checkbox01::after {
  opacity: 1;
}

input[type=checkbox]:checked + label {
  background: none !important;
}

/* ラジオボタン01 */
input[type=radio] {
  opacity: 0;
  z-index: -1;
  position: absolute;
}

.radio01 {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}

.radio01::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 45%;
  width: 16px;
}

.radio01::after {
  background: #29ABE2;
  border-radius: 50%;
  content: "";
  display: block;
  height: 10px;
  left: 9px;
  margin-top: -4px;
  opacity: 0;
  position: absolute;
  top: 45%;
  width: 10px;
}

input[type=radio]:checked + .radio01::after {
  opacity: 1;
}

.radio01 + input {
  margin-left: -26px;
}
.radio01 + input + span {
  margin-right: 30px;
}

@media (min-width: 769px) {
  .harf {
    width: 50% !important;
  }
}
@media (max-width: 480px) {
  .harf {
    width: 100% !important;
  }
}

@media (min-width: 769px) {
  .harfharf {
    width: 23% !important;
  }
}
@media (max-width: 480px) {
  .harfharf {
    width: 40% !important;
  }
}

/*PC用css*/
/*SP用css*/
@media print, screen and (max-width: 480px) {
  .form dt {
    width: 100%;
    padding: 1em;
    margin-bottom: 0;
    background-color: #F2F2F2;
  }
  .form dd {
    width: 100%;
    padding: 1em;
  }
  .submit {
    width: 100%;
    display: block;
    margin: auto;
  }
  .submit input,
  .button {
    width: 100%;
    padding: 0.7em 1em;
    margin: 0;
    margin-bottom: 1em;
    border-radius: 30px;
    font-size: 16px;
  }
  .button {
    margin: 1em auto 0;
  }
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea {
    background-color: #fff;
  }
}
dl.table {
  width: 100%;
  margin-top: 2em;
  border-bottom: 1px solid #29ABE2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
dl.table dt {
  width: 30%;
  background-color: #29ABE2;
  color: #fff;
  font-weight: bold;
  border-left: 1px solid #29ABE2;
  border-bottom: 1px solid #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
}
dl.table dt:last-of-type {
  border-bottom: none;
}
dl.table dd {
  width: 70%;
  text-align: left;
  border-top: 1px solid #29ABE2;
  border-right: 1px solid #29ABE2;
}
dl.table dt,
dl.table dd {
  padding: 1em;
}
@media (max-width: 480px) {
  dl.table dt,
  dl.table dd {
    width: 100%;
    border: none;
  }
}/*# sourceMappingURL=form.css.map */