.txt-fs15 {
  font-size: 1.5rem;
}

label,
p,
button,
input,
template,
li,
td {
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {

  label,
  p,
  button,
  input,
  template,
  li,
  td {
    font-size: 1.5rem;
  }
}

.txt-fs16 {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .txt-fs16 {
    font-size: 1.5rem;
  }
}

.txt-fs17 {
  font-size: 1.7rem;
}

@media screen and (max-width: 767px) {
  .txt-fs17 {
    font-size: 1.5rem;
  }
}

.txt-fs18 {
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .txt-fs18 {
    font-size: 1.6rem;
  }
}

.txt-fs20 {
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .txt-fs20 {
    font-size: 1.8rem;
  }
}

.txt-fs21 {
  font-size: 2.1rem;
}

@media screen and (max-width: 767px) {
  .txt-fs21 {
    font-size: 1.9rem;
  }
}

.txt-fs22 {
  font-size: 2.2rem;
}

@media screen and (max-width: 767px) {
  .txt-fs22 {
    font-size: 2rem;
  }
}

.txt-fs23 {
  font-size: 2.3rem;
}

@media screen and (max-width: 767px) {
  .txt-fs23 {
    font-size: 2rem;
  }
}

.txt-fs25 {
  font-size: 2.5rem;
}

@media screen and (max-width: 767px) {
  .txt-fs25 {
    font-size: 2.1rem;
  }
}

.txt-fs26 {
  font-size: 2.6rem;
}

@media screen and (max-width: 767px) {
  .txt-fs26 {
    font-size: 2.1rem;
  }
}

.txt-fs28 {
  font-size: 2.8rem;
}

@media screen and (max-width: 767px) {
  .txt-fs28 {
    font-size: 2.5rem;
  }
}

.txt-fs32 {
  font-size: 3.2rem;
}

@media screen and (max-width: 767px) {
  .txt-fs32 {
    font-size: 2.8rem;
  }
}

.txt-fs36 {
  font-size: 3.6rem;
}

@media screen and (max-width: 767px) {
  .txt-fs36 {
    font-size: 3.3rem;
  }
}

@media screen and (max-width: 767px) {
  .view-pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .view-sp {
    display: none !important;
  }
}

header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: max(1px, 0.1rem) solid #A8A8AD;
}

.header {
  max-width: 167rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: 10rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .header {
    background-color: #fff;
  }
}

.img-logo {
  width: 25rem;
}

.list-menu-hd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .list-menu-hd {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.list-menu-hd .link-menu-item {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding-left: 3rem;
  padding-right: 3rem;
  border-left: max(1px, 0.1rem) solid #231f20;
  display: inline-block;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .list-menu-hd .link-menu-item {
    padding-left: 2rem;
  }
}

.list-menu-hd .link__menu {
  position: relative;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .list-menu-hd .link__menu {
    margin: 0 1.5rem 2rem;
    height: auto;
  }
}

.list-menu-hd .link__menu::before {
  position: absolute;
  left: 0;
  content: "";
  width: 12.5rem;
  left: 50%;
  transform: translateX(-50%) scale(0, 1);
  height: 0.3rem;
  background: #0068b6;
  bottom: 1rem;
  transition: transform 0.5s;
  transform-origin: center top;
}

@media screen and (max-width: 767px) {
  .list-menu-hd .link__menu::before {
    content: none;
  }
}

.list-menu-hd .link__menu.is-active,
.list-menu-hd .link__menu:hover {
  color: #0068b6;
}

.list-menu-hd .link__menu.is-active::before,
.list-menu-hd .link__menu:hover::before {
  transform: translateX(-50%) scale(1, 1);
}

@media screen and (max-width: 767px) {
  .list-menu-hd .link__menu:hover {
    color: #231f20;
  }
}

.list-menu-hd li {
  line-height: 1;
  height: 5.4rem;
  margin-top: 4.4rem;
}

.list-menu-hd li .icon-dropdown {
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/common/icon2.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  width: 1.2rem;
  height: 2.6rem;
  background-size: 100% auto;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .list-menu-hd li .icon-dropdown {
    top: -0.5rem;
    left: auto;
    right: 0;
    width: 3rem;
    transform: rotate(-90deg);
    height: 3rem;
    background-size: 1.5rem auto;
    background-position: center;
  }

  .list-menu-hd li .icon-dropdown.active {
    transform: rotate(0deg);
  }
}

.list-menu-hd li:last-child .link-menu-item {
  border-right: max(1px, 0.1rem) solid #231f20;
}

@media screen and (max-width: 767px) {
  .list-menu-hd li:last-child .link-menu-item {
    border-right: 0;
  }
}

.btn-link-header {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26.5rem;
  height: 6.5rem;
  border-radius: 32.5rem;
  background-color: #231f20;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.btn-link-header:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.1rem;
  right: 4.5rem;
  background-image: url(../img/common/icon1.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  transition: all 0.3s ease-in-out;
}

.btn-link-header:hover {
  background-color: #0072bc;
}

.menu-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 7.5rem;
  column-gap: 7.5rem;
}

.footer {
  background-color: #0072bc;
  color: #fff;
  padding-bottom: 5rem;
}

@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 3rem;
  }
}

.footer.top__footer {
  padding-top: 9rem;
}

.footer .footer__inner {
  padding-top: 20rem;
  border-bottom: 0.2rem solid rgba(255, 255, 255, 0.5);
  padding-bottom: 5rem;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .footer .footer__inner {
    padding-top: 9rem;
  }
}

.footer .col_left_title {
  width: 23%;
  padding-right: 1.5rem;
}

@media screen and (max-width: 767px) {
  .footer .col_left_title {
    width: 100%;
    padding-right: 0;
    padding-bottom: 3rem;
  }
}

.footer .col__folow {
  gap: 1rem;
  width: 77%;
}

@media screen and (max-width: 767px) {
  .footer .col__folow {
    width: 100%;
  }
}

.footer .col__folow .col__02w {
  background-color: #fff;
  width: calc(50% - 0.5rem);
  text-align: center;
  padding: 8rem 1.5rem 8.5rem;
}

@media screen and (max-width: 767px) {
  .footer .col__folow .col__02w {
    padding: 4rem 1.5rem 4.5rem;
    width: 100%;
  }
}

.footer .col__folow .col__02w .icon-phone {
  width: 19.4rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .footer .col__folow .col__02w .icon-phone {
    margin-bottom: 2.5rem;
  }
}

.footer .col__folow .col__02w .icon-number {
  width: 26.2rem;
  margin-top: 1rem;
  margin-bottom: 1.8rem;
}

.footer .col__folow .col__02w .icon-date {
  width: 26.6rem;
}

.footer .col__folow .col__02w .icon-mail {
  width: 19.3rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .footer .col__folow .col__02w .icon-mail {
    margin-bottom: 2.5rem;
  }
}

.img__logo {
  width: 16rem;
}

@media screen and (max-width: 767px) {
  .col__cg {
    position: absolute;
    top: -1rem;
    text-align: center;
  }
}

.col__cg img {
  width: 26rem;
}

.col_left_title img {
  width: 24.3rem;
}

button {
  cursor: pointer;
}

.btn__white {
  position: relative;
  padding: 2.45rem 10rem 2.45rem 7rem;
  background-repeat: no-repeat;
  background-size: 1.5rem auto;
  background-position: calc(100% - 4.5rem) center;
  background-color: #fff;
  background-image: url(../img/common/i-g.png);
  border-radius: 99rem;
  border: 0.2rem solid #0072bc;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  color: #0072bc;
  font-weight: bold;
}

.btn__white:hover {
  border: 0.2rem solid #0072bc;
  background-color: #0072bc;
  background-image: url(../img/common/icon1.png);
  color: #fff;
}

.btn__white:hover img {
  filter: brightness(0) invert(1);
}

.btn__white img {
  transition: all 0.3s ease-in-out;
  width: 8.9rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.container__130x {
  max-width: 130rem;
  margin: 0 auto;
  width: calc(100% - 3rem);
}

.scrolltop {
  position: absolute;
  background-color: transparent;
  border: 0;
  right: 11rem;
  bottom: 7rem;
  z-index: 10;
  height: 13rem;
  width: 10rem;
}

@media screen and (max-width: 767px) {
  .scrolltop {
    height: 6.5rem;
    width: 5rem;
    right: 2rem;
    bottom: 2rem;
  }
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.d-inline {
  display: inline-block;
}

.bold {
  font-weight: 700;
}

.lh {
  line-height: 1.75;
}

.row__infor {
  margin-top: 9.5rem;
}

@media screen and (max-width: 767px) {
  .row__infor {
    margin-top: 6rem;
  }
}

.row__inner-infor,
.col__cp {
  width: 51%;
}

@media screen and (max-width: 767px) {

  .row__inner-infor,
  .col__cp {
    width: 100%;
  }
}

.row__inner-infor {
  line-height: 1.75;
  padding-top: 1.5rem;
}

.col__cg,
.col__menu {
  width: 49%;
}

@media screen and (max-width: 767px) {

  .col__cg,
  .col__menu {
    width: 100%;
  }
}

.col__menu {
  padding-left: 1rem;
}

@media screen and (max-width: 767px) {
  .col__menu {
    display: none;
  }
}

.col__infor {
  padding-left: 4.5rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .col__infor {
    padding-left: 1.5rem;
  }
}

.col__infor .google__map {
  position: absolute;
  top: 50%;
  right: -5rem;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .col__infor .google__map {
    right: -3.5rem;
  }
}

.link__f-page {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}

.link__d-page {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.4rem;
}

.row__f-menu {
  gap: 7rem;
  line-height: 1.75;
}

.col__004 a {
  display: block;
}

.row_cp {
  align-items: end;
  margin-top: 3.5rem;
  position: relative;
}

.txt__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .txt__copyright {
    margin-top: 10rem;
    text-align: center;
  }

  .txt__copyright a {
    position: absolute;
    top: 7rem;
    text-align: right;
    width: 100%;
    display: block;
  }
}

.ad__map {
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
}

@media screen and (max-width: 767px) {
  .ad__map {
    font-size: 1.4rem;
  }
}

.sub-transition {
  transition: ease all 0.35s;
}

.infoSubMenu {
  position: relative;
  width: 28rem;
  height: 6rem;
  overflow: visible;
  position: absolute;
  top: 53px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  transition: ease all 0.35s;
  -webkit-transition: ease all 0.35s;
  -moz-transition: ease all 0.35s;
  -ms-transition: ease all 0.35s;
  -o-transition: ease all 0.35s;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .infoSubMenu {
    position: relative;
    left: 0;
    top: 0;
    opacity: 1;
  }

  .infoSubMenu a {
    text-align: left;
  }

  .infoSubMenu .dl-flex {
    display: none;
    padding-top: 1rem;
    padding-left: 2rem;
  }
}

.li-parent-down:hover .infoSubMenu {
  opacity: 1;
  pointer-events: all;
  padding-top: 0.3rem;
  margin-top: 0 !important;
}

.infoSubMenu li {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 1px;
  background-color: #fff;
  padding: 0 !important;
  margin-top: 0 !important;
  height: auto;
  transition: all 0.3s ease-in-out;
}

.infoSubMenu li:hover {
  background-color: #0068b6;
}

.infoSubMenu li:hover a {
  color: #fff;
}

.infoSubMenu li a {
  display: block;
  padding: 2.2rem 2rem 2.3rem !important;
}

@media screen and (max-width: 767px) {
  .infoSubMenu li a {
    padding: 0.8rem 2rem 1rem !important;
  }
}

.infoSubMenu li:first-child::before {
  content: "" !important;
}

.infoSubMenu li a {
  font-size: 1.5rem;
  color: #0068b6;
}

.container__128x {
  max-width: 128rem;
  margin: 0 auto;
  width: calc(100% - 3rem);
}

.title__page .sub__title.ff2 {
  font-family: "Noto Sans JP", sans-serif;
}

.sub__title {
  letter-spacing: 0;
  font-weight: 500;
}

.color__key {
  color: #0072bc;
}

.breadcrumb {
  color: #231f20;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: -4.25rem;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-top: 1rem;
  }
}

.breadcrumb .line__un {
  -webkit-text-stroke: 0.3px #231f20;
}

.breadcrumb a {
  color: #939598;
}

.btn__small {
  padding: 1.3rem;
  width: 26.5rem;
  text-align: center;
  text-align: center;
  background-image: none !important;
  justify-content: center;
}

.container__140x {
  max-width: 140rem;
  margin: 0 auto;
  width: calc(100% - 3rem);
}

.bg__white {
  background-color: #fff;
}

.max__99x {
  max-width: 102.5rem;
  margin: 0 auto;
  width: calc(100% - 2rem);
}

.bg__banner_5 {
  position: relative;
}

.bg__banner_5::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 72rem);
  bottom: 0;
  left: 0;
  background-color: rgba(0, 114, 188, 0.03);
  z-index: -1;
}

.banner__page {
  margin-top: 6rem;
}

@media screen and (max-width: 767px) {
  .banner__page {
    margin-top: 0;
  }
}

.banner__page .img__wrapper {
  position: relative;
  display: inline-block;
  margin-left: 1.5rem;
}

.banner__page .img__wrapper::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: #0072BC;
  border-radius: 2rem 0 0 2rem;
  background: linear-gradient(90deg, rgba(0, 114, 188, 0.75) 0%, rgba(0, 114, 188, 0.3) 25%, rgba(0, 114, 188, 0) 100%);
  z-index: 1;
}

.banner__page img {
  border-radius: 2rem 0 0 2rem;
}

@media screen and (max-width: 767px) {
  .banner__page img {
    height: 19rem;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.title__lv2 {
  margin-bottom: 1.2rem;
}

.title__lv2 img {
  height: 5.9rem;
}

@media screen and (max-width: 767px) {
  .title__lv2 img {
    height: 2.9rem;
  }
}

.body__page {
  padding-top: 10rem;
}

.title__page {
  margin-top: 14.5rem;
}

@media screen and (max-width: 767px) {
  .title__page {
    margin-top: 7rem;
  }
}

.title__des {
  margin-top: 10rem;
}

@media screen and (max-width: 767px) {
  .title__des {
    margin-top: 5rem;
  }
}

.title__des .img__wrapper {
  margin-bottom: 1.5rem;
}

.mg__bt_9x {
  margin-top: 3.5rem;
  margin-bottom: 9rem;
}

@media screen and (max-width: 767px) {
  .mg__bt_9x {
    margin-bottom: 5rem;
  }
}

.title__lv3l {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.6;
  color: #0072bc;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
  .title__lv3l {
    font-size: 1.7rem;
  }
}

.list_pr {
  line-height: 2.5;
  letter-spacing: -0.2px;
}

@media screen and (max-width: 767px) {
  .list_pr {
    line-height: 2;
  }
}

.pr__item {
  margin-bottom: 5rem;
}

@media screen and (max-width: 767px) {
  .pr__item {
    margin-bottom: 3rem;
  }
}

.pd__pr {
  padding: 11.5rem 0 8rem;
}

@media screen and (max-width: 767px) {
  .pd__pr {
    padding: 5rem 0 4rem;
  }
}

.bg__logo {
  background-image: url(../img/privacy/logo.png);
  background-size: 84% auto;
  background-position: center;
  background-repeat: no-repeat;
}

.title__lv3s {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
  color: #0072bc;
  margin-bottom: 0.8rem;
}

@media screen and (max-width: 767px) {
  .title__lv3s {
    font-size: 1.7rem;
  }
}

.mgt__2x {
  margin-top: 2rem;
}

.privacy__content {
  padding-bottom: 20rem;
}

@media screen and (max-width: 767px) {
  .privacy__content {
    padding-bottom: 10rem;
  }
}

.list_nb {
  padding-left: 1.6rem;
}

.nb__item {
  list-style: auto;
}

.ol__tt {
  padding-left: 1.6rem;
}

.tt__item {
  list-style: lower-alpha;
}

.ol__nb {
  padding-left: 1.6rem;
}

.col__02 {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .col__02 {
    width: 100%;
    padding-left: 0 !important;
    margin-top: 4rem;
  }
}

.col__02tx {
  padding-left: 10rem;
}

.max__49x {
  max-width: 51rem;
}

.tx__3x {
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #0072bc;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .tx__3x {
    font-size: 2rem;
  }
}

.lh2x {
  line-height: 2.5;
}

@media screen and (max-width: 767px) {
  .lh2x {
    line-height: 2;
  }
}

.company__content {
  padding-bottom: 20rem;
}

@media screen and (max-width: 767px) {
  .company__content {
    padding-bottom: 10rem;
  }
}

.company__content .title__des {
  margin-bottom: 7rem;
}

@media screen and (max-width: 767px) {
  .company__content .title__des {
    margin-bottom: 2rem;
  }
}

.message__content {
  padding-top: 1px;
  padding-bottom: 15rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .message__content {
    padding-bottom: 7rem;
  }
}

.message__content::after {
  position: absolute;
  content: "";
  z-index: -1;
  background-color: rgba(0, 114, 188, 0.03);
  height: 40rem;
  width: 100%;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .message__content::after {
    height: 65rem;
  }
}

.message__content .lh2x {
  margin-bottom: 2rem;
}

.al_center {
  align-items: center;
}

.col__title_lv3 {
  width: 31.5%;
  padding-left: 5.5rem;
}

@media screen and (max-width: 767px) {
  .col__title_lv3 {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}

.col__table {
  width: 68.5%;
}

@media screen and (max-width: 767px) {
  .col__table {
    width: 100%;
  }
}

.table__28x {
  width: 100%;
}

.table__28x tr td {
  padding: 4rem 1.5rem 4rem 9rem;
  border-top: 1px solid #c7c8ca;
  border-bottom: 1px solid #c7c8ca;
}

@media screen and (max-width: 767px) {
  .table__28x tr td {
    padding: 1rem 1rem;
    font-size: 1.4rem;
  }
}

.table__28x tr td:first-child {
  width: 28rem;
  background-color: rgba(0, 114, 188, 0.05);
  color: #0072bc;
}

@media screen and (max-width: 767px) {
  .table__28x tr td:first-child {
    width: 10.5rem;
  }
}

.table__28x tr td:last-child {
  width: calc(100% - 10.5rem);
}

.table__full {
  margin-top: 10rem;
}

@media screen and (max-width: 767px) {
  .table__full {
    margin-top: 6rem;
  }
}

.overview__content {
  padding-top: 5rem;
}

.auto__id {
  position: relative;
  top: -12rem;
}

.contact__active.is-active {
  background-color: #0072bc;
}

@media screen and (max-width: 767px) {
  .contact__active.is-active {
    background-color: transparent;
  }
}

.d-block {
  display: block;
}

.container__105x {
  max-width: 105.5rem;
  margin: 0 auto;
  width: calc(100% - 3rem);
}

.ov_h {
  overflow: hidden;
  position: relative;
  color: #fff;
}

.recruit__content {
  margin-top: -10rem;
}

.slider__tranform {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slider__tranform::after {
  position: absolute;
  content: "";
  background-color: rgba(35, 31, 32, 0.85);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30rem;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 120%;
  height: 59.6rem;
  background-repeat: repeat-x;
  background-size: auto cover;
  margin-left: auto;
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .slide {
    width: 200%;
  }
}

.img1 {
  animation: anime 40s linear infinite;
  transform: rotate(-15deg) translateX(0) translateY(-39rem);
}

.img2 {
  animation: anime2 40s linear infinite;
  transform: rotate(-15deg) translateX(0) translateY(22.6rem);
}

.img3 {
  animation: anime 40s linear infinite;
  transform: rotate(-15deg) translateX(0) translateY(84.6rem);
}

@keyframes anime {
  0% {
    background-position: 246.5rem 0;
  }

  100% {
    background-position: -246.5rem 0;
  }
}

@keyframes anime2 {
  0% {
    background-position: -246.5rem 0;
  }

  100% {
    background-position: 246.5rem 0;
  }
}

.max__50x {
  max-width: 51rem;
  margin: 0 auto;
  width: calc(100% - 3rem);
}

.recruit__message {
  padding-top: 22rem;
  padding-bottom: 21rem;
}

@media screen and (max-width: 767px) {
  .recruit__message {
    padding-top: 15rem;
    padding-bottom: 10rem;
  }
}

.sub__title-r {
  margin-top: 6rem;
  margin-bottom: 5.5rem;
}

.container__101x {
  max-width: 101.5rem;
  margin: 0 auto;
  width: calc(100% - 3rem);
}

.recruit__ideal_peson .row {
  margin-top: 8rem;
  gap: 5rem 0;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .recruit__ideal_peson .row {
    margin-top: 4rem;
    gap: 2rem 0rem;
  }
}

.recruit__ideal_peson .col_02sr {
  width: 47.4%;
}

@media screen and (max-width: 767px) {
  .recruit__ideal_peson .col_02sr {
    width: 100%;
  }
}

.recruit__ideal_peson .col_02srt {
  width: 52.6%;
  padding-left: 9rem;
}

@media screen and (max-width: 767px) {
  .recruit__ideal_peson .col_02srt {
    width: 100%;
    padding-left: 0;
  }
}

.recruit__ideal_peson .title__lvb {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.6;
  color: #0072bc;
  margin-bottom: 0.2rem;
  letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
  .recruit__ideal_peson .title__lvb {
    font-size: 2.5rem;
  }
}

.recruit__ideal_peson .subtitle__lvsg {
  font-size: 1rem;
  font-weight: 700;
  color: #939598;
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .recruit__ideal_peson .subtitle__lvsg {
    margin-bottom: 1rem;
  }
}

.recruit__ideal_peson .ideal__text {
  max-width: 44rem;
}

.recruit__ideal_peson .ideal__text.max__45 {
  max-width: 45rem;
}

@media screen and (max-width: 767px) {
  .recruit__ideal_peson .ideal__text {
    font-size: 1.4rem;
  }
}

.bg_2h {
  position: relative;
  overflow: hidden;
}

.bg_2h::before {
  position: absolute;
  content: "";
  width: 71rem;
  height: 69rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: rgba(0, 114, 188, 0.03);
  z-index: -1;
}

.recruit__ideal_peson {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

@media screen and (max-width: 767px) {
  .recruit__ideal_peson {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.tab__center {
  margin-top: 8rem;
}

@media screen and (max-width: 767px) {
  .tab__center {
    margin-top: 4rem;
  }
}

.tab__center tr td .row {
  gap: 0 0.6rem;
}

@media screen and (max-width: 767px) {
  .tab__center tr td {
    width: 100% !important;
    float: left;
  }

  .tab__center tr td:last-child {
    border-bottom: 0px solid #0072bc;
    border-top: 0px solid #0072bc;
  }
}

.tab__center tr td:first-child {
  border-top: 2px solid #0072bc;
  border-bottom: 2px solid #0072bc;
}

@media screen and (max-width: 767px) {
  .tab__center tr td:first-child {
    border-bottom: 0px solid #0072bc;
  }
}

@media screen and (max-width: 767px) {
  .tab__center tr:last-child td:last-child {
    border-bottom: 2px solid #0072bc;
  }
}

.title__lvst {
  font-size: 2rem;
  color: #0072bc;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.3rem;
}

.col_2dg {
  font-weight: 700;
  font-weight: bold;
  color: #0072bc;
}

.row_gapx {
  margin-top: 6rem;
  gap: 1.5rem;
}

.row_gapx .col__nx {
  width: calc(25% - 1.125rem);
  background-color: #fff;
  padding: 2.5rem 1.5rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .row_gapx .col__nx {
    width: 100%;
  }
}

.row_gapx .col__nx::after {
  position: absolute;
  content: "";
  width: 4.2rem;
  height: 4.2rem;
  background-color: #0072bc;
  border-radius: 99px;
  top: 50%;
  transform: translateY(-50%);
  right: -2.8rem;
  background-image: url(../img/common/icon1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem auto;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .row_gapx .col__nx::after {
    top: auto;
    bottom: -2.8rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

.row_gapx .col__nx:last-child::after {
  content: none;
}

.img__hv {
  width: 15rem;
  border: 1px solid #e6e7e8;
  margin: 0 auto;
}

.max__680 {
  max-width: 70rem;
  margin: 6rem auto 0;
}

.col_2dg {
  width: 8.5rem;
}

.col_2dgt {
  width: calc(100% - 8.5rem);
}

.recruit__job_description {
  margin-bottom: 15rem;
}

@media screen and (max-width: 767px) {
  .recruit__job_description {
    margin-bottom: 8rem;
  }
}

.recruit__flow {
  padding-top: 6rem;
  padding-bottom: 14.5rem;
  background-color: rgba(0, 114, 188, 0.05);
}

@media screen and (max-width: 767px) {
  .recruit__flow {
    padding-top: 3rem;
    padding-bottom: 8rem;
  }
}

@media screen and (max-width: 767px) {

  .col__tt,
  .col__st {
    width: 100%;
  }
}

.title__lvnt {
  font-size: 3rem;
  font-weight: 900;
  color: #0072bc;
  letter-spacing: 1px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .title__lvnt {
    font-size: 2.3rem;
  }
}

.lvbg__text {
  font-size: 1.8rem;
  font-weight: 900;
  background-color: #0072bc;
  color: #fff;
  display: inline-block;
  padding: 0 1.5rem;
  margin-bottom: 1rem;
}

.title__lvbg {
  margin-top: -2.5rem;
  margin-bottom: 0.5rem;
}

.this__page {
  font-weight: 700;
  display: block;
  background-image: url(../img/business/i-c.png);
  background-size: 1.9rem auto;
  background-position: calc(100% - 6rem) center;
  background-repeat: no-repeat;
  padding: 1.8rem 1.5rem;
}

.business__strength .row {
  gap: 4rem;
}

.col__03c {
  width: calc(33.333% - 2.67rem);
}

@media screen and (max-width: 767px) {
  .col__03c {
    width: 100%;
  }
}

.list_link-page {
  background-color: #0072bc;
  border-radius: 1rem;
  color: #fff;
  margin-top: 9rem;
  margin-bottom: 16rem !important;
}

@media screen and (max-width: 767px) {
  .list_link-page {
    margin-bottom: 7rem !important;
  }
}

.list_link-page .item_link {
  text-align: center;
  width: 25%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .list_link-page .item_link {
    width: 100%;
  }
}

.list_link-page .item_link::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 4.5rem;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .list_link-page .item_link::after {
    bottom: 0;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
  }
}

.list_link-page .item_link:last-child::after {
  content: none !important;
}

.col__title-b {
  width: 33.8%;
}

@media screen and (max-width: 767px) {
  .col__title-b {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    order: 2;
  }
}

.col__title-b.p__right {
  padding-right: 7.1rem;
}

.col__title-b.p__left {
  padding-left: 8rem;
}

.col__img-b {
  width: 66.2%;
}

@media screen and (max-width: 767px) {
  .col__img-b {
    width: 100%;
    margin-bottom: 3rem;
    order: 1;
  }
}

.col__img-b img {
  border-radius: 1.2rem;
}

.text__lvbm {
  font-weight: 900;
  font-size: 2.8rem;
  letter-spacing: 1px;
  line-height: 1.75;
  color: #0072bc;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 767px) {
  .text__lvbm {
    margin-top: 1.5rem;
    font-size: 2.5rem;
  }
}

.number__01 {
  background-image: url(../img/business/01.png);
  background-repeat: no-repeat;
  background-size: 17.2rem auto;
  background-position: right 0rem;
}

.number__02 {
  background-image: url(../img/business/02.png);
  background-repeat: no-repeat;
  background-size: 19.9rem auto;
  background-position: calc(100% - 10.5rem) 0rem;
}

.number__03 {
  background-image: url(../img/business/03.png);
  background-repeat: no-repeat;
  background-size: 19.8rem auto;
  background-position: right 0rem;
}

.number__04 {
  background-image: url(../img/business/04.png);
  background-repeat: no-repeat;
  background-size: 20.3rem auto;
  background-position: calc(100% - 10.5rem) 0rem;
}

.subtitle__lvct {
  color: #939598;
}

.link__page a {
  position: relative;
  background-image: url(../img/business/i-9.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-width: 100rem;
  margin: -15rem auto 20rem;
  width: calc(100% - 3rem);
  padding: 11rem 0 10rem 23rem;
  margin-bottom: 20rem;
  z-index: 10;
  display: block;
}

.link__page a::after {
  content: "";
  position: absolute;
  right: 23rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8.3rem;
  height: 8.3rem;
  border-radius: 99px;
  border: 2px solid #fff;
  background-image: url(../img/business/i-w.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.8rem;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .link__page a::after {
    right: 2rem;
    width: 5rem;
    height: 5rem;
  }
}

.link__page a:hover::after {
  background-image: url(../img/business/i-b.png);
  background-color: #fff;
  border: 2px solid #fff;
}

@media screen and (max-width: 767px) {
  .link__page a {
    padding: 7rem 13rem 6rem 2rem;
    margin-bottom: 10rem;
  }
}

.business__service {
  background-color: rgba(0, 114, 188, 0.05);
  padding-top: 5rem;
  padding-bottom: 15rem;
}

.business__service .row {
  margin-bottom: 20rem;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .business__service .row {
    margin-bottom: 7rem;
  }
}

.col__text-nt {
  width: 52.9%;
  padding-right: 11rem;
}

@media screen and (max-width: 767px) {
  .col__text-nt {
    width: 100%;
    order: 2;
    padding-right: 0;
  }
}

.col__img-nt {
  width: 47.1%;
  order: 1;
}

@media screen and (max-width: 767px) {
  .col__img-nt {
    width: 100%;
    margin-bottom: 3rem;
  }
}

.row_des {
  align-items: center;
}

.business__s-top {
  margin-top: -15rem;
  padding-top: 28rem;
  padding-bottom: 15rem;
  background: rgba(0, 114, 188, 0.05);
  background: linear-gradient(90deg, rgba(0, 114, 188, 0.05) 0%, rgba(0, 114, 188, 0.05) 70%, rgb(255, 255, 255) 70%, rgb(255, 255, 255) 100%);
}

@media screen and (max-width: 767px) {
  .business__s-top {
    background: rgba(0, 114, 188, 0.05);
    padding-top: 22rem;
    padding-bottom: 8rem;
  }
}

.item__auto {
  margin-left: auto;
  max-width: 51rem;
}

.business__strength {
  padding-top: 7rem;
  background-image: url(../img/business/logo.png);
  background-position: center 12rem;
  background-repeat: no-repeat;
  background-size: 83.4rem;
  padding-bottom: 19rem;
}

@media screen and (max-width: 767px) {
  .business__strength {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-size: 80vw;
    background-position: center calc(100% - 3rem);
  }
}

.business__strength .row {
  margin-top: 5rem;
  max-width: 122rem;
  margin: 5rem auto 0;
}

.thanks__content {
  margin-top: 9rem;
  margin-bottom: 19rem;
}

@media screen and (max-width: 767px) {
  .thanks__content {
    margin-top: 0;
    margin-bottom: 7rem;
  }
}

.container__108x {
  max-width: 108rem;
  margin: 0 auto;
  width: calc(100% - 3rem);
}

.container__100x {
  max-width: 100rem;
  margin: 0 auto;
  width: calc(100% - 3rem);
}

.mgt_4 {
  max-width: 74rem;
  margin: 4rem auto 0;
}

.error_messe {
  max-width: 74rem;
  margin: 0 auto;
}

.gap__xb {
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

@media screen and (max-width: 767px) {
  .gap__xb {
    gap: 2rem;
    margin-top: 2rem;
  }
}

.button_bg {
  width: calc(50% - 2rem);
}

@media screen and (max-width: 767px) {
  .button_bg {
    width: 100%;
    max-width: 26.5rem;
  }
}

.btn__sm {
  background-color: transparent;
  border-radius: 99rem;
  display: block;
  width: 100%;
}

.mgt_4x {
  margin-top: 4rem;
}

.col_02xi {
  width: calc(50% - 0.75rem);
  background-color: rgba(0, 114, 188, 0.05);
  text-align: center;
  height: 16rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .col_02xi {
    width: 100%;
  }
}

.infor__ct {
  gap: 1.5rem;
  margin-top: 5rem;
}

input,
textarea {
  width: 100%;
  border: 0;
  background-color: rgba(0, 114, 188, 0.05);
  padding: 2.9rem;
  resize: none;
  min-width: 1.4rem;
  min-height: 1.4rem;
}

@media screen and (max-width: 767px) {

  input,
  textarea {
    padding: 1.5rem;
  }
}

textarea {
  height: 30rem;
}

.form-submit-area {
  margin-top: 4rem;
  max-width: 57rem;
  margin: 0 auto;
}

.contact__content {
  margin-bottom: 20rem;
}

@media screen and (max-width: 767px) {
  .contact__content {
    margin-top: 0;
    margin-bottom: 7rem;
  }
}

.checkbox__required {
  display: flex;
  justify-content: center;
  align-items: center;
}

#checkbox__required {
  width: 2rem;
  width: 2rem;
}

.btn__sm {
  display: block;
  width: 100%;
  padding: 2rem !important;
  font-weight: bold;
}

.table__mail {
  margin-top: 8rem;
}

@media screen and (max-width: 767px) {
  .table__mail {
    margin-top: 4rem;
  }
}

.table__mail table {
  width: 100%;
}

.table__mail tr td {
  position: relative;
  padding-bottom: 2.5rem;
  vertical-align: top;
}

.table__mail tr td:first-child {
  width: 28rem;
  padding-top: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .table__mail tr td:first-child {
    width: 100%;
    float: left;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.table__mail tr td:last-child {
  width: calc(100% - 28rem);
}

@media screen and (max-width: 767px) {
  .table__mail tr td:last-child {
    width: 100%;
    float: left;
  }
}

.table__mail tr .required {
  position: absolute;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 7.2rem;
  height: 3.2rem;
  background-color: #0072bc;
  top: 2rem;
  right: 2.5rem;
  padding: 0.1rem 0 0.3rem;
}

@media screen and (max-width: 767px) {
  .table__mail tr .required {
    top: 1rem;
  }
}

.max_36x {
  max-width: 36rem;
}

.mgbt_4 {
  margin-bottom: 2rem;
}

.table__form tr:nth-child(1) .un_input {
  max-width: 36rem;
}

.table__form tr:nth-child(2) .un_input {
  max-width: 36rem;
}

.table__form tr:nth-child(5) .un_input {
  max-width: 36rem;
}

.table__form tr:nth-child(7) .un_input {
  max-width: 36rem;
}

.table__form tr:nth-child(8) .un_input {
  max-width: 36rem;
}

.table__form tr:nth-child(10) .un_input {
  height: 30rem;
}

.un_input {
  display: block;
  width: 100%;
  border: 0;
  background-color: rgba(0, 114, 188, 0.05);
  padding: 2rem;
  color: #939598;
  min-height: 8rem;
  overflow-y: auto;
}

@media screen and (max-width: 767px) {
  .un_input {
    padding: 0.65rem;
    min-height: 4.8rem;
  }
}

.btn__back {
  background-image: url(../img/common/a.png) !important;
  background-position: 4.5rem center !important;
}

.btn__back:hover {
  background-image: url(../img/common/b.png) !important;
}

.privacy_read {
  max-width: 77rem;
  margin: 4.5rem auto 3.5rem;
}

@media screen and (max-width: 767px) {
  .privacy_read {
    margin-top: 2.5rem;
  }
}

.max_x {
  max-width: 105rem;
  margin-left: auto;
  margin-right: auto;
}

.privacy__link {
  color: #00aeef;
}

.back__button {
  margin-top: 3rem;
  max-width: 26.3rem;
}

.col_02xi {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .col_02xi img {
    width: 30rem !important;
  }
}

@media screen and (max-width: 767px) {
  .banner {
    padding-top: 10rem;
  }

  .banner img {
    min-height: 25rem;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.top__about {
  background-image: url(../img/top/logo__opacity.png);
  background-size: 100vw auto;
  background-repeat: no-repeat;
  background-position: top;
}

@media screen and (max-width: 767px) {
  .top__about {
    background-position: bottom;
  }
}

.sec1-results-detail {
  padding-top: 10rem;
  padding-bottom: 15rem;
}

@media screen and (max-width: 767px) {
  .sec1-results-detail {
    padding-top: 7rem;
    padding-bottom: 8rem;
  }
}

.get_date {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
}

.sec1-results-detail-tlt {
  font-weight: bold;
  font-size: 3.5rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .sec1-results-detail-tlt {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

.sec1-results-detail-prp img {
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 767px) {
  .sec1-results-detail-prp img {
    margin-bottom: 1.5rem;
  }
}

.sec1-results-detail-content {
  font-size: 1.5rem;
}

.cat__results {
  margin-top: 9rem;
  border: 1px solid #0072bc;
}

@media screen and (max-width: 767px) {
  .cat__results {
    margin-top: 7rem;
  }
}

.cat__results li {
  border-right: 1px solid #0072bc;
  width: 20%;
}

@media screen and (max-width: 767px) {
  .cat__results li {
    border-right: none;
    border-bottom: 1px solid #0072bc;
  }
}

.cat__results li:last-child {
  border-right: none;
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  .cat__results li {
    width: 100%;
  }
}

.cat__results li span {
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 2.8rem 1rem;
  color: #0072bc;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .cat__results li span {
    padding: 1.5rem;
  }
}

.cat__results li span.current {
  color: #fff;
  background-color: #0072bc;
}

.cat__results li span:hover {
  color: #fff;
  background-color: #0072bc;
}

.date__top {
  background-color: #231f20;
  font-weight: bold;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 1px;
}

.results__item__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 1.6rem;
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 767px) {
  .results__item__title {
    font-size: 1.65rem;
    line-height: 1.7;
  }
}

.list__results {
  gap: 6rem 2.4rem;
  margin-top: 9rem;
}

@media screen and (max-width: 767px) {
  .list__results {
    gap: 4rem;
  }
}

.results__item {
  width: calc(33.3333% - 1.6rem);
}

@media screen and (max-width: 767px) {
  .results__item {
    width: 100%;
  }
}

.results__item__img {
  position: relative;
}

.results__item__date {
  position: absolute;
  display: inline-block;
  background-color: #231f20;
  color: #fff;
  left: 0;
  bottom: 0;
  padding: 0.4rem 1.5rem 0.55rem;
}

.results__content {
  margin-bottom: 20rem;
}

@media screen and (max-width: 767px) {
  .results__content {
    margin-bottom: 10rem;
  }
}

.link__cat {
  transition: all 0.3s ease-in-out;
}

.dflex-jcc-aic {
  display: flex;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #0072bc;
  gap: 1rem;
  margin-top: 11.5rem;
}

@media screen and (max-width: 767px) {
  .dflex-jcc-aic {
    margin-top: 6rem;
  }
}

.dflex-jcc-aic span {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background-color: #dcddde;
  text-align: center;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 0 0.5rem;
}

@media screen and (max-width: 767px) {
  .dflex-jcc-aic span {
    width: 4rem;
    height: 4rem;
    font-size: 1.7rem;
  }
}

.dflex-jcc-aic span:hover {
  color: #fff;
  background-color: #0072bc;
}

.dflex-jcc-aic span.current {
  color: #fff;
  background-color: #0072bc;
}

.prev {
  background-image: url(../img/common/prev.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem auto;
}

@media screen and (max-width: 767px) {
  .prev {
    background-size: 1rem auto;
  }
}

.next {
  background-image: url(../img/common/next.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem auto;
}

@media screen and (max-width: 767px) {
  .next {
    background-size: 1rem auto;
  }
}

.next:hover {
  background-image: url(../img/common/next_white.png);
}

.prev:hover {
  background-image: url(../img/common/prev_white.png);
}

.vs-01 {
  display: none !important;
}

.results__item__link {
  cursor: pointer;
}

.results__item__link .results__item__data {
  position: relative;
  padding-right: 8.5rem;
}

.results__item__link .results__item__data::after {
  position: absolute;
  content: "";
  top: 1.2rem;
  right: 2rem;
  width: 5rem;
  height: 5rem;
  background-image: url(../img/common/i-g.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem auto;
  border: 2px solid #0072bc;
  border-radius: 99rem;
  transition: all 0.3s ease-in-out;
}

.results__item__link:hover .results__item__data::after {
  background-color: #0072bc;
  border: 2px solid #0072bc;
  background-image: url(../img/common/icon1.png);
}

.top__recruit {
  margin-top: -10rem;
}

@media screen and (max-width: 767px) {
  .top__recruit {
    margin-top: 7rem;
  }
}

.top__recruit .title__des {
  margin-top: 0;
}

.top__recruit .container__115x {
  max-width: 115rem;
  margin: 0 auto;
  width: calc(100% - 3rem);
  padding-top: 29.5rem;
  padding-bottom: 27rem;
}

@media screen and (max-width: 767px) {
  .top__recruit .container__115x {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.col__btitle,
.col__ftext {
  width: 50%;
}

@media screen and (max-width: 767px) {

  .col__btitle,
  .col__ftext {
    width: 100%;
    padding-left: 0 !important;
    padding-top: 3rem !important;
  }
}

.col__ftext {
  padding-top: 10.5vw;
  padding-left: 17rem;
}

.col__ftext .btn__blue {
  margin-top: 5rem;
}

.col__ftext .btn__blue .btn__white {
  background-color: transparent;
  border: 2px solid #fff;
  background-image: url(../img/common/icon1.png);
}

.col__ftext .btn__blue .btn__white img {
  filter: brightness(0) invert(1);
}

.col__ftext .btn__blue .btn__white:hover {
  border: 2px solid #0072bc;
  background-color: #0072bc;
}

.text__bgb {
  margin-top: 6.5rem;
}

@media screen and (max-width: 767px) {
  .text__bgb {
    margin-top: 3.5rem;
  }
}

.bgb__text {
  font-size: 4.5rem;
  font-weight: bold;
  display: inline-block;
  background-color: #0072bc;
  color: #fff;
  line-height: 1.6;
  padding: 1.3rem 4rem 1.5rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
  .bgb__text {
    font-size: 2.6rem;
    padding: 1rem 2rem 1.1rem;
  }
}

.ff__en {
  font-size: 1.4rem;
  color: #0072bc;
  font-weight: 500;
  display: block;
  padding-bottom: 0.2rem;
}

.ff__ja {
  font-size: 2rem;
  font-weight: 500;
  display: block;
  line-height: 1;
}

.link_page__item {
  margin-top: 2rem;
}

.link_page__item .link__ja {
  padding-left: 5rem;
  display: block;
  width: 100%;
  border-left: 3px solid #d1d3d4;
  border-right: 3px solid #d1d3d4;
  padding: 1.4rem 5rem 1.7rem;
  position: relative;
}

.link_page__item .link__ja::after {
  position: absolute;
  content: "";
  top: 2.4rem;
  right: 5.5rem;
  width: 5rem;
  height: 5rem;
  background-image: url(../img/common/i-g.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem auto;
  border: 2px solid #0072bc;
  border-radius: 99rem;
  transition: all 0.3s ease-in-out;
}

.link_page__item .link__ja:hover::after {
  background-color: #0072bc;
  background-image: url(../img/common/icon1.png);
}

.col__bt {
  width: 28.5%;
}

@media screen and (max-width: 767px) {
  .col__bt {
    width: 100%;
  }
}

.col__logox {
  width: 47%;
  text-align: center;
  margin-top: 4rem;
}

@media screen and (max-width: 767px) {
  .col__logox {
    width: 100%;
  }
}

.col__logox img {
  width: 31.5rem;
}

.col__link {
  width: 24.5%;
}

@media screen and (max-width: 767px) {
  .col__link {
    width: 100%;
  }
}

.top__company {
  position: relative;
  padding-top: 20rem;
  padding-bottom: 35.5vw;
  background-image: url(../img/top/i-26.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 86.458vw auto;
  margin-bottom: -9rem;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .top__company {
    padding-top: 10rem;
  }
}

.top__company .title__des {
  margin-top: 0;
  margin-bottom: 4rem;
}

.top__company .btn {
  margin-top: 4.5rem;
}

.company_link_page {
  margin-top: 9rem;
}

@media screen and (max-width: 767px) {
  .company_link_page {
    margin-top: 5rem;
  }
}

.title__banner-jp {
  display: block;
}

@media screen and (max-width: 767px) {
  .title__banner-jp img {
    width: 34rem !important;
    min-height: initial !important;
  }
}

.banner {
  position: relative;
}

.title__banner-en {
  display: block;
  margin-top: 3.5rem;
}

@media screen and (max-width: 767px) {
  .title__banner-en {
    margin-top: 1.5rem;
  }

  .title__banner-en img {
    width: 34rem !important;
    min-height: initial !important;
  }
}

.group__title__banner {
  position: absolute;
  bottom: 9rem;
  left: 20rem;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .group__title__banner {
    position: initial;
    text-align: center;
    margin-top: 6rem;
  }
}

.top__about {
  padding-top: 23.5rem;
  padding-bottom: 24rem;
}

@media screen and (max-width: 767px) {
  .top__about {
    padding-top: 7rem;
    padding-bottom: 9rem;
  }
}

.top__about .row {
  width: calc(100% - 3rem);
  max-width: 111rem;
  margin: 0 auto;
}

.top__about .col__title-b {
  width: 49%;
}

.top__about .col__text-b {
  width: 51%;
}

@media screen and (max-width: 767px) {

  .top__about .col__title-b,
  .top__about .col__text-b {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .top__about .col__title-b {
    order: 1;
  }
}

.top__about .col__text-b {
  padding-top: 5rem;
}

@media screen and (max-width: 767px) {
  .top__about .col__text-b {
    order: 2;
  }
}

.top__about .col__text-b .text__b {
  margin-top: 3rem;
  line-height: 2.9;
}

@media screen and (max-width: 767px) {
  .top__about .col__text-b .text__b {
    line-height: 2;
  }
}

@media screen and (max-width: 767px) {
  .top__about .tiltle__about img {
    width: 20rem !important;
  }
}

.top__business {
  padding-top: 8rem;
  padding-bottom: 19rem;
  margin-top: -14rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top__business {
    padding-top: 4rem;
    margin-top: 4rem;
    padding-bottom: 8rem;
  }
}

.top__business::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background-color: #0072bc;
  width: 86.5rem;
  height: 70rem;
}

.top__business .busines__inner {
  position: relative;
  z-index: 10;
  color: #fff;
}

.top__business .col__bt {
  width: 49%;
  margin-right: auto;
  padding-left: 15rem;
  max-width: 49rem;
}

@media screen and (max-width: 767px) {
  .top__business .col__bt {
    padding-left: 0;
    margin: 0 1.5rem;
    width: 100%;
    order: 1;
  }
}

.top__business .col__bt .txt-fs15 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.top__business .btn__blue .btn__white {
  background-color: transparent;
  border: 2px solid #fff;
  background-image: url(../img/common/icon1.png);
}

.top__business .btn__blue .btn__white img {
  filter: brightness(0) invert(1);
}

.top__business .btn__blue .btn__white:hover {
  background-image: url(../img/common/i-g.png);
  border: 2px solid #fff;
  background-color: #fff;
}

.top__business .btn__blue .btn__white:hover img {
  filter: initial;
}

.business__slider {
  gap: 3px;
  display: flex;
  width: 100%;
  height: 55rem;
  counter-reset: product_slide;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .business__slider {
    padding: 0 1rem;
    position: relative;
    height: 30rem;
    justify-content: center;
  }
}

.business__slide {
  width: calc(25% - 3.5px);
  height: 100%;
  position: relative;
  overflow: hidden;
  visibility: visible;
  transition: width 0.5s ease-out;
}

@media screen and (max-width: 767px) {
  .business__slide {
    height: initial;
    width: calc(25% - 3.5px) !important;
  }
}

.col__hover-x {
  margin-top: 13rem;
  width: 61%;
  position: relative;
  background-color: #fff;
  height: 55rem;
}

@media screen and (max-width: 767px) {
  .col__hover-x {
    margin-top: 7rem;
    width: 100%;
    order: 2;
    height: initial;
    background-color: transparent;
  }
}

.business__slide:hover {
  z-index: 1;
  width: 824px;
}

@media screen and (max-width: 767px) {
  .business__slide:hover {
    width: calc(25% - 3.5px);
  }
}

.img__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.img__text img {
  width: 7.7rem;
}

.business__slide--img {
  position: absolute;
  top: 0;
  left: -15rem;
  width: auto;
  height: 100%;
  max-width: inherit;
  transition: left 0.3s ease-out;
}

@media screen and (max-width: 767px) {
  .business__slide--img {
    left: -10rem;
  }
}

.business__slide--img4 {
  left: -13rem;
}

.business__slide--img2 {
  left: 0;
}

@media screen and (max-width: 767px) {
  .business__slide--img2 {
    left: -10rem;
  }
}

.business__slide:hover .business__slide--img {
  left: 0;
}

.top__results {
  background-image: url(../img/top/logo_line.png);
  background-repeat: no-repeat;
  background-size: 92.2rem auto;
  background-position: 5.5rem top;
}

.top__results .txt-fs15 {
  margin-top: 5rem;
  margin-bottom: 4.5rem;
}

@media screen and (max-width: 767px) {
  .top__results .txt-fs15 {
    margin-top: 3rem;
    margin-bottom: 2.5rem;
  }
}

.top__results .col__get_post {
  width: 61%;
  padding-top: 8rem;
}

@media screen and (max-width: 767px) {
  .top__results .col__get_post {
    width: 100%;
    padding-top: 4rem;
  }
}

.top__results .al_ct {
  align-items: center;
}

.top__results .col__bt {
  width: 49%;
  max-width: 44rem;
  margin-left: auto;
  padding-right: 6rem;
}

.top__results .col__bt .title__des {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .top__results .col__bt {
    width: 100%;
    padding: 1.5rem;
  }
}

.top__results .col__02r {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .top__results .col__02r {
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.top__results .col__02r .img__page {
  width: 100%;
  height: 42rem;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .top__results .col__02r .img__page {
    height: auto;
  }
}

.top__results .col__02r a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.top__results .col__02r a .group__hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 114, 188, 0.85);
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 13rem;
}

@media screen and (max-width: 767px) {
  .top__results .col__02r a .group__hover {
    opacity: 1;
    position: initial;
    display: block;
    padding: 1.5rem 1.5rem 2rem;
    background-color: #0072bc;
    height: initial;
  }
}

.top__results .col__02r a .group__hover .group__hover__text {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .top__results .col__02r a .group__hover .group__hover__text {
    width: 100%;
  }
}

.top__results .col__02r a .group__hover .h3__01 {
  border-bottom: 1px solid #fff;
  margin-bottom: 1.8rem;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.2;
  padding-bottom: 1.8rem;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 32.5rem;
}

@media screen and (max-width: 767px) {
  .top__results .col__02r a .group__hover .h3__01 {
    font-size: 2rem;
    white-space: initial;
    overflow: initial;
    text-overflow: initial;
    max-width: 100%;
  }
}

.top__results .col__02r a .group__hover .link_po {
  width: 16rem;
}

.top__results .col__02r a .group__hover .p__01 {
  font-weight: bold;
}

.top__results .col__02r a:hover .group__hover {
  opacity: 1;
}

.ookisa {
  animation: ookisa 0.3s ease-in forwards;
  animation-delay: 0.5s;
}

.n_12 {
  height: 100vh;
  position: fixed;
  overflow: visible;
  width: 100vw;
  background: #231f20;
  left: 0;
  bottom: 0;
  z-index: 999;
}

@keyframes ookisa {
  0% {
    height: 100vh;
  }

  100% {
    height: 0px;
  }
}

@media screen and (max-width: 767px) {
  .bg_r img {
    -o-object-position: right;
    object-position: right;
  }
}

/*# sourceMappingURL=style.css.map */