﻿@charset "utf-8";

/*
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito+Sans:800i&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,800;1,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Marck+Script&display=swap');
*/

html {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #000;
  max-width: 100vw;
  overflow-x: hidden;
  font-size: 15px;
}

.wrapper {
  width: 100vw;
  overflow-x: hidden;
}

img {
  vertical-align: bottom;
}

* {
  box-sizing: border-box;
}

input[type="text"],
textarea {
  font-family: 'Noto Sans JP', sans-serif;
}

a {
  color: #000;
  text-decoration: none;
}


.inner {
  width: 90%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}




.red {
  color: #e5221a;
}

.italic_bold {
  font-family: 'Nunito Sans', sans-serif;
  font-style: italic;
}


.bg_gray {
  background-color: #efefef;
}


.sp_block1200 {
  display: none;
}

.sp_block1000 {
  display: none;
}

.sp_block850 {
  display: none;
}

.sp_block700 {
  display: none;
}

.sp_block600 {
  display: none;
}


.sp_block500 {
  display: none;
}

.sp_block350 {
  display: none;
}


img.object-fit {
  object-fit: cover;
  font-family: "object-fit: cover;";
}



/*moreボタン*/

p.btn_more a {
  display: inline-block;
  width: 160px;
  padding-top: 7px;
  padding-left: 24px;
  padding-bottom: 7px;
  background-color: #e5221a;
  font-size: 15px;
  color: #fff;
  text-align: left;
  border-radius: 19px;
  position: relative;
  transition: .3s;
  overflow: hidden;
}

p.btn_more a:hover {
  color: #e5221a;
}

p.btn_more a::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 19px;
  border: 2px solid #e5221a;
  z-index: 1;
  box-sizing: border-box;
}

p.btn_more a::after {
  content: "";
  display: block;
  position: absolute;
  width: 120%;
  height: 120%;
  background-color: #fff;
  top: 50%;
  left: 0;
  transform: skewX(45deg) translateX(-100%) translateY(-50%);
  transition: .3s;
}

p.btn_more a:hover::after {
  transform: skewX(45deg) translateX(3%) translateY(-50%);
}

p.btn_more a span {
  display: inline-block;
  position: relative;
  padding-right: 36px;
  z-index: 1;
}

p.btn_more a span::after {
  content: "";
  display: block;
  position: absolute;
  border-right: 2px solid #fff;
  border-bottom: 1px solid #fff;
  height: 7px;
  width: 26px;
  transform: skewX(45deg) translateY(-50%);
  top: 50%;
  right: 0;
  transition: .3s;
}

p.btn_more a:hover span::after {
  border-color: #e5221a;
}


/*-----------------ヘッダー----------------*/

header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  text-align: center;
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .3s;
}


header h1,
header h2 {
  animation-name: slide;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  transition: ease-in 0.2s;
  margin-left: 20px;
}

header h1 img,
header h2 img {
  width: 100%;
  max-width: 312px;
}


header nav {
  display: flex;
  align-items: center;
}

header nav h3 {
  margin: 40px 20px 20px;
  font-size: 18px;
  text-align: center;
}

header nav h3 span {
  display: block;
  font-size: 45px;
  font-weight: bold;
  font-family: 'Nunito Sans', sans-serif;
  font-style: italic;
  line-height: 1.1;
}

header nav ul {
  display: flex;
  justify-content: flex-end;
}

header nav ul.lang {}

header nav ul li {}

header nav ul li a {
  color: #000;
}

header nav ul li span {
  width: 24px;
  border-top: 3px solid #ff0404;
  position: absolute;
  top: 14px;
  right: 0;
  margin: auto;
}

header .nav_recruit {
  margin-left: 20px;
}

header .nav_recruit a {
  color: #fff;
  display: block;
  background: #e5221a;
  text-align: center;
  width: 140px;
  height: 90px;
  line-height: 90px;
  font-weight: bold;
  transition: .3s;
  border: 2px solid #e5221a;
}

header .nav_recruit a:hover {
  color: #e5221a;
  box-shadow: 0 -90px 0 0 #fff inset;
}

header nav ul.lang {
  margin-bottom: 12px;
}

header nav ul.lang li {
  margin-right: 5px;
}

header nav ul.lang li:last-child {
  margin-right: 0;
}


header nav ul.lang li a {
  background: #fff;
  border-radius: 20px;
  display: inline-block;
  font-size: 12px;
  width: 75px;
  line-height: 26px;
  transition: .3s;
}

header nav ul.lang li:nth-child(1) a {
  color: #fff;
  background-color: #e5221a;
}

header nav ul.lang li a:hover {
  color: #fff;
  background-color: #e5221a;
}

header nav ul.menu li {
  margin-right: 20px;
}

header nav ul.menu li:last-child {
  margin-right: 0;
}

header nav ul.menu li a {
  position: relative;
  font-size: 13px;
  padding-bottom: 16px;
}

header nav ul.menu li a::after {
  content: "";
  height: 5px;
  width: 0;
  background-color: #e5221a;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  position: absolute;
  transition: .2s;
  max-width: 100%;
}

header nav ul.menu li a.mega_nav::after {
  background-color: #0074BE;
}


header nav ul.menu li a:hover::after {
  width: 100%;
}

/*

header nav ul.menu li a.mega_nav::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #777;
  width: 5px;
  height: 5px;
  top: -4px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%) rotate(45deg);
  font-size: 10px;
  transition: .3s;
}

header nav ul.menu li a.mega_nav.on::before {
  background-color: #e5221a;
}

header nav ul.menu li a.mega_nav1.on::before {
  background-color:  #0074BE;
}
*/

header nav ul.menu li a.mega_nav.on::after {
  width: 100%;
}

.mn_content_wrap {
  position: fixed;
  top: 90px;
  left: 0;
  background-color: #0074BE;
  z-index: -1;
  width: 100%;
  transition: opacity .3s;
  opacity: 0;
  padding-top: 20px;
}


.mn_content_wrap .mn_content {
  max-width: 1100px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: none;
  justify-content: space-between;
}

.mn_content_wrap .mn_content .title_wrap {
  width: 20%;
}

.mn_content_wrap .mn_content .title_wrap h3 {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  margin-top: 50px;
  margin-bottom: 16px;
  position: relative;
  text-align: center;
}

.mn_content_wrap .mn_content .title_wrap h3::before {
  display: block;
  position: absolute;
  top: -32px;
  color: #fff;
  font-family: 'Marck Script', cursive;
  transform: rotate(-9deg);
}

.mn_content_wrap.mn_content1 .mn_content .title_wrap h3::before {
  content: "Solutions and Products";
  font-size: 15px;
  left: -28px;
}

.mn_content_wrap.mn_content2 .mn_content .title_wrap h3::before {
  content: "Recruit";
  font-size: 22px;
  left: 20px;
}

.mn_content_wrap.mn_content3 .mn_content .title_wrap h3::before {
  content: "About us";
  font-size: 22px;
  left: 20px;
}

.mn_content_wrap .mn_content .title_wrap p a {
  display: block;
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
  color: #0074BE;
  font-weight: bold;
  position: relative;
  border-radius: 30px;
  transition: all .3s;
  text-align: center;
}

.mn_content_wrap .mn_content .title_wrap p a:hover {
  transform: translateX(8px);
}


.mn_content_wrap .mn_content .title_wrap p a span {
  padding-right: 22px;
  position: relative;
}

.mn_content_wrap .mn_content .title_wrap p a span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 5px;
  box-sizing: border-box;
  transform: skewX(45deg) translateY(-50%);
  border-right: 2px solid #e5221a;
  border-bottom: 1px solid #e5221a;
  transition: .3s;
}

/*

.mn_content_wrap .mn_content .title_wrap p a:hover{
  color: #fff;
}

.mn_content_wrap .mn_content .title_wrap p a::before {
  content: "";
  display: block;
  position: absolute;
  width: 120%;
  height: 120%;
  background-color:#0074BE;
  top: 50%;
  left: 0;
  transform: skewX(45deg) translateX(-100%) translateY(-50%);
  transition: .3s;
}

.mn_content_wrap .mn_content .title_wrap p a:hover::before {
    transform: skewX(45deg) translateX(3%) translateY(-50%);
}

.mn_content_wrap .mn_content .title_wrap p a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 2px solid #fff;
  border-radius: 30px;
}



.mn_content_wrap .mn_content .title_wrap p a:hover span::after{
  border-color: #fff;
}
*/

.mn_content_wrap .mn_content ul {
  display: flex;
  flex-wrap: wrap;
  width: 76%;
}

.mn_content_wrap .mn_content ul li {
  width: 23%;
  margin-bottom: 20px;
  margin-right: calc(8% / 3)
}

.mn_content_wrap .mn_content ul li:nth-child(4n) {
  margin-right: 0;
}

.mn_content_wrap .mn_content ul li .img_wrap {
  margin-bottom: 5px;
  overflow: hidden;
}

.mn_content_wrap .mn_content ul li .img_wrap img {
  max-width: 100%;
  transition: all .3s;
}

.mn_content_wrap .mn_content ul li .img_wrap img:hover {
  transform: scale(1.05);
}

.mn_content_wrap .mn_content ul li p a {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  display: inline-block;
  position: relative;
  padding-top: 1px;
  padding-left: 23px;
}

.mn_content_wrap .mn_content ul li p a::before {
  content: "";
  display: block;
  position: absolute;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: #fff;
  top: 0;
  left: 0;
}

.mn_content_wrap .mn_content ul li p a::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 4px;
  border-right: 2px solid #e5221a;
  border-bottom: 1px solid #e5221a;
  top: 9px;
  left: 9px;
  transform: skewX(45deg) translateX(-50%) translateY(-50%);
}


.mn_content_wrap.mn_content1.on,
.mn_content_wrap.mn_content2.on,
.mn_content_wrap.mn_content3.on {
  z-index: 1100;
  opacity: 1;
}

.mn_content_wrap.mn_content1.on .mn_content,
.mn_content_wrap.mn_content2.on .mn_content,
.mn_content_wrap.mn_content3.on .mn_content {
  display: flex;
}

/*
.mn_content_wrap.mn_content1 {
  z-index: 1100;
  opacity: 1;
}

.mn_content_wrap.mn_content1 .mn_content {
  display: flex;
}
*/


/*---------------カレント表示--------------*/
#page_skill nav li a[href="/skill/"]::after,
#page_solution nav li a[href="/solution/"]::after,
#page_recruit nav li a[href="/recruit/"]::after,
#page_company nav li a[href="/company/"]::after,
#page_news nav li a[href="/news/"]::after,
.page_contact nav li a[href="/contact/"]::after,
#page_blog nav li a[href="/blog/"]::after {
  width: 100%;
}

/*第三層ソリューション*/
#page_improve nav li a[href="/solution/"]::after,
#page_it nav li a[href="/solution/"]::after,
#page_digital nav li a[href="/solution/"]::after,
#page_support nav li a[href="/solution/"]::after,
#page_measurement nav li a[href="/solution/"]::after,
#page_security nav li a[href="/solution/"]::after,
#page_tscb nav li a[href="/solution/"]::after,
#page_ad nav li a[href="/solution/"]::after,
#page_work nav li a[href="/solution/"]::after,
.page_tisg3000dl nav li a[href="/solution/"]::after {

  width: 100%;

}

/*第三層採用情報*/
#page_know nav li a[href="/recruit/"]::after,
#page_project nav li a[href="/recruit/"]::after,
#page_data nav li a[href="/recruit/"]::after,
#page_message nav li a[href="/recruit/"]::after,
#page_welfare nav li a[href="/recruit/"]::after,
#page_application li a[href="/recruit/"]::after,
.page_entry nav li a[href="/recruit/"]::after,
#page_welfare_details nav li a[href="/recruit/"]::after,
#page_welfare_trip nav li a[href="/recruit/"]::after {

  width: 100%;
}

/*第三層会社情報*/
#page_overview nav li a[href="/company/"]::after,
#page_global nav li a[href="/company/"]::after,
#page_csr nav li a[href="/company/"]::after,
#page_quality nav li a[href="/company/"]::after,
#page_3s1c nav li a[href="/company/"]::after,
#page_license nav li a[href="/company/"]::after,
#page_organization nav li a[href="/company/"]::after {

  width: 100%;
}







/*----------ハンバーガーメニュー---------*/

html.open {
  overflow-y: hidden;
}

.overlay {
  content: "";
  display: none;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  opacity: 0;
  transition: opacity .2s;
}

.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}


.menu-trigger {
  display: none;
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1010;
  background-color: #e5221a;
  transform: translateX(0);
  transition: transform .3s;
}

.menu-trigger.active {
  /*  transform: translateX(-259px);*/
  background-color: transparent;
}

.menu-trigger.active div span {
  background-color: #e5221a;
}

.menu-trigger.active.more_open div span {
  background-color: #fff;
}

.menu-trigger > div {
  position: relative;
  width: 30px;
  height: 28px;
}

.menu-trigger div span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #fff;
  transition: 0.4s;
  left: 0;
}

.menu-trigger div span:nth-child(1) {
  top: 0;
}

.menu-trigger.active div span:nth-of-type(1) {
  transform: translateY(12px) rotate(-405deg);
}


.menu-trigger div span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%)
}

.menu-trigger.active div span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(405deg);
}






/*-------------スリックスライダー--------------*/

#page_top #slide_wrap {
  position: relative;
}

#page_top #slide_wrap .slide_item {
  overflow: hidden;
}

#page_top #slide_wrap .slide_item img {
  /*  transition: opacity 1.5s linear, transform 6s linear;*/
  /*  transition: 7.5s linear;*/
  /*  position: relative;*/

}

/*
#page_top #slide_wrap .slide_item:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
*/

/*
#page_top #slide_wrap .slide_item.show {
  opacity: 1;
}
*/

@keyframes scale_down {
  0% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }

}

#page_top #slide_wrap .slide_item.slick-active img {
  animation: scale_down 7.5s linear both;
}

#page_top #slide_wrap .slide_item.first_slide.slick-active img {
  animation: scale_down 6s linear both;
}

#page_top #slide_wrap .slide_item img {
  display: block;
  width: 100%;
}

#page_top .mv .slick-dots {
  bottom: 2vw;
  right: 30px;
  z-index: 10;
  text-align: right;
}

#page_top .mv .slick-dots li {
  margin: 0;
}

#page_top .mv .slick-dots li.slick-active button:before {
  color: #e5221a;
}

#page_top .slick-list {
  padding: 0 !important;
}

/*-----------------フェードアニメーション------------------*/

.fade {
  opacity: 0;
  transition: 1s;
  transform: scale(.7);
}

.fade_navi_up {
  transform: translate(0, 20px);
}

/*.fadein {opacity : 0; transition: 1.2s;}*/

@keyframes fade_up {

  0% {
    opacity: 0;
    transform: translateY(80px);
  }

  100% {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}



.fadein {
  opacity: 0;
  transition: 1s;
}

h2.fadein {
  opacity: 0;
  transition: .5s;
}

.fade_left {
  transform: translate(-80px, 0);
}

.fade_right {
  transform: translate(80px, 0);
}

.fade_up {
  transform: translateY(80px);
}

.fade_scale {
  opacity: 1;
  transform: scale(1);
}

.fadein.fade_scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.fade.fade_up.fade_scroll {
  opacity: 1;
  transform: translateY(0);
}

.fadein.fade_up.fade_scroll {
  opacity: 1;
  transform: translateY(0);
  /*
  animation: fade_up .7s linear forwards;
  -webkit-animation: fade_up .7s linear forwards;
*/
}

.fadein.fade_formnone {
  transform: none;
}

/* 2つ目の要素に400msのdelayをかける */
.fadein.slidein2 {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}

.fade_up.fade_scroll.slidein2 {
  animation-delay: .4s
}

.fadein.slidein3 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.fade_up.fade_scroll.slidein3 {
  animation-delay: .8s
}


.fadein.slidein4 {
  -moz-transition-delay: 800ms;
  -webkit-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
}

.fade_up.fade_scroll.slidein4 {
  animation-delay: 1.2s
}

.fadein.slidein5 {
  -moz-transition-delay: 1000ms;
  -webkit-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
}

.fadein.slidein6 {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

.fadein.slidein7 {
  -moz-transition-delay: 1400ms;
  -webkit-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
}

.fadein.slidein8 {
  -moz-transition-delay: 1600ms;
  -webkit-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
}

.fadein.slidein9 {
  -moz-transition-delay: 2000ms;
  -webkit-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
}

.fadein.slidein10 {
  -moz-transition-delay: 2400ms;
  -webkit-transition-delay: 2400ms;
  -o-transition-delay: 2400ms;
  -ms-transition-delay: 2400ms;
}

.fadein.slidein11 {
  -moz-transition-delay: 2800ms;
  -webkit-transition-delay: 2800ms;
  -o-transition-delay: 2800ms;
  -ms-transition-delay: 2800ms;
}

.fadein.slidein12 {
  -moz-transition-delay: 3200ms;
  -webkit-transition-delay: 3200ms;
  -o-transition-delay: 3200ms;
  -ms-transition-delay: 3200ms;
}

.fadein.bord_red1 {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}

.fadein.bord_red2 {
  -moz-transition-delay: 2000ms;
  -webkit-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
}

.fadein.bord_red3 {
  -moz-transition-delay: 2400ms;
  -webkit-transition-delay: 2400ms;
  -o-transition-delay: 2400ms;
  -ms-transition-delay: 2400ms;
}

.fadein.bord_red4 {
  -moz-transition-delay: 2600ms;
  -webkit-transition-delay: 2600ms;
  -o-transition-delay: 2600ms;
  -ms-transition-delay: 2600ms;
}

.fadein.bord_red5 {
  -moz-transition-delay: 2800ms;
  -webkit-transition-delay: 2800ms;
  -o-transition-delay: 2800ms;
  -ms-transition-delay: 2800ms;
}




@keyframes slide {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/*----------------スリックスライダー-----------------*/


#page_top .slick-list {
  margin-right: -30px;
  /* 間隔分ネガティブマージン */
}

#page_top .slick-slide {
  margin-right: 30px;
  /* 間隔 */
}



#page_top .slick-prev,
#page_top .slick-next {
  width: auto;
  height: 70px;
}

#page_top .slick-prev {
  transform: translate(-100%, -80%);
}

#page_top .slick-next {
  transform: translate(100%, -80%);
}

#page_top .slick-prev:before,
#page_top .slick-next:before {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  transition: .3s;
  opacity: 1;
}

#page_top .slick-prev:before {
  border-top: 2px solid #e5221a;
  border-left: 2px solid #e5221a;
  transform: rotate(-45deg);
  margin-left: 12px;
}

#page_top .slick-next:before {
  border-top: 2px solid #e5221a;
  border-right: 2px solid #e5221a;
  transform: rotate(45deg);
  margin-right: 12px;
}


/*-------------------メインビジュアル-----------------*/


section.mv {
  width: auto;
  position: relative;
  margin-bottom: 16px;
}

#page_top section.mv {
  margin-bottom: 60px;
}

@keyframes fade_title {

  0% {
    opacity: 0;
    transform: rotate(-4deg) translateY(50%);
  }

  100% {
    opacity: 1;
    transform: rotate(-4deg) translateY(0);
  }
}

section.mv h2,
section.mv h1 {
  position: absolute;
  top: 34%;
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  transform: rotate(-4deg);
  opacity: 1;
  animation: fade_title ease-in-out 0.5s 1.2s both !important;
}

section.mv h2.fade_scroll,
section.mv h1.fade_scroll {
  transform: rotate(-4deg);
}

section.mv h1 {
  top: 36%;
}

section.mv h2 > span,
section.mv h1 > span {
  display: block;
}

section.mv h2 span.en_text,
section.mv h1 span.en_text {
  font-size: 110px;
  font-family: 'Nunito Sans', sans-serif;
  line-height: 1;
  font-style: italic;
}

section.mv h2 span.jp_text,
section.mv h1 span.jp_text {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  margin-top: 15px;
  font-style: italic;
  letter-spacing: 0.02em;
}



#page_top section.mv #slide_wrap .slide_item img {
  height: 100vh;
}

@keyframes fade_mvnews {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}


#page_top section.mv .news {
  position: absolute;
  top: 73%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding-left: 16px;
  padding-right: 16px;
  animation: fade_mvnews ease-in-out 0.5s 1.3s both;
  opacity: 0;
  transform: translateY(80px);
}

#page_top section.mv .news h3 {
  min-width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e5221a;
  font-family: 'Nunito Sans', sans-serif;
  color: #fff;
  font-size: 18px;
}

#page_top section.mv .news p {
  background-color: #fff;
  padding: 10px 15px;
  font-size: 15px;
  min-height: 45px;
  display: flex;
  align-items: center;
  width: 665px;
  text-align: left;
}

#page_top section.mv .news p time {
  margin-right: 18px;
  display: block;
}

#page_top section.mv .news p a {
  transition: .3s;
  text-decoration: underline transparent;
}

#page_top section.mv .news p a:hover {
  text-decoration: underline;
  color: #e5221a;
}

#page_top section.mv .news .read_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e5221a;
  min-width: 45px;
  color: #fff;
  height: 100%;
  font-size: 10px;
}

#page_top section.mv .news .read_more a span {
  transition: .3s;
}

#page_top section.mv .news .read_more a:hover span {
  transform: translateX(5px)
}

/*** news&blog ***/
#page_top section.mv .newsblog {
  position: absolute;
  top: 70%;
  left: 0;
  right: 0;
  padding-left: 16px;
  padding-right: 16px;
  animation: fade_mvnews ease-in-out 0.5s 1.3s both;
  opacity: 0;
  transform: translateY(80px);
  display: flex;
  justify-content: center;
}

#page_top section.mv .newsblog li {
  display: flex;
  justify-content: center;
}

#page_top section.mv .newsblog h3 {
  min-width: 90px;
  background-color: #e5221a;
  font-family: 'Nunito Sans', sans-serif;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#page_top section.mv .newsblog p {
  background-color: #fff;
  padding: 10px 15px;
  font-size: 15px;
  min-height: 45px;
  display: flex;
/*  align-items: center;*/
  width: 665px;
  text-align: left;
}
#page_top section.mv .newsblog p{padding: 4px 10px;min-height: auto;}

#page_top section.mv .newsblog p time {
  margin-right: 18px;
  display: block;
}

#page_top section.mv .newsblog p a {
  transition: .3s;
  text-decoration: underline transparent;
}

#page_top section.mv .newsblog p a:hover {
  text-decoration: underline;
  color: #e5221a;
}

#page_top section.mv .newsblog .read_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e5221a;
  min-width: 45px;
  color: #fff;
  height: 100%;
  font-size: 10px;
}

#page_top section.mv .newsblog .read_more a span {
  transition: .3s;
}

#page_top section.mv .newsblog .read_more a:hover span {
  transform: translateX(5px)
}


#page_top .newsblog ul li span.tag {
  display: inline-block;
  border: 1px solid #e5221a;
  text-align: center;
/*  line-height: 30px;*/
  margin-right: 10px;
  min-width: 80px;
  font-size: 13px;
  color: #e5221a;
}
#page_top .newsblog ul li span.tagnews {color: #CC730C;border-color: #CC730C;}
#page_top .newsblog ul li span.tagblog {color: #4991BF;border-color: #4991BF;}
#page_top .newsblog ul li span.tagcommunity {color: #E30000;border-color: #E30000;}
#page_top .newsblog ul li span.tagcase {color: #AC7222;border-color: #AC7222;}


@media screen and (max-width:600px) {
	#page_top section.mv .newsblog{top: 60%; display: block;}
	#page_top section.mv .newsblog h3{font-size: 18px;min-width: auto;    padding: 0 10px;}
	#page_top section.mv .newsblog p{display: block;width: 90%; padding: 2px 10px;font-size: 14px;}
	#page_top section.mv .newsblog p a{display: block;}
}


#page_top section.mv #slide_wrap::after,
section.mv .img_wrap::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 6vw;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat top left/100% 100%;
  bottom: 0;
}

section.mv .img_wrap {
  text-align: center;
  position: relative;
}

section.mv .img_wrap img {
  max-width: 1920px;
  width: 100%;
  height: 30vw;
  min-height: 400px;
  max-height: 500px;
}

section.mv h1 span.en_text {
  font-size: 80px;
}

/*-------------------パンくずリスト-------------------*/

.breadcrumbs {
  margin-bottom: 30px;
}

.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs ul li {
  font-size: 13px;
  color: #707070;
  padding-right: 17px;
  position: relative;
}

.breadcrumbs ul li::after {
  content: ">";
  display: block;
  position: absolute;
  top: 0;
  right: 4px;
}

.breadcrumbs ul li:last-child {
  padding-right: 0;
}

.breadcrumbs ul li:last-child::after {
  display: none;
}

.breadcrumbs ul li a {
  color: #707070;
}

/*---------------フローティングSNSアイコン------------------*/

.fixed_sns {
  position: fixed;
  right: 1%;
  bottom: 5%;
  z-index: 1000;
}

.fixed_sns .icon_wrap {
  width: 48px;
}

.fixed_sns .icon_wrap:first-child {
  margin-bottom: 10px;
}

.fixed_sns .icon_wrap img {
  width: 100%;
}



/*--------------------共通コンテンツ----------------------*/

section h2.left_title {
  font-size: 16px;
  display: inline-block;
  text-align: right;
}

section h2.right_title {
  font-size: 16px;
  text-align: right;
}


section h2 span.italic_bold {
  font-size: 76px;
  line-height: 1;
  display: block;
}

section h2 span.small_title {
  font-size: 17px;
  display: inline-block;
  line-height: 1;
  position: relative;
  font-weight: bold;
}

section h2 span.small_title::before {
  content: "";
  display: block;
  position: absolute;
  height: 4px;
  width: 100vw;
  background-color: #e5221e;
  top: 50%;
}

section h2.left_title .small_title::before {
  left: -12px;
  transform: translateX(-100%) translateY(-50%);
}

section h2.right_title > span {
  display: inline-block;
  text-align: left;
}

section h2.right_title span.small_title::before {
  transform: translateX(100%) translateY(-50%);
  right: -12px;
}




/*-----トップヴィジョン-----*/

#page_top .vision {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}


#page_top .vision h2 {
  text-align: right;
  font-size: 16px;
}

#page_top .vision h2 span.small_title {
  text-align: right;
}


#page_top .vision h2 span.small_title::before {
  left: -12px;
  transform: translateX(-100%) translateY(-50%);
}

#page_top .vision .detail {
  margin-top: 20px;
}

#page_top .vision .detail h3 {
  font-size: 33px;
  font-weight: bold;
}


#page_top .vision .detail p.btn_more {
  text-align: right;
}


/*--------------トップリクルート----------*/

#page_top .recruit {
  position: relative;
  padding-top: 40px;
}

#page_top .recruit h2 {
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 0;
}

#page_top .recruit h2 span.small_title {}

#page_top .recruit h2 span.small_title::before {
  transform: translateX(100%) translateY(-50%);
  right: -12px;
}

#page_top .recruit .content {
  display: flex;
  align-items: flex-end;
  margin-bottom: 50px;
}

#page_top .recruit .content .img_wrap {
  width: 46%;
}

#page_top .recruit .content .img_wrap span {
  position: relative;
  display: block;
  z-index: -1;
}

#page_top .recruit .content .img_wrap span::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 7%;
  z-index: 1;
  height: 50px;
}

#page_top .recruit .content .img_wrap span.decoration1::before {
  width: 55%;
  background-image: url(/assets/img/top/pic_top_deco1.svg);
  left: 0;
  transform: translateX(-35%);
}

#page_top .recruit .content .img_wrap span.decoration2::before {
  width: 24%;
  background-image: url(/assets/img/top/pic_top_deco2.svg);
  right: 0;
  transform: translateX(70%);
}

#page_top .recruit .content .img_wrap img {
  width: 120%;
}

#page_top .recruit .content .detail {
  width: 54%;
}

#page_top .recruit .content .detail .text {
  padding-top: 30px;
  padding-left: 30px;
  background: #fff;
}

#page_top .recruit .content .detail .text h3 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
}

#page_top .recruit .content .detail .text p {
  margin-bottom: 10px;
}

#page_top .recruit .content .detail .text p.btn_more {
  text-align: right;
  margin-bottom: 0;
}

#page_top .recruit .content2 {
  margin-bottom: 80px;
}

#page_top .recruit .content2 .detail .text {
  padding-left: 0;
  padding-right: 30px;
}

#page_top .recruit .content2 .detail .text p.btn_more {
  text-align: left;
}

#page_top .recruit .content2 .img_wrap span {
  padding-top: 70%;
}

#page_top .recruit .content2 .img_wrap span img {
  position: absolute;
  right: 0;
  bottom: 0;
}





/*---------------３パネルのナビゲーション-------------*/

#page_top .sub_nav {
  margin-bottom: 80px;
}

#page_top .sub_nav ul {
  display: flex;
  margin-top: 4em;
  font-weight: bold;
  text-align: center;
}

#page_top .sub_nav ul img {
  max-width: 100%;
}

#page_top .sub_nav ul li {
  width: calc(100% / 3)
}



#page_top .sub_nav ul li .panel {
  margin-bottom: 10px;
}

#page_top .sub_nav ul li .panel a {
  display: block;
  position: relative;
}


#page_top .sub_nav ul li .panel a span.img_wrap {
  display: block;
  overflow: hidden;
  position: relative;
}

#page_top .sub_nav ul li .panel a span.img_wrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(98, 104, 99, 0.3);
  z-index: 1;
  transition: .3s;
}

#page_top .sub_nav ul li .panel a:hover span.img_wrap::before {
  opacity: 0;
}

#page_top .sub_nav ul li .panel a span.panel_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  line-height: 1;
  font-family: 'Nunito Sans', sans-serif;
  color: #fff;
  font-size: 37px;
  z-index: 2;
  transition: .3s;
  font-style: italic;
}

#page_top .sub_nav ul li .panel a:hover span.panel_text {
  letter-spacing: 3px;
  font-size: 40px;
}

#page_top .sub_nav ul li .panel a span.panel_text span {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
}

#page_top .sub_nav ul li .panel a span.img_wrap img {
  max-width: 100%;
  transform: scale(1);
  transition: 0.3s;
}

#page_top .sub_nav ul li .panel a:hover span.img_wrap img {
  transform: scale(1.05);
}

#page_top .sub_nav ul li p {
  text-align: center;
  font-size: 16px;
}




/*---------トップソリューション-------------*/
#page_top .solution {
  margin-bottom: 60px;
}

#page_top .solution h2 {
  font-size: 16px;
  display: inline-block;
  text-align: right;
  margin-bottom: 30px;
}

#page_top .solution h2 .small_title::before {
  left: -12px;
  transform: translateX(-100%) translateY(-50%);
}

#page_top .solution .solution_content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#page_top .solution .solution_content ul li {
  width: 24%;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}


#page_top .solution .solution_content ul li .icon_wrap {
  height: 117px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

#page_top .solution .solution_content ul li .icon_wrap img {
  width: 100%;
  max-height: 100%;

}

#page_top .solution .solution_content ul li:nth-child(1) .icon_wrap img {
  max-width: 109px;
}

#page_top .solution .solution_content ul li:nth-child(2) .icon_wrap img {
  max-width: 118px;
}

#page_top .solution .solution_content ul li:nth-child(3) .icon_wrap img {
  max-width: 203px;
}

#page_top .solution .solution_content ul li:nth-child(4) .icon_wrap img {
  max-width: 103px;
}

#page_top .solution .solution_content ul li:nth-child(5) .icon_wrap img {
  max-width: 101px;
}

#page_top .solution .solution_content ul li:nth-child(6) .icon_wrap img {
  max-width: 175px;
}

#page_top .solution .solution_content ul li:nth-child(7) .icon_wrap img {
  max-width: 122px;
}

#page_top .solution .solution_content ul li:nth-child(8) .icon_wrap img {
  max-width: 180px;
}

#page_top .solution .solution_content ul li .box_upper h3 {
  font-size: 19px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.2;
}

#page_top .solution .solution_content ul li .box_upper p {
  font-size: 15px;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 20px;
}


#page_top .solution .solution_content ul li p.btn_more {
  text-align: center;
}


/*-----------------ピックアップサービス------------*/


#page_top .pickup_service {
  margin-bottom: 110px;
}

#page_top .pickup_service h2 {
  font-size: 16px;
  text-align: right;
  margin-bottom: 50px;
}

#page_top .pickup_service h2 > span {
  display: inline-block;
  text-align: left;
}

#page_top .pickup_service h2 span.small_title {}

#page_top .pickup_service h2 span.small_title::before {
  transform: translateX(100%) translateY(-50%);
  right: -12px;
}

#page_top .pickup_service ul {
  display: flex;
  text-align: center;
  justify-content: center;
}

#page_top .pickup_service ul li {
  width: 33%;
}

#page_top .pickup_service ul li .img_wrap {
  margin-bottom: 15px;
  overflow: hidden;
}

#page_top .pickup_service ul li .img_wrap img {
  max-width: 100%;
  transition: .3s;
}

#page_top .pickup_service ul li .img_wrap a:hover img {
  transform: scale(1.05);
}

#page_top .pickup_service ul li p {
  font-size: 18px;
  font-weight: bold;
}

#page_top .pickup_service ul li p a {
  transition: .3s;
  display: inline-block;
  position: relative;
}

#page_top .pickup_service ul li p a::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  background-color: #e5221a;
  transition: .3s;
  transform: translateY(100%) skew(-30deg, 0);
}

#page_top .pickup_service ul li p a:hover::before {
  left: 0;
  width: 100%;
}

#page_top .pickup_service ul li .img_wrap:hover ~ p a::before {
  left: 0;
  width: 100%;
}

#page_top .pickup_service ul li .img_wrap img.scale_up {
  transform: scale(1.05);
}




/*----------トップニュース欄-----------*/

#page_top section.news {
  margin-bottom: 90px;
}

#page_top .news h2 {
  text-align: center;
  font-size: 17px;
  border-bottom: 4px solid #e5221a;
  margin-bottom: 24px;
}

#page_top .news h2 span {
  font-size: 50px;
  line-height: 1.2;
  display: block;
  font-style: italic;
  font-weight: bold;
}

#page_top .news ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

#page_top .news ul li span.tag {
  display: inline-block;
  border: 1px solid #e5221a;
  text-align: center;
  line-height: 30px;
  margin-right: 1.5%;
  min-width: 120px;
  font-size: 13px;
  color: #e5221a;
}

#page_top .news ul li time {
  display: inline-block;
  margin-right: 1.5%;
  padding-top: 4px;
  font-size: 15px;
  color: #707070;
}

#page_top .news ul li p {
  font-size: 15px;
  padding-top: 4px;
}

#page_top .news ul li p a {
  transition: .3s;
  text-decoration: underline transparent;
}

#page_top .news ul li p a:hover {
  color: #e5221a;
  text-decoration: underline #e5221a;
}

#page_top .news p.btn_more {
  text-align: center;
}


/*タグの色*/
#page_top .news ul li span.tagn010,
#page_top .news ul li span.info_tag {
  color: #CC730C;
  border-color: #CC730C;
}

#page_top .news ul li span.tagn030,
#page_top .news ul li span.news_release_tag {
  color: #FF6833;
  border-color: #FF6833;
}

#page_top .news ul li span.tagn020,
#page_top .news ul li span.recruit_tag {
  color: #B1B100;
  border-color: #B1B100;
}

#page_top .news ul li span.tagn040,
#page_top .news ul li span.product_service_tag {
  color: #4991BF;
  border-color: #4991BF;
}

#page_top .news ul li span.tagn900,
#page_top .news ul li span.other_tag {
  color: #669999;
  border-color: #669999;
}
#page_top .news ul li span.tagblog{
  color: #FF6E00;
  border-color: #FF6E00;
}
#page_top .news ul li span.tagcase{
  color: #AC7222;
  border-color: #AC7222;
}
#page_top .news ul li span.tagcommunity{
  color: #E30000;
  border-color: #E30000;
}


/*-------------TSCニュース欄---------------*/

#page_top .tsc_news {
  margin-bottom: 90px;
}


#page_top .tsc_news h2 {
  font-size: 16px;
  display: inline-block;
  text-align: right;
  margin-bottom: 40px;
}

#page_top .tsc_news h2 .small_title::before {
  left: -12px;
  transform: translateX(-100%) translateY(-50%);
}

#page_top .tsc_news ul li {}

#page_top .tsc_news ul li .square {
  padding-bottom: 100%;
  position: relative;
}

#page_top .tsc_news ul li .square .img_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

#page_top .tsc_news ul li .square .img_wrap img {
  width: 100%;
  height: 100%;

  transition: .3s;
}

#page_top .tsc_news ul li .square .img_wrap img:hover {
  transform: scale(1.05);
}

#page_top .tsc_news ul li p {
  margin-top: 10px;
}




/*--------------フッター------------------*/

footer .upper {
  padding-top: 30px;
  padding-bottom: 20px;
}

footer .upper a {
  display: inline-block;
  position: relative;
  transition: .3s;
  z-index: 1;
  text-decoration: underline transparent;
}

footer .upper a:hover {
  color: #e5221a;
  text-decoration: underline#e5221a;
}

footer .upper ul li span {
  position: relative;
}

footer .upper ul li > span {
  font-weight: bold;
  font-size: 18px;
}

/*
footer .upper span::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  background-color: #e5221a;
  transition: .3s;
  transform: translateY(100%) skew(-30deg, 0);
}

footer .upper span:hover::before {
  left: 0;
  width: 100%;
}
*/

footer .upper ul {
  display: flex;
  justify-content: space-between;
}



footer .upper ul li dl dt {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 18px;
}

footer .upper ul li dl dd {
  margin-bottom: 10px;
  font-size: 15px;
}

footer .upper ul li dl dd a {
  color: #6C6C6C;
}



/*
footer .upper ul li dl dd span::before {
  height: 3px;
}
*/


footer .under {
  padding-top: 30px;
}

footer .under .footer_nav {
  /*
  display: flex;
  justify-content: space-between;
*/
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

footer .under .footer_nav ul {
  display: flex;
  justify-content: space-between;
}

footer .under .footer_nav ul.info_nav {
  width: 100%;
}

footer .under .footer_nav ul.info_nav li {
  margin-right: 8%;
  font-size: 18px;
  font-weight: bold;
}

footer .under .footer_nav ul.info_nav li:last-child {
  margin-right: 0;
}

footer .under .footer_nav ul.info_nav li a {
  color: #717171;
}

/*

footer .under .footer_nav ul.footer_sns li {
  width: 48px;
}

footer .under .footer_nav ul.footer_sns li:first-child {
  margin-right: 10px;
}

footer .under .footer_nav ul.footer_sns li img {
  max-width: 100%;
}
*/

footer .under .address_wrap {
  display: flex;
  font-size: 15px;
  margin-bottom: 40px;
}

footer .under .address_wrap > * {
  margin-right: 5%;
}

footer .under .address_wrap > *:last-child {
  margin-right: 0;
}

footer .under .address_wrap h2 img {
  width: 100%;
  max-width: 203px;
}

footer .under .address_wrap dl dd.tel {
  margin-top: 20px;
}



footer .under .mark {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}


footer .under .mark .logo_wrap:first-child {
  margin-right: 40px;
  width: 115px;
}

footer .under .mark .logo_wrap:last-child {
  width: 74px;
}

footer .under .mark .logo_wrap img {
  max-width: 100%;
}

footer .under p.copy {
  font-size: 12px;
  margin-bottom: 15px;
  text-align: center;
}





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

  .sp_none1200 {
    display: none;
  }

  .sp_block1200 {
    display: block;
  }



  header {
    position: static;
  }

  header h1,
  header h2 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding-right: 80px;
    padding-left: 10px;
    width: 100%;
    height: 60px;
    background-color: rgba(255, 255, 255, 0);
    margin: 0;
    display: flex;
    align-items: center;
  }

  header .nav_recruit {
    display: none;
  }

  header nav .gnav {}



  header nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #fff;
    z-index: 1010;
    transform: translateX(100%);
    transition: .3s;
    width: calc(100% - 40px);
    max-width: 335px;
  }

  header nav.open {
    transform: translateX(0)
  }

  header nav.open.more_open {
    transform: translateX(-100%);
  }



  header nav ul {
    display: block;
  }

  header nav ul.lang {
    display: flex;
    justify-content: center;
  }


  header nav ul.lang {
    padding: 10px 12px 0;
    margin-bottom: 12px;
  }

  header nav ul.lang li {
    margin-right: 5px;
  }

  header nav ul.lang li:last-child {
    margin-right: 0;
  }


  header nav ul.lang li a {
    border-radius: 20px;
    display: inline-block;
    font-size: 12px;
    width: 75px;
    line-height: 26px;
    border: 1px solid #e5221a;
  }



  header nav ul.menu li {
    margin-right: 0;
    text-align: left;
  }

  header nav ul.menu li.more_nav {
    cursor: pointer;
  }

  header nav ul.menu li.more_nav:hover {
    background-color: #e5221a;
  }

  header nav ul.menu li.more_nav.on_click {
    background-color: #e5221a;
  }

  header nav ul.menu li.more_nav:hover a {
    color: #fff;
  }

  header nav ul.menu li.more_nav.on_click a {
    color: #fff;
  }

  header nav ul.menu li a {
    position: relative;
    padding-bottom: 0;
    font-size: 16px;
    display: block;
    padding-top: 10px;
    padding-left: 40px;
    padding-bottom: 10px;
  }

  header nav ul.menu li a.mega_nav {
    position: relative;
    pointer-events: none;
  }



  header nav ul.menu li a:hover {
    background-color: #e5221a;
    color: #fff;
  }

  header nav ul.menu li a.mega_nav::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 5%;
    width: 16px;
    height: 16px;
    border-top: 2px solid #e5221a;
    border-right: 2px solid #e5221a;
    transform: translateY(-50%) rotate(45deg);
  }

  header nav ul.menu li:hover a.mega_nav::before {
    border-top-color: #fff;
    border-right-color: #fff;
  }


  header nav ul.menu li.more_nav.on_click a.mega_nav::before {
    border-top-color: #fff;
    border-right-color: #fff;
  }

  header nav ul.menu li a:after {
    display: none;
  }

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

  .overlay {
    display: block;
  }

  /*  ハンバーガーメニューのカレント*/
  #page_skill nav li a[href="/skill/"],
  #page_solution nav li.more_nav1 a,
  #page_recruit nav li.more_nav2 a,
  #page_company nav li.more_nav3 a,
  #page_news nav li a[href="/news/"],
  .page_contact nav li a[href="/contact/"],
  #page_blog nav li a[href="/blog/"] {
    padding-left: 30px;
    border-left: 10px solid #e5221a;
  }

  /*

  #page_solution li.more_nav1 a,
  #page_recruit li.more_nav2 a,
  #page_company li.more_nav3 a {
    color: #fff;
  }


  #page_solution li.more_nav1 a::before,
  #page_recruit li.more_nav2 a::before,
  #page_company li.more_nav3 a::before {
    border-top-color: #fff;
    border-right-color: #fff;
  }
*/


  /*第三層ソリューション*/
  /*
  #page_improve li.more_nav1,
  #page_it li.more_nav1,
  #page_digital li.more_nav1,
  #page_support li.more_nav1,
  #page_measurement li.more_nav1,
  #page_security li.more_nav1,
  #page_tscb li.more_nav1,
  .page_tisg3000dl li.more_nav1 {
    color: #fff;
    background-color: #e5221a
  }
*/

  #page_improve li.more_nav1 a,
  #page_it li.more_nav1 a,
  #page_digital li.more_nav1 a,
  #page_support li.more_nav1 a,
  #page_measurement li.more_nav1 a,
  #page_security li.more_nav1 a,
  #page_tscb li.more_nav1 a,
  #page_ad li.more_nav1 a,
  #page_work li.more_nav1 a,
  .page_tisg3000dl li.more_nav1 a {
    padding-left: 30px;
    border-left: 10px solid #e5221a;
  }

  /*
  #page_improve li.more_nav1 a::before,
  #page_it li.more_nav1 a::before,
  #page_digital li.more_nav1 a::before,
  #page_support li.more_nav1 a::before,
  #page_measurement li.more_nav1 a::before,
  #page_security li.more_nav1 a::before,
  #page_tscb li.more_nav1 a::before,
  .page_tisg3000dl li.more_nav1 a.mega_nav::before {
    border-top-color: #fff;
    border-right-color: #fff;
  }
*/



  /*第三層採用情報*/
  /*
  #page_know li.more_nav2,
  #page_project li.more_nav2,
  #page_data li.more_nav2,
  #page_message li.more_nav2,
  #page_welfare li.more_nav2,
  #page_application li.more_nav2,
  .page_entry li.more_nav2,
  #page_welfare_details li.more_nav2,
  #page_welfare_trip li.more_nav2,
  #page_ li.more_nav2 {
    color: #fff;
    background-color: #e5221a
  }
*/

  #page_know li.more_nav2 a,
  #page_project li.more_nav2 a,
  #page_data li.more_nav2 a,
  #page_message li.more_nav2 a,
  #page_welfare li.more_nav2 a,
  #page_application li.more_nav2 a,
  .page_entry li.more_nav2 a,
  #page_welfare_details li.more_nav2 a,
  #page_welfare_trip li.more_nav2 a {
    padding-left: 30px;
    border-left: 10px solid #e5221a;
  }

  /*
  #page_know li.more_nav2 a::before,
  #page_project li.more_nav2 a::before,
  #page_data li.more_nav2 a::before,
  #page_message li.more_nav2 a::before,
  #page_welfare li.more_nav2 a::before,
  #page_application li.more_nav2 a::before,
  .page_entry li.more_nav2 a.mega_nav::before,
  #page_welfare_details li.more_nav2 a::before,
  #page_welfare_trip li.more_nav2 a::before,
  #page_ li.more_nav2 a::before {
    border-top-color: #fff;
    border-right-color: #fff;
  }
*/






  /*第三層会社情報*/
  /*
  #page_overview li.more_nav3,
  #page_global li.more_nav3,
  #page_csr li.more_nav3,
  #page_quality li.more_nav3,
  #page_3s1c li.more_nav3 {
    color: #fff;
    background-color: #e5221a;
  }
*/

  #page_overview li.more_nav3 a,
  #page_global li.more_nav3 a,
  #page_csr li.more_nav3 a,
  #page_quality li.more_nav3 a,
  #page_3s1c li.more_nav3 a,
  #page_license li.more_nav3 a,
  #page_organization li.more_nav3 a {
    padding-left: 30px;
    border-left: 10px solid #e5221a;
  }

  /*

  #page_overview li.more_nav3 a::before,
  #page_global li.more_nav3 a::before,
  #page_csr li.more_nav3 a::before,
  #page_quality li.more_nav3 a::before,
  #page_3s1c li.more_nav3 a::before {
    border-top-color: #fff;
    border-right-color: #fff;
  }
*/





  /*----------------メガメニュー---------------*/


  .mn_content_wrap {
    width: calc(100% - 40px);
    max-width: 335px;
    top: 0;
    left: auto;
    right: 0;
    height: 100%;
    padding-top: 0;
    transform: translateX(100%);
    opacity: 1;
    z-index: 1010;
    transition: .3s;
  }

  .mn_content_wrap.mn_content1.open.more_open,
  .mn_content_wrap.mn_content2.open.more_open,
  .mn_content_wrap.mn_content3.open.more_open {
    transform: translateX(0)
  }

  .mn_content_wrap.mn_content1 .mn_content,
  .mn_content_wrap.mn_content2 .mn_content,
  .mn_content_wrap.mn_content3 .mn_content {
    display: block;
  }

  .mn_content_wrap .mn_content .title_wrap {
    width: auto;
    margin-bottom: 30px;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .mn_content_wrap.mn_content1 .mn_content .title_wrap h3::before {
    left: 0;
  }

  .mn_content_wrap .mn_content .title_wrap p a {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .mn_content_wrap .mn_content ul {
    width: auto;
    display: block;
    height: 56vh;
    overflow-y: scroll;
    padding-left: 10px;
    border-left: 1px solid #fff;
    margin-bottom: 20px;
    max-height: 500px;
  }

  .mn_content_wrap .mn_content ul li {
    width: auto;
  }

  .mn_content_wrap .mn_content ul li .img_wrap {
    display: none;
  }

  .mn_content_wrap .mn_content ul li p {
    border-bottom: 1px solid #fff;
  }

  .mn_content_wrap .mn_content ul li p a {
    display: block;
    padding-bottom: 20px;
    font-size: 16px;
  }

  .mn_content_wrap .mn_content ul li p a::before {
    top: 2px;
  }

  .mn_content_wrap .mn_content ul li p a::after {
    top: 11px;
  }

  .mn_content_wrap .mn_content .back {
    color: #fff;
    cursor: pointer;
  }

  .mn_content_wrap .mn_content .back span {
    display: block;
    padding-left: 15px;
    position: relative;
  }

  .mn_content_wrap .mn_content .back span::before {
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    width: 15px;
    height: 15px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-45deg);

  }


  #page_top .recruit .content .img_wrap span.decoration1::before {
    transform: translateX(-10%);
  }

  #page_top .recruit .content .img_wrap span.decoration2::before {
    transform: translateX(10%);
  }


}


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


  .sp_none1100 {
    display: none;
  }


  .sp_block1100 {
    display: block;
  }
}

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



  .sp_none1000 {
    display: none;
  }


  .sp_block1000 {
    display: block;
  }

  footer .under .footer_nav {
    width: 100%;
  }


  footer .under .footer_nav ul.info_nav li {
    font-size: 16px;
  }

  footer .under .address_wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  footer .under .address_wrap h2 {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 30px;
  }


  #page_top .vision {
    display: block;
  }

  #page_top .vision h2 {
    margin-bottom: 40px;
    text-align: right;
    display: inline-block;
  }

  #page_top .vision .detail {
    width: auto;
    max-width: 610px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }

  #page_top .vision .detail h3 {
    margin-bottom: 10px;
  }


}

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

  .sp_none850 {
    display: none;
  }

  .sp_block850 {
    display: block;
  }

  #page_top .mv .slick-dots {
    bottom: -2vw;
    right: 3%;
  }

  #page_top #slide_wrap {
    padding-bottom: 1px;
  }



  section.mv .img_wrap {
    padding-bottom: 1px;
  }


  section.mv h2 span.en_text {
    font-size: 16vw;
  }

  section.mv h1 span.en_text {
    font-size: 11vw;
  }

  section.mv h2 span.jp_text {
    font-size: 4vw;
  }

  section.mv h1 span.jp_text {
    font-size: 4vw;
  }

  #page_top section.mv #slide_wrap .slide_item img {
    height: 75vh;
  }

  #page_top section.mv .news {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    width: 90%;
    margin: 30px auto 0;
    display: block;
  }

  #page_top section.mv .news h3 {
    display: block;
    width: auto;
    padding-top: 10px;
    padding-left: 15px;
    padding-bottom: 10px;
  }

  #page_top section.mv .news p {
    align-items: stretch;
    padding: 10px 15px;
    width: auto;
  }


  #page_top section.mv .news .read_more a {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    right: 0;
  }

  section.mv .img_wrap img {
    height: 60vw;
    min-height: 0;
    max-height: 1000px;
  }


  #page_top .recruit {
    position: static;
    padding-top: 0;
  }

  #page_top .recruit h2 {
    position: static;
    text-align: center;
    margin-bottom: 30px;
  }

  #page_top .recruit h2 > span {
    display: inline-block;
    text-align: left;
  }

  #page_top .recruit .content {
    align-items: stretch;
    justify-content: space-between;
  }

  #page_top .recruit .content .img_wrap img {
    max-width: 100%;
    width: 100%;
  }

  #page_top .recruit .content .img_wrap span {
    z-index: auto;
  }

  #page_top .recruit .content .detail {
    width: 50%;
  }

  #page_top .recruit .content .detail .text {
    padding: 0;
  }

  #page_top .recruit .content2 .img_wrap span {
    padding-top: 0;
  }

  #page_top .recruit .content2 .img_wrap span img {
    position: static;
  }


  #page_top .solution .solution_content ul {
    max-width: 610px;
    margin-left: auto;
    margin-right: auto;
  }


  #page_top .solution .solution_content ul li {
    width: 48%;
  }


  footer .upper ul {
    display: block;
  }

  footer .upper ul li {
    margin-bottom: 20px;
  }

  footer .upper ul li dl dt {
    margin-bottom: 0;
  }

  footer .upper ul li dl div {
    display: flex;
    flex-wrap: wrap;
    margin-left: 14px;
  }

  footer .upper ul li dl dd {
    padding-left: 10px;
    padding-right: 20px;
    margin-bottom: 0;
    position: relative;
    width: 270px;
  }

  footer .upper ul li dl dd::before {
    content: "-";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }



  footer .under .footer_nav ul.info_nav {
    flex-wrap: wrap;
    margin-right: 20px;
  }


  footer .under .footer_nav ul.info_nav li {
    min-width: 50%;
    margin-right: 0;
  }





}


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

  .sp_none700 {
    display: none;
  }

  .sp_block700 {
    display: block;
  }

  header nav.open.more_open {
    transform: translateX(0);
  }

  #page_top .recruit .content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }

  #page_top .recruit .content .img_wrap {
    width: 90%;
    margin-bottom: 10px;
  }

  #page_top .recruit .content .img_wrap span.decoration1::before {
    transform: translateX(-20%);
  }

  #page_top .recruit .content .detail {
    width: 90%;
  }

  #page_top .recruit .content.content2 {
    align-items: flex-start;
  }

  #page_top .recruit .content.content2 .detail {
    width: 90%;
    order: 2;
  }

  #page_top .recruit .content2 .img_wrap span.decoration2::before {
    transform: translateX(20%);
  }

  #page_top .sub_nav ul li .panel a span.panel_text {
    font-size: 4vw;
  }

  #page_top .sub_nav ul li .panel a:hover span.panel_text {
    letter-spacing: 2px;
    font-size: 4.1vw;
  }

  #page_top .pickup_service h2 span.italic_bold {
    font-size: 12vw;
  }


  #page_top .pickup_service ul li p {
    font-size: 16px;
  }


  #page_top .news ul li {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  #page_top .news ul li p {
    width: 100%;
  }

  #page_top .tsc_news ul li p {
    font-size: 14px;
  }



  footer .under .address_wrap {
    display: block;
  }

  footer .under .address_wrap dl {
    display: flex;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  footer .under .address_wrap > *:last-child {
    margin-right: auto;
  }

  footer .under .address_wrap dl dt {
    width: 110px;
  }

  footer .under .address_wrap dl dd.tel {
    margin-top: 0;
  }

}


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

  .sp_none600 {
    display: none;
  }

  .sp_block600 {
    display: block;
  }


  #page_top .pickup_service {
    margin-bottom: 60px;
  }


  #page_top .pickup_service ul {
    display: block;
  }

  #page_top .pickup_service ul li {
    width: auto;
    margin-bottom: 20px;
  }

  #page_top .pickup_service ul li .img_wrap img {
    max-width: 1000px;
    height: 23vh;
    width: 100%;
  }

  #page_top .pickup_service ul li .img_wrap {
    margin-bottom: 10px;
  }


}




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

  body {
    font-size: 14px;
  }

  .sp_none500 {
    display: none;
  }

  .sp_block500 {
    display: block;
  }

  p.btn_more a {
    max-width: 160px;
    width: 100%;
    padding-left: 0;
    text-align: center;
  }

  section h2 span.italic_bold {
    font-size: 13vw;
  }

  section h2 span.small_title {
    font-size: 5vw;
  }

  section.mv h2 {
    top: 30%;
  }

  #page_top section.mv .news p {
    font-size: 14px;
  }


  #page_top .vision h2 {
    margin-bottom: 30px;
  }

  #page_top .vision .detail h3 {
    font-size: 6vw;
  }

  #page_top .vision .detail p.btn_more {
    margin-top: 10px;
  }

  #page_top .sub_nav ul {
    display: block;
  }

  #page_top .sub_nav ul li {
    width: auto;
    margin-bottom: 20px;
  }

  #page_top .sub_nav ul li:nth-child(2) {
    width: auto;
  }

  #page_top .sub_nav ul li .panel a span.panel_text {
    font-size: 4vw;
  }

  #page_top .sub_nav ul li .panel a:hover span.panel_text {
    letter-spacing: 2px;
    font-size: 4.1vw;
  }

  #page_top .sub_nav ul li .panel a span.img_wrap img {
    height: 23vh;
    width: 100%;
    max-width: 1000px;

  }

  #page_top .sub_nav ul li .panel a span.panel_text {
    font-size: 7vw;
  }

  #page_top .sub_nav ul li .panel a:hover span.panel_text {
    letter-spacing: 2px;
    font-size: 7.2vw;
  }

  #page_top .solution .solution_content ul li .box_upper h3 {
    font-size: 16px;
  }

  #page_top .solution .solution_content ul li .box_upper p {
    font-size: 14px;
  }

  footer .under .footer_nav {
    margin-bottom: 50px;
  }

  footer .under .address_wrap {
    margin-bottom: 50px;
  }


  footer .upper ul li > span {
    font-size: 14px;
  }

  footer .upper ul li dl dt {
    font-size: 14px;
  }

  footer .upper ul li dl dd {
    font-size: 12px;
  }

  footer .under .footer_nav ul.info_nav li {
    font-size: 14px;
  }

  footer .under .address_wrap {
    font-size: 12px;
  }


  footer .under .address_wrap dl {
    max-width: 260px;
  }

  /*  スマホサイズでのTOPsolutionのアニメーション*/
  #page_top .solution .solution_content ul li.fadein.fade_up {
    opacity: 1;
    transform: translateY(0);
  }

}


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

  .sp_none350 {
    display: none;
  }

  .sp_block350 {
    display: block;
  }



}


#page_top .news h2{position: relative;}
#page_top .news h2 a.rss{
	position: absolute;
	bottom: 10px;
	right: 0;
	display: inline-block;
}
#page_top .news h2 a.rss:hover{
	opacity: .8;
}
