@charset "UTF-8";
/* common */
html{
  scroll-behavior: smooth;
}
body{
  /* width: 100%;
  height: 100%; */
  height: 100vh;
  position: relative;
}
/* section{
  padding: 0 5%;
} */
.footer{
  width: 100%;
  background: #ff0000;
  padding: 1% 0;
  position: absolute;
  bottom: 0;
}
.footer .footerTxt{
  color: #fff;
  text-align: center;
  font-size: 12px;
}
.page_wrap{
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width:768px){
  .page_wrap{
    position: fixed;
    top: 10%;
    transform: translateY(-50%);
  }
}

.page_wrap li{
  margin-bottom: 20px;
}

.page_wrap a{
  border: 1px solid #fff;
  border-radius: 50%;
  display: block;
  width: 10px;
  height: 10px;
}
.page_wrap a.active{
  background: #fff;
}

/* ================= */


/* PC SP 表示切り替え */
.pc{
  display: block;
  width: 100%;
}
.sp{
  display: none;
}
/* ================= */


/* ナビゲーション */
nav{
  width: 100%;
  /* height: 100%; */
  position: absolute;
  top: 5%;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 1;
}
nav .logo{
  width: 10%;
}
nav .logo a{
  display: block;
}
nav .navBtn{
  width: 30%;
  display: flex;
  justify-content: space-between;
}
nav ul li{
  display: inline-block;
  text-align: center;
  position: relative;
}
nav ul li::after{
  content: "";
  width: 7px;
  height: 4px;
  background: url(../img/nav_arw_icon.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  bottom: 40%;
  left: 0;
  right: 0;
  margin: auto;
}
nav ul li:hover::after{
  bottom: 30%;
  transition: 0.2s ease-in-out;
}
nav ul li a{
  display: inline-block;
  font-size: 18px;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
}
nav ul li a span{
  color: #ff0000;
}

@media screen and (max-width:768px){
  nav .logo{
    width: 30%;
  }
  nav .navBtn{
    display: none;
  }
}
/* ================= */





.sec{
  width: 100%;
  /* height: 100vh; */
  position: relative;
}

.sec_fv{
  width: 100%;
  height: 100vh;
  background: url(../img/fv_bg_pc.png) no-repeat center center;
  background-size: cover;
}
.sec_fv::after{
  content: "";
  width: 70px;
  height: 70px;
  background: url(../img/scroll_icon.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  margin: auto;
}
.sec_fv .h1{
  width: 1200px;
    height: 276px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* セクション01 */
.sec .inner{
  width: 70%;
  margin: 0 auto;
  padding-top: 5%;
}
.sec_01{
  padding-bottom: 5%;
  background-image: url(../img/bus_bg_text_pc.png);
  background-color: #1a1f3a;
  background-size: contain;
  background-position: 87%;
  background-color: #1a1f3a;
}
.sec_01 .inner h2{
  width: 65%;
  margin-bottom: 5%;
}
.sec_01 .inner h3{
  width: 60%;
  margin: 0 auto 5%;
}

.swiper-parent{
  position:relative
}
.swiper-pagination{
  bottom: -30px !important;
}
.swiper-pagination-bullet{
  background: rgba(255,255,255,0.5) !important;
}
.swiper-pagination-bullet-active{
  background: rgba(255,255,255,1) !important;
}


.swiper--wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  /* height: 300px; */
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  width: 100%;
  height: 100%;
  text-align: center;
  /* line-height: 300px; */
}
.swiper-slide img.pc{
  width: 95%;
}






/* セクション02 */
.sec_02{
  background-image: url(../img/com_bg_text_pc.png);
  background-size: contain;
  background-position: 13%;
  background-color: #171717;
  height: 100vh;
}
.sec_02 .inner h2{
  width: 65%;
  margin-bottom: 5%;
}
.sec_02 .innerTxt table{
  margin: 0 auto;
}
.sec_02 .innerTxt table .head{
  color: #535353;
}
.sec_02 .innerTxt table td{
  color: #fff;
  padding: 15px 30px;
  font-size: 20px;
  line-height: 25px;
}

/* フェードイン */
.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media screen and (max-width:768px) {
  .sec_fv{
    width: 100%;
    height: 90vh;
    background: url(../img/fv_bg_sp.png) no-repeat top center;
    background-size: cover;
  }
  .sec_fv::after{
    content: "";
    width: 50px;
    height: 50px;
    background: url(../img/scroll_icon.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
    margin: auto;
  }
  .sec_fv .h1{
    width: 93%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .sec .inner{
    width: 93%;
    margin: 0 auto;
    padding-top: 15%;
  }
  .sec_01{
    background-image: none;
    padding-bottom: 15%;
  }
  .sec_01 .inner h2{
    width: 100%;
    margin-bottom: 15%;
  }
  .sec_01 .inner h3{
    width: 100%;
    margin: 0 auto 15%;
  }

  .sec_02{
    height: auto;
    background-image: none;
    padding-bottom: 20%;
  }
  .sec_02 .inner h2{
    width: 100%;
    margin-bottom: 5%;
  }
  .sec_02 .innerTxt table{
    margin: 0 auto;
  }
  .sec_02 .innerTxt table .head{
    color: #535353;
    padding: 30px 0 0 0;
  }
  .sec_02 .innerTxt table td{
    padding: 10px 0;
    float:left;
    clear:both;
  }
}





/* ========== SP ========== */
@media screen and (max-width:768px) {
  .pc{
    display: none;
  }
  .sp{
    display: block;
    width: 100%;
  }
}


