:root {
  --pink: #ff6f89;
}

.pinktxt {
  color: var(--pink);
}

.grtxt {
  color: #ff6f00;
}

.form dt {
  margin: 25px 0 10px;
}

input[type="text"],
input[type="email"],
select {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
}

.born {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.name div {
  margin: 10px 0;
}

.born div {
  width: 90%;
  margin-bottom: 10px;
}

.selectWrap {
  position: relative;
}

.selectWrap::after {
  content: "";
  position: absolute;
  background: #333;
  height: 10px;
  width: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: 20px;
  right: 10px;
  pointer-events: none;
}

input.input_short[type="text"],
select.input_short {
  width: 100%;
}

.chou input.input_short[type="text"] {
  width: 40%;
}

input[type="checkbox"] {
  display: none;
}

.check_label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
  /* font-weight: 700; */
}

.check_label::before {
  background: #fff;
  border: 1px solid #d9d9d9;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  left: 5px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
}

.check_label::after {
  border-right: 3px solid #ff6f00;
  border-bottom: 3px solid #ff6f00;
  content: "";
  display: block;
  width: 7px;
  height: 12px;
  left: 11px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
}

.check_label:has(input[type="checkbox"]:checked)::after {
  opacity: 1;
}

.radio_label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
  /* font-weight: 700; */
}

.radio_label::before {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  left: 5px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
}

.radio_label::after {
  background: #ff6f00;
  border-radius: 50%;
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  left: 9.5px;
  margin-top: -5px;
  opacity: 0;
  position: absolute;
  top: 50%;
}

.radio_label:has(input[type="checkbox"]:checked)::after {
  opacity: 1;
}

.place span,
.check_label span {
  word-break: break-all;
  white-space: normal;
}

.mukou5 dd,
.mukou6 dd,
.mukou7 dd,
.mukou8 dd {
  /* display: flex; */
  position: relative;
}

/* 約款 */
.terms_area {
  margin: 30px auto 0;
  border-radius: 10px;
  padding: 30px 15px;
  background-color: #fff3c2;
}

.alert_txt,
.terms_area_ttl {
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.p-terms_list .inputWrapper {
  width: 100%;
  margin: 20px 0;
}

.p-terms_item {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #d8d8d8;
  padding: 20px;
  font-weight: 700;
  position: relative;
}

.p-terms_item a {
  display: block;
  width: 100%;
  height: 100%;
}

.type_label {
  background-color: #ff6f00;
  position: absolute;
  right: 20px;
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 26px;
  padding: 0 10px;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  border-radius: 999px;
}

.denji {
  padding-top: 30px;
  font-size: 1.3rem;
}

.denji ul li {
  margin-top: 15px;
  display: flex;
}

#form_submit {
  text-align: center;
}

.form_submit_button {
  position: relative;
  display: inline-block;
  padding: 20px 0;
  background-color: var(--primary);
  border-radius: 99px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  width: 100%;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 100%;
  font-size: 16px;
}

.form_submit_button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  width: 23px;
  height: 23px;
  margin: auto;
  border-radius: 20px;
  background-color: #fff;
}

.form_submit_button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 21px;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
  box-sizing: border-box;
}

#mfp_overlay_inner table {
  width: 100%;
  margin-bottom: 30px;
  table-layout: fixed;
  font-size: 1.3rem;
  border-radius: 10px;
  overflow: hidden;
}

.plan_con tr td {
  color: #fff;
  background-color: #ff6f00;
  vertical-align: middle;
  border: 1px solid #fff;
  padding: 10px;
  font-weight: 700;
}

.plan_con tr td:last-child {
  background-color: #f5f5f5;
  vertical-align: middle;
  border: 1px solid #fff;
  padding: 10px;
  color: #333;
  font-weight: normal;
  width: 65%;
}

.keiyaku {
  margin: 0 auto;
  border-radius: 15px;
  padding: 30px 15px;
  background-color: #EBEBEB;
  color: #333;
  font-size: 1.3rem;
}

.keiyaku span {
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 30px;
}

#mfp_overlay_inner a {
  color: #ff6f00;
  text-decoration: underline;
}

/* 完了 */
.completion {
  background-color: #fff;
}

.head {
  background-color: #f6f6f6;
  padding: 30px 50px;
}

.head img {
  width: 180px;
}

.section__inner .complet_content {
  background-color: var(--lightgreen);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.section__inner .complet_content img {
  width: 90px;
  display: block;
  margin: 0 auto 30px;
}

.thanks_ttl {
  font-weight: 700;
  font-size: 2rem;
  margin: 0 auto 30px;
}

.tb.form_submit_button {
  width: 300px;
  /* margin:  auto; */
}

.nosp {
  display: none;
}
