@charset "UTF-8";
/*===================================
  
  フォーム設定

===================================*/
/* input設定 */
input, textarea {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

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

input[type=submit], button {
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}

input[type="text"].input_text,
input[type="tel"].input_text,
input[type="email"].input_text {
  width: 60%;
  padding: 10px 15px;
  border: 1px solid #ccc;
}

@media screen and (max-width: 991px) {
  input[type="text"].input_text,
  input[type="tel"].input_text,
  input[type="email"].input_text {
    width: 100%;
  }
}

.input_text.input_s {
  width: 40%;
}

/* input */
input.input_text {
  height: 40px;
  line-height: 40px;
}

/* textarea */
textarea.input_text {
  width: 100%;
  height: 200px;
}

/* select設定 */
.select {
  position: relative;
  border: 1px solid #ccc;
  overflow: hidden;
  width: 40%;
  height: 40px;
  text-align: center;
}

.form_tbl_zip + .select {
  margin-bottom: 10px;
}

.select > select {
  width: 100%;
  height: 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;
  appearance: none;
  padding: 8px 38px 8px 8px;
}

.select::after {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #4C4C4C;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .input_text, .select {
    font-size: 16px;
    width: 100%;
  }
  .input_text.input_s {
    width: 100%;
  }
}

/* プレースフォルダ設定 */
::-webkit-input-placeholder {
  color: #9f9f9f;
}

:-ms-input-placeholder {
  color: #9f9f9f;
}

::placeholder {
  color: #9f9f9f;
}

input:focus::placeholder {
  color: transparent !important;
  transition: .1s;
}

input:focus::-webkit-input-placeholder {
  color: transparent !important;
  transition: .1s;
}

input:focus:-moz-placeholder {
  color: transparent !important;
  transition: .1s;
}

input:focus::-moz-placeholder {
  color: transparent !important;
  transition: .1s;
}

/* table設定 */
.form_tbl {
  padding: 0;
  width: 100%;
  border-top: 1px solid #ccc;
  table-layout: fixed;
  word-wrap: break-word;
}

.form_tbl th, .form_tbl td {
  font-size: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
  padding: 25px;
  line-height: 1.6;
}

.form_tbl th {
  width: 250px;
  background: #F5F5F3;
}

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

.form_tbl_item > span {
  font-weight: bold;
}

.form_tbl_item > span > b {
  font-weight: normal;
  display: block;
}

.form_tbl_hisu {
  color: #fff;
  font-size: 12px;
  line-height: 1;
  background: #b20000;
  display: inline-block;
  padding: 5px 8px;
}

.form_tbl_caution {
  font-size: 1.2rem;
  padding-left: 10px;
}

.form_tbl_zip {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.form_tbl_zip > input {
  width: 30%;
}

.form_tbl_zip > button {
  font-size: 1.4rem;
  height: 40px;
  padding: 0 10px;
  margin-left: 10px;
  border-radius: 4px;
  border: 1px solid #999;
  background: #F0EFEF;
  cursor: pointer;
}

.form_tbl_zip > button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.form_tbl_text {
  margin-top: 10px;
}

.form_tbl_question > p {
  margin-bottom: 10px;
}

.form_block .form_tbl:first-of-type {
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .form_tbl th, .form_tbl td {
    font-size: 16px;
    display: block;
    padding: 18px 0 25px;
  }
  .form_tbl th {
    width: 100%;
    border-bottom: none;
    padding: 15px 20px;
  }
  .form_tbl p {
    font-size: 12px;
  }
  .form_tbl_item > span > b {
    font-size: 1.1rem;
    padding-left: 5px;
    display: inline-block;
  }
  .form_tbl_hisu {
    font-size: 11px;
  }
  .form_tbl_zip {
    flex-wrap: wrap;
  }
  .form_tbl_zip > input {
    width: 50%;
  }
  .form_tbl_zip > button {
    font-size: 1.1rem;
    height: 40px;
    line-height: 1.3;
  }
  .form_tbl_caution {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding-left: 0;
  }
}

/* checkbox01 */
.check_list01 {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin-top: -20px;
}

.check_list01 > label > input {
  position: absolute;
}

.check_list01 > label > span {
  margin: 20px 20px 0 0;
  border: 1px solid #01BFF2;
  border-radius: 4px;
  padding: 13px 15px 13px 40px;
  display: inline-block;
  position: relative;
  font-weight: bold;
  color: #444;
  letter-spacing: 0.05em;
}

.check_list01 > label > span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #01BFF2;
}

.check_list01 > label > span::after {
  content: '';
  position: absolute;
  opacity: 0;
  width: 7px;
  height: 11px;
  top: 50%;
  margin-top: -2px;
  left: 16px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #bf0005;
  border-bottom: 2px solid #bf0005;
}

.check_list01 > label > input:checked + span {
  background: #EEFBFE;
}

.check_list01 > label > input:checked + span::after {
  opacity: 1;
}

.check_list01 > label > input:focus + span::before {
  outline: 0;
  box-shadow: 0 0 0 3px #ffe3e3;
}

/* checkbox02 */
.check_list02 {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin-top: -20px;
}

.check_list02 > label > input {
  position: absolute;
}

.check_list02 > label > span {
  margin: 20px 20px 0 0;
  border-radius: 4px;
  padding: 0 15px 0 40px;
  display: inline-block;
  position: relative;
  color: #444;
  letter-spacing: 0.05em;
}

.check_list02 > label > span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #01BFF2;
}

.check_list02 > label > span::after {
  content: '';
  position: absolute;
  opacity: 0;
  width: 7px;
  height: 11px;
  top: 50%;
  margin-top: -2px;
  left: 16px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #bf0005;
  border-bottom: 2px solid #bf0005;
}

.check_list02 > label > input:checked + span::after {
  opacity: 1;
}

.check_list02 > label > input:focus + span::before {
  outline: 0;
  box-shadow: 0 0 0 3px #ffe3e3;
}

/* radio01 */
.radio_list01 {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin-top: -20px;
}

.radio_list01 > label > input {
  position: absolute;
}

.radio_list01 > label > span {
  margin: 20px 20px 0 0;
  border: 1px solid #01BFF2;
  border-radius: 4px;
  padding: 13px 15px 13px 40px;
  display: inline-block;
  position: relative;
  font-weight: bold;
  color: #444;
  letter-spacing: 0.05em;
}

.radio_list01 > label > span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #01BFF2;
}

.radio_list01 > label > span::after {
  content: '';
  position: absolute;
  opacity: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 15px;
  background: #FF0000;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.radio_list01 > label > input:checked + span {
  background: #EEFBFE;
}

.radio_list01 > label > input:checked + span::after {
  opacity: 1;
}

.radio_list01 > label > input:focus + span::before {
  outline: 0;
  box-shadow: 0 0 0 3px #ffe3e3;
}

/* radio02 */
.radio_list02 {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin-top: -20px;
}

.radio_list02 > label > input {
  position: absolute;
}

.radio_list02 > label > span {
  margin: 20px 20px 0 0;
  border-radius: 4px;
  padding: 0 15px 0 40px;
  display: inline-block;
  position: relative;
  color: #444;
  letter-spacing: 0.05em;
}

.radio_list02 > label > span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #01BFF2;
}

.radio_list02 > label > span::after {
  content: '';
  position: absolute;
  opacity: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 15px;
  background: #FF0000;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.radio_list02 > label > input:checked + span::after {
  opacity: 1;
}

.radio_list02 > label > input:focus + span::before {
  outline: 0;
  box-shadow: 0 0 0 3px #ffe3e3;
}

@media screen and (max-width: 991px) {
  .check_list01,
  .check_list02,
  .radio_list01,
  .radio_list02 {
    margin-top: -15px;
  }
  .check_list01 > label,
  .check_list02 > label,
  .radio_list01 > label,
  .radio_list02 > label {
    width: 100%;
  }
  .check_list01 > label > span,
  .check_list02 > label > span,
  .radio_list01 > label > span,
  .radio_list02 > label > span {
    font-size: 1.2rem;
    margin: 15px 20px 0 0;
    display: block;
  }
}

/* 送信 */
.form_send {
  margin-top: 40px;
}

.form_send_text {
  text-align: center;
}

.form_send_btn {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
  margin: auto;
}

.form_send_btn > li {
  width: 48%;
}

.form_send_btn > li > input {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .form_send {
    margin-top: 30px;
    padding-bottom: 30px;
  }
}

/* btn */
.btn_confirm,
.btn_back,
.btn_top {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: 0.1em;
  margin: 60px auto 0;
  height: 65px;
  padding: 0;
  text-align: center;
  max-width: 280px;
  width: 80%;
  background: #b50029;
  border: 1px solid #b50029 !important;
  box-shadow: 0 3px 0 0 #d2afb7;
  border-radius: 5px;
  letter-spacing: 0.1em;
}

.btn_back {
  background: #aaa;
}

@media screen and (min-width: 992px) {
  .btn_confirm,
  .btn_back,
  .btn_top {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn_confirm:hover,
  .btn_back:hover,
  .btn_top:hover {
    background: #fff;
    color: #b50029 !important;
  }
}

@media screen and (max-width: 991px) {
  .btn_confirm,
  .btn_back,
  .btn_top {
    margin: 30px auto 0;
    font-size: 16px;
    width: 75%;
    padding: 10px 0;
    height: 50px;
  }
}

/* error */
.wpcf7-not-valid-tip {
  color: #cc0000;
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0 0;
}

.error2 {
  color: #fff;
  background: #B20000;
  padding: 0.8% 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 20px auto;
  width: 100%;
}

.formprivacy_title {
  color: #444444;
  text-align: center;
  font-size: 1.5rem;
  margin-top: 80px;
  text-decoration: underline;
}

.formprivacy_title:hover {
  text-decoration: none;
}

.formprivacy_txt {
  color: #444444;
  text-align: center;
  font-size: 1.5rem;
  margin-top: 0px;
}

@media screen and (max-width: 991px) {
  .formprivacy_title {
    color: #444444;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 60px;
    text-decoration: underline;
  }
  .formprivacy_title:hover {
    text-decoration: none;
  }
  .formprivacy_txt {
    color: #444444;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 0px;
  }
}

.privacy_block {
  background: #F4F7F9;
  text-align: center;
  padding: 50px 90px;
  margin: 80px auto 0;
}

.privacy_block .pp_tit {
  font-weight: bolder;
}

.privacy_block .pp_normal {
  text-align: left;
  font-size: 1.4rem;
  margin: 20px auto;
}

.privacy_block .pp_list li {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 5px;
}

.privacy_block ol.pp_list {
  margin: 8px 0 0 0.8em;
}

.privacy_block ol.pp_list li {
  margin-left: 2.75em;
  text-indent: -2.75em;
}

.privacy_block ul.pp_list li {
  margin-left: 1.2em;
  text-indent: -1.2em;
}

.privacy_block ul.pp_list li::before {
  display: inline;
  content: "●";
  color: #555;
  margin-right: 0.5em;
  font-size: 1rem;
  position: relative;
  top: -0.1rem;
}

.form_content #btnNext,
.form_content .btn_confirm,
.form_content .btn_top {
  background: #555;
}

@media screen and (max-width: 991px) {
  .privacy_block {
    padding: 30px;
    margin: 50px auto 0;
  }
  .privacy_block .pp_tit {
    font-size: 1.3rem;
  }
  .privacy_block .pp_normal {
    font-size: 1.1rem;
    margin: 15px auto;
  }
  .privacy_block .pp_list li {
    font-size: 1.1rem;
  }
}

.form_bottom {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .form_bottom {
    margin-top: 30px;
  }
}

.form_bottom p {
  position: relative;
  padding-left: 1.3em;
}

@media screen and (max-width: 991px) {
  .form_bottom p {
    font-size: 11px;
  }
}

.form_bottom p::before {
  content: '※';
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
}

.contact-main {
  font-family: "Noto Sans JP","メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
