/* base */

main {
  z-index: 2;
  position: relative;
    margin-top: 105px;
}
@media screen and (min-width: 768px) {
   main {
       margin-top: 100px;
    }   
}
@media screen and (min-width: 1200px) {
   main {
       margin-top: 66px;
    }   
}


/* overwrite */

.btn-primary.btn-outline {
  border-color: #fff;
}

/* common */

.btn {
  border-radius: 0;
}

.btn .fas + span,
.btn span + .fas {
  position: relative;
  margin-left: .5em;
}

.btn.icon-arrow::after {
  -webkit-transform: translateY(-50%);
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url(../images/common/icon-arrow-wh.png) center center/cover no-repeat;
  content: "";
}

.btn-lg {
  border-radius: 0;
}

.btn-outline {
  position: relative;
  border-width: 1px;
  border-style: solid;
  font-size: 12px;
}

.btn-outline::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 32px;
  width: 40px;
  height: 1px;
  content: "";
  transition: .5s width ease,.5s right ease;
}

.btn-outline::before {
  -webkit-transform: translateY(-50%);
  display: block;
  position: absolute;
  top: calc(50% - 2px);
  right: 32px;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-top: 2px solid rgba(255, 255, 255, 0);
  border-right: 5px solid rgba(255, 255, 255, 0);
  border-bottom: 2px solid white;
  border-left: 5px solid white;
  content: "";
  opacity: 0;
  transition: .5s right ease,.5s opacity ease;
}

.btn-outline:hover::before,
.btn-outline:focus::before {
  right: 20px;
  opacity: 1;
}

.btn-outline:hover::after,
.btn-outline:focus::after {
  right: 20px;
}

.btn-wh {
  background: #fff;
}

.btn-wh.btn-outline {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}

.btn-wh.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-wh.btn-outline::after {
  background: #fff;
}

.btn-primary.btn-outline::after {
  background: #fff;
}

.btn-bk {
  background: #000;
  color: #fff;
}

.btn-bk.btn-outline {
  border-color: #000;
  background-color: transparent;
  color: #000;
}

.btn-bk.btn-outline:hover {
  background: rgba(0, 0, 0, 0.2);
}

.btn-bk.btn-outline::after {
  background: #000;
}

.btn-bk.btn-outline::before {
  border-top-color: rgba(0, 0, 0, 0);
  border-right-color: rgba(0, 0, 0, 0);
  border-bottom-color: black;
  border-left-color: black;
}

.btn-bk:hover {
  color: rgba(255, 255, 255, 0.8);
}

.bg-gray {
  background-color: #555555;
}

.bg-lightgray {
  background-color: #cccccc;
}

.bg-white {
  background-color: #fff;
}

.bg-blue {
  background-color: #e2f2ff;
}

.text-white {
  color: #fff;
}

.text-mincho {
  font-family: 'Noto Serif JP', serif;
}

.txt {
  line-height: 2;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.title.icon {
  position: relative;
  padding-left: 28px;
  border-bottom: 1px solid #007fc0;
  font-size: 20px;
  line-height: 1.4;
}

.title.icon::before {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../images/common/icon-block.png);
  content: "";
}

.title.icon + * {
  margin-top: 30px;
}

.label-lg {
  border-radius: 0;
  font-size: 1em;
}

.sec-title {
  font-size: 30px;
}

.fas + span,
span + .fas,
.fas + a[href*="tel"],
a[href*="tel"] + .fas {
  margin-left: .5em;
}

#header {
  z-index: 99;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 66px;
  margin: auto;
    background: #fff;
}

#header .container-fluid .col-xs-12:first-of-type {
  background: #fff;
}

.business-info {
  padding-top: 0.5em;
  padding-bottom: .5em;
}
@media screen and (min-width: 1200px) {
 .business-info {
  padding-top: 0.8em;
  padding-bottom: .5em;
}   
}
.business-info p {
  margin-bottom: 0;
  font-size: .9em;
}

.business-info p + p {
  margin-top: 0em;
}

@media screen and (min-width: 1200px) {

.business-info p + p {
  margin-top: .5em;
}
}


#gNav {
  min-height: initial;
}

#gNav > ul {
  margin: 0;
  list-style: none;
}

#gNav .nav-item {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

#gNav .nav-item > a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
}

#gNav .nav-item > a::before {
  display: block;
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  content: "";
  transition: .5s all ease;
}

#gNav .nav-item > a:hover{
  background: rgba(255, 255, 255, 0.1);
}

#gNav .nav-item > a:hover::before{
  width: 46%;
  background: rgba(255, 255, 255, 0.7);
}

#gNav .nav-item.active a::before {
  width: 46%;
  background: rgba(255, 255, 255, 0.7);
}

#gNav .nav-item:last-child {
  -ms-flex: 0 0 66px;
  flex: 0 0 66px;
  background: #e3f2ff;
}

#gNav .nav-item:last-child a {
  color: #266dab;
}

#gNav .nav-item:last-child a::before {
  display: none;
}

#gNav .nav-item.dropdown > a::after{
  margin-left: 5px;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
}
#gNav .nav-item.dropdown .dropdown-menu{
  top: 98%;
  padding: 5px;
  float: initial;
  border-radius: initial;
}
#gNav .nav-item.dropdown .dropdown-menu > li > a{
  padding: 8px;
  font-size: 13px;
}
#gNav .nav-item.dropdown .dropdown-menu > li > a::before{
  margin-right: 5px;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
}

.logo {
  height: 100%;
  margin: 0;
}
.logo img{height: 50px;  width: auto;}



@media screen and (min-width: 768px) {
 .logo img{height: 60px;  width: auto;}   
}

/* pages */

.header {
  padding-top: 130px;
  padding-bottom: 130px;
  background: #266dab;
}

.header .p-title {
  display: inline-block;
  background: #71acdf;
}

.header .p-title .text-center {
  -ms-flex-flow: column nowrap;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}

.header .p-title .text-center small,
.header .p-title .text-center span {
  display: block;
}

.header .p-title .text-center small {
  font-size: 30px;
  line-height: 1.3;
}

.header .p-title .text-center span {
  margin-top: 0.25em;
  font-size: 52px;
}

/* footer */

.footer {
  margin-top: 60px;
}

.contact-info {
  margin-top: 1.5rem;
}

.contact-info li {
  margin-top: .25em;
  padding-right: 1rem;
  padding-left: 1rem;
  text-align: center;
}

/* .contact-info li:last-child {
  margin-top: 1em;
} */

.fLogo {
  margin-top: 2.2rem;
}

.copyright {
  margin-top: 3.6rem;
  margin-bottom: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid #000;
}

/* pagetop
---------------------------------------------------- */

#pagetop {
  z-index: 100;
  position: fixed;
  right: 0;
  bottom: 0;
}

/* pages */

/* index */

#index {
  position: relative;
  counter-reset: item;
}

#index::before,
#index::after {
  display: block;
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 780px;
  content: "";
}

#index::before {
  top: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 40%, #266dab 40%, #266dab 100%) 0 0/cover no-repeat;
}

#index::after {
  top: 520px;
  left: 0;
  background: #e3f2ff;
  background: linear-gradient(90deg, #e3f2ff 50%, #fff 50%, #fff 100%) 0 0/cover no-repeat;
}

section.fv {
  z-index: 1;
  position: relative;
}

section.fv > .container {
  -webkit-transform: translateY(-50%);
  z-index: 30;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: auto;
  transform: translateY(-50%);
}

section.about {
  padding-top: 80px;
  padding-bottom: 80px;
}

section.about .sec-title small {
  color: #b8b8b8;
}

section.about .motto {
  margin-top: 2em;
}

section.support {
  min-height: 788px;
  padding-top: 250px;
  background: url(../images/index/bg-support.jpg) center center/cover no-repeat;
}

section.support .row {
  z-index: 2;
  position: relative;
}

section.support .row + .row {
  margin-top: 30px;
}

section.support .sec-title {
  padding-left: 10px;
  border-left: 5px solid #fff;
  line-height: 1.4;
}

section.support .bg {
  padding-top: 40px;
  padding-bottom: 56px;
  background: url(../images/index/bg-support.png) right center no-repeat;
}

section.support .content {
  position: relative;
}

section.support .content::after {
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
}

section.support .support-item span {
  display: block;
  position: relative;
  padding: 2em 0;
  border: 1px solid #fff;
  text-align: center;
}

section.support .support-item span::before,
section.support .support-item span::after {
  display: block;
  position: absolute;
}

section.support .support-item span::before {
  z-index: 2;
  top: .25em;
  left: 1em;
  content: "0" counter(item);
  counter-increment: item;
}

section.support .support-item span::after {
  z-index: 1;
  top: 1em;
  left: 0;
  width: 10px;
  height: 1px;
  background: #fff;
  content: "";
}

section.support .txt {
  line-height: 2;
}

.service {
  position: relative;
  padding-top: 100px;
}

.service .container-fluid.bg {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}

.service .bg-img {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.service .bg-img img {
  width: 100%;
  height: auto;
}

.service .title {
  margin-bottom: 60px;
}

.service .contents {
  z-index: 2;
  position: relative;
}

.service .contents .content {
  padding-top: 40px;
  padding-bottom: 40px;
}

.recruit {
  z-index: 2;
  position: relative;
  padding-bottom: 68px;
  background: url(../images/index/bg-recruit.jpg) left top/50% auto no-repeat;
}

/* company */

.greeting {
  padding-bottom: 144px;
  background: url(../images/company/bg-greeting.jpg) bottom center/cover no-repeat;
}

.greeting .sec-title + .row {
  margin-top: 76px;
}

.greeting p {
  font-size: 13px;
  line-height: 1.8;
}

.greeting p + p {
  margin-top: 1.5em;
}

.greeting .lead {
  font-size: 24px;
}

.outline .posts .post {
  display: inline-block;
  width: 6em;
}

.history .list-item:nth-child(n+3) {
  margin-top: 1em;
}

.client .list-item {
  padding-top: .5em;
  padding-bottom: .5em;
  font-size: 12px;
  text-align: center;
}

.access .map {
  margin-top: 1.6rem;
}

.access .map iframe {
  border: none;
}

.access .gmap {
  margin-top: 60px;
}

.access .table_float th,
.access .table_float td,
.outline .table_float th,
.outline .table_float td {
  border: none;
  border-bottom: 1px solid #dcdcdc;
  background: transparent;
  font-weight: normal;
}

.access .table_float th,
.outline .table_float th {
  white-space: nowrap;
}

/* contact */

#contact .form .label {
  margin-left: .5em;
}

#contact .text-mincho {
  font-weight: bold;
}

.fBody tbody > tr > th,
.fBody tbody > tr > td {
  padding: 0 .5em 1em;
}

.fBody tbody > tr > th {
  white-space: nowrap;
}

.line {
  padding: .25em 0;
  border-bottom: 1px solid #000;
}

.cTel .phone {
  font-size: 60px;
}

.cTel .btn-submit,
.cTel .btn-back {
  border-bottom-width: 3px;
}

.cTel .btn-submit strong {
  font-size: 2em;
}

.form {
  margin-top: 40px;
}

.privacy {
  margin-top: 80px;
}

.privacy ul + h4,
.privacy ol + h4,
.privacy p + h4,
.privacy ul + h5,
.privacy ol + h5,
.privacy p + h5 {
  margin-top: 2em;
}

.privacy .col-xs-12 {
  padding: 1em 1.5em;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
}

.privacy h3.title {
  padding: .25em .5em;
}

/* activities */

#activities .outline {
  border-bottom: 1px solid #000;
}

.support-list {
  margin-top: 50px;
}

.support-list .list-item {
  position: relative;
}

.support-list .list-item span {
  -ms-flex-pack: center;
  -ms-flex-align: center;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  left: 15px;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: auto;
  border-radius: 100%;
  text-align: center;
}

.support-list .list-item:first-of-type span {
  background: #e2f2ff;
}

.support-list .list-item:nth-of-type(2n) span {
  background: #fcffe2;
}

.support-list .list-item:nth-of-type(3n) span {
  background: #e2fffa;
}

.support-list .list-item:last-of-type span {
  background: #f1e2ff;
}

.support-list + p {
  margin-top: 56px;
}

.development .lead {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.6;
}

.development .table_float th,
.development .table_float td {
  border: 1px solid #dcdcdc;
  text-align: center;
  white-space: nowrap;
}

.development .table_float th:empty,
.development .table_float td:empty {
  content: " ";
}

.development .table_float .sub-title {
  background: #e2f2ff;
}

.development .language,
.development .db {
  background: #dcdcdc;
  vertical-align: middle;
}

.development .details {
  margin-top: 28px;
}

.dispatch section + section {
  margin-top: 40px;
}

.dispatch .lead {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.6;
}

.dispatch .title.bg {
  background: #005aa0;
  color: #fff;
  font-weight: bold;
}

.dispatch .label-lg {
  border-radius: 0;
  font-size: 1em;
}

.dispatch .label-lg + p {
  margin-top: 1em;
}

.achievement .table_float th,
.achievement .table_float td {
  padding: 1em;
  border: 1px solid #dcdcdc;
}

.achievement .table_float th {
  width: auto;
  background: #e2f2ff;
  vertical-align: middle;
}

.achievement .table_float td {
  vertical-align: middle;
}

/* recruitment */

.wanted .list-item {
  position: relative;
  height: 100px;
}

.wanted .list-item span {
  display: table-cell;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  left: 15px;
  height: 100%;
  margin: auto;
  padding: 2em 1em;
  background: #e2f2ff;
  text-align: center;
  vertical-align: middle;
}

.type,
.points {
  padding-top: 30px;
  padding-bottom: 30px;
}

.type .title.icon,
.points .title.icon {
  margin-top: 0;
}

.type .title.icon + .label-lg,
.type .title.icon .job,
.points .title.icon + .label-lg,
.points .title.icon .job {
  margin-top: 2rem;
  margin-bottom: 0;
}

.type .title.icon + .label-lg + .table_float,
.type .title.icon .job + .table_float,
.points .title.icon + .label-lg + .table_float,
.points .title.icon .job + .table_float {
  margin-top: 1.5rem;
}

.type .title.icon + .label-lg {
  margin-top: 1.5em;
}

.type .label-lg {
  display: block;
  width: 40%;
  padding: 1em;
}

.type .label-lg + .table_float {
  margin-top: 1em;
}

.entry .bg-white {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* recruitment-graduate */
.business2{
  padding-bottom: 30px;
}
.business2-list {
  margin-top: 50px;
}

.business2-list .list-item {
  position: relative;
}

.business2-list .list-item span {
  -ms-flex-pack: center;
  -ms-flex-align: center;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  left: 15px;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: auto;
  border-radius: 100%;
  text-align: center;
}

.business2-list .list-item:first-of-type span {
  background: #e2f2ff;
}

.business2-list .list-item:nth-of-type(2n) span {
  background: #fcffe2;
}

.business2-list .list-item:nth-of-type(3n) span {
  background: #e2fffa;
}

.business2-list .list-item:last-of-type span {
  background: #f1e2ff;
}

.business2-list + p {
  margin-top: 56px;
}

.feature{
  padding-top: 30px;
  padding-bottom: 30px;
}

.feature .label{
  display: inline-block;
  padding: 10px 15px 7px;
}

.statue{
  padding-top: 30px;
  padding-bottom: 30px;
}

.statue .box-blue{
  margin-top: 1.5em;
}

.statue .list-check{
  font-size: 18px;
}

.flow{
  padding-top: 30px;
  padding-bottom: 30px;
}

.flow-schedule{
  position: relative;
  padding: 0;
  margin: 0;
}

.flow-schedule > li{
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.flow-schedule > li::before{
  position: absolute;
  top: 0;
  left: 15px;
  width: 20px;
  height: 100%;
  background: #e3f2ff;
  content: "";
  z-index: -1;
}

.flow-schedule > li + li{
  margin-top: 1.5em;
}

.flow-schedule > li .time{
  flex-shrink: 0;
  width: 50px;
  color: #005aa0;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.flow-schedule > li .detail{
  display: flex;
  align-items: center;
  column-gap: 10px;
  width: 100%;
}
.flow-schedule > li .text{
  margin: 0;
  font-size: 16px;
}
.flow-schedule > li .image{
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}
.flow-schedule > li .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice{
  padding-top: 30px;
  padding-bottom: 30px;
}

.voice-contents{
  padding: 20px;
  background: #e3f2ff;
}
.voice-contents + .voice-contents{
  margin-top: 30px;
}

.voice-detail{
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin-bottom: 15px;
}
.voice-detail .image{
  flex-shrink: 0;
  width: 115px;
}
.voice-detail .name{
  font-size: 20px;
  font-weight: bold;
}
.voice-detail .old{
  font-weight: bold;
  color: #005aa0;
}

.entry2{
  padding-top: 30px;
  padding-bottom: 0;
}

.entry2-2columns{
  display: flex;
  column-gap: 30px;
}
.entry2-2columns .column{
  width: 100%;
}
.entry2-title{
  padding: 15px 15px 12px;
  margin-bottom: 10px;
  background: #005aa0;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.entry2-item{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px 15px 12px;
  margin-bottom: 30px;
  background: #e3f2ff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.entry2-item::after{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: url(../images/entry2-arrow.png);
}
.entry2-item.last{
  margin-bottom: 0;
}
.entry2-item.last::after{
  display: none;
}
.entry2-item .caption{
  display: block;
  font-weight: normal;
  font-size: 14px;
  margin-top: 5px;
}



  .fNav {
    -ms-flex-pack: center;
    -ms-flex-align: center;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 5px;
  }

  .fNav li {
    position: relative;
  }

  .fNav li:not(:last-child)::before {
    -webkit-transform: translateY(-50%);
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 1em;
    transform: translateY(-50%);
    background: #000;
    content: "";
  }

  .fNav a {
    display: block;
    padding: 0 1rem;
    color: inherit;
    text-decoration: none;
  }


@media screen and (min-width: 768px) {
  .table_float th {
    display: table-cell;
    width: 20%;
    background: #e2f2ff;
  }

  .table_float td {
    display: table-cell;
  }

  .table_float th,
  .table_float td {
    border: 1px solid #dcdcdc;
  }

  .table > tbody > tr > th,
  .table > tbody > tr > td {
    padding: .5em 1em;
  }

  #header .container-fluid .col-xs-12:first-of-type {
    padding-left: 0;
  }

  #gNav {
    padding-right: 0;
  }

  #gNav > ul {
    -ms-flex-pack: end;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
  }

  #gNav .nav-item > a {
    -ms-flex-pack: center;
    -ms-flex-align: center;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 66px;
  }
  #gNav .nav-item.dropdown:hover .dropdown-menu{
    display: block;
  }

  #navSwitch {
    display: none;
  }

  .contact-info {
    -ms-flex-pack: center;
    -ms-flex-align: center;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
  }


  .fAddress {
    margin-top: 2.2rem;
  }

  .client .list-item {
    padding-top: 1em;
    padding-bottom: 1em;
    border: 1px solid #dcdcdc;
  }

  .access .map {
    width: 100%;
    height: 428px;
  }

  #form .table_float tr th {
    position: relative;
    width: 25%;
  }

  #form .table_float tr th .label {
    position: absolute;
    right: 1em;
  }

  #form .table_float tr:not(:last-of-type) th {
    vertical-align: middle;
  }

  #form .table_float tr:not(:last-of-type) th .label {
    -webkit-transform: translateY(-50%);
    top: 50%;
    transform: translateY(-50%);
  }

  #form .table_float tr:last-of-type th .label {
    top: 1.8em;
  }

  .support-list .list-item {
    padding-top: calc(100% / 4 - 30px);
  }

  .points .job {
    display: table;
    width: 100%;
    margin-top: 1.5em;
  }

  .points .job dt,
  .points .job dd {
    display: table-cell;
    padding: .5em 1em;
    border: 1px solid #007fc0;
  }

  .points .job dt {
    width: 20%;
    background: #007fc0;
    color: #fff;
  }

  .points .table_float th {
    background: #e2f2ff;
    vertical-align: middle;
  }

  .business2-list .list-item {
    padding-top: calc(100% / 4 - 30px);
  }
}

@media screen and (min-width: 992px) {
  .recruit {
    margin-top: -60px;
    padding-top: 80px;
  }
}

@media screen and (min-width: 1200px) {
  #header .container-fluid {
    background: linear-gradient(90deg, #fff 0, #fff 25%, #266dab 25%, #266dab 100%);
  }

  section.support .bg {
    background-size: calc(100% - ((100% - 1170px) / 2) - (1170px / 12 * 3) - 15px) 100%;
  }

  .service .contents {
    z-index: 2;
    position: relative;
  }

  .service .contents .content {
    padding-top: 60px;
    padding-bottom: 90px;
  }

  .service .contents .content:first-child {
    margin-bottom: 60px;
  }

  .service .contents .content:last-child {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .service .bg-img [class*="col-"]:last-child {
    padding-top: 60px;
  }

  .service .bg::before {
    display: block;
    position: absolute;
    top: 0;
    right: 50%;
    bottom: 0;
    left: 0;
    width: 50%;
    margin: auto;
    background: url(../images/index/bg-finance.jpg) top right/cover no-repeat;
    content: "";
  }

  .service .bg::after {
    display: block;
    position: absolute;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 50%;
    width: 50%;
    margin: auto;
    background: url(../images/index/bg-dispatching.jpg) bottom left/cover no-repeat;
    content: "";
  }

  .client .list-item:nth-child(n+2):not(:nth-child(4n+1)) {
    margin-left: -1px;
  }

  .client .list-item:nth-child(n+5) {
    margin-top: -1px;
  }

  #contact .table_float th,
  #contact .table_float td {
    padding-top: .5em;
    padding-bottom: .5em;
  }

  #contact .table_float td {
    padding-left: 1em;
  }
}

@media screen and (max-width: 991px) {
  .wanted .list-item span {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }

  .wanted .list-item + .list-item {
    margin-top: 1em;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .sec-title {
    font-size: 8vmin;
  }

  .title {
    font-size: 5vmin;
  }

  .title.icon {
    font-size: 5.6vmin;
  }

  .table_float tr {
    display: block;
  }

  .table_float th {
    display: block;
    width: 100%;
  }

  .table_float td {
    display: block;
    width: 100%;
  }

  #header {
    height: auto;
  }

  #header .container-fluid > .row > .col-xs-12.col-sm-4 {
    height: 56px;
  }

  .business-info p {
    margin-bottom: .25em;
    font-size: 0.8em;
  }

  .business-info a {
    color: #fff;
  }

  #gNav {
    position: relative;
  }

  #gNav > ul {
    display: none;
    padding: 0;
  }

  #gNav > ul.active {
    display: block;
    padding-top: 56px;
  }

  #gNav .sp-contact {
    -ms-flex-pack: center;
    -ms-flex-align: center;
    display: -ms-flexbox !important;
    display: flex !important;
    z-index: 10;
    position: fixed;
    top: 0;
    right: 56px;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #fff;
    text-decoration: none;
  }

  #gNav .nav-item > a {
    display: block;
    position: relative;
    padding: .75rem 2.5rem;
  }

  #gNav .nav-item > a::after {
    display: block;
    position: absolute;
    top: 50%;
    left: .75rem;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
  }

  #gNav .nav-item.dropdown > a::after {
    margin-left: initial;
    content: "\f067";
  }

  #gNav .nav-item.dropdown.open > a::after {
    margin-left: initial;
    content: "\f068";
  }

  #gNav .nav-item.dropdown .dropdown-menu{
    position: static;
  }

  #navSwitch {
    z-index: 99;
    position: fixed;
    top: 0;
    right: 0;
    width: 56px;
    height: 56px;
    padding: .5rem;
    border: none;
    background: none;
  }

  #navSwitch .wrap {
    -ms-flex-flow: column nowrap;
    -ms-flex-pack: distribute;
    -ms-flex-align: center;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    margin: 0 auto;
  }

  #navSwitch .bar {
    display: block;
    width: 100%;
    height: 2px;
    margin: 0 auto;
    background: #000;
    transition: .5s all ease;
  }

  #navSwitch .bar:first-of-type {
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  #navSwitch .bar:nth-of-type(2) {
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  #navSwitch .bar:last-of-type {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }

  #navSwitch.active .bar:first-of-type {
    -webkit-transform: rotate(45deg) translate(4px, -4px);
    transform: rotate(45deg) translate(4px, -4px);
  }

  #navSwitch.active .bar:nth-of-type(2) {
    width: 0;
  }

  #navSwitch.active .bar:last-of-type {
    -webkit-transform: rotate(-45deg) translate(4px, 5px);
    transform: rotate(-45deg) translate(4px, 5px);
  }

  .logo a {
    display: block;
    width: 40%;
    margin-left: -15px;
  }

  .header {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .header .p-title .text-center small {
    font-size: 6vmin;
  }

  .header .p-title .text-center span {
    font-size: 10vmin;
  }

  #index::before {
    height: 50vh;
  }

  #index::after {
    top: 50vh;
  }

  section.support .bg {
    background-size: cover;
  }

  section.support .support-item span {
    font-size: 3.8vmin;
  }

  section.support .support-item:nth-child(n+3) {
    margin-top: 1em;
  }

  .service .content:first-of-type {
    background: url(../images/index/bg-finance.jpg) center center/cover no-repeat;
  }

  .service .content:last-of-type {
    background: url(../images/index/bg-dispatching.jpg) center center/cover no-repeat;
  }

  .recruit {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 60vw;
    background-position: bottom center;
    background-size: 100% auto;
  }

  .greeting .sec-title + .row {
    margin-top: 16px;
  }

  .greeting {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.7) 100%), url(../images/company/bg-greeting-sp.jpg) bottom center/cover no-repeat;
  }

  .greeting p {
    font-size: 3.65vmin;
    text-align: center;
  }

  .greeting p.lead {
    margin-bottom: 1em;
    font-size: 4.75vmin;
  }

  .greeting p span.visible-xs-block {
    display: block;
    margin-top: 1.5em;
  }

  .greeting .text-right {
    text-align: right !important;
  }

  .history .list-item:nth-child(n+2):nth-child(even) {
    margin-top: initial;
  }

  .access .map {
    width: 100%;
    height: 60vh;
  }

  .cTel .sec-title + .row {
    margin-top: 1.5em;
  }

  .cTel .phone {
    font-size: 9vmin;
  }

  #contact .table_float tr {
    display: block;
  }

  #contact .table_float tr + tr {
    margin-top: 1em;
  }

  #contact .table_float td {
    margin-top: -.5em;
  }

  #contact .table_float > tbody > tr > th,
  #contact .table_float > tbody > tr > td {
    border: none;
  }

  #contact .btn-submit {
    font-size: 4.4vmin;
  }

  #contact dd + dt {
    margin-top: 1em;
  }

  .privacy {
    margin-top: 80px;
  }

  .privacy ul + h4,
  .privacy ol + h4,
  .privacy p + h4,
  .privacy ul + h5,
  .privacy ol + h5,
  .privacy p + h5 {
    margin-top: 1.5em;
  }

  .privacy .col-xs-12 {
    padding: 1em;
  }

  .support-list .list-item {
    padding-top: calc(50% - 30px);
  }

  .support-list .list-item:nth-child(n+3) {
    margin-top: 15px;
  }

  .development .table_float th:empty,
  .development .table_float th.empty,
  .development .table_float td:empty,
  .development .table_float td.empty {
    padding: 0;
    border: none;
  }

  .achievement .table_float td:empty {
    display: none;
    padding: 0;
  }

  .business2-list .list-item {
    padding-top: calc(50% - 30px);
  }

  .business2-list .list-item:nth-child(n+3) {
    margin-top: 15px;
  }

  .statue .list-check{
    font-size: 14px;
  }
  
  .flow-schedule > li .text{
    font-size: 14px;
  }

  .entry2-2columns{
    column-gap: 10px;
  }
  .entry2-title{
    padding: 12px 12px 9px;
    font-size: 16px;
  }
  .entry2-item{
    padding: 12px 12px 9px;
    font-size: 14px;
  }
  .entry2-item .caption{
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .business-info p {
    display: inline-block;
    margin-right: 2em;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .service .contents {
    z-index: 2;
    position: relative;
  }

  .service .contents .content {
    padding-top: 60px;
    padding-bottom: 90px;
  }

  .service .contents .content:first-child {
    margin-bottom: 60px;
  }

  .service .contents .content:last-child {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .service .bg-img [class*="col-"]:last-child {
    padding-top: 60px;
  }

  .service .bg::before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: auto;
    background: url(../images/index/bg-finance.jpg) top right/auto 100% no-repeat;
    content: "";
  }

  .service .bg::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: auto;
    background: url(../images/index/bg-dispatching.jpg) top left/auto 100% no-repeat;
    content: "";
  }

  .recruit {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../images/index/bg-recruit.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .recruit > .container > .row {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .client .list-item:nth-child(n+2):not(:nth-child(2n+1)) {
    margin-left: -1px;
  }

  .client .list-item:nth-child(n+3) {
    margin-top: -1px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .service .contents {
    z-index: 2;
    position: relative;
  }

  .service .contents .content {
    padding-top: 60px;
    padding-bottom: 90px;
  }

  .service .contents .content:first-child {
    margin-bottom: 60px;
  }

  .service .contents .content:last-child {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .service .bg-img [class*="col-"]:last-child {
    padding-top: 60px;
  }

  .service .bg::before {
    display: block;
    position: absolute;
    top: 0;
    right: 50%;
    bottom: 60px;
    left: 0;
    width: 50%;
    margin: auto;
    background: url(../images/index/bg-finance.jpg) top right/cover no-repeat;
    content: "";
  }

  .service .bg::after {
    display: block;
    position: absolute;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 50%;
    width: 50%;
    margin: auto;
    background: url(../images/index/bg-dispatching.jpg) center center/cover no-repeat;
    content: "";
  }
}

@media screen and (min-width: 991px) and (max-width: 1199px) {
  .client .list-item:nth-child(n+2):not(:nth-child(3n+1)) {
    margin-left: -1px;
  }

  .client .list-item:nth-child(n+4) {
    margin-top: -1px;
  }
}

@media print {
  body,
  .container-fluid,
  .container {
    min-width: initial !important;
  }

  #header {
    position: relative;
  }

  .col-lg-pull-5 {
    right: initial;
  }

  #gNav {
    display: -ms-flexbox;
    display: flex;
    left: initial !important;
    width: auto;
  }

  #gNav > ul {
    display: -ms-flexbox;
    display: flex;
  }

  #gNav .nav-item > a {
    padding: 2em;
    white-space: nowrap;
  }

  .recruit .col-xs-12.col-sm-7.col-md-4.col-md-offset-7 {
    padding: 2em;
    background: rgba(255, 255, 255, 0.9);
  }

  .table_float {
    width: 100%;
  }

  .table_float tbody {
    display: block;
  }

  .about .container {
    z-index: 99;
    position: relative;
  }

  #index::before,
  #index::after {
    content: none;
  }

  .support-list .list-item {
    padding-top: calc(25% - 30px);
  }

  .service .contents {
    z-index: 2;
    position: relative;
  }

  .service .bg::before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -50%;
    width: 50%;
    margin: auto;
    background: url(../images/index/bg-finance.jpg) top left/auto 100% no-repeat;
    content: "";
  }

  .service .bg::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    width: 50%;
    margin: auto;
    background: url(../images/index/bg-dispatching.jpg) top center/auto 100% no-repeat;
    content: "";
  }

  .business2-list .list-item {
    padding-top: calc(25% - 30px);
  }
}

.add-text {
  margin: 30px 0;
  text-align: right;
}

.contact_btn a{
  width: 120px;
  margin-bottom: 10px;
}
.recruit_contact_btn a{
  width: 200px;
  margin-bottom: 10px;
}

.list-disc{
  padding: 0;
  margin: 0;
  list-style: none;
}
.list-disc > li{
  position: relative;
  padding-left: 1em;
}
.list-disc > li::before{
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}
.list-disc > li + li{
  margin-top: 0.5em;
}

.list-check{
  padding: 0;
  margin: 0;
  list-style: none;
}
.list-check > li{
  position: relative;
  padding-left: 1.3em;
}
.list-check > li::before{
  position: absolute;
  top: 0;
  left: 0;
  content: "\f14a";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  color: #005aa0;
}
.list-check > li + li{
  margin-top: 0.5em;
}

.box-white{
  padding: 20px;
  background: #fff;
}
.box-white + .box-white{
  margin-top: 15px;
}
.box-white .title{
  padding-bottom: 10px;
  margin: 0 0 10px;
  border-bottom: 1px solid #005aa0;
  font-size: 16px;
  font-weight: bold;
  color: #005aa0;
}
.box-white p{
  margin: 0;
}
.box-white p + p{
  margin-top: 1em;
}

.box-blue{
  padding: 20px;
  background: #e3f2ff;
}
.box-blue + .box-blue{
  margin-top: 15px;
}
.box-blue .title{
  padding-bottom: 10px;
  margin: 0 0 10px;
  border-bottom: 1px solid #005aa0;
  font-size: 16px;
  font-weight: bold;
  color: #005aa0;
}
.box-blue p{
  margin: 0;
}
.box-blue p + p{
  margin-top: 1em;
}

/* 20230830追加 */
.recruit-banner-wrapper{
  padding: 30px;
  background: #005aa0;
}

.recruit-banner{
  position: relative;
  display: block;
  max-width: 1110px;
  padding: 24px 15px 15px;
  margin: 0 auto;
  border: 5px solid #fff;
  color: #fff;
  text-align: center;
  line-height: 1;
  transition: .2s;
}
.recruit-banner::after{
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-size: 24px;
  font-weight: bold;
  transition: .2s;
}
.recruit-banner .en{
  font-size: 18px;
}
.recruit-banner .jp{
  font-size: 30px;
}
.recruit-banner:hover{
  color: #005aa0;
  background: #fff;
  text-decoration: none;
}
.recruit-banner:hover::after{
  right: 5px;
}
@media screen and (max-width:991px){
  .recruit-banner::after{
    font-size: 20px;
  }
  .recruit-banner .en{
    font-size: 14px;
  }
  .recruit-banner .jp{
    font-size: 24px;
  }
}
@media screen and (max-width:575px){
  .recruit-banner-wrapper{
    padding: 20px;
  }  
  .recruit-banner{
    padding: 15px 15px 8px;
    border-width: 3px;
  }
  .recruit-banner::after{
    font-size: 16px;
  }
  .recruit-banner .en{
    font-size: 12px;
  }
  .recruit-banner .jp{
    font-size: 20px;
  }
}


.list-number {
  padding-left: 20px;
}

.list-number > li {
  margin-bottom: 5px;
}


.list-number02 {
  padding-left: 0px;
}

.list-number02 > li {
  list-style: none;
  margin-bottom: 5px;
  counter-increment: cnt;
}

.list-number02 > li::before {
  content: "(" counter(cnt) ") ";
}


.list-number03 {
  margin-top: 5px;
  padding-left: 0px;
}

.list-number03 > li {
  list-style: none;
  margin-bottom: 5px;
}

.list-lower-roman {
  padding-left: 30px;
}

.list-lower-roman > li {
  list-style-type: lower-roman;
  margin-bottom: 5px;
}


.list-dots {
  padding-left: 0px;
  list-style: none;
}

.list-dots > li {
  margin-bottom: 5px;
}

.info {
  font-size: 90%;
}

.red_info {
  color: #ff2222; {}
}

.list-unlist {
  padding-left: 10px;
  list-style: none;
}

.list-alphabet { 
  margin: 10px 0;
  padding-left: 15px;
  list-style: lower-latin;;
}

.list-alphabet > li {
  margin-bottom: 5px;
}

.list-katakana {
  margin: 10px 0 0;
  padding-left: 35px;
  list-style: katakana;
}

.list-katakana > li {
  margin-bottom: 5px;
}

.certificate_box {
  margin-bottom: 20px;
}

.ml10 {
  margin-left: 10px;

}

.title01 {
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0 5px;
}

.consultation_box_area {
  margin: 20px 0;
}

.consultation_box_area h5 {
  font-size: 16px;
  font-weight: bold;
}

.info_box_area {
  margin: 20px 0;
  padding: 20px;
  background: #f1f1f1;
}

.info_box_area h5 {
  font-size: 16px;
}

.info_box_area ul {
  padding-left: 10px;
}

.info_box_area ul li {
  padding-bottom: 5px;
}

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

}