@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* ------------------------------------------------------
 * MV アニメーション
------------------------------------------------------ */
header .header_inner a, header .header_inner .header_utility {
  transition: 0.5s;
  opacity: 0;
}

.show_header .header_inner a, .show_header .header_inner .header_utility {
  opacity: 1;
}

.mv {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #2D4CB2;
}
.mv h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(1.1);
  width: 70vw;
  margin: 0;
  z-index: 4;
  opacity: 0;
}
.mv .show_title {
  animation: fadeInTitle 0.3s ease-out 1.2s forwards;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: -45px;
  }
  .mv h1 {
    width: 98vw;
  }
  .mv h1 img {
    width: 100%;
  }
}
.mv .stripe {
  position: absolute;
  height: 100vh;
  top: 0;
  transform: skewX(-15deg);
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
.mv .white {
  background-color: #fff;
}
.mv .navy {
  background-color: #0D2572;
}
.mv .navy_2 {
  background-color: #01134B;
}
.mv .s1 {
  width: 1vw;
  left: 10vw;
}
.mv .s2 {
  width: 13vw;
  left: -3vw;
}
.mv .s3 {
  width: 0.3vw;
  left: 27vw;
}
.mv .s4 {
  width: 18vw;
  left: 99vw;
}
.mv .s5 {
  width: 4vw;
  left: 95vw;
}
.mv .s6 {
  width: 5vw;
  left: 82vw;
}
.mv .s7 {
  width: 27vw;
  left: 58vw;
}
@media screen and (max-width: 768px) {
  .mv .s1 {
    width: 2.5vw;
    left: -16vw;
  }
  .mv .s2 {
    width: 13vw;
    left: -29vw;
  }
  .mv .s3 {
    width: 0.5vw;
    left: -7vw;
  }
  .mv .s4 {
    width: 18vw;
    left: 113vw;
  }
  .mv .s5 {
    width: 8vw;
    left: 105vw;
  }
  .mv .s6 {
    width: 4vw;
    left: 89vw;
  }
  .mv .s7 {
    width: 83vw;
    left: 7vw;
  }
}
.mv .animate.s1 {
  animation: reveal 0.2s ease-out 0s forwards;
}
.mv .animate.s2 {
  animation: reveal 0.2s ease-out 0.2s forwards;
}
.mv .animate.s3 {
  animation: reveal 0.2s ease-out 0.4s forwards;
}
.mv .animate.s4 {
  animation: reveal 0.2s ease-out 0.2s forwards;
}
.mv .animate.s5 {
  animation: reveal 0.2s ease-out 0.6s forwards;
}
.mv .animate.s6 {
  animation: reveal 0.2s ease-out 0.7s forwards;
}
.mv .animate.s7 {
  animation: reveal 0.2s ease-out 0.8s forwards;
}
.mv .slider-wrap {
  position: absolute;
  top: 0;
  left: 58vw;
  width: 27vw;
  height: 100vh;
  z-index: 3;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  transform: skewX(-15deg);
}
.mv .slider-wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(32, 32, 32, 0.1);
  position: absolute;
  top: 0;
  left: 0;
}
.mv .slider-wrap .slider {
  width: 50vw;
  height: 100vh;
  margin-left: -10vw;
  transform: skewX(15deg);
}
.mv .slider-wrap .slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .slider-wrap .slick-list {
  width: 100%;
}
.mv .slider-wrap .slick-list, .mv .slider-wrap .slick-track {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .mv .slider-wrap {
    left: 7vw;
    width: 82.5vw;
  }
  .mv .slider-wrap .slider {
    width: 103vw;
    height: 112vh;
    margin-left: -12vw;
    margin-top: -20vw;
  }
}

.slider-wrap.slider-scaleup .slick-slide img {
  transition: 10s;
  transform: scale(1);
}
.slider-wrap.slider-scaleup .slick-slide.slick-active img {
  transform: scale(1.07);
}

.slider-wrap.slider-animation {
  animation: revealSlider 0.4s ease-out forwards;
  animation-delay: 1.6s;
}

@keyframes reveal {
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes fadeInTitle {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes revealSlider {
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
.scroll_down {
  opacity: 0;
  position: absolute;
  bottom: 50px;
  right: 50%;
  animation: arrowmove 1s ease-in-out infinite;
  transition: 0.5s;
  z-index: 3;
}
.scroll_down > div {
  position: absolute;
  left: -24px;
  bottom: 30px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: 24px;
  height: 24px;
  text-decoration: none;
}
.scroll_down .scroll_down_text {
  display: block;
  margin-top: 70px;
  margin-left: -14px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2px;
}
.scroll_down .scroll_down_arrow {
  position: absolute;
  width: 28px;
  height: 5px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: scrollmove 3s ease-out infinite;
}
.scroll_down .scroll_down_arrow:first-child {
  animation: scrollmove 3s ease-out 1s infinite;
}
.scroll_down .scroll_down_arrow:nth-child(2) {
  animation: scrollmove 3s ease-out 2s infinite;
}
.scroll_down .scroll_down_arrow::before, .scroll_down .scroll_down_arrow::after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}
.scroll_down .scroll_down_arrow::before {
  left: 0;
  transform: skew(0deg, 30deg);
}
.scroll_down .scroll_down_arrow::after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}
@media screen and (max-width: 768px) {
  .scroll_down {
    bottom: 100px;
  }
}

.show_scroll_down {
  opacity: 1;
}

@keyframes scrollmove {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
/* ------------------------------------------------------
 * Section
------------------------------------------------------ */
.section_aboutus {
  padding: 128px 0;
}
.section_aboutus .hdg_01 {
  margin: 0 0 30px;
}
.section_person .section_inner {
  position: relative;
}
.section_information {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .section_aboutus {
    padding: 60px 0 80px;
  }
  .section_aboutus .hdg_01 {
    margin: 0 0 10px;
  }
}

/* ------------------------------------------------------
 * ABOUT US
------------------------------------------------------ */
.aboutus_lead {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 55px;
  display: block;
}
.aboutus_txt {
  max-width: 1064px;
}
.aboutus_ticker {
  width: 100%;
  height: 340px;
  margin: 120px 0 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: default;
}
.aboutus_ticker_items {
  height: 100%;
  display: flex;
  align-items: center;
  animation: key_scrollLeft 75s linear infinite;
  flex-shrink: 0;
}
.aboutus_ticker_item {
  height: 100%;
}
.aboutus_ticker_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .aboutus_lead {
    font-size: 20px;
    line-height: 1.8;
    margin: 0 0 35px;
  }
  .aboutus_txt {
    max-width: none;
  }
  .aboutus_ticker {
    height: 160px;
    margin: 35px 0 0;
  }
  .aboutus_ticker_item {
    width: 240px;
  }
}

/* ------------------------------------------------------
 * PERSON
------------------------------------------------------ */
.person_btn {
  position: absolute;
  top: 25px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .person_btn {
    text-align: center;
    position: static;
  }
}

/* ------------------------------------------------------
 * INFORMATION
------------------------------------------------------ */
.information_list {
  display: flex;
  flex-wrap: wrap;
}
.information_list > li {
  width: 50%;
  overflow: hidden;
}
.information_list_inner {
  position: relative;
  display: block;
}
.information_list_inner:before, .information_list_inner:after {
  content: "";
  position: absolute;
  display: block;
}
.information_list_inner:before {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  bottom: 15px;
  right: 15px;
  z-index: 1;
}
.information_list_inner:after {
  width: 16px;
  height: 12px;
  background: url("../img/common/icon_arrow_right_01.svg") no-repeat 50% 50%;
  background-size: auto 100%;
  bottom: 42px;
  right: 42px;
  z-index: 2;
}
.information_list_title {
  border-radius: 0 0 8px 0;
  background: #2D4CB2;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 20px 30px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.information_list_img {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .information_list {
    display: block;
  }
  .information_list > li {
    width: 100%;
  }
  .information_list_inner:before {
    width: 34px;
    height: 34px;
    bottom: 10px;
    right: 15px;
  }
  .information_list_inner:after {
    width: 12px;
    height: 8px;
    bottom: 23px;
    right: 25px;
  }
  .information_list_title {
    font-size: 14px;
    padding: 9px 15px;
  }
}

/* ------------------------------------------------------
 * [Overwrite] Header
------------------------------------------------------ */
@media screen and (min-width: 769px) {
  .header_logo {
    background: transparent;
  }
}