@charset "UTF-8";
/*=============================================*/
/*Font import */
/*=============================================*/
@import url(https://fonts.googleapis.com/css?family=Oswald:400;700&display=swap);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css);
@import url(https://fonts.googleapis.com/css?family=Sawarabi+Mincho);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700;900&display=swap);
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
html {
  font-size: 62.5%;
  overflow: auto;
}

body {
  margin: auto;
  width: auto;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
}

b, dd, dt, li, p, span, td, th {
  font-size: 1em;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}
@media print, screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}
.center {
  margin: auto;
  text-align: center;
  line-height: 180%;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.txt_base {
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
}
.txt_base p {
  line-height: 1.7;
  font-size: 1em;
  font-weight: inherit;
}
.txt_base p:not(:last-child) {
  margin-bottom: 1em;
}
.txt_base.fs14 {
  font-size: 1.4rem;
}
.txt_base.fs15 {
  font-size: 1.5rem;
}

.mb20 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.tel_link,
.tel_link a {
  color: inherit;
  font-size: 1em;
}

/*=============================================*/
/*  layout  Base                        */
/*=============================================*/
.main_width {
  width: calc(100% - 30px);
  max-width: 1250px;
  margin: auto;
}

section {
  padding: 0 0 60px 0;
}

/*=============================================*/
/*  layout                               */
/*=============================================*/
/********************************************/
/*header */
/********************************************/
.header {
  border-top: solid 2px #E60012;
  border-bottom: solid 1px #E60012;
  padding: 16px 0 0;
  background-color: #fff;
}
.header .header_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
}
.header .logo {
  width: 45%;
  max-width: 461px;
  margin-right: 3%;
}
.header .logo a,
.header .logo img {
  display: block;
}
.header .logo a {
  transition: all 0.3s;
}
.header .logo a:hover {
  opacity: 0.7;
}

.nav_list {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-left: 0;
}
.nav_list > li {
  width: 20%;
  list-style: none;
}
.nav_list > li > a {
  position: relative;
  display: block;
  font-weight: bold;
  padding: 0.5em 0.5em 1.5em;
  text-align: center;
  border: solid 2px #fff;
  border-bottom: 0;
  color: inherit;
}
.nav_list > li > a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background: #E60012;
  transition: all 0.3s;
}
.nav_list > li > a:hover:after {
  width: 100%;
}
.nav_list > li.mega_btn > a {
  color: inherit;
}
.nav_list > li.mega_btn > a:after {
  content: none;
}

a.no_link {
  pointer-events: none;
}

/********************************************/
/* Mega Menu */
/********************************************/
.nav_list .mega_btn > a:before {
  position: absolute;
  bottom: 5px;
  left: calc(50% - 5px);
  content: "";
  width: 6px;
  height: 11px;
  background: url(../img/common/arr-right-red.svg) no-repeat center/contain;
  transform: rotate(90deg);
}
.nav_list .mega_btn.active > a {
  border-color: #E60012;
}
.nav_list .mega_btn.active > a:after {
  position: absolute;
  left: 0;
  bottom: -2px;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  z-index: 10;
  transition: all 0s;
}
.nav_list .mega_btn.active > a:before {
  transform: rotate(-90deg);
}

.main_nav .mega_menu {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: left;
  background-color: #fff;
  border: solid 2px #E60012;
  padding: 24px 0;
  z-index: 1;
}
.main_nav .mega_menu .child {
  display: flex;
  justify-content: space-between;
  padding-left: 0;
}
.main_nav .mega_menu .child li {
  position: relative;
  width: 33.3%;
  padding: 0 24px;
  list-style: none;
}
.main_nav .mega_menu .child li:not(:last-child):after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: #ccc;
}
.main_nav .mega_menu .child .img {
  margin-bottom: 24px;
}
.main_nav .mega_menu .child .ttl {
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-weight: bold;
}
.main_nav .mega_menu .child dl {
  display: flex;
  flex-wrap: wrap;
}
.main_nav .mega_menu .child dl:not(:last-child) {
  margin-bottom: 11px;
}
.main_nav .mega_menu .child dl dt, .main_nav .mega_menu .child dl dd {
  padding-bottom: 15px;
}
.main_nav .mega_menu .child dl .sub_ttl {
  margin-right: 1.5em;
  font-size: 1.4rem;
  font-weight: bold;
}
.main_nav .mega_menu .child a {
  display: inline-block;
  position: relative;
  margin-right: 1.5em;
  padding-left: 1em;
  font-size: 1.4rem;
  color: inherit;
  line-height: 1.2;
}
.main_nav .mega_menu .child a:before {
  position: absolute;
  left: 0;
  top: 0.25em;
  content: "";
  width: 6px;
  height: 11px;
}
.main_nav .mega_menu .child .nav_red .ttl {
  color: #E60012;
}
.main_nav .mega_menu .child .nav_red a:before {
  background: url(../img/common/arr-right-red.svg) no-repeat center/contain;
}
.main_nav .mega_menu .child .nav_red a:hover {
  color: #E60012;
}
.main_nav .mega_menu .child .nav_blue .ttl {
  color: #215187;
}
.main_nav .mega_menu .child .nav_blue a:before {
  background: url(../img/common/arr-right-blue.svg) no-repeat center/contain;
}
.main_nav .mega_menu .child .nav_blue a:hover {
  color: #215187;
}
.main_nav .mega_menu .child .nav_green .ttl {
  color: #69BE28;
}
.main_nav .mega_menu .child .nav_green a:before {
  background: url(../img/common/arr-right-green.svg) no-repeat center/contain;
}
.main_nav .mega_menu .child .nav_green a:hover {
  color: #69BE28;
}
.main_nav .mega_menu .child span {
  position: relative;
  display: block;
  font-size: 1.4rem;
  color: #fff;
  padding: 5em 1em;
  z-index: 1;
}

/********************************************/
/*  Sp-menu*/
/********************************************/
.sp_menu_trigger,
.sp_nav {
  display: none;
}

/********************************************/
/* main_visual */
/********************************************/
.main_visual {
  display: flex;
}

.main_visual .img {
  width: 20%;
}
.main_visual .img.left {
  margin: 0;
}

.main_visual .center {
  width: 50%;
}
.main_visual .center .inner {
  max-width: 810px;
  margin: auto;
}
.main_visual .center .inner .txt_img {
  border-bottom: 1px solid #fff;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.main_visual .center .inner .txt_img img {
  width: 100%;
}
.main_visual .center .inner .txt {
  color: #fff;
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  text-align: left;
  line-height: 2;
}

/********************************************/
/* top 共通 */
/********************************************/
.top_sec_ttl {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 0.8em;
}

/********************************************/
/* service_block */
/********************************************/
.front-news .service_block > .txt_base {
  font-weight: bold;
  margin-bottom: 0.5em;
}

.front-news .service_block .list {
  padding-left: 0;
}
.front-news .service_block .list > li {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding: 25px 0;
  list-style: none;
}
.front-news .service_block .list > li .left {
  width: 30%;
}

.front-news .service_block .list > li .right {
  width: 70%;
}
.front-news .service_block .list > li .right .item_ttl {
  max-width: 160px;
  padding: 0 0.5em;
  color: #fff;
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.9em;
}
.front-news .service_block .list > li .right .txt_base {
  font-weight: 400;
  margin-bottom: 1.5em;
}
.front-news .service_block .list > li .right .link_list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}
.front-news .service_block .list > li .right .link_list li {
  position: relative;
  display: inline-block;
  padding-left: 23px;
  margin-right: 15px;
  margin-bottom: 10px;
  list-style: none;
}
.front-news .service_block .list > li .right .link_list li:before {
  left: 0;
}
.front-news .service_block .list > li .right .link_list li a {
  font-size: 1.4rem;
  font-weight: bold;
  transition: all 0.3s;
}
.front-news .service_block .list > li .right .link_list li a:hover {
  opacity: 0.5;
}

.front-news .service_block .list > li:nth-child(1) .right .item_ttl {
  background-color: #E60012;
}
.front-news .service_block .list > li:nth-child(1) .right .link_list li:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -2px;
  transform: rotate(45deg);
  border-top: solid 2px #E60012;
  border-right: solid 2px #E60012;
}
.front-news .service_block .list > li:nth-child(2) .right .item_ttl {
  background-color: #215187;
}
.front-news .service_block .list > li:nth-child(2) .right .link_list li:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -2px;
  transform: rotate(45deg);
  border-top: solid 2px #215187;
  border-right: solid 2px #215187;
}
.front-news .service_block .list > li:nth-child(3) .right .item_ttl {
  background-color: #69BE28;
}
.front-news .service_block .list > li:nth-child(3) .right .link_list li:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -2px;
  transform: rotate(45deg);
  border-top: solid 2px #69BE28;
  border-right: solid 2px #69BE28;
}

/********************************************/
/* news_block */
/********************************************/
.front-news .news_block .list {
  margin-bottom: 40px;
  padding-left: 0;
}
.front-news .news_block .list li {
  list-style: none;
  border-bottom: 1px solid #ccc;
}
.front-news .news_block .list li a {
  padding: 25px 0;
  display: flex;
}
.front-news .news_block .list li a .info {
  width: 20%;
  display: flex;
}
.front-news .news_block .list li a .info .date {
  font-size: 1.4rem;
  width: 6.5em;
  margin-top: 0.3em;
}
.front-news .news_block .list li a .info .category {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #E60012;
  color: #fff;
  width: calc(100% - 6.5em);
  max-width: 80px;
  padding: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.front-news .news_block .list li a .ttl {
  display: block;
  width: 80%;
  padding: 0 2.5em 0 2em;
}

.front-news .news_block .list li {
  border-bottom: 1px solid #ccc;
}
.front-news .news_block .list li a {
  position: relative;
  transition: all 0.3s;
}
.front-news .news_block .list li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 8px;
  height: 8px;
  margin-top: -2px;
  transform: rotate(45deg);
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transition: all 0.3s;
}
.front-news .news_block .list li a:hover:after {
  border-top: solid 2px #E60012;
  border-right: solid 2px #E60012;
}

.front-news .news_block .list li p {
  margin-bottom: 0;
}

/********************************************/
/* aside */
/********************************************/
.page-sidebar-member.bg_pink {
  background-color: #FFF6F5;
}

.page-sidebar-member-title {
  margin-bottom: 0.5em;
}

.page-sidebar-member-signup {
  box-shadow: 0 3px 1px #954a00;
  background-color: #E77400;
}

.page-sidebar-work-search {
  box-shadow: 0 3px 1px #0e2239;
  background-color: #215187;
}

.page-sidebar-change-job {
  box-shadow: 0 3px 1px #61475f;
  background-color: #9C7399;
}

.page-sidebar-nav .nav-menu-sidebar .menu-item > a {
  position: relative;
}
.page-sidebar-nav .nav-menu-sidebar .menu-item > a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 8px;
  height: 8px;
  margin-top: -2px;
  transform: rotate(45deg);
  border-top: solid 2px #E60012;
  border-right: solid 2px #E60012;
}
.page-sidebar-nav .nav-menu-sidebar .menu-item ul {
  padding-left: 0;
}
.page-sidebar-nav .nav-menu-sidebar .menu-item ul li {
  list-style: none;
}
.page-sidebar-nav .nav-menu-sidebar .menu-item ul li a {
  padding-left: 3em;
  position: relative;
}
.page-sidebar-nav .nav-menu-sidebar .menu-item ul li a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 8px solid #E60012;
}

.nav-menu-sidebar li:first-child {
  margin: 0;
}

.nav-menu-sidebar li:last-child {
  margin: 0;
}

.nav-menu-sidebar {
  padding: 10px 0;
}
.nav-menu-sidebar a {
  margin: 10px 0 !important;
}

/********************************************/
/* footer */
/********************************************/
.footer .logo a {
  display: block;
  transition: all 0.3s;
}
.footer .logo a:hover {
  opacity: 0.7;
}

.footer_top {
  padding: 64px 0;
  background: #333;
}
.footer_top dt,
.footer_top dd,
.footer_top p {
  color: #fff;
}
.footer_top .footer_top01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 112px;
}
.footer_top .footer_top01 .left,
.footer_top .footer_top01 .right {
  width: 48%;
}
.footer_top .footer_top01 .footer_txt_img {
  margin-bottom: 24px;
}
.footer_top .footer_top01 .right {
  display: flex;
  justify-content: space-between;
}
.footer_top .footer_top01 .right li {
  width: 49%;
  list-style: none;
}
.footer_top .footer_top02 {
  display: flex;
}
.footer_top .footer_top02 .footer_link_list:not(:last-child) {
  margin-right: clamp(30px, 5.4vw, 80px);
}
.footer_top .footer_top02 .footer_link_list .ttl {
  margin-bottom: 24px;
  font-size: 1.6rem;
  font-weight: bold;
}
.footer_top .footer_top02 .footer_link_list .sub_ttl {
  margin-bottom: 16px;
  font-size: 1.4rem;
  font-weight: bold;
}
.footer_top .footer_top02 .footer_link_list a {
  display: block;
  position: relative;
  padding-left: 1em;
  color: #fff;
  font-size: 1.4rem;
  transition: all 0.3s;
  line-height: 1.2;
}
.footer_top .footer_top02 .footer_link_list a:not(:last-child) {
  margin-bottom: 1em;
}
.footer_top .footer_top02 .footer_link_list a:before {
  position: absolute;
  left: 0;
  top: 0.25em;
  content: "";
  width: 6px;
  height: 11px;
  background: url(../img/common/arr-right-white.svg) no-repeat center/contain;
}
.footer_top .footer_top02 .footer_link_list a span {
  position: relative;
  display: inline-block;
  color: inherit;
}
.footer_top .footer_top02 .footer_link_list a span:after {
  position: absolute;
  left: 0;
  bottom: -2px;
  content: "";
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
}
.footer_top .footer_top02 .footer_link_list a:hover span:after {
  width: 100%;
}
.footer_top .footer_top02 .footer_link_list.service ul {
  display: flex;
  padding-left: 0;
}
.footer_top .footer_top02 .footer_link_list.service ul li {
  list-style: none;
}
.footer_top .footer_top02 .footer_link_list.service ul li:not(:last-child) {
  margin-right: clamp(20px, 2.8vw, 42px);
}

.footer_bottom {
  padding: 64px 0 60px;
  border-top: solid 5px #E60012;
}
.footer_bottom .inner {
  display: flex;
  justify-content: space-between;
}
.footer_bottom .inner .logo {
  width: 100%;
  max-width: 462px;
  margin-bottom: 24px;
}
.footer_bottom .inner .left {
  width: auto;
  text-align: left;
}
.footer_bottom .inner .right {
  display: flex;
  align-items: center;
  width: auto;
  text-align: left;
  padding-left: 0;
}
.footer_bottom .inner .right li {
  list-style: none;
}
.footer_bottom .inner .right li:not(:last-child) {
  margin-right: 16px;
}
.footer_bottom .inner .right .certification a {
  padding-left: 0;
  transition: all 0.3s;
}
.footer_bottom .inner .right .certification a:before {
  content: none;
}
.footer_bottom .inner .right .certification a img {
  width: auto;
  max-height: 5em;
}
.footer_bottom .inner .right .certification a:hover {
  opacity: 0.7;
}
.footer_bottom .inner .right a {
  display: block;
  position: relative;
  padding-left: 1em;
  font-size: 1.4rem;
  transition: all 0.3s;
  line-height: 1.2;
}
.footer_bottom .inner .right a:before {
  position: absolute;
  left: 0;
  top: 0.25em;
  content: "";
  width: 6px;
  height: 11px;
  background: url(../img/common/arr-right-red.svg) no-repeat center/contain;
}
.footer_bottom .inner .right a:hover {
  color: #E60012;
}
.footer_bottom .copyright {
  font-size: 1.2rem;
}
.footer_bottom .sp {
  display: none;
}

/*=============================================*/
/*media query    Tablet */
/*=============================================*/
@media screen and (max-width: 1024px) {
  /********************************************/
  /* footer */
  /********************************************/
  .footer_top .footer_top01 {
    margin-bottom: 80px;
  }
  .footer_top .footer_top01 .left {
    width: 45%;
  }
  .footer_top .footer_top02 {
    display: flex;
    flex-wrap: wrap;
  }
  .footer_top .footer_top02 .footer_link_list:not(:last-child) {
    margin-bottom: 40px;
  }
  .footer_top .footer_top02 .footer_link_list.service {
    width: 100%;
    margin-right: 0;
  }
  .footer_top .footer_top02 .footer_link_list.service ul {
    display: flex;
    flex-wrap: wrap;
  }
  .footer_top .footer_top02 .footer_link_list.service ul li:not(:last-child) {
    margin-bottom: 30px;
  }
  .footer_bottom .inner {
    display: block;
  }
  .footer_bottom .inner .logo {
    width: 70%;
    margin-top: 0;
  }
  .footer_bottom .inner .right {
    margin-bottom: 24px;
  }
  .footer_bottom .sp {
    display: block;
    width: 100%;
  }
  .footer_bottom .pc {
    display: none;
  }
}
/*=============================================*/
/*media query    Tablet ipad 5.7inch */
/*=============================================*/
@media screen and (max-width: 768px) {
  a, b, dd, dt, li, p, span, td, th {
    font-size: 14px;
    font-size: 1.4rem;
  }
  /*=============================================*/
  /*  layout  Base                        */
  /*=============================================*/
  /********************************************/
  /* body fixed*/
  /********************************************/
  body {
    width: 100%;
  }
  body.fixed {
    position: fixed;
    width: 100%;
  }
  body.fixed:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  /********************************************/
  /*header */
  /********************************************/
  .header .header_top {
    display: block;
    padding-bottom: 19px;
  }
  .header .logo {
    width: 80%;
    margin-top: 18px;
    margin-right: 0;
    margin-bottom: 10px;
    max-width: 273px;
  }
  .header .kawasaki_logo {
    width: 33%;
    max-width: 111px;
  }
  /********************************************/
  /*  Sp-menu btn*/
  /********************************************/
  .sp_menu_trigger,
  .sp_menu_trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    cursor: pointer;
  }
  .sp_menu_trigger {
    position: fixed;
    top: 16px;
    right: 15px;
    width: 50px;
    height: 50px;
    background-color: #E60012;
    z-index: 9999;
    transition: all 0.3s;
  }
  .sp_menu_trigger span {
    position: absolute;
    background: #fff;
    width: 27px;
    height: 2px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .sp_menu_trigger span:nth-of-type(1) {
    top: 15px;
  }
  .sp_menu_trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
  }
  .sp_menu_trigger span:nth-of-type(3) {
    bottom: 15px;
  }
  .sp_menu_trigger.nogap {
    top: 0;
    right: 0;
  }
  .sp_menu_trigger.active span:nth-of-type(1) {
    transform: translateY(9px) rotate(-315deg);
  }
  .sp_menu_trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .sp_menu_trigger.active span:nth-of-type(3) {
    transform: translateY(-9px) rotate(315deg);
  }
  /********************************************/
  /*  Sp-menu list*/
  /********************************************/
  header .main_nav {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: rgba(255, 255, 255, 0.95);
    width: 80%;
    height: 100vh;
    -webkit-overflow-scrolling: touch;
    z-index: 9998;
    overflow-y: scroll;
    padding: 70px 0 60px;
    box-sizing: border-box;
    text-align: left;
    transition: all 0.5s;
  }
  header .main_nav.active {
    right: 0;
  }
  header .nav_list {
    display: block;
    width: 100%;
    overflow: hidden;
  }
  header .nav_list > li {
    width: 100%;
    padding: 0 0;
    border-bottom: solid 1px #ccc;
  }
  header .nav_list > li > a {
    padding: 1.5em 20px;
    text-align: left;
  }
  /********************************************/
  /* Mega Menu */
  /********************************************/
  .header .nav_list li.normal a {
    position: relative;
  }
  .header .nav_list li.normal a:before {
    position: absolute;
    position: absolute;
    bottom: calc(50% - 5px);
    content: "";
    right: 24px;
    left: auto;
    width: 0.7em;
    height: 0.7em;
    border-bottom: 2px solid #333;
    border-left: 2px solid #333;
    transform: rotate(-135deg);
  }
  .header .nav_list .mega_btn > a {
    position: relative;
  }
  .header .nav_list .mega_btn > a:before {
    bottom: calc(50% - 3px);
    content: "";
    background: none;
    right: 21px;
    left: auto;
    width: 1em;
    height: 2px;
    background-color: #333;
  }
  .header .nav_list .mega_btn > a:after {
    position: absolute;
    bottom: calc(50% - 3px);
    content: "";
    background: none;
    right: 20px;
    left: auto;
    width: 8px;
    height: 14px;
    width: 1em;
    height: 2px;
    background-color: #333;
  }
  .header .nav_list .mega_btn > a:hover:after {
    width: 1em;
  }
  .header .nav_list .mega_btn > a.active:before {
    content: none;
  }
  .main_nav .mega_menu {
    display: none;
    position: relative;
    background: none;
    padding: 0 20px;
    margin-bottom: 0;
  }
  .main_nav .mega_menu .child {
    display: block;
  }
  .main_nav .mega_menu .child li {
    position: relative;
    width: 100%;
    padding: 0 0 0 20px;
    margin-bottom: 0;
  }
  .main_nav .mega_menu .child li:not(:last-child):after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 1px;
  }
  .main_nav .mega_menu .child .img {
    margin-bottom: 18px;
  }
  .main_nav .mega_menu {
    border: 0;
  }
  .header .nav_list .mega_btn .img {
    display: none;
  }
  .header .nav_list .mega_btn .child {
    padding-left: 20px;
  }
  .header .nav_list .mega_btn .child li {
    padding: 0;
    border: 0;
  }
  .header .nav_list .mega_btn .child p.ttl {
    margin-bottom: 0;
    border-bottom: solid 1px #ccc;
    font-size: 1.4rem;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
  .header .nav_list .mega_btn .child p.ttl.no_border {
    border-bottom: 0;
  }
  .header .nav_list .mega_btn .child dl {
    display: none;
  }
  .header .nav_list .mega_btn .child dl dd.toggle_child_box {
    display: none;
  }
  .header .nav_list .mega_btn .child dt.sub_ttl,
  .header .nav_list .mega_btn .toggle_btn_child {
    cursor: pointer;
    position: relative;
  }
  .header .nav_list .mega_btn .child dt.sub_ttl:before,
  .header .nav_list .mega_btn .toggle_btn_child:before {
    position: absolute;
    bottom: calc(50% - 3px);
    content: "";
    background: none;
    right: 3px;
    left: auto;
    width: 1em;
    height: 2px;
    background-color: #333;
    transform: rotate(90deg);
  }
  .header .nav_list .mega_btn .child dt.sub_ttl:after,
  .header .nav_list .mega_btn .toggle_btn_child:after {
    position: absolute;
    bottom: calc(50% - 3px);
    content: "";
    background: none;
    right: 3px;
    left: auto;
    width: 8px;
    height: 14px;
    width: 1em;
    height: 2px;
    background-color: #333;
  }
  .header .nav_list .mega_btn .child dt.sub_ttl.active:before,
  .header .nav_list .mega_btn .toggle_btn_child.active:before {
    content: none;
  }
  .header .nav_list .mega_btn .child dl {
    padding-left: 20px;
  }
  .header .nav_list .mega_btn .child dt.sub_ttl {
    font-size: 1.4rem;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    margin-right: 0;
  }
  .header .nav_list .mega_btn .child dd a {
    display: block;
    font-size: 1.4rem;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    margin-right: 0;
  }
  .header .nav_list .mega_btn .child dd a:before {
    content: none;
  }
  .header .nav_list .mega_btn .child dd a:after {
    position: absolute;
    position: absolute;
    bottom: calc(50% - 5px);
    content: "";
    right: 8px;
    left: auto;
    width: 0.7em;
    height: 0.7em;
    border-bottom: 2px solid #333;
    border-left: 2px solid #333;
    transform: rotate(-135deg);
  }
  .header .main_nav .kawasaki_logo {
    width: 100%;
    max-width: 100%;
    padding-top: 40px;
    text-align: center;
  }
  .header .main_nav .kawasaki_logo img {
    display: block;
    width: 90%;
    margin: auto;
    max-width: 180px;
  }
  /********************************************/
  /* main_visual */
  /********************************************/
  .main_visual {
    display: block;
  }
  .main_visual .img {
    width: 100%;
  }
  .main_visual .center {
    width: 100%;
  }
  .main_visual .center .inner {
    width: 85%;
    max-width: 340px;
    margin: 80px auto;
  }
  .main_visual .center .inner .txt_img {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .main_visual .center .inner .txt {
    text-align: center;
  }
  /********************************************/
  /* service_block */
  /********************************************/
  .front-news .service_block .list > li {
    display: block;
  }
  .front-news .service_block .list > li .left {
    width: 100%;
  }
  .front-news .service_block .list > li .right {
    width: 100%;
  }
  .front-news .service_block .list > li .right .txt_base {
    text-align: left;
  }
  .front-news .service_block .list > li .right .link_list {
    display: block;
    text-align: left;
  }
  /********************************************/
  /* news_block */
  /********************************************/
  .front-news .news_block .list {
    margin-bottom: 15px;
  }
  .front-news .news_block .list li a {
    padding: 15px 0;
    display: block;
  }
  .front-news .news_block .list li a .info {
    width: 100%;
    margin-bottom: 15px;
  }
  .front-news .news_block .list li a .info .date {
    width: 6em;
  }
  .front-news .news_block .list li a .ttl {
    width: 100%;
    padding-left: 0;
  }
  .front-news .news_block .list li a:after {
    right: 10px;
  }
  /********************************************/
  /* footer */
  /********************************************/
  .footer_top {
    padding-bottom: 50px;
  }
  .footer_top .footer_top01 {
    display: block;
    margin-bottom: 40px;
  }
  .footer_top .footer_top01 .left {
    width: 100%;
    margin-bottom: 24px;
  }
  .footer_top .footer_top01 .left .footer_txt_img {
    width: 70%;
  }
  .footer_top .footer_top01 .right {
    width: 100%;
    max-width: 600px;
    padding-left: 0;
  }
  .footer_top .footer_top02 {
    display: flex;
    flex-wrap: wrap;
  }
  .footer_top .footer_top02 .footer_link_list.service {
    margin-bottom: 10px;
  }
  .footer_bottom {
    padding: 40px 0;
  }
  .footer_bottom .inner .right {
    display: block;
    margin-bottom: 24px;
  }
  .footer_bottom .inner .right li:not(:last-child) {
    margin-bottom: 14px;
  }
  .footer_link_list:last-child {
    width: 100%;
  }
  .footer_bottom .flex {
    display: flex;
  }
  .footer_bottom .inner .right {
    width: 50%;
    margin-bottom: 0;
  }
  .footer_bottom .inner .right .certification {
    display: none;
  }
  .footer_bottom .inner .mark_sp {
    width: 50%;
    margin-top: auto;
  }
  .footer_bottom .inner .mark_sp .list {
    display: flex;
    padding-left: 0;
  }
  .footer_bottom .inner .mark_sp li {
    list-style: none;
  }
  .footer_bottom .inner .mark_sp li:first-child {
    width: 23%;
    margin-right: 2%;
  }
  .footer_bottom .inner .mark_sp li:nth-child(2) {
    width: 23%;
    margin-right: 2%;
  }
  .footer_bottom .inner .mark_sp li:nth-child(3) {
    width: 50%;
  }
  .footer_top .bg_btn a {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
/*=============================================*/
/*media query    SmartPhone */
/*=============================================*/
/*=============================================*/
/* @Page Ajust */
/*=============================================*/
.nav-menu-sidebar a {
  background-image: none;
}

.company .purpose_block .list li .item_ttl .ttl {
  border-bottom: 0;
}