.pageLoader {
  background: #FFF;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.pageLoader.is-active {
  display: none;
}
.pageLoader_inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .pageLoader_logo img {
    margin: auto;
    max-width: 90%;
  }
}

.spinner {
  font-size: 10px;
  height: 40px;
  margin: 20px auto;
  text-align: center;
  width: 50px;
}

.spinner > div {
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
  background-color: #15318B;
  display: inline-block;
  height: 100%;
  width: 6px;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
.fadein_cont {
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: linear;
  opacity: 0;
  transform: translateY(10px);
  transition-duration: 0.4s;
  transition-timing-function: linear;
}
.fadein_cont.active {
  opacity: 1;
  transform: translateY(0px);
}

.fadein_btt {
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: linear;
  opacity: 0;
  transform: translateY(20px);
  transition-duration: 0.4s;
  transition-timing-function: linear;
}
.fadein_btt.active {
  opacity: 1;
  transform: translateY(0px);
}

.fadein_btt_pc {
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: linear;
  opacity: 0;
  transition-duration: 0.4s;
  transition-timing-function: linear;
}
.fadein_btt_pc.active {
  opacity: 1;
}

.fadein_ltr {
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: linear;
  opacity: 0;
  transform: translateX(-10px);
  transition-duration: 0.4s;
  transition-timing-function: linear;
}
.fadein_ltr.active {
  opacity: 1;
  transform: translateX(0px);
}

.del02 {
  transition-delay: 0.2s;
}

.del04 {
  transition-delay: 0.4s;
}

.del06 {
  transition-delay: 0.6s;
}

.del08 {
  transition-delay: 0.8s;
}

@media (min-width: 768px) {
  .del02_pc {
    transition-delay: 0.2s;
  }
}

@media (min-width: 768px) {
  .del04_pc {
    transition-delay: 0.4s;
  }
}

.header {
  background: #FFF;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .header {
    background: #FFF;
    height: 70px;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9;
  }
}
@media (min-width: 768px) {
  .header {
    height: 85px;
    width: 100%;
  }
  .header.fixed {
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.13);
    left: 0;
    position: fixed;
    top: 0;
  }
}
@media (min-width: 1201px) {
  .header {
    height: 100px;
  }
}
.header_container {
  display: flex;
  height: inherit;
}
@media (max-width: 767px) {
  .header_container {
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .header_container {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .header_logo {
    width: 276px;
  }
}
@media (min-width: 768px) {
  .header_logo {
    max-width: 250px;
  }
}
@media (min-width: 980px) {
  .header_logo {
    max-width: 300px;
  }
}
@media (min-width: 1201px) {
  .header_logo {
    max-width: 365px;
  }
}
.header_logo a {
  display: block;
}
@media (max-width: 767px) {
  .header_nav {
    background: #FFF;
    height: 100vh;
    opacity: 0;
    position: fixed;
    right: -100%;
    top: 70px;
    transition: all 0.5s;
    width: 100vw;
    z-index: 998;
  }
  .header_nav.active {
    opacity: 1;
    right: 0;
  }
}
@media (min-width: 768px) {
  .header_nav {
    margin-left: auto;
    width: calc(100% - 250px - 20px);
  }
}
@media (min-width: 980px) {
  .header_nav {
    width: calc(100% - 300px - 40px);
  }
}
@media (min-width: 1201px) {
  .header_nav {
    width: calc(100% - 365px - 80px);
  }
}
@media (min-width: 768px) {
  .header_nav_list {
    display: flex;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .header_nav_item {
    border-top: 1px solid #C4C4C4;
  }
  .header_nav_item:last-child {
    border-bottom: 1px solid #C4C4C4;
  }
}
@media (min-width: 768px) {
  .header_nav_item {
    width: 20%;
  }
  .header_nav_item:not(:first-child) a::before {
    background: #C4C4C4;
    content: "";
    height: 20px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
  }
}
.header_nav_link {
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .header_nav_link {
    color: #15318B;
    display: block;
    font-family: "m-plus-2p", sans-serif;
    font-size: 20px;
    letter-spacing: 0.1em;
    padding: 20px 10px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .header_nav_link {
    color: #313131;
    display: block;
    font-size: 14px;
    padding: 20px 10px;
    position: relative;
    text-align: center;
    white-space: nowrap;
  }
}
@media (min-width: 980px) {
  .header_nav_link {
    font-size: 16px;
    padding: 20px;
  }
}
@media (min-width: 1201px) {
  .header_nav_link {
    padding: 20px 30px;
  }
}
.header_hamburger {
  background: #15318B;
  border-radius: 50%;
  cursor: pointer;
  height: 43px;
  position: fixed;
  right: 14px;
  top: 5px;
  width: 43px;
  z-index: 999;
}
@media (min-width: 768px) {
  .header_hamburger {
    display: none;
  }
}
.header_hamburger .menu_bar {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: center;
  width: 100%;
  z-index: 999;
}
.header_hamburger_trigger {
  align-items: center;
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  transition: all 0.2s;
}
.header_hamburger_trigger span {
  box-sizing: border-box;
  display: inline-block;
  transition: all 0.4s;
}
.header_hamburger_trigger > span {
  text-align: center;
  width: 35px;
}
.header_hamburger_line {
  height: 22px;
  margin: 0px auto;
  position: relative;
  width: 22px;
}
.header_hamburger_line::after {
  bottom: -28px;
  color: #15318B;
  content: "menu";
  font-size: 13px;
  font-weight: bold;
  left: 50%;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.header_hamburger_line span {
  background: #FFF;
  height: 1px;
  position: absolute;
  right: 0;
  width: 100%;
}
.header_hamburger_line span:nth-of-type(2) {
  top: 7px;
}
.header_hamburger_line span:nth-of-type(3) {
  top: 14px;
}
.header_hamburger_line span:nth-of-type(4) {
  bottom: 0;
}
.header_hamburger_line.active::after {
  content: "close";
}
.header_hamburger_line.active span:first-of-type {
  transform: translateY(11px) rotate(-45deg);
}
.header_hamburger_line.active span:nth-of-type(2) {
  opacity: 0;
}
.header_hamburger_line.active span:nth-of-type(3) {
  opacity: 0;
}
.header_hamburger_line.active span:nth-of-type(4) {
  transform: translateY(-10px) rotate(45deg);
}

@media (max-width: 767px) {
  .nav {
    height: 100vh;
    opacity: 0;
    position: fixed;
    right: -100%;
    top: 0;
    transition: all 0.5s;
    width: 100vw;
    z-index: 998;
  }
  .nav.active {
    opacity: 1;
    right: 0;
  }
}

.footer {
  background: #15318B;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .footer {
    padding: 15px 0;
  }
}
@media (min-width: 768px) {
  .footer {
    padding: 20px 0;
  }
}
.footer .copyright {
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 768px) {
  .footer .copyright {
    font-size: 16px;
  }
}
@media (min-width: 1201px) {
  .footer .copyright {
    font-size: 18px;
  }
}

.sticky_footer {
  bottom: 10px;
  display: none;
  left: 0;
  pointer-events: none;
  position: fixed;
  width: 100%;
  z-index: 99;
}
@media (min-width: 768px) {
  .sticky_footer {
    bottom: 15px;
  }
}
@media (min-width: 768px) {
  .sticky_footer > .container {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin: auto;
    max-width: 1600px;
  }
}
@media (max-width: 767px) {
  .sticky_footer_contact {
    display: none;
  }
}
@media (min-width: 768px) {
  .sticky_footer_contact {
    pointer-events: auto !important;
  }
}
.sticky_footer_contact a {
  align-items: center;
  background: #15318B;
  border: 3px solid #FFF;
  border-radius: 11px;
  display: flex;
}
@media (min-width: 768px) {
  .sticky_footer_contact a {
    padding: 20px 30px;
  }
}
@media (min-width: 1201px) {
  .sticky_footer_contact a {
    padding: 20px 43px;
  }
}
@media (min-width: 768px) {
  .sticky_footer_contact a img {
    max-width: 28px;
  }
}
@media (min-width: 1201px) {
  .sticky_footer_contact a img {
    max-width: 45px;
  }
}
.sticky_footer_contact a span {
  color: #FFF;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .sticky_footer_contact a span {
    font-size: 16px;
    margin-left: 10px;
  }
}
@media (min-width: 1201px) {
  .sticky_footer_contact a span {
    font-size: 20px;
    margin-left: 20px;
  }
}
.sticky_footer_contact a:hover {
  background-color: #1a3caa;
  opacity: 1;
}
.sticky_footer_pageTop {
  pointer-events: auto !important;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .sticky_footer_pageTop {
    height: 55px;
    margin-left: auto;
    text-align: center;
    width: 55px;
  }
}
@media (min-width: 768px) {
  .sticky_footer_pageTop {
    height: 70px;
    margin-left: 8px;
    width: 70px;
  }
}
@media (min-width: 1201px) {
  .sticky_footer_pageTop {
    height: 83px;
    margin-left: 16px;
    width: 83px;
  }
}
.sticky_footer_pageTop a {
  background: #15318B;
  border: 3px solid #FFF;
  border-radius: 50%;
  box-sizing: border-box;
  color: #FFF;
  display: block;
  font-size: 14px;
  font-weight: 600;
  height: 100%;
  letter-spacing: 0.1em;
  padding-top: 22px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
@media (max-width: 767px) {
  .sticky_footer_pageTop a {
    border-width: 2px;
  }
}
@media (min-width: 768px) {
  .sticky_footer_pageTop a {
    font-size: 15px;
    padding-top: 32px;
  }
}
@media (min-width: 1201px) {
  .sticky_footer_pageTop a {
    font-size: 16px;
    padding-top: 40px;
  }
}
.sticky_footer_pageTop a:hover {
  background-color: #1a3caa;
  opacity: 1;
}
.sticky_footer_pageTop a::before {
  background: url(../images/common/toTop.png) no-repeat center center/cover;
  content: "";
  height: 10px;
  left: 50%;
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  width: 15px;
}
@media (min-width: 768px) {
  .sticky_footer_pageTop a::before {
    height: 11px;
    top: 15px;
    width: 25px;
  }
}
@media (min-width: 1201px) {
  .sticky_footer_pageTop a::before {
    height: 16px;
    top: 20px;
    width: 29px;
  }
}

.section_title {
  margin-bottom: 32px;
}
@media (min-width: 1201px) {
  .section_title {
    margin-bottom: 36px;
  }
}
.section_title .jp {
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 2;
}
.section_title .en {
  color: #313131;
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.section_title:not(.news_title) {
  text-align: center;
}
.section_title:not(.news_title) .jp {
  color: #15318B;
  font-size: 30px;
}
.section_title:not(.news_title) .en {
  font-family: "m-plus-2p", sans-serif;
}

body.home {
  background: #FFF;
}

.mv {
  height: 100vh;
  width: 100%;
}
@media (max-width: 767px) {
  .mv {
    height: 100vh;
    padding-top: 70px;
  }
}
@media (min-width: 1025px) {
  .mv {
    height: calc(100vh - 100px);
  }
}
.mv_inner {
  height: 100%;
  position: relative;
  width: 100%;
}
.mv_slide {
  height: 100%;
  width: 100%;
}
.mv_slide ul li {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.mv_slide ul li.mv_slide01 .mv_slide_copy {
  text-align: center;
}
@media (max-width: 767px) {
  .mv_slide ul li.mv_slide02 .mv_slide_copy_inline span {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .mv_slide ul li.mv_slide03 .mv_slide_copy {
    text-align: center;
  }
}
.mv_slide_inner {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media (max-width: 767px) {
  .mv_slide_logo {
    display: none;
  }
}
@media (min-width: 768px) {
  .mv_slide_logo {
    position: absolute;
    right: 0;
    top: 36px;
    width: 100%;
  }
  .mv_slide_logo img {
    margin-left: auto;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .mv_slide_logo img {
    max-width: 250px;
  }
}
@media (min-width: 768px) and (min-width: 980px) {
  .mv_slide_logo img {
    max-width: 300px;
  }
}
@media (min-width: 768px) and (min-width: 1201px) {
  .mv_slide_logo img {
    max-width: 365px;
  }
}
.mv_slide_copy {
  margin: auto;
}
@media (max-width: 767px) {
  .mv_slide_copy {
    width: 90%;
  }
}
@media (min-width: 768px) {
  .mv_slide_copy {
    max-width: 900px;
    width: 85%;
  }
}
.mv_slide_copy.centered {
  text-align: center;
}
.mv_slide_copy_inline span {
  background: rgba(147, 147, 147, 0.75);
  color: #FFF;
  display: inline-block;
  font-family: "m-plus-2p", sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 5px 15px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .mv_slide_copy_inline span {
    font-size: 36px;
    padding: 10px 20px;
  }
}
@media (min-width: 1201px) {
  .mv_slide_copy_inline span {
    font-size: 50px;
  }
}
.mv_slide_copy_inline + .mv_slide_copy_inline {
  margin-top: 5px;
}
@media (max-width: 767px) {
  .mv_slide_copy_inline.tabup {
    display: none;
  }
}
@media (min-width: 768px) {
  .mv_slide_copy_inline.sp {
    display: none;
  }
}

.about {
  position: relative;
}
.about::before {
  background: transparent url(../images/top/about_bg.jpg) no-repeat top center/cover;
  content: "";
  display: block;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 0;
}
@media (min-width: 768px) {
  .about {
    padding-top: 100px;
  }
}
@media (min-width: 1201px) {
  .about {
    padding-top: 150px;
  }
}
.about_top_list {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .about_top_list {
    justify-content: space-between;
  }
}
.about_top_item {
  background: url(../images/top/about_circle.png) no-repeat center center/contain;
  position: relative;
}
@media (max-width: 767px) {
  .about_top_item {
    height: 43vw;
    width: 43vw;
  }
  .about_top_item:nth-child(2) {
    margin-left: auto;
  }
  .about_top_item:nth-child(3) {
    margin: -20px auto 0;
  }
}
@media (max-width: 599px) {
  .about_top_item {
    max-height: 200px;
    max-width: 200px;
  }
}
@media (min-width: 600px) {
  .about_top_item {
    max-height: 300px;
    max-width: 300px;
  }
}
@media (min-width: 768px) {
  .about_top_item {
    height: max(25vw, 200px);
    width: max(25vw, 200px);
  }
}
@media (min-width: 1201px) {
  .about_top_item {
    height: max(15vw, 295px);
    width: max(15vw, 295px);
  }
}
.about_top_item::before {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  content: "";
  height: 80%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  z-index: 2;
}
.about_top_item_text {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 3;
}
.about_top_item_text span {
  color: #FFF;
}
.about_top_item_text span.en {
  display: block;
  font-size: 21px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 1201px) {
  .about_top_item_text span.en {
    font-size: 39px;
  }
}
.about_top_item_text span.jp {
  display: inline-block;
  font-size: 14px;
  margin-top: 8px;
  padding: 0 12px;
  position: relative;
}
@media (min-width: 1201px) {
  .about_top_item_text span.jp {
    font-size: 26px;
    margin-top: 15px;
  }
}
.about_top_item_text span.jp::before, .about_top_item_text span.jp::after {
  background: #FFF;
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
}
.about_top_item_text span.jp::before {
  left: 0;
}
.about_top_item_text span.jp::after {
  right: 0;
}
.about_bottom {
  background: rgba(255, 255, 255, 0.87);
}
@media (max-width: 767px) {
  .about_bottom {
    margin-top: 40px;
    padding: 30px 25px;
  }
}
@media (min-width: 768px) {
  .about_bottom {
    margin-top: 50px;
    padding: 40px 25px;
  }
}
@media (min-width: 980px) {
  .about_bottom {
    padding: 45px 35px;
  }
}
@media (min-width: 1201px) {
  .about_bottom {
    padding: 70px 45px;
  }
}
.about_bottom_text {
  font-weight: 600;
  line-height: 1.875;
}
@media (min-width: 768px) {
  .about_bottom_text {
    line-height: 2;
  }
}
@media (min-width: 1201px) {
  .about_bottom_text {
    font-size: 18px;
    line-height: 2.2222222222;
  }
}
.about_bottom_catch {
  margin-top: 24px;
}
@media (min-width: 1201px) {
  .about_bottom_catch {
    margin-top: 36px;
  }
}
.about_bottom_catch .en img {
  width: 100%;
}
.about_bottom_catch .jp {
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .about_bottom_catch .jp {
    font-size: 24px;
  }
}
@media (min-width: 1201px) {
  .about_bottom_catch .jp {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .about_bottom_catch span {
    display: block;
  }
}

.news {
  background: url(../images/top/news_bg.jpg) no-repeat center center/cover;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .news {
    padding: 90px 0 80px;
  }
}
@media (min-width: 768px) {
  .news {
    padding: 120px 0 100px;
  }
}
.news_box {
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 767px) {
  .news_box {
    padding: 62px 0 33px;
  }
}
@media (min-width: 768px) {
  .news_box {
    padding: 85px 0 60px;
  }
}
.news .section_title {
  align-items: center;
  display: flex;
}
@media (max-width: 767px) {
  .news .section_title {
    justify-content: center;
    margin-top: -82px;
  }
}
@media (min-width: 768px) {
  .news .section_title {
    margin-top: -106px;
    padding-left: 20px;
  }
}
.news .section_title .en {
  color: #313131;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.news .section_title .jp {
  color: #313131;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.3em;
  margin-left: 19px;
}
.news_entry_item {
  border-bottom: 1px dotted #707070;
  padding: 17.5px 0;
}
@media (min-width: 768px) {
  .news_entry_item {
    display: flex;
  }
}
.news_entry_date {
  color: #15318B;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .news_entry_date {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .news_entry_title {
    margin-top: 5px;
  }
}
.news_entry_title {
color: #313131;
display: block;
font-size: 16px;
font-weight: 600;
letter-spacing: 0.03em;
line-height: 1.5;
}
@media (min-width: 768px) {
.news_entry_title {
padding: 0 20px;
}
}

.greetings {
  position: relative;
}
.greetings::before {
  background: rgba(21, 49, 139, 0.88);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.greetings > .container {
  position: relative;
  z-index: 2;
}
.greetings .section_title .jp, .greetings .section_title .en {
  color: #FFF;
}
.greetings_text p {
  color: #FFF;
  line-height: 2.25;
}
@media (min-width: 768px) {
  .greetings_text p {
    font-size: 16px;
  }
}
@media (min-width: 1201px) {
  .greetings_text p {
    font-size: 18px;
  }
}
.greetings_text p span {
  display: block;
  font-weight: 600;
  margin-top: 15px;
  text-align: right;
}
@media (max-width: 767px) {
  .greetings_text p span {
    font-size: 16px;
  }
}

.vehicle {
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.vehicle .section_title .en {
  color: #707070;
}
@media (min-width: 980px) {
  .vehicle_top {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .vehicle_top_img {
    width: calc(100% - 30px);
  }
}
@media (min-width: 768px) {
  .vehicle_top_img {
    width: calc(100% - 100px);
  }
}
@media (min-width: 980px) {
  .vehicle_top_img {
    width: 52%;
  }
}
@media (min-width: 980px) {
  .vehicle_top_text {
    padding-left: 30px;
  }
}
@media (min-width: 1201px) {
  .vehicle_top_text {
    padding-left: 70px;
  }
}
@media (min-width: 980px) {
  .vehicle_top_text {
    width: 48%;
  }
}
.vehicle_top_text .vehicle_info {
  width: 100%;
}
@media (max-width: 767px) {
  .vehicle_top_text .vehicle_info {
    margin-top: 22px;
  }
}
@media (min-width: 768px) {
  .vehicle_top_text .vehicle_info {
    padding: 30px;
  }
}
@media (min-width: 980px) {
  .vehicle_top_text .vehicle_info {
    padding-left: 0;
  }
}
@media (min-width: 1201px) {
  .vehicle_top_text .vehicle_info {
    padding-right: calc((100vw - 1050px) / 2);
  }
}
.vehicle_top_text .vehicle_info > div {
  border-bottom: 1px solid #E5E5E5;
  display: flex;
}
.vehicle_top_text .vehicle_info > div:first-child {
  border-top: 1px solid #E5E5E5;
}
.vehicle_top_text .vehicle_info dt {
  color: #313131;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  padding: 8px 8px 8px 20px;
  text-align: left;
  width: 50%;
  display: flex;
  align-items: center;
}
@media (max-width: 389px) {
  .vehicle_top_text .vehicle_info dt {
    font-size: 15px;
  }
}
@media (min-width: 1201px) {
  .vehicle_top_text .vehicle_info dt {
    padding: 8px 8px 8px 25px;
  }
}
.vehicle_top_text .vehicle_info dd {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  padding: 8px 20px 8px 8px;
  text-align: left;
  width: 50%;
}
@media (max-width: 389px) {
  .vehicle_top_text .vehicle_info dd {
    font-size: 15px;
  }
}
@media (min-width: 1201px) {
  .vehicle_top_text .vehicle_info dd {
    padding: 8px 8px 8px 25px;
  }
}
.vehicle_top_note {
  background: #F7F7F7;
  margin: auto;
  max-width: 1190px;
  padding: 22px 30px 35px;
  width: 100%;
}
@media (min-width: 768px) {
  .vehicle_top_note {
    margin-top: 27px;
    width: calc(100% - 60px);
  }
}
@media (min-width: 1201px) {
  .vehicle_top_note {
    padding: 24px 20px 34px;
  }
}
.vehicle_top_note p {
  line-height: 2;
  margin: auto;
  max-width: 800px;
}
.vehicle_top_note p span {
  display: inline-block;
}
@media (max-width: 767px) {
  .vehicle_visual {
    margin: 20px calc(50% - 50vw) 0;
    width: 100vw;
  }
}
@media (min-width: 768px) {
  .vehicle_visual {
    margin-top: 20px;
  }
}
@media (min-width: 1201px) {
  .vehicle_visual {
    margin-top: 40px;
  }
}
.vehicle_visual .sp_slide {
  z-index: 2;
}
@media (min-width: 768px) {
  .vehicle_visual .sp_slide {
    display: none;
  }
}
.vehicle_visual_slider {
  display: flex;
  overflow: hidden;
  z-index: 3;
  position: relative;
}
.vehicle_visual_list {
  position: relative;
  z-index: 2;
  animation: loop-slide 90s infinite linear 1s both;
}
.vehicle_visual_list {
  display: flex;
}
.vehicle_visual_list li {
  width: 16.66666667vw;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .vehicle_visual_list li {
    width: 57vw;
  }
}
@media (min-width: 1201px) {
  .vehicle_visual_list li {
    margin-right: 16px;
  }
}
.vehicle_visual_list li img {
  width: 100%;
}
.vehicle_visual_deco {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.vehicle_visual_deco_inner {
  background: #15318B;
  padding: 10px 0;
  position: relative;
}
@media (min-width: 768px) {
  .vehicle_visual_deco_inner {
    margin-left: auto;
    padding: 15px;
    width: 90vw;
  }
}
@media (min-width: 768px) and (max-width: 1250px) {
  .vehicle_visual_deco_inner {
    padding-right: 30px;
  }
}
@media (min-width: 1201px) {
  .vehicle_visual_deco_inner {
    width: calc(100vw - ((100vw - 900px) / 2));
  }
}
@media (min-width: 1251px) {
  .vehicle_visual_deco_inner {
    padding-right: calc(( (100vw - 1250px) / 2 ) + 30px );
  }
}
.vehicle_visual_deco_inner::before {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .vehicle_visual_deco_inner::before {
    background: #15318B;
    height: 80px;
    top: -80px;
  }
}
@media (min-width: 768px) {
  .vehicle_visual_deco_inner::before {
    background: linear-gradient(to bottom, #23409F, #23409F 80%, #15318B 80%, #15318B);
    height: 150px;
    top: -149px;
  }
}
@media (max-width: 767px) {
  .vehicle_visual_deco_inner p img {
    margin: auto;
    width: 85%;
  }
}
@media (min-width: 768px) {
  .vehicle_visual_deco_inner p img {
    margin-left: auto;
    width: 70%;
  }
}
.vehicle_bottom {
  margin-top: 40px;
}
@media (min-width: 1201px) {
  .vehicle_bottom {
    margin-top: 64px;
  }
}
.vehicle_bottom_box {
  background: #FFF;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.13);
  padding: 16px;
}
@media (min-width: 768px) {
  .vehicle_bottom_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.vehicle_bottom_box + .vehicle_bottom_box {
  margin-top: 31px;
}
@media (min-width: 768px) {
  .vehicle_bottom_box_img {
    width: 44%;
  }
}
@media (min-width: 980px) {
  .vehicle_bottom_box_img {
    width: 49%;
  }
}
.vehicle_bottom_box_img img {
  height: auto;
  width: 100%;
}
.vehicle_bottom_box_img .flex {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .vehicle_bottom_box_img .flex {
    margin-top: 7px;
  }
}
@media (min-width: 768px) {
  .vehicle_bottom_box_img .flex {
    margin-top: 14px;
  }
}
.vehicle_bottom_box_img .flex img:first-child {
  width: 44%;
}
.vehicle_bottom_box_img .flex img:last-child {
  width: 53%;
}
@media (max-width: 767px) {
  .vehicle_bottom_box_text {
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .vehicle_bottom_box_text {
    padding-top: 12px;
    width: 54%;
  }
}
@media (min-width: 980px) {
  .vehicle_bottom_box_text {
    width: 49%;
  }
}
@media (min-width: 1201px) {
  .vehicle_bottom_box_text {
    padding-top: 26px;
  }
}
.vehicle_bottom_box_text h3 {
  color: #15318B;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .vehicle_bottom_box_text h3 {
    text-align: center;
  }
}
.vehicle_bottom_box_text p {
  line-height: 1.6875;
  margin-top: 17px;
}
@keyframes loop-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.home .contact {
  background: url(../images/top/contact_bg.jpg) no-repeat center center/cover;
  position: relative;
  z-index: 1;
}
.home .contact .section_title .en {
  color: #707070;
}
.home .contact_button {
  width: 100%;
}
@media (min-width: 768px) {
  .home .contact_button {
    height: 120px;
  }
}
@media (min-width: 980px) {
  .home .contact_button {
    height: 150px;
  }
}
.home .contact_button a {
  border-radius: 11px;
  box-shadow: 0px 6px 30px rgba(31, 96, 201, 0.3);
}
@media (max-width: 767px) {
  .home .contact_button a {
    display: block;
    padding: 20px 8px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .home .contact_button a {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-between;
    padding: 25px 35px;
  }
}
@media (min-width: 980px) {
  .home .contact_button a {
    padding: 35px 50px;
  }
}
@media (max-width: 767px) {
  .home .contact_button a .contact_button_icon {
    margin: auto;
  }
}
.home .contact_button a .contact_button_title {
  color: #FFF;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 767px) {
  .home .contact_button a .contact_button_title {
    font-size: 22px;
    margin-top: 15px;
  }
}
@media (min-width: 768px) {
  .home .contact_button a .contact_button_title {
    font-size: 24px;
  }
}
@media (min-width: 980px) {
  .home .contact_button a .contact_button_title {
    font-size: 30px;
  }
}
.home .contact_button a .contact_button_title span {
  color: #FFF;
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .home .contact_button a .contact_button_title span {
    margin-top: 8px;
  }
}
.home .contact_button a .contact_button_text {
  color: #FFF;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
}
@media (max-width: 767px) {
  .home .contact_button a .contact_button_text {
    font-size: 13px;
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .home .contact_button a .contact_button_text {
    font-size: 14px;
  }
}
@media (min-width: 980px) {
  .home .contact_button a .contact_button_text {
    font-size: 16px;
  }
}
.home .contact_button a.form {
  background: #15318B;
}
.home .contact_button a.recruit {
  background: #4398E2;
}
@media (max-width: 767px) {
  .home .contact_button a.recruit {
    margin-top: 17px;
  }
}
@media (min-width: 768px) {
  .home .contact_button a.recruit {
    margin-top: 28px;
  }
}

.company {
  background: #FFF;
  position: relative;
  z-index: 1;
}
.company .section_title .jp {
  color: #404040;
}
.company .section_title .en {
  color: #15318B;
}
@media (min-width: 980px) {
  .company_cont {
    align-items: stretch;
    display: flex;
  }
}
.company_titleArea {
  align-items: center;
  background: url(../images/top/company_bg.jpg) no-repeat center center/cover;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .company_titleArea {
    padding: 116px 44px;
  }
}
@media (min-width: 768px) {
  .company_titleArea {
    padding: 116px 44px;
  }
}
@media (min-width: 980px) {
  .company_titleArea {
    padding: 0;
    width: 50%;
  }
}
.company_titleArea .company_title_box {
  background: rgba(255, 255, 255, 0.38);
  display: inline-block;
}
@media (max-width: 767px) {
  .company_titleArea .company_title_box {
    padding: 22px 56px;
  }
}
@media (min-width: 768px) {
  .company_titleArea .company_title_box {
    padding: 22px 56px;
  }
}
@media (min-width: 980px) {
  .company_titleArea .company_title_box {
    padding: 40px 100px;
  }
}
@media (min-width: 1201px) {
  .company_titleArea .company_title_box {
    padding: 60px 150px;
  }
}
.company_infoArea {
  background: #FFF;
}
@media (max-width: 767px) {
  .company_infoArea {
    padding-bottom: 40px;
    padding-top: 22px;
  }
}
@media (min-width: 768px) {
  .company_infoArea {
    padding: 40px;
  }
}
@media (min-width: 980px) {
  .company_infoArea {
    padding: 32px 30px 32px 32px;
    width: 50%;
  }
}
@media (min-width: 1201px) {
  .company_infoArea {
    padding: 58px 30px 58px 66px;
  }
}
@media (min-width: 1250px) {
  .company_infoArea {
    padding-right: calc((100vw - 1190px) / 2);
  }
}
.company_infoArea .company_info {
  width: 100%;
}
.company_infoArea .company_info > div {
  border-bottom: 1px solid #E5E5E5;
  display: flex;
  min-height: 33px;
}
.company_infoArea .company_info > div:first-child {
  border-top: 1px solid #E5E5E5;
}
.company_infoArea .company_info dt {
  color: #313131;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  padding: 8px 8px 8px 25px;
  text-align: left;
}
@media (max-width: 767px) {
  .company_infoArea .company_info dt {
    color: #15318B;
    width: 32%;
  }
}
@media (min-width: 768px) {
  .company_infoArea .company_info dt {
    color: #313131;
    padding: 8px;
    width: 30%;
  }
}
@media (min-width: 980px) {
  .company_infoArea .company_info dt {
    width: 25%;
  }
}
@media (min-width: 1201px) {
  .company_infoArea .company_info dt {
    padding: 8px 8px 8px 25px;
    width: 20%;
  }
}
.company_infoArea .company_info dd {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  padding: 8px 8px 8px 8px;
  text-align: left;
}
@media (max-width: 767px) {
  .company_infoArea .company_info dd {
    width: 68%;
  }
}
@media (min-width: 768px) {
  .company_infoArea .company_info dd {
    width: 70%;
  }
}
@media (min-width: 980px) {
  .company_infoArea .company_info dd {
    width: 75%;
  }
}
@media (min-width: 1201px) {
  .company_infoArea .company_info dd {
    width: 80%;
  }
}
.company_infoArea .company_info dd span {
  font-weight: 600;
}
.company_infoArea .company_brochure {
  margin: auto;
  max-width: 400px;
}
@media (max-width: 767px) {
  .company_infoArea .company_brochure {
    margin-top: 24px;
    width: calc(100% - 28px);
  }
}
@media (min-width: 768px) {
  .company_infoArea .company_brochure {
    margin-top: 36px;
    width: 100%;
  }
}
.company_infoArea .company_brochure a {
  background: #4398E2;
  border-radius: 11px;
  box-shadow: 0px 6px 30px rgba(31, 96, 201, 0.3);
  color: #FFF;
  display: block;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 767px) {
  .company_infoArea .company_brochure a {
    padding: 22px 22px 23px;
  }
}
@media (min-width: 768px) {
  .company_infoArea .company_brochure a {
    padding: 25px 25px 26px;
  }
}
.company_map .iframe_wrap {
  position: relative;
}
@media (max-width: 767px) {
  .company_map .iframe_wrap {
    padding-top: 70%;
  }
}
@media (min-width: 768px) {
  .company_map .iframe_wrap {
    padding-top: 32.395%;
  }
}
.company_map .iframe_wrap iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.company_map .iframe_wrap::before {
  background: #FFF;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.trailer_gallery {
  padding: 30px 0 130px;
}
.trailer_gallery__title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.trailer_gallery__lead {
  text-align: center;
  margin-top: 10px;
}
.trailer_gallery__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 32.436975% 15.714286% 32.436975% 15.714286%;
  grid-template-rows: 1fr 1fr;
  row-gap: 11px;
  column-gap: 11px;
  max-width: 1190px;
  margin-left: auto;
  margin-right: auto;
}
.trailer_gallery__item {
  position: relative;
}
.trailer_gallery__item:nth-of-type(1) {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.trailer_gallery__item:nth-of-type(2) {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}
.trailer_gallery__item:nth-of-type(3) {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}
.trailer_gallery__item:nth-of-type(4) {
  grid-row: 1 / 3;
  grid-column: 3 / 4;
}
.trailer_gallery__item:nth-of-type(5) {
  grid-row: 1 / 2;
  grid-column: 4 / 5;
}
.trailer_gallery__item:nth-of-type(6) {
  grid-row: 2 / 3;
  grid-column: 4 / 5;
}
.js-trailerModalOpen {
  padding: 0;
}
.js-trailerModalOpen .open {
  position: absolute;
  bottom: 11px;
  right: 11px;
  width: 61px;
  height: 61px;
  padding: 0;
}
.trailer_gallery_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(49, 49, 49, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s, visibility 0.3s;
}
.trailer_gallery_modal[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
}
.trailer_gallery_modal__content {
  position: relative;
  overflow: hidden;
  max-width: min(1000px, 95vw);
}
@media screen and (min-width: 1280px){
  .trailer_gallery_modal__content {
    max-width: min(1400px, 95vw);
  }
}
.trailer_gallery_modal__list {
  max-height: min(684px, 95vh);
}
@media screen and (min-width: 1280px){
  .trailer_gallery_modal__list {
    max-height: min(900px, 95vh);
  }
}
.trailer_gallery_modal__item {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.trailer_gallery_modal__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#js-trailerModalClose {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  width: 40px;
  padding: 0;
}
.js-trailerModalPrev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 5;
  width: 70px;
  padding: 0;
}
.js-trailerModalNext {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 5;
  width: 70px;
  padding: 0;
}
body.scroll-lock {
  overflow: hidden !important;
}
body.scroll-lock-windows {
  position: fixed !important;
  overflow-y: scroll !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
}
@media screen and (max-width: 767px) {
  .trailer_gallery {
    padding: 50px 0 100px;
  }
  .trailer_gallery__list {
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr 0.5fr 1fr 0.5fr;
    row-gap: 7px;
    column-gap: 7px;
  }
  .trailer_gallery__item:nth-of-type(1) {
    grid-row: 1;
    grid-column: 1 / 3;
  }
  .trailer_gallery__item:nth-of-type(2) {
    grid-row: 2;
    grid-column: 1 / 2;
  }
  .trailer_gallery__item:nth-of-type(3) {
    grid-row: 2;
    grid-column: 2 / 3;
  }
  .trailer_gallery__item:nth-of-type(4) {
    grid-row: 3;
    grid-column: 1 / 3;
  }
  .trailer_gallery__item:nth-of-type(5) {
    grid-row: 4;
    grid-column: 1 / 2;
  }
  .trailer_gallery__item:nth-of-type(6) {
    grid-row: 4;
    grid-column: 2 / 3;
  }
  .js-trailerModalOpen .open {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
  }
  #js-trailerModalClose {
    width: 30px;
  }
  .js-trailerModalPrev {
    width: 40px;
  }
  .js-trailerModalNext {
    width: 40px;
  }
}
button[type=button] {
  cursor: pointer;
}
/*# sourceMappingURL=sourcemaps/top.css.map */