@charset "UTF-8";
/*====================================
style
=====================================*/
html {
  font-size: 10px;
}

body {
  /*font-family: 'Share Tech', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  font-family: "Noto Sans Japanese";
  background: #ffff;
  color: #000000;
}

a {
  text-decoration: none;
  color: #000000;
}

.wrap {
  position: relative;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/*====================================
Header
=====================================*/
.header {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 991;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header_logo {
  float: left;
  margin-top: 17px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header_logo img {
  display: none;
}

.header_menu {
  float: right;
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header_menu a {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333333;
}

.header_menu .item {
  margin-left: 40px;
  float: left;
}

.header_menu .item > a {
  padding: 27px 0;
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header_menu .item > a:after {
  height: 3px;
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: #1c3c8e;
  position: absolute;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition-duration: .6s;
  -o-transition-duration: .6s;
  transition-duration: .6s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-property: transform,-webkit-transform;
}

.header_menu .item > a:hover {
  color: #1c3c8e;
}

.header_menu .item > a:hover:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.header_menu .item.has_submenu {
  position: relative;
}

.header_menu .item.has_submenu:hover > a {
  color: #1c3c8e;
}

.header_menu .item.has_submenu:hover > a:after {
  left: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header_menu .item.has_submenu:hover > a:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.header_submenu {
  position: absolute;
  left: -68px;
}

.header_submenu li > a {
  padding: 20px 0;
  text-align: center;
  display: block;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.header_submenu li > a:hover {
  color: #1c3c8e;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  background-color: #f3f5f9;
}

.header.default {
  background-color: transparent;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header.default h1 {
  margin-top: 25px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header.default .header_logo_wht {
  display: block !important;
}

.header.default .header_menu {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.header.default .header_menu .item > a {
  padding: 35px 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header.fixed .header_logo_bl {
  display: block !important;
}

.header_btn {
  display: none;
}

/*====================================
footer
=====================================*/
.footer {
  background: #122659;
}

.footer_mv {
  line-height: 0;
}

.footer_mv img {
  width: 100%;
}

.footer_menu {
  text-align: center;
  background: #1c3c8e;
  padding: 37px 0;
}

.footer_menu ul {
  display: inline-block;
  margin: 0 auto;
}

.footer_menu ul li {
  float: left;
  margin-right: 45px;
  position: relative;
}

.footer_menu ul li:before {
  content: '';
  width: 6px;
  height: 11px;
  background: url("../img/icn-arrow-menu.png");
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 3px;
}

.footer_menu ul li:last-child {
  margin-right: 0;
}

.footer_menu ul li a {
  font-weight: 500;
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 1px;
  position: relative;
  margin-left: 15px;
  display: inline-block;
}

.footer_menu ul li a:hover {
  text-decoration: underline;
}

.footer_copyright p {
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
  padding: 20px;
  text-transform: uppercase;
}

.bgOverlay {
  display: none;
  font-size: 0;
  color: transparent;
  text-indent: -9999999px;
  overflow: hidden;
}

/** Responsive **/
@media only screen and (max-width: 1024px) and (min-width: 769px) {
  .container {
    padding: 0 15px;
  }
  .header_menu .item {
    margin-left: 25px;
  }
  .header_menu a {
    font-size: 1.5rem;
  }
}

@media only screen and (min-width: 769px) {
  .header_submenu {
    position: absolute;
    pointer-events: none;
  }
  .header_submenu_content {
    opacity: 0;
    -webkit-transition-duration: .6s;
    -o-transition-duration: .6s;
    transition-duration: .6s;
    -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 10;
  }
  .header_submenu.is-show {
    opacity: 1;
    pointer-events: auto;
  }
  .header_submenu:after {
    width: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
    background-color: #fff;
    opacity: 0;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition-duration: .6s;
    -o-transition-duration: .6s;
    transition-duration: .6s;
    -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transition-property: opacity,-webkit-transform;
    transition-property: opacity,-webkit-transform;
    -o-transition-property: opacity,transform;
    transition-property: opacity,transform;
    transition-property: opacity,transform,-webkit-transform;
    z-index: 1;
  }
  .header_submenu.is-show:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .header_submenu_in {
    width: 100%;
    position: relative;
  }
  .header_submenu.is-show .header_submenu_content {
    opacity: 1;
  }
  .header_submenu li > a {
    width: 200px;
  }
}

.wrapper.not-front {
  padding-top: 70px;
}

.wrapper.not-front .footer {
  margin-top: 85px;
}

/*====================================
MV Company
=====================================*/
.mvcompany {
  padding: 95px 0;
  background: url(../img/company/bg-mvcompany_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: relative;
}

.mvcompany h1 {
  font-size: 4rem;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}

.mvcompany-txt {
  position: absolute;
  width: 859px;
  max-width: 67%;
  right: 0;
  bottom: 0;
  opacity: 0.15;
}

/*====================================
Breadcrumb
=====================================*/
.breadcrumb {
  background: #f3f5f9;
  width: 100%;
  display: inline-block;
}

.breadcrumb ul li {
  font-size: 1.2rem;
  color: #333333;
  float: left;
  padding: 14px 0 14px 15px;
}

.breadcrumb ul li:after {
  content: '/';
  padding-left: 15px;
}

.breadcrumb ul li:first-child {
  padding-left: 0;
}

.breadcrumb ul li:last-child:after {
  display: none;
}

.breadcrumb ul li a {
  color: #8c8c8c;
}

.breadcrumb ul li a:hover {
  color: #1c3c8e;
  text-decoration: underline;
}

/*====================================
Main title
=====================================*/
h2.ttl {
  color: #333333;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  margin-top: 90px;
  margin-bottom: 50px;
  padding-bottom: 25px;
  position: relative;
}

h2.ttl:after {
  width: 35px;
  height: 3px;
  background: #1c3c8e;
  bottom: 0;
  left: 50%;
  margin-left: -17.5px;
  content: '';
  position: absolute;
}

h3.ttl {
  color: #333333;
  font-size: 2.8rem;
  font-weight: bold;
  padding-left: 15px;
  border-left: 3px solid #1c3c8e;
  line-height: calc(40/28);
  margin-bottom: 20px;
}

/*====================================
news
=====================================*/
.news {
  padding: 80px 0;
}

.news h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  font-family: "Noto Sans Japanese", sans-serif;
  text-align: center;
  line-height: 1;
  margin-bottom: 45px;
}

.news h2 span {
  color: #1c3b8c;
  font-weight: 100;
  letter-spacing: 1px;
  display: block;
  margin-top: 15px;
  font-size: 1.8rem;
  font-style: italic;
}

.news_content {
  border: 1px solid #eaeeef;
  padding: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.news_left {
  width: 33.5%;
  background: #d9ddde;
}

.news_left ul li {
  background: #d9ddde;
  margin-bottom: 1px;
  font-size: 1.4rem;
  color: #ffffff;
  text-align: center;
  padding: 15px 0;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.news_left ul li:last-child {
  margin-bottom: 0;
}

.news_left ul li:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  width: 0;
  background: #1c3c8e;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
  opacity: 0;
}

.news_left ul li:after {
  left: 80%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(28, 60, 142, 0);
  border-left-color: #1c3c8e;
  border-width: 10px;
  margin-top: -10px;
  opacity: 0;
}

.news_left ul li.current,
.news_left ul li:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news_left ul li.current:before,
.news_left ul li:hover:before {
  left: 0%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  opacity: 1;
}

.news_left ul li.current span,
.news_left ul li:hover span {
  position: relative;
  z-index: 9;
}

.news_left ul li.current:after {
  left: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.news_right {
  width: 67.5%;
  padding: 30px 20px 10px 30px;
}

.news_right ul li {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #333333;
  margin-bottom: 20px;
}

.news_right ul li:last-child {
  margin-bottom: 0;
}

.news_right ul li a {
  display: block;
}

.news_right ul li a:hover {
  text-decoration: underline;
}

.news_right ul li .txt01 {
  color: #1c3c8e;
  width: 110px;
  font-weight: bold;
  float: left;
}

.news_right ul li .two-file {
  height: 22px;
}

.news_right ul li .txt02 {
  width: calc(100% - 110px);
  display: table;
  position: relative;
}

.news_right ul li .txt02:after {
  content: '';
  width: 16px;
  height: 20px;
  background: url(../img/icn-pdf.png);
  background-repeat: no-repeat;
  position: absolute;
  margin-left: 5px;
}

.news_right ul li .txt02.txt02-no:after {
  display: none;
}

.news_right ul li a:hover .txt01 {
  text-decoration: none;
}

.news_tab_content {
  display: none;
}

.news_tab_content.current {
  display: block;
}

.news_more {
  text-align: right;
  width: 100%;
  margin-top: 15px;
}

.news_more a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #1c3c8e;
  position: relative;
  padding-right: 15px;
  padding-bottom: 8px;
  overflow: hidden;
  display: inline-block;
}

.news_more a:before {
  content: '';
  height: 2px;
  bottom: 0;
  width: 100%;
  left: 0;
  background: #1c3c8e;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
}

.news_more a:after {
  background: url("../img/icn-arrow-news.png");
  background-repeat: no-repeat;
  width: 13px;
  height: 7px;
  content: '';
  right: 0;
  top: 6px;
  position: absolute;
}

.news_more a:hover:before {
  -webkit-animation-name: goBack;
  animation-name: goBack;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: .4s;
  animation-duration: .4s;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

@-webkit-keyframes goBack {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  49.9% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
}

@keyframes goBack {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  49.9% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
}

@media only screen and (max-width: 768px) {
  body.no-scroll {
    margin: 0;
    height: 100%;
    overflow: hidden;
  }
  .container {
    padding: 0 10px;
  }
  .not-front .container {
    padding: 0 15px;
  }
  .header {
    min-height: 50px;
  }
  .header .container {
    width: 100%;
    padding: 0;
  }
  .header_logo {
    margin-left: 10px;
    margin-top: 12px;
    width: calc(100% - 50px);
    z-index: 991;
  }
  .header_logo img {
    width: 165px;
  }
  .header.default h1 {
    margin-top: 10px;
  }
  .header.default h1 a {
    max-width: 44%;
  }
  .header_btn {
    display: block;
    position: fixed;
    top: 12.5px;
    right: 17px;
    z-index: 992;
  }
  .header_btn_icon {
    position: relative;
    left: 50%;
    width: 25px;
    height: 14px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  .header_btn_icon span {
    display: block;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
  .header_btn_icon span:nth-child(1) {
    top: 0;
  }
  .header_btn_icon span:nth-child(2) {
    top: 50%;
    margin-top: -1px;
  }
  .header_btn_icon span:nth-child(3) {
    bottom: 0;
  }
  .header_btn_text {
    color: #fff;
    font-size: 0.9rem;
    margin-top: 8px;
    display: block;
    text-align: center;
  }
  .header_btn_text .is-hide {
    display: none;
  }
  .header_btn.is-open .header_btn_icon span:nth-child(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
    -ms-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
  }
  .header_btn.is-open .header_btn_icon span:nth-child(2) {
    left: 50%;
    opacity: 0;
    -webkit-animation: active-menu-bar02 .8s forwards;
    animation: active-menu-bar02 .8s forwards;
  }
  .header_btn.is-open .header_btn_icon span:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
    -ms-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
  }
  .header_btn.is-open .header_btn_text .is-display {
    display: none;
  }
  .header_btn.is-open .header_btn_text .is-hide {
    display: block;
  }
  .header.fixed .header_btn_icon span {
    background-color: #000;
  }
  .header.fixed .header_btn_text {
    color: #000;
  }
  .header_menu {
    width: 100%;
    overflow: hidden;
    -webkit-transition: max-height .3s ease 0s;
    -o-transition: max-height .3s ease 0s;
    transition: max-height .3s ease 0s;
    max-height: 0;
  }
  .header.is-menu .header_menu {
    position: fixed;
    top: 50px;
    background: rgba(28, 60, 142, 0.95);
    -webkit-box-shadow: 0px 3px 10px 0px rgba(51, 51, 51, 0.5);
    box-shadow: 0px 3px 10px 0px rgba(51, 51, 51, 0.5);
    -webkit-transition: max-height .3s ease 0s;
    -o-transition: max-height .3s ease 0s;
    transition: max-height .3s ease 0s;
    max-height: 500px;
  }
  .header_menu .item {
    margin-left: 0;
    float: none;
    width: 100%;
    border-bottom: 1px solid #778bbc;
  }
  .header_menu .item:last-child {
    border-bottom: 0;
  }
  .header_menu .item > a {
    font-size: 1.6rem;
    color: #fff !important;
    width: calc(100% - 60px);
    padding: 20px 20px 20px 38px;
    position: relative;
  }
  .header_menu .item > a:before {
    position: absolute;
    background: transparent;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    width: 8px;
    height: 8px;
    top: 50%;
    content: "";
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 18px;
  }
  .header_menu .item > a:hover,
  .header_menu .item.has_submenu:hover > a {
    color: #ffffff;
  }
  /*.header_menu_content {
    position: relative;
    overflow-y: scroll;
    height: 560px;
  }*/
  .header.default .header_menu .item > a {
    padding: 20px 20px 20px 38px;
  }
  .header_submenu {
    display: block !important;
    position: relative;
    width: 100%;
    left: 0;
    text-align: left;
    background: transparent;
    padding-bottom: 15px;
  }
  .header_submenu li.item_sub > a {
    font-size: 1.5rem;
    padding: 15px 20px 15px 50px;
    text-align: left;
    display: block;
    background-color: transparent;
    color: #fff !important;
    position: relative;
  }
  .header_submenu li.item_sub > a:before {
    position: absolute;
    background: transparent;
    border-top: 1px solid #fff;
    width: 8px;
    height: 8px;
    top: 50%;
    content: "";
    left: 36px;
  }
  /* Footer */
  .footer_menu {
    padding: 0;
  }
  .footer_menu .container {
    padding: 0;
  }
  .footer_menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border: 1px solid #5a72ab;
  }
  .footer_menu ul li {
    margin-right: 0;
    width: calc(50% - 0.5px);
    border-bottom: 1px solid #5a72ab;
    text-align: left;
  }
  .footer_menu ul li:nth-child(5) {
    border-bottom: 0px solid #5a72ab;
  }
  .footer_menu ul li:nth-child(2n+1) {
    border-right: 1px solid #5a72ab;
  }
  .footer_menu ul li a {
    padding: 14px 0;
    font-size: 1.2rem;
    line-height: 1.5;
    padding-left: 10%;
    display: block;
  }
  .footer_menu ul li:before {
    display: none;
  }
  .footer_menu ul li a:before {
    background: transparent;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    width: 5px;
    height: 5px;
    top: 50%;
    margin-top: -2.5px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 0;
    position: absolute;
    content: '';
  }
  .footer_menu ul li a:after {
    content: none;
  }
  .footer_copyright p {
    font-size: 0.9rem;
    line-height: 1.11111112;
    padding: 10px;
  }
  .bgOverlay {
    z-index: -1;
  }
  .bgOverlay.active {
    position: fixed;
    display: block;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 88;
  }
  .wrapper.not-front {
    padding-top: 50px;
  }
  .wrapper.not-front .footer {
    margin-top: 40px;
  }
  /*====================================
	MV Company
	=====================================*/
  .mvcompany {
    padding: 50px 0;
    background: url(../img/company/bg-mvcompany_sp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    position: relative;
  }
  .mvcompany h1 {
    font-size: 1.8rem;
  }
  .mvcompany-txt {
    position: absolute;
    width: 190px;
    max-width: 60%;
    right: 0;
    bottom: 0;
    opacity: 0.3;
  }
  /*====================================
	Breadcrumb
	=====================================*/
  .breadcrumb ul li {
    font-size: 1rem;
    padding: 8px 0 8px 10px;
  }
  .breadcrumb ul li:after {
    content: '/';
    padding-left: 10px;
  }
  .breadcrumb ul li:first-child {
    padding-left: 10px;
  }
  /*====================================
	Main title
	=====================================*/
  h2.ttl {
    font-size: 2.3rem;
    margin-top: 40px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
  }
  h2.ttl:after {
    width: 22px;
    height: 3px;
    background: #1c3c8e;
    bottom: 0;
    left: 50%;
    margin-left: -11px;
    content: '';
    position: absolute;
  }
  h3.ttl {
    font-size: 1.6rem;
  }
  /*====================================
	news
	=====================================*/
  .news {
    padding: 40px 0;
  }
  .news h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .news h2 span {
    font-size: 1rem;
    font-style: italic;
    font-weight: 100;
    margin-top: 7px;
  }
  .news_content {
    display: inline-block;
    width: 100%;
    border: none;
  }
  .news_left {
    width: 100%;
    background: #fff;
  }
  .news_right {
    width: 100%;
    padding: 30px 20px 10px 30px;
  }
  .news_left ul {
    display: -webkit-box;
    overflow-x: scroll;
    padding-bottom: 10px;
  }
  .news_left ul li {
    width: 45%;
    font-size: 1.1rem;
    line-height: 1.363636364;
    border-bottom: none;
    border-right: 1px solid #fff;
    margin-bottom: 0 !important;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 45px;
    padding: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .news_left ul li:after {
    content: none;
  }
  .news_left ul li.current:after {
    content: "";
    top: auto;
    bottom: -10px;
    left: 50%;
    margin-left: -5.5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #1c3c8e transparent transparent transparent;
  }
  .news_left ul li span {
    display: inline-block;
    text-align: left;
  }
  .news_left ul li:hover:before {
    width: 0;
  }
  .news_left ul li.current:before {
    width: 100%;
  }
  .news_right {
    padding: 20px 0 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .news_right ul li {
    margin-bottom: 15px;
  }
  .news_right ul li a {
    display: block;
  }
  .news_right ul li .txt01 {
    float: none;
    font-size: 10px;
    line-height: 1.7;
  }
  .news_right ul li .txt02 {
    font-size: 1.2rem;
    line-height: 1.54545455;
  }
  .news_right ul li .txt02:after {
    width: 8px;
    height: 10px;
    background-size: 100% 100%;
    margin-top: 4px;
  }
  .news_more {
    text-align: center;
    margin-top: 26px;
  }
  .news_more a {
    font-size: 1.3rem;
    line-height: 1.38461538;
    padding-bottom: 6px;
  }
  .news_more a:after {
    width: 12px;
    height: 6px;
    background-size: 100% 100%;
  }
  .news_more a:before {
    height: 1px;
    left: 0;
  }
}
