@charset "utf-8";

.fv {
  padding-top: 200px;
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  .fv {
    padding-top: 0;
    flex-direction: row;
  }
}

.fv__wrap {
  display: flex;
  flex-direction: column;
  gap: 70px;
  position: relative;
}
@media screen and (min-width: 1000px) {
  .fv__wrap{
    gap: 98px;
    margin-right: calc(50% - 50vw);
    flex-direction: row;
    justify-content: end;
    align-items: center;
  }
}
@media screen and (min-width: 1600px) {
  .fv__wrap{
    margin-right: 0;
    justify-content: center;
  }
}

.fv__item {
  flex-shrink: 0;
}
@media screen and (min-width: 1000px) {
  .fv__item{
    margin-top: -140px;
  }
}

.fv__title {
  font-size: 25px;
  line-height: 40px !important;
  color: #002855;
}
@media screen and (min-width: 600px) {
  .fv__title{
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__title{
    font-size: clamp(22px, calc(34 / 1366 * 100vw), 34px);
    line-height: 60px !important;
  }
}
.fv__title-sub {
  font-size: 14px !important;
}
@media screen and (min-width: 1000px) {
  .fv__title-sub {
    font-size: 18px !important;
  }
}

.fv__img {
  flex-shrink: 0;
  aspect-ratio: 760 / 837;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1000px) {
  .fv__img{
    width: 500px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__img{
    width: clamp(500px, calc(760 / 1366 * 100vw), 760px);
  }
}

.fv__img-pc {
  display: none;
}
@media screen and (min-width: 1000px) {
  .fv__img-pc {
    display: block;
  }
  .fv__img-sp {
    display: none;
  }
}

.fv__scroll {
   position: absolute;
    right: 0;
    bottom: 30px;
}
@media screen and (min-width: 1000px) {
  .fv__scroll {
    right: unset;
    left: 0;
    bottom: 30px;
  }
}

.fv__scroll img {
  aspect-ratio: 1 / 1;
  width: 100px;
  animation: rotateCircle 10s linear infinite;
}
@media screen and (min-width: 500px) {
  .fv__scroll img {
    width: 197px;
  }
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fv__scroll::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/scroll-down.svg") center / contain no-repeat;
  width: 10px;
  height: 68px;
  transition: top 0.3s;
}
@media screen and (min-width: 500px) {
  .fv__scroll::before {
    width: 18px;
    height: 78px;
  }
}

.fv__scroll:hover::before {
  top: 55%;
}


.top-about__wrap {
  display: flex;
  flex-direction: column-reverse;
  gap: 50px;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  .top-about__wrap{
    gap: min(calc(85 / 1366 * 100vw), 85px);
    flex-direction: row;
  }
}
.top-about__img {
  aspect-ratio: 583 / 520;
  width: min(100%, 580px);
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1000px) {
  .top-about__img{
    width: min(calc(580 / 1366 * 100vw), 580px);
  }
}

.top-strengths {
  padding: 110px 20px 75px;
  margin: 155px 20px 0 !important;
  max-width: 1266px;
}
@media screen and (min-width: 1000px) {
  .top-strengths {
    padding: 127px 40px 75px;
  }
}
@media screen and (min-width: 1306px) {
  .top-strengths {
    padding: 127px 100px 75px;
    max-width: 1266px;
    margin: 155px auto 0 !important;
  }
}

.top-strengths__title {
  position: absolute;
  top: -33px;
  left: 10px;
}
@media screen and (min-width: 768px) {
  .top-strengths__title {
    top: -41px;
    left: 50px;
  }
}

.top-strengths__title > .title-main {
  margin-top: 0;
}

.top-strengths__wrap {
  display: flex;
  flex-direction: column;
  gap: 83px;
  justify-content: center;
  align-items: center;
}

.top-strengths__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.c5605 {
  font-family: "Noto Serif JP", serif;
}

.top-strengths__images {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  .top-strengths__images{
    flex-direction: row;
  }
}

.top-strengths__img {
  aspect-ratio: 797 / 400;
  width: min(100%, 797px);
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1000px) {
  .top-strengths__img{
    width: min(calc(797 / 1366 * 100vw), 797px);
  }
}
.top-strengths__img--small {
  aspect-ratio: 500 / 270;
  width: min(100%, 500px);
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1000px) {
  .top-strengths__img--small {
    width: min(calc(500 / 1366 * 100vw), 500px);
  }
}


.top-service__wrap {
  display: flex;
  flex-direction: column;
  gap: 100px;
  justify-content: center;
}
@media screen and (min-width: 1000px) {
  .top-service__wrap{
    gap: 50px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1300px) {
  .top-service__wrap{
    gap: min(calc(180 / 1366 * 100vw), 180px);
  }
}

.top-service__lists {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.top-service__list {
  border-bottom: 1px solid rgba(208, 228, 237, 0.6);
}

.card__swiper,
.card__swiper-wrapper,
.card__swiper-slide {
  position: relative;
}
.card__swiper-wrapper {
  transition-timing-function: linear;
  align-items: flex-start;
}
.card__swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  aspect-ratio: 360 / 330;
  max-width: 360px;
}
.card__swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}


.top-area__wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 1100px) {
  .top-area__wrap{
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
  }
}
@media screen and (min-width: 1300px) {
  .top-area__wrap{
    justify-content: center;
    gap: min(calc(272 / 1366 * 100vw), 272px);
  }
}

@media screen and (min-width: 1000px) {
  .top-area__item{
    margin-top: 28px;
  }
}

.top-area__deco {
  position: absolute;
  left: calc(50% - 145px);
  top: 74px;
  width: 400px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .top-area__deco{
    left: calc(50% - 145px);
    top: 84px;
    width: 500px;
  }
}
@media screen and (min-width: 1100px) {
  .top-area__deco{
    left: calc(50% - 682px);
    top: 0;
    width: min(calc(708 / 1366 * 100vw), 708px);
  }
}

.top-area__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 20px;
}
@media screen and (min-width: 768px) {
  .top-area__lists {
    gap: 46px 40px;
  }
}
@media screen and (min-width: 1000px) {
  .top-area__lists {
    margin-top: 26px;
  }
}

.top-area__list {
  padding: 20px 20px 19px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: background 0.3s;
}
@media screen and (min-width: 768px) {
  .top-area__list{
    min-width: 260px;
    padding: 20px 27px 19px;
    gap: 25px;
  }
}

.top-area__list::before {
  content: "";
  width: 30px;
  height: 2px;
  background: #2D78C2;
}
.top-area__list:hover {
  background: #c8cfd7;
}

.top-company__wrap {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (min-width: 1000px) {
  .top-company__wrap{
    gap: min(calc(80 / 1366 * 100vw), 80px);
    flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  .top-company__wrap{
    align-items: end;
  }
}

.top-company__lists {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  width: 100%;
}
.top-company__list {
  display: flex;
  align-items: center;
  min-width: 300px;
  border-bottom: 1px solid rgba(208, 228, 237, 0.6);
}
.top-company__list:first-of-type {
  border-top: 1px solid rgba(208, 228, 237, 0.6);
}

@media screen and (min-width: 500px) {
  .c12526 br{
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .c12526 br{
    display: block;
  }
}
@media screen and (min-width: 1100px) {
  .c12526 br{
    display: none;
  }
}

.top-company__map {
  aspect-ratio: 459 / 269;
  width: 100%;
  height: 269px;
}
@media screen and (min-width: 1000px) {
  .top-company__map{
    height: auto;
  }
}
@media screen and (min-width: 1300px) {
  .top-company__map{
    height: 100%;
    min-width: 459px;
  }
}

.top-company__map div,
.top-company__map div iframe {
  border: none;
  width: 100%;
  height: 100%;
}


