@charset "UTF-8";

/*============================
common
===========================*/

.contents {
  background: linear-gradient(to right, #e6f5f8, #e3faf4);
}

@media screen and (min-width: 769px) {
  .contents {
    padding: 100px 0 80px;
  }
}

@media screen and (max-width: 768px) {
  .contents {
    padding: 60px 0 10%;
  }
}

/*============================
form
===========================*/

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-family:
    "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
}
textarea {
  resize: vertical;
}
button,
input[type="submit"],
select {
  cursor: pointer;
}

.form {
  background: linear-gradient(to right, #e6f5f8, #e3faf4);
}
.form .txt_inquiry_01 {
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.6;
  font-weight: bold;
}
.form .area_secform > .align_center img {
  width: 53px;
}
.form .txt_attention {
  margin: 10px 0 30px;
  color: #3cd3ad;
  text-align: center;
  line-height: 1.6;
  font-weight: bold;
}
.form .txt_inquiry_02 {
  text-align: center;
  line-height: 1.6;
  font-weight: bold;
}

.form .box_inquiry {
  flex-wrap: wrap;
}
.form .box_inquiry dt {
  width: 290px;
  margin-top: 20px;
  padding-top: 12px;
  font-size: 1.6rem;
  font-weight: bold;
}
.form .box_inquiry .icon_must {
  display: inline-block;
  margin-left: 5px;
  color: #ff5824;
  font-size: 1rem;
  transform: translateY(-4px);
}
.form .box_inquiry dd {
  width: calc(100% - 290px);
  margin-top: 20px;
}
.form .box_inquiry input[type="text"],
.form .box_inquiry input[type="email"],
.form .box_inquiry input[type="phone"] {
  width: 100%;
  height: 40px;
  padding: 10px;
  background: #f2f2f2;
  color: #000;
  font-size: 1.6rem;
  font-weight: bold;
}
.form .box_inquiry .companyname span {
  display: inline-block;
  margin-top: 5px;
  font-size: 1.2rem;
  font-weight: bold;
}
.form .box_inquiry .area_demand li {
  padding-top: 5px;
  display: inline-block;
}
.form .box_inquiry .area_demand li + li {
  margin-left: 30px;
}
.form .list_check {
  display: none;
}
.form .list_checkin {
  padding: 6px 0 0 38px;
  position: relative;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: bold;
}
.form .list_checkin::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: #f2f2f2;
}
.form .list_check:checked + .list_checkin::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  left: 7px;
  width: 17px;
  height: 12px;
  background: url(../img/form/icon_check.png) 0 0 no-repeat;
  background-size: 17px auto;
}
.form .box_inquiry .area_industry div {
  width: 230px;
  background: #f2f2f2;
}
.form .box_inquiry .area_industry div + div {
  width: 430px;
  margin-top: 10px;
}
.form .box_inquiry .area_industry div + div select {
  width: 430px;
}
.form .box_inquiry .area_industry select {
  width: 230px;
  height: 40px;
  background: url(../img/form/arw_select.png) right top no-repeat;
  background-size: 40px auto;
  padding: 10px 50px 10px 10px;
  cursor: pointer;
  text-overflow: ellipsis;
  font-size: 1.5rem;
  color: #000;
  font-weight: bold;
}
.form .box_inquiry .area_industry select::-ms-expand {
  display: none;
}
.form .box_inquiry .area_industry select option {
  box-sizing: content-box;
  font-weight: bold;
}
.form .box_inquiry textarea {
  width: 100%;
  height: 163px;
  padding: 10px;
  background: #f2f2f2;
  font-size: 1.6rem;
  color: #000;
  font-weight: bold;
  line-height: 1.5;
}
.form .btn_orange {
  width: 360px;
  height: 60px;
  border-radius: 30px;
  box-shadow: 0 6px #cf5a24;
  margin: 40px auto 0;
  line-height: 62px;
}
.ie11 .form .btn_orange {
  line-height: 72px;
}

@media screen and (min-width: 769px) {
  .form .btn_orange:hover {
    box-shadow: 0 3px #cf5a24;
    transform: translate(0, 3px);
  }
}

@media screen and (max-width: 768px) {
  .form .txt_inquiry_01 {
    margin-bottom: 5%;
    text-align: left;
    line-height: 1.4;
    font-size: 1.4rem;
  }
  .form .txt_attention {
    margin: 2% auto 5%;
    text-align: left;
    font-size: 1.4rem;
  }
  .form .txt_inquiry_02 {
    text-align: left;
    font-size: 1.4rem;
  }

  .form .box_inquiry dt {
    width: 100%;
    margin-top: 7%;
    padding-top: 0;
  }
  .form .box_inquiry dd {
    width: 100%;
    margin-top: 1%;
  }
  .form .box_inquiry .area_demand li {
    display: block;
  }
  .form .box_inquiry .area_demand li + li {
    margin: 3% 0 0;
  }
  .form .list_check:checked + .list_checkin::after {
    top: 10px;
  }

  .form .box_inquiry .area_industry div {
    width: 100%;
  }
  .form .box_inquiry .area_industry div + div {
    width: 100%;
    margin-top: 3%;
  }
  .form .box_inquiry .area_industry div + div select {
    width: 100%;
  }
  .form .box_inquiry .area_industry select {
    width: 100%;
  }
  .form .box_inquiry textarea {
    height: 150px;
  }

  .form .btn_orange {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    box-shadow: 0 5px #cf5a24;
    font-size: 1.6rem;
    line-height: 42px;
    margin: 5% auto 0;
  }
}

/*============================
confirm
===========================*/

.form.confirm .contents,
.form.thanks .contents {
  padding: 190px 0 80px;
}
.form .box_gray {
  width: 100%;
  padding: 10px;
  background: #f2f2f2;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
}
.form.confirm .box_gray {
  background: none;
}
.form .area_btn {
  justify-content: space-between;
  width: 670px;
  margin: 0 auto;
}
.form .area_btn .btn_black {
  display: block;
  width: 310px;
  height: 60px;
  background: #333333;
  border-radius: 30px;
  box-shadow: 0 7px #000000;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  line-height: 62px;
  transition: all 0.3s ease;
}
.ie11 .form .area_btn .btn_black {
  border: 1px solid #333333;
  line-height: 72px;
}
.form .area_btn .btn_orange {
  width: 310px;
}
.form .area_btn .btn_black,
.form .area_btn .btn_orange {
  margin-top: 50px;
}

@media screen and (min-width: 769px) {
  .form .btn_black:hover {
    box-shadow: 0 3px #000000;
    transform: translate(0, 3px);
  }
}

@media screen and (max-width: 768px) {
  .form.confirm .contents,
  .form.thanks .contents {
    padding: 100px 0 10%;
  }

  .form.confirm .box_inquiry dt:nth-of-type(1) {
    margin-top: 0;
  }
  .form .area_btn {
    flex-wrap: wrap;
    width: 100%;
  }
  .form .area_btn p {
    width: 100%;
  }
  .form .area_btn .btn_black {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    box-shadow: 0 5px #000000;
    font-size: 1.6rem;
    line-height: 42px;
  }
  .form .area_btn .btn_orange {
    width: 100%;
  }
  .form .area_btn .btn_black,
  .form .area_btn .btn_orange {
    margin-top: 8%;
  }
}

/*============================
thanks
===========================*/

.form.thanks .area_btn {
  width: 690px;
}
.form.thanks .area_btn .btn_orange {
  width: 340px;
}
.form.thanks .area_btn .btn_black,
.form.thanks .area_btn .btn_orange {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .form.thanks .area_btn {
    width: 100%;
  }
  .form.thanks .area_btn .btn_orange {
    width: 100%;
  }

  .form.thanks .area_btn .btn_black,
  .form.thanks .area_btn .btn_orange {
    margin-top: 15px;
  }
}

/*============================
qa
===========================*/

.qa .ttl_upper {
  margin-top: 40px;
}
.qa .ttl_under {
  margin-bottom: 70px;
}
.qa .area_secqa dt {
  min-height: 32px;
  font-size: 2rem;
  font-weight: bold;
}
.qa .area_secqa dt,
.qa .area_secqa dd {
  position: relative;
  padding: 2px 0 0 45px;
}
.qa .area_secqa dd {
  padding-bottom: 30px;
  margin-top: 20px;
  border-bottom: 1px solid #bfbfbf;
}
.qa .area_secqa dd p {
  font-size: 1.5rem;
  line-height: 1.7;
}
.qa .area_secqa dd p a {
  text-decoration: underline;
}
.qa .area_secqa dd + dt {
  margin-top: 30px;
}
.qa .area_secqa dd .img {
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 204px;
}
.qa .area_secqa dd:nth-of-type(1) {
  padding-bottom: 70px;
}
.qa .area_secqa dt:before,
.qa .area_secqa dd:before {
  content: "";
  position: absolute;
  left: 0;
  width: 32px;
  height: 32px;
}
.qa .area_secqa dt:before {
  top: 0;
  background: url("../img/qa/icon_q.png") 0 0 no-repeat;
  background-size: 32px 32px;
}
.qa .area_secqa dd:before {
  top: 0;
  background: url("../img/qa/icon_a.png") 0 0 no-repeat;
  background-size: 32px 32px;
}

.qa .area_secqa .btn_orange {
  width: 310px;
  height: 60px;
  border-radius: 30px;
  box-shadow: 0 7px #cf5a24;
  margin: 45px auto 0;
  line-height: 62px;
}
.ie11 .qa .area_secqa .btn_orange {
  line-height: 72px;
}

@media screen and (min-width: 769px) {
  .qa .area_secqa .btn_orange:hover {
    box-shadow: 0 3px #cf5a24;
    transform: translate(0, 3px);
  }
}

@media screen and (max-width: 768px) {
  .qa .ttl_under {
    margin-bottom: 6%;
  }
  .qa .area_secqa dt {
    min-height: 26px;
    padding-top: 3px;
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .qa .area_secqa dt,
  .qa .area_secqa dd {
    padding-left: 35px;
  }
  .qa .area_secqa dd {
    margin-top: 15px;
    padding-bottom: 15px;
  }
  .qa .area_secqa dd p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .qa .area_secqa dd + dt {
    margin-top: 15px;
  }
  .qa .area_secqa dd .img {
    position: static;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 3%;
    text-align: center;
  }
  .qa .area_secqa dd:nth-of-type(1) {
    padding-bottom: 15px;
  }
  .qa .area_secqa dt:before,
  .qa .area_secqa dd:before {
    width: 26px;
    height: 26px;
  }
  .qa .area_secqa dt:before {
    background: url("../img/qa/icon_q.png") 0 0 no-repeat;
    background-size: 26px 26px;
  }
  .qa .area_secqa dd:before {
    top: 0;
    background: url("../img/qa/icon_a.png") 0 0 no-repeat;
    background-size: 26px 26px;
  }

  .qa .area_secqa .btn_orange {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    box-shadow: 0 5px #cf5a24;
    font-size: 1.6rem;
    line-height: 42px;
    margin: 10% auto 0;
  }
}
