@charset "UTF-8";
/*
 * 変数
 */
/*
 * ブレークポイント
 */
/*
 * 480pxより広くなったら改行なくす
 */
@media (min-width: 520px) {
  .br_sp {
    display: none;
  }
}

/*
 * 480pxより狭くなったら改行なくす
 */
@media (max-width: 520px) {
  .sp_br {
    display: none !important;
  }
}

/*
 * 780pxより狭くなったら改行なくす
 */
@media (max-width: 1024px) {
  .pc_br {
    display: none;
  }
}

/*
 * 780pxより狭くなったら改行
 */
@media (min-width: 1024px) {
  .tab_br {
    display: none;
  }
}

/*
 * トランジション
 */
input[type=submit], input[type=button] {
  line-height: 1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.error em {
  color: red;
}

.contact-block {
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
  margin-top: 100px;
}

.con-tit-block {
  margin-bottom: 3%;
}
@media (max-width: 520px) {
  .con-tit-block {
    margin-bottom: 6%;
  }
}
.con-tit-block .main-tit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.con-tit-block .main-tit h2 {
  font-size: 2em;
  line-height: 1;
}
.con-tit-block .main-tit .red {
  color: #E30013;
}
.con-tit-block .cont-span {
  display: inline-block;
  position: relative;
  margin-top: 3%;
  padding-top: 1%;
}
@media (max-width: 520px) {
  .con-tit-block .cont-span {
    margin-top: 6%;
    padding-top: 5%;
  }
}
.con-tit-block .cont-span::before {
  background-color: #E30013;
  content: "";
  display: inline-block;
  width: 73px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}

.mail-form-table {
  display: table;
  width: 100%;
}

dl.mail_body {
  display: table-row;
}
dl.mail_body dt, dl.mail_body dd {
  display: table-cell;
  padding: 1.5rem 0;
  vertical-align: middle;
  border-top: 1px solid #e2e2e2;
}
dl.mail_body dt p, dl.mail_body dd p {
  display: inline-block;
  padding-left: 8px;
}
dl.mail_body dt p.mailadd_p, dl.mail_body dd p.mailadd_p {
  font-size: max(15px, min(1vw,17px));
  font-size: clamp(15px, 1vw, 17px);
  color: #484848;
  padding-left: 0;
}
dl.mail_body dt a.zip-link, dl.mail_body dd a.zip-link {
  font-size: max(15px, min(1vw,17px));
  font-size: clamp(15px, 1vw, 17px);
  color: #1F1F1F;
  display: inline-block;
}
dl.mail_body dt {
  width: 30%;
  font-size: max(16px, min(1.2vw,18px));
  font-size: clamp(16px, 1.2vw, 18px);
}
@media (max-width: 520px) {
  dl.mail_body dt {
    display: block;
    width: 100%;
    padding-bottom: 0.5rem;
    padding-top: 1rem;
  }
}
dl.mail_body dd {
  width: 70%;
}
@media (max-width: 520px) {
  dl.mail_body dd {
    display: block;
    width: 100%;
    padding: 0;
    padding-bottom: 1.5rem;
    border: none;
  }
}

.select-wrapp {
  position: relative;
}
.select-wrapp::after {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../images/chevron-under.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: 1.5em;
  top: 2.8rem;
  transform: translateY(-50%);
}
@media (max-width: 520px) {
  .select-wrapp::after {
    top: 1.4rem;
  }
}

.prf-wrapp {
  margin-bottom: 3%;
}
@media (max-width: 520px) {
  .prf-wrapp::after {
    top: 2.8rem;
  }
}

.hp-q-wrapp::after {
  top: 3.2rem;
}
@media (max-width: 520px) {
  .hp-q-wrapp::after {
    top: 1.2rem;
  }
}

span.must {
  display: inline-block;
  padding: 1px 4px 0px;
  background: #E30013;
  color: white;
  font-size: 12px;
  border-radius: 3px;
  vertical-align: text-bottom;
}

span.mustcheck {
  padding-left: 8px;
}

input[type=text], input[type=email], input[type=tel], textarea {
  border: none;
  background: #ededed;
  padding: 10px;
  border-radius: 2px;
  transition: all 0.2s;
  width: 95%;
  border: 2px solid #ededed;
  font-size: 1rem;
}
input[type=text]:-webkit-autofill, input[type=email]:-webkit-autofill, input[type=tel]:-webkit-autofill, textarea:-webkit-autofill {
  box-shadow: 0 0 0 1000px #ededed inset;
}
@media (max-width: 520px) {
  input[type=text], input[type=email], input[type=tel], textarea {
    width: 93%;
  }
}

select {
  border: none;
  background: #ededed;
  padding: 10px;
  border-radius: 2px;
  transition: all 0.2s;
  width: 98%;
  font-size: 1rem;
  border: 2px solid #ededed;
}
select:-webkit-autofill {
  box-shadow: 0 0 0 1000px #ededed inset;
}
@media (max-width: 520px) {
  select {
    width: 100%;
  }
}

input:focus, textarea:focus, select:focus {
  outline: 0;
  border: 2px solid #1F1F1F;
}

/*チェックボックスカスタマイズ*/
.checkbox-con span.checkbox-list-item {
  position: relative;
  margin: 0 50px 0 0; /*項目ごとの余白を調整*/
}
.checkbox-con .checkbox-list-item-label { /*項目の色や文字サイズ*/
  cursor: pointer;
  font-size: 16px;
}
.checkbox-con input[type=checkbox] {
  position: absolute;
  opacity: 0; /*既存のチェックボックスを見えなくする*/
}
.checkbox-con .checkbox-list-item-label:before { /*チェックボックスの枠*/
  position: relative;
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  background: #f0f0f0;
  margin-right: 5px;
  margin-left: 8px;
  top: 0.2em;
}
.checkbox-con .checkbox-list-item-label:after {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  opacity: 0;
  transform: rotate(45deg) translateY(-10px);
  border-right: 3px solid #E30013;
  border-bottom: 3px solid #E30013;
  left: 12px;
  top: -2px;
  transition: all 0.2s ease;
}
.checkbox-con input[type=checkbox]:checked + .checkbox-list-item-label:after { /*チェックアイコン*/
  opacity: 1;
  transform: rotate(45deg) translateY(0);
}

.mail_submit {
  display: block;
  text-align: center;
  margin-top: 4%;
}
.mail_submit-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#submit_btn {
  font-size: initial;
  padding: 18px 5em 16px;
  color: white;
  background: #E30013;
  transition: all 0.5s cubic-bezier(0.7, 0, 0.56, 0.98);
}
#submit_btn:hover {
  background: #b1000f;
}

input[type=submit]:focus {
  background: #b1000f;
  border: none;
}

#reset_btn {
  padding: 7px 20px 5px;
  color: #979797;
  margin-top: 2%;
  font-size: initial;
  border: 1px solid;
  transition: all 0.5s cubic-bezier(0.7, 0, 0.56, 0.98);
}
#reset_btn:hover {
  color: #E30013;
}

#soushin {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  margin-top: 4%;
  padding-bottom: 10%;
  max-width: 719px;
}

/*エラー表示*/
.error_box {
  background: #fffec5;
}
.error_box em {
  color: #E30013;
}

/*確認フォーム*/
.section {
  padding-top: 7%;
}

.section-tit {
  text-align: center;
}
@media (max-width: 520px) {
  .section-tit {
    width: 85%;
    margin: 0 auto;
  }
}

.alpha {
  display: table;
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
  padding-top: 4%;
  padding-bottom: 5%;
}
.alpha dl {
  display: table-row;
}
.alpha dd, .alpha dt {
  display: table-cell;
  padding: 10px 0;
}
.alpha dt {
  width: 30%;
  font-weight: bold;
}
.alpha dd {
  width: 70%;
}
@media (max-width: 520px) {
  .alpha dt, .alpha dd {
    width: 100%;
    display: block;
  }
}

.center {
  text-align: center;
  padding-bottom: 5%;
}

#submit_form {
  padding-top: 2%;
}

/*完了画面*/
.section-finish {
  text-align: center;
  padding-top: 3%;
  width: 90%;
  margin: 0 auto;
}
.section-finish img {
  width: 75px;
  margin-bottom: 1%;
}
@media (max-width: 1024px) {
  .section-finish {
    padding-top: 8%;
  }
}
@media (max-width: 520px) {
  .section-finish img {
    width: 60px;
    margin-bottom: 5%;
  }
}

.thanks-thanks {
  font-size: max(20px, min(2vw,25px));
  font-size: clamp(20px, 2vw, 25px);
  font-weight: bold;
  margin-bottom: 2%;
}
@media (max-width: 520px) {
  .thanks-thanks {
    text-align: justify;
  }
}

@media (max-width: 520px) {
  .thanks-text {
    text-align: justify;
  }
}

.finish-bottom {
  display: flex;
  flex-direction: column;
}

.th-inner-text {
  padding: 2% 0;
}
@media (max-width: 520px) {
  .th-inner-text {
    padding: 8% 0;
  }
}

.back-form, .back-top {
  display: block;
  z-index: 1;
  position: relative;
  color: #1F1F1F;
  padding-top: 1%;
}
.back-form a, .back-top a {
  display: inline-block;
}
.back-form a:hover p:before, .back-form a:hover p:after, .back-top a:hover p:before, .back-top a:hover p:after {
  transition: all 0.5s cubic-bezier(0.7, 0, 0.56, 0.98);
  transition-property: transform;
}
.back-form a:hover p:before, .back-top a:hover p:before {
  transform: translate(-12px, 0);
}
.back-form a:hover p:after, .back-top a:hover p:after {
  transform: translate(-12px, 0) rotate(-25deg);
}
.back-form p, .back-top p {
  position: relative;
  padding-left: 68px;
}
.back-form p:before, .back-form p:after, .back-top p:before, .back-top p:after {
  transition: all 0.5s cubic-bezier(0.7, 0, 0.56, 0.98);
  transition-property: transform;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  background: #1F1F1F;
}
.back-form p:before, .back-top p:before {
  width: 60px;
}
.back-form p:after, .back-top p:after {
  width: 15px;
  transform-origin: left center;
  transform: rotate(-25deg);
}

/*# sourceMappingURL=contact.css.map */
