/* ----------------------- */
/* fv
/* ----------------------- */

.fv {
  position: relative;
  width: 100vw;
  max-width: 1440px;
  margin: 0 auto;
  height: 610px;
  padding-top: 90px;
}

.slide_item img {
  height: 610px;
  object-fit: cover;
}

.fv_catch {
  position: absolute;
  top: 430px;
  left: 120px;
  font-family: 'Open Sans Condensed',sans-serif;
  color: #ffffff;
  font-weight: bold;
}

.fv_catch br {
  display: none;
}

.fv_catch_en {
  font-size: 64px;
  letter-spacing: .05em;
}

.fv_catch_ja {
  font-size: 36px;
  letter-spacing: .05em;
}

/* ----------------------- */
/* about
/* ----------------------- */
.section_inner_fw {
  position: relative;
  width: 100%;
}

.about_wrapper {
  max-width: 1040px;
  padding: 0 70px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.about_bg {
  position: absolute;
  top: 158px;
  left: 0;
  width: 41.7vw;
  max-width: 600px;
  height: 196px;
  background-image: linear-gradient(90deg, #4F59E2, #080F73);
  transform: translateX(-500px);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
  z-index: 1;
}

.about_bg.fadein_slide {
  opacity: 1;
  transform: translateX(0);
}

.about_catch {
  font-size: 24px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: .05em;
  color: #ffffff;
  padding-top: 50px;
  z-index: 2;
}

.about_lead {
  max-width: 582px;
  opacity: 0;
  transition: opacity 1s;
}

.about_lead.fadein {
  opacity: 1;
}

.about_btn {
  margin-top: 30px;
}

/* ----------------------- */
/* service
/* ----------------------- */

.service_wrapper {
  max-width: 1040px;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  margin: 0 auto;
}

.img-block {
  width: 470px;
  padding-right: 60px;
  padding-top: 15px;
  opacity: 0;
  transition: opacity 1s;
  z-index: 2;
}

.img-block.fadein {
  opacity: 1;
}

.text-block {
  opacity: 0;
  transition: opacity 1s;
  z-index: 2;
}

.text-block.fadein {
  opacity: 1;
}

.text-block_contents {
  margin-top: 50px;
}

.service_name img {
  width: 211px;
  display: inline-block;
  margin-right: 5px;
}

.service_name span {
  display: inline-block;
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1;
  color: #ffffff;
}

.service_lead {
  margin-top: 35px;
  margin-bottom: 20px;
  color: #ffffff;
}

.service_feature {
  display: flex;
  justify-content: space-between;
}

.feature_point {
  width: 162px;
  margin-right: 16px;
  background-image: linear-gradient(#F5C32D, #F3E434);
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
  padding: 10px 0;
}

.feature_point:last-of-type {
  margin-right: 0;
}

.service_btn {
  margin-top: 35px;
  height: 60px;
}

.service_btn a {
  display: block;
  line-height: 1.8;
}

.service_bg {
  position: absolute;
  top: 158px;
  right: 0;
  width: 72.2vw;
  max-width: 1040px;
  height: 436px;
  background-image: linear-gradient(90deg, #4F59E2, #080F73);
  z-index: 1;
  transform: translateX(-1000px);
  opacity: 0;
  transition: transform 0.7s, opacity 1s;
}

.service_bg.fadein_slide {
  opacity: 1;
  transform: translateX(0);
}

/* ----------------------- */
/* news
/* ----------------------- */
.news_item {
  padding: 23px 0;
  border-bottom: 1px solid #BABABA;
}

.news_item dd, .news_item dt {
  display: inline-block;
}

.news_item dt, .category {
  margin-right: 47px;
}

.category {
  width: 109px;
  color: #080F73;
  border: 1px solid #080F73;
  text-align: center;
  font-size: 14px;
}

.subject a:hover {
  border-bottom: 1px solid #333333;
}

.news_btn {
  margin: 40px auto 0;
}

/* ----------------------- */
/* RWD
/* ----------------------- */

@media screen and (max-width: 768px) {
  /* ----------------------- */
  /* fv_tab
  /* ----------------------- */
  .fv {
    height: 400px;
    padding-top: 55px;    
  }

  .slide_item img {
    height: 400px;
  }

  .fv_catch {
    top: 285px;
    left: 9%;
  }

  .fv_catch_en {
    font-size: 3.6rem;
  }

  .fv_catch_ja {
    font-size: 1.8rem;
  }

  /* ----------------------- */
  /* about_tab
  /* ----------------------- */
  .about_wrapper {
    flex-direction: column;
  }
  
  .about_bg {
    top: 96px;
    left: 70px;
    width: calc(100vw - 70px);
    max-width: 700px;
    height: 70px;
  }

  .about_catch {
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 12px 20px;
  }

  .about_lead {
    width: 100%;
    max-width: 728px;
    margin-top: 20px;
  }

  .about_btn {
    margin: 25px auto 0;
  }

  /* ----------------------- */
  /* service_tab
  /* ----------------------- */
  .service_wrapper {
    max-width: 460px;
    flex-direction: column;
  }

  .img-block {
    width: 300px;
    padding: 0;
    margin: 0 auto;
  }

  .text-block_contents {
    margin-top: 25px;
  }

  .service_name {
    display: flex;
    justify-content: center;
  }

  .service_name img {
    width: 160px;
  }

  .service_name span {
    font-size: 2.8rem;
  }

  .service_lead {
    margin-top: 15px;
  }

  .service_feature {
    flex-direction: column;
    align-items: center;
  }

  .feature_point {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4px;
    font-size: 1.8rem;
    padding: 3px 0;
  }

  .feature_point br {
    display: none;
  }

  .service_btn {
    margin: 20px auto 60px;
  }

  .service_bg {
    top: 234px;
    right: 70px;
    width: calc(100vw - 70px);
    height: 500px;
  }

  /* ----------------------- */
  /* news_sp
  /* ----------------------- */
  .news_item dl .subject {
    display: block;
    margin-top: 8px;
  }
}

@media screen and (max-width: 411px) {
  /* ----------------------- */
  /* fv_tab
  /* ----------------------- */
  .shop {
    object-position: 30% 0;
  }

  .office {
    object-position: 30%;
  }
  
  .fv_catch {
    top: 175px;
    left: 20px;
  }

  .fv_catch br {
    display: initial;
  }

  .fv_catch_en {
    line-height: 1.3;
    margin-bottom: 10px;
  }

  /* ----------------------- */
  /* about_sp
  /* ----------------------- */
  .about_wrapper {
    padding: 0 20px;
  }
  
  .about_bg {
    left: 20px;
    width: calc(100vw - 20px);
  }

  /* ----------------------- */
  /* service_sp
  /* ----------------------- */
  .service_name {
    justify-content: flex-end;
  }
  
  .service_wrapper {
    max-width: 315px;
    margin-right: 20px;

  }
  
  .service_bg {
    right: 20px;
    width: calc(100vw - 20px);
    height: 520px;
  }

  .service_btn {
    margin-bottom: 30px;
  }



}