@charset "UTF-8";
@import url(normalize.css);
@import url(slick.css);
@import url(magnific-popup.css);
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,500,700");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:200,400,700,900");
/*

  1)	初期設定
  2)	hover
  3)	header
  4)	nav
  6)	contents
       └ main ※layoutのみ
  7)	footer
*/
/*==========================================
  初期設定
==========================================*/
@import url("https://fonts.googleapis.com/css?family=Cormorant+Garamond:300,300i,500,600");
body {
  background: #000;
  color: #000;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: normal;
  margin: 0;
  padding: 0;
  width: 100%;
}

div {
  margin: 0 auto;
}

div, h1, h2, h3, h4, h5, p, li, dl, dt, dd, th, td, article, header, footer, nav, span, a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

a.disable {
  opacity: 0.6;
}

a.disable:hover {
  opacity: 0.6;
}

img {
  height: auto;
  width: auto;
  max-width: 100%;
  line-height: 100%;
  vertical-align: bottom;
}

em {
  font-style: normal;
}

h1, h2, h3, h4, h5 {
  line-height: 1.4;
  margin: 0;
}

p, li, td, th, dt, dd {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: top;
  word-break: break-all;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }

  .pc {
    display: none !important;
  }
}
/*------------------------------------------
  フォント
------------------------------------------*/
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

/*------------------------------------------
  枠
------------------------------------------*/
.wrapper {
  background-image: url(../img/bg_top_gradation.png), url(../img/bg_gradation01.png);
  background-repeat: no-repeat, repeat-y;
  background-size: 100% auto;
  max-width: 1124px;
  padding-top: 60px;
}
@media screen and (max-width: 980px) {
  .wrapper {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .wrapper::before {
    background: rgba(23, 23, 23, 0.34);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
}

.inner {
  max-width: 980px;
}
@media screen and (max-width: 1000px) {
  .inner {
    padding: 0 10px;
  }
}

@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }
}
.navFixed {
  position: fixed;
}
.navFixed .wrapper::before {
  opacity: 1;
  visibility: visible;
  z-index: 40;
}

/*===========================================
  hover
===========================================*/
@media screen and (min-width: 769px) {
  a {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  a:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}
/*===========================================
  header
===========================================*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .header_logo {
  margin-right: 0;
  width: 52px;
  height: 120px;
}
.header .main_nav {
  width: calc(100% - 52px);
}
.header .main_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header .main_nav li {
  font-size: 16px;
  position: relative;
}
.header .main_nav li > a {
  position: relative;
}
.header .main_nav li > a::before {
  background: transparent;
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.header .main_nav li > a:hover {
  opacity: 1;
}
.header .main_nav li > a:hover::before {
  background: #000;
}
.header .main_nav li:hover .dropdown {
  opacity: 1;
  z-index: 20;
  visibility: visible;
}
.header .main_nav li .dropdown {
  background: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
  position: absolute;
  top: 30px;
  left: -164px;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  width: 456px;
}
.header .main_nav li .dropdown a {
  background: #000;
  border-radius: 10px;
  display: block;
}
.header .main_nav li .dropdown a img {
  opacity: .6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.header .main_nav li .dropdown a:hover {
  opacity: 1;
}
.header .main_nav li .dropdown a:hover img {
  opacity: 1;
}
.header .main_nav li .dropdown .item {
  position: relative;
  width: 221px;
  height: 221px;
}
.header .main_nav li .dropdown .item + .item {
  margin-left: 5px;
}
.header .main_nav li .dropdown .thumb_over_ico {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 134px;
}
@media screen and (max-width: 980px) {
  .header {
    display: block;
    position: relative;
    width: 100%;
    z-index: 50;
  }
  .header .header_logo {
    margin-right: 0;
    width: 52px;
    height: 68px;
  }
  .header .header_logo .pc {
    display: none;
  }
  .header .header_logo .sp {
    display: block !important;
  }
  .header .sub_title {
    font-size: 20px;
    font-weight: normal;
    position: absolute;
    top: 15px;
    left: 15px;
    right: 0;
    margin: auto;
    text-align: center;
  }
  .header .sub_title span {
    display: block;
    font-size: 10px;
    margin-bottom: -5px;
  }
  .header .nav_btn {
    background: url(../img/bg_nav_btn.png) no-repeat;
    background-size: 100%;
    position: fixed;
    top: 15px;
    right: 20px;
    margin: 0;
    width: 45px;
    height: 45px;
    z-index: 100;
  }
  .header .nav_btn span {
    background: #fff;
    display: block;
    width: 25px;
    height: 2px;
    margin: auto;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
  .header .nav_btn span:nth-child(1) {
    margin-top: 11px;
  }
  .header .nav_btn span:nth-child(2) {
    margin-top: 8px;
  }
  .header .nav_btn span:nth-child(3) {
    margin-top: 8px;
  }
  .header .nav_btn.close span:nth-child(1) {
    margin-top: 22px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .header .nav_btn.close span:nth-child(2) {
    display: none;
  }
  .header .nav_btn.close span:nth-child(3) {
    margin-top: -1px;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  .header.menu_on .main_nav {
    height: auto;
  }
  .header .main_nav {
    background: #fff;
    position: fixed;
    top: 60px;
    right: 20px;
    height: 0;
    overflow-y: scroll;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    width: 250px;
    z-index: 100;
  }
  .header .main_nav::before {
    background: url(../img/lower_title_border01.png) no-repeat;
    background-size: 100%;
    content: "";
    position: absolute;
    left: 60px;
    top: 0;
    width: 60px;
    height: 80px;
    z-index: 99;
  }
  .header .main_nav ul {
    display: block;
    padding: 109px 0 57px 60px;
  }
  .header .main_nav li a {
    color: #000 !important;
    border-bottom: 1px solid #000;
    font-size: 20px;
    display: block;
    padding: 10px 0 0;
    text-align: left;
  }
  .header .main_nav li a::before {
    content: none;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0 10px;
  }
  .header .nav_btn {
    top: 10px;
    right: 10px;
  }
  .header .main_nav {
    top: 55px;
    right: 10px;
  }
  .header .main_nav li a {
    font-size: 16px;
  }
}

/*===========================================
  nav
===========================================*/
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav a {
  display: block;
}
.nav .list li {
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .nav .list li {
    font-size: 1.3vw;
  }
}
.nav .list li a[target="_blank"] img {
  display: inline-block;
  padding-left: 5px;
  vertical-align: 0;
}

.nav_contact {
  color: #fff;
  font-weight: normal;
  letter-spacing: 0.1em;
  width: 100px;
  min-width: 100px;
  margin: 0;
  height: 100px;
  text-align: center;
}
.nav_contact img {
  display: block;
  padding: 24px 0 10px;
  margin: auto;
}
.nav_contact a {
  display: block;
  width: 100%;
  height: 100%;
  background: #D0021B;
  border-radius: inherit;
}

/*============================================================================================================
  contents
============================================================================================================*/
/*==========================================
  ポップアップ
==========================================*/
.main_popup {
  background: #fff;
  border-radius: 10px;
  padding: 60px 0 40px;
  max-width: 980px;
}
.main_popup .txt_box {
  padding-left: 210px;
  padding-right: 80px;
}
.main_popup h3 {
  margin: 0 0 35px;
  font-size: 32px;
  padding: 18px 0 18px 95px;
  position: relative;
}
.main_popup h3::before {
  background: url(../img/lower_title_border01.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 100%;
}
.main_popup p {
  font-size: 16px;
}
.main_popup .btn {
  background: #232323;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  color: #fff;
  display: block;
  font-size: 16px;
  letter-spacing: .1em;
  margin: 70px auto 0;
  width: 244px;
  height: 36px;
  line-height: 36px;
  position: relative;
  text-align: center;
}
.main_popup .btn:hover {
  opacity: .6;
}
.main_popup .btn span {
  position: relative;
  z-index: 1;
}
.main_popup .btn::before {
  background: -webkit-gradient(linear, left top, right top, from(#000), to(#fff));
  background: -webkit-linear-gradient(left, #000, #fff);
  background: -o-linear-gradient(left, #000, #fff);
  background: linear-gradient(to right, #000, #fff);
  border-radius: 10px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
}
.main_popup .btn::after {
  background: url(../img/ico_batsu01.png) no-repeat;
  background-size: 100%;
  content: "";
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 768px) {
  .main_popup {
    padding: 50px 0 35px;
  }
  .main_popup .txt_box {
    padding-left: 15px;
    padding-right: 15px;
  }
  .main_popup h3 {
    margin: 0 0 18px;
    font-size: 15px;
    padding: 10px 0 10px 43px;
  }
  .main_popup h3::before {
    width: 25px;
  }
  .main_popup p {
    font-size: 12px;
  }
}

/*=========================================
  modal
=========================================*/
.mfp-auto-cursor .mfp-content {
  max-width: 1280px;
}
@media screen and (max-width: 768px) {
  .mfp-auto-cursor .mfp-content {
    width: 100%;
  }
}

.mfp-close-btn-in .mfp-close {
  font-family: inherit;
  top: 0;
  opacity: 1;
}

.mfp-bg {
  background: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 768px) {
  .mfp-bg {
    width: 100%;
    padding: 75% 0 0 0;
  }
}

.mfp-iframe-scaler {
  overflow: visible;
}

.mfp-iframe-scaler iframe {
  width: 100%;
  height: 506px;
}
@media screen and (max-width: 768px) {
  .mfp-iframe-scaler iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* ====== Zoom effect ====== */
.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/*==========================================
  下部問い合わせ
==========================================*/
.lower_contact {
  text-align: center;
  padding: 190px 0 200px;
}
.lower_contact .other_case {
  margin-top: -75px;
  max-width: 980px;
}
.lower_contact .tab_ttl {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  text-align: left;
}
.lower_contact .tab_ttl span {
  background: transparent;
  display: inline-block;
  padding-right: 18px;
  position: relative;
  z-index: 1;
}
.lower_contact .tab_ttl::before {
  background: #000;
  content: "";
  position: absolute;
  left: 130px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 3px;
}
.lower_contact .other_case_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 30px 0 180px;
}
.lower_contact .other_case_list li {
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  position: relative;
  width: 24%;
}
.lower_contact .other_case_list li a {
  background: #3ebeef;
  border-radius: 10px;
  color: #fff;
  display: block;
  height: 100%;
  padding: 9px 10px;
  text-align: left;
}
.lower_contact .other_case_list li a .detail {
  font-size: 10px;
}
.lower_contact .other_case_list li a .ico_box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: auto;
}
.lower_contact .other_case_list li a .ico_box img {
  display: block;
  margin: auto;
  max-height: 56px;
}
.lower_contact .contact_h2 {
  font-size: 42px;
  font-weight: bold;
  letter-spacing: .1em;
}
.lower_contact .lead {
  font-size: 30px;
  letter-spacing: .1em;
  margin-top: 15px;
}
.lower_contact .btn {
  display: block;
  margin: 30px auto 0;
  max-width: 441px;
  height: auto;
}
.lower_contact .btn img {
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 980px) {
  .lower_contact .other_case {
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .lower_contact {
    padding: 105px 0;
  }
  .lower_contact .other_case {
    margin-top: 0;
  }
  .lower_contact .tab_ttl {
    font-size: 15px;
  }
  .lower_contact .tab_ttl::before {
    left: 100px;
    width: calc(100% - 100px);
  }
  .lower_contact .other_case_list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 15px 0 90px;
  }
  .lower_contact .other_case_list li {
    margin-bottom: 15px;
    width: 48%;
    max-height: 45vw;
  }
  .lower_contact .other_case_list li a {
    padding: 4px 5px;
    text-align: left;
  }
  .lower_contact .other_case_list li a .title {
    font-size: 12px;
  }
  .lower_contact .other_case_list li a .ico_box {
    bottom: 5px;
  }
  .lower_contact .other_case_list li a .ico_box img {
    height: 24%;
    max-height: 28px;
  }
  .lower_contact .contact_h2 {
    font-size: 24px;
    letter-spacing: normal;
  }
  .lower_contact .lead {
    font-size: 16px;
    letter-spacing: normal;
    margin-top: 15px;
  }
  .lower_contact .btn {
    display: block;
    margin: 30px auto 0;
    width: 70%;
  }
}

/*============================================================================================================
  footer
============================================================================================================*/
.footer {
  background: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  text-align: center;
  padding: 90px 0 125px;
  position: relative;
}
.footer .footer_logo_header {
  position: absolute;
  top: -57px;
  width: 65px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 55px 0 20px;
  }
  .footer .footer_logo_header {
    top: -28px;
    width: 32px;
  }
}

.footer_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer_top {
    display: block;
  }
}

/*	footerNav
---------------------------*/
.footerNav {
  margin: 0;
  max-width: 380px;
  width: 380px;
}
.footerNav .list li {
  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;
  text-align: left;
}
.footerNav .list li:nth-child(9) {
  margin-top: 3px;
}
.footerNav .list li a {
  color: #333;
  font-size: 13px;
  display: block;
  line-height: 1;
}
.footerNav .list li a:nth-child(1) {
  font-size: 18px;
  font-weight: bold;
}
.footerNav .list li a + a {
  border-left: solid 1px #000;
  margin-left: 12px;
  padding-left: 12px;
}
.footerNav .list li a.left_margin {
  margin-left: 96px;
}
.footerNav .list li + li {
  margin-top: 15px;
}
.footerNav .facebook {
  display: block;
  width: 37px;
  height: 37px;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .footerNav {
    max-width: 100%;
  }
  .footerNav .list li:nth-child(8) {
    max-width: 300px;
  }
  .footerNav .list li:nth-child(9) {
    margin-top: 0;
  }
  .footerNav .list li a {
    color: #333;
    font-size: 13px;
    display: block;
    line-height: 1;
  }
  .footerNav .list li a:nth-child(1) {
    font-size: 18px;
    margin-bottom: 10px;
    width: 100%;
  }
  .footerNav .list li a:nth-child(2) {
    margin-left: 0;
  }
  .footerNav .list li a + a {
    border-left: solid 1px #000;
    margin-left: 12px;
    padding-left: 12px;
  }
  .footerNav .list li a.left_margin {
    margin: 10px 0 10px;
  }
  .footerNav .list li + li {
    margin-top: 10px;
  }
  .footerNav .facebook {
    margin: 5px 0;
    width: 30px;
    height: 30px;
  }
}

.footer_logo {
  display: block;
  margin: 0 0 0 auto;
  max-width: 330px;
  width: 330px;
}
@media screen and (max-width: 768px) {
  .footer_logo {
    width: 58%;
  }
}

.footer_bottom {
  border-top: solid 1px #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 5px;
}
.footer_bottom .footer_bottom_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer_bottom .footer_bottom_nav li {
  font-size: 13px;
  line-height: 1;
  letter-spacing: .05em;
}
.footer_bottom .footer_bottom_nav li + li {
  border-left: solid 1px #333;
  margin-left: 10px;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .footer_bottom {
    border-top: 0;
    display: block;
    margin-top: 35px;
    padding-top: 5px;
  }
  .footer_bottom .footer_bottom_nav {
    display: block;
  }
  .footer_bottom .footer_bottom_nav li {
    font-size: 11px;
    letter-spacing: normal;
    text-align: right;
  }
  .footer_bottom .footer_bottom_nav li + li {
    border-left: 0;
    margin-top: 10px;
    margin-left: 0;
    padding-left: 0;
  }
}

/*	カテゴリーTOPへ戻る
---------------------------*/
.cattop {
  background: #323232;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
  display: none;
  position: fixed;
  right: 0px;
  bottom: 128px;
  width: 94px;
  height: 72px;
  color: #fff;
  font-size: 11px;
  text-align: center;
  line-height: 1.27;
  padding-top: 38px;
  z-index: 1;
}
.cattop img {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1;
  width: 21px;
  height: 16px;
  margin: auto;
}
.cattop span {
  position: relative;
  z-index: 2;
}
.cattop::after {
  background: -webkit-gradient(linear, left top, right top, from(#030000), to(#fff));
  background: -webkit-linear-gradient(left, #030000, #fff);
  background: -o-linear-gradient(left, #030000, #fff);
  background: linear-gradient(to right, #030000, #fff);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
}
@media screen and (max-width: 768px) {
  .cattop {
    bottom: 105px;
    padding-top: 22px;
    font-size: 10px;
    width: 67px;
    height: 50px;
  }
  .cattop img {
    top: 7px;
    width: 15px;
    height: 11px;
  }
}

/*	TOPへ戻る
---------------------------*/
.retop {
  background: #323232;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
  display: none;
  position: fixed;
  right: 0px;
  bottom: 50px;
  width: 94px;
  height: 72px;
  color: #fff;
  font-size: 11px;
  text-align: center;
  line-height: 1.27;
  padding-top: 38px;
  z-index: 1;
}
.retop img {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 1;
  width: 21px;
  height: 16px;
  margin: auto;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.retop span {
  position: relative;
  z-index: 2;
}
.retop::after {
  background: -webkit-gradient(linear, left top, right top, from(#030000), to(#fff));
  background: -webkit-linear-gradient(left, #030000, #fff);
  background: -o-linear-gradient(left, #030000, #fff);
  background: linear-gradient(to right, #030000, #fff);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
}
@media screen and (max-width: 768px) {
  .retop {
    padding-top: 22px;
    font-size: 10px;
    width: 67px;
    height: 50px;
  }
  .retop img {
    top: 7px;
    width: 15px;
    height: 11px;
  }
}

/*	copyright
---------------------------*/
.copyright {
  margin: 0 10px 0 0;
}
.copyright p {
  font-size: 10px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: .05em;
}
@media screen and (max-width: 768px) {
  .copyright {
    border-top: solid 2px #000;
    text-align: right;
    padding: 20px 0 0;
    margin: 30px 0 0;
  }
  .copyright p {
    font-size: 10px;
    font-weight: normal;
    text-align: center;
  }
}

/*==========================================
  module css
==========================================*/
/*------------------------------------------
  枠内にfitするimg
------------------------------------------*/
.imgFitBox {
  overflow: hidden;
}
.imgFitBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover; object-position: center;';
}
.imgFitBox.contain {
  /* fit = contain */
}
.imgFitBox.contain img {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: 'object-fit: contain; object-position: center;';
}

/*------------------------------------------
  hoverで拡大するimg
------------------------------------------*/
.imgLinkBox {
  display: block;
}
@media screen and (min-width: 769px) {
  .imgLinkBox img {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .imgLinkBox:hover {
    opacity: 1;
  }
  .imgLinkBox:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}

/*------------------------------------------
  共通
------------------------------------------*/
.sec_title {
  text-align: center;
  line-height: 1;
  position: relative;
}
.sec_title::before {
  background: #000;
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 2px;
}
.sec_title::after {
  background: url(../img/ttl_before01.png) no-repeat;
  background-size: 100%;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 106px;
}
@media screen and (max-width: 768px) {
  .sec_title::before {
    background: #000;
    content: "";
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 2px;
  }
  .sec_title::after {
    background: url(../img/ttl_before01.png) no-repeat;
    background-size: 100%;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 29px;
    height: 53px;
  }
}

.sec_title2 {
  border-left: solid 8px #1d804b;
  font-size: 26px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  line-height: 1;
  padding: 8px 0 8px 16px;
  position: relative;
  margin-bottom: 18px;
}
.sec_title2::before {
  background: #ddd;
  content: "";
  position: absolute;
  bottom: -10px;
  left: -8px;
  width: calc(100% + 8px);
  height: 2px;
}
.sec_title2 span {
  padding-right: 20px;
}
.sec_title2 .ico_chara01 {
  position: absolute;
  bottom: -8px;
  margin: auto;
  width: 60px;
  height: 66px;
}
.sec_title2 .ico_chara02 {
  position: absolute;
  bottom: -8px;
  margin: auto;
  width: 67px;
  height: 58px;
}
@media screen and (max-width: 768px) {
  .sec_title2 {
    font-size: 20px;
  }
}

.btn2 {
  background-image: -webkit-gradient(linear, left top, right top, from(#000), to(rgba(50, 50, 50, 0.5)));
  background-image: -webkit-linear-gradient(left, #000, rgba(50, 50, 50, 0.5));
  background-image: -o-linear-gradient(left, #000, rgba(50, 50, 50, 0.5));
  background-image: linear-gradient(to right, #000, rgba(50, 50, 50, 0.5));
  border-radius: 9px;
  color: #fff;
  font-size: 14px;
  letter-spacing: .2em;
  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: 214px;
  height: 32px;
  margin: 38px auto 0;
  position: relative;
}
.btn2::before {
  background-image: url(../img/ico_link01.png);
  background-repeat: no-repeat;
  background-size: 13px 5px;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 13px;
  height: 5px;
}
@media screen and (max-width: 768px) {
  .btn2 {
    margin: 15px auto 0;
  }
}

/*==========================================
  home_mv メインビジュアル
==========================================*/
.home_mv {
  margin-top: 15px;
}
.home_mv .home_slider {
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.6);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  overflow: hidden;
}
.home_mv .btn {
  display: block;
  margin: 23px auto 0;
  max-width: 262px;
}
@media screen and (max-width: 768px) {
  .home_mv {
    margin-top: 18px;
  }
}

/*==========================================
  HOME NEWS
==========================================*/
.home_news {
  margin-top: 90px;
  padding-bottom: 60px;
}
.home_news .sec_title img {
  max-width: 348px;
}
.home_news .article_list {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.home_news .article_list li {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  margin-bottom: 14px;
  max-width: 318px;
  padding: 5px;
  overflow: hidden;
}
.home_news .article_list li + li {
  margin-left: 13px;
}
.home_news .article_list li:nth-child(3n+1) {
  margin-left: 0;
}
@media screen and (max-width: 980px) {
  .home_news .article_list li {
    width: 32%;
  }
}
.home_news .article_list a {
  display: block;
  height: 100%;
  position: relative;
}
.home_news .article_list a:hover {
  opacity: 1;
}
.home_news .article_list a:hover img {
  opacity: 1;
}
.home_news .article_list .thumb {
  background: #000;
  border-radius: 10px;
  width: 100%;
  height: 308px;
  overflow: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  position: relative;
}
.home_news .article_list .thumb img {
  opacity: .6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
@media screen and (max-width: 980px) {
  .home_news .article_list .thumb {
    height: 29vw;
  }
}
.home_news .article_list .thumb_over_ico {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: .35;
  z-index: 1;
}
.home_news .article_list .txt_box {
  padding: 15px 0 0;
  position: relative;
  z-index: 1;
}
.home_news .article_list .title {
  font-size: 24px;
  margin-top: 5px;
  line-height: 1.16;
  height: calc(1.16em * 2);
}
.home_news .article_list .detail {
  font-size: 11px;
  line-height: 1.8;
  margin-top: 5px;
  height: calc(1.8em * 2);
}
.home_news .article_list .category {
  font-size: 10px;
  text-align: center;
  margin-top: 5px;
}
.home_news .article_list .category.orange {
  color: #eb6100;
}
.home_news .article_list .category.blue {
  color: #3ebeef;
}
.home_news .article_list .ico_image_news {
  display: block;
  margin: auto;
  width: auto;
  height: 80px;
}
.home_news .article_list .ico_box {
  position: relative;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 200%;
  margin: 80px auto 0;
  display: block;
}
.home_news .news_list_box {
  background: url(../img/bg_news02.png) no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding: 20px 35px 40px;
  margin-top: 20px;
}
.home_news .news_list_box .news_title {
  max-width: 273px;
}
.home_news .news_list_box .news_list {
  margin-top: 14px;
}
.home_news .news_list_box .news_list li {
  border-left: solid 2px #000;
  width: 100%;
}
.home_news .news_list_box .news_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.home_news .news_list_box .news_list li + li {
  margin-top: 10px;
}
.home_news .news_list_box .news_list li .date {
  margin-left: 7px;
  margin-right: 10px;
}
.home_news .news_list_box .news_list li .title {
  font-size: 14px;
  width: calc(100% - 130px);
}
.home_news .btn2 {
  margin-top: -15px;
}
@media screen and (max-width: 768px) {
  .home_news .sec_title img {
    width: 35%;
    max-width: 283px;
  }
  .home_news .category_list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px auto 0;
  }
  .home_news .category_list li {
    margin-bottom: 10px;
  }
  .home_news .category_list li + li {
    margin-left: 10px;
  }
  .home_news .article_list {
    margin-top: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .home_news .article_list li {
    padding: 6px;
    margin-bottom: 20px;
    width: 48%;
    min-height: 82vw;
    position: relative;
  }
  .home_news .article_list li + li {
    margin-left: 0;
  }
  .home_news .article_list li:nth-child(3n+1) {
    margin-left: 0;
  }
  .home_news .article_list .thumb {
    height: 39vw;
  }
  .home_news .article_list .txt_box {
    padding: 0;
  }
  .home_news .article_list .category {
    font-size: 10px;
  }
  .home_news .article_list .title {
    font-size: 12px;
    line-height: 1.38;
    height: calc(1.38em * 2);
    margin-top: 0 !important;
  }
  .home_news .article_list .detail {
    font-size: 10px;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  .home_news .article_list .ico_box {
    position: absolute;
    bottom: -3px;
  }
  .home_news .article_list .ico_box img {
    max-height: 30px;
  }
  .home_news .article_list .ico_box p {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    margin-top: 0;
  }
  .home_news .news_list_box {
    border-radius: 6px;
    padding: 12px 12px 30px;
    margin-top: 15px;
  }
  .home_news .news_list_box .news_title {
    max-width: 273px;
  }
  .home_news .news_list_box .news_list {
    margin-top: 14px;
  }
  .home_news .news_list_box .news_list li {
    border-left: solid 2px #000;
    width: 100%;
  }
  .home_news .news_list_box .news_list li a {
    display: block;
  }
  .home_news .news_list_box .news_list li .date {
    font-size: 10px;
    margin-left: 9px;
    margin-right: 0;
  }
  .home_news .news_list_box .news_list li .title {
    font-size: 10px;
    margin-left: 9px;
    width: 100%;
  }
}

/*==========================================
  Home Product Navi
==========================================*/
.home_product .sec_title::before {
  bottom: 24px;
}
.home_product .sec_title::after {
  bottom: 45px;
}
.home_product .sec_title img {
  display: block;
  max-width: 605px;
  margin: 0 auto;
}
.home_product .product_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
}
.home_product .product_list li {
  background: #000;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  position: relative;
  margin-bottom: 18px;
  max-width: 233px;
  width: 24%;
}
@media screen and (max-width: 980px) {
  .home_product .product_list li {
    width: 24%;
  }
}
.home_product .product_list li a {
  display: block;
  opacity: 1;
}
.home_product .product_list li a:hover img {
  opacity: 1;
}
.home_product .product_list li img {
  opacity: .6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.home_product .product_list li .thumb_over_ico {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-height: 128px;
}
@media screen and (max-width: 768px) {
  .home_product .sec_title::before {
    bottom: -4px;
  }
  .home_product .sec_title::after {
    bottom: 10px;
  }
  .home_product .sec_title img {
    width: 63%;
    max-width: 240px;
  }
  .home_product .product_list {
    margin-top: 20px;
  }
  .home_product .product_list li {
    border-radius: 10px;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
    position: relative;
    margin-bottom: 18px;
    max-width: 233px;
    width: 48%;
  }
  .home_product .product_list li .thumb_over_ico {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-height: 190px;
    height: 54%;
  }
}

.home_casestudy {
  margin-top: 80px;
}
.home_casestudy .sec_title img {
  width: 61%;
  max-width: 486px;
}
.home_casestudy .img_box {
  border-radius: 18px;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.6);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.6);
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .home_casestudy {
    margin-top: 40px;
  }
  .home_casestudy .sec_title img {
    max-width: 230px;
  }
  .home_casestudy .img_box {
    border-radius: 18px;
    -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.6);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.6);
    margin-top: 30px;
  }
  .home_casestudy .img_box img {
    border-radius: 10px;
  }
}

/*==========================================
  LOWER HEADER
==========================================*/
.lower .inner {
  max-width: 1124px;
}
.lower .header {
  margin-top: 30px;
}
.lower .header .header_logo {
  z-index: -1;
  margin-right: -52px;
  height: 60px;
}
.lower .header .main_nav {
  width: 100%;
}
.lower .header .main_nav li > a {
  color: #666;
}
.lower .header .main_nav li > a:hover {
  color: #fff;
}
.lower .header .main_nav li > a:hover::before {
  background: #fff;
}
.lower .footer .inner {
  max-width: 980px;
}

@media screen and (max-width: 1130px) {
  .lower .inner {
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .lower .header {
    margin-top: 0;
  }
  .lower .header .main_nav {
    width: 250px;
  }
}
.lower .wrapper {
  padding-top: 90px;
  position: relative;
}
.lower .wrapper .top_link {
  position: absolute;
  left: 73px;
  top: 0;
  width: 108px;
  height: 140px;
  overflow: hidden;
  z-index: 1;
}
.lower .wrapper .lower_ttl {
  font-size: 30px;
  padding: 15px 15px 15px 123px;
  position: relative;
}
.lower .wrapper .lower_ttl::before {
  background: url(../img/lower_title_border01.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 80px;
  height: 100%;
}
@media screen and (max-width: 980px) {
  .lower .wrapper {
    margin-top: -70px;
  }
  .lower .wrapper .top_link {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .lower .wrapper .lower_ttl {
    font-size: 16px;
    padding: 10px 10px 10px 60px;
    margin-right: 0;
    margin-left: auto;
    width: 78%;
  }
  .lower .wrapper .lower_ttl::before {
    width: 30px;
  }
}

/*==========================================
  LOWER NEWS
==========================================*/
.lower_news {
  padding-bottom: 60px;
}
.lower_news .top_title {
  background: url(../img/bg_news01.png) no-repeat;
  background-size: cover;
  color: #fff;
  font-size: 80px;
  font-weight: 200;
  font-family: "ヒラギノ角ゴ Pro W2", "Hiragino Kaku Gothic Pro", sans-serif;
  max-width: 736px;
  height: 360px;
  line-height: 1;
  padding: 40px 35px;
  margin-left: auto;
  margin-right: 0;
}
.lower_news .top_image {
  margin-left: auto;
  margin-right: 0;
  max-width: 736px;
}
.lower_news .news_box {
  background: #fff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 7px 7px 160px;
  max-width: 1080px;
  margin: 0 auto 0 0;
}
.lower_news .news_box .news_box_inner {
  margin: 0 0 0 auto;
  max-width: 873px;
}
.lower_news .news_box .lower_ttl {
  margin-top: 150px;
  margin-bottom: 150px;
}
.lower_news .news_box .archive_box {
  border-top: solid 2px #000;
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 40px;
}
.lower_news .news_box .archive_box .archive_name {
  margin-right: 10px;
}
.lower_news .news_box .article_list li {
  border-left: solid 3px #000;
  padding: 20px;
}
.lower_news .news_box .article_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.lower_news .news_box .article_list li .date {
  font-size: 16px;
  margin-right: 20px;
}
.lower_news .news_box .article_list li h3 {
  font-size: 16px;
  font-weight: normal;
  width: calc(100% - 150px);
}
.lower_news .news_box .article_list li + li {
  margin-top: 20px;
}
.lower_news .news_box .article_list li:nth-child(2n+1) {
  background: #f4f4f4;
}
.lower_news .news_box .wp-pagenavi {
  margin-top: 100px;
  text-align: center;
}
.lower_news .pager {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-top: 30px;
}
.lower_news .pager ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.lower_news .pager li {
  border: solid 2px #1d804b;
  font-size: 14px;
  height: 35px;
}
.lower_news .pager li.current {
  background: #1d804b;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
}
.lower_news .pager li a {
  color: #1d804b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
  width: 100%;
  height: 100%;
}
.lower_news .pager li a:hover {
  background: #1d804b;
  color: #fff;
  opacity: 1;
}
.lower_news .pager li + li {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .lower_news {
    padding-bottom: 30px;
  }
  .lower_news .top_title {
    font-size: 40px;
    width: 85%;
    height: auto;
    padding: 35px 17px 65px;
  }
  .lower_news .top_image {
    width: 85%;
    height: auto;
  }
  .lower_news .news_box {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 4px 4px 80px;
    margin-right: 20px;
  }
  .lower_news .news_box .news_box_inner img {
    display: block;
    margin: 0 0 0 auto;
    width: 78%;
  }
  .lower_news .news_box .lower_ttl {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .lower_news .news_box .archive_box {
    font-size: 13px;
    padding-top: 15px;
    margin: 0 8px 60px 12px;
  }
  .lower_news .news_box .archive_box .archive_name {
    margin-right: 10px;
  }
  .lower_news .news_box .article_list {
    padding: 0 8px 0 12px;
  }
  .lower_news .news_box .article_list li {
    border-left: solid 2px #000;
    padding: 10px 12px;
  }
  .lower_news .news_box .article_list li a {
    display: block;
  }
  .lower_news .news_box .article_list li .date {
    font-size: 10px;
  }
  .lower_news .news_box .article_list li h3 {
    font-size: 10px;
    width: 100%;
  }
  .lower_news .news_box .article_list li + li {
    margin-top: 10px;
  }
  .lower_news .news_box .wp-pagenavi {
    margin-top: 50px;
  }
  .lower_news .pager {
    margin-top: 15px;
  }
  .lower_news .pager li {
    font-size: 12px;
  }
}

/*==========================================
  SINGLE CONTENT
==========================================*/
.single_content {
  padding-bottom: 60px;
}
.single_content .top_image {
  margin-left: auto;
  margin-right: 0;
  max-width: 736px;
}
.single_content .content_box {
  background: #fff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 7px 7px 120px;
  max-width: 1052px;
  margin: 0 auto 0 0;
}
.single_content .content_box .content {
  padding-right: 15px;
  margin: 0 0 0 auto;
  max-width: 865px;
}
.single_content .content_box .content .lower_ttl {
  margin-top: 120px;
  margin-bottom: 120px;
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  padding: 26px 0 26px 123px;
  position: relative;
}
.single_content .content_box .content h1 {
  font-size: 32px;
  margin-top: 45px;
}
.single_content .content_box .content h2 {
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  margin-top: 30px;
}
.single_content .content_box .content p {
  font-size: 16px;
  margin-top: 16px;
}
.single_content .pager {
  margin-top: 120px;
}
.single_content .pager .inner {
  margin: auto;
  position: relative;
}
.single_content .pager ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.single_content .pager li a {
  background: #fff;
  border: solid 2px #000;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  height: 35px;
  padding: 0 15px;
}
.single_content .pager li:nth-child(1), .single_content .pager li:nth-child(3) {
  position: absolute;
}
.single_content .pager li:nth-child(1) {
  left: 0;
}
.single_content .pager li:nth-child(3) {
  right: 0;
}
.single_content .pager li:hover a {
  background: #000;
  color: #fff;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .single_content {
    padding-bottom: 30px;
  }
  .single_content .top_image {
    width: 85%;
    height: auto;
  }
  .single_content .content_box {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 4px 10px 60px;
    margin-right: 20px;
  }
  .single_content .content_box .content {
    padding-right: 0;
    width: 80%;
  }
  .single_content .content_box .content .lower_ttl {
    margin-top: 75px;
    margin-bottom: 75px;
    width: 95%;
    margin: 75px 0;
    font-size: 16px;
    padding: 10px 0 10px 45px;
    position: relative;
  }
  .single_content .content_box .content h1 {
    font-size: 16px;
    margin-top: 24px;
  }
  .single_content .content_box .content h2 {
    font-size: 14px;
    margin-top: 15px;
  }
  .single_content .content_box .content p {
    font-size: 12px;
    margin-top: 12px;
  }
  .single_content .pager {
    margin-top: 60px;
  }
  .single_content .pager li a {
    font-size: 11px;
    height: 30px;
    padding: 0 10px;
  }
}

/*==========================================
  PAGE CONTENT
==========================================*/
.page_content {
  position: relative;
}
.page_content .page_top {
  max-width: 980px;
  margin: auto;
}
.page_content .top_ttl_image {
  display: block;
  margin: 0 0 0 auto;
  max-width: 732px;
  width: 75%;
}
.page_content .top_ttl_image.three_column {
  max-width: 654px;
  width: 66%;
}
.page_content .top_ttl_image.five_column {
  max-width: 780px;
  width: 80%;
}
.page_content .two_column_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page_content .two_column_list li {
  width: 50%;
}
.page_content .three_column_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 26px 0 35px;
}
.page_content .three_column_list li {
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  position: relative;
  margin-bottom: 20px;
  width: 32%;
}
.page_content .three_column_list li.two_column {
  padding: 8px;
  width: 66%;
}
.page_content .three_column_list li.two_column img {
  width: 49%;
  height: 300px;
}
.page_content .three_column_list li.two_column .img_box {
  background: #000;
  border-radius: 10px;
  margin: 0;
  width: 49%;
}
.page_content .three_column_list li.two_column .img_box img {
  width: 100%;
}
.page_content .three_column_list li.two_column .photo_img {
  border-radius: 10px;
}
.page_content .three_column_list li.two_column a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page_content .three_column_list li.two_column a .photo_img {
  opacity: .6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.page_content .three_column_list li.two_column a:hover {
  opacity: 1;
}
.page_content .three_column_list li.two_column a:hover .photo_img {
  opacity: 1;
}
.page_content .three_column_list li.white {
  background: #fff;
}
.page_content .three_column_list li.brown {
  background: #41210f;
}
.page_content .three_column_list li a {
  display: block;
  width: 100%;
  height: 100%;
}
.page_content .three_column_list li .thumb_over_ico {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-height: 149px;
}
.page_content .four_column_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 26px 0 35px;
}
.page_content .four_column_list li {
  background: #000;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  position: relative;
  width: 24%;
  max-height: 235px;
}
.page_content .four_column_list li img:nth-child(1) {
  width: 100%;
  height: 100%;
}
.page_content .four_column_list li .thumb_over_ico {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-height: 177px;
}
.page_content .four_column_list li a img {
  opacity: .6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.page_content .four_column_list li a:hover {
  opacity: 1;
}
.page_content .four_column_list li a:hover img {
  opacity: 1;
}
.page_content .five_column_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 26px 0 35px;
}
.page_content .five_column_list li {
  background: #000;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  position: relative;
  margin-bottom: 15px;
  width: 19%;
}
.page_content .five_column_list li img:nth-child(1) {
  width: 100%;
  height: 100%;
}
.page_content .five_column_list li .thumb_over_ico {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-height: 129px;
}
.page_content .five_column_list li a img {
  opacity: .6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.page_content .five_column_list li a:hover {
  opacity: 1;
}
.page_content .five_column_list li a:hover img {
  opacity: 1;
}
.page_content .tab_newit {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 138px;
  left: 0;
  width: 96px;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.page_content .tab_newit:hover {
  opacity: 1;
}
.page_content .nlx_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page_content .nlx_list li {
  border-radius: 10px;
  position: relative;
  margin-bottom: 15px;
}
.page_content .nlx_list li .thumb_over_ico {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-height: 135px;
}
.page_content .nlx_list li.article {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  margin-bottom: 14px;
  padding: 6px;
  overflow: hidden;
}
.page_content .nlx_list li.article a img {
  opacity: .6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.page_content .nlx_list li.article a:hover {
  opacity: 1;
}
.page_content .nlx_list li.article a:hover img {
  opacity: 1;
}
.page_content .nlx_list li.article .thumb {
  background: #000;
  border-radius: 10px;
  width: 100%;
  height: 224px;
  overflow: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  position: relative;
}
.page_content .nlx_list li.article .thumb img {
  opacity: .6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
@media screen and (max-width: 980px) {
  .page_content .nlx_list li.article .thumb {
    height: 22.1vw;
  }
}
.page_content .nlx_list li.article .thumb_over_ico {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: .35;
  z-index: 1;
}
.page_content .nlx_list li.article .txt_box {
  width: 100%;
  min-height: 224px;
  padding: 12px 0 0;
  position: relative;
  z-index: 1;
}
.page_content .nlx_list li.article .title {
  border-top: solid 1px #ccc;
  font-size: 17px;
  padding-top: 12px;
  line-height: 1.64;
}
.page_content .nlx_list li.article .detail {
  font-size: 11px;
  line-height: 1.8;
  margin-top: 3px;
}
.page_content .nlx_list li.article .category {
  font-size: 10px;
  text-align: center;
  margin-top: 5px;
}
.page_content .nlx_list li.article .category.orange {
  color: #eb6100;
}
.page_content .nlx_list li.article .category.blue {
  color: #3ebeef;
}
.page_content .nlx_list li.article .ico_image_news {
  display: block;
  margin: auto;
  width: auto;
  height: 45px;
  opacity: 1;
}
.page_content .nlx_list li.article .ico_box {
  position: absolute;
  left: 50%;
  bottom: -9px;
  margin: auto;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 200%;
}
@media screen and (max-width: 980px) {
  .page_content .nlx_list li.article .ico_box {
    margin-top: 3vw;
  }
}
.page_content.nit_page .nlx_list li .category {
  color: #eb6100;
}
.page_content .nit_top_box {
  margin: 16px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page_content .nit_top_left {
  border-radius: 10px;
  margin: 0 0 12px;
  width: 24.2%;
}
.page_content .nit_top_list01 {
  width: 74.5%;
}
.page_content .nit_top_list01 li {
  background: #000;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
  width: 32.5%;
}
.page_content .nit_top_list01 li a img {
  opacity: .6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.page_content .nit_top_list01 li a:hover {
  opacity: 1;
}
.page_content .nit_top_list01 li a:hover img {
  opacity: 1;
}
.page_content .nit_top_list02 li {
  background: #000;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
  width: 24%;
}
.page_content .nit_top_list02 li.article {
  max-width: 318px;
}
.page_content .nit_top_list02 li a img {
  opacity: .6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.page_content .nit_top_list02 li a:hover {
  opacity: 1;
}
.page_content .nit_top_list02 li a:hover img {
  opacity: 1;
}
.page_content .nlx_top_list {
  margin: 16px 0 0;
}
.page_content .nlx_top_list li {
  width: 24%;
}
.page_content .nlx_top_list li.article {
  max-width: 318px;
}
.page_content .nlx_top_list li.article .ico_box {
  bottom: -10px;
}
.page_content .nlx_top_list li.article:nth-child(4) a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  height: 100%;
}
.page_content .nlx_top_list li.article:nth-child(4) .title {
  border-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -8px;
}
.page_content .nlx_top_list li.article:nth-child(4) .txt_box {
  border-bottom: solid 1px #ccc;
  padding: 0 0 12px;
  margin-bottom: 12px;
}
.page_content .nlx_top_list li.article:nth-child(4) .ico_box {
  bottom: 12px;
}
.page_content .nlx_middle_list01 {
  margin: 0;
}
.page_content .nlx_middle_list01 li {
  position: relative;
  margin-bottom: 15px;
  width: 24%;
}
.page_content .nlx_middle_list01 li:nth-child(1) img, .page_content .nlx_middle_list01 li:nth-child(2) img {
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
}
.page_content .nlx_middle_list01 li:nth-child(3) {
  width: 49.5%;
}
.page_content .nlx_list_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page_content .nlx_middle_list02 {
  margin: 0;
  width: 49.5%;
}
.page_content .nlx_middle_list02 li {
  max-height: 482px;
  width: 49%;
}
.page_content .nlx_middle_list02 li.article {
  max-width: 318px;
}
.page_content .nlx_middle_list02 li.article:nth-child(1) {
  max-height: 236px;
  max-width: 484px;
  width: 100%;
}
.page_content .nlx_middle_list02 li.article:nth-child(1) a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.page_content .nlx_middle_list02 li.article:nth-child(1) .thumb {
  max-width: 224px;
}
.page_content .nlx_middle_list02 li.article:nth-child(1) .title {
  border-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
}
.page_content .nlx_middle_list02 li.article:nth-child(1) .txt_box {
  border-left: solid 1px #ccc;
  padding-top: 0;
  padding-left: 12px;
  margin-left: 12px;
  height: 100%;
}
.page_content .nlx_middle_list02 li.article:nth-child(1) .ico_box {
  bottom: 0;
}
.page_content .nlx_middle_list02 li.article:nth-child(3) a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  height: 100%;
}
.page_content .nlx_middle_list02 li.article:nth-child(3) .title {
  border-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
}
.page_content .nlx_middle_list02 li.article:nth-child(3) .txt_box {
  border-bottom: solid 1px #ccc;
  padding: 0 0 12px;
  margin-bottom: 12px;
}
.page_content .nlx_middle_list02 li.article:nth-child(3) .ico_box {
  bottom: 7px;
}
.page_content .nlx_middle_list03 {
  margin: 0;
  width: 49.5%;
}
.page_content .nlx_middle_list03 li {
  max-height: 482px;
  width: 49%;
}
.page_content .nlx_middle_list03 li.article {
  max-width: 318px;
}
.page_content .nlx_middle_list03 li.article:nth-child(2) a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  height: 100%;
}
.page_content .nlx_middle_list03 li.article:nth-child(2) .title {
  border-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.page_content .nlx_middle_list03 li.article:nth-child(2) .txt_box {
  border-bottom: solid 1px #ccc;
  padding: 0 0 12px;
  margin-bottom: 12px;
}
.page_content .nlx_middle_list03 li.article:nth-child(2) .ico_box {
  bottom: 7px;
}
.page_content .nlx_middle_list03 li.article:nth-child(3) {
  padding: 0;
  position: relative;
}
.page_content .nlx_middle_list03 li.article:nth-child(3) .thumb {
  height: 239px;
  max-height: 239px;
}
.page_content .nlx_middle_list03 li.article:nth-child(3) .thumb_over_ico {
  top: 22px;
  bottom: auto;
  max-height: 144px;
}
.page_content .nlx_middle_list03 li.article:nth-child(3) a:hover .title {
  opacity: 1;
}
.page_content .nlx_middle_list03 li.article:nth-child(3) .txt_box {
  padding: 0 20px 10px;
  position: absolute;
  bottom: 5px;
  height: auto;
  min-height: auto;
}
.page_content .nlx_middle_list03 li.article:nth-child(3) .txt_box .title {
  border-top: 0;
  color: #fff;
  opacity: .6;
}
.page_content .nlx_middle_list03 li.article:nth-child(3) .txt_box .detail, .page_content .nlx_middle_list03 li.article:nth-child(3) .txt_box .ico_box {
  display: none;
}
.page_content .nlx_bottom_list {
  margin: 0;
}
.page_content .nlx_bottom_list li {
  position: relative;
  margin-bottom: 15px;
  width: 24%;
}
.page_content .nlx_bottom_list li:nth-child(1) img {
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
}
.page_content .nlx_bottom_list li:nth-child(2) {
  width: 74.5%;
}
.page_content .nlx_bottom_list .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  width: 74.5%;
}
.page_content .nlx_bottom_list .nav_list .item {
  background: #000;
  border-radius: 10px;
  border: solid 1px #fff;
  max-width: 236px;
  margin: 0 0 10px;
  width: 33%;
  height: 72px;
  line-height: 72px;
  text-align: center;
}
.page_content .nlx_bottom_list .nav_list .item a {
  color: #3ebeef;
  display: block;
  width: 100%;
  height: 100%;
}
.page_content.nit_page .nav_list .item a {
  color: #eb6100;
}
.page_content .recruit_top_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 178px;
}
@media screen and (max-width: 980px) {
  .page_content .recruit_top_list {
    padding: 0 10px;
    margin-top: 0;
  }
  .page_content .recruit_top_list .page_top {
    padding: 0;
  }
  .page_content .recruit_top_list li.list02, .page_content .recruit_top_list li.list04 {
    margin-left: 1% !important;
  }
  .page_content .recruit_top_list li.list03 {
    margin-left: 0;
  }
}
.page_content .recruit_top_list li {
  position: relative;
}
.page_content .recruit_top_list li.list01, .page_content .recruit_top_list li.list02 {
  margin-bottom: 20px;
}
.page_content .recruit_top_list li.list03 {
  margin-left: auto;
}
.page_content .recruit_top_list li.list01, .page_content .recruit_top_list li.list04 {
  max-width: 647px;
  width: 66%;
}
.page_content .recruit_top_list li.list02, .page_content .recruit_top_list li.list04 {
  margin-left: 21px;
}
.page_content .recruit_top_list li.list02, .page_content .recruit_top_list li.list03 {
  background: #000;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  max-width: 315px;
  width: 32.2%;
}
.page_content .recruit_top_list li.list02 a img, .page_content .recruit_top_list li.list03 a img {
  border-radius: 10px;
  opacity: .6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.page_content .recruit_top_list li.list02 a:hover, .page_content .recruit_top_list li.list03 a:hover {
  opacity: 1;
}
.page_content .recruit_top_list li.list02 a:hover img, .page_content .recruit_top_list li.list03 a:hover img {
  opacity: 1;
}
.page_content .recruit_top_list li .thumb_over_ico {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-height: 193px;
}
.page_content .top_image {
  margin: 0 0 0 auto;
  max-width: 736px;
}
.page_content .content_box {
  background: #fff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 7px 7px 0;
  max-width: 1052px;
  margin: 0 auto 0 0;
}
.page_content .tab_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page_content .tab_list li {
  list-style: none;
}
.page_content .tab_list li + li {
  margin-left: 10px;
}
.page_content .tab_list li.active a {
  background: #EA609E;
}

.page_content .ir-color li.active div {
  background: #01348b;
}

.page_content .tab_list a {
  background: #000;
  border: solid 1px #fff;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 17px;
  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: 238px;
  height: 55px;
}
.page_content .tab_list div {
  background: #000;
  border: solid 1px #fff;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 17px;
  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: 238px;
  height: 55px;
}
.page_content .content {
  margin: 0 0 0 auto;
  max-width: 865px;
}
.page_content .content.normal_page {
  padding-bottom: 148px;
}
.page_content .content.recruit_page {
  padding-bottom: 71px;
}
.page_content .content figure {
  margin: auto;
}
.page_content .content figcaption {
  color: #000;
  font-size: 15px;
  text-align: left;
  margin: 12px 0 10px;
}
.page_content .content figcaption strong {
  font-size: 26px;
  vertical-align: -5px;
}
.page_content .content h2 {
  margin: 120px 0;
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  padding: 26px 0 26px 123px;
  position: relative;
}
.page_content .content h2::before {
  background: url(../img/lower_title_border01.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 70px;
  height: 100%;
}
.page_content .content h3 {
  margin: 118px 0 35px;
  font-size: 26px;
  padding: 15px 0 15px 95px;
  position: relative;
}
.page_content .content h3::before {
  background: url(../img/lower_title_border01.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 100%;
}
.page_content .content h4 {
  margin: 30px 0 20px;
  font-size: 24px;
}
.page_content .content h5 {
  margin: 24px 0 16px;
  font-size: 20px;
}
.page_content .content p {
  font-size: 16px;
  font-weight: normal;
  margin: 20px 10px 20px 0;
  text-align: justify; /* 両端揃え */
  text-justify: inter-ideograph; /* 両端揃えの種類 */
}
.page_content .content p.has-small-font-size {
  font-size: 13px;
}
.page_content .content .btn {
  background: #232323;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  color: #fff;
  display: block;
  font-size: 14px;
  letter-spacing: .1em;
  margin: auto;
  width: 254px;
  height: 40px;
  line-height: 40px;
  padding-left: 26px;
  position: relative;
}
.page_content .content .btn span {
  position: relative;
  z-index: 1;
}
.page_content .content .btn::before {
  background: -webkit-gradient(linear, left top, right top, from(#000), to(#fff));
  background: -webkit-linear-gradient(left, #000, #fff);
  background: -o-linear-gradient(left, #000, #fff);
  background: linear-gradient(to right, #000, #fff);
  border-radius: 10px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
}
.page_content .content .btn::after {
  background: url(../img/ico_link01.png) no-repeat;
  background-size: 100%;
  border-radius: 10px;
  content: "";
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 5px;
}
.page_content .content .tab00 p {
  font-weight: bold;
}
.page_content .content .p_big {
  font-size: 24px;
}
.page_content .content .p_middle {
  font-size: 20px;
  font-weight: bold;
  line-height: 2.2;
}
.page_content .content .company_table {
  margin-top: 46px;
}
.page_content .content .company_table td:nth-child(1) {
  width: 100px;
}
.page_content .content .company_table th, .page_content .content .company_table td {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 32px;
}
.page_content .content .normal_table {
  margin-top: 46px;
}
.page_content .content .normal_table td:nth-child(1) {
  width: 60px;
}
.page_content .content .normal_table th, .page_content .content .normal_table td {
  font-size: 16px;
}
.page_content .content .team_member {
  border-left: solid 4px #000;
  padding: 18px 0 18px 38px;
  margin-top: 120px;
}
.page_content .content .team_member .lead {
  font-size: 16px;
  display: block;
  padding-bottom: 30px;
}
.page_content .content .team_member .english {
  font-size: 16px;
  padding-left: 34px;
}
.page_content .content .title_under {
  border-bottom: solid 1px #000;
  padding-bottom: 27px;
  margin: 75px 0 27px;
}
.page_content .content .person_photo {
  margin: 0 auto 0 0;
  max-width: 314px;
}
.page_content .content .link_btn {
  margin-top: 35px;
}
.page_content .content .person_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 90px;
}
.page_content .content .person_box .txt_box {
  max-width: 441px;
}
.page_content .content .person_box .txt_box h3 {
  margin: 0 0 47px;
}
.page_content .content .person_box .txt_box p {
  margin-bottom: 47px;
}
.page_content .content .person_box .img_box {
  max-width: 800px;
}
.page_content .content .person_box .btn_contact {
  display: block;
  margin-top: 35px;
  max-width: 441px;
}
.page_content .content .tab_ttl {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  margin: 55px 0;
}
.page_content .content .tab_ttl span {
  background: #fff;
  display: inline-block;
  padding-right: 18px;
  position: relative;
  z-index: 1;
}
.page_content .content .tab_ttl::before {
  background: #000;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 3px;
}
.page_content .content .require_list {
  border-bottom: solid 3px #000;
}
.page_content .content .require_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding-left: 140px;
  margin-bottom: 45px;
  min-height: 90px;
}
.page_content .content .require_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 90px;
  height: 90px;
}
.page_content .content .require_list li.mid::before {
  background: url(../img/ico_recruit_mid01.png) no-repeat;
  background-size: 100%;
}
.page_content .content .require_list li.new::before {
  background: url(../img/ico_recruit_new01.png) no-repeat;
  background-size: 100%;
}
.page_content .content .require_list li .require_ttl {
  font-size: 24px;
  font-weight: normal;
  margin: 0;
  line-height: 1.3;
}
.page_content .content .require_list li p {
  font-size: 14px;
  margin: 0;
}
.page_content .content .recruit_box {
  max-width: 510px;
  margin: 60px auto 0;
}
.page_content .content .recruit_box .lead {
  font-size: 20px;
  margin-bottom: 24px;
}
.page_content .content .recruit_box .img_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page_content .content .recruit_box .img_box .bnr_change {
  width: 382px;
  height: 48px;
}
.page_content .content .recruit_box .img_box .ico_facebook {
  margin-left: 48px;
  width: 48px;
  height: 48px;
}
.page_content .content .ir_news_box {
  border-top: solid 3px #000;
  border-bottom: solid 3px #000;
  padding: 80px 0 0;
}
.page_content .content .ir_news_box .btn {
  text-align: center;
  padding-left: 0;
  margin-top: 80px;
  margin-bottom: -20px;
}
@media screen and (max-width: 980px) {
  .page_content .page_top {
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .page_content .top_ttl_image {
    width: 100%;
  }
  .page_content .top_ttl_image.three_column {
    width: 100%;
  }
  .page_content .top_ttl_image.five_column {
    width: 100%;
  }
  .page_content .top_ttl_image.nlx_top {
    width: 50%;
  }
  .page_content .top_image {
    width: 85%;
  }
  .page_content .two_column_list {
    display: block;
  }
  .page_content .two_column_list li {
    width: 100%;
  }
  .page_content .three_column_list {
    margin: 15px 0 3px;
  }
  .page_content .three_column_list li {
    margin-bottom: 12px;
    width: 49%;
  }
  .page_content .three_column_list li.two_column {
    display: block;
    padding: 8px;
    width: 49%;
  }
  .page_content .three_column_list li.two_column img {
    width: 100%;
    height: 41vw;
  }
  .page_content .three_column_list li .thumb_over_ico {
    max-height: 96px;
  }
  .page_content .four_column_list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 15px 0 3px;
  }
  .page_content .four_column_list li {
    margin-bottom: 12px;
    max-height: initial;
    width: 49%;
  }
  .page_content .four_column_list li .thumb_over_ico {
    min-height: 96px;
    max-height: initial;
    height: 63%;
  }
  .page_content .five_column_list {
    margin: 15px 0 3px;
  }
  .page_content .five_column_list li {
    margin-bottom: 12px;
    width: 49%;
  }
  .page_content .five_column_list li .thumb_over_ico {
    min-height: 96px;
    max-height: initial;
    height: 63%;
  }
  .page_content .tab_newit {
    top: 14vw;
    width: 54px;
  }
  .page_content .nlx_list li {
    position: relative;
    margin-bottom: 7px;
  }
  .page_content .nlx_list li.article {
    margin-bottom: 7px;
    padding: 4px;
  }
  .page_content .nlx_list li.article .thumb {
    height: 42vw;
  }
  .page_content .nlx_list li.article .txt_box {
    padding: 0;
    min-height: 46vw;
    position: relative;
  }
  .page_content .nlx_list li.article .title {
    font-size: 13px;
    padding-top: 6px;
  }
  .page_content .nlx_list li.article .detail {
    font-size: 10px;
    line-height: 1.3;
    margin-top: 5px;
  }
  .page_content .nlx_list li.article .ico_box {
    margin-top: 1vw;
    bottom: 0;
  }
  .page_content .nlx_list li.article .ico_image_news {
    height: 30px;
  }
  .page_content .nlx_list li.article .category {
    margin-top: 0;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
  .page_content .nit_top_box {
    margin: 6px 0 0;
  }
  .page_content .nit_top_left {
    margin: 0 0 6px;
    width: 49%;
  }
  .page_content .nit_top_list01 {
    width: 49%;
  }
  .page_content .nit_top_list01 li {
    margin-bottom: 6px;
    width: 100%;
  }
  .page_content .nit_top_list01 li .thumb_over_ico {
    min-height: 96px;
    max-height: initial;
    height: 63%;
  }
  .page_content .nit_top_list01 li:nth-child(1) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .page_content .nit_top_list01 li:nth-child(2) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .page_content .nit_top_list01 li:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .page_content .nit_top_list01 li:nth-child(4) {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .page_content .nit_top_list01 li:nth-child(5) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .page_content .nit_top_list01 li:nth-child(6) {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .page_content .nit_top_list02 li {
    margin-bottom: 6px;
    width: 49%;
  }
  .page_content .nit_top_list02 li.article {
    max-width: 318px;
  }
  .page_content .nit_top_list02 li .thumb_over_ico {
    min-height: 96px;
    max-height: initial;
    height: 63%;
  }
  .page_content .nlx_top_list {
    margin: 10px 0 0;
  }
  .page_content .nlx_top_list li {
    width: 49%;
  }
  .page_content .nlx_top_list li.article:nth-child(3) .ico_box {
    bottom: 0;
  }
  .page_content .nlx_top_list li.article:nth-child(4) a {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .page_content .nlx_top_list li.article:nth-child(4) .title {
    border-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
  }
  .page_content .nlx_top_list li.article:nth-child(4) .txt_head span {
    top: 0;
  }
  .page_content .nlx_top_list li.article:nth-child(4) .txt_box {
    border-bottom: solid 1px #ccc;
    padding: 0 0 12px;
    margin-bottom: 12px;
    min-height: 45vw;
  }
  .page_content .nlx_top_list li.article:nth-child(4) .ico_box {
    bottom: 0;
  }
  .page_content .nlx_middle_list01 li {
    margin-bottom: 7px;
  }
  .page_content .nlx_middle_list01 li:nth-child(1), .page_content .nlx_middle_list01 li:nth-child(2) {
    display: none;
  }
  .page_content .nlx_middle_list01 li:nth-child(3) {
    width: 100%;
  }
  .page_content .nlx_list_box {
    display: block;
  }
  .page_content .nlx_middle_list02 {
    width: 100%;
  }
  .page_content .nlx_middle_list02 li {
    width: 49%;
  }
  .page_content .nlx_middle_list02 li.article {
    max-width: 318px;
  }
  .page_content .nlx_middle_list02 li.article:nth-child(1) {
    max-height: 236px;
    max-width: 484px;
    width: 100%;
  }
  .page_content .nlx_middle_list02 li.article:nth-child(1) a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
  .page_content .nlx_middle_list02 li.article:nth-child(1) .txt_box {
    margin-left: 6px;
    min-height: 42vw;
    padding-left: 6px;
    width: 100%;
  }
  .page_content .nlx_middle_list02 li.article:nth-child(1) .ico_box {
    bottom: 0;
  }
  .page_content .nlx_middle_list02 li.article:nth-child(3) a {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .page_content .nlx_middle_list02 li.article:nth-child(3) .txt_head span {
    top: 0;
  }
  .page_content .nlx_middle_list02 li.article:nth-child(3) .ico_box {
    bottom: 0;
  }
  .page_content .nlx_middle_list03 {
    width: 100%;
  }
  .page_content .nlx_middle_list03 li.article:nth-child(2) .txt_head span {
    top: 0;
  }
  .page_content .nlx_middle_list03 li.article:nth-child(2) .title {
    margin-top: 0;
  }
  .page_content .nlx_middle_list03 li.article:nth-child(2) .ico_box {
    bottom: 0;
  }
  .page_content .nlx_middle_list03 li.article:nth-child(3) {
    height: 45vw;
  }
  .page_content .nlx_middle_list03 li.article:nth-child(3) .thumb {
    height: 45vw;
  }
  .page_content .nlx_middle_list03 li.article:nth-child(3) .thumb_over_ico {
  top: 0;
  bottom: auto;
  height: 70%;
  width: auto;
  }
  .page_content .nlx_middle_list03 li.article:nth-child(3) a:hover .title {
    opacity: 1;
  }
  .page_content .nlx_middle_list03 li.article:nth-child(3) .txt_box {
    padding: 0 20px 10px;
    position: absolute;
    bottom: 0;
    height: auto;
  }
  .page_content .nlx_middle_list03 li.article:nth-child(3) .txt_box .title {
    font-size: 13px;
    border-top: 0;
    color: #fff;
    opacity: 1;
  }
  .page_content .nlx_middle_list03 li.article:nth-child(3) .txt_box .detail, .page_content .nlx_middle_list03 li.article:nth-child(3) .txt_box .ico_box {
    display: none;
  }
  .page_content .nlx_bottom_list li {
    margin-bottom: 7px;
    width: 24%;
  }
  .page_content .nlx_bottom_list li:nth-child(1), .page_content .nlx_bottom_list li:nth-child(3) {
    display: none;
  }
  .page_content .nlx_bottom_list li:nth-child(2) {
    width: 100%;
  }
  .page_content .nlx_bottom_list .nav_list {
    width: 100%;
  }
  .page_content .nlx_bottom_list .nav_list .item {
    margin: 0 0 5px;
    width: 49%;
    height: 56px;
    line-height: 56px;
  }
  .page_content .nlx_bottom_list .nav_list .item.empty {
    display: none;
  }
  .page_content .recruit_top_list li.list01, .page_content .recruit_top_list li.list02, .page_content .recruit_top_list li.list03 {
    margin-bottom: 10px;
  }
  .page_content .recruit_top_list li.list01, .page_content .recruit_top_list li.list04 {
    max-width: 100%;
    width: 100%;
  }
  .page_content .recruit_top_list li.list02, .page_content .recruit_top_list li.list04 {
    margin-left: 0 !important;
  }
  .page_content .recruit_top_list li.list02, .page_content .recruit_top_list li.list03 {
    max-width: 100%;
    width: 49%;
  }
  .page_content .recruit_top_list li .thumb_over_ico {
    max-height: 63%;
  }
  .page_content .content_box {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 4px 4px 0;
    margin-right: 20px;
  }
  .page_content .tab_list {
    display: block;
  }
  .page_content .tab_list li + li {
    margin-left: 0;
    margin-top: 10px;
  }
  .page_content .tab_list a {
    font-size: 12px;
    width: 100%;
    height: 33px;
  }
  .page_content .content {
    overflow-x: hidden;
    width: 80%;
  }
  .page_content .content.normal_page {
    padding-bottom: 74px;
  }
  .page_content .content h2 {
    margin: 75px 0;
    font-size: 16px;
    padding: 10px 0 10px 45px;
    position: relative;
  }
  .page_content .content h2::before {
    width: 25px;
  }
  .page_content .content h3 {
    margin: 59px 0 18px;
    font-size: 15px;
    padding: 10px 0 10px 43px;
  }
  .page_content .content h3::before {
    width: 25px;
  }
  .page_content .content h4 {
    font-size: 14px;
  }
  .page_content .content h5 {
    font-size: 12px;
    line-height: 1.6;
  }
  .page_content .content p {
    font-size: 12px;
    margin: 17px 0;
  }
  .page_content .content p.has-small-font-size {
    font-size: 11px;
  }
  .page_content .content .tab00 p {
    font-size: 16px;
  }
  .page_content .content .p_big {
    font-size: 16px;
  }
  .page_content .content .p_middle {
    font-size: 16px;
    line-height: 2;
  }
  .page_content .content .table_image {
    overflow-x: scroll;
  }
  .page_content .content .table_image img {
    max-width: initial;
  }
  .page_content .content iframe {
    width: 100%;
    height: 287px;
  }
  .page_content .content .company_table {
    margin-top: 23px;
  }
  .page_content .content .company_table td:nth-child(1) {
    width: 75px;
  }
  .page_content .content .company_table th, .page_content .content .company_table td {
    font-size: 12px;
    padding-bottom: 24px;
  }
  .page_content .content .normal_table {
    margin-top: 13px;
  }
  .page_content .content .normal_table td:nth-child(1) {
    width: 60px;
  }
  .page_content .content .normal_table th, .page_content .content .normal_table td {
    font-size: 12px;
    padding-bottom: 12px;
  }
  .page_content .content .team_member {
    border-left: solid 2px #000;
    padding: 9px 0 9px 19px;
    margin-top: 60px;
  }
  .page_content .content .team_member .lead {
    font-size: 12px;
    padding-bottom: 15px;
  }
  .page_content .content .team_member .english {
    font-size: 12px;
    padding-left: 17px;
  }
  .page_content .content .title_under {
    padding-bottom: 13px;
    margin: 38px 0 13px;
  }
  .page_content .content .link_btn {
    margin-top: 18px;
  }
  .page_content .content .link_btn img {
    max-width: 100%;
  }
  .page_content .content .person_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 90px;
  }
  .page_content .content .person_box .txt_box {
    max-width: 25% !important;
  }
  .page_content .content .person_box .txt_box h3 {
    margin-right: -270%;
    margin-bottom: 24px;
  }
  .page_content .content .person_box .txt_box p {
    margin-bottom: 24px;
    margin-right: -50%;
  }
  .page_content .content .person_box .img_box {
    max-width: 53%;
  }
  .page_content .content .person_box .btn_contact {
    margin-top: 18px;
  }
  .page_content .content .tab_ttl {
    font-size: 12px;
    margin: 40px 0;
  }
  .page_content .content .tab_ttl span {
    padding-right: 2px;
  }
  .page_content .content .require_list li {
    padding-left: 61px;
    margin-bottom: 41px;
    min-height: 45px;
  }
  .page_content .content .require_list li::before {
    width: 45px;
    height: 45px;
  }
  .page_content .content .require_list li .require_ttl {
    font-size: 14px;
  }
  .page_content .content .require_list li p {
    font-size: 10px;
  }
  .page_content .content .recruit_box {
    margin: 46px auto 0;
  }
  .page_content .content .recruit_box .btn {
    width: 100%;
    max-width: 254px;
  }
  .page_content .content .recruit_box .lead {
    font-size: 20px;
    margin-bottom: 17px;
  }
  .page_content .content .recruit_box .img_box {
    display: block;
  }
  .page_content .content .recruit_box .img_box .bnr_change {
    display: block;
    margin: auto;
    width: 254px;
    height: auto;
  }
  .page_content .content .recruit_box .img_box .ico_facebook {
    display: block;
    margin: 12px auto 0;
    width: 30px;
    height: 30px;
  }
  .page_content .content .ir_news_box {
    padding: 40px 0 0;
  }
  .page_content .content .ir_news_box .btn {
    margin-top: 40px;
    max-width:164px;
    width: 100%;
	font-size:12px;
  }

	


}

.maincat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
}
.maincat > div {
  background: #000;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  position: relative;
  margin-bottom: 18px;
  max-width: 233px;
  width: 24%;
}
@media screen and (max-width: 980px) {
  .maincat > div {
    width: 24%;
  }
}
.maincat > div a {
  display: block;
  opacity: 1;
}
.maincat > div a:hover img {
  opacity: 1;
}
.maincat > div img {
  opacity: .6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.maincat > div .thumb_over_ico {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-height: 128px;
}
@media screen and (max-width: 768px) {
  .maincat {
    margin-top: 20px;
  }
  .maincat > div {
    border-radius: 10px;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
    position: relative;
    margin-bottom: 18px;
    max-width: 233px;
    width: 48%;
  }
  .maincat > div .thumb_over_ico {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-height: 190px;
    height: 54%;
  }
}

.keyword_search h3 {
  display: none;
}
.keyword_search div {
  position: relative;
}
.keyword_search input {
  border: solid 1px #c9c9c9;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  font-size: 16px;
  padding: 0 19px;
  outline: 0;
  width: 100%;
  height: 61px;
  line-height: 61px;
}
.keyword_search button {
  background: #fff;
  border: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  outline: 0;
  position: absolute;
  right: 0;
  top: 1px;
  width: 50px;
  height: 59px;
}
.keyword_search button span {
  display: none;
}
@media screen and (max-width: 768px) {
  .keyword_search input {
    font-size: 10px;
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
  }
  .keyword_search button {
    width: 30px;
    height: 29px;
  }
}

.hot_word {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
  position: relative;
  padding: 20px 0 20px 13px;
}
.hot_word::before {
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(transparent));
  background: -webkit-linear-gradient(left, #fff, transparent);
  background: -o-linear-gradient(left, #fff, transparent);
  background: linear-gradient(to right, #fff, transparent);
  border-radius: 10px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .15;
}
.hot_word h3 {
  border: solid 1px #333;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  padding: 24px 13px;
  margin-right: 22px;
}
.hot_word > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: calc(100% - 120px);
}
.hot_word .hotword {
  background: transparent;
  border: 0;
  font-size: 13px;
  outline: 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .hot_word {
    display: block;
    margin-top: 20px;
    padding: 0;
  }
  .hot_word h3 {
    font-size: 15px;
    text-align: center;
    margin-right: 0;
    padding: 10px 0;
  }
  .hot_word > div {
    margin-top: 18px;
    width: 100%;
  }
  .hot_word .hotword {
    font-size: 10px;
  }
}

#search-detail {
  margin-top: 70px;
}
#search-detail h5 {
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
#search-detail h5::before {
  background: url(../img/ico_grass01.png) no-repeat;
  background-size: 100%;
  content: "";
  position: absolute;
  left: 125px;
  top: 4px;
  bottom: 0;
  margin: auto;
  width: 63px;
  height: 63px;
}
#search-detail h5::after {
  background: #000;
  content: "";
  position: absolute;
  left: 188px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 188px);
  height: 1px;
}

#new-it-service-head p {
  font-size: 14px;
}

#NEW-ITnavi {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #NEW-ITnavi {
    margin-top: 15px;
  }
}

#nlx-box {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #nlx-box {
    margin-top: 20px;
  }
}

#new-it-service-g1 > div {
  border-radius: 10px;
  background-color: #000 !important;
  border: solid 2px #fff;
  color: #eb6100;
  font-size: 14px;
  float: left;
  padding: 7px 0 !important;
  text-align: center;
  width: 33%;
}
#new-it-service-g1 > div + div {
  margin-left: .5%;
}
#new-it-service-g1:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 768px) {
  #new-it-service-g1 > div {
    width: 49%;
  }
  #new-it-service-g1 > div + div {
    margin-left: 1%;
  }
  #new-it-service-g1 > div:nth-child(2n+1) {
    margin-left: 0;
  }
}

#new-it-service-g2 {
  margin-top: 16px;
}
#new-it-service-g2 > div {
  border-radius: 10px;
  background-color: #000 !important;
  border: solid 2px #fff;
  color: #eb6100;
  font-size: 14px;
  float: left;
  padding: 7px 0 !important;
  text-align: center;
  width: 24.2%;
}
#new-it-service-g2 > div + div {
  margin-left: 1%;
}
#new-it-service-g2:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 768px) {
  #new-it-service-g2 > div {
    width: 49%;
  }
  #new-it-service-g2 > div + div {
    margin-left: 1%;
  }
  #new-it-service-g2 > div:nth-child(2n+1) {
    margin-left: 0;
  }
}

#nlx-service > div {
  border-radius: 10px;
  background-color: #000 !important;
  border: solid 2px #fff;
  color: #eb6100;
  font-size: 14px;
  float: left;
  padding: 7px 0 !important;
  text-align: center;
  width: 24%;
}
#nlx-service > div + div {
  margin-left: 1%;
}
#nlx-service:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 768px) {
  #nlx-service > div {
    width: 49%;
  }
  #nlx-service > div + div {
    margin-left: 1%;
  }
  #nlx-service > div:nth-child(2n+1) {
    margin-left: 0;
  }
}

#nlx-hierarchy {
  margin-top: 16px;
}
#nlx-hierarchy > div {
  border-radius: 10px;
  background-color: #000 !important;
  border: solid 2px #fff;
  color: #3fbff0;
  font-size: 14px;
  float: left;
  padding: 7px 0 !important;
  text-align: center;
  width: 19%;
}
#nlx-hierarchy > div + div {
  margin-left: 1%;
}
#nlx-hierarchy:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 768px) {
  #nlx-hierarchy > div {
    width: 49%;
  }
  #nlx-hierarchy > div + div {
    margin-left: 1%;
  }
  #nlx-hierarchy > div:nth-child(2n+1) {
    margin-left: 0;
  }
}

#nlx-skill > div, #new-it-job > div {
  border-radius: 10px;
  background-color: #000 !important;
  border: solid 2px #fff;
  color: #3fbff0;
  font-size: 14px;
  float: left;
  padding: 7px 0 !important;
  text-align: center;
  width: 49.5%;
}
#nlx-skill > div + div, #new-it-job > div + div {
  margin-left: 1%;
}
#nlx-skill:after, #new-it-job:after {
  content: "";
  display: block;
  clear: both;
}

#new-it-job > div {
  color: #eb6100;
}

#results {
  margin-top: 24px;
}
#results h5 {
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
#results h5::after {
  background: #000;
  content: "";
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 100px);
  height: 1px;
}

#result-box {
  margin-top: 74px;
}
#result-box div a {
  background-color: #fff !important;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  font-size: 14px;
  float: left;
  padding: 7px !important;
  text-align: center;
  margin-bottom: 10px;
  overflow: hidden;
  width: 24%;
}
#result-box div a + a {
  margin-left: 1%;
}
#result-box div a:nth-child(4n+1) {
  margin-left: 0;
}
#result-box div a .ch-rect-top {
  font-size: 10px;
  border-bottom: solid 1px #000;
}
#result-box div a img {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
#result-box div a:hover {
  opacity: 1;
}
#result-box div a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
#result-box div .elementor-image {
  overflow: hidden;
}
#result-box div:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 768px) {
  #result-box {
    margin-top: 37px;
  }
  #result-box div a {
    font-size: 10px;
    margin-bottom: 5px;
    width: 49%;
  }
  #result-box div a + a {
    margin-left: 1%;
  }
  #result-box div a:nth-child(2n+1) {
    margin-left: 0;
  }
  #result-box div a .ch-rect-top {
    font-size: 10px;
  }
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt105 {
  margin-top: 105px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mt115 {
  margin-top: 115px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb105 {
  margin-bottom: 105px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb115 {
  margin-bottom: 115px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

@media screen and (max-width: 768px) {
  .mt5 {
    margin-top: 3px !important;
  }

  .mt10 {
    margin-top: 5px !important;
  }

  .mt15 {
    margin-top: 8px !important;
  }

  .mt20 {
    margin-top: 10px !important;
  }

  .mt25 {
    margin-top: 13px !important;
  }

  .mt30 {
    margin-top: 15px !important;
  }

  .mt35 {
    margin-top: 18px !important;
  }

  .mt40 {
    margin-top: 20px !important;
  }

  .mt45 {
    margin-top: 23px !important;
  }

  .mt50 {
    margin-top: 25px !important;
  }

  .mt55 {
    margin-top: 28px !important;
  }

  .mt60 {
    margin-top: 30px !important;
  }

  .mt65 {
    margin-top: 33px !important;
  }

  .mt70 {
    margin-top: 35px !important;
  }

  .mt75 {
    margin-top: 38px !important;
  }

  .mt80 {
    margin-top: 40px !important;
  }

  .mt85 {
    margin-top: 43px !important;
  }

  .mt90 {
    margin-top: 45px !important;
  }

  .mt95 {
    margin-top: 48px !important;
  }

  .mt100 {
    margin-top: 50px !important;
  }

  .mt105 {
    margin-top: 53px !important;
  }

  .mt110 {
    margin-top: 55px !important;
  }

  .mt115 {
    margin-top: 58px !important;
  }

  .mt120 {
    margin-top: 60px !important;
  }

  .mb5 {
    margin-bottom: 3px !important;
  }

  .mb10 {
    margin-bottom: 5px !important;
  }

  .mb15 {
    margin-bottom: 8px !important;
  }

  .mb20 {
    margin-bottom: 10px !important;
  }

  .mb25 {
    margin-bottom: 13px !important;
  }

  .mb30 {
    margin-bottom: 15px !important;
  }

  .mb35 {
    margin-bottom: 18px !important;
  }

  .mb40 {
    margin-bottom: 20px !important;
  }

  .mb45 {
    margin-bottom: 23px !important;
  }

  .mb50 {
    margin-bottom: 25px !important;
  }

  .mb55 {
    margin-bottom: 28px !important;
  }

  .mb60 {
    margin-bottom: 30px !important;
  }

  .mb65 {
    margin-bottom: 33px !important;
  }

  .mb70 {
    margin-bottom: 35px !important;
  }

  .mb75 {
    margin-bottom: 38px !important;
  }

  .mb80 {
    margin-bottom: 40px !important;
  }

  .mb85 {
    margin-bottom: 43px !important;
  }

  .mb90 {
    margin-bottom: 45px !important;
  }

  .mb95 {
    margin-bottom: 48px !important;
  }

  .mb100 {
    margin-bottom: 50px !important;
  }

  .mb105 {
    margin-bottom: 53px !important;
  }

  .mb110 {
    margin-bottom: 55px !important;
  }

  .mb115 {
    margin-bottom: 58px !important;
  }

  .mb120 {
    margin-bottom: 60px !important;
  }
}


.page_content .content p.esg_content{
    font-size: 30px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
}

@media screen and (max-width: 768px) {
.page_content .content p.esg_content{
    font-size: 16px;
}
}
/*# sourceMappingURL=style.css.map */