@charset "utf-8";
/* CSS Document */
/*★★ index.css ★★*/
/*
----------------------------
　SP                        
----------------------------
*/
/*●●●●●●●● opening ●●●●●●●● */
.opening {
  background: #113d97;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}
.opening p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 140px;
}
/*●●●●●●●● main_visual ●●●●●●●● */
.main_visual {
  position: relative;
  overflow: hidden;
}
.main_visual .zoom_slider {
  position: relative;
  z-index: 100;
}
.bx-wrapper {
  border: none !important;
  margin-bottom: 0 !important;
  box-shadow: none !important;
}
.zoom_slider > li[aria-hidden="false"] {
  animation: anime_zoom 4s linear;
}
.zoom_slider > li[aria-hidden="true"] {
  transform: scale(1.2);
}
@keyframes anime_zoom {
  0% {
    transform: scale(1.0);
  }
  100% {
    transform: scale(1.2);
  }
}
.catch {
  position: relative;
  top: -190px;
  left: -70px;
  right: 0;
  z-index: 200;
  background: rgba(0, 52, 102, 0.9);
  padding: 30px;
  max-width: 338px;
}

.catch p {
  display: block;
  color: #fff;
  padding-left: 70px;
  font-size: 2.5rem;
  letter-spacing: 1.5px;
  line-height: 1.2;
}
.catch p.txt01 {
  margin-bottom: 15px;
}
.catch p.txt02 {
  font-size: 1rem;
  margin: 20px 0;
  margin-left: 2px;
}
.catch p.txt03 {
  font-size: 1.2rem;
  line-height: 1.5;
}
.catch p.move {
  opacity: 0;
}
.catch p.move span {
  opacity: 0;
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}

/*●●●●●●●● flow_img ●●●●●●●● */
.flow_img {
  top: -150px;
  position: relative;
  overflow: hidden;
}
.flow_img .screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: 2s cubic-bezier(.26, 0, .07, 1);
}
.flow_img .screen.show {
  transform: translateX(100%);
}
@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}
/*●●●●●●●● service ●●●●●●●● */
.service {
  margin-top: -160px;
}
.service .flex_container div {
  position: relative;
  margin: 20px 0 58px;
}
.service .flex_container div figure {
  overflow: hidden;
  position: relative;
  z-index: -10;
  margin-bottom: 10px;
}
.service .flex_container div figure img {
  transition: 0.3s;
  opacity: 0.9;
}
.service .flex_container div h3 {
  position: absolute;
  top: 15%;
  color: #fff;
  background: #003466;
  font-weight: 500;
  font-size: 2rem;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  padding: 0 15px
}
.service .flex_container div h3 span {
  display: block;
  font-size: 1.4rem;
  padding-left: 3px;
}
.service .btn {
  position: relative;
  height: 54px;
}
.service .btn a {
  display: inline-block;
  border: 1px solid #113D97;
  color: #113D97;
  margin: auto;
  padding: 15px;
  position: absolute;
  left: 20%;
  right: 20%;
  overflow: hidden;
  width: 30%;
  min-width: 240px;
  text-align: center;
}
.service .btn a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: '';
  width: 120%;
  height: 100%;
  background: #113D97;
  transform-origin: right top;
  transform: skewX(-30deg) scale(0, 1);
  transition: transform .3s;
}
.service .btn a:hover {
  color: #fff;
}
.service .btn a:hover:before {
  transform-origin: left top;
  transform: skewX(-30deg) scale(1, 1);
}
section.news {
  padding: 3rem 0;
  position: relative;
  background: url("../img/index_news_figure.jpg") center center no-repeat;
  background-size: coverc;
}
.news .sc_ttl {
  position: relative;
  z-index: 10;
}
.news ul {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.6);
  padding: 20px 1.5rem;
}
.news ul li .date {
  font-size: 85%;
}
.news ul li .ttl {
  margin: 15px 0;
  font-size: 120%;
}
.news .btn {
  position: relative;
  height: 54px;
  margin-top: 25px;
}
.news .btn a {
  display: inline-block;
  border: 1px solid #113D97;
  color: #113D97;
  margin: auto;
  padding: 15px;
  position: absolute;
  left: 20%;
  right: 20%;
  overflow: hidden;
  width: 30%;
  min-width: 240px;
  text-align: center;
}
.news .btn a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: '';
  width: 120%;
  height: 100%;
  background: #113D97;
  transform-origin: right top;
  transform: skewX(-30deg) scale(0, 1);
  transition: transform .3s;
}
.news .btn a:hover {
  color: #fff;
}
.news .btn a:hover:before {
  transform-origin: left top;
  transform: skewX(-30deg) scale(1, 1);
}
/*
----------------------------
　TB                        
----------------------------
*/
@media screen and (min-width: 768px) {
  .catch {
    top: -200px;
    padding: 30px 50px;
    max-width: 423px;
  }
  .catch p {
    font-size: 3.5rem;
  }
  .catch p.txt02 {
    font-size: 1.2rem;
    margin: 23px 0 30px;
  }
  .catch p.txt03 {
    font-size: 1.2rem;
  }
  /*●●●●●●●● service ●●●●●●●● */
  .service .flex_container {
    display: flex;
    justify-content: space-between;
  }
  .service .flex_container div {
    width: 32%;
  }
  .service .flex_container div h3 {
    text-align: center;
  }
}
/*
----------------------------
　PC                        
----------------------------
*/
@media screen and (min-width: 1140px) {
  /*●●●●●●●● main_visual ●●●●●●●● */
  .main_visual {
    height: 640px;
    overflow: hidden;
    margin-top: -105px;
  }
  .main_visual .bx-wrapper {
    width: 75% !important;
    position: absolute;
    right: 0;
  }
  .catch {
    top: -510px;
    left: -50px;
    max-width: 665px;
    background: transparent;
  }
/*
  .catch div.sp {
  display: none;
}
*/
  .catch p {
    font-size: 7rem;
    color: #000;
  }
  .catch p.txt01 {
    color: #003466;
  }
  .catch p.txt02 {
    padding-left: 80px;
    margin-top: 28px;
  }
  .catch p.txt03 {
    padding-left: 80px;
    margin-top: 5px;
    font-size: 2.5rem;
    margin-bottom: -10px;
  }
  .scroll {
    position: relative;
    top: -485px;
    left: 0;
  }
  .scroll .txt {
    position: absolute;
    left: 80px;
    bottom: -40px;
    background: #003466;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 1px;
    writing-mode: vertical-lr;
    padding: 8px 3px 8px 4px;
  }
  .scroll .boeder {
    display: inline-block;
    position: absolute;
    left: 78px;
    bottom: -120px;
    z-index: 2;
    padding: 10px 10px 80px;
    overflow: hidden;
  }
  .scroll .boeder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 40px;
    background: #003466;
    animation: sdl 1.5s ease infinite;
  }
  .flow_img {
    top: -300px;
  }
  .service {
    margin-top: -280px;
  }
  .service p {
    text-align: center;
  }
  .service .flex_container p {
    text-align: left;
  }
  .service .flex_container div {
    margin: 30px 0 40px;
  }
  section.news {
    max-width: 100%;
  }
  .news ul {
    max-width: 1100px;
    margin: auto;
    padding: 35px;
  }
  .news .btn {
    margin-top: 35px;
  }
}
@keyframes sdl {
  0% {
    transform: translateY(-70px);
  }
  50%, 100% {
    transform: translateY(40px);
  }
}