@charset "UTF-8";

/*---------------------*/
/* mv メインビジュアル */
.mv {
  position: relative;
}
.mv .mv__inner {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  display: flex;
  color: #fff;
  column-gap: 20px;
}
.mv .mv__inner .left {
  width: auto;
}
.mv .left p {
   writing-mode: vertical-rl;
   text-orientation: upright;
   color: #fff;
   font-size: 1.8rem;
   width: 100%;
}
.mv .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mv .right p {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.mv .right .lead {
  font-size: 5.4rem;
  line-height: 1.4;
}
.mv .splide__slide {
  overflow: hidden; 
}
.mv .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 5000ms ease-out; 
}
.mv .splide__slide.is-active img {
  transform: scale(1.1);
  transform-origin: center center; 
}
.mv .splide__arrow svg {
    fill: #fff;
}
@media screen and (max-width: 1300px) {
  .mv .mv__inner {
    padding-left: 20px;
    top: initial;
    bottom: 30px;
    transform: none;
    column-gap: 10px;
  }
  .mv .left p {
    font-size: 1.4rem;
  }
  .mv .right .lead {
    font-size: 4.5rem;
  }
  .mv .right p {
    margin-bottom: 0;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 960px) {
  .mv .left p {
    font-size: 12px;
  }
  .mv .right .lead {
    font-size: 34px;
    line-height: 1.4;
  }
  .mv .right p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    height: auto;
  }
  .mv .splide__track,
  .mv .splide__list,
  .mv .splide__slide {
    height: 100%;
  }
}
@media screen and (max-width: 600px) {
    .mv .mv__inner {
      column-gap: 5px;
    }
    .mv .left p {
      font-size: 10px;
    }
    .mv .right p {
      font-size: 12px;
    }
    .mv .right .lead {
        font-size: 30px;
    }
}
@media screen and (max-width: 500px) {
    .mv .mv__inner {
          padding-left: 10px;
    }
    .mv .right p {
      font-size: 11px;
    }
    .mv .right .lead {
        font-size: 24px;
    }
}
@media screen and (max-width: 430px) {
    .mv .left p {
      font-size: 8px;
    }
    .mv .right p {
      font-size: 9px;
    }
    .mv .right .lead {
        font-size: 19px;
    }
}



/*---------------------*/
/* 流れるテキスト */
.flowing {
  padding: 30px 0;
  overflow: hidden;
  white-space: nowrap;
}
.text-infinity-scroll {
  display: flex;
  width: max-content;
  padding: 10px 0;
  animation: scroll-left 160s infinite linear;
}
.text-infinity-scroll span {
  flex-shrink: 0;
  display: inline-block;
  font-size: 12.0rem;
  font-weight: bold;
  line-height: 1;
  margin-right: 50px;
}
.text-infinity-scroll span:nth-child(even) {
  color: #a0a0a0;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1250px) {
  .text-infinity-scroll span {
    font-size: 8vw;
  }
  .flowing {
    padding: 20px 0;
  }
}
@media screen and (max-width: 600px) {
  .text-infinity-scroll span {
    font-size: 12vw;
  }
}

/*---------------------*/
/* about */
#about {
  position: relative;
  overflow: hidden;
}
#about .section-inner {
  margin-bottom: 70px;
}
#about .content {
  display: grid;
  grid-template-columns: 52% 48%;
  position: relative;
  z-index: 2;
  height: auto;
}
#about .title-area,#about .text-area {
  text-align: left;
}
#about .title-area h2 {
  color: #000;
}
#about .title-area p {
  position: relative;
  padding-top: 40px;
}
#about .title-area p::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
  height: 1px;
  background-color: #000; 
}
#about .text-box {
  text-align: right;
}
#about .text-area {
  margin-bottom: 50px;
}
#about .img-area {
  position: absolute;
  width: 45vw;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  margin-top: 40px;
}
#about .text-area p {
  margin-bottom: 20px;
}
@media screen and (max-width: 1250px) {
  #about .img-area {
    margin-top: 0;
  }
}
@media screen and (max-width: 960px) {
  #about .section-inner {
    margin-bottom: 30px;
  }
  #about .content {
    display: flex;
    flex-direction: column;
  }
  #about .text-area {
    margin-bottom: 30px;
  }
  #about .img-area {
    position: relative;
    width: 80vw;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    }
} 
@media screen and (max-width: 767px) {
    #about .img-area {
      width: 90vw;
    }
}
@media screen and (max-width: 600px) {
  #about .title-area p {
    padding-top: 20px;
  }
}
@media screen and (max-width: 390px) {
  #about .title-area h2 {
    font-size: 26px;
  }
  #about .text-area {
    margin-bottom: 20px;
}
  #about .text-area p {
    margin-bottom: 10px;
  }
}

/*---------------------*/
/* support */
#support {
  background-color: #E7F7FE;
}
#support .title-area {
  text-align: center;
}
#support ul {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 3%;
}
#support .img-area {
  margin-bottom: 20px;
}
#support h3 {
  font-size: 2.6rem;
  line-height: 1.4;
  color: #3264AC;
  text-align: center;
  margin-bottom: 15px;
}
#support h2 br {
  display: none;
}
@media screen and (max-width: 1250px) {
  #support ul {
    column-gap: 20px;
  }
  #support h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 960px) {
  #support h2 {
    font-size: 32px;
  }
  #support .lead {
    text-align: left;
  }
  #support .img-area {
    margin-bottom: 10px;
  }
  #support h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  #support h2 {
    font-size: 28px;
  }
  #support h2 br {
    display: block;
  }
  #support h3 {
    font-size: 15px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 600px) {
  #support h2 {
    font-size: 24px;
  }
  #support ul {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    width: 80%;
    margin: 0 auto;
  }
  #support h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 390px) {
    #support h2 {
        font-size: 20px;
    }
    #support .lead br {
      display: none;
    }
    #support ul {
      width: 100%;
    }
    #support h3 {
    font-size: 16px;
  }
}


/*---------------------*/
/* services サービス */
#top-service .box {
  display: flex;
  flex-direction: column;
}
#top-service .square {
  position: relative;
  overflow: hidden;
  background-color: transparent;
}
#top-service .square::before {
  content: "";
  position: absolute;
  top: 0;
  right: -5%;
  width: 60%;
  height: 100%;
  background-color: #3264AC;
  transform: skewX(-15deg);
  transform-origin: 0 0;
  z-index: -1;
}
#top-service .wrapper {
  background-color: #fff;
  margin-right: 25%;
  margin-bottom: 600px; 
  width: 75%;
  display: flex;
  justify-content: center;
  position: relative;
}
#top-service .wrapper2 {
  margin-right: initial;
  margin-left: 25%;
}
#top-service .inner-wrapper {
  margin-left: 25%;
}
#top-service .inner-wrapper2 {
  margin-left: initial;
  margin-right: 25%;
}
#top-service .content {
    max-width: 1020px;
    position: relative;
}
#top-service .content::after {
    content: "";
    position: absolute;
    bottom: -41vw;
    right: -20%;
    width: 110%;
    height: calc(90vw * 0.6); 
    background-image: url('../images/top/se_img01.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}
#top-service .content2::after {
    background-image: url('../images/top/se_img02.jpg');
    right: initial;
    left: -20%;
}
#top-service .content3::after {
    background-image: url('../images/top/se_img03.jpg');
}
#top-service .content4::after {
    background-image: url('../images/top/se_img04.jpg');
    right: initial;
    left: -20%;
}
#top-service .content5::after {
    background-image: url('../images/top/se_img05.jpg');
}
#top-service .text-area {
  padding: 70px 50px 70px 0;
}
#top-service .text-area2 {
  padding: 70px 0 70px 50px;
}
#top-service .title-area {
  margin-bottom: 80px;
}
#top-service .text-inner {
  display: grid;
  grid-template-columns: 10% auto;
  column-gap: 30px;
}
#top-service .left .number {
  font-size: 12.0rem;
  font-weight: bold;
  line-height: 1;
}
#top-service .right h3 {
  font-size: 3.4rem;
  padding-top: 40px;
  margin-bottom: 50px;
}
#top-service .btn-area {
  padding-top: 60px;
}
#top-service .btn-area a {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 0;
  width: 100px;
  padding: 10px 20px;
}
  #top-service .right h3 br {
    display: none;
  }
  #top-service .right h3 .br2 {
  display: none;
}
@media screen and (min-width: 2200px) {
  #top-service .content::after {
    bottom: -39vw;
  }
}
@media screen and (max-width: 1700px) {
  #top-service .wrapper {
    margin-right: 25vw;
    width: 75vw;
  }
  #top-service .inner-wrapper {
    margin-left: 5vw;
  }
  #top-service .wrapper2 {
    margin-right: initial;
    margin-left: 25vw;
    width: 75vw;
  }
  #top-service .inner-wrapper2 {
    margin-left: initial;
    margin-right: 5vw;
  }
}
@media screen and (max-width: 1600px) {
  #top-service .content::after {
    bottom: -42vw;
  }
  #top-service .text-area {
    padding: 50px 30px 50px 0;
  }
    #top-service .text-area2 {
    padding: 50px 0 50px 30px;
  }
  #top-service .left .number {
    font-size: 8vw;
  }
  #top-service .right h3 {
    line-height: 1.5;
    padding-top: 20px;
    margin-bottom: 30px;
  }
  #top-service .right h3 br {
    display: block;
  }
  #top-service .btn-area {
    padding-top: 40px;
  }
}
@media screen and (max-width: 1400px) {
#top-service .wrapper {
    margin-bottom: 40vw;
  }
}
@media screen and (max-width: 1250px) {
    #top-service .inner-wrapper {
        margin-left: 0;
    }
    #top-service .inner-wrapper {
        margin-right: 0;
    }
    #top-service .content::after {
        bottom: -43vw;
    }
    #top-service .title-area {
        margin-bottom: 50px;
    }
    #top-service .text-area {
      padding: 40px 0;
    }
    #top-service .text-inner {
      column-gap: 20px;
    }
    #top-service .btn-area {
        padding-top: 20px;
    }
}
@media screen and (max-width: 960px) {
    #top-service .title-area {
        margin-bottom: 30px;
    }
    #top-service .right h3 {
      font-size: 26px;
    }
    #top-service .right h3 {
      padding-top: 0px;
    }
}
@media screen and (max-width: 767px) {
    #top-service .wrapper {
        margin-right: 20vw;
        width: 80vw;
        margin-bottom: 45vw;
    }
    #top-service .wrapper2 {
        margin-right: initial;
        margin-left: 20vw;
        width: 80vw;
    }
    #top-service .text-inner {
        column-gap: 10px;
    }
    #top-service .right h3 {
      margin-bottom: 10px;
    }
    #top-service .right h3 .br2 {
      display: block;
    }
  }

@media screen and (max-width: 600px) {
  #top-service .square::before {
    transform: skewX(-10deg);
  }
    #top-service .wrapper {
      margin-right: 5vw;
      width: 95vw;
      margin-bottom: 55vw;
    }
    #top-service .wrapper2 {
      margin-right: initial;
      margin-left: 5vw;
      width: 95vw;
    }
    #top-service .content::after {
      bottom: -50vw;
      right: 0%;
      width: 100%;
    }
    #top-service .content2::after,#top-service .content4::after {
      left: 0;
    }    
    #top-service .btn-area {
        padding-top: 10px;
    }
}
@media screen and (max-width: 500px) {
    #top-service .text-area {
        padding: 30px 0;
    }
    #top-service .right h3 {
        font-size: 22px;
    }
  }
  @media screen and (max-width: 430px) {
    #top-service .content::after {
      right: -5%;
      width: 105%;
    }
    #top-service .content2::after {
        left: -5px;
        width: 110%;
    }
    #top-service .right h3 {
        font-size: 20px;
    }
  }
  @media screen and (max-width: 390px) {
      #top-service .right h3 {
        font-size: 16px;
    }
  }