@charset "UTF-8";
.min-cho {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
}

.red {
  color: #eb4646;
}

.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%;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
@media (max-width: 1180px) {
  .scroll_up {
    transition: 1s ease-in-out;
    opacity: 0;
  }
  .scroll_up.on {
    opacity: 1;
  }
}
.scroll_down {
  transform: translateY(30px);
  transition: 1.5s ease-in-out;
  opacity: 0;
}

.scroll_down.on {
  transform: translateY(0px);
  opacity: 1;
}

/*----------------------------
  scroll_left ｜左から出現
  ----------------------------*/
.scroll_left {
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/*----------------------------
  scroll_right ｜右から出現
  ----------------------------*/
.scroll_right {
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/*form*/
.form dt {
  width: 100%;
  margin-bottom: 1em;
  display: block;
}
.form dt span {
  vertical-align: middle;
  margin-left: 0.75em;
  color: #eb4646;
}
.form dt span::before {
  content: "※";
}
.form dd {
  width: 100%;
  margin-bottom: 2em;
  display: block;
}
.form dd.submit {
  width: 100%;
  margin-bottom: 0;
}
.form dd span {
  display: inline-block;
  padding: 0 4px;
}
.form dd.submit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .form dd {
    width: 100%;
    margin-bottom: 1em;
  }
}
.form input[type=text],
.form input[type=tel],
.form input[type=email],
.form input[type=date],
.form textarea {
  width: 100%;
  font-size: 110%;
  background-color: #eee;
  padding: 0.75em 1em;
  border-radius: 0.75em 1em;
  line-height: 1.5;
}
.form input[type=text]:focus,
.form input[type=tel]:focus,
.form input[type=email]:focus,
.form input[type=date]:focus,
.form textarea:focus {
  border-color: #29abc5;
}
@media (max-width: 767px) {
  .form input[type=text],
  .form input[type=tel],
  .form input[type=email],
  .form input[type=date],
  .form textarea {
    padding: 0.5em;
    border-radius: 0.5em;
  }
}
.form textarea {
  width: 100%;
}
.form input[type=submit] {
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.8 !important;
}
.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: #000000;
}
.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: 1em;
  font-weight: bold;
}
.form .checker p {
  font-size: 1em;
  margin-bottom: 0.7em;
  font-weight: normal;
}
.form .check {
  margin: 0;
}

/* チェックボックス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 #29abc5;
  border-bottom: 3px solid #29abc5;
  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: #29abc5;
  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: 768px) {
  .harf {
    width: 50% !important;
  }
}

@media (min-width: 768px) {
  .harfharf {
    width: 23% !important;
  }
}

@media (max-width: 767px) {
  .form dt {
    width: 100%;
    padding: 0;
    margin-bottom: 0.5em;
  }
  .submit {
    width: 100%;
    display: block;
    margin: auto;
  }
  .button {
    margin: 1em auto 0;
  }
}/*# sourceMappingURL=form.css.map */