@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 {
  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: #f4ae15;
  float: right;
}
.form dd {
  padding: 20px;
  width: 65%;
  background-color: #fff;
  margin-bottom: 2px;
}
.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: #ff1d25;
}
.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: 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: 16px;
  padding: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "M PLUS Rounded 1c";
}
.submit input {
  border: 1px solid #ff1d25;
  width: 100%;
  max-width: 360px;
  padding: 0.7em 1em;
  margin-left: 14px;
  margin-right: 14px;
  color: #ff1d25;
  border-radius: 1em;
  font-family: fot-seurat-pron, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.submit input:hover {
  background-color: #ff1d25;
  color: #fff;
}

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

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

/*PC用css*/
/*SP用css*/
@media print, screen and (max-width: 768px) {
  .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.5em 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;
  }
}/*# sourceMappingURL=form.css.map */