@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/* ************************************************
 *	お問い合わせ
 * ************************************************ */
.contact_list {
  flex-direction: column;
  gap: 30px 0;
}
@media print, screen and (min-width: 768px) {
  .contact_list {
    flex-direction: row;
    align-items: stretch;
    gap: 30px 4%;
  }
}
@media print, screen and (min-width: 960px) {
  .contact_list {
    gap: 40px 4%;
  }
}
.contact_list li {
  width: 100%;
  background-color: #eaf5fd;
  border-radius: 20px;
  padding: 20px;
}
@media print, screen and (min-width: 768px) {
  .contact_list li {
    width: 48%;
    border-radius: 30px;
    padding: 25px;
  }
}
@media print, screen and (min-width: 960px) {
  .contact_list li {
    padding: 30px 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .contact_list li:last-child {
    width: 100%;
  }
}
.contact_list h2 {
  color: #8cc8f5;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .contact_list h2 {
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 960px) {
  .contact_list h2 {
    font-size: 24px;
  }
}

/* ************************************************
 *	各フォーム
 * ************************************************ */
/* フォーム共通
----------------------------------------------*/
.tab_contents_item {
  display: none;
}
.tab_contents_item.show {
  display: block;
}

.form_block {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
@media print, screen and (min-width: 768px) {
  .form_block {
    gap: 40px 0;
  }
}

dt {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 960px) {
  dt {
    font-size: 20px;
  }
}
dt .message_note {
  font-size: 14px;
}
@media print, screen and (min-width: 960px) {
  dt .message_note {
    font-size: 16px;
  }
}

select {
  background-color: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 10px;
  padding: 8px 37px 8px 12px;
}
@media print, screen and (min-width: 960px) {
  select {
    padding: 8px 40px 8px 15px;
  }
}

.required {
  display: inline-block;
  background-color: #ed1c24;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  border-radius: 5px;
  padding: 5px;
  margin-left: 10px;
}
@media print, screen and (min-width: 960px) {
  .required {
    font-size: 13px;
  }
}

.optional {
  display: inline-block;
  background-color: #e6e6e6;
  color: #808080;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  border-radius: 5px;
  padding: 5px;
  margin-left: 10px;
}
@media print, screen and (min-width: 960px) {
  .optional {
    font-size: 13px;
  }
}

input:not([type=radio]), textarea {
  width: 100%;
  color: inherit;
  border: 1px solid #c8c8c8;
  border-radius: 10px;
  padding: 10px;
}

dd label {
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1;
  border: 1px solid #c8c8c8;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  dd label {
    padding: 10px 15px;
  }
}
@media print, screen and (min-width: 960px) {
  dd label {
    transition: background-color 0.3s, border 0.3s;
  }
  dd label:hover {
    background-color: #eaf5fd;
    border: 1px solid #8cc8f5;
  }
}
dd label input[type=radio] {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 23px;
  height: 23px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
dd label input[type=radio]::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border: 2px solid #c8c8c8;
  border-radius: 50%;
  box-sizing: border-box;
}
dd label input[type=radio]:checked::before {
  background-color: #8cc8f5;
  border: 2px solid #8cc8f5;
}
dd label input[type=radio]:checked::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  box-sizing: border-box;
  z-index: 1;
}
dd label span {
  margin-left: 10px;
}

.message_count {
  text-align: right;
}

.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
@media print, screen and (min-width: 768px) {
  .wpcf7-form-control.wpcf7-radio {
    flex-direction: row;
    gap: 10px;
  }
}

.wpcf7-radio {
  display: flex;
}
.wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
@media print, screen and (min-width: 768px) {
  .wpcf7-radio .wpcf7-list-item {
    width: calc(50% - 5px);
  }
}

::-webkit-input-placeholder {
  color: #b3b3b3;
}

::-moz-placeholder {
  color: #b3b3b3;
}

:-ms-input-placeholder {
  color: #b3b3b3;
}

::-ms-input-placeholder {
  color: #b3b3b3;
}

::placeholder {
  color: #b3b3b3;
}

/* ビジター種別
----------------------------------------------*/
/* お名前・お電話番号
----------------------------------------------*/
.contact_name {
  display: flex;
  justify-content: space-between;
  gap: 0 10px;
  max-width: 600px;
}
.contact_name .wpcf7-form-control-wrap {
  width: calc(50% - 5px);
}

.contact_tel input {
  max-width: 300px;
}

/* セレクトボックス三角
----------------------------------------------*/
.select .wpcf7-form-control-wrap {
  position: relative;
}
.select .wpcf7-form-control-wrap::after {
  position: absolute;
  top: 50%;
  right: 12px;
  content: "";
  width: 14px;
  height: 10px;
  background-color: #c8c8c8;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateY(-50%);
}
@media print, screen and (min-width: 960px) {
  .select .wpcf7-form-control-wrap::after {
    right: 15px;
  }
}

/* メール用ビジター種別（非表示）
----------------------------------------------*/
.visitor_type_hidden {
  display: none;
}

.confirm .visitor_type_hidden {
  display: block;
}

/* リード
----------------------------------------------*/
.lead_block {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  margin-bottom: 40px;
}
.lead_block dt {
  color: #8cc8f5;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0;
}
@media print, screen and (min-width: 960px) {
  .lead_block dt {
    font-size: 18px;
  }
}

.confirm .lead_block {
  display: none;
}

/* ポリシーチェック・送信ボタン
----------------------------------------------*/
.submit_block {
  margin-top: 60px;
}
@media print, screen and (min-width: 960px) {
  .submit_block {
    margin-top: 80px;
  }
}
.submit_block .policy_check {
  background: #efefef;
  text-align: center;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
}
.submit_block .policy_check a {
  display: inline-block;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 960px) {
  .submit_block .policy_check a {
    transition: opacity 0.3s;
  }
  .submit_block .policy_check a:hover {
    opacity: 0.6;
  }
}
.submit_block .policy_check p.policy_check_txt {
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .submit_block .policy_check p.policy_check_txt {
    text-align: center;
  }
}
.submit_block .policy_check label {
  cursor: pointer;
}
.submit_block .policy_check .wpcf7-list-item {
  margin-left: 0;
}
.submit_block .policy_check input[type=checkbox] {
  width: 22px;
  height: 22px;
  position: relative;
  top: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 10px;
  border-radius: 3px;
  box-sizing: border-box;
  border: 1px solid #c8c8c8;
  background: #fff;
}
.submit_block .policy_check input[type=checkbox]:checked::before {
  content: "";
  width: 10px;
  height: 4px;
  display: block;
  position: absolute;
  top: 15px;
  left: 0;
  background: #8cc8f5;
  transform: rotate(45deg);
  transform-origin: right center;
}
.submit_block .policy_check input[type=checkbox]:checked::after {
  content: "";
  width: 16px;
  height: 4px;
  display: block;
  position: absolute;
  top: 15px;
  left: 8px;
  background: #8cc8f5;
  transform: rotate(-53deg);
  transform-origin: left center;
}
.submit_block .reCAPTCHA_txt p {
  color: #666;
  font-size: 13px;
  text-align: center;
  margin-bottom: 40px;
}
.submit_block .reCAPTCHA_txt a {
  color: #8cc8f5;
  text-decoration: underline;
}
.submit_block input:not([type=checkbox]) {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border: none;
  border-radius: 10px;
  padding: 15px 0;
  margin: 0 auto;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media print, screen and (min-width: 768px) {
  .submit_block input:not([type=checkbox]) {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 960px) {
  .submit_block input:not([type=checkbox]):hover {
    opacity: 0.6;
  }
}
.submit_block input:not([type=checkbox])[type=submit] {
  background-color: #8cc8f5;
  color: #fff;
}
.submit_block input:not([type=checkbox])[type=submit]:disabled {
  opacity: 0.3;
}
.submit_block input:not([type=checkbox]).back_btn {
  background-color: #eaf5fd;
  margin-bottom: 20px;
}

/* 確認画面
----------------------------------------------*/
.contact_confirm_ttl {
  background-color: #8cc8f5;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  border-radius: 10px;
  padding: 8px 0;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 960px) {
  .contact_confirm_ttl {
    font-size: 20px;
    padding: 12px 0;
    margin-bottom: 30px;
  }
}

/* サンクスページ
----------------------------------------------*/
.thanks_text {
  line-height: 2.4;
  text-align: center;
  padding: 10px 0;
}
@media print, screen and (min-width: 960px) {
  .thanks_text {
    padding: 20px 0;
  }
}/*# sourceMappingURL=form.css.map */