@charset "UTF-8";
/* ▼▼▼ お問い合わせ
=====================================*/
ul.step {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
  width: 100%;
  max-width: 750px;
  margin: 0 auto 40px;
}
ul.step li {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 45px;
  background: #F4F4F4;
  border-radius: 10px;
  text-align: center;
  line-height: 1.2;
  position: relative;
}
@media screen and (min-width: 769px) {
  ul.step li {
    height: 55px;
  }
}
ul.step li.now {
  background: #EA85A0;
  color: #fff;
}
ul.step li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent #CCCCCC;
  position: absolute;
  top: 50%;
  right: -12%;
  transform: translate(0%, -50%);
}

.form_read_wrap {
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .form_read_wrap {
    margin-bottom: 60px;
  }
}
.form_read_kome {
  margin-top: 20px;
  color: #BE2D54;
}
.form_zip_wrap {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-bottom: 10px;
}
.form_zip_block {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 10px;
}
.form_zip1 {
  flex: 0 0 140px;
  max-width: 140px;
  width: 140px;
}
.form_zip2 {
  flex: 0 0 180px;
  max-width: 180px;
  width: 180px;
}
.form_zip_btn {
  /* 住所自動入力ボタン */
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex: 0 0 170px;
  max-width: 170px;
  width: 170px;
  height: 40px;
  border-radius: 5px;
  background: #4D4D4D;
  color: #FFF;
  font-size: 12px;
  position: relative;
  cursor: pointer;
}
.form_zip_btn::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}

table.form_table {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 50px;
  font-size: 16px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  table.form_table {
    margin-bottom: 30px;
  }
}
table.form_table tr:not(:last-child) th, table.form_table tr:not(:last-child) td {
  border-bottom: 1px solid #D5D5D5;
}
table.form_table th, table.form_table td {
  line-height: 1.5;
  font-weight: normal;
  vertical-align: middle;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  table.form_table th, table.form_table td {
    display: block;
    padding: 25px 0;
    font-size: 16px;
  }
}
table.form_table th {
  width: 25.5%;
  position: relative;
  padding: 30px 10px;
}
@media screen and (max-width: 768px) {
  table.form_table th {
    width: 100%;
    padding: 10px 10px;
    border: none !important;
  }
}
table.form_table th::after {
  content: "＊必須";
  margin-left: 10px;
  color: #BE2D54;
  font-size: 10px;
  font-weight: bold;
}
table.form_table th.no::after {
  display: none;
}
table.form_table th.top {
  vertical-align: top;
}
table.form_table td {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  table.form_table td {
    padding: 0 0 15px;
  }
}
table.form_table td.list {
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  table.form_table td.list {
    padding: 0 0 20px;
  }
}
table.form_table td .kome {
  display: block;
  font-size: 12px;
}
table.form_table td input, table.form_table td textarea {
  border: 1px solid #D5D5D5;
  border-radius: 5px;
  padding: 15px 10px;
  background: #FDF4F4;
}
table.form_table td input + .kome, table.form_table td textarea + .kome {
  margin-top: 10px;
}
table.form_table td input.w01, table.form_table td .select_wrap.w01 {
  width: 100%;
}
table.form_table td input.w02, table.form_table td .select_wrap.w02 {
  width: 44%;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 768px) {
  table.form_table td input.w02, table.form_table td .select_wrap.w02 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
table.form_table td input.w03, table.form_table td .select_wrap.w03 {
  width: 23%;
}
@media screen and (max-width: 768px) {
  table.form_table td input.w03, table.form_table td .select_wrap.w03 {
    width: 100%;
  }
}
table.form_table td .check_list li {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 5px 0;
}
@media screen and (max-width: 768px) {
  table.form_table td .check_list li {
    display: block;
    margin: 0 0 10px 0;
    float: none;
    font-size: 16px;
    cursor: pointer;
  }
}
table.form_table td .check_list li:last-child {
  margin-right: 0;
}
table.form_table td .check_list li label {
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  table.form_table td .check_list li label {
    padding: 0;
  }
}
table.form_table td .select_wrap {
  overflow: hidden;
  text-align: center;
  background: #FAFAFA;
  border: 1px solid #ccc;
  border-radius: 5px;
  position: relative;
}
table.form_table td .select_wrap:not(:last-child) {
  margin-bottom: 20px;
}
table.form_table td .select_wrap::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 8px);
  right: 10px;
  pointer-events: none;
}
table.form_table td .select_wrap select {
  width: 100%;
  cursor: pointer;
  text-overflow: ellipsis;
  padding: 18px 15px;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
}
table.form_table td .select_wrap select::-ms-expand {
  display: none;
}
table.form_table td textarea {
  height: auto;
  width: 100%;
  padding: 15px;
  font-size: 16px;
}
table.form_table td textarea::placeholder {
  color: #999;
}
@media screen and (max-width: 768px) {
  table.form_table td textarea {
    padding: 15px 10px;
  }
}
table.form_table.confirm_info td {
  vertical-align: middle;
}
table.form_table div p:first-child {
  margin-bottom: 10px;
}

.error_wrap {
  color: #F00;
}
.error_wrap.error_recap {
  margin: 50px auto;
  font-weight: 500;
  text-align: center;
}

.postal_code {
  margin-bottom: 20px;
}
.postal_code li {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

/* チェックボックス、ラジオボタンカスタム */
input[type=checkbox], input[type=radio] {
  display: none;
}
input[type=checkbox] + .check-parts, input[type=radio] + .check-parts {
  padding-left: 25px;
  position: relative;
  margin-right: 5px;
  cursor: pointer;
  display: inline-block;
}
input[type=checkbox] + .check-parts::before, input[type=radio] + .check-parts::before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  position: absolute;
  top: 4px;
  left: 0;
}
input[type=checkbox]:checked + .check-parts, input[type=radio]:checked + .check-parts {
  color: #BE2D54;
}
input[type=checkbox] {
  color: #BE2D54;
}
input[type=checkbox] + .check-parts::before {
  border-radius: 4px;
}
input[type=checkbox]:checked + .check-parts::before {
  border: none;
  background: #BE2D54;
  border: 1px solid #BE2D54;
}
input[type=checkbox]:checked + .check-parts::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 6px;
  width: 3px;
  height: 8px;
  transform: rotate(40deg);
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
input[type=radio] + .check-parts::before {
  border-radius: 50%;
}
input[type=radio]:checked + .check-parts::before {
  border: 1px solid #BE2D54;
}
input[type=radio]:checked + .check-parts::after {
  content: "";
  display: block;
  background: #BE2D54;
  position: absolute;
  top: 9px;
  left: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

/* ▼ プライバシー */
.privacy_read {
  margin-bottom: 10px;
  font-size: 16px;
}

#privacy {
  height: 210px;
  border: 1px solid #CCD1D5;
  padding: 15px 15px 0 15px;
  margin-bottom: 20px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  #privacy {
    height: 150px;
  }
}
#privacy .title {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 17px;
}
#privacy dl.privacy {
  margin-bottom: 15px;
}
#privacy ol.privacy {
  margin-bottom: 20px;
  overflow: hidden;
  counter-reset: number;
}
#privacy ol.privacy > li {
  margin-bottom: 15px;
  counter-increment: number;
  padding-left: 1.5em;
  text-indent: -1.5em;
  font-size: 15px;
}
#privacy ol.privacy:before {
  content: counter(number, decimal) ".";
  margin-right: 0.5em;
}
#privacy ol.privacy:last-child {
  margin: 0;
}
#privacy ol.privacy li .privacy_care {
  margin: 5px 0 0 1.5em;
}
#privacy .supervisor {
  overflow: hidden;
  margin-bottom: 20px;
}
#privacy .supervisor dt {
  font-weight: bold;
}

.btn_box {
  overflow: hidden;
  position: relative;
}
.btn_box .agree {
  margin-bottom: 50px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .btn_box .agree {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.btn_box .agree a {
  color: #BE2D54;
  text-decoration: underline;
}
.btn_box ul.btn {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 2%;
}
@media screen and (max-width: 768px) {
  .btn_box ul.btn {
    width: 100%;
    margin: 0 auto;
  }
}
.btn_box ul.btn li {
  flex: 0 0 300px;
  width: 300px;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .btn_box ul.btn li {
    width: 100%;
  }
}
.btn_box ul.btn li a, .btn_box ul.btn li button {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  border-radius: 40px;
  border: none;
  background: #BE2D54;
  color: #fff;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn_box ul.btn li a, .btn_box ul.btn li button {
    height: 65px;
    border-radius: 33px;
  }
}
.btn_box ul.btn li a:hover, .btn_box ul.btn li button:hover {
  opacity: 0.6;
}
.btn_box ul.btn li a::after, .btn_box ul.btn li button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}
.btn_box ul.btn li a.back, .btn_box ul.btn li button.back {
  background: #999;
}
.btn_box ul.btn li a.back::after, .btn_box ul.btn li button.back::after {
  top: 50%;
  right: auto;
  left: 20px;
  transform: translateY(-50%) rotate(225deg);
}