@charset "UTF-8";
img, svg {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: bottom;
}

body {
  font-family: "Noto Sans JP", "Roboto", sans-serif;
  opacity: 0;
  transition: all 1s;
  color: #353535;
}
body.is-active {
  opacity: 1;
}
body .header {
  position: fixed;
  z-index: 10;
  background: transparent;
  transition: all 0.2s ease-in;
}
body .header .header__wrap {
  display: flex;
  justify-content: space-between;
}
body .header .header__wrap .headerLogo__wrap svg {
  fill: #fff;
  transition: all 0.3s;
}
body .header .header__wrap .headerLogo__wrap svg:hover {
  opacity: 0.4;
}
body .header .header__wrap .headerNavi {
  display: flex;
}
body .header .header__wrap .headerNavi .headerInquiry .headerInquiry__wrap--link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  border-radius: 6px;
  background: #0729a8;
  transition: all 0.3s;
}
body .header .header__wrap .headerNavi .headerInquiry .headerInquiry__wrap--link:hover {
  background: #000;
}
body .header .header__wrap .headerNavi .headerInquiry .headerInquiry__wrap--link .headerInquiryImg__wrap .headerInquiryImg_img {
  width: 25px;
  height: 25px;
}
body .header.is-active {
  background: #fff;
}
body .header.is-active .header__wrap .headerLogo__wrap svg {
  fill: #0729a8;
}
body .attribute .attribute__wrap {
  display: flex;
}
body .attribute .attribute__wrap .attribute__item {
  text-align: center;
}
body .attribute .attribute__wrap .attribute__item .item__text {
  padding-left: 1.5em;
  font-size: 2em;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
body .attribute .attribute__wrap .attribute__item .company__tel {
  position: relative;
}
body .attribute .attribute__wrap .attribute__item .company__tel::before {
  content: url("../images/icon-tel.svg");
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 36px;
  margin: auto;
}
body .attribute .attribute__wrap .attribute__item .company__fax {
  position: relative;
}
body .attribute .attribute__wrap .attribute__item .company__fax::before {
  content: url("../images/icon-fax.svg");
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 36px;
  margin: auto;
}
body .attribute .attribute__wrap .attribute__item .company__hours {
  position: relative;
}
body .attribute .attribute__wrap .attribute__item .company__hours::before {
  content: url("../images/icon-hours.svg");
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 36px;
  margin: auto;
}
body .footer {
  background-image: url("../images/footer_bg.jpg");
  background-color: rgba(5, 168, 232, 0.9);
  background-blend-mode: soft-light;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
body .footer .footer__wrap .gotop__wrap {
  display: flex;
  justify-content: flex-end;
}
body .footer .footer__wrap .gotop__wrap .gotop__btn {
  position: relative;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  background: #0729a8;
  border-radius: 6px;
  transition: all 0.3s;
}
body .footer .footer__wrap .gotop__wrap .gotop__btn:hover {
  background: #000;
}
body .footer .footer__wrap .gotop__wrap .gotop__btn::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(-45deg);
  transition: all 0.3s;
}
body .footer .footer__wrap .footer__column .footer__column--left .company .company__name {
  margin-bottom: 0.5em;
  color: #fff;
}
body .footer .footer__wrap .footer__column .footer__column--left .company .company__address {
  color: #fff;
  line-height: 1.6;
}
body .footer .footer__wrap .footer__column .footer__column--right {
  display: flex;
}
body .footer .footer__wrap .footer__column .footer__column--right .footerNav__column .footerNavItem__wrap {
  margin-bottom: 2em;
}
body .footer .footer__wrap .footer__column .footer__column--right .footerNav__column .footerNavItem__wrap .footerNavItem__ttl {
  margin-bottom: 1em;
}
body .footer .footer__wrap .footer__column .footer__column--right .footerNav__column .footerNavItem__wrap .footerNavItem__ttl .footerNavItem__item--link {
  color: #fff;
  opacity: 1;
  transition: all 0.3s;
}
body .footer .footer__wrap .footer__column .footer__column--right .footerNav__column .footerNavItem__wrap .footerNavItem__ttl .footerNavItem__item--link:hover {
  opacity: 0.5;
}
body .footer .footer__wrap .footer__column .footer__column--right .footerNav__column .footerNavItem__wrap .footerNavItem__item {
  margin-bottom: 0.5em;
}
body .footer .footer__wrap .footer__column .footer__column--right .footerNav__column .footerNavItem__wrap .footerNavItem__item .footerNavItem__item--link {
  color: #fff;
  opacity: 1;
  transition: all 0.3s;
}
body .footer .footer__wrap .footer__column .footer__column--right .footerNav__column .footerNavItem__wrap .footerNavItem__item .footerNavItem__item--link:hover {
  opacity: 0.5;
}
body .footer .copyright__txt {
  width: 100%;
  padding-bottom: 3em;
  color: #e6e6e6;
  text-align: center;
}

@media screen and (max-width: 767px) {
  body .header {
    width: 100%;
  }
  body .header .header__wrap {
    align-items: center;
    width: calc(100% - 2em);
    margin: 0.5em 1em;
  }
  body .header .header__wrap .headerLogo__wrap {
    width: 170px;
    margin: auto 1em auto 0;
  }
  body .header .header__wrap .headerNavi .headerInquiry .headerInquiry__wrap--link {
    padding: 0.2em 0.7em;
  }
  body .header .header__wrap .headerNavi .headerNavSp {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 50px;
    height: auto;
  }
  body .header .header__wrap .headerNavi .headerNavSp .hamburgerMenu {
    z-index: 10;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
  }
  body .header .header__wrap .headerNavi .headerNavSp .hamburgerMenu.is-active {
    z-index: 1100;
  }
  body .header .header__wrap .headerNavi .headerNavSp .hamburgerMenu.is-active span:nth-of-type(1) {
    top: 15px;
    left: 10px;
    transform: translateY(5px) rotate(-45deg);
    width: 50%;
  }
  body .header .header__wrap .headerNavi .headerNavSp .hamburgerMenu.is-active span:nth-of-type(2) {
    top: 25px;
    left: 10px;
    transform: translateY(-5px) rotate(45deg);
    width: 50%;
  }
  body .header .header__wrap .headerNavi .headerNavSp .hamburgerMenu span {
    display: inline-block;
    position: absolute;
    left: 10px;
    height: 2px;
    background: rgb(31, 31, 31);
    transition: all 0.3s;
  }
  body .header .header__wrap .headerNavi .headerNavSp .hamburgerMenu span:nth-of-type(1) {
    top: 14px;
    width: 20px;
  }
  body .header .header__wrap .headerNavi .headerNavSp .hamburgerMenu span:nth-of-type(2) {
    top: 25px;
    width: 20px;
  }
  body .header .header__wrap .headerNavi .headerNavSp .headerNavSp__wrap {
    position: fixed;
    justify-content: space-around;
    z-index: -50;
    visibility: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgb(17, 25, 102);
    opacity: 0;
    overflow-y: auto;
    transition: all 0.5s;
  }
  body .header .header__wrap .headerNavi .headerNavSp .headerNavSp__wrap.is-active {
    z-index: 1000;
    display: flex;
    visibility: visible;
    opacity: 1;
  }
  body .header .header__wrap .headerNavi .headerNavSp .headerNavSp__wrap::before {
    content: "";
    width: 1px;
    height: calc(100vh + 1px);
  }
  body .header .header__wrap .headerNavi .headerNavSp .headerNavSp__wrap::after {
    content: "";
    width: 1px;
    height: calc(100vh + 1px);
  }
  body .header .header__wrap .headerNavi .headerNavSp .headerNavSp__wrap .headerNavSp__item {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 5em;
    padding: 0 1em 1em 1em;
  }
  body .header .header__wrap .headerNavi .headerNavSp .headerNavSp__wrap .headerNavSp__item .menu__wrap {
    border-top: solid 1px #fff;
  }
  body .header .header__wrap .headerNavi .headerNavSp .headerNavSp__wrap .headerNavSp__item .menu__wrap .menu__item {
    padding: 1em 0;
    border-bottom: solid 1px #fff;
    text-align: left;
    font-size: 18px;
  }
  body .header .header__wrap .headerNavi .headerNavSp .headerNavSp__wrap .headerNavSp__item .menu__wrap .menu__item .menu__item--link {
    display: block;
    padding: 0 2em;
    color: #fff;
  }
  body .header.is-active {
    background: #fff;
  }
  body .header.is-active .headerNavi .headerNavPc__item .menu__wrap .menu__item .menu__item--link {
    color: #000;
  }
  body .attribute {
    margin: 4em auto 0;
    padding: 1em;
  }
  body .attribute .attribute__wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  body .attribute .attribute__wrap .attribute__item {
    width: 50%;
    margin-bottom: 1em;
  }
  body .attribute .attribute__wrap .attribute__item:first-of-type {
    border-right: solid 1px #acacac;
  }
  body .attribute .attribute__wrap .attribute__item .item__text {
    padding-left: 2em;
    font-size: 5vw;
  }
  body .footer {
    margin-top: 2em;
  }
  body .footer .footer__wrap .gotop__wrap {
    justify-content: center;
  }
  body .footer .footer__wrap .footer__column {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin: 1em auto 0;
    padding: 1em;
  }
  body .footer .footer__wrap .footer__column .footer__column--left .company .company__name {
    font-size: 1em;
    margin-bottom: 0.5em;
  }
  body .footer .footer__wrap .footer__column .footer__column--right {
    width: 100%;
    flex-wrap: wrap;
  }
  body .footer .footer__wrap .footer__column .footer__column--right .footerNav__column {
    width: calc(50% - 1em);
    margin-right: 1em;
    margin-bottom: 1em;
  }
  body .footer .footer__wrap .footer__column .footer__column--right .footerNav__column:nth-of-type(2) {
    margin-right: 0;
  }
  body .footer .footer__wrap .footer__column .footer__column--right .footerNav__column:nth-of-type(3) {
    width: 100%;
    margin-right: 0;
  }
  body .footer .footer__wrap .footer__column .footer__column--right .footerNav__column .footerNavItem__wrap {
    margin-bottom: 1em;
  }
  body .footer .footer__wrap .footer__column .footer__column--right .footerNav__column .footerNavItem__wrap .footerNavItem__ttl {
    margin-bottom: 1em;
  }
  body .footer .footer__wrap .footer__column .footer__column--right .footerNav__column .footerNavItem__wrap .footerNavItem__item {
    margin-bottom: 0.5em;
  }
  body .footer .copyright__txt {
    padding: 1em 0;
    font-size: 0.6em;
  }
}
@media screen and (min-width: 768px) {
  body .header {
    width: 100%;
  }
  body .header .header__wrap {
    max-width: 1100px;
    margin: 1em auto 1em;
    padding: 0 2em;
  }
  body .header .header__wrap .headerLogo__wrap {
    margin: auto 1em auto 0;
  }
  body .header .header__wrap .headerLogo__wrap .headerLogo__img {
    width: 200px;
    height: 50px;
  }
  body .header .header__wrap .headerNavi .headerNavPc__item {
    display: flex;
    align-items: center;
    margin-right: 2em;
  }
  body .header .header__wrap .headerNavi .headerNavPc__item .menu__wrap {
    display: flex;
  }
  body .header .header__wrap .headerNavi .headerNavPc__item .menu__wrap .menu__item {
    margin-right: 2em;
  }
  body .header .header__wrap .headerNavi .headerNavPc__item .menu__wrap .menu__item .menu__item--link {
    position: relative;
    display: block;
    color: #fff;
    font-size: 0.8em;
    transition: all 0.3s;
  }
  body .header .header__wrap .headerNavi .headerNavPc__item .menu__wrap .menu__item .menu__item--link:hover {
    opacity: 0.4;
  }
  body .header .header__wrap .headerNavi .headerNavPc__item .menu__wrap .menu__item:last-of-type {
    margin-right: 0;
  }
  body .header .header__wrap .headerNavi .headerInquiry .headerInquiry__wrap--link {
    padding: 0.3em 1em;
  }
  body .header .header__wrap .headerNavi .headerInquiry .headerInquiry__wrap--link .headerInquiry__txt {
    font-size: 0.8rem;
  }
  body .header.is-active {
    background: #fff;
  }
  body .header.is-active .headerNavi .headerNavPc__item .menu__wrap .menu__item .menu__item--link {
    color: #000;
  }
  body .attribute {
    max-width: 1100px;
    margin: 8em auto 0;
    padding: 0 2em;
  }
  body .attribute .attribute__wrap {
    justify-content: space-between;
  }
  body .attribute .attribute__wrap .attribute__item {
    width: 33.3333333333%;
    border-right: solid 1px #acacac;
  }
  body .attribute .attribute__wrap .attribute__item:last-of-type {
    border-right: 0;
  }
  body .footer .footer__wrap {
    max-width: 1100px;
    margin: 4em auto 0;
    padding: 0 2em;
  }
  body .footer .footer__column {
    display: flex;
    justify-content: space-between;
    margin: 2em 0;
  }
  body .footer .footer__column .footer__column--left {
    width: calc(50% - 24px);
  }
  body .footer .footer__column .footer__column--left .company .company__name {
    font-size: 0.8em;
  }
  body .footer .footer__column .footer__column--left .company .company__address {
    font-size: 0.8em;
  }
  body .footer .footer__column .footer__column--right {
    width: calc(50% - 24px);
    justify-content: space-between;
  }
  body .footer .footer__column .footer__column--right .footerNav__column .footerNavItem__wrap {
    margin-bottom: 2em;
  }
  body .footer .footer__column .footer__column--right .footerNav__column .footerNavItem__wrap .footerNavItem__ttl {
    margin-bottom: 1em;
    font-size: 1em;
  }
  body .footer .footer__column .footer__column--right .footerNav__column .footerNavItem__wrap .footerNavItem__item {
    margin-bottom: 0.5em;
    font-size: 0.8em;
  }
  body .copyright__txt {
    font-size: 10px;
  }
}
body .sub .sub__wrap .pageTtl__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/sub_bg-min.jpg");
  background-color: rgba(5, 168, 232, 0.9);
  background-blend-mode: soft-light;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
body .sub .breadcrumbs .breadcrumbs__list {
  display: flex;
  margin: 1em 0;
}
body .sub .breadcrumbs .breadcrumbs__list .breadcrumbs__item {
  position: relative;
  margin-right: 1em;
  padding-right: 1em;
  font-size: 0.8em;
  color: #353535;
}
body .sub .breadcrumbs .breadcrumbs__list .breadcrumbs__item::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: solid 1px #666;
  border-right: solid 1px #666;
  transform: rotate(45deg);
}
body .sub .breadcrumbs .breadcrumbs__list .breadcrumbs__item:last-of-type::after {
  display: none;
}
body .sub .breadcrumbs .breadcrumbs__list .breadcrumbs__item a {
  color: #000;
  transition: all 0.3s;
}
body .sub .breadcrumbs .breadcrumbs__list .breadcrumbs__item a:hover {
  color: #007fbf;
}
body .sub .main .column__wrap .column__ttl {
  text-align: center;
  color: #270973;
  font-weight: bold;
}
body .sub .main .column__wrap .column__txt {
  text-align: center;
  line-height: 1.8;
  color: #5a5a5a;
}
body .sub .main .column__wrap .column__subTtl {
  margin-bottom: 1em;
  font-family: "Roboto";
  font-weight: bold;
  text-align: center;
}
body .sub .main .column__wrap .products {
  display: flex;
}
body .sub .main .column__wrap .about__main {
  margin-top: 3em;
}
body .sub .main .column__wrap .recruit__main .recruitMainText__wrap {
  background: #0729a8;
  color: #fff;
}
body .sub .main .column__wrap .column__area .project__flow {
  background: #e1efff;
}
body .sub .main .column__wrap .column__area .project__flow .flow__item {
  padding: 0.5em;
  background: #fff;
  border-radius: 12px;
}
body .sub .main .column__wrap .column__area .project__flow .flow__item .flowItem__wrap .flowItem__ttl {
  width: 1.6em;
  padding: 0.3em;
  background: #000;
  border-radius: 50%;
  color: #fff;
  font-family: "Roboto";
  font-weight: normal;
  text-align: center;
}
body .sub .main .column__wrap .column__area .project__flow .flow__item .flowItem__wrap .flowItem__txt {
  line-height: 1;
}
body .sub .main .column__wrap .column__area .project__consult {
  border: solid 1px #0729a8;
}
body .sub .main .column__wrap .column__area .project__consult .consult {
  border-bottom: solid 1px #0729a8;
}
body .sub .main .column__wrap .column__area .project__consult .consult .consult__ttl {
  display: flex;
  padding: 1em;
}
body .sub .main .column__wrap .column__area .project__consult .consult .consult__ttl .consult__item {
  display: flex;
  align-items: center;
  margin-right: 1em;
}
body .sub .main .column__wrap .column__area .project__consult .consult .consult__ttl .consult__item .item__ttl {
  width: 1.6em;
  padding: 0.3em;
  background: #000;
  border-radius: 50%;
  color: #fff;
  font-family: "Roboto";
  font-weight: normal;
  text-align: center;
}
body .sub .main .column__wrap .column__area .project__consult .consult .consult__ttl .consult__item .item__txt {
  margin-left: 1em;
}
body .sub .main .column__wrap .column__area .project__consult .consult .consult__ttx {
  padding: 1em;
  padding-top: 0;
  line-height: 1.6;
}
body .sub .main .column__wrap .column__area .project__suggestion .suggestion__box {
  position: relative;
  padding: 2em 1em 1em 1em;
}
body .sub .main .column__wrap .column__area .project__suggestion .suggestion__box .suggestion__tag {
  position: absolute;
  top: 0.8em;
  left: -1em;
  padding: 0.2em 0.3em;
  background: #000;
  color: #fff;
  line-height: 1;
  font-size: 0.7rem;
  font-family: "Roboto";
}
body .sub .main .column__wrap .column__area .project__suggestion .suggestion__box .suggestion__txt {
  line-height: 1.6;
}
body .sub .main .column__wrap .column__area .project__suggestion .suggestion__wrap--left {
  border: solid 1px #ccc;
}
body .sub .main .column__wrap .column__area .project__suggestion .suggestion__wrap--right {
  border: solid 2px #0729a8;
}
body .sub .main .column__wrap .column__area .table__wrap {
  display: flex;
  flex-wrap: wrap;
}
body .sub .main .column__wrap .column__area .table__wrap .table__ttl {
  border-top: solid 1px #ccc;
  background: #e8e8e8;
  font-weight: normal;
  color: #353535;
}
body .sub .main .column__wrap .column__area .table__wrap .table__txt {
  color: #353535;
}
body .sub .main .column__wrap .column__area .table__wrap .table__txt:last-of-type {
  border-bottom: solid 1px #ccc;
}
body .sub .main .column__wrap .column__area .table__wrap .table__txt .table__list .list__item {
  position: relative;
  margin-bottom: 0.75em;
  padding-left: 1em;
}
body .sub .main .column__wrap .column__area .table__wrap .table__txt .table__list .list__item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  content: "";
  width: 0.4em;
  height: 0.4em;
  margin: auto;
  border-radius: 50%;
  background: #5a5a5a;
}
body .sub .main .column__wrap .column__area .table__wrap .table__txt .table__list .list__item .list__item--link {
  text-decoration: underline;
  text-decoration-color: #007fbf;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  color: #000;
  transition: all 0.2s;
}
body .sub .main .column__wrap .column__area .table__wrap .table__txt .table__list .list__item .list__item--link:hover {
  color: #007fbf;
  text-decoration: none;
  text-underline-offset: 0px;
}
body .sub .main .column__wrap .column__area .table__wrap .recruit__txt {
  line-height: 1.6;
}
body .sub .main .column__wrap .column__area .greet__wrap .greet__txt {
  font-size: 1rem;
}
body .sub .main .column__wrap .column__area .greet__wrap .greet__photo .greetPhoto__wrap .greetPhoto__txt {
  padding: 1em;
  background: #0729a8;
  color: #fff;
  font-size: 1rem;
}
body .sub .main .column__wrap .column__area .mission__wrap .mission__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-left: solid 1px #0729a8;
}
body .sub .main .column__wrap .column__area .mission__wrap .mission__item .mission__ttl {
  margin-bottom: 0.5em;
  font-family: "Roboto";
  font-weight: bold;
  color: #0729a8;
  opacity: 0.1;
  transition: 0.3 all;
}
body .sub .main .column__wrap .column__area .mission__wrap .mission__item .mission__txt {
  padding: 0 1em;
  line-height: 1.4;
  text-align: center;
}
body .sub .main .column__wrap .column__area .history__flow {
  display: flex;
  flex-wrap: wrap;
  border-left: solid 5px #0729a8;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}
body .sub .main .column__wrap .column__area .history__flow .historyFlow__ttl {
  width: 10em;
  padding: 1em;
  border-bottom: dashed 1px #ccc;
}
body .sub .main .column__wrap .column__area .history__flow .historyFlow__ttl:last-of-type {
  border-bottom: 0;
}
body .sub .main .column__wrap .column__area .history__flow .historyFlow__txt {
  width: calc(100% - 10em);
  padding: 1em 0;
  border-bottom: dashed 1px #ccc;
  line-height: 1.4;
}
body .sub .main .column__wrap .column__area .history__flow .historyFlow__txt:last-of-type {
  border-bottom: 0;
}
body .sub .main .column__wrap .column__area .recruitText__wrap.mic {
  position: relative;
  margin-left: 65px;
}
body .sub .main .column__wrap .column__area .recruitText__wrap.mic .recruit__catch::before {
  position: absolute;
  content: "";
  top: -7px;
  left: -65px;
  width: 50px;
  height: 50px;
  background-image: url(../images/icon-mic.svg);
  background-size: contain;
}
body .sub .main .column__wrap .column__area .recruit__catch {
  display: inline-block;
  margin-bottom: 1em;
  padding: 0.3em;
  font-size: 1.3rem;
  border-radius: 12px;
  background: #000;
  color: #fff;
}
body .sub .main .column__wrap .column__area .recruit__txt {
  font-size: 1rem;
  line-height: 1.8;
}
body .sub .main .column__wrap .column__area .staff__voice .recruit__catch {
  display: block;
  color: #0729a8;
  padding: 1em 0 0;
  border-top: solid 3px #0729a8;
  border-radius: 0;
  background: none;
  font-weight: bold;
}
body .sub .main .column__wrap .column__area .staff__voice .recruit__txt {
  position: relative;
  padding-bottom: 1em;
  border-bottom: solid 3px #0729a8;
}
body .sub .main .column__wrap .column__area .staff__voice .recruit__txt::before {
  position: absolute;
  content: "";
  bottom: -14px;
  right: 56px;
  border: 8px solid transparent;
  border-top: 8px solid #FFF;
  z-index: 2;
}
body .sub .main .column__wrap .column__area .staff__voice .recruit__txt::after {
  position: absolute;
  content: "";
  bottom: -20px;
  right: 54px;
  border: 10px solid transparent;
  border-top: 10px solid #0729a8;
  z-index: 1;
}
body .sub .main .column__wrap .column__area .staff__voice .staffImg__wrap {
  display: flex;
  justify-content: end;
  margin-top: 2em;
}
body .sub .main .column__wrap .column__area .staff__voice .staffImg__wrap .staffImg__img {
  border-radius: 50%;
  border: solid 3px #0729a8;
}
body .sub .main .column__wrap .production .columnArea__inner .columnArea__ttl {
  margin-bottom: 1em;
  font-weight: bold;
}
body .sub .main .column__wrap .production .columnArea__inner .columnArea__txt {
  margin-bottom: 3em;
  line-height: 1.6;
}
body .sub .main .column__wrap .production__machine .production__ttl {
  margin-bottom: 1em;
  font-size: 1.2rem;
  text-align: center;
}
body .sub .main .column__wrap .production__machine .productionMachine__wrap {
  border-top: solid 2px #000;
  border-bottom: solid 2px #000;
}
body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area {
  padding-top: 1em;
  padding-bottom: 1em;
  border-bottom: solid 1px #ccc;
}
body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area .productionMachine__box {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area .productionMachine__box .productionMachine__ttl {
  margin-bottom: 0.3em;
  color: #0729a8;
  font-size: 1.4rem;
}
body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area .productionMachine__box .productionMachine__type {
  display: block;
  margin-bottom: 2em;
  font-style: "Roboto";
  font-size: 0.8rem;
}
body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area .productionMachine__box .productionMachine__number {
  margin-bottom: 0.5em;
  font-size: 1.2rem;
}
body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area .productionMachine__box .productionMachine__number::before {
  content: "保有台数:  ";
  font-size: 0.8rem;
  color: #888;
}
body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area .productionMachine__box .productionMachine__number .productionMachine__number--inner {
  font-size: 0.9rem;
}
body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area .productionMachine__box .productionMachine__maker {
  margin-bottom: 0.5em;
  font-size: 1rem;
}
body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area .productionMachine__box .productionMachine__maker::before {
  content: "製造会社:  ";
  font-size: 0.8rem;
  color: #888;
}
body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area .productionMachine__box .productionMachine__range {
  font-size: 1rem;
}
body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area .productionMachine__box .productionMachine__range::before {
  content: "加工範囲:  ";
  font-size: 0.8rem;
  color: #888;
}
body .sub .main .column__wrap .machine__list .productionMachine__wrap {
  display: flex;
  flex-wrap: wrap;
}
body .sub .main .column__wrap .machine__list .productionMachine__wrap .productionMachine__area {
  position: relative;
  margin-bottom: 0;
  padding: 2em;
  border-left: solid 1px #ccc;
}
body .sub .main .column__wrap .machine__list .productionMachine__wrap .productionMachine__area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 12px solid #0729a8;
  border-right: 12px solid transparent;
  border-left: 12px solid #0729a8;
  border-bottom: 12px solid transparent;
}
body .sub .main .column__wrap .btnEntry__wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 8em;
}
body .sub .main .column__wrap .btnEntry__wrap .btn__entry {
  margin-top: 3em;
  padding: 1em 3em;
  background: #c9153a;
  color: #fff;
  transition: all 0.3s;
}
body .sub .main .column__wrap .btnEntry__wrap .btn__entry:hover {
  background: #000;
}
body .sub .main .column__wrap .recruit__cat .cat__item {
  position: relative;
}
body .sub .main .column__wrap .recruit__cat .cat__item .banner__item--link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
body .sub .main .column__wrap .recruit__cat .cat__item .banner__item--link::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  margin: auto;
  border: dashed 1px #fff;
  transition: all 0.3s;
}
body .sub .main .column__wrap .recruit__cat .cat__item .banner__item--link:hover::before {
  border: solid 1px #fff;
}
body .sub .main .column__wrap .recruit__cat .cat__item .banner__item--link .banner__tag {
  position: absolute;
  left: -1em;
  top: 1.5em;
  padding: 0.3em;
  background: #000;
  color: #fff;
  font-size: 0.8rem;
}
body .sub .main .column__wrap .recruit__cat .cat__item .banner__item--link .banner__ttl {
  color: #fff;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: bold;
}
body .sub .main .column__wrap .recruit__cat .cat__item .banner__item--link .banner__catch {
  position: absolute;
  right: 0;
  bottom: 3.3em;
  padding: 0.3em;
  font-size: 0.9rem;
  background: #fff;
  color: #0729a8;
}
body .sub .main .column__wrap .recruit__cat .cat__item .banner__item--link .banner__name {
  position: absolute;
  right: 0;
  bottom: 1.5em;
  padding: 0.3em;
  background: #000;
  color: #fff;
  font-size: 0.8rem;
}
body .sub .main .column__wrap .recruit__cat .bg__greeting {
  background-image: url("../images/cat-about-thumb1-min.jpg");
  background-color: rgba(64, 1, 236, 0.884);
  background-blend-mode: overlay;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s;
}
body .sub .main .column__wrap .recruit__cat .bg__greeting:hover {
  opacity: 0.7;
}
body .sub .main .column__wrap .recruit__cat .bg__outline {
  background-image: url("../images/cat-about-thumb2-min.jpg");
  background-color: rgba(27, 61, 212, 0.9);
  background-blend-mode: overlay;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s;
}
body .sub .main .column__wrap .recruit__cat .bg__outline:hover {
  opacity: 0.7;
}
body .sub .main .column__wrap .recruit__cat .bg__application {
  background-image: url("../images/cat-thumb1-min.jpg");
  background-color: rgba(11, 180, 199, 0.9);
  background-blend-mode: overlay;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s;
}
body .sub .main .column__wrap .recruit__cat .bg__application:hover {
  opacity: 0.7;
}
body .sub .main .column__wrap .recruit__cat .bg__interview {
  background-color: rgba(141, 132, 12, 0.9);
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s;
}
body .sub .main .column__wrap .recruit__cat .bg__interview:hover {
  opacity: 0.7;
}
body .sub .main .column__wrap .recruit__cat .bg__staff1 {
  background-image: url("../images/cat-thumb2-min.jpg");
  background-position: left center;
}
body .sub .main .column__wrap .recruit__cat .bg__staff2 {
  background-image: url("../images/cat-thumb3-min.jpg");
  background-position: left center;
}
body .sub .main .column__wrap .recruit__cat .bg__staff3 {
  background-image: url("../images/cat-thumb4-min.jpg");
  background-position: right center;
}
body .sub .main .column__wrap .recruit__cat .bg__staff4 {
  background-image: url("../images/cat-thumb5-min.jpg");
  background-position: left center;
}
body .sub .main .column__wrap .recruit__cat .bg__contact {
  background-image: url("../images/cat-thumb6-min.jpg");
  background-color: rgb(185, 19, 32);
  background-blend-mode: screen;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s;
}
body .sub .main .column__wrap .recruit__cat .bg__contact:hover {
  opacity: 0.7;
}
body .sub .main .column__wrap .form__wrap .form__ttl {
  display: flex;
  justify-content: space-between;
  border-top: solid 1px #ccc;
  background: #e8e8e8;
  font-weight: normal;
}
body .sub .main .column__wrap .form__wrap .form__ttl .form__txt {
  padding: 0.5em 0;
  line-height: 1;
  white-space: nowrap;
}
body .sub .main .column__wrap .form__wrap .form__ttl .form__requirement {
  display: inline-block;
  height: 2em;
  margin-top: 0.3em;
  padding: 0.5em;
  background: #9B0634;
  border-radius: 4px;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1;
}
body .sub .main .column__wrap .form__wrap .form__input {
  border-top: solid 1px #ccc;
}
body .sub .main .column__wrap .form__wrap .form__input:last-of-type {
  border-bottom: solid 1px #ccc;
}
body .sub .main .column__wrap .form__wrap .form__input .form__input--item {
  padding: 0.3em;
  border: solid 1px #ccc;
  border-radius: 4px;
  background: #e8e8e8;
  line-height: 1.4;
  transition: all 0.3s;
}
body .sub .main .column__wrap .form__wrap .form__input .form__input--item:focus::placeholder {
  color: transparent;
}
body .sub .main .column__wrap .form__wrap .form__input .form__textarea--item {
  padding: 0.3em;
  border: solid 1px #ccc;
  border-radius: 4px;
  background: #e8e8e8;
  line-height: 1.6;
}
body .sub .main .column__wrap .form__wrap .form__input .error {
  display: block;
  margin-top: 1em;
  font-size: 0.8rem;
  font-weight: bold;
  color: #9B0634;
}
body .sub .main .column__wrap .form__wrap .form__input .text {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
  white-space: pre-wrap;
}
body .sub .main .column__wrap .form__wrap .checkbox__wrap {
  display: flex;
  align-items: center;
}
body .sub .main .column__wrap .form__wrap .checkbox__wrap label {
  display: flex;
  align-items: center;
  margin-right: 2em;
}
body .sub .main .column__wrap .access .access__txt {
  margin-bottom: 1em;
  line-height: 1.6;
}
body .sub .main .column__wrap .access .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
body .sub .main .column__wrap .access .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body .sub .main .column__wrap .btns {
  display: flex;
}
body .sub .main .column__wrap .btns .btns__btn .btn__confirm,
body .sub .main .column__wrap .btns .btns__btn .btn__send {
  border: solid 1px #c9153a;
  background: #c9153a;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}
body .sub .main .column__wrap .btns .btns__btn .btn__confirm:hover,
body .sub .main .column__wrap .btns .btns__btn .btn__send:hover {
  border: solid 1px #000;
  background: #000;
}
body .sub .main .column__wrap .btns .btns__btn .btn__send {
  display: none;
}
body .sub .main .column__wrap .btns .btns__btn .btn__correct {
  display: none;
  border: solid 1px rgb(31, 31, 31);
  transition: all 0.3s;
}
body .sub .main .column__wrap .btns .btns__btn .btn__correct:hover {
  opacity: 0.5;
}
body .sub .main .column__wrap .checkbox__item {
  display: flex;
  align-items: center;
}
body .sub .main .column__wrap .checkbox__item .checkbox__box {
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  border: solid 1px #ccc;
  border-radius: 4px;
  background: #e8e8e8;
  transition: all 0.3s;
}
body .sub .main .column__wrap .checkbox__item .checkbox__box:checked {
  border: solid 1px rgb(31, 31, 31);
  background: rgb(31, 31, 31);
}
body .sub .main .column__wrap .checkbox__item .checkbox__box:checked + .checkbox__txt::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: -17px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
body .sub .main .column__wrap .checkbox__item .checkbox__txt {
  position: relative;
}

@media screen and (max-width: 767px) {
  body .sub .sub__wrap .pageTtl__wrap {
    width: 100%;
    height: 150px;
    margin: 0 auto;
    font-size: 1.5rem;
  }
  body .sub .breadcrumbs {
    margin: 0 auto;
    padding: 0 1em;
  }
  body .sub .main {
    margin: 0 auto;
    padding: 0 1em;
  }
  body .sub .main .column__wrap {
    margin-top: 2em;
  }
  body .sub .main .column__wrap .column__ttl {
    margin-bottom: 0.5em;
    font-size: 1.4em;
    line-height: 1.6;
    text-align: left;
  }
  body .sub .main .column__wrap .column__txt {
    margin-bottom: 3em;
    font-size: 1em;
    line-height: 1.8;
    text-align: left;
  }
  body .sub .main .column__wrap .column__txt br {
    display: none;
  }
  body .sub .main .column__wrap .column__subTtl {
    font-size: 1.2rem;
  }
  body .sub .main .column__wrap .products {
    flex-wrap: wrap;
    margin-bottom: 3em;
  }
  body .sub .main .column__wrap .products .product__item {
    width: 50%;
  }
  body .sub .main .column__wrap .about__main {
    margin-bottom: 3em;
  }
  body .sub .main .column__wrap .recruit__main {
    margin-bottom: 5em;
  }
  body .sub .main .column__wrap .recruit__main .recruitMainText__wrap {
    width: 100%;
    padding: 1em;
  }
  body .sub .main .column__wrap .recruit__main .recruitMainText__wrap .recruitMainText__catch {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  body .sub .main .column__wrap .recruit__main .recruitMainText__wrap .recruitMainText__profile {
    margin-top: 0.7em;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  body .sub .main .column__wrap .column__area:nth-last-child(1) {
    margin-top: 5em;
  }
  body .sub .main .column__wrap .column__area .project__flow {
    margin-bottom: 3em;
    padding: 1em;
    text-align: center;
  }
  body .sub .main .column__wrap .column__area .project__flow .flow__item {
    position: relative;
    margin-bottom: 1em;
  }
  body .sub .main .column__wrap .column__area .project__flow .flow__item::after {
    content: "";
    position: absolute;
    bottom: -0.6em;
    right: 0;
    left: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: solid 2px #0729a8;
    border-right: solid 2px #0729a8;
    transform: rotate(135deg);
  }
  body .sub .main .column__wrap .column__area .project__flow .flow__item:last-of-type {
    margin-bottom: 0;
  }
  body .sub .main .column__wrap .column__area .project__flow .flow__item:last-of-type::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    margin: auto;
    border-top: none;
    border-right: none;
  }
  body .sub .main .column__wrap .column__area .project__flow .flow__item .flowItem__wrap {
    display: flex;
    align-items: center;
    width: 10em;
  }
  body .sub .main .column__wrap .column__area .project__flow .flow__item .flowItem__wrap .flowItem__txt {
    margin-left: 1em;
    font-size: 1.2rem;
    text-align: left;
  }
  body .sub .main .column__wrap .column__area .project__consult .consult {
    background: #fff;
  }
  body .sub .main .column__wrap .column__area .project__consult .consult:last-child {
    border-bottom: 0;
  }
  body .sub .main .column__wrap .column__area .project__consult .consult .consult__ttl {
    flex-wrap: wrap;
  }
  body .sub .main .column__wrap .column__area .project__suggestion {
    margin-bottom: 3em;
  }
  body .sub .main .column__wrap .column__area .project__suggestion:last-of-type {
    margin-bottom: 0;
  }
  body .sub .main .column__wrap .column__area .project__suggestion .suggestion__box .suggestion__txt {
    font-size: 1rem;
  }
  body .sub .main .column__wrap .column__area .project__suggestion .suggestion__wrap--left {
    position: relative;
    margin-bottom: 3em;
  }
  body .sub .main .column__wrap .column__area .project__suggestion .suggestion__wrap--left::after {
    content: "";
    position: absolute;
    bottom: -1.5em;
    left: 0;
    right: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: solid 2px #0729a8;
    border-right: solid 2px #0729a8;
    transform: rotate(135deg);
  }
  body .sub .main .column__wrap .column__area .table__wrap {
    margin-top: 1em;
  }
  body .sub .main .column__wrap .column__area .table__wrap .table__ttl {
    width: 100%;
    padding: 1em;
  }
  body .sub .main .column__wrap .column__area .table__wrap .table__txt {
    width: 100%;
    padding: 1em;
  }
  body .sub .main .column__wrap .column__area .greet__wrap .greet__txt {
    width: 100%;
    margin-bottom: 1em;
    font-size: 1rem;
    line-height: 1.8;
  }
  body .sub .main .column__wrap .column__area .greet__wrap .greet__photo .greetPhoto__wrap .greetPhoto__txt .greetPhotoTxt__inner {
    font-size: 1.4rem;
  }
  body .sub .main .column__wrap .column__area .history__flow {
    margin-bottom: 3em;
  }
  body .sub .main .column__wrap .column__area .mission__wrap {
    margin-bottom: 3em;
  }
  body .sub .main .column__wrap .column__area .mission__wrap .mission__item {
    height: 250px;
    border-top: solid 1px #0729a8;
    border-right: solid 1px #0729a8;
  }
  body .sub .main .column__wrap .column__area .mission__wrap .mission__item:last-of-type {
    border-bottom: solid 1px #0729a8;
  }
  body .sub .main .column__wrap .column__area .mission__wrap .mission__item .mission__ttl {
    font-size: 3rem;
  }
  body .sub .main .column__wrap .column__area .mission__wrap .mission__item .mission__txt {
    font-size: 1.4rem;
  }
  body .sub .main .column__wrap .column__area .recruit__regular.forward {
    display: flex;
    flex-direction: column-reverse;
  }
  body .sub .main .column__wrap .column__area .recruitPhoto__wrap {
    margin-bottom: 3em;
  }
  body .sub .main .column__wrap .column__area .recruitText__wrap {
    margin-bottom: 3em;
  }
  body .sub .main .column__wrap .column__area .staffImg__wrap .staffImg__img {
    margin-bottom: 3em;
  }
  body .sub .main .column__wrap .production {
    margin-bottom: 3em;
  }
  body .sub .main .column__wrap .production .column__area--left {
    margin-bottom: 3em;
  }
  body .sub .main .column__wrap .production .columnArea__inner .columnArea__ttl {
    font-size: 1.4rem;
  }
  body .sub .main .column__wrap .production .columnArea__inner .columnArea__txt {
    font-size: 1rem;
  }
  body .sub .main .column__wrap .production__machine {
    margin-bottom: 3em;
  }
  body .sub .main .column__wrap .production__machine .production__ttl {
    font-weight: bold;
    font-size: 1rem;
  }
  body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area {
    margin-bottom: 0;
  }
  body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area .productionMachine__photo {
    margin-bottom: 1em;
  }
  body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area .productionMachine__photo .productionMachinePhoto__img {
    width: 100%;
  }
  body .sub .main .column__wrap .machine__list .productionMachine__wrap .productionMachine__area {
    width: 100%;
    padding: 1.5em;
    border-right: solid 1px #ccc;
  }
  body .sub .main .column__wrap .machine__list .productionMachine__wrap .productionMachine__area:last-of-type {
    border-bottom: 0;
  }
  body .sub .main .column__wrap .recruit__cat .cat__item {
    height: 242px;
    width: 100%;
    margin-bottom: 1em;
  }
  body .sub .main .column__wrap .recruit__cat .cat__item:last-of-type {
    margin-bottom: 0;
  }
  body .sub .main .column__wrap .recruit__cat .cat__item .banner__item--link .banner__ttl {
    font-size: 1.7rem;
  }
  body .sub .main .column__wrap .form__wrap {
    margin-top: 1em;
    margin-bottom: 2em;
  }
  body .sub .main .column__wrap .form__wrap .form__ttl {
    width: 100%;
    padding: 0.3em;
    border-bottom: 0;
  }
  body .sub .main .column__wrap .form__wrap .form__input {
    width: 100%;
    padding: 1em 0.3em;
  }
  body .sub .main .column__wrap .form__wrap .form__input:last-of-type {
    border-bottom: solid 1px #ccc;
  }
  body .sub .main .column__wrap .form__wrap .form__input .form__input--item {
    width: 100%;
  }
  body .sub .main .column__wrap .form__wrap .form__input .form__textarea--item {
    width: 100%;
  }
  body .sub .main .column__wrap .form__wrap .checkbox__wrap {
    flex-wrap: wrap;
  }
  body .sub .main .column__wrap .form__wrap .checkbox__wrap .checkbox__item:last-of-type {
    margin-bottom: 0;
  }
  body .sub .main .column__wrap .access .map iframe {
    max-height: 300px;
  }
  body .sub .main .column__wrap .btns {
    justify-content: center;
  }
  body .sub .main .column__wrap .btns .btns__btn .btn__confirm,
  body .sub .main .column__wrap .btns .btns__btn .btn__send {
    margin-right: 1em;
    padding: 1em;
  }
  body .sub .main .column__wrap .btns .btns__btn .btn__correct {
    margin-right: 1em;
    padding: 1em;
  }
}
@media screen and (min-width: 768px) {
  body .sub .sub__wrap .pageTtl__wrap {
    width: 100%;
    height: 150px;
    margin: 0 auto;
    font-size: 1.5rem;
  }
  body .sub .breadcrumbs {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2em;
  }
  body .sub .main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2em;
  }
  body .sub .main .column__wrap {
    margin-top: 3em;
  }
  body .sub .main .column__wrap .column__ttl {
    margin-bottom: 1em;
    font-size: 2em;
  }
  body .sub .main .column__wrap .column__txt {
    margin-bottom: 3em;
  }
  body .sub .main .column__wrap .column__subTtl {
    font-size: 1.2rem;
  }
  body .sub .main .column__wrap .products {
    margin-bottom: 8em;
  }
  body .sub .main .column__wrap .about__main {
    margin-bottom: 5em;
  }
  body .sub .main .column__wrap .recruit__main {
    position: relative;
    margin-bottom: 5em;
  }
  body .sub .main .column__wrap .recruit__main .recruitMainText__wrap {
    position: absolute;
    bottom: -1.5em;
    left: -1.5em;
    max-width: 60%;
    padding: 1em;
  }
  body .sub .main .column__wrap .recruit__main .recruitMainText__wrap .recruitMainText__catch {
    font-size: 1.8rem;
  }
  body .sub .main .column__wrap .recruit__main .recruitMainText__wrap .recruitMainText__profile {
    margin-top: 0.7em;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  body .sub .main .column__wrap .column__area:nth-last-child(1) {
    margin-top: 8em;
  }
  body .sub .main .column__wrap .column__area .project__flow {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3em;
    padding: 2em;
  }
  body .sub .main .column__wrap .column__area .project__flow .flow__item {
    position: relative;
    padding-bottom: 1em;
  }
  body .sub .main .column__wrap .column__area .project__flow .flow__item::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -2em;
    margin: auto;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: solid 2px #0729a8;
    border-right: solid 2px #0729a8;
    transform: rotate(45deg);
  }
  body .sub .main .column__wrap .column__area .project__flow .flow__item:last-of-type::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    margin: auto;
    border-top: none;
    border-right: none;
  }
  body .sub .main .column__wrap .column__area .project__flow .flow__item .flowItem__wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  body .sub .main .column__wrap .column__area .project__flow .flow__item .flowItem__wrap .flowItem__txt {
    margin-top: 1em;
    margin-left: -0.1em;
    font-size: 1.2rem;
    writing-mode: vertical-lr;
    text-align: left;
  }
  body .sub .main .column__wrap .column__area .project__consult {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5em;
    background: #f1f1f1;
  }
  body .sub .main .column__wrap .column__area .project__consult .consult {
    width: 50%;
    background: #fff;
  }
  body .sub .main .column__wrap .column__area .project__consult .consult:nth-child(odd) {
    border-right: solid 1px #0729a8;
  }
  body .sub .main .column__wrap .column__area .project__consult .consult:last-child {
    border-bottom: 0;
  }
  body .sub .main .column__wrap .column__area .project__suggestion {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3em;
  }
  body .sub .main .column__wrap .column__area .project__suggestion:last-of-type {
    margin-bottom: 0;
  }
  body .sub .main .column__wrap .column__area .project__suggestion .suggestion__box {
    width: 45%;
  }
  body .sub .main .column__wrap .column__area .project__suggestion .suggestion__box .suggestion__txt {
    font-size: 1rem;
  }
  body .sub .main .column__wrap .column__area .project__suggestion .suggestion__wrap--left {
    position: relative;
  }
  body .sub .main .column__wrap .column__area .project__suggestion .suggestion__wrap--left::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -3em;
    margin: auto;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: solid 2px #0729a8;
    border-right: solid 2px #0729a8;
    transform: rotate(45deg);
  }
  body .sub .main .column__wrap .column__area .table__wrap .table__ttl {
    width: 10em;
    padding: 1em;
  }
  body .sub .main .column__wrap .column__area .table__wrap .table__ttl:last-of-type {
    border-bottom: solid 1px #ccc;
  }
  body .sub .main .column__wrap .column__area .table__wrap .table__txt {
    width: calc(100% - 10em);
    padding: 1em;
    border-top: solid 1px #ccc;
  }
  body .sub .main .column__wrap .column__area .table__wrap .recruit__txt {
    line-height: 1.8;
  }
  body .sub .main .column__wrap .column__area .greet__wrap {
    display: flex;
    justify-content: space-between;
  }
  body .sub .main .column__wrap .column__area .greet__wrap .greet__txt {
    width: 100%;
    margin-right: 50px;
    font-size: 1rem;
    line-height: 1.8;
  }
  body .sub .main .column__wrap .column__area .greet__wrap .greet__photo .greetPhoto__wrap {
    position: relative;
  }
  body .sub .main .column__wrap .column__area .greet__wrap .greet__photo .greetPhoto__wrap .greetPhoto__txt {
    position: absolute;
    bottom: -1em;
    left: -1em;
    padding: 1em;
  }
  body .sub .main .column__wrap .column__area .greet__wrap .greet__photo .greetPhoto__wrap .greetPhoto__txt .greetPhotoTxt__inner {
    font-size: 1.6rem;
  }
  body .sub .main .column__wrap .column__area .history__flow {
    margin-bottom: 5em;
  }
  body .sub .main .column__wrap .column__area .mission__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 5em;
  }
  body .sub .main .column__wrap .column__area .mission__wrap .mission__item {
    width: 33.3333333333%;
    height: 250px;
  }
  body .sub .main .column__wrap .column__area .mission__wrap .mission__item:nth-of-type(3) {
    border-right: solid 1px #0729a8;
  }
  body .sub .main .column__wrap .column__area .mission__wrap .mission__item:nth-of-type(5) {
    border-right: solid 1px #0729a8;
  }
  body .sub .main .column__wrap .column__area .mission__wrap .mission__item .mission__ttl {
    font-size: 2.7rem;
  }
  body .sub .main .column__wrap .column__area .mission__wrap .mission__item .mission__txt {
    font-size: 1.4rem;
  }
  body .sub .main .column__wrap .column__area .recruit__senior {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5em;
  }
  body .sub .main .column__wrap .column__area .recruit__senior .recruitPhoto__wrap {
    width: 50%;
    margin-right: 24px;
  }
  body .sub .main .column__wrap .column__area .recruit__regular {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5em;
  }
  body .sub .main .column__wrap .column__area .recruit__regular .recruitPhoto__wrap {
    width: 60%;
    margin-top: 60px;
    margin-left: 50px;
  }
  body .sub .main .column__wrap .column__area .recruit__regular.forward .recruitPhoto__wrap {
    width: 60%;
    margin-top: 65px;
    margin-left: 0;
    margin-right: 50px;
  }
  body .sub .main .column__wrap .column__area .recruitText__wrap {
    width: 50%;
  }
  body .sub .main .column__wrap .column__area .staff__voice {
    width: 60%;
    margin-left: 50px;
  }
  body .sub .main .column__wrap .production {
    display: flex;
    margin-bottom: 5em;
  }
  body .sub .main .column__wrap .production .column__area--left {
    width: calc(50% - 25px);
    margin-right: 50px;
  }
  body .sub .main .column__wrap .production .column__area--left .columnArea__txt {
    margin-bottom: 4.6em;
  }
  body .sub .main .column__wrap .production .column__area--right {
    width: calc(50% - 25px);
  }
  body .sub .main .column__wrap .production .columnArea__inner .columnArea__ttl {
    font-size: 1.4rem;
  }
  body .sub .main .column__wrap .production .columnArea__inner .columnArea__txt {
    font-size: 1rem;
  }
  body .sub .main .column__wrap .production__machine {
    margin-bottom: 5em;
  }
  body .sub .main .column__wrap .production__machine .production__ttl {
    font-weight: bold;
  }
  body .sub .main .column__wrap .production__machine .productionMachine__wrap {
    display: flex;
    flex-wrap: wrap;
  }
  body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area {
    display: flex;
    width: 50%;
    padding-right: 1em;
  }
  body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area:nth-last-of-type(-n+2) {
    margin-bottom: 0;
    border-bottom: 0;
  }
  body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area:nth-of-type(2n) {
    margin-right: 0;
  }
  body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area .productionMachine__photo {
    width: 50%;
    margin-right: 1em;
  }
  body .sub .main .column__wrap .production__machine .productionMachine__wrap .productionMachine__area .productionMachine__photo .productionMachinePhoto__img {
    width: 100%;
  }
  body .sub .main .column__wrap .machine__list .productionMachine__wrap .productionMachine__area {
    width: 33.3333333333%;
  }
  body .sub .main .column__wrap .machine__list .productionMachine__wrap .productionMachine__area:nth-of-type(3n) {
    border-right: solid 1px #ccc;
  }
  body .sub .main .column__wrap .recruit__cat {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  body .sub .main .column__wrap .recruit__cat .cat__item {
    height: 242px;
    width: calc(33.3333333333% - 16px);
    margin-right: 24px;
    margin-bottom: 24px;
  }
  body .sub .main .column__wrap .recruit__cat .cat__item:nth-child(3n) {
    margin-right: 0;
  }
  body .sub .main .column__wrap .recruit__cat .cat__item:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
  body .sub .main .column__wrap .recruit__cat .cat__item .banner__item--link .banner__ttl {
    font-size: 1.7rem;
  }
  body .sub .main .column__wrap .form__wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2em;
    margin-bottom: 3em;
  }
  body .sub .main .column__wrap .form__wrap .form__ttl {
    width: 35%;
    padding: 1em;
  }
  body .sub .main .column__wrap .form__wrap .form__ttl:last-of-type {
    border-bottom: solid 1px #ccc;
  }
  body .sub .main .column__wrap .form__wrap .form__input {
    width: 65%;
    padding: 1em;
  }
  body .sub .main .column__wrap .form__wrap .form__input .form__input--item {
    width: 100%;
  }
  body .sub .main .column__wrap .form__wrap .form__input .form__textarea--item {
    width: 100%;
  }
  body .sub .main .column__wrap .access .map iframe {
    height: 450px;
  }
  body .sub .main .column__wrap .btns {
    justify-content: center;
  }
  body .sub .main .column__wrap .btns .btns__btn .btn__confirm,
  body .sub .main .column__wrap .btns .btns__btn .btn__send {
    margin-right: 1em;
    padding: 1em;
  }
  body .sub .main .column__wrap .btns .btns__btn .btn__correct {
    margin-right: 1em;
    padding: 1em 2em;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}