@charset "UTF-8";
/* 
//////////////////////////////////////////////////////////////////////////////

contact.css
- お問い合わせフォーム

//////////////////////////////////////////////////////////////////////////////
*/
/* 各画面 共通
===============================================
=============================================== */
.contact_progress {
  display: flex;
  list-style: none;
  max-width: 1000px;
  margin: 0 10px 10px;
  padding: 0;
}
@media screen and (min-width: 960px) {
  .contact_progress {
    margin: 0 auto 10px;
  }
}
.contact_progress li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(33.3%);
  height: 30px;
  margin-right: 1px;
  text-align: center;
  background: #eee;
  color: #888;
}
@media screen and (min-width: 960px) {
  .contact_progress li {
    height: 40px;
  }
}
.contact_progress li:first-child {
  width: calc(33.3% - 10px);
}
.contact_progress li:last-child {
  width: calc(33.3% + 10px);
}
.contact_progress li:nth-child(2), .contact_progress li:last-child {
  padding-left: 20px;
}
.contact_progress li::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 100%;
  z-index: 2;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 0 20px;
  border-color: transparent transparent transparent #eee;
}
.contact_progress li::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 100%;
  z-index: 2;
  width: 23px;
  height: 0;
  border-bottom: 30px solid #fff;
  border-right: 20px solid transparent;
}
@media screen and (min-width: 960px) {
  .contact_progress li::after {
    border-width: 40px 0 0 20px;
  }
  .contact_progress li::before {
    border-bottom: 40px solid #fff;
  }
}
.contact_progress li:last-child::after, .contact_progress li:last-child::before {
  display: none;
}
.contact_progress li.current {
  background: #3ac4ff;
  color: #fff;
  font-weight: bold;
}
.contact_progress li.current::after {
  border-color: transparent transparent transparent #3ac4ff;
}

.contact_form {
  max-width: 1000px;
  margin: 10px auto 20px;
}
.contact_form .form_btn li.btn_w50p {
  max-width: 280px;
}

.dl_contact dt {
  position: relative;
  margin-bottom: 2px;
  padding-top: 5px;
  padding-left: 19px;
  font-weight: bold;
  color: #ff7bac;
  border-top: 1px solid #eee;
}
.dl_contact dt::before {
  position: absolute;
  top: 7px;
  left: 0;
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background: #ff7bac;
}
.dl_contact dt:first-of-type {
  border-top: none;
}
.dl_contact dd {
  margin-left: 0;
  margin-bottom: 10px;
  word-wrap: break-word;
}
.dl_contact dd p:first-child {
  margin-top: 0;
}
.dl_contact dd p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .dl_contact {
    display: flex;
    flex-wrap: wrap;
  }
  .dl_contact dt {
    width: 300px;
    padding-top: 10px;
  }
  .dl_contact dt::before {
    top: 17px;
  }
  .dl_contact dd {
    width: calc(100% - 300px);
    padding-top: 10px;
    border-top: 1px solid #eee;
  }
  .dl_contact dd:first-of-type {
    border-top: none;
  }
}
.dl_contact .error {
  position: relative;
  margin: 5px 0 0;
  padding-left: 21px;
  color: #c00;
  font-weight: bold;
}
.dl_contact .error::before {
  position: absolute;
  top: 1px;
  left: 0;
  content: "！";
  width: 16px;
  background: #c00;
  color: #fff;
  text-align: center;
  font-size: 1.0rem;
}

/* 入力画面
===============================================
=============================================== */
.icn_necessary {
  margin-left: 1.0rem;
  padding: 1px 2px 1px 3px;
  color: #fff;
  background: #ff7bac;
  font-size: 1.0rem;
  letter-spacing: 1px;
}

.contact_caution {
  padding: 10px 0;
  background: #f9f9f9;
}
.contact_caution .inner {
  max-width: 1000px;
  margin: 10px;
  padding: 1em;
  border: 3px double #e8f3e4;
  background: #fff;
}
@media screen and (min-width: 960px) {
  .contact_caution .inner {
    margin: 10px auto;
  }
}
.contact_caution h2 {
  position: relative;
  margin-top: 0;
  padding-left: 21px;
}
.contact_caution h2::before {
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: #e3e3e3;
}
.contact_caution ul {
  margin: 0;
  padding-left: 1.6rem;
}
.contact_caution ul + h2 {
  margin-top: 1em;
}
.contact_caution ul li + li {
  margin-top: .5em;
}

/* 入力内容確認
===============================================
=============================================== */
/* 送信完了
===============================================
=============================================== */
.sec_sb_title {
  margin-top: 20px;
}

.contact_comp_return {
  margin-top: 40px;
}
@media screen and (min-width: 960px) {
  .contact_comp_return {
    margin-top: 60px;
  }
}
