@charset "UTF-8";
@media screen and (min-width: 1080px) {
  .is_sp {
    display: none;
  }
  .font-l {
    font-size: 20px;
  }
  .font-m {
    font-size: 18px;
  }
  .font-xs {
    font-size: 14px;
  }
}
@media screen and (max-width: 1080px) {
  .is_pc {
    display: none;
  }
  .font-l {
    font-size: 4.5vw;
  }
  .font-m {
    font-size: 3.8vw;
  }
  .font-xs {
    font-size: 3vw;
  }
}
/*共通設定*/
body {
  background: #fff;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
}
body ul {
  list-style: none !important;
  padding-left: 0 !important;
}
body a:hover,
body button:hover {
  filter: brightness(1.1);
  opacity: 0.9;
  transition: all 0.2s ease;
}

/*sectionのタイトル*/
.sec_ttl {
  color: #29ab54;
  font-weight: 900;
  text-align: center;
}
.sec_ttl::after {
  content: "";
  display: block;
  background-color: #29ab54;
}
@media screen and (min-width: 1080px) {
  .sec_ttl {
    font-size: 40px;
  }
  .sec_ttl::after {
    width: 60px;
    height: 3px;
    margin: 5px auto 0 auto;
  }
}
@media screen and (max-width: 1080px) {
  .sec_ttl {
    font-size: 5.8vw;
  }
  .sec_ttl::after {
    width: 16vw;
    height: 2px;
    margin: 1.5vw auto 0 auto;
  }
}

/*ヘッダー*/
header {
  background-color: #29ab54;
  width: 100%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
}
header .header_inr {
  display: flex;
  justify-content: space-between;
}
header .logo a {
  display: inline-block;
}
@media screen and (min-width: 1080px) {
  header {
    height: 60px;
  }
  header .header_inr {
    width: 1200px;
    margin: auto;
  }
  header .logo a {
    padding-top: 14px;
  }
  header .logo a img {
    height: 30px;
  }
}
@media screen and (max-width: 1080px) {
  header {
    height: 13vw;
  }
  header .header_inr {
    width: 90vw;
    margin: auto;
  }
  header .logo a {
    padding-bottom: 1vw;
  }
  header .logo a img {
    height: 5vw;
  }
}

/*フォーム*/
.sec_form {
  text-align: center;
}
.sec_form .sec_ttl + .font-m {
  color: #29ab54;
  font-weight: bold;
  margin-top: 1em;
}
.sec_form .form_note {
  text-align: left;
  margin-top: 3em;
  color: #fa883c;
}
.sec_form form {
  text-align: left;
}
.sec_form form .item_ttl {
  color: #091f10;
}
.sec_form form .item_ttl.is_must::after {
  content: "※";
  color: #fa883c;
}
.sec_form form .item_field {
  width: 100%;
  background-color: #f3f3f3;
  border: none;
  border-radius: 3px;
}
.sec_form form .item_field.is_select,
.sec_form form .item_field.is_comment {
  color: #091f10;
}
.sec_form form .agreeCheck {
  text-align: center;
}
.sec_form form .agreeCheck a {
  color: #29ab54;
}
.sec_form form button {
  color: #fff;
  background-color: #fa883c;
  font-weight: bold;
  border: none;
  display: block;
  margin: 0 auto;
}
.sec_form form button:disabled {
  background-color: #ccc;
  pointer-events: none;
}
.sec_form .thanks_button a {
  color: #fff;
  background-color: #fa883c;
  font-weight: bold;
  border: none;
  display: block;
  margin: 0 auto;
  text-decoration: none;
}
@media screen and (min-width: 1080px) {
  .sec_form {
    margin: 100px auto;
    width: 700px;
  }
  .sec_form .form_note {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .sec_form form {
    font-size: 18px;
  }
  .sec_form form .item_field {
    margin: 5px auto 35px auto;
    height: 45px;
    line-height: 45px;
    padding: 0 1em;
  }
  .sec_form form .item_field.is_comment {
    height: 90px;
  }
  .sec_form form .agreeCheck {
    margin: 40px auto;
  }
  .sec_form form .agreeCheck p {
    font-size: 14px;
    margin-top: 20px;
  }
  .sec_form form button {
    font-size: 15px;
    padding: 10px 100px;
    border-radius: 30px;
    cursor: pointer;
  }
  .sec_form .thanks_button a {
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    margin: 70px auto 130px auto;
    width: 330px;
    height: 50px;
    line-height: 50px;
  }
}
@media screen and (max-width: 1080px) {
  .sec_form {
    margin: 15vw auto;
    width: 90vw;
  }
  .sec_form .form_note {
    font-size: 3vw;
    margin-bottom: 5vw;
  }
  .sec_form form {
    font-size: 3.8vw;
  }
  .sec_form form .item_field {
    margin: 1vw auto 7vw auto;
    height: 12vw;
    line-height: 12vw;
    padding: 0 1em;
  }
  .sec_form form .item_field.is_comment {
    height: 24vw;
  }
  .sec_form form .agreeCheck {
    margin: 5vw auto 7vw;
  }
  .sec_form form .agreeCheck p {
    font-size: 3.4vw;
    margin-top: 1.5em;
  }
  .sec_form form button {
    font-size: 4vw;
    padding: 2vw 20vw;
    border-radius: 30px;
    cursor: pointer;
  }
  .sec_form .thanks_button a {
    font-size: 4vw;
    width: 70vw;
    height: 10vw;
    line-height: 10vw;
    margin: 10vw auto 20vw auto;
    border-radius: 5vw;
  }
}

/*その他のサービス*/
.sec_other .sec_ttl::after {
  margin-top: 10px;
}
.sec_other .other_wrp {
  background-color: #eafaef;
}
.sec_other .other_wrp .other_txt {
  color: #091f10;
}
@media screen and (min-width: 1080px) {
  .sec_other {
    margin-top: 60px;
  }
  .sec_other .sec_ttl {
    font-size: 28px;
  }
  .sec_other .other_wrp {
    margin-top: 30px;
  }
  .sec_other .other_wrp .other_cnt {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
  }
}
@media screen and (max-width: 1080px) {
  .sec_other {
    margin-top: 26vw;
  }
  .sec_other .sec_ttl {
    font-size: 5vw;
  }
  .sec_other .other_wrp {
    margin-top: 8vw;
  }
  .sec_other .other_wrp .other_cnt {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
  }
}

/*導入の流れ*/
.sec_flow {
  text-align: center;
}
.sec_flow .flow_cnt {
  position: relative;
}
.sec_flow .flow_cnt .flow_main_ttl {
  color: #29ab54;
  display: inline-block;
  position: absolute;
}
.sec_flow .flow_cnt .flow_main_ttl::before {
  content: "";
  display: inline-block;
  background-image: url(/img/services/gx-navi/icn_check.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.sec_flow .flow_cnt .flow_card {
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
}
.sec_flow .flow_cnt .flow_card .flow_num {
  color: #fff;
  font-weight: bold;
  z-index: 10;
}
.sec_flow .flow_cnt .flow_card .flow_num.is_start {
  background-color: #fa883c;
}
.sec_flow .flow_cnt .flow_card .flow_num.is_goal {
  background-color: #29ab54;
}
@media screen and (min-width: 1080px) {
  .sec_flow {
    margin: 0 auto 0 auto;
    width: 100%;
    padding: 55px 0;
    background-color: #eafaef;
  }
  .sec_flow .flow_cnt {
    display: flex;
    justify-content: space-between;
    width: 1000px;
    margin: 55px auto 0 auto;
  }
  .sec_flow .flow_cnt .flow_main_ttl {
    font-size: 22px;
    left: 0px;
    padding-left: 45px;
    top: -45px;
  }
  .sec_flow .flow_cnt .flow_main_ttl::before {
    width: 35px;
    height: 39px;
    position: absolute;
    left: 0px;
    top: -5px;
  }
  .sec_flow .flow_cnt .flow_card {
    width: 180px;
    height: 220px;
    padding: 0 15px;
    text-align: center;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .sec_flow .flow_cnt .flow_card:not(:last-of-type)::after {
    content: "";
    background-image: url(/img/services/gx-navi/flow_arrow.png);
    height: 16px;
    width: 30px;
    background-size: contain;
    display: block;
    transform: rotate(270deg);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -28px;
  }
  .sec_flow .flow_cnt .flow_card .flow_num {
    position: absolute;
    top: 0;
    left: 0;
  }
  .sec_flow .flow_cnt .flow_card .flow_num.is_start,
  .sec_flow .flow_cnt .flow_card .flow_num.is_goal {
    width: 100%;
    font-size: 20px;
    height: 45px;
    line-height: 45px;
  }
  .sec_flow .flow_cnt .flow_card .flow_num.is_num {
    font-size: 24px;
    text-align: left;
    padding-left: 0.3em;
  }
  .sec_flow .flow_cnt .flow_card .flow_num.is_num::before {
    content: "";
    position: absolute;
    border-style: solid;
    border-color: #29ab54 transparent transparent transparent;
    border-width: 55px 55px 0 0;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .sec_flow .flow_cnt .flow_card .flow_ttl {
    margin-top: 2em;
  }
  .sec_flow .flow_cnt .flow_card .flow_ttl.is_num {
    margin-top: 1em;
  }
  .sec_flow .flow_cnt .flow_card .flow_txt {
    padding-bottom: 1em;
  }
}
@media screen and (max-width: 1080px) {
  .sec_flow {
    margin: 0 auto 0 auto;
    width: 100vw;
  }
  .sec_flow .flow_cnt {
    background-color: #eafaef;
    margin-top: 8vw;
    padding: 7vw 0 0.1vw 0;
  }
  .sec_flow .flow_cnt .flow_main_ttl {
    font-size: 4.5vw;
    left: 0px;
    padding-left: 13vw;
    top: 5vw;
  }
  .sec_flow .flow_cnt .flow_main_ttl::before {
    width: 6vw;
    height: 6.9vw;
    position: absolute;
    left: 5vw;
    top: 0;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .sec_flow .flow_cnt .flow_card {
    width: 90vw;
    margin: 8vw auto;
    padding: 5vw 5vw 6vw 5vw;
    text-align: center;
    position: relative;
  }
  .sec_flow .flow_cnt .flow_card:not(:last-of-type)::after {
    content: "";
    background-image: url(/img/services/gx-navi/flow_arrow.png);
    background-repeat: no-repeat;
    height: 3vw;
    width: 6vw;
    background-size: contain;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -6vw;
  }
  .sec_flow .flow_cnt .flow_card .flow_num {
    position: absolute;
    top: 0;
    left: 0;
  }
  .sec_flow .flow_cnt .flow_card .flow_num.is_start,
  .sec_flow .flow_cnt .flow_card .flow_num.is_goal {
    width: 25vw;
    font-size: 4.5vw;
    height: 8.5vw;
    line-height: 8.5vw;
  }
  .sec_flow .flow_cnt .flow_card .flow_num.is_num {
    font-size: 4.5vw;
    text-align: left;
    padding-left: 0.3em;
  }
  .sec_flow .flow_cnt .flow_card .flow_num.is_num::before {
    content: "";
    position: absolute;
    border-style: solid;
    border-color: #29ab54 transparent transparent transparent;
    border-width: 10vw 10vw 0 0;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .sec_flow .flow_cnt .flow_card .flow_img img {
    width: 18vw;
    height: auto;
    position: absolute;
    left: 6.5svw;
    top: 11vw;
  }
  .sec_flow .flow_cnt .flow_card .flow_ttl {
    font-size: 4.5vw;
  }
  .sec_flow .flow_cnt .flow_card .flow_txt {
    font-size: 4vw;
    margin-top: 2vw;
  }
  .sec_flow .flow_cnt .flow_card .flow_ttl.is_start,
  .sec_flow .flow_cnt .flow_card .flow_ttl.is_goal,
  .sec_flow .flow_cnt .flow_card .flow_txt.is_start,
  .sec_flow .flow_cnt .flow_card .flow_txt.is_goal {
    width: 80vw;
  }
}

/*フッター*/
footer {
  background-color: #016622;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 100;
}
footer .link_ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .link_ul li:not(:last-of-type)::after {
  content: "|";
  display: inline-block;
  padding: 0 20px;
}
footer .link_ul a {
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 1080px) {
  footer {
    padding: 45px 0;
  }
  footer small {
    display: block;
    font-size: 14px;
    margin-top: 45px;
  }
  footer .link_ul {
    font-size: 16px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1080px) {
  footer {
    padding: 5vw 0;
  }
  footer small {
    display: block;
    font-size: 3vw;
    margin-top: 8vw;
  }
  footer .link_ul {
    font-size: 3vw;
    margin-top: 3vw;
  }
}
footer .page-top a {
  display: block;
  background-color: #29ab54;
  border-radius: 50%;
  position: absolute;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
}
footer .page-top a::after {
  content: "";
  display: block;
  background-image: url(/img/services/gx-navi/icn_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: rotate(180deg);
  right: 0px;
  left: 0;
  margin: auto;
}
@media screen and (min-width: 1080px) {
  footer .page-top a {
    width: 80px;
    height: 80px;
    top: 50px;
    right: 50px;
    font-size: 20px;
    padding-top: 30px;
  }
  footer .page-top a::after {
    width: 20px;
    height: 11px;
    top: 20px;
  }
}
@media screen and (max-width: 1080px) {
  footer .page-top a {
    width: 14vw;
    height: 14vw;
    top: -2vw;
    right: 2vw;
    font-size: 4vw;
    padding-top: 5.5vw;
  }
  footer .page-top a::after {
    width: 4vw;
    height: 2vw;
    top: 3.5vw;
  }
} /*# sourceMappingURL=form.css.map */
