@charset "UTF-8";
@media all and (min-width: 768px) {
  .pc_obj {
    display: block;
  }
  .sp_obj {
    display: none;
  }
}

@media all and (max-width: 768px) {
  .pc_obj {
    display: none;
  }
  .sp_obj {
    display: block;
  }
  img {
    width: 100%;
    height: auto;
  }
}

.orange {
  color: #f58030;
}

.w100 {
  width: 100%;
  height: auto;
}

.btn_white {
  display: block;
  border: 1px solid #f58030;
  background: #fff;
  color: #f58030;
  text-align: center;
  padding: 1em;
  border-radius: 40px;
  text-decoration: none;
}

.btn_orange, #content form #btnBox .form_btn, #content .box_complete .go_top {
  display: block;
  border: 1px solid #f58030;
  background: #f58030;
  color: #fff;
  text-align: center;
  padding: 1em;
  border-radius: 40px;
  text-decoration: none;
}

@media all and (min-width: 768px) {
  .btn_white {
    display: inline-block;
    padding: 1em 65px;
  }
  .btn_orange, #content form #btnBox .form_btn, #content .box_complete .go_top {
    display: inline-block;
    padding: 1em 65px;
  }
}

/* arrow_s */
.arrow_s {
  position: relative;
  padding: 0 0 0 32px;
  display: inline-block;
  vertical-align: middle;
}

.arrow_s:before,
.arrow_s:after {
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 0;
  margin: auto;
  content: '';
  vertical-align: middle;
}

.arrow_s:before {
  left: 0px;
  width: 14px;
  height: 1px;
  background: #f58030;
}

.arrow_s:after {
  left: 8px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #f58030;
  border-right: 1px solid #f58030;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* arrow_m */
.arrow_m {
  position: relative;
  padding: 0 0 0 45px;
  display: inline-block;
  vertical-align: middle;
}

.arrow_m:before,
.arrow_m:after {
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 0;
  margin: auto;
  content: '';
  vertical-align: middle;
}

.arrow_m:before {
  left: 0;
  width: 18px;
  height: 1px;
  background: #f58030;
}

.arrow_m:after {
  left: 12px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #f58030;
  border-right: 1px solid #f58030;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* arrow_w */
.arrow_w {
  position: relative;
  padding: 0 0 0 45px;
  display: inline-block;
  vertical-align: middle;
}

.arrow_w:before,
.arrow_w:after {
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 0;
  margin: auto;
  content: '';
  vertical-align: middle;
}

.arrow_w:before {
  left: 0;
  width: 18px;
  height: 1px;
  background: #fff;
}

.arrow_w:after {
  left: 12px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon_dl:before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 18px;
  vertical-align: top;
  background: url(/common/img/icon_download.png) center no-repeat;
  background-size: contain;
  margin-right: 1.2em;
  margin-left: -14px;
}

/* ---------------------------------------------------------
$ お問い合わせ
----------------------------------------------------------*/
#content {
  padding-bottom: 18.8%;
}

@media all and (min-width: 768px) {
  #content {
    padding-bottom: 150px;
  }
}

#content .lead {
  font-size: 15px;
  line-height: 1.73;
  margin-bottom: 13%;
}

@media all and (min-width: 768px) {
  #content .lead {
    font-size: 16px;
    line-height: 2;
  }
}

#content .process {
  list-style-type: none;
  display: -webkit-flex;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

#content .process li {
  display: block;
  width: 30%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 5px 0;
  border-bottom: 1px solid #e1e1e1;
  text-align: center;
  font-weight: bold;
  line-height: 1.26;
  font-size: 17px;
  padding-bottom: 0.8em;
  position: relative;
  color: #999999;
}

#content .process li span {
  display: block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  margin: 0 auto;
  background: #cccccc;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.7em;
}

#content .process li span img {
  height: 10px;
  width: auto;
  vertical-align: middle;
}

#content .process li:after {
  content: '';
  display: block;
  border-left: 8px solid #cccccc;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  top: 50%;
  right: calc(-15% + 3px);
}

#content .process li:last-child:after {
  content: none !important;
}

#content .process li.now {
  border-bottom: 1px solid #f58030;
  color: #000000;
}

#content .process li.now span {
  background: #f58030;
}

#content .process li.now:after {
  content: '';
  border-left: 8px solid #f58030;
}

@media all and (min-width: 768px) {
  #content .lead {
    margin-bottom: 60px;
  }
  #content .process li {
    width: 370px;
    font-size: 22px;
  }
  #content .process li span {
    display: inline-block;
    margin-right: 17px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin-bottom: 0;
  }
  #content .process li span img {
    height: 15px;
    width: auto;
    vertical-align: middle;
    margin-top: -2px;
  }
  #content .process li:after {
    right: -28px;
    top: 20px;
  }
}

#content form dt {
  width: 100%;
  font-weight: bold;
  padding-top: 7.4%;
  margin-bottom: 4.4%;
}

#content form dt label {
  position: relative;
  display: block;
  cursor: pointer;
  font-size: 15px;
}

#content form dt span {
  background: #ffe352;
  font-weight: bold;
  line-height: 1;
  padding: 4px 8px;
  position: absolute;
  right: 0;
  font-size: 12px;
  top: 2px;
  letter-spacing: 0.08em;
}

#content form dd {
  padding-bottom: 7.4%;
  border-bottom: 1px solid #e1e1e1;
}

#content form dd input,
#content form dd textarea {
  border: 1px solid #e1e1e1;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.8em 1em;
  font-size: 15px;
  line-height: 1;
  font-family: Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif;
}

#content form dd input::-webkit-input-placeholder,
#content form dd textarea::-webkit-input-placeholder {
  color: #a5a5a5;
}

#content form dd input::-moz-placeholder,
#content form dd textarea::-moz-placeholder {
  color: #a5a5a5;
}

#content form dd input:-moz-placeholder,
#content form dd textarea:-moz-placeholder {
  color: #a5a5a5;
}

#content form dd input:-ms-input-placeholder,
#content form dd textarea:-ms-input-placeholder {
  color: #a5a5a5;
}

#content form dd textarea {
  resize: none;
  height: 20em;
  line-height: 2;
}

#content form dd select {
  border: 1px solid #e1e1e1;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.8em 1em;
  position: relative;
  display: block;
  font-size: 15px;
  background: url(/contact/img/arrow_select.png) right 14px center no-repeat;
  background-size: 9px auto;
}

#content form dd #email + p {
  margin-top: 0.5em;
  margin-bottom: 0;
  text-indent: -0.5em;
}

#content form dd > p {
  font-size: 15px;
  line-height: 1.73;
}

@media all and (min-width: 768px) {
  #content form dd > p {
    font-size: 16px;
    line-height: 2;
  }
}

#content form dd .err {
  color: #b94a48;
  font-weight: bolder;
  margin: 10px 0 0 0;
  background: #f2dede;
  border: 1px solid #eed3d7;
  padding: 10px 15px;
}

#content form #btnBox {
  padding-top: 9.8%;
  text-align: center;
}

#content form #btnBox a {
  color: #f58030;
  text-decoration: underline;
}

#content form #btnBox .link {
  font-size: 15px;
  line-height: 1.73;
}

@media all and (min-width: 768px) {
  #content form #btnBox .link {
    font-size: 16px;
    line-height: 2;
  }
}

#content form #btnBox .form_btn {
  width: 100%;
  font-weight: bold;
  margin-top: 6.5%;
  font-size: 20px;
  letter-spacing: 0.04em;
  cursor: pointer;
}

#content form #btnBox.confirm .return_btn {
  display: inline-block;
  border: 1px solid #cccccc;
  margin-top: 5.3%;
  background: #cccccc;
  padding: 0.6em 2.5em;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 40px;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.04em;
  cursor: pointer;
}

@media all and (min-width: 768px) {
  #content form {
    margin-top: 45px;
  }
  #content form dl {
    padding: 30px 0 20px;
    border-bottom: 1px solid #e1e1e1;
  }
  #content form dt {
    float: left;
    width: 248px;
    padding-left: 36px;
    padding-top: 0;
    margin-bottom: 0;
  }
  #content form dt label {
    font-size: 16px;
  }
  #content form dt span {
    font-size: 14px;
  }
  #content form dd {
    padding-left: 356px;
    padding-right: 36px;
    padding-bottom: 0;
    border-bottom: 0;
    margin-top: -10px;
  }
  #content form dd input,
  #content form dd textarea {
    border: 1px solid #e1e1e1;
    width: 530px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.8em 1em;
    font-size: 16px;
  }
  #content form dd textarea {
    resize: none;
    height: 14.5em;
    width: 775px;
  }
  #content form dd select {
    border: 1px solid #e1e1e1;
    width: 530px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.8em 1em;
    position: relative;
    display: block;
    font-size: 16px;
    background: url(/contact/img/arrow_select.png) right 18px center no-repeat;
  }
  #content form dd > p {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  #content form #btnBox {
    padding-top: 70px;
    text-align: center;
  }
  #content form #btnBox .form_btn {
    display: inline-block;
    width: auto;
    margin-top: 20px;
    font-size: 22px;
  }
  #content form #btnBox.confirm {
    width: 594px;
    margin: 0 auto;
  }
  #content form #btnBox.confirm .form_btn {
    width: 388px;
    float: right;
    margin-top: 0;
  }
  #content form #btnBox.confirm .return_btn {
    margin-top: 10px;
    font-size: 22px;
    letter-spacing: 0.04em;
  }
}

#content .box_complete {
  padding-top: 7.4%;
  text-align: center;
}

#content .box_complete h2 {
  margin-bottom: 3.8%;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.28;
}

#content .box_complete .txt_thanks {
  margin-bottom: 7.5%;
  font-size: 15px;
  line-height: 1.73;
}

@media all and (min-width: 768px) {
  #content .box_complete .txt_thanks {
    font-size: 16px;
    line-height: 2;
  }
}

#content .box_complete .go_top {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.04em;
  cursor: pointer;
}

@media all and (min-width: 768px) {
  #content .box_complete h2 {
    margin-bottom: 25px;
    font-size: 28px;
    line-height: 1.6;
  }
  #content .box_complete .txt_thanks {
    margin-bottom: 40px;
  }
  #content .box_complete .go_top {
    display: inline-block;
    width: auto;
    font-size: 22px;
  }
}
