@charset "utf-8";

.p-top-fv {
  position: relative;
  width: 100%;
  aspect-ratio: 1366/768;
  min-height: 550px;
  top: 0;
  overflow: hidden;

  @media (width < 768px) {
    aspect-ratio: auto;
  }
}

.p-top-fv__slides.swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;

  .swiper-slide {
    object-fit: cover;
    position: relative;
  }

  .swiper-slide.is-zooming {
    animation: top-fv-zoom 5s linear forwards;
  }
}

.gjs-dashed *[data-highlightable] .p-top-fv__slides.swiper {
  .swiper-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
  }

  .swiper-slide {
    width: 33%;
  }
}

.p-top-fv__slides.swiper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 2;
  background: #636363;
  opacity: 0.3;
  pointer-events: none;
}

@keyframes top-fv-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.p-top-fv__main {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  color: var(--color-white);
  pointer-events: none;
}

.p-top-fv__inner {
  height: 100%;
  margin: 0 auto;
  max-width: 1244px;
  padding: 0 20px 38px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;

  @media (width < 768px) {
    gap: 40px;
  }
}

.p-top-fv__title {
  pointer-events: all;
  width: fit-content;
  font-weight: 700;
  font-size: 44px;
  line-height: normal;
  position: relative;
  z-index: 2;

  @media (width < 1120px) {
    font-size: 34px;
  }

  @media (width < 768px) {
    font-size: 27px;
  }
}

.p-top-fv__text {
  width: fit-content;
  pointer-events: all;
  font-weight: 700;
  font-size: 16px;
  line-height: calc(32 / 16);
  position: relative;
  z-index: 1;

  @media (width < 1120px) {
    font-size: 14px;
  }
}

.p-top-fv__text::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: -124px;
  left: -23px;
  width: 772px;
  aspect-ratio: 769/253;
  background: url('https://plusnauts.co.jp/system_panel/uploads/images/top-fv-line.png') no-repeat bottom left / contain;
  pointer-events: none;

  @media (width < 1120px) {
    width: 550px;
    bottom: -100px;
  }

  @media (width < 768px) {
    width: 460px;
    bottom: -80px;
    left: -8px;
  }
}

.p-top-fv__blog {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  right: 24px;
  width: 100%;
  max-width: 408px;

  @media (width < 768px) {
    max-width: 300px;
    bottom: 20px;
    right: 16px;
  }
}

.p-top-fv-blog {
  background: #00000099;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 27px 15px;

  @media (width < 768px) {
    padding: 12px 10px 12px 14px;
    gap: 4px;
  }
}

.p-top-fv-blog:hover {
  opacity: 0.7;
}

.p-top-fv-blog__heading {
  font-family: var(--font-noto-sans);
  color: var(--color-white);
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.p-top-fv-blog__flex {
  display: flex;
  align-items: center;
  gap: 14px;
}

.p-top-fv-blog__date-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;

  .c-date {
    color: var(--color-white);
  }

  .c-category {
    color: var(--color-white);
    background: #ffffff33;
  }
}

.p-top-fv-blog__title {
  color: var(--color-white);
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-top-slides2.swiper {
  margin-top: 13px;
  width: 100%;

  .swiper-wrapper {
    transition-timing-function: linear;
  }

  .swiper-slide {
    width: 280px;
    width: clamp(200px, calc(280vw / 13.66), 400px);
    aspect-ratio: 280/190;
    object-fit: cover;
  }
}

.gjs-dashed *[data-highlightable] .p-top-slides2.swiper {
  .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .swiper-slide {
    width: 33%;
  }
}

.p-top-about {
  padding-top: 210px;
  position: relative;
  overflow: hidden;

  @media (width < 768px) {
    padding-top: 100px;
  }
}

.p-top-about__bg {
  position: absolute;
  z-index: 0;
  top: 16px;
  right: -132px;
  width: 640px;
  aspect-ratio: 640/705;
}

.p-top-about__flex {
  margin: 0 auto;
  max-width: 995px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;

  @media (width < 768px) {
    flex-direction: column;
    gap: 40px;
  }

  .c-heading__ja {
    font-size: 16px;
    color: var(--color-base);
  }
}

.p-top-about__left {
  max-width: fit-content;
  flex-shrink: 0;
}

.p-top-about__main-text {
  margin-top: 40px;
  font-weight: 700;
  font-size: 32px;
  line-height: calc(61 / 32);
}

.p-top-about__right {
  width: 51.3%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 54px;

  @media (width < 768px) {
    width: 100%;
    margin-top: 0;
  }
}

.p-top-about__text {
}

.p-top-about__cards {
  margin: 144px auto 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;

  @media (width < 1120px) {
    gap: 20px;
  }

  @media (width < 768px) {
    margin: 80px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 360px;
  }
}

.p-top-about-card {
  border: 1px solid var(--color-blue);
  border-radius: 10px;
  box-shadow: 10px 10px 14px #c9c9c940;
  padding: 40px 30px 30px;

  @media (width < 1120px) {
    padding: 40px 20px 30px;
  }
}

.p-top-about-card__flex {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.p-top-about-card__title {
  color: var(--color-blue);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.p-top-about-card__icon {
  margin-right: 8px;
  width: 71px;
  aspect-ratio: 1;

  img {
    width: 100%;
    object-fit: contain;
  }
}

.p-top-about-card__main {
  margin-top: -6px;
  color: var(--color-blue);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
}

.p-top-about-card__num {
  font-family: var(--font-noto-sans);
  font-size: 75px;
  line-height: normal;
}

.p-top-about-card__unit {
  font-size: 26px;
  font-weight: 700;
  line-height: normal;

  @media (width < 1120px) {
    font-size: 20px;
  }
}

.p-top-about-card__text {
  margin-top: 24px;
  font-weight: 700;
}

.p-top-about__slides.swiper {
  width: 100%;

  .swiper-wrapper {
    transition-timing-function: linear;
  }

  .swiper-slide {
    width: clamp(500px, calc(740vw / 13.66), 1000px);
    aspect-ratio: 74/54;
    object-fit: cover;
  }
}

.gjs-dashed *[data-highlightable] .p-top-about__slides.swiper {
  .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .swiper-slide {
    width: 33%;
  }
}

.p-top-service {
  padding: 102px 0 100px;
  background: linear-gradient(180deg, #daecff 0%, #fff 54%, #cdedff 100%);
  position: relative;

  .l-inner {
  }
}

.p-top-service__bg {
  position: absolute;
  top: 55px;
  right: 22px;
  font-family: var(--font-noto-sans);
  font-size: 155px;
  font-size: clamp(80px, calc(155vw / 13.66), 155px);
  font-weight: 700;
  line-height: normal;
  color: transparent;
  -webkit-text-stroke: 0.01em hsla(206, 64%, 34%, 0.2);
  paint-order: stroke;
  letter-spacing: -0.02em;

  @media (width < 768px) {
    top: 0;
    right: 0;
  }
}

.p-top-service__flex {
  margin-top: 62px;

  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;

  @media (width < 768px) {
    flex-direction: column;
    gap: 40px;
  }
}

.p-top-service__left {
  width: 48%;
  position: relative;
  aspect-ratio: 549/555;

  @media (width < 768px) {
    width: 100%;
  }
}

.p-top-service__img-main,
.p-top-service__img-sub {
  position: absolute;
  box-shadow: 8px 4px 24px #2990ff99;
  object-fit: cover;
  border-radius: 5px;
}

.p-top-service__img-main {
  width: 85%;
  aspect-ratio: 469/491;
  top: 0;
  right: 0;
}

.p-top-service__img-sub {
  width: 55%;
  aspect-ratio: 305/188;
  bottom: 0;
  left: 0;
}

.p-top-service__right {
  margin-top: 40px;
  width: 44.5%;

  @media (width < 768px) {
    margin-top: 0;
    width: 100%;
  }
}

.p-top-service__main-text {
  font-weight: 700;
  font-size: 28px;
  line-height: calc(61 / 28);
}

.p-top-service__text {
  margin-top: 58px;
  display: flex;
  flex-direction: column;
  gap: 30px;

  @media (width < 768px) {
    margin-top: 40px;
  }
}

.p-top-service-box {
  margin-top: 80px;
  background: var(--color-white);
  border-radius: 10px;
  padding: 40px 50px 50px;

  @media (width < 768px) {
    margin-top: 60px;
    padding: 40px 20px 50px;
  }
}

.p-top-service-box__heading {
  width: 100%;
  padding-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  border-bottom: 2px solid var(--color-blue);

  @media (width < 768px) {
    gap: 10px;
    font-size: 22px;
  }
}

.p-top-service-box__heading::before {
  content: '';
  width: 16px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-blue);
  margin-top: 6px;
}

.p-top-service-box__lists {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px clamp(20px, calc(80vw / 13.66), 80px);

  @media (width < 768px) {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

.p-top-service-box__list {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 27px 0;
  border-bottom: 1px solid #b1b1b1;
}

.p-top-service-box__icon {
  width: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.p-top-service-box__text {
  font-size: 18px;
  line-height: calc(20 / 18);

  @media (width < 768px) {
    font-size: 16px;
  }
}

.p-top-company {
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 194px 0 222px;
  color: var(--color-white);

  @media (width < 768px) {
    padding: 100px 0;
  }

  .l-inner {
    max-width: 1230px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;

    @media (width < 768px) {
      flex-direction: column;
      align-items: start;
    }
  }
}

.p-top-company::before {
  content: '';
  position: absolute;
  z-index: 0;
  background: hsla(0, 0%, 0%, 0.65);
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.p-top-company__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-company__head {
  min-width: fit-content;
  margin-top: 35px;
  margin-left: 20px;

  @media (width < 768px) {
    margin-top: 0;
    margin-left: 0;
  }
}

.p-top-company__heading {
  .c-heading__en,
  .c-heading__ja {
    color: var(--color-white);
  }
}

.p-top-company__text {
  margin-top: 30px;
  max-width: 326px;
  font-weight: 700;

  @media (width < 768px) {
    max-width: 100%;
  }
}

.p-top-company__table {
  width: 53.5%;
  display: flex;
  flex-direction: column;

  @media (width < 768px) {
    width: 100%;
  }
}

.p-top-company__table-row {
  border-bottom: 1px solid var(--color-white);
  padding: 25px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-top-company__thead {
  min-width: 148px;
  flex-shrink: 0;
  font-weight: 700;
  line-height: normal;
  
  @media (width < 1120px) {
    min-width: 140px;
  }

  @media (width < 768px) {
    min-width: 120px;
  }
}

.p-top-company__tbody {
  line-height: normal;

  p {
    display: inline-block;
  }

  a:hover {
    opacity: 0.7;
  }
}

.p-top-blog {
  padding: 110px 0 120px;
  background: linear-gradient(180deg, #e7f2ff 0%, #ffffff 23%, #ffffff 74%, #e0f4ff 100%);

  @media (width < 768px) {
    padding: 80px 0 100px;
  }
}

.p-top-blog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  @media (width < 768px) {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
}

.p-top-blog__text {
  max-width: 439px;
  font-weight: 700;
  
  @media (width < 768px) {
    max-width: 100%;
  }
}

.p-top-blog__lists {
  margin-top: 54px;

  section {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.p-top-blog__link-inner {
  margin: 62px auto 0;
}

.p-top-blog__link {
  margin: 0 auto;
  width: 237px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 40px;
  color: var(--color-white);
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease-out;
}

.p-top-blog__link::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 11px;
  height: 11px;
  background: url('https://plusnauts.co.jp/system_panel/uploads/images/arrow-white.svg') no-repeat center center / contain;
  transition: all 0.3s ease-out;
}

.p-top-blog__link:hover {
  background: var(--color-white);
  color: var(--color-blue);
}

.p-top-blog__link:hover::before {
  background: url('https://plusnauts.co.jp/system_panel/uploads/images/arrow-blue.svg') no-repeat center center / contain;
}
