@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
* *::before,
* *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
@media screen and (min-width: 900px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media screen and (min-width: 1400px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "Noto Sans", sans-serif;
}

li {
  list-style: none;
}


/* ################ ENFETE Modify################# */
a { text-decoration: none;-webkit-transition: color .35s, opacity .35s;
  -o-transition: color .35s, opacity .35s;
  transition: color .35s, opacity .35s; }
a img {
  display: block;
  outline: none; }

 a:hover { opacity: 0.8; }

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  color: #fff;
  background-color: #000000;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5); }
  header .header {
    height: 74px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media only screen and (max-width: 1080px) {
      header .header {
        width: 100%;
        padding-left: 4%; } }
    header .header .header-right {
      display: flex;
      height: 100%; }
      header .header .header-right .header-lang {
        height: 100%;
        padding-right: 40px;
        font-size: 18px;
        font-weight: bold; }
        @media only screen and (max-width: 830px) {
          header .header .header-right .header-lang {
            padding-right: 20px; } }
        @media only screen and (max-width: 750px) {
          header .header .header-right .header-lang {
            font-size: 1.6rem; } }
        header .header .header-right .header-lang ul {
          display: flex;
          align-items: center;
          height: 100%; }
          header .header .header-right .header-lang ul li a {
            color: #fff;
            font-family: Helvetica, Arial, "sans-serif"; font-size: 18px!important;  }
          header .header .header-right .header-lang ul li.slash {
            margin: 0 5px; }
            @media only screen and (max-width: 1080px) {
              header .header .header-right .header-lang ul li.slash {
                margin: 0 10px; } }
      header .header .header-right .header-btn { font-size: 15px;}
      header .header .header-right .header-btn ul {
        display: flex;
        height: 100%; }
        header .header .header-right .header-btn ul li a {
          height: 100%; }
          @media only screen and (max-width: 1080px) {
            header .header .header-right .header-btn ul li a {
              padding: 0 20px; } }
          @media only screen and (max-width: 1080px) {
            header .header .header-right .header-btn ul li a .icon {
              margin-right: 0; } }
          @media only screen and (max-width: 1080px) {
            header .header .header-right .header-btn ul li a p {
              display: none; } }
        header .header .header-right .header-btn ul li + li {
          margin-left: 1px; }

.header-burger {
  display: none; }
  @media only screen and (max-width: 1080px) {
    .header-burger {
      display: block; } }

.nav-icon {
  display: block;
  width: 45px;
  height: 45px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .35s;
  -o-transition: .35s;
  transition: .35s;
  cursor: pointer;
  opacity: 1;
  background-color: #000; }

.nav-icon:focus, .nav-icon:active, .nav-icon:visited {
  opacity: 1; }

.nav-icon span {
  display: block;
  position: absolute;
  width: 27px;
  height: 3px;
  background: #fff !important;
  border-radius: 0;
  opacity: 1;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 9;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out; }

.nav-icon span:nth-child(1) {
  top: 10px; }

.nav-icon span:nth-child(2), .nav-icon span:nth-child(3) {
  top: 20px; }

.nav-icon span:nth-child(4) {
  top: 30px; }

.nav-icon.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 0;
  right: 0; }

.nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.nav-icon.open span:nth-child(4) {
  top: 30px;
  width: 0%;
  left: 0;
  right: 0; }

.content-1024 {
  width: 94%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto; }
  @media only screen and (max-width: 1080px) {
    .content-1024 {
      width: 92%; } 
  }

   /*a.btn:hover{ opacity: 0.8; }*/

  .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    font-weight: bold;
    padding: 0 20px; }
    @media only screen and (max-width: 830px) {
      .btn {
        padding: 0 15px;
        font-size: 1.3rem !important; } }
  
  .btn-small {
    font-size: 1.3rem;
    line-height: 2.3rem;
    font-weight: bold;
    height: 40px; }
  
  .btn-big {
    font-size: 1.8rem;
    line-height: 2.8rem;
    height: 80px; }
    @media only screen and (max-width: 750px) {
      .btn-big {
        font-size: 1.5rem;
        line-height: 2.5rem;
        height: 50px; } }
  
  .btn-red {
    color: #fff;
    background-color: #9B0001; }
  
  .btn-border {
    border: 2px solid #000; }
  
  .btn-icon-left div.icon {
    margin-right: 12px; }
  
  .btn-icon-right div.icon {
    margin-left: 12px; }
  
  .btn-arrow-down {
    background-image: url("/php/lp/assets/images/commons/icon-arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px; }
    
    .lang.active {
      color: #9B0001 !important; }

    .header-left .TitleTXT{ display: flex; justify-content: left; align-items: center; color: #fff;}
    .header-left .TitleTXT .head-text{ padding-left: 15px; font-size: 15px; font-weight: 500;}
    @media screen and (max-width: 767px) {
      .header-left .TitleTXT .head-text{ display: none; } 
    }

    .footer {
      padding: 40px 0;
      color: #fff;
      background-color: #000;
    }
    .footer a{ margin: 0; font-size: 18px; }
    
    .footer ul.footer-btn {
      display: flex;
      justify-content: space-between; 
    }
    .footer ul.footer-btn li {
      width: 50%;
      margin: 0 5px; 
      padding: 0;
    }
    
    @media only screen and (max-width: 830px) {
      .footer a{ margin: 0; font-size: 15px!important;}
      .footer {
        padding: 3% 0; 
      } 
      .footer ul.footer-btn {
        display: block;
      }
      .footer ul.footer-btn li {
        width: 100%;
        margin: 5px 0; 
        padding: 0;
      }
      
    }
    .policy-menu {
      text-align: center;
      margin: 30px 0 0px 0;
      font-size: 13px; 
    }
    .policy-menu a{ color: #000;}
    p.copyright {
      font-size: 11px;
      line-height: 2rem;
      text-align: center;
      padding: 15px 0; 
      color: #000;
    }
    .gototop {
      display: none;
      position: fixed;
      bottom: 10px;
      right: 10px;
      z-index: 9;
      padding: 10px;
      background-color: #fff;
      -webkit-transition: all .35s;
      -o-transition: all .35s;
      transition: all .35s;
      background-color: #000; 
    }

/* ################ End ENFETE Modify################# */


.container {
  max-width: 90rem;
  margin: 0 auto;
}

.container_mv {
  max-width: 110rem;
  margin: 0 auto;
}

/*メインビジュアル*/
/*メインビジュアル PC版*/
.mv_wrapper_pc{ margin-top: 74px;}
.mv_wrapper_pc .mv_main_pc_catch {
  position: absolute;
  right: 150px;
  top: 105px;
  font-size: 2.4rem;
  font-weight: 400;
  z-index: 3;
}
.mv_wrapper_pc .mv_main_pc_bg {
  position: relative;
}
.mv_wrapper_pc .mv_main_pc_bg img {
  width: 100%;
  margin: 0 auto;
  vertical-align: top;
}
.mv_wrapper_pc .mv_main_pc_bg .container_mv img {
  position: absolute;
  top: 5%;
  width: 13rem;
}
.mv_wrapper_pc .mv_main_pc_bg .container_mv .mv_main_left {
  position: absolute;
  top: 45%;
  transform: translate(0, -30%);
  height: 70rem;
}
.mv_wrapper_pc .mv_main_pc_bg .container_mv .mv_main_left .mv_main_copy {
  line-height: 55rem;
}
.mv_wrapper_pc .mv_main_pc_bg .container_mv .mv_main_left .mv_main_copy h1 {
  font-size: 5.8rem;
  font-weight: 300;
  line-height: 7.5rem;
}
.mv_wrapper_pc .mv_main_pc_bg .container_mv .mv_main_left .mv_main_copy h1 span {
  font-weight: 700;
  color: #9B0001;
}
.mv_wrapper_pc .mv_main_pc_bg .container_mv .mv_main_left .mv_main_copy p {
  font-size: 2.5rem;
  color: black;
  font-weight: 400;
  line-height: 200%;
}
.mv_wrapper_pc .mv_main_pc_bg .container_mv .mv_main_left .mv_main_copy img {
  width: 31.8rem;
  position: absolute;
  top: 59%;
  transform: translate(0, -30%);
}
.mv_wrapper_pc .mv_main_text {
  background-color: #9B0001;
  padding: 2rem 0;
  margin: 0;
}
.mv_wrapper_pc .mv_main_text .mv_copy {
  font-size: 3.5rem;
  font-weight: 400;
  color: white;
}
.mv_wrapper_pc .mv_main_text .mv_text {
  font-size: 2rem;
  color: white;
  margin-top: 1rem;
}

/*メインビジュアル SP版*/
.mv_main_sp {
  display: none;
}

/*コンテンツ*/
.contents_area {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 3%;
}
.contents_area .point_title img {
  display: block;
  width: 695px;
}
.contents_area .contents_bg {
  background-color: #6C8296;
}
.contents_area .contents_inner {
  display: flex;
}
.contents_area .contents_inner .contents_text {
  width: 100%;
  padding: 2% 5% 0 0;
}
.contents_area .contents_inner .contents_text .contents_copy {
  font-size: 3.8rem;
  color: white;
  font-weight: 300;
}
.contents_area .contents_inner .contents_text .contents_copy_body {
  font-size: 2.2rem;
  color: white;
  line-height: 150%;
  margin-top: 3%;
  margin-bottom: 2rem;
}
.contents_area .contents_inner .contents_img {
  width: 100%;
  padding: 2% 0;
}
.contents_area .contents_inner .contents_img img {
  width: 100%;
}

/*アプリケーション*/
.area_bg {
  background-color: #EFEFEF;
  z-index: 0;
}

/*アプリケーションキャッチコピー PC版*/
.app_title_bg_pc {
  width: 100%;
  position: relative;
}
.app_title_bg_pc img {
  width: 100%;
}
.app_title_bg_pc p {
  width: 90rem;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0.4rem 0.4rem 0.4rem black;
}

/*アプリケーションキャッチコピー SP版*/
.app_title_bg_sp {
  display: none;
}

/*各アプリケーション*/
.app_contents_area {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.app_contents_area .app_contents_inner {
  background-color: white;
  padding: 2% 0 4%;
  width: 48%;
  margin: 2.5% auto 0;
}
.app_contents_area .app_contents_inner .app_contents_title {
  background-color: #032665;
}
.app_contents_area .app_contents_inner .app_contents_title p {
  font-size: 2.3rem;
  font-weight: 700;
  color: white;
  padding: 0.5em 0;
  text-align: center;
}
.app_contents_area .app_contents_inner .app_contents_text {
  padding: 4% 8%;
}
.app_contents_area .app_contents_inner .app_contents_text p {
  font-size: 1.6rem;
  line-height: 170%;
}
.app_contents_area .app_contents_inner .app_contents_img {
  text-align: center;
  margin-top: 3%;
}
.app_contents_area .app_contents_inner .app_contents_img img {
  width: 100%;
  padding: 0 8%;
}

/*資料請求誘導*/
.request_inner {
  margin-top: 8rem;
}
.request_inner .request_copy {
  font-size: 3.5rem;
  font-weight: 700;
  color: #032665;
  text-align: center;
  line-height: 120%;
  margin-bottom: 2.5rem;
}

.request_type {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1%;
  justify-content: space-between;
  padding-bottom: 10%;
}
.request_type li {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  color: white;
  background-color: #032665;
  padding: 0.5% 0;
  margin: 1% 1%;
  z-index: 1;
}

/*資料紹介 PC版*/
.request_document_bg_pc {
  position: relative;
}
.request_document_bg_pc img {
  width: 100%;
  margin: 0 auto;
  margin-top: -13%;
  z-index: 1;
}
.request_document_bg_pc .request_document_inner {
  display: flex;
  width: 90rem;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -10%);
}
.request_document_bg_pc .request_document_inner img {
  width: 60%;
  padding-top: 5%;
  flex-shrink: 0;
}
.request_document_bg_pc .request_document_inner p {
  font-size: 2.2rem;
  padding-left: 3%;
  margin: 0;
}

/*資料紹介 SP版*/
.request_document_bg_sp {
  display: none;
}

/*資料紹介ボタン*/
.request_btn_area {
  width: 100%;
  text-align: center;
  margin: 0.3% 0 5%;
}
.request_btn_area .request_btn {
  background-color: #AD0003;
  border-radius: 0.5rem;
  font-size: 2.5rem;
  font-weight: 300;
  color: white;
  display: inline-block;
  text-decoration: none;
  padding: 1.5% 3.5%;
  line-height: 150%;
  box-shadow: 0.4rem 0.4rem 0.4rem #9E9E9F;
}
.request_btn_area .request_btn span {
  font-size: 3.5rem;
  font-weight: 700;
}
.request_btn_area .request_btn:hover {
  opacity: 0.7;
  transition: 0.3s;
}

/*スクロールエリア*/
.scroll_area {
  opacity: 0;
  display: none;
  /*topへ戻るボタン　追従*/
  /*資料紹介ボタン 追従*/
}
.scroll_area #scroll_top_btn {
  position: fixed;
  bottom: 1rem;
  right: 2%;
  z-index: 999;
}
.scroll_area .request_btn_scroll_pc {
  width: 100%;
  text-align: center;
  position: fixed;
  bottom: 0;
  z-index: 999;
}
.scroll_area .request_btn_scroll_pc .request_btn_scroll_pc_bg {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1% 0;
}
.scroll_area .request_btn_scroll_pc .request_btn_scroll_pc_bg .request_btn_scroll {
  background-color: #AD0003;
  border-radius: 0.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  display: inline-block;
  text-decoration: none;
  padding: 1.5% 3.5%;
  line-height: 150%;
  box-shadow: 0.4rem 0.4rem 0.4rem #9E9E9F;
}
.scroll_area .request_btn_scroll_pc .request_btn_scroll_pc_bg .request_btn_scroll span {
  font-size: 3.5rem;
  font-weight: 700;
}
.scroll_area .request_btn_scroll_pc .request_btn_scroll_pc_bg .request_btn_scroll:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.active {
  opacity: 1;
  display: inline;
}

/*フッター*/
/*footer .footer_bg {
  position: relative;
}
footer .footer_bg .footer_bg_pc img {
  width: 100%;
  margin: 0 auto;
}
footer .footer_bg .footer_bg_sp img {
  display: none;
}
footer .footer_bg .link_list_area {
  position: absolute;
  top: 50%;
  margin: 0 auto;
  left: 0;
  right: 0;
  max-width: 90rem;
  width: 100%;
}
footer .footer_bg .link_list_area .link_list_inner {
  display: flex;
  justify-content: space-between;
}
footer .footer_bg .link_list_area .link_list_inner a {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}
footer .footer_bg .link_list_area a:hover {
  color: #9B0001;
}
footer .copyright {
  background-color: #9B0001;
}
footer .copyright p {
  font-size: 1.5rem;
  text-align: center;
  color: white;
  line-height: 400%;
  margin-top: -1rem;
}*/

.float-btn {
  position: fixed;
  bottom: 9rem;
  right: 0;
  z-index: 999;
  background-color: #000F7E;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  box-shadow: 0.6rem 0.6rem 0.6rem rgba(0, 0, 0, 0.3);
  font-weight: 700;
}
.float-btn__link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.9rem 2rem 0.9rem 2rem;
  color: #fff;
  text-decoration: none;
}
.float-btn__link:hover {
  opacity: 0.8;
}
.float-btn__txt-s {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 0.3rem;
}
.float-btn__txt {
  font-size: 2rem;
  text-decoration: underline;
  line-height: 1.4;
  color: #fff;
}

.video-content {
  display: block;
  overflow: hidden;
  padding: 4rem 0;
  background-color: rgba(159, 160, 160, 0.2);
  margin: 0 0 6rem;
}
.video-content__title {
  text-align: center;
  font-size: 2.4rem;
  color: #707070;
  margin: 0 0 2rem;
}
.video-content__wrap {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
}
.video-content__wrap video {
  width: 100%;
}

.middle-bnr {
  padding: 2rem 0 7rem;
  overflow: hidden;
}
.middle-bnr__link {
  display: block;
  color: #fff;
  text-decoration: none;
  background-color: #AD0003;
  padding: 2rem 1rem;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  font-weight: 700;
  box-shadow: 0.6rem 0.6rem 0.6rem rgba(0, 0, 0, 0.18);
  border-radius: 0.3rem;
  transition: opacity 200ms linear;
}
.middle-bnr__link:hover {
  opacity: 0.7;
}
.middle-bnr__txt-s {
  font-size: 2.5rem;
  display: block;
  font-weight: 300;
}
.middle-bnr__txt-l {
  font-size: 3.5rem;
  display: block;
}/*# sourceMappingURL=stylesheet.css.map */