/* home hero */

.hero {
  position: relative;
  line-height: 0;
}

.hero-copy {
  width: 615px;
  height: 276px;
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero-copy img {
  width: 100%;
}

.hero-slide-item img {
  width: 100%;
}

@media screen and (max-width: 768px) {

  .hero-copy {
    width: 290px;
    height: 131px;
  }

}

.banner {
  /* margin: 110px 0 130px 0; */
  margin: 60px 0 70px 0;
}

.banner-list {
  display: flex;
  justify-content: center;
  width: 1100px;
  margin: 0 auto;
}

.banner-list-item {
  width: 350px;
  line-height: 0;
  margin: 0 12px;
}

.banner-list-item img {
  width: 100%;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.banner-list-item a:hover img {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {

  .banner {
    margin: 40px 0 60px 0;
  }
.banner-list {
  width: 100%;
}
}

.service {
  /* padding: 100px 0; */
  padding: 50px 0;
  background-color: #2B509F;
}

.service-wrapper {
  /* width: 1000px; */
  width: 1200px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service-list-item {
  margin: 0 0 20px 0;
  line-height: 0;
}

.service-list-item.is-short {
  /* width: 49%; */
  width: 32%;
}

.service-list-item .is-btn {
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.service-list-item .is-btn:hover {
  opacity: 0.8;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.5));
}

.service-list-item img {
  width: 100%;
}

@media screen and (max-width: 768px) {

  .service {
    padding: 7% 0 5% 0;
  }

  .service-wrapper {
    width: 100%;
  }

  .service-ttl {
    font-size: 15px;
    padding: 0 0 15px 0;
    margin: 0 0 37px 0;
  }

  .service-list-item.is-short {
    width: 100%;
  }

  .service-list-item.is-long {
    display: none;
  }

  .service-nav-ttl-txt {
    font-size: 14px;
  }

  .service-nav-ttl-txt {
    font-size: 14px;
  }

  .service-nav-list-btn {
    font-size: 13px;
  }

}

@media screen and (max-width: 414px) {

  .service {
    background-image: url(../images/home/service_bg_sp.png);
    background-size: contain;
    background-position: center bottom;
  }

  .service-nav {
    display: block;
  }

  .service-nav-item {
    width: 100%;
    margin: 0 0 60px 0;
  }

  .service-nav-item:last-child {
    margin: 0;
  }

}

.movie {
  padding: 80px 0 90px 0;
}

.movie-ttl {
  font-size: 50px;
  text-align: center;
  font-weight: bold;
  color: #2B509F;
}

.movie-copy {
  text-align: center;
  font-size: 18px;
  color: #2B509F;
  margin: 0 0 40px 0;
}

.movie-box {
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
  padding: 40% 0 0 0;
  position: relative;
}

.movie-box iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {

  .movie {
    padding: 8% 0;
  }

  .movie-ttl {
    font-size: 25px;
    padding: 0 0 4% 0;
    margin: 0;
  }

  .movie-copy {
    font-size: 13px;
    margin: 0 0 4% 0;
  }

  .movie-box {
    max-width: 750px;
    margin: 0 auto;
    width: 100%;
    padding: 60% 0 0 0;
    position: relative;
  }

}

.news {
  padding: 90px 0;
  background-color: #F2F5F7;
}

.news-ttl {
  font-size: 50px;
  text-align: center;
  /* border-bottom: 1px solid #2b509f; */
  font-weight: bold;
  color: #2b509f;
  margin: 0 0 60px 0;
}

.news-list {
  margin: 0 auto 70px auto;
  max-width: 100%;
  border-top: 1px solid #2b509f;
  padding-top: 15px;
}

.news-list-item {
  font-size: 13px;
  font-weight: 500;
  padding: 30px 0;
  border-bottom: 1px solid #d7d7d7;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* .news-list-item:first-child {
  border: none;
} */

.news-list-item .is-date {
  display: inline-block;
  width: 110px;
}

.news-list-item .is-cat {
  display: inline-block;
  font-size: 12px;
  width: 140px;
  text-align: center;
  background-color: #2b509f;
  color: #fff;
  margin: 0 40px;
  border-radius: 2px;
}

.news-list-item .is-link {
  width: calc(100% - 110px - 220px);
}

.news-list-item .is-link:hover {
  text-decoration: underline;
}

.news-more-btn {
  display: block;
  border: 1px solid #2b509f;
  width: 200px;
  box-sizing: border-box;
  font-weight: bold;
  text-align: center;
  padding: 14px 0;
  margin: 0 auto;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  background-color: #2b509f;
  color: #fff;
  border-radius: 50px;
}

.news-more-btn:hover {
  color: #2b509f;
  background-color: #fff;
}

@media screen and (max-width: 768px) {

  .news {
    padding: 50px 0 70px 0;
  }

  .news-ttl {
    font-size: 25px;
    padding: 0 0 20px 0;
    margin: 0;
  }

  .news-list-item {
    flex-wrap: wrap;
  }

  .news-list-item .is-date {
    width: 110px;
  }

  .news-list-item .is-link {
    width: 100%;
    margin: 1% 0 0 0;
  }

  .news-list {
    margin: 0 0 62px 0;
  }

  .news-more-btn {
    width: 80%;
  }

}

@media screen and (max-width: 414px) {

  .news-list-item {
    flex-wrap: wrap;
  }

  .news-list-item .is-date {
    margin: 0 0 10px 0;
  }

  .news-list-item .is-cat {
    margin: 0 0 10px 0;
  }

  .news-list-item:last-child {
    border-bottom: 1px solid #d7d7d7;
  }

  .news-list-item .is-link {
    width: 100%;
  }

}

/*  */
img {
  width: 100%;
  height: auto;
}

/* hero image */
/* .hero {
  height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .hero {
    height: auto;
    overflow: inherit;
  }
} */

.hero_pc {
  width: 100%;
  line-height: 0;
  /*  */
  /* width: auto;
  height: 500px;
  position: absolute;
  right: 50%;
  bottom: 50%;
  transform: translate(50%, 50%); */
  /*  */
}
.hero_pc img {
  width: 100%;
  height: auto;
  /* width: auto;
  height: 500px;*/
}
@media screen and (max-width: 768px) {
  .hero_pc {
    display: none;
  }
}
.hero_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .hero_sp {
    display: block;
  }
  .hero_sp img {
    width: 100%;
    height: auto;
  }
  
  .hero_pc {
    display: none;
  }
}

.hero_pics {
  width: 100%;
  position: relative;
}
/* .hero_pics img {
  width: 100%;
  height: auto;
} */
@media screen and (max-width: 768px) {
}

.hero__bt__vision {
  display: block;
  width: 280px;
  border-radius: 5px;
  padding: 15px;
  font-size:  18px;
  font-weight: 700;
  line-height: 1;
  color: #2b509f;
  text-align: center;
  background-color: #fff;
  border: 1px solid #fff;
  transition: .2s;
  position: absolute;
  right: 40px;
  bottom: 30px;
}
@media screen and (max-width: 768px) {
  .hero__bt__vision {
    width: 80%;
    font-size: 18px;
    right: 50%;
    bottom: 15px;
    transform: translateX(50%);
  }
}
.hero__bt__vision:hover {
  color: #fff;
  background-color: #2b509f;
}

/*  */
.sect-wrapper {
  width: 1100px;
}
@media screen and (max-width: 768px) {
  .sect-wrapper {
    width: 100%;
  }
}

.sect-ttl {
  position: relative;
  text-align: center;
  margin-bottom: 75px;
  font-size: 35px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {}

.sect-ttl::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: 50%;
  transform: translateX(50%);
  width: 100px;
  height: 3px;
}
@media screen and (max-width: 768px) {}

.sect-ttl.is_white::after {
  background-color: #fff;
}
.sect-ttl.is_blue::after {
  background-color: #2B509F;
}

/*  */
.business{
  background-image: url(../images/home/bg_home_business_pc.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #1F62BC;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {}

.business-ttl{
  color: #fff;
}
@media screen and (max-width: 768px) {}

.business-lead{
  color: #fff;
  font-size: 16px;
  line-height: calc(30 / 16);
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {}

.business-list{
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .business-list{
    display: block;
    margin-bottom: 30px;
  }
}

.business-list-item{
  width: 350px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .business-list-item{
    width: 100%;
    margin-bottom: 30px;
  }
}

.business-list-item-ttl{
  background-color: #2B509F;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  padding: 15px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  
}

.business-list-item-pic{
  width: 180px;
  margin: 0 auto 25px auto;
}
@media screen and (max-width: 768px) {
  
}

.business-list-item-txt{
  font-size: 15px;
  line-height: calc(30 / 15);
  padding: 0 30px 30px 30px;
}
@media screen and (max-width: 768px) {
  
}

/*  */
.smx{
  background-color: #F2F5F7;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  
}

.smx-ttl{
  width: 350px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .smx-ttl{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.smx-lead{
  text-align: center;
  font-size: 16px;
  line-height: calc(30 / 16);
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .smx-lead{
    margin-bottom: 60px;
  }
}

.smx-lead--blue{
  text-align: center;
  font-size: 30px;
  line-height: 1.6666666667;
  margin-bottom: 50px;
  font-weight: 700;
  color: #1F62BC;
}
@media screen and (max-width: 768px) {
  .smx-lead--blue{
    font-size: 24px;
    margin-bottom: 60px;
  }
}

.smx-pic{
  width: 640px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .smx-pic{
    width: 100%;
  }
}


.smx-btn-list {
  display: flex;
  justify-content: space-between;
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .smx-btn-list {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}

.smx-btn-list-item {
  
}
@media screen and (max-width: 768px) {
  .smx-btn-list-item:first-of-type {
    margin-bottom: 20px !important;
  }
}

/*  */
.company{
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  
}

.company-ttl{
  color: #2B509F;
}
@media screen and (max-width: 768px) {
  
}

.company-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* width: 1100px;
  margin: 0 auto; */
}
@media screen and (max-width: 768px) {
  
}

.company-list-item{
  padding: 68px 10px;
  text-align: center;
  background-color: rgb(43, 80, 159);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 103%;
  transition: .3s;
}
@media screen and (max-width: 1120px) {
  .company-list-item{
    padding: 30px 10px;
    margin-bottom: 20px;
    background-size: 103% auto;
  }
}
@media screen and (max-width: 768px) {
  .company-list-item{
    padding: 30px 10px;
    margin-bottom: 20px;
  }
}

.company-list-item:hover {
  background-size: auto 120%;
}
@media screen and (max-width: 1120px) {
  .company-list-item:hover {
    background-size: 120% auto;
  }
}

.is_col_2 {
  width: 540px;
  margin-bottom: 25px;
}
@media screen and (max-width: 1120px) {
  .is_col_2 {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .is_col_2 {
    width: 100%;
    margin-bottom: 20px;
  }
}
.is_col_3 {
  width: 350px;
}
@media screen and (max-width: 768px) {
  .is_col_3 {
    width: 100%;
  }
}
@media screen and (max-width: 1120px) {
  .is_col_3 {
    width: 100%;
  }
}

.is_1 {
  background-image: url(../images/home/bg_company_1.png);
}
.is_2 {
  background-image: url(../images/home/bg_company_2.png);
}
.is_3 {
  background-image: url(../images/home/bg_company_3.png);
}
.is_4 {
  background-image: url(../images/home/bg_company_4.png);
}
.is_5 {
  background-image: url(../images/home/bg_company_5.png);
}


.company-list-item-ic{
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 768px) {
  
}

.company-list-item-ic::after {
  content: '';
    background-image: url(../images/common/ic_subnavi_item.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 7px;
    height: 13px;
    position: absolute;
    right: -20px;
    bottom: 50%;
    transform: translateY(50%);
}
@media screen and (max-width: 768px) {
  
}




/*  */
.home-more-btn {
  display: block;
  border: 1px solid #2b509f;
  width: 350px;
  box-sizing: border-box;
  font-weight: bold;
  text-align: center;
  padding: 14px 0;
  margin: 0 auto;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .home-more-btn {
    width: 100%;
  }
}

.home-more-btn.is-blue {
  background-color: #2b509f;
  color: #fff;
}
.home-more-btn.is-white {
  background-color: #fff;
  color: #2b509f;
}
@media screen and (max-width: 768px) {
  
}

.home-more-btn.is-blue:hover {
  background-color: #fff;
  color: #2b509f;
}
.home-more-btn.is-white:hover {
  background-color: #2b509f;
  color: #fff;
}
@media screen and (max-width: 768px) {}

.ic_link_external {
  position: relative;
}
.ic_link_external::after {
  content: '';
  background-image: url(../images/common/ic_link_external.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  right: -25px;
  bottom: 49%;
  transform: translateY(50%);
  transition: .2s;
}
@media screen and (max-width: 768px) {}

.smx-btn-list-item:hover .ic_link_external::after {
  background-image: url(../images/common/ic_link_external_ov.svg);
}
@media screen and (max-width: 768px) {}

