@charset "UTF-8";


/*-----------------------------------------------------------------
		上書き
-----------------------------------------------------------------*/
* {
  box-sizing: border-box;
}
img {
  image-rendering: -webkit-optimize-contrast;
}

.new-style img {
  width: 100%;
}

.is-sp,
br.is-sp {
  display: none;
}


@media screen and (max-width: 767px){
.news-detail-wrap .img-area img {
  height: auto;
  max-width: 600px;
}

.is-pc,
br.is-pc {
  display: none;
}
.is-sp {
  display: block;
}
br.is-sp {
  display: inline;
}
}

a:hover {
  opacity: 0.7;
  cursor: pointer;
}


/*-----------------------------------------------------------------
		header
-----------------------------------------------------------------*/
.new-header {
  width: 100%;
  height: 94px;
  padding: 25px 15px;
  position: fixed;
  top: 0;
  z-index: 3000;
  background-color:rgba(0,0,0,0);
  transition: 0.4s;
}
.new-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  transition: 0.4s;
}
.new-header-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.new-header-left {
    width: 95px;
  display: flex;
    align-items: center;
}
.new-header-left a {
  display: block;
    width: 100%;
}
.new-header-left img {
    width: 100%;
}

.new-header-right {
    width: calc(100% - 100px);
}
.new-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.new-nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.new-nav-list a {
  display: block;
  padding: 0 30px;
  line-height: 44px;
  font-size: 14px;
  color: #fff;
  transition: 0.4s;
}
.scrolled .new-nav-list a {
  color: #333;
  transition: 0.4s;
}

.new-btn-contact {
  padding-left: 30px;
}

.new-btn-contact a,
.scrolled .new-btn-contact a {
  display: block;
  width: 164px;
  line-height: 44px;
  padding: 0;
  background: #2FA0BA;
  text-align: center;
  color: #fff;
  border-radius: 22px;
}

/* PCで非表示 */
.new-sp-menu,
.new-nav-btn,
.new-sp-openbg {
  display: none;
}


@media screen and (max-width: 979px) {
  
  /* 展開時の背景 */
  .new-sp-openbg.is-open {
    display: block;
    background: rgba(4,31,105, 0.95);
    position: fixed;
    z-index: 2000;
    width: 100%;
    height: 100%;
    transition: 0.4s;
  }
  
  .new-header{
    height: 60px;
    padding: 0;
  }
  .new-header .new-header-inner {
      display: block
  }

  .new-header-left {
    width: 74px;
    padding: 15px 0 0 15px;
  }

  .new-header-right {
    display: none;
  }

  /* SPオープンメニュー */
  .new-sp-menu {
      width: 100%;
      height: 100%;
      display: none;
      position: fixed;
      /*z-index: 200;*/
      transition: 0.4s
  }
    .new-sp-menu.is-open {
      display: block;
      top: 0;
      padding-top: 104px;
      overflow-y: auto;
  }

.new-sp-menu-dl a {
  padding: 0 20px;
  display: block;
  font-size: 14px;
  line-height: 38px;
  color: #fff;
}
  
.new-sp-menu-dl dt {
  line-height: 60px;
  margin-bottom: 0;
  padding: 0 20px;
  border-bottom: solid 1px #1D367C;
  background: url(../img/new-top/i_open.png) no-repeat center right 20px;
  background-size: 10px auto;
  color: #fff;
}
.new-sp-menu-dl dt.active {
  background: url(../img/new-top/i_close.png) no-repeat center right 20px;
  background-size: 10px auto;
}

.new-sp-menu-dl dd {
  padding: 15px 0;
}

  
  /**/

  .nav {
      width: 100%
  }
  .nav-inner .nav-list {
      padding-right: 0;
      display: block
  }
  .nav-inner .nav-list li a {
      font-size: 1.8rem;
      font-weight: bold;
      height: 50px;
      background: #fff;
      line-height: 50px;
      display: block;
      text-align: center;
      padding: 0;
      border-radius: 5px;
      margin-bottom: 10px
  }
  /**/

  
  /* ボタン */
    .nav-btn {
        width: 60px;
        height: 60px;
        border-radius: 0 0 0 10px;
        background: #2FA0BA;
        position: absolute;
        top: 0;
        right: 0;
        text-align: center;
        z-index: 1200
    }
    .nav-btn .nav-btn-menu {
        position: relative;
        width: 24px;
        height: 16px;
        display: block;
        margin: 0 auto
    }
    .nav-btn .nav-btn-menu > span {
        position: absolute;
        display: block;
        width: 100%;
        right: 0;
        height: 2px;
        background: #fff;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s
    }
    .nav-btn .nav-btn-menu>span:nth-child(1) {
        top: 22px
    }
    .nav-btn .nav-btn-menu>span:nth-child(2) {
        top: 29px
    }
  .nav-btn .nav-btn-menu>span:nth-child(3) {
        top: 36px
    }
    .nav-btn .nav-btn-txt {
        position: relative;
        display: block
    }
    .nav-btn .nav-btn-txt:before {
        display: none;
    }
  
    .nav-btn.is-open {
        z-index: 12000
    }
    .nav-btn.is-open .nav-btn-menu>span:nth-child(1) {
        top: 27px;
        transform: rotate(45deg)
    }
    .nav-btn.is-open .nav-btn-menu>span:nth-child(2) {
        right: -200%;
    }
  .nav-btn.is-open .nav-btn-menu>span:nth-child(3) {
        top: 27px;
        transform: rotate(-45deg)
    }
    .nav-btn.is-open .nav-btn-txt {
        position: relative
    }
    .nav-btn.is-open .nav-btn-txt:before {
        display: none;
    }
}


/*-----------------------------------------------------------------
		MV
-----------------------------------------------------------------*/
.wrapper-main-visual {
  height: 640px;
  overflow: hidden;
  position: relative;
  text-shadow: 0px 0px 8px rgba(0,0,0,0.1);
}

.main-slider-box li {
  height: 640px;
  padding: 94px 0 110px;
}

.main-slider-box li a{
  display: block;
  height: 100%;
  color: #fff;
  cursor: pointer;
}

.slider-txt-box {
  width: 100%;
  height: 100%;
  display: flex;
align-items: center;
}

.visual-lead {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 130px;
}


/* 読み込み完了までスライダー非表示
.main-slider-box li,
.visual-btn {
  display: none;
}
.bx-viewport .main-slider-box li {
  display: block !important;
}

.visual-lead-main .visual-btn {
  display: inline-block;
}

.new-mv {
  width: 100%;
  max-width: 600px;
  height: auto;
}
*/


.bx-01 {
  background: url(../img/new-top/mv_01.jpg) no-repeat center center;
  background-size: cover;
}

.visual-lead-main {
  margin-bottom: 25px;
  font-size: 54px;
  line-height: 1.1;
}

.visual-sub-txt {
  font-size: 28px;
  line-height: 1.1;
}


@media screen and (max-width: 767px) {
.visual-lead {
  padding-left: 20px;
}

.visual-lead-main {
  margin-bottom: 35px;
  font-size: 50px;
}

.visual-sub-txt {
  font-size: 24px;
}
}


/*-----------------------------------------------------------------
		汎用
-----------------------------------------------------------------*/
.new-wrap-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 130px 0 130px 130px;
}

h2 {
  font-size: 42px;
  color: #041F69;
  line-height: 1.1;
  margin-bottom: 70px;
  padding-bottom: 20px;
}
h2 span {
  font-size: 14px;
  color: #041F69;
}
.new-normal-ttl {
  background: url(../img/new-top/i_ttl_normal.png) no-repeat left bottom;
  background-size: 57px auto;
}

h3 {
  font-size: 38px;
  line-height: 1.1;
  margin-bottom: 17px;
}

.new-two-item {
  width: 50%;
}


/* ボタン */
.new-btn-wrap {
  margin-top: 60px;
}

.btn-style {
  width: 100%;
  max-width: 256px;
  padding: 0 22px;
  display: block;
  line-height: 52px;
  border-radius: 26px;
  background: #041F69 url(../img/new-top/i_arrow_white.png) no-repeat right 22px center;
  background-size: 18px auto;
  color: #fff;
  box-shadow: 0px 0px 8px rgba(0,0,0,0.1);
}

.btn-white {
  background: #fff url(../img/new-top/i_arrow_blue.png) no-repeat right 22px center;
  background-size: 18px auto;
  color: #041F69;
}


/* リンクエレメント */
.link-arrow {
  width: 76px;
  height: 76px;
  right: 50px;
  bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background: #041F69;
  border-radius: 38px;
  box-shadow: 0px 0px 8px rgba(0,0,0,0.1);
}
.link-arrow img {
  width: 18px;
  height: auto;
}

/* リンクエレメント：小 */
.link-arrow-mini {
  width: 60px;
  height: 60px;
  right: 25px;
  bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background: #041F69;
  border-radius: 30px;
  box-shadow: 0px 0px 8px rgba(0,0,0,0.1);
}
.link-arrow-mini img {
  width: 14px;
  height: auto;
}


@media screen and (max-width: 980px) {
.content-wrap {
    width: 100%;
    padding: 0 15px;
  }
  
   .page-ttl {
    padding: 0 15px;
    padding-bottom: 15px;
  }

}


@media screen and (max-width: 979px) {
.new-wrap-inner {
  margin: 0 auto;
  padding: 80px 0 80px 60px;
}

h2 {
  font-size: 24px;
  margin-bottom: 40px;
  padding-bottom: 20px;
}
h2 span {
  padding-top: 20px;
  display: block;
  font-size: 14px;
}

h3 {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 10px;
}

/* リンクエレメント */
.link-arrow {
  width: 40px;
  height: 40px;
  right: 20px;
  bottom: 20px;
}
.link-arrow img {
  width: 12px;
  height: auto;
}

/* リンクエレメント：小 */
.link-arrow-mini {
  width: 40px;
  height: 40px;
  right: 20px;
  bottom: 20px;
}
.link-arrow-mini img {
  width: 12px;
  height: auto;
}
}


@media screen and (max-width: 767px) {
.new-two-item {
  width: 100%;
}

  .new-two-item + .new-two-item {
    margin-top: 40px;
  }
  
.new-wrap-inner {
  padding: 60px 0 60px 40px;
}
}


/*-----------------------------------------------------------------
		MV NEWS
-----------------------------------------------------------------*/
.mvnews {
  z-index: 1100;
  position: relative;
}

.mvnews .new-wrap-inner {
  padding: 0 0 0 130px;
  display: flex;
  justify-content: flex-end;
}

.mvnews-wrap {
  width: 50%;
  background: #fff;
  border-radius: 2px 0px 0px 2px;
  overflow: hidden;
  display: flex;
  box-shadow: 0px 0px 8px rgba(0,0,0,0.1);
}

.mvnews-ttl {
  width: 100px;
  font-size: 16px;
  font-weight: bold;
  color: #041F69;
  text-align: center;
  background: url(../img/new-top/mvnews_line.png) no-repeat right center;
  background-size: 1px auto;
  line-height: 50px;
}

.mvnews-detail {
  width: calc(100% - 100px);
  padding: 0 16px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 50px;
}

@media screen and (max-width: 979px) {
.mvnews .new-wrap-inner {
  padding: 0 0 0 60px;
}
}


@media screen and (max-width: 767px) {
.mvnews .new-wrap-inner {
  padding: 0 0 0 40px;
}

.mvnews-wrap {
  width: 100%;
}

.mvnews-ttl {
  width: 70px;
  font-size: 12px;
  line-height: 50px;
}

.mvnews-detail {
  width: calc(100% - 70px);
  padding: 0 12px;
  font-size: 12px;
}
}


/*-----------------------------------------------------------------
		Our Business
-----------------------------------------------------------------*/
.new-business {
  margin-top: -250px;
  padding-top: 220px;
  z-index: 1000;
  position: relative;
  color: #fff;
  background: url(../img/new-top/mv_bg_wave.png) no-repeat center top,url(../img/new-top/business_bg_blue.png) no-repeat center top 160px;
  background-size: 100% auto;
}

.new-business .new-wrap-inner {
  display: flex;
}

.new-two-item-business01 {
  padding-right: 30px;
}

.new-business-ttl {
  color: #fff;
  background: url(../img/new-top/i_ttl_business.png) no-repeat left bottom;
  background-size: 57px auto;
}
h2.new-business-ttl span {
  color: #fff;
}

.new-business-lead {
  margin-bottom: 40px;
  font-size: 28px;
  line-height: 1.5;
}

.new-business-txt {
  font-size: 16px;
  line-height: 1.875;
}


@media screen and (max-width: 979px) {
.new-business-lead {
  margin-bottom: 30px;
  font-size: 22px;
}

.new-business-txt {
  font-size: 14px;
  padding-right: 15px;
}
}


@media screen and (max-width: 767px) {
.new-business {
  margin-top: -180px;
  padding-top: 180px;
  background: url(../img/new-top/mv_bg_wave_sp.png) no-repeat center top,url(../img/new-top/business_bg_blue.png) no-repeat center top 140px;
  background-size: 100% auto, 100% 1200px;
}

.new-business .new-wrap-inner {
  display: block;
}
}


/*-----------------------------------------------------------------
		About
-----------------------------------------------------------------*/
.new-about {
  background: url(../img/new-top/about_bg.jpg) no-repeat center center;
  background-size: cover;
}

.about-flwx {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.about-flwx a {
  width: 100%;
  height: 300px;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
  position: relative;
  color: #fff;
}

.new-about h3 {
  width: 100%;
  text-shadow: 0px 0px 8px rgba(0,0,0,0.1);
}

.new-about-lead {
  width: 100%;
  margin-bottom: 0;
  font-size: 14px;
  text-shadow: 0px 0px 8px rgba(0,0,0,0.1);
}

.about-01 a {
  background: url(../img/new-top/about_img_01.jpg) no-repeat center center;
  background-size: cover;
}

.about-02 a {
  background: url(../img/new-top/about_img_02.jpg) no-repeat center center;
  background-size: cover;
}

.about-03 a {
  background: url(../img/new-top/about_img_03.jpg) no-repeat center center;
  background-size: cover;
}

.about-04 a {
  background: url(../img/new-top/about_img_04.jpg) no-repeat center center;
  background-size: cover;
}


@media screen and (max-width: 979px) {
.about-flwx a {
  width: 100%;
  height: 150px;
  padding: 20px;
}
}


@media screen and (max-width: 767px) {
.about-flwx {
  display: block;
}

.about-flwx .new-two-item + .new-two-item {
  margin-top: 0;
}
}


/*-----------------------------------------------------------------
		Movie
-----------------------------------------------------------------*/
.new-movie {
  color: #fff;
  background: linear-gradient(to right, #1A5E83 0%, #041F69 50%, #041F69 50%, #041F69 100%);
}
.new-movie-inner {
  background: url(../img/new-top/movie_bg.png) no-repeat center center;
  background-size: 1200px auto;
}

.new-movie .new-wrap-inner {
  display: flex;
  text-shadow: 0px 0px 8px rgba(0,0,0,0.1);
}

.new-movie-ttl {
  color: #fff;
  background: url(../img/new-top/i_ttl_movie.png) no-repeat left bottom;
  background-size: 57px auto;
}
h2.new-movie-ttl span {
  color: #fff;
}

.new-movie-txt {
  padding-right: 90px;
  font-size: 16px;
  line-height: 1.875;
}

.js-modal-video-open {
  cursor: pointer;
}
.js-modal-video-open:hover {
  opacity: 0.7;
}

#modal-video {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 8;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  transition: 0.5s;
}
#modal-video.close {
  filter: opacity(0);
  visibility: hidden;
}
#modal-video.open {
  filter: opacity(1);
  visibility: visible;
}
#modal-video iframe {
  width: 88vw;
  max-width: 960px;
  height: 49.5vw;
  max-height: 540px;
}


@media screen and (max-width: 767px) {
.new-movie .new-wrap-inner {
  display: block;
}

.new-movie-txt {
  padding-right: 15px;
  font-size: 14px;
  line-height: 1.7;
}
}


/*-----------------------------------------------------------------
		NEWS
-----------------------------------------------------------------*/
.new-news {
  background: url(../img/new-top/news_bg.jpg) no-repeat center center;
  background-size: cover;
}

.new-news .new-wrap-inner {
  display: flex;
}

.new-news-list {
  padding-right: 50px;
}

.new-news-list li {
  margin-bottom: 38px;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.new-news-list li:last-of-type {
  margin-bottom: 0;
}

.new-news-date {
  width: 80px;
  font-size: 12px;
  line-height: 48px;
  color: #041F69;
}

.new-news-detail {
  width: calc(100% - 80px);
  font-size: 14px;
  line-height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
.new-news .new-wrap-inner {
  display: block;
}

.new-news-list {
  padding-right: 15px;
}

.new-news-list li {
  margin-bottom: 15px;
  display: block;
}
.new-news-list li:last-of-type {
  margin-bottom: 0;
}

.new-news-date {
  width: 100%;
  display: block;
  line-height: 1.1;
}

.new-news-detail {
  width: 100%;
  display: block;
  line-height: 44px;
}
}


/*-----------------------------------------------------------------
		Recruit
-----------------------------------------------------------------*/
.new-recruit {
  background: url(../img/new-top/recruit_bg.jpg) no-repeat center center;
  background-size: cover;
}

.new-recruit-ttl {
  color: #fff;
  background: url(../img/new-top/i_ttl_business.png) no-repeat left bottom;
  background-size: 57px auto;
  text-shadow: 0px 0px 8px rgba(0,0,0,0.1);
}
h2.new-recruit-ttl span {
  color: #fff;
}

@media screen and (max-width: 767px) {
.new-recruit {
  background: url(../img/new-top/recruit_bg_sp.jpg) no-repeat center bottom;
  background-size: cover;
}
}


/*-----------------------------------------------------------------
		Support
-----------------------------------------------------------------*/
.support-flwx {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.new-three-item {
  width: calc((100% - 50px) / 3);
}

.support-flwx a {
  width: 100%;
  height: 230px;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
  position: relative;
  color: #fff;
}

.support-01 a {
  background: url(../img/new-top/support_img_01.jpg) no-repeat center center;
  background-size: cover;
}

.support-02 a {
  background: url(../img/new-top/support_img_02.jpg) no-repeat center center;
  background-size: cover;
}

.support-03 a {
  background: url(../img/new-top/support_img_03.jpg) no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 979px) {
.support-flwx a {
  height: 150px;
  padding: 20px;
}
}


@media screen and (max-width: 767px) {
.support-flwx {
  display: block;
}

.new-three-item {
  width: 100%;
}
}


/*-----------------------------------------------------------------
		footer
-----------------------------------------------------------------*/
.new-footer {
  padding: 60px 15px;
  background: #041F69;
  color: #fff;
  line-height: 1;
}

.new-footer-inner {
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.new-footer-item {
  padding-right: 30px;
}

.new-footer a {
  color: #D9DDE8;
  text-decoration: none;
}
.new-footer a:hover {
  text-decoration: underline;
}

.new-footer-menu-support {
  margin-bottom: 30px;
}

.new-footer-menu dt {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.new-footer-list {
  padding-right: 30px;
}

.new-footer-list a {
  width: 100%;
  display: block;
  font-size: 14px;
  line-height: 28px;
}

.new-footer-01-flex {
  display: flex;
  justify-content: space-between;
}

.new-footer-logo {
  margin-bottom: 40px;
}
.new-footer-logo a {
  width: 100%;
  max-width: 95px;
  display: block;
}

.new-footer-name {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}
.new-footer-address {
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.7;
}
.new-footer-copyright {
  font-size: 12px;
}


@media screen and (max-width: 979px) {
.new-footer {
  padding: 0 0 20px;
}

.new-footer-inner {
  display: block;
}

.new-footer-list {
  padding-right: 0;
}

.new-footer-list a {
  padding: 0 20px;
  font-size: 14px;
  line-height: 38px;
}

.new-footer-01-flex {
  display: block;
}

.new-footer-menu dt {
  line-height: 60px;
  margin-bottom: 0;
  padding: 0 20px;
  border-bottom: solid 1px #2A417F;
  background: url(../img/new-top/i_open.png) no-repeat center right 20px;
  background-size: 10px auto;
}
.new-footer-menu dt.active {
  background: url(../img/new-top/i_close.png) no-repeat center right 20px;
  background-size: 10px auto;
}

.new-footer-menu dd {
  padding: 15px 0;
  background: #031A59;
}

.new-footer-menu-support {
  margin-bottom: 0;
}

.new-footer-item-company {
  padding: 40px 20px 10px;
}

.new-footer-item {
  padding-right: 0;
}

.new-footer-name {
  font-size: 14px;
}
.new-footer-address {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.5;
}
.new-footer-copyright {
  font-size: 10px;
}
}


