@charset "UTF-8";
.noto-sans, .select_wrap select {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.roboto_condensed {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.roboto, ul.step li span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.lato {
  font-family: "Lato", sans-serif;
  font-weight: normal;
  font-style: normal;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

a.txt_link {
  text-decoration: underline;
  color: #009495;
}
a.txt_link:hover {
  text-decoration: none;
}

/* ▼▼▼ よくある質問
=====================================*/
.faq #main {
  padding-bottom: 0;
  overflow: visible;
}
.faq .subject {
  margin-bottom: 0;
}
.faq_text {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .faq_text {
    margin-bottom: 0;
  }
}
.faq_default {
  font-size: 1.25rem;
  text-align: center;
  color: #009495;
  font-weight: bold;
}

.filter {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 15px 30px;
  border-bottom: 1px solid #E2E2E2;
  padding: 0 35px 37px;
  font-size: 15px;
  font-weight: bold;
}
.filter > div {
  border-right: 1px solid #E2E2E2;
}
.filter ul {
  display: grid;
  grid-template-columns: 150px 150px 150px;
  gap: 15px 15px;
}
.filter input[type=checkbox] + .check-parts {
  padding-left: 30px;
}
.filter input[type=checkbox] + .check-parts::before {
  background: none;
  border: 2px solid #707070;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 22px;
  height: 22px;
  top: 1px;
}
.filter input[type=checkbox]:checked + .check-parts::before {
  background: #009495;
  border: 2px solid #707070;
}
.filter input[type=checkbox]:checked + .check-parts::after {
  border-width: 2px;
  left: 9px;
}
@media screen and (max-width: 767px) {
  .filter {
    display: block;
    padding: 0 0 37px;
    font-size: 14px;
  }
  .filter > div {
    border: none;
    border-bottom: 1px solid #E2E2E2;
    padding: 25px 20px 10px;
    margin-bottom: 15px;
  }
  .filter ul {
    grid-template-columns: 150px 150px;
    gap: 10px 25px;
    padding: 0 20px;
  }
  .filter input[type=checkbox] + .check-parts {
    padding-left: 25px;
  }
  .filter input[type=checkbox] + .check-parts::before {
    width: 20px;
    height: 20px;
    top: 2px;
  }
  .filter input[type=checkbox]:checked + .check-parts::after {
    top: 6px;
    left: 8px;
  }
}

.accordion_wrap {
  padding: 63px 0 0;
}
.accordion_wrap .accordion {
  width: min(100%, 850px);
  margin: 0 auto;
  font-weight: bold;
}
.accordion_wrap .accordion:not(:last-child) {
  margin-bottom: 60px;
}
.accordion_wrap .accordion dt, .accordion_wrap .accordion dd {
  padding: 20px 45px;
  word-break: break-all;
}
.accordion_wrap .accordion dt {
  background: #4DB4B5;
  padding-right: 50px;
  margin-top: 20px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  position: relative;
}
.accordion_wrap .accordion dt::before, .accordion_wrap .accordion dt::after {
  content: "";
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
.accordion_wrap .accordion dt::before {
  border-top: 2px solid currentColor;
  width: 17px;
  right: 24px;
}
.accordion_wrap .accordion dt.open::after {
  border-left: 2px solid currentColor;
  height: 17px;
  right: 31px;
}
.accordion_wrap .accordion dd {
  display: none;
  background: #E5F4F4;
  font-size: 18px;
}
.accordion_wrap .accordion dd > table {
  width: 100%;
  margin: 25px 0 10px;
  font-size: 12px;
}
.accordion_wrap .accordion dd > table tr th, .accordion_wrap .accordion dd > table tr td {
  padding: 5px;
  text-align: center;
  vertical-align: middle;
}
.accordion_wrap .accordion dd > table tr th:not(:last-of-type), .accordion_wrap .accordion dd > table tr td:not(:last-of-type) {
  border-right: 1px solid #009495;
}
.accordion_wrap .accordion dd > table tr th {
  background: #009495;
  color: #fff;
}
.accordion_wrap .accordion dd > table tr td {
  font-weight: normal;
  background: #fff;
}
.accordion_wrap .accordion dd > table tr:not(:last-of-type) td {
  border-bottom: 1px solid #009495;
}
.accordion_wrap .accordion dd a {
  text-decoration: underline;
}
.accordion_wrap .accordion dd a:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .accordion_wrap {
    padding: 40px 0 0;
  }
  .accordion_wrap .accordion:not(:last-child) {
    margin-bottom: 40px;
  }
  .accordion_wrap .accordion dt, .accordion_wrap .accordion dd {
    padding: 20px 20px;
  }
  .accordion_wrap .accordion dt {
    padding-right: 40px;
    margin-top: 10px;
    font-size: 18px;
  }
  .accordion_wrap .accordion dt::before {
    width: 17px;
    right: 15px;
  }
  .accordion_wrap .accordion dt.open::after {
    height: 17px;
    right: 22px;
  }
  .accordion_wrap .accordion dd {
    font-size: 16px;
  }
}

#form_area .sub_ttl {
  margin-bottom: 35px;
}
#form_area .sub_ttl span {
  font-size: 1rem;
  color: #666;
}
#form_area .bg_txt {
  background: #E5F4F4;
  border-radius: 20px;
  padding: 7px 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.04em;
}
#form_area .bg_txt:not(:first-of-type) {
  margin-top: 42px;
}
#form_area .contact_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: min(100%, 810px);
  gap: 15px;
  margin: 22px auto 0;
}
#form_area .contact_btn_wrap.centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  #form_area .contact_btn_wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#form_area .contact_btn_wrap > div {
  width: 260px;
}
#form_area .contact_btn_wrap > div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid currentColor;
  border-radius: 10px;
  height: 80px;
  color: #009495;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
}
#form_area .contact_btn_wrap > div a::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  top: 50%;
  right: 15px;
}

/* ▼▼▼ お問い合わせ
=====================================*/
.read {
  margin-bottom: 40px;
  line-height: 2.13;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .read {
    font-size: 14px;
  }
}

ul.step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 272px;
  margin: 0 auto;
  color: #009495;
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
ul.step::after {
  content: "";
  border: 1px solid currentColor;
  width: 100%;
  position: absolute;
  top: 28px;
  left: 0;
  z-index: -1;
}
ul.step li {
  text-align: center;
  font-weight: bold;
  line-height: 1;
}
ul.step li span {
  background: #fff;
  border: 1px solid #009495;
  border-radius: 50%;
  display: block;
  width: 56px;
  aspect-ratio: 1/1;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  font-size: 15px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.1em;
}
ul.step li.now span {
  background: #009495;
  color: #fff;
}
@media screen and (max-width: 767px) {
  ul.step {
    width: 227px;
    font-size: 12px;
  }
  ul.step::after {
    top: 24px;
  }
  ul.step li span {
    width: 47px;
    font-size: 12px;
  }
}

.notes_ttl {
  margin-top: 50px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.notes {
  font-size: 11px;
}

p.notes {
  margin-top: 13px;
}

.indent_list {
  margin: 0 -2.5em 0 auto;
}
.indent_list li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.indent_list li:not(:last-child) {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .indent_list {
    margin: 0;
  }
  .indent_list li {
    font-size: 13px;
  }
}

table {
  margin: 0 auto 80px;
  margin-bottom: 80px;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  table {
    font-size: 13px;
    margin-bottom: 55px;
  }
}

table.info {
  width: 100%;
  display: block;
  padding-top: 30px;
  overflow: hidden;
}
table.info tbody, table.info tr, table.info th, table.info td {
  display: block;
  width: 100%;
}
table.info tr.line td {
  border-bottom: 1px solid #ccc;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  table.info tr.line td {
    padding-bottom: 25px;
  }
}
table.info th, table.info td {
  line-height: 1.5;
  font-weight: normal;
  overflow: hidden;
}
table.info th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding-top: 40px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
table.info th .notes {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  font-weight: normal;
}
table.info th .notes em {
  font-weight: bold;
  border-bottom: 1px solid currentColor;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  table.info th {
    padding-top: 25px;
    gap: 5px 10px;
  }
}
table.info th::after {
  content: "任意";
  background: #919191;
  display: inline-block;
  vertical-align: middle;
  width: 34px;
  height: 15px;
  line-height: 15px;
  color: #fff;
  font-size: 9px;
  text-align: center;
  font-weight: 500;
}
table.info th.required::after {
  content: "必須";
  background: #D95C5C;
}
table.info th.top {
  vertical-align: top;
}
table.info td {
  padding-top: 12px;
}
table.info td input.w01, table.info td .select_wrap.w01 {
  width: 100%;
}
table.info td input.w02, table.info td .select_wrap.w02 {
  width: min(100%, 350px);
}
@media screen and (max-width: 767px) {
  table.info td input.w02, table.info td .select_wrap.w02 {
    margin-left: 0;
    margin-right: 0;
  }
}
table.info td input.w03, table.info td .select_wrap.w03 {
  width: 23%;
}
@media screen and (max-width: 767px) {
  table.info td input.w03, table.info td .select_wrap.w03 {
    width: 100%;
  }
}
table.info td a {
  text-decoration: underline;
}
table.info td a:hover {
  text-decoration: none;
}
table.info.confrm_info td {
  vertical-align: middle;
}
table.info .error_wrap {
  margin-top: 5px;
  color: #D95C5C;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  table.info .error_wrap {
    font-size: 11px;
  }
}
table.info .error input[type=text], table.info .error textarea {
  background: #FFEBEB;
  border-color: #D95C5C;
}
table.info .error input[type=text]::-webkit-input-placeholder, table.info .error textarea::-webkit-input-placeholder {
  color: #F7CECE;
}
table.info .error input[type=text]::-moz-placeholder, table.info .error textarea::-moz-placeholder {
  color: #F7CECE;
}
table.info .error input[type=text]:-ms-input-placeholder, table.info .error textarea:-ms-input-placeholder {
  color: #F7CECE;
}
table.info .error input[type=text]::-ms-input-placeholder, table.info .error textarea::-ms-input-placeholder {
  color: #F7CECE;
}
table.info .error input[type=text]::placeholder, table.info .error textarea::placeholder {
  color: #F7CECE;
}
table.info .date_time > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5px;
}
table.info .date_time > div:not(:last-of-type) {
  margin-bottom: 12px;
}
table.info .date_time > div span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
table.info .date_time > div input[type=text] {
  width: min(100%, 400px);
}

input[type=text], textarea {
  background: #F4F4F4;
  border: 1px solid #E2E2E2;
  border-radius: 5px;
  width: 100%;
  padding: 13px 17px;
  font-size: 16px;
  outline-offset: -1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=text]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #C3C3C3;
}
input[type=text]::-moz-placeholder, textarea::-moz-placeholder {
  color: #C3C3C3;
}
input[type=text]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #C3C3C3;
}
input[type=text]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #C3C3C3;
}
input[type=text]::placeholder, textarea::placeholder {
  color: #C3C3C3;
}

.notes_list {
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  .notes_list {
    font-size: 10px;
  }
}
.notes_list li span {
  font-weight: 700;
  border-bottom: 1px solid #000;
}

.inner_wrap {
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .inner_wrap {
    padding: 0 10px;
  }
}
.inner_wrap p {
  border-bottom: 1px solid #E2E2E2;
  padding-bottom: 8px;
  margin: 28px 0 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .inner_wrap p {
    padding-bottom: 5px;
    margin: 28px 0 15px;
  }
}
.inner_wrap .check_list {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr;
  gap: 8px 10px;
}
@media screen and (max-width: 767px) {
  .inner_wrap .check_list {
    display: block;
  }
}

.inner_grid {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 15px;
  width: 100%;
  padding-left: 20px;
}
.inner_grid dt {
  font-size: 14px;
  padding-top: 13px;
}
.inner_grid .notes {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .inner_grid {
    display: block;
    padding-left: 10px;
  }
  .inner_grid dt {
    font-size: 13px;
    padding: 0 0 8px;
  }
  .inner_grid dd:not(:last-of-type) {
    margin-bottom: 12px;
  }
  .inner_grid .notes {
    margin-top: 10px;
  }
}

/* チェックボックス、ラジオボタンカスタム */
.check_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 35px;
}
@media screen and (max-width: 767px) {
  .check_list {
    display: block;
  }
}
.check_list li {
  font-size: 14px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .check_list li {
    display: block;
    font-size: 12px;
    cursor: pointer;
  }
  .check_list li:not(:last-child) {
    margin-bottom: 12px;
  }
}
.check_list li label {
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .check_list li label {
    padding: 0;
  }
}
.check_list .notes {
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .check_list .notes {
    display: block;
    padding: 0;
    font-size: 10px;
  }
}
.check_list .flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 50px;
  width: 100%;
}
.check_list .flex_box label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.check_list .flex_box > div {
  width: 100%;
}
.check_list .flex_box > div p {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .check_list .flex_box {
    display: block;
  }
  .check_list .flex_box > div {
    padding-left: 25px;
    margin-top: 10px;
  }
}
.check_list.col3 {
  gap: 8px 10px;
}
.check_list.col3 li {
  width: 32%;
}
.check_list.col3 li.full {
  width: 100%;
}
.check_list.col3 li.full > div {
  margin-top: 10px;
}
.check_list.col3 .notes {
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .check_list.col3 .notes {
    display: inline-block;
  }
}
.check_list.gap_wide {
  gap: 8px 70px;
}
.check_list.gap_wide li.full {
  width: 100%;
}
.check_list.gap_wide li.full > div {
  margin-top: 10px;
}
.check_list.gap_wide .notes {
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .check_list.gap_wide .notes {
    display: inline-block;
  }
}

input[type=checkbox], input[type=radio] {
  display: none;
}
input[type=checkbox] + .check-parts, input[type=radio] + .check-parts {
  padding-left: 25px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
input[type=checkbox] + .check-parts::before, input[type=radio] + .check-parts::before {
  content: "";
  background: #F4F4F4;
  border: 1px solid #E2E2E2;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 3px;
  left: 0;
}
@media screen and (max-width: 767px) {
  input[type=checkbox] + .check-parts::before, input[type=radio] + .check-parts::before {
    top: 1px;
  }
}
input[type=checkbox] {
  color: #E5012D;
}
input[type=checkbox] + .check-parts::before {
  border-radius: 2px;
}
input[type=checkbox]:checked + .check-parts::before {
  border: none;
  background: #D95C5C;
  border: 1px solid #D95C5C;
}
input[type=checkbox]:checked + .check-parts::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 7px;
  width: 3px;
  height: 8px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  input[type=checkbox]:checked + .check-parts::after {
    top: 4px;
  }
}
input[type=radio] + .check-parts::before {
  border-radius: 50%;
}
input[type=radio]:checked + .check-parts::before {
  border: 1px solid #D95C5C;
}
input[type=radio]:checked + .check-parts::after {
  content: "";
  display: block;
  background: #D95C5C;
  position: absolute;
  top: 8px;
  left: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  input[type=radio]:checked + .check-parts::after {
    top: 6px;
  }
}

/* セレクトボックス */
.select_wrap {
  overflow: hidden;
  text-align: center;
  border: 1px solid #E2E2E2;
  border-radius: 5px;
  position: relative;
  width: 210px;
}
.select_wrap::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7.5px solid transparent;
  border-left: 7.5px solid transparent;
  border-top: 13px solid #4E4E4E;
  border-bottom: 0;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 10px;
  pointer-events: none;
}
.select_wrap select {
  width: 100%;
  cursor: pointer;
  text-overflow: ellipsis;
  padding: 13px 17px;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 15px;
  color: #000;
}
.select_wrap select::-ms-expand {
  display: none;
}

.upload_btn {
  display: block;
  margin-top: 24px;
}
.upload_btn:not(:first-of-type) {
  margin-top: 10px;
}
.upload_btn label {
  display: inline-block;
  border: 1px solid #F0F0F0;
  background-color: #F0F0F0;
  border-radius: 34px;
  min-width: 191px;
  max-width: 100%;
  word-break: break-all;
  padding: 8px 20px;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 14px;
  text-align: center;
  align-content: center;
  cursor: pointer;
}
.upload_btn label:hover {
  border-color: #DEE8E8;
  background: #DEE8E8;
}
.upload_btn label.select {
  border: 1px solid #E2E2E2;
  background: #fff;
  text-decoration: underline;
  color: #009495;
}
.upload_btn input[type=file] {
  display: none;
  padding: 9px 47px;
}
.upload_btn .clear_btn {
  display: none;
}
.upload_btn .clear_btn.active {
  display: inline-block;
  border: none;
  background: #F0F0F0;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
}
.upload_btn .clear_btn.active::before, .upload_btn .clear_btn.active::after {
  content: "";
  position: absolute;
  border-left: 1px solid #000;
  height: 9px;
  top: 50%;
  left: 52%;
}
.upload_btn .clear_btn.active::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.upload_btn .clear_btn.active::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.upload_btn .clear_btn.active:hover {
  background: #DEE8E8;
}
.upload_btn a.txt_link {
  display: block;
  word-break: break-all;
}

.btn_box {
  overflow: hidden;
  position: relative;
}
.btn_box .agree {
  margin-bottom: 40px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .btn_box .agree {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.btn_box .agree input[type=checkbox] + .check-parts::before {
  top: 5px;
}
@media screen and (max-width: 767px) {
  .btn_box .agree input[type=checkbox] + .check-parts::before {
    top: 3px;
  }
}
.btn_box .agree input[type=checkbox]:checked + .check-parts::after {
  top: 8px;
}
@media screen and (max-width: 767px) {
  .btn_box .agree input[type=checkbox]:checked + .check-parts::after {
    top: 6px;
  }
}
.btn_box #btnArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px 20px;
  text-align: center;
}
.btn_box #btnArea .btn {
  margin: 0;
  width: 219px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .btn_box #btnArea {
    width: 100%;
    margin: 0 auto;
  }
}
.btn_box #btnArea.disabled {
  opacity: 1;
}
.btn_box #btnArea.disabled .btn a {
  background: #CDD6D6;
  -webkit-transition: unset;
  transition: unset;
}
.btn_box #btnArea.disabled .btn a .arrow {
  background-image: url(https://fr.dailyservice.co.jp/assets/common/img/arrow_disabled.svg);
  -webkit-transition: unset;
  transition: unset;
}

/* ▼▼▼ 確認画面
=====================================*/
.conf_info {
  padding-top: 32px;
}
.conf_info th, .conf_info td {
  border-bottom: 1px solid #E2E2E2;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .conf_info th, .conf_info td {
    display: block;
    width: 100%;
  }
}
.conf_info th {
  color: #B8BDBE;
  width: 35%;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .conf_info th {
    border: none;
    padding-bottom: 3px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .conf_info td {
    padding-top: 0px;
  }
}

/* ▼▼▼ 完了画面
=====================================*/
.disc_list {
  width: min(100%, 600px);
  margin: 70px auto 0;
  font-size: 13px;
}
.disc_list li {
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.disc_list li::before {
  content: "・";
  padding-right: 0.3em;
}
.disc_list li:not(:last-child) {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .disc_list {
    margin-top: 55px;
  }
}

.box {
  background: #E5F7F7;
  width: min(100%, 850px);
  padding: 35px 20px;
  margin: 30px auto 68px;
}
@media screen and (max-width: 767px) {
  .box {
    margin: 40px auto 50px;
  }
}
.box p {
  text-align: center;
}

.grecaptcha-badge {
  bottom: 170px !important;
}

.add_txt {
  background: #fff;
  border: 1px solid #E2E2E2;
  border-radius: 5px;
  padding: 13px 17px;
}

/* ▼▼▼ 空き物件情報
=====================================*/
#cboxLoadedContent {
  margin: 0;
}

#cboxContent {
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
}

#cboxClose {
  top: 15px;
  right: 15px;
}
#cboxClose::before {
  content: "×";
  color: #000;
  font-size: 20px;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 0;
  left: 0;
  opacity: 1;
  text-indent: 0;
}
#cboxClose:hover {
  background-position: 0 0;
}
@media screen and (max-width: 767px) {
  #cboxClose {
    top: 10px;
    right: 10px;
  }
  #cboxClose::before {
    font-size: 18px;
  }
}

.cboxPhoto {
  width: 100% !important;
  height: auto !important;
}

.fz_14 {
  font-size: 14px;
}

.bg_box {
  background: #F2F9F9;
  border-radius: 10px;
  padding: 50px 20px 45px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 500;
}
.bg_box > div {
  width: min(100%, 730px);
  margin: 0 auto;
}
.bg_box .date {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.bg_box h2 {
  border-bottom: 1px solid #009495;
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.33;
}
.bg_box dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 15px;
  -webkit-box-pack: first baseline;
      -ms-flex-pack: first baseline;
          justify-content: first baseline;
  letter-spacing: 0.04em;
  word-break: break-all;
}
.bg_box dl:not(:last-of-type) dt, .bg_box dl:not(:last-of-type) dd {
  margin-bottom: 15px;
}
.bg_box dl dt span {
  display: block;
  background: #009495;
  border-radius: 5px;
  padding: 4px 0;
  color: #fff;
  text-align: center;
}
.bg_box dl dd {
  padding-top: 4px;
  line-height: 2;
}
.bg_box .img_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 20px;
  margin-top: 30px;
}
.bg_box .img_list li {
  width: 100px;
}
.bg_box .img_list li img {
  width: 100%;
}
.bg_box .btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .bg_box {
    padding: 30px 30px 35px;
    margin-top: 20px;
  }
  .bg_box:first-of-type {
    margin-top: 40px;
  }
  .bg_box .date {
    margin-bottom: 18px;
  }
  .bg_box h2 {
    padding-bottom: 12px;
    margin-bottom: 18px;
    font-size: 18px;
    letter-spacing: 0.05em;
  }
  .bg_box dl {
    display: block;
    letter-spacing: 0.04em;
  }
  .bg_box dl:not(:last-of-type) dd {
    margin-bottom: 20px;
  }
  .bg_box dl dt {
    margin: 0 !important;
    width: 100px;
    font-size: 12px;
  }
  .bg_box dl dt span {
    padding: 3px 0;
  }
  .bg_box dl dd {
    padding-top: 8px;
  }
  .bg_box .img_list {
    gap: 15px;
    margin-top: 20px;
  }
  .bg_box .img_list li {
    width: calc(50% - 7.5px);
  }
}