@charset "utf-8";
/* CSS Document */

.contact_ttl span {
  color: #222;
  display: block;
}

.contact_ttl span:first-child {
  font-size: 1.5rem;
}

.contact_ttl .contact_tel {
  font-size: 2.5rem;
  font-weight: normal;
  margin-bottom: 6rem;
}

.contact_ttl .contact_tel i {
  display: inline-block;
  font-weight: normal;
  font-size: 0.8em;
  background: #1446eb;
  color: #fff;
  padding: 0.2em;
  border-radius: 50%;
  margin-right: 0.5em;
}

.form_ttl {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
}

.form_text {
  text-align: center;
  font-size: 0.875rem;
  margin-bottom: 3rem;
}

.form_table {
  width: 100%;
  border-top: 1px solid #ccc;
  margin-bottom: 2.5rem;
}

.form_table tr th,
.form_table tr td {
  border-bottom: 1px solid #ccc;
  text-align: left;
  padding: 0.5rem 1rem;
  vertical-align: top;
}

.form_table tr th {
  white-space: nowrap;
  width: 25%;
}

.form_table tr td {
  width: 75%;
}

.required {
  display: inline-block;
  font-size: 0.85em;
  background: #1446eb;
  color: #fff;
  line-height: 1;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 0.5em;
}

/* フォームの初期スタイルリセット */
.contact_form input, 
.contact_form button, 
.contact_form textarea, 
.contact_form select,
.dl_form input, 
.dl_form button, 
.dl_form textarea, 
.dl_form select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

/* テキストボックス、テキストエリア、セレクトボックス */
.contact_form input[type="text"],
.contact_form textarea,
.contact_form select,
.dl_form input[type="text"],
.dl_form textarea,
.dl_form select{
  border: 1px solid #ccc;
  background: #f0f3ff;
  padding: 0.5rem;
  box-sizing: border-box;
  width: 100%;
}

.contact_form input[type="text"]:focus,
.contact_form textarea:focus,
.contact_form select:focus,
.dl_form input[type="text"]:focus,
.dl_form textarea:focus,
.dl_form select:focus {
  border: 1px solid #1446eb;
  background: #fff;
}

.contact_form textarea {
  height: 15em;
}

.contact_form .zip_input {
  width: 15em!important;
}

.form_note {
  display: inline-block;
  font-size: 0.875rem;
  margin-left: 1em;
}

.content_title_list_note {
  margin-left: 0;
}

.contact_form input[type="button"],
.dl_form input[type="button"] {
  display: block;
  text-align: center;
  margin: 0 auto;
  min-width: 420px;
  box-sizing: border-box;
  background: #1446eb;
  color: #fff;
  font-size: 1.25rem;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 5rem;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  transition: 0.5s;
}

/*.contact_form input[type="button"]::after {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}*/

.contact_form input[type="button"]:hover,
.dl_form input[type="button"]:hover {
  color: #1446eb;
  background: #fff;
  border: 1px solid #1446eb;
  z-index: 1;
}

/*.contact_form input[type="button"]:hover::after {
  transform: scale(1, 1);
}*/

/* チェックボックス */
.content_title_list li {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

.check_input {
  display: none;
}

.check_input + label {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 22px;
  cursor: pointer;
}

.check_input + label::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: #fff;
  border: 2px solid #a0a0a0;
}

.check_input:checked + label::after {
  position: absolute;
  content: '';
  top: 5px;
  left: 3px;
  width: 13px;
  height: 5px;
  border-left: 2px solid #1446eb;
  border-bottom: 2px solid #1446eb;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* セレクトボックス */
.select_wrapper {
  position: relative;
  width: 17em;
}

.select_wrapper select {
  position: relative;
  width: 100%;
  appearance: none;
}

.select_wrapper::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-width: 7px 5px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 9px;
  margin-top: -4px;
  pointer-events: none;
}

/*エラーメッセージ*/
.err_msg {
  color: red;
  font-size: 1rem;
}

.err_msg.agree_err {
  text-align: center;
  margin-bottom: 1rem;
}

.err_msg.agree_errox {
  border: 2px solid red;
  background: #fff;
  padding: 1rem;
  margin-bottom: 3rem;
  color: red;
}

.agree_check {
  text-align: center;
  margin-bottom: 1.5rem;
}

input[type="button"].js-return-btn {
  margin-bottom: 1rem;
  background: #ccc;
}

/*.foot_links {
  padding-bottom: 2rem;
}*/

/* 個人情報保護方針 */
.privacy_policy_scroll {
  width: 100%;
  height: 10em;
  overflow-y: scroll;
  border: 1px solid #ccc;
  margin-bottom: 3rem;
}

.privacy_policy_area {
  padding: 1rem;
  font-size: 0.875rem;
}

.privacy_policy_lead {
  margin-bottom: 1rem;
}

.privacy_policy_ttl {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.privacy_policy_list dt {
  font-weight: bold;
  margin-bottom: 1em;
}

.privacy_policy_list dd {
  margin-bottom: 2em;
}

.privacy_policy_list dd p {
  margin-bottom: 1em;
}

.privacy_policy_list dd ol {
  padding-left: 2em;
  margin-bottom: 1em;
}

.privacy_policy_list dd ol li {
  list-style: decimal;
}

/* サンクスページ・エラーページ */
.contact_lead {
  text-align: center;
  line-height: 2;
}

@media screen and (max-width: 736px) {
  .contact_ttl span:first-child {
    font-size: 0.875rem;
  }

  .contact_ttl .contact_tel {
    font-size: 1.625rem;
    margin-bottom: 2rem;
  }

  .form_ttl {
    font-size: 0.875rem;
  }

  .form_text {
    font-size: 0.75rem;
  }

  .form_table {
    margin-bottom: 1.5rem;
    display: block;
  }
  
  .form_table tbody,
  .form_table tbody tr {
    display: block;
  }

  .form_table tr th,
  .form_table tr td {
    display: block;
    padding: 0.5rem;
    box-sizing: border-box;
    font-size: 0.75rem;
  }

  .form_table tr th {
    border: none;
    width: 100%;
    padding-bottom: 0;
  }

  .form_table tr td {
    width: 100%;
  }

  .form_note {
    font-size: 0.75rem;
  }

  .contact_form input[type="button"],
  .dl_form input[type="button"] {
    min-width: 50%;
    width: 50%;
    font-size: 1.15rem;
    padding: 0.5rem;
    margin-bottom: 4rem;
  }
  
  .contact_form input[type="button"].js-return-btn {
    margin-bottom: 1rem;
    background: #ccc;
  }
  
  /*エラーメッセージ*/
  .err_msg {
    font-size: 0.875rem;
  }
  
  .err_msg_box {
    padding: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
  
  .agree_check {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
  
  /* 個人情報保護方針 */
  .privacy_policy_scroll {
    margin-bottom: 2rem;
  }

  .privacy_policy_area {
    padding: 0.5rem;
    font-size: 0.75rem;
  }

  .privacy_policy_lead {
    margin-bottom: 1rem;
  }

  .privacy_policy_ttl {
    font-size: 0.875rem;
  }
  
  /* サンクスページ・エラーページ */
  .contact_lead {
    font-size: 0.875rem;
  }
}