@charset "UTF-8";

@import url(../fonts/Noto/load.css);
/*==========================================
SP共通
===========================================*/
body {
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #222;
  line-height: 1.8;
  text-align: center;
  letter-spacing: .08em;
  font-size: 3.55vw;
  word-break: break-all;
}

img {
  max-width: 100%;
  height: auto;
}

/*==========================================
サイトの標準横幅と内部余白
===========================================*/
.inbox {
  padding: 0 6%;
  margin: 0 auto;
}

.com-pd {
  padding: 15vw 0;
}

.com-pt {
  padding-top: 15vw;
}

.com-pb {
  padding-bottom: 15vw;
}

.com-mb {
  margin-bottom: 15vw;
}

/*==========================================
SP非表示
===========================================*/
.sp-none {
  display: none !important;
}

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  display: none;
}

/*==========================================
共通ブロック・要素
===========================================*/
.txt-blc {
  text-align: left;
}
.txt-blc p {
  margin-bottom: 5%;
  line-height: 1.8;
}
.txt-blc p:last-child {
  margin-bottom: 0;
}

#g-map h4 {
  font-size: 3.8vw;
  font-weight: 700;
  margin-bottom: 25;
}
#g-map h4 span {
  padding-left: 5%;
}
#g-map .map {
  position: relative;
  width: 100%;
  padding: calc(315 / 560 * 100%) 0 0;
}
#g-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.more-btn {
  display: block;
  width: 60%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border: 1px solid #ffc000;
  color: #111;
  background: #ffc000;
  font-size: 3.45vw;
  font-weight: 700;
  padding: 3% 2%;
}
.more-btn span {
  position: relative;
}
.more-btn span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 10px;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.more-btn span {
  display: block;
}
.more-btn:hover {
  opacity: 1;
  background: #fff;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-dl {
  text-align: left;
}
.com-dl > dl > dt {
  background: #2f3882;
  color: #fff;
  padding: 2% 3%;
}
.com-dl > dl > dd {
  background: #fff;
  padding: 3%;
}
.com-dl > dl > dd a[href^="tel:"],
.com-dl > dl > dd a[href^="mailto:"] {
  text-decoration: underline;
}

/*==========================================
header
===========================================*/
#header {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1001;
  top: 0;
  padding: 2% 4%;
}
#header .hd-right {
  display: none;
}
#header h1 {
  width: 40%;
  line-height: 1;
}

/*==========================================
メインビジュアル
===========================================*/
#mv {
  position: relative;
  height: 60vw;
  background: url(../img/top/mv/mv-right.png) right bottom/61.9791% no-repeat, url(../img/top/mv/mv-left.png) left top/58.333% no-repeat;
}
#mv h2 {
  width: 64%;
  position: absolute;
  left: 5%;
  top: 25.7vw;
}
#mv .recruit-box {
  width: 88%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px;
  bottom: -63vw;
  background: #2f3882;
  z-index: 100;
}
#mv .recruit-box .frame {
  border: 1px solid #fff;
  background: url(../img/top/rec-track.png) left -12vw bottom 18vw/50% no-repeat;
  padding: 5% 1%;
}
#mv .recruit-box h3 {
  font-size: 5vw;
  font-weight: 700;
  color: #111;
  margin-bottom: 4vw;
}
#mv .recruit-box h3 span {
  background: #fff;
  padding: 0 5px;
}
#mv .recruit-box p {
  color: #fff;
  font-weight: 700;
  margin-bottom: 5vw;
}
#mv .recruit-box .more-btn {
  width: 85%;
  margin: 0 auto;
}

/*==========================================
グローバルナビ
===========================================*/
#nav-toggle {
  position: fixed;
  top: 5px;
  right: 3%;
  width: 43px;
  height: 43px;
  cursor: pointer;
  z-index: 1006;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #2f3882;
  -webkit-box-shadow: 1px 1px #111;
          box-shadow: 1px 1px #111;
}
#nav-toggle > div {
  position: relative;
  width: 26px;
}
#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  -webkit-transition: top .3s ease, -webkit-transform .3s ease-in-out;
  transition: top .3s ease, -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out, top .3s ease;
  transition: transform .3s ease-in-out, top .3s ease, -webkit-transform .3s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: -9px;
}
#nav-toggle span:nth-child(2) {
  top: 0;
}
#nav-toggle span:nth-child(3) {
  top: 9px;
}

.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#container {
  z-index: 1005;
}

#global-nav {
  background: url(../img/strengths/point02-track.png) left 6% bottom 5vw/65% no-repeat, url(../img/business/area-map.png) left top/52% no-repeat, #efefef;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1005;
  text-align: center;
  visibility: hidden;
  font-size: 3.5vw;
  opacity: 0;
  -webkit-transition: opacity .3s ease, visibility .3s ease;
  transition: opacity .3s ease, visibility .3s ease;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: .1em;
  padding: 33vw 0;
  /*--- ↓スクロールバー ----*/
  overflow-y: auto;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
#global-nav #nav-inner {
  width: 80%;
  margin: 0 auto;
}
#global-nav .sp-nav {
  list-style: none;
  margin-bottom: 5vw;
}
#global-nav .sp-nav > li {
  letter-spacing: 2px;
  opacity: 0;
  text-align: left;
  font-weight: 500;
  border-bottom: 1px solid rgba(17, 17, 17, 0.7);
}
#global-nav .sp-nav > li a {
  display: block;
  color: #222;
  text-decoration: none;
  padding: 3.5% 0;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}
#global-nav .sp-nav .current {
  font-weight: 700;
}
#global-nav .sp-nav .current a {
  color: #111;
}
#global-nav .sp-nav .current a span {
  position: relative;
}
#global-nav .sp-nav .current a span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 2px solid #2f3882;
  border-right: 2px solid #2f3882;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#global-nav .sp-nav .current a span {
  display: block;
  padding-left: 5%;
}
#global-nav .num {
  font-size: 5vw;
  color: #444;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 5vw;
  text-decoration: underline;
}
#global-nav .num span {
  font-size: 4.25vw;
}
#global-nav .more-btn {
  margin: 0 auto;
}

/* open */
.open #global-nav {
  visibility: visible;
  opacity: 1;
}
.open #global-nav li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity .9s ease;
  transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
}

/*==========================================
トップページ
===========================================*/
/*----------------------------
CONCEPT
-----------------------------*/
#top-concept {
  padding: 70vw 0 12vw 0;
  position: relative;
  z-index: 1;
}
#top-concept:before {
  position: absolute;
  content: '';
  width: 83.333%;
  right: 0;
  top: 0;
  height: 30vw;
  background: #ecf4fd;
  z-index: -1;
}
#top-concept h3 {
  font-size: 8vw;
  color: #2f3882;
}
#top-concept .txt-blc {
  margin-bottom: 7vw;
}
#top-concept .txt-blc h4 {
  font-size: 5.15vw;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 5vw;
  text-align: center;
}
#top-concept .txt-blc h4 strong {
  display: block;
}
#top-concept .txt-blc h4 strong:first-line {
  color: #ffc000;
}
#top-concept .txt-blc p {
  line-height: 2.4;
  margin-bottom: 5.5vw;
}
#top-concept .txt-blc .more-btn {
  margin: 0 auto;
}
#top-concept .point-wrap li {
  color: #fff;
  background: #2f3882;
  padding: 7% 0 5% 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 5vw;
}
#top-concept .point-wrap li:last-child {
  margin-bottom: 0;
}
#top-concept .point-wrap li dt {
  text-align: left;
  font-size: 6vw;
  font-weight: 700;
  color: #fff;
  position: relative;
  margin-bottom: 3vw;
  letter-spacing: .1em;
}
#top-concept .point-wrap li dt:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  content: '';
  right: 0;
  width: 47vw;
  height: 1px;
  background: #fff;
}
#top-concept .point-wrap li dt small {
  font-size: 5vw;
}
#top-concept .point-wrap li dt span {
  color: #ffc000;
}
#top-concept .point-wrap li dd {
  font-size: 5.15vw;
  font-weight: 700;
  color: #fff;
  text-align: left;
  letter-spacing: .11em;
}

/*----------------------------
SERVICE
-----------------------------*/
#top-service {
  position: relative;
  margin-bottom: 13vw;
  z-index: 1;
}
#top-service:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #ecf4fd;
  bottom: -25vw;
  right: 0;
  left: 0;
  z-index: -1;
}
#top-service .wrap h3 {
  font-size: 8vw;
  color: #2f3882;
}
#top-service .wrap .txt-blc {
  margin-bottom: 7vw;
}
#top-service .wrap .txt-blc h4 {
  text-align: center;
  font-size: 5.15vw;
  font-weight: 700;
  margin-bottom: 5vw;
  letter-spacing: .08em;
}
#top-service .wrap .txt-blc p {
  line-height: 2.4;
  margin-bottom: 5vw;
}
#top-service .wrap .txt-blc .more-btn {
  margin: 0 auto;
}
#top-service .img-blc {
  width: 88%;
  margin: 0 auto;
}

/*----------------------------
RECRUIT
-----------------------------*/
#top-recruit {
  position: relative;
  z-index: 1;
  margin-bottom: 15vw;
}
#top-recruit .wrap h3 {
  font-size: 8vw;
  color: #2f3882;
}
#top-recruit .wrap .txt-blc {
  margin-bottom: 7vw;
}
#top-recruit .wrap .txt-blc h4 {
  text-align: center;
  font-size: 5.15vw;
  font-weight: 700;
  margin-bottom: 5vw;
  letter-spacing: .08em;
}
#top-recruit .wrap .txt-blc p {
  line-height: 2.4;
  margin-bottom: 5vw;
}
#top-recruit .wrap .txt-blc .more-btn {
  margin: 0 auto;
}
#top-recruit .img-blc {
  width: 88%;
  margin: 0 auto;
}

/*----------------------------
INFORMATION
-----------------------------*/
#top-info {
  padding: 10vw 0 12vw 0;
  background: url(../img/top/info-bg.png) center/cover no-repeat;
  color: #fff;
}
#top-info h3 {
  font-size: 8vw;
  color: #fff;
}
#top-info h4 {
  font-size: 5.15vw;
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
  margin-bottom: 5vw;
}
#top-info .lead-txt {
  margin-bottom: 5vw;
}
#top-info .more-btn {
  margin: 0 auto;
}

/*----------------------------
NEWS
-----------------------------*/
#top-news {
  padding: 12vw 0 10vw 0;
}
#top-news h3 {
  font-size: 8vw;
  color: #2f3882;
}
#top-news .news-wrap {
  position: relative;
}
#top-news .news-wrap h4 {
  font-size: 5.15vw;
  letter-spacing: .08em;
  font-weight: 700;
  margin-bottom: 5vw;
  text-align: center;
}
#top-news .news-wrap article {
  text-align: left;
  margin-bottom: 4vw;
}
#top-news .news-wrap article:last-child {
  margin-bottom: 0;
}
#top-news .news-wrap article a {
  background: #ecf4fd;
  padding: 15px 20px;
  display: block;
}
#top-news .news-wrap article .post-meta {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
#top-news .news-wrap article .post-meta time {
  width: 27%;
  font-size: 2.75vw;
}
#top-news .news-wrap article .post-meta .category-label {
  width: 72%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#top-news .news-wrap article .post-meta .category-label li {
  font-size: 2.75vw;
  background: #2f3882;
  color: #fff;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 0 5px;
}
#top-news .news-wrap .more-btn {
  margin: 7vw auto 0 auto;
}

/*==========================================
footer
===========================================*/
#footer {
  background: #333;
}
#footer .wrap {
  padding: 7vw 0 5vw 0;
}
#footer .ft-left .ft-logo {
  width: 48%;
  margin: 0 auto 5vw auto;
}
#footer .ft-left address {
  color: #fff;
  font-size: 3vw;
  margin-bottom: 5vw;
}
#footer .ft-left .ft-contact .num {
  display: inline-block;
  font-size: 5.5vw;
  color: #fff;
  font-weight: 700;
  margin-bottom: 5vw;
}
#footer .ft-left .ft-contact .num span {
  font-size: 4.1vw;
}
#footer .ft-left .ft-contact .more-btn {
  margin: 0 auto 5vw auto;
}
#footer .ft-right .recruit-btn {
  width: 75%;
  margin: 0 auto 7vw auto;
  padding: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  display: block;
  color: #2f3882;
  font-weight: 700;
  font-size: 5vw;
}
#footer .ft-right .recruit-btn span {
  display: block;
  border: 1px solid #2f3882;
  padding: 5% 4%;
}
#footer .ft-right .recruit-btn em {
  font-size: 3.75vw;
  position: relative;
}
#footer .ft-right .recruit-btn em:before, #footer .ft-right .recruit-btn em:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 20px;
  background: #2f3882;
  bottom: 2px;
}
#footer .ft-right .recruit-btn em:before {
  left: -15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#footer .ft-right .recruit-btn em:after {
  right: -15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#footer .ft-right .ft-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#footer .ft-right .ft-nav li {
  font-size: 2.55vw;
}
#footer .ft-right .ft-nav li:nth-last-child(n+5) {
  display: none;
}
#footer .ft-right .ft-nav li a {
  color: #fff;
}

#copyright {
  background: #111;
  color: #fff;
  font-size: 10px;
  word-break: normal;
}
#copyright a {
  color: #fff;
}

/*==========================================
サブビジュアル
===========================================*/
.lower-sv {
  position: relative;
  height: 40vw;
  margin-top: 14vw;
}
.lower-sv h2 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  left: 3%;
  font-size: 6vw;
  font-weight: 700;
  color: #fff;
  letter-spacing: .15em;
}
.lower-sv h2 span {
  padding: 0 10px;
  background: #2f3882;
}

#strengths-sv {
  background: url(../img/sv/strengths-sv.png) center/cover no-repeat;
}

#business-sv {
  background: url(../img/sv/business-sv.png) center/cover no-repeat;
}

#introduction-sv {
  background: url(../img/sv/introduction-sv.png) center/cover no-repeat;
}

#company-sv {
  background: url(../img/sv/company-sv.png) center/cover no-repeat;
}

#news-sv {
  background: url(../img/sv/news-sv.png) center/cover no-repeat;
}

#contact-sv {
  background: url(../img/sv/contact-sv.png) center/cover no-repeat;
}

#complete-sv {
  background: url(../img/sv/complete-sv.png) center/cover no-repeat;
}

#privacy-sv {
  background: url(../img/sv/privacy-sv.png) center/cover no-repeat;
}

#site-sv {
  background: url(../img/sv/site-sv.png) center/cover no-repeat;
}

#e404-sv {
  background: url(../img/sv/e404-sv.png) center/cover no-repeat;
}

/*==========================================
共通タイトル
===========================================*/
.ttl01 {
  font-size: 8vw;
  color: #2f3882;
  line-height: 1;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  margin-bottom: 2vw;
}

.ttl02 {
  border-bottom: 1px solid #2f3882;
  font-weight: 700;
  text-align: left;
  font-size: 4.15vw;
  padding-bottom: 1vw;
  letter-spacing: .1em;
  margin-bottom: 3vw;
}
.ttl02 span {
  border-left: 5px solid #2f3882;
  padding-left: 4%;
  display: block;
}

.ttl03 {
  font-size: 5.15vw;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 5vw;
  text-align: center;
}

/*==========================================
当社の強み
===========================================*/
/*----------------------------
STRENGTH
-----------------------------*/
#strengths {
  position: relative;
  z-index: 1;
  padding-bottom: 42vw;
}
#strengths:before, #strengths:after {
  position: absolute;
  content: '';
}
#strengths:before {
  width: 60%;
  height: 27vw;
  background: #2f3882;
  left: 0;
  bottom: 6vw;
}
#strengths:after {
  background: url(../img/strengths/point02-track.png) center/100% no-repeat;
  width: 53%;
  height: 25vw;
  bottom: 6vw;
  left: 13.5416%;
}
#strengths .ttl01 {
  margin-bottom: 5vw;
}
#strengths .point-wrap > li {
  margin-bottom: 10vw;
}
#strengths .point-wrap > li:last-child {
  margin-bottom: 0;
}
#strengths .point-wrap h4 {
  margin: 0 0 5.5vw auto;
  padding: 4% 0 0 15%;
  font-size: 5.15vw;
  text-align: left;
  font-weight: 700;
  letter-spacing: .08em;
}
#strengths .point-wrap h4 span {
  display: block;
  border-bottom: 1px solid #2f3882;
}
#strengths .point-wrap > li:nth-child(1) h4 {
  background: url(../img/strengths/point01.png) left top/12% no-repeat;
}
#strengths .point-wrap > li:nth-child(2) h4 {
  background: url(../img/strengths/point02.png) left top/12% no-repeat;
}
#strengths .point-wrap > li ul {
  margin-bottom: 30px;
}
#strengths .point-wrap > li li {
  width: 85%;
  margin: 0 auto 7vw auto;
}
#strengths .point-wrap > li li img {
  max-width: 100%;
}
#strengths .point-wrap > li li figcaption {
  background: #2f3882;
  color: #fff;
  font-weight: 700;
  font-size: 4.65vw;
  margin-bottom: 5vw;
  padding: 2% 0;
  position: relative;
}
#strengths .point-wrap > li li figcaption:after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #2f3882 transparent transparent transparent;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 auto;
}
#strengths .point-wrap > li:first-child p {
  background: #ecf4fd;
  padding: 5% 4%;
  font-size: 4vw;
  font-weight: 700;
  letter-spacing: .08em;
  color: #111;
}
#strengths .point-wrap > li:last-child p {
  text-align: left;
  line-height: 2;
}

/*----------------------------
SAFE
-----------------------------*/
#safe {
  background: #ecf4fd;
}
#safe .ttl03 {
  text-align: center;
}
#safe .check-lists li {
  margin-bottom: 7vw;
}
#safe .check-lists li:last-child {
  margin-bottom: 0;
}
#safe .check-lists li figcaption {
  background: url(../img/strengths/check_icon.png) left 3% center/8% no-repeat, #2f3882;
  color: #fff;
  font-size: 4.15vw;
  text-align: left;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 2% 2% 2% 13%;
  margin-bottom: 3vw;
}
#safe .check-lists li p {
  text-align: left;
  margin-top: 4vw;
  line-height: 2.5;
}

/*==========================================
事業内容
===========================================*/
/*----------------------------
TRANSPORT
-----------------------------*/
#transport .ttl03 {
  text-align: center;
}
#transport .service-lists {
  margin-bottom: 10vw;
}
#transport .service-lists > li {
  width: 85%;
  margin: 0 auto 7vw auto;
}
#transport .service-lists > li:last-child {
  margin-bottom: 0;
}
#transport .service-lists > li dt {
  background: #2f3882;
  color: #fff;
  font-weight: 700;
  font-size: 4.15vw;
  margin-bottom: 5vw;
  padding: 2% 0;
  position: relative;
}
#transport .service-lists > li dt:after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #2f3882 transparent transparent transparent;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 auto;
}
#transport .service-lists > li dd {
  padding-top: 34vw;
}
#transport .service-lists > li dd ul {
  background: #ecf4fd;
  padding: 5%;
}
#transport .service-lists > li dd ul li {
  text-align: left;
  font-size: 3.75vw;
  font-weight: 700;
  position: relative;
  padding-left: 5%;
  margin-bottom: 4vw;
}
#transport .service-lists > li dd ul li:last-child {
  margin-bottom: 0;
}
#transport .service-lists > li dd ul li:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  left: 0;
  content: '';
  width: 4px;
  height: 4px;
  background: #2f3882;
  border-radius: 50%;
}
#transport .service-lists > li:nth-child(1) dd {
  background: url(../img/business/service01-icon.png) top 15px center no-repeat;
}
#transport .service-lists > li:nth-child(2) dd {
  background: url(../img/business/service02-icon.png) top 15px center no-repeat;
}
#transport .service-lists > li:nth-child(3) dd {
  background: url(../img/business/service03-icon.png) top 15px center no-repeat;
}
#transport .client-wrap h5 {
  background: #ffc000;
  color: #2f3882;
  font-size: 4.65vw;
  font-weight: 700;
  padding: 2% 0;
  margin-bottom: 4vw;
}
#transport .client-wrap li {
  width: 100%;
  border: 1px solid #2f3882;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 4vw;
  color: #2f3882;
  margin-bottom: 3vw;
  font-weight: 700;
  padding: 4% 0;
}
#transport .client-wrap li:last-child {
  margin-bottom: 0;
}

/*----------------------------
AREA
-----------------------------*/
#area {
  background: url(../img/business/area-map.png) left top/54% no-repeat, #ecf4fd;
}
#area .txt-blc .ttl03 {
  text-align: center;
}
#area .txt-blc p {
  text-align: center;
  font-size: 4vw;
  font-weight: 700;
  color: #2f3882;
  line-height: 2.5;
}
#area .txt-blc p span {
  background: #2f3882;
  color: #ffc000;
  padding: 2% 3%;
  margin-right: 5px;
}

/*==========================================
求人情報
===========================================*/
/*----------------------------
ATTRACTS
-----------------------------*/
#attracts .ttl03 {
  text-align: center;
}
#attracts .point-lists {
  margin-bottom: 12vw;
}
#attracts .point-lists li {
  width: 85%;
  margin: 0 auto 10vw auto;
}
#attracts .point-lists li:last-child {
  margin-bottom: 0;
}
#attracts .point-lists li dt .point {
  font-size: 5.5vw;
  color: #2f3882;
  position: relative;
}
#attracts .point-lists li dt .point:before, #attracts .point-lists li dt .point:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 22px;
  background: #2f3882;
  bottom: 2px;
}
#attracts .point-lists li dt .point:before {
  left: -25px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#attracts .point-lists li dt .point:after {
  right: -25px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#attracts .point-lists li dt .point em {
  font-size: 6.8vw;
  color: #ffc000;
}
#attracts .point-lists li dt .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 23vw;
  color: #fff;
  font-size: 5.15vw;
  font-weight: 700;
  background: #2f3882;
  margin-bottom: 5vw;
}
#attracts .point-lists li dd {
  text-align: left;
  line-height: 2.5;
}
#attracts p {
  padding: 5%;
  font-size: 4vw;
  text-align: left;
  font-weight: 700;
  line-height: 2.5;
  background: #ecf4fd;
}

/*----------------------------
FLOW
-----------------------------*/
#flow {
  background: #ecf4fd;
}
#flow li {
  width: 85%;
  margin: 0 auto 10vw auto;
  background: #fff;
  position: relative;
}
#flow li:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 15px 0 15px;
  border-color: #ffc000 transparent transparent transparent;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: -7vw;
  margin: 0 auto;
}
#flow li:last-child:after {
  border: none;
}
#flow li dt {
  background: #2f3882;
  font-size: 4vw;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 3% 0;
}
#flow li dt span {
  color: #ffc000;
  font-size: 5.75vw;
}
#flow li dd {
  background: #fff;
  padding: 5%;
  text-align: left;
  line-height: 2.5;
}

/*----------------------------
REQUIREMENTS
-----------------------------*/
#requirements .com-dl {
  margin-bottom: 8vw;
}
#requirements .more-btn {
  margin: 0 auto;
}

/*==========================================
会社概要
===========================================*/
/*----------------------------
GREETING
-----------------------------*/
#greeting .img-blc {
  margin-bottom: 7vw;
}
#greeting .txt-blc p {
  line-height: 2.5;
  margin-bottom: 5vw;
}
#greeting .txt-blc dl {
  margin-bottom: 4vw;
  font-weight: 700;
}
#greeting .txt-blc dl:last-child {
  margin-bottom: 0;
}
#greeting .txt-blc dl dt, #greeting .txt-blc dl dd {
  padding: 3% 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#greeting .txt-blc dl dt {
  background: #2f3882;
  color: #ffc000;
}
#greeting .txt-blc dl dd {
  background: #ecf4fd;
}

/*----------------------------
COMPANY
-----------------------------*/
#company {
  background: #ecf4fd;
}
#company .com-dl {
  margin-bottom: 7vw;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.category-select {
  overflow: hidden;
  width: 55%;
  margin-left: auto;
  text-align: center;
  margin-bottom: 5%;
  position: relative;
  border-radius: 2px;
  border: 2px solid #2e2e2e;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.category-select:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: .8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #2e2e2e;
  pointer-events: none;
}
.category-select select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: .01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 38px 10px 8px;
  color: #2e2e2e;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.category-select select::-ms-expand {
  display: none;
}

/*==========================================
お知らせ
===========================================*/
.post-wrap .column-lists > li {
  border-bottom: 1px solid #ccc;
}
.post-wrap .column-lists > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4% 0;
}
.post-wrap .column-lists > li:last-child {
  border-bottom: none;
}
.post-wrap .column-lists .post-area {
  width: 55%;
}
.post-wrap .column-lists .post-ttl {
  text-align: left;
  margin-bottom: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-wrap .column-lists .post-ttl time {
  width: 35%;
  font-size: 2.55vw;
  color: #2f3882;
  text-align: left;
  padding: 2px 0;
}
.post-wrap .column-lists .post-ttl .category-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 62%;
}
.post-wrap .column-lists .post-ttl .category-label li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #2f3882;
  color: #fff;
  background: #2f3882;
  padding: 2px 5px;
  text-align: center;
  font-size: 2.55vw;
  margin-bottom: 2%;
  margin-right: 2%;
}
.post-wrap .column-lists .post-ttl .category-label li:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.post-wrap .column-lists .post-ttl .column-ttl {
  width: 100%;
  font-size: 3.7vw;
  display: block;
  margin-top: 3%;
  font-weight: 500;
}
.post-wrap .column-lists .post-body {
  text-align: left;
  margin-bottom: 4%;
}
.post-wrap .column-lists .more-btn {
  width: 45%;
  font-size: 3.2vw;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: #2f3882;
  border: 1px solid #2f3882;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3% 2%;
  display: block;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.post-wrap .column-lists .thumb {
  width: 40%;
  height: 33vw;
}
.post-wrap .post-content {
  padding: 0 3% 3% 3%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}

/*----------------------------------
詳細ページのカテゴリー表示(タイトル下部)
----------------------------------*/
.single-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 6%;
}
.single-meta time {
  font-size: 3vw;
  width: 24%;
  font-weight: normal;
  display: block;
  padding: 3px 0;
}
.single-meta .category-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 75%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-meta .category-label li {
  font-size: 2.55vw;
  margin-right: 4%;
  margin-bottom: 2%;
}
.single-meta .category-label li:last-child {
  margin-right: 0;
}
.single-meta .category-label li a {
  border: 1px solid #2f3882;
  color: #2f3882;
  padding: 3px 5px;
  border-radius: 25px;
  display: block;
}
.single-meta .category-label li a:hover {
  opacity: 1;
  color: #fff;
  background: #2f3882;
}

/*----------------------------------
詳細ページのカテゴリー表示(テキストエリア下部)
----------------------------------*/
.single-category {
  max-width: 250px;
  min-width: 150px;
  margin-top: 10px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 2.55vw;
}
.single-category dt {
  width: 80px;
}
.single-category dt:after {
  content: ':';
  padding: 0 5px;
}
.single-category dd {
  max-width: 135px;
  line-height: 2;
  min-width: 60px;
}
.single-category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-category ul li {
  margin-right: 5px;
}
.single-category ul li:last-child {
  margin-right: 0;
}
.single-category ul li a {
  display: block;
  padding-left: 8px;
  position: relative;
}
.single-category ul li a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  left: 0;
  content: '#';
}
.single-category ul li a:hover {
  background: #ccc;
}

/*==========================================
お問い合わせ
===========================================*/
#contact .contact-form {
  text-align: left;
  margin-bottom: 5%;
}
#contact .contact-form dl dt {
  position: relative;
}
#contact .contact-form dl dt em {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 10px;
  color: #2f3882;
  background: #fff;
  font-weight: 500;
  padding: 3px;
  font-size: 3vw;
}
#contact .contact-form dl dd {
  padding: 10px 0;
}
#contact .contact-form dl dd li {
  list-style: none;
}
#contact .contact-form dl dd textarea {
  height: 150px;
  line-height: 1.8;
}
#contact .contact-form dl dd ::-webkit-input-placeholder {
  color: rgba(204, 204, 204, 0.8);
}
#contact .contact-form dl dd :-ms-input-placeholder {
  color: rgba(204, 204, 204, 0.8);
}
#contact .contact-form dl dd ::-ms-input-placeholder {
  color: rgba(204, 204, 204, 0.8);
}
#contact .contact-form dl dd ::placeholder {
  color: rgba(204, 204, 204, 0.8);
}
#contact .contact-form .txtarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  padding: 3%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
#contact .contact-form #post01,
#contact .contact-form #post02 {
  width: 95px;
}
#contact .contact-form #addr21 {
  margin-top: 15px;
}
#contact .contact-form .error-text {
  color: #ff0000;
  margin-bottom: 2%;
}
#contact .contact-form .upload-item-wrap #file01 {
  margin-bottom: 4%;
}
#contact .contact-form .upload-item-wrap .select-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#contact .contact-form .upload-item-wrap .thumb {
  width: 45%;
  margin-right: 25px;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap {
  width: 50%;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  width: 100%;
  border-radius: 5px;
  color: #fff;
  font-size: 3.2vw;
  text-align: center;
  padding: 5px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn:hover {
  filter: alpha(opacity=60);
  opacity: .6;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  margin-bottom: 5px;
  background: #2f3882;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap p {
  background: #ffc000;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap #file01 {
  width: 100%;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap input {
  display: none !important;
}
#contact .contact-submits-wrap {
  margin-top: 5%;
}
#contact .g-recaptcha div {
  margin: 0 auto;
  margin-bottom: 5%;
}
#contact input[type='button'][disabled],
#contact input[type='submit'][disabled] {
  opacity: .7;
  pointer-events: none;
}
#contact input[type='button'],
#contact input[type='submit'],
#contact .contact-submits-wrap button {
  font-size: 3.4vw;
  font-weight: 500;
  color: #fff;
  background: #fff;
  padding: 4% 2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #2f3882;
  color: #2f3882;
  border-radius: 0;
}
#contact input[type='button']:hover,
#contact input[type='submit']:hover,
#contact .contact-submits-wrap button:hover {
  background: #2f3882;
  cursor: pointer;
  color: #fff;
  filter: alpha(opacity=100);
  opacity: 1;
}
#contact .check-btn {
  width: 75%;
  margin: 0 auto;
  margin-top: 4%;
}
#contact .back-btn {
  width: 52%;
  margin: 0 auto;
}
#contact .send-btn {
  width: 40%;
  margin: 0 auto;
  margin-left: 4%;
}
#contact input[type="submit"] {
  -webkit-appearance: none;
}
#contact .privacy-agree {
  text-decoration: underline;
}

/*==========================================
プライバシーポリシー
===========================================*/
#privacy .privacy-box {
  margin-bottom: 6%;
  text-align: left;
}
#privacy .privacy-box:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box p {
  margin-bottom: 5%;
}
#privacy .privacy-box p:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box ul {
  margin-top: 5%;
}

/*==========================================
プライバシーポリシー(LPフレーム時)
===========================================*/
/*==========================================
404.php
===========================================*/
#err-cont .txt-blc a {
  text-decoration: underline;
}
