@charset "UTF-8";
.p-opening {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: #fff;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  transition: opacity 1s ease, visibility 1s ease;
}
.p-opening img {
  width: 40vw;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 767.99px) {
  .p-opening img {
    width: 75vw;
  }
}
.p-opening.is-hide {
  opacity: 0;
  visibility: hidden;
}

.p-top-fv {
  color: #ffffff;
  padding-block: 12.1875rem 1.25rem;
  position: relative;
  height: 48.75rem;
  max-height: 100vh;
  margin-block-end: 3.75rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv {
    max-height: 100vh;
    margin-block-end: 0rem;
    padding-block: 25.1282051282vh 0;
  }
}

.p-top-fv::after {
  content: "";
  position: absolute;
  inset: 0; /* top, right, bottom, left 全て0 */
  background-image: radial-gradient(rgba(52, 52, 52, 0.2) 1px, transparent 1px);
  background-size: 4px 4px; /* ドットの間隔を調整 */
  pointer-events: none; /* 動画操作を邪魔しない */
  z-index: 2;
}
@media (min-width: 768px) {
  .p-top-fv::after {
    opacity: 0;
    visibility: hidden;
  }
}

.p-top-fv.is-active .p-top-fv__title, .p-top-fv.is-active .p-top-fv__text {
  opacity: 1;
}
.p-top-fv.is-active .p-top-fv__title .wrap, .p-top-fv.is-active .p-top-fv__text .wrap {
  overflow: hidden;
  display: block;
}
.p-top-fv.is-active .p-top-fv__title .text, .p-top-fv.is-active .p-top-fv__text .text {
  display: block;
  animation: 0.5s 0.5s ease forwards slideUp;
  translate: 0 100%;
}
@keyframes slideUp {
  0% {
    translate: 0 100%;
  }
  100% {
    translate: 0 0;
  }
}
.p-top-fv.is-active .p-top-fv__company-wrap img {
  translate: 40px 0;
  opacity: 0;
}
.p-top-fv.is-active .p-top-fv__company-wrap img:nth-of-type(1) {
  animation: 0.5s 0.8s ease forwards slideIn;
}
.p-top-fv.is-active .p-top-fv__company-wrap img:nth-of-type(2) {
  animation: 0.5s 1s ease forwards slideIn;
}
@keyframes slideIn {
  0% {
    translate: -40px 0;
    opacity: 0;
  }
  100% {
    translate: 0 0;
    opacity: 1;
  }
}
.p-top-fv.is-active .p-top-fv__point-list {
  animation: 0.5s 1.2s ease forwards clipIn;
}
@keyframes clipIn {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.p-top-fv.is-active .p-top-fv__bg {
  opacity: 1;
  pointer-events: auto;
}

.p-top-fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.p-top-fv__inner {
  position: relative;
  height: 100%;
  z-index: 4;
}

.p-top-fv__title {
  opacity: 0;
  font-size: max(2.75rem, 35.2px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__title {
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__title {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 550px) {
  .p-top-fv__title {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 550px) and (max-width: 767.99px) {
  .p-top-fv__title {
    font-size: 1.5rem;
  }
}
.p-top-fv__title .text {
  translate: 0 100%;
}

.p-top-fv__text {
  opacity: 0;
  margin-top: 1.6875rem;
  font-size: max(1rem, 12.8px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__text {
    font-size: 1rem;
  }
}
.p-top-fv__text .text {
  translate: 0 100%;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__text {
    margin-top: 1.875rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 550px) {
  .p-top-fv__text {
    margin-top: 1.375rem;
    font-size: max(0.875rem, 11.2px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 550px) and (max-width: 767.99px) {
  .p-top-fv__text {
    font-size: 0.875rem;
  }
}

.p-top-fv__company-wrap {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__company-wrap {
    margin-block-start: 0;
  }
}

.p-top-fv__company {
  max-width: 16.375rem;
  width: 100%;
  opacity: 0;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__company {
    max-width: 9.5625rem;
  }
}

.p-top-fv__bottom {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  translate: -50%;
  width: fit-content;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__bottom {
    flex-direction: column;
    align-items: center;
    row-gap: 0.5rem;
    bottom: 1.25rem;
  }
}

.p-top-fv__point-list {
  background-color: #0d46b7;
  border-radius: 1.08125rem;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.3125rem;
  padding-inline: 0.9375rem;
  max-width: 60.25rem;
  gap: 2.75rem;
  width: 100%;
  place-items: center;
  position: relative;
  clip-path: inset(0 100% 0 0);
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-list {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.3125rem;
    row-gap: 1.5625rem;
    padding-block: 1.125rem 0.625rem;
    padding-inline: 1.125rem;
    max-width: 20.4375rem;
  }
}
.p-top-fv__point-list::after {
  content: "";
  width: 16.625rem;
  height: 0.0625rem;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  display: none;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-list::after {
    display: block;
  }
}

.p-top-fv__point-item {
  width: 12.5rem;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item {
    max-width: 7.875rem;
  }
}
.p-top-fv__point-item::after {
  content: "";
  width: 0.0625rem;
  height: 5.6875rem;
  background-color: #ffffff;
  position: absolute;
  top: 0.8125rem;
  right: -1.375rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item::after {
    height: 4.6875rem;
    right: -1.3125rem;
  }
}
.p-top-fv__point-item.--1 .p-top-fv__point-text {
  font-size: max(1.25rem, 16px);
  font-weight: 700;
  line-height: 1.88;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--1 .p-top-fv__point-text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--1 .p-top-fv__point-text {
    font-size: max(1rem, 12.8px);
    font-weight: 700;
    line-height: 1.88;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-fv__point-item.--1 .p-top-fv__point-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--2 {
    margin-top: -0.125rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--2::after {
    display: none;
  }
}
.p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(1) {
  font-size: max(1.0625rem, 13.6px);
  font-weight: 700;
  line-height: 1.2352941176;
  letter-spacing: 0em;
  margin-block-end: 0.125rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(1) {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(1) {
    font-size: max(0.875rem, 11.2px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(1) {
    font-size: 0.875rem;
  }
}
.p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(2) {
  font-size: max(0.75rem, 9.6px);
  font-weight: 500;
  line-height: calc(normal / 12);
  letter-spacing: 0em;
  padding-block: 0.0625rem 0.1875rem;
  padding-inline: 0.25rem;
  border: 0.05rem solid #ffffff;
  width: fit-content;
  margin-inline: auto;
  margin-top: 0.1875rem;
  margin-block-end: 0.375rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(2) {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(2) {
    font-size: max(0.625rem, 8px);
    font-weight: 500;
    line-height: calc(normal / 10);
    letter-spacing: 0em;
    padding: 0.13125rem;
    margin-top: 0.0625rem;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(2) {
    font-size: 0.625rem;
  }
}
.p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(3) {
  font-size: max(1rem, 12.8px);
  font-weight: 700;
  line-height: calc(normal / 16);
  letter-spacing: 0.09em;
  margin-top: 0.0625rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(3) {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(3) {
    font-size: max(0.8125rem, 10.4px);
    font-weight: 700;
    line-height: calc(normal / 13);
    letter-spacing: 0.09em;
    transform: translate(4px, 1px);
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(3) {
    font-size: 0.8125rem;
  }
}
.p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(3) .number {
  font-family: "Inter", sans-serif;
  font-size: max(1.875rem, 24px);
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.048em;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(3) .number {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(3) .number {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: calc(normal / 24);
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(3) .number {
    font-size: 1.5rem;
  }
}
.p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(3) .--2-sub {
  font-size: max(0.875rem, 11.2px);
  font-weight: 700;
  line-height: calc(normal / 14);
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(3) .--2-sub {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(3) .--2-sub {
    font-size: max(0.75rem, 9.6px);
    font-weight: 700;
    line-height: calc(normal / 12);
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-fv__point-item.--2 .p-top-fv__point-text:nth-child(3) .--2-sub {
    font-size: 0.75rem;
  }
}
.p-top-fv__point-item.--3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--3::after {
    top: 0.25rem;
  }
}
.p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(1) {
  font-family: "Inter", sans-serif;
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: calc(normal / 18);
  letter-spacing: 0em;
  margin-block-end: 0.25rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(1) {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(1) {
    font-size: max(0.9375rem, 12px);
    font-weight: 700;
    line-height: calc(normal / 15);
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(1) {
    font-size: 0.9375rem;
  }
}
.p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(2) {
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: calc(normal / 18);
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(2) {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(2) {
    font-size: max(0.9375rem, 12px);
    font-weight: 700;
    line-height: calc(normal / 15);
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(2) {
    font-size: 0.9375rem;
  }
}
.p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(3) {
  font-family: "Inter", sans-serif;
  font-size: max(1.875rem, 24px);
  font-weight: 700;
  line-height: calc(normal / 30);
  letter-spacing: 0em;
  margin-block-start: 0.375rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(3) {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(3) {
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: calc(normal / 24);
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(3) {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(3) .--3-star {
    font-family: "Noto Sans JP", sans-serif;
  }
}
.p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(4) {
  font-size: max(0.75rem, 9.6px);
  font-weight: 500;
  line-height: calc(normal / 12);
  letter-spacing: 0em;
  margin-block-start: 0.1875rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(4) {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(4) {
    font-size: max(0.625rem, 8px);
    font-weight: 500;
    line-height: calc(normal / 10);
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(4) {
    font-size: 0.625rem;
  }
}
.p-top-fv__point-item.--3 .p-top-fv__point-text:nth-child(4) .--4-text {
  font-family: "Inter", sans-serif;
}
.p-top-fv__point-item.--4 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-top-fv__point-item.--4::after {
  display: none;
}
.p-top-fv__point-item.--4 .p-top-fv__point-text {
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--4 .p-top-fv__point-text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--4 .p-top-fv__point-text {
    font-size: max(0.9375rem, 12px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-fv__point-item.--4 .p-top-fv__point-text {
    font-size: 0.9375rem;
  }
}
.p-top-fv__point-item.--4 .p-top-fv__point-text .--4-main {
  font-size: max(1.1875rem, 15.2px);
  font-weight: 700;
  line-height: 1.1368421053;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--4 .p-top-fv__point-text .--4-main {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--4 .p-top-fv__point-text .--4-main {
    font-size: max(0.9375rem, 12px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-fv__point-item.--4 .p-top-fv__point-text .--4-main {
    font-size: 0.9375rem;
  }
}
.p-top-fv__point-item.--4 .p-top-fv__point-text .--4-sub {
  font-size: max(0.875rem, 11.2px);
  font-weight: 700;
  line-height: 1.5428571429;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--4 .p-top-fv__point-text .--4-sub {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-fv__point-item.--4 .p-top-fv__point-text .--4-sub {
    font-size: max(0.75rem, 9.6px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-fv__point-item.--4 .p-top-fv__point-text .--4-sub {
    font-size: 0.75rem;
  }
}

.p-top-about {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  min-height: 761px;
}

.p-top-about__bg-wrap {
  display: block;
  clip-path: inset(0);
  max-height: 941px;
  height: 100%;
  object-position: center;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 767.99px) {
  .p-top-about__bg-wrap {
    height: 53.75rem;
  }
}

.p-top-about__bg {
  position: fixed;
  block-size: 100lvb;
  inline-size: 100lvi;
  inset: 0;
  object-fit: cover;
  z-index: -1;
}

.p-top-about__inner {
  padding-block: 6.0625rem 5.9375rem;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-inline: 0;
}
@media screen and (max-width: 767.99px) {
  .p-top-about__inner {
    padding-block: 4.5625rem 3.75rem;
    padding-inline: 1.8125rem 1.5rem;
  }
}

.p-top-about__drone-img {
  position: absolute;
  z-index: 0;
  max-width: 39.375rem;
  height: auto;
  width: 100%;
  top: 34.2vh;
  right: 9.5vw;
  mix-blend-mode: overlay;
}
@media screen and (max-width: 767.99px) {
  .p-top-about__drone-img {
    top: 23.2vh;
    right: -4vw;
  }
}

@keyframes drone {
  0% {
    top: 36.2vh;
    right: 9.5vw;
  }
  4% {
    top: 33.2vh;
    right: 9.5vw;
  }
  10% {
    top: 34.2vh;
    right: 9.5vw;
  }
  20% {
    top: 33.2vh;
    right: 9.5vw;
  }
  30% {
    top: 31.2vh;
    right: 9.5vw;
  }
  40% {
    top: 33.2vh;
    right: 9.5vw;
  }
  50% {
    top: 32.2vh;
    right: 9.5vw;
  }
  60% {
    top: 34.2vh;
    right: 9vw;
  }
  70% {
    top: 32.2vh;
    right: 9vw;
  }
  80% {
    top: 33.2vh;
    right: 8.5vw;
  }
  90% {
    top: 31.2vh;
    right: 8.5vw;
  }
  92% {
    top: 32.2vh;
    right: 9vw;
  }
  100% {
    top: 31.2vh;
    right: 9vw;
  }
}
@media screen and (max-width: 767.99px) {
  @keyframes drone {
    0% {
      top: calc(260px + 2vh); /* 260 + 2vh ≒ 260 + 16.96 = 約277px */
      right: -15px;
    }
    4% {
      top: calc(260px - 1vh); /* 約251px */
      right: -15px;
    }
    10% {
      top: calc(260px + 0vh);
      right: -15px;
    }
    20% {
      top: calc(260px - 1vh);
      right: -15px;
    }
    30% {
      top: calc(260px - 3vh);
      right: -15px;
    }
    40% {
      top: calc(260px - 1vh);
      right: -15px;
    }
    50% {
      top: calc(260px - 2vh);
      right: -15px;
    }
    60% {
      top: calc(260px + 0vh);
      right: calc(-15px - 0.5vw);
    }
    70% {
      top: calc(260px - 2vh);
      right: calc(-15px - 0.5vw);
    }
    80% {
      top: calc(260px - 1vh);
      right: calc(-15px - 1vw);
    }
    90% {
      top: calc(260px - 3vh);
      right: calc(-15px - 1vw);
    }
    92% {
      top: calc(260px - 2vh);
      right: calc(-15px - 1.5vw);
    }
    100% {
      top: calc(260px - 3vh);
      right: calc(-15px - 1.5vw);
    }
  }
}
.p-top-about__header-ttl-en {
  font-size: max(3.75rem, 48px);
  font-weight: 700;
  line-height: 0.9666666667;
  letter-spacing: 0em;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 767.99px) {
  .p-top-about__header-ttl-en {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-about__header-ttl-en {
    font-size: max(2.5rem, 32px);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-about__header-ttl-en {
    font-size: 2.5rem;
  }
}

.p-top-about__header-ttl-ja {
  margin-top: 2.1875rem;
  font-size: max(2.25rem, 28.8px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #ffffff;
}
@media screen and (max-width: 767.99px) {
  .p-top-about__header-ttl-ja {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-about__header-ttl-ja {
    margin-top: 2.125rem;
    font-size: max(1.5rem, 19.2px);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-about__header-ttl-ja {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767.99px) {
  .p-top-about__content {
    margin-top: 3rem;
  }
}

.p-top-about__text {
  font-size: max(1.25rem, 16px);
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.05em;
  max-width: 31.25rem;
  width: 100%;
}
@media screen and (max-width: 767.99px) {
  .p-top-about__text {
    font-size: 1.25rem;
  }
}
.p-top-about__text .p-top-about__text-inner {
  display: block;
}
@media screen and (max-width: 767.99px) {
  .p-top-about__text {
    font-size: max(1rem, 12.8px);
    font-weight: 400;
    line-height: 2.2;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-about__text {
    font-size: 1rem;
  }
}

.p-top-about__btn-wrap {
  margin-top: 1.875rem;
  margin-left: auto;
  width: fit-content;
}
@media screen and (max-width: 767.99px) {
  .p-top-about__btn-wrap {
    margin-top: 2.25rem;
    margin-right: -0.3125rem;
  }
}

.p-top-about__btn-more-link {
  background-color: #ffffff;
}
.p-top-about__btn-more-link svg rect {
  transition: all 0.3s ease;
}
.p-top-about__btn-more-link svg path {
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-top-about__btn-more-link {
    transition: 0.3s ease;
  }
  .p-top-about__btn-more-link:hover .p-top-about__btn-more-text {
    color: #fff;
  }
  .p-top-about__btn-more-link:hover svg rect {
    fill: #fff;
  }
  .p-top-about__btn-more-link:hover svg path {
    stroke: #0D46B7;
  }
}

.p-top-about__btn-more-text {
  color: #0d46b7;
  font-weight: 400;
  transition: 0.3s ease;
}

.p-top-about__btn-more-icon {
  width: 2.5rem;
  height: 2.5rem;
  transition: 0.3s ease;
}
@media screen and (max-width: 767.99px) {
  .p-top-about__btn-more-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-top-about__btn-icon-img {
  transition: 0.3s ease;
}

.p-top-about__btn-icon-hover {
  display: none;
  transition: 0.3s ease;
}

.p-top-access {
  padding-block: 7.5rem 7.5rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767.99px) {
  .p-top-access {
    padding-block: 7.5rem 3.75rem;
  }
}

.p-top-access__content-top {
  aspect-ratio: 1110/516;
}
.p-top-access__content-top iframe {
  width: 100%;
  height: 100%;
}

.p-top-access__bottom {
  margin-top: 4.5rem;
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767.99px) {
  .p-top-access__bottom {
    flex-direction: column;
    gap: 1.875rem;
    margin-top: 1.875rem;
  }
}

.p-top-access__address-wrap {
  max-width: 17.5625rem;
  width: 100%;
}

.p-top-access__logo {
  width: 100%;
  aspect-ratio: 281/50;
}
@media screen and (max-width: 767.99px) {
  .p-top-access__logo {
    max-width: 14.375rem;
  }
}

.p-top-access__adress {
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 1.3125;
  letter-spacing: 0em;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-access__adress {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-access__adress {
    font-size: max(0.9375rem, 12px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-access__adress {
    font-size: 0.9375rem;
  }
}

.p-top-access__attention-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 39.5625rem;
  width: 100%;
}

.p-top-access__attention-title {
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 1.3125;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-top-access__attention-title {
    font-size: 1rem;
  }
}

.p-top-access__attention-text {
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-access__attention-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-access__attention-text {
    font-size: max(0.9375rem, 12px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-access__attention-text {
    font-size: 0.9375rem;
  }
}

.p-top-business {
  background-color: #f9f9f9;
}

.p-top-business__inner {
  max-width: 69.375rem;
  margin-inline: auto;
}
.p-top-business__head {
  padding-inline: 0;
}
@media screen and (max-width: 767.99px) {
  .p-top-business__head {
    padding-inline: 1.5rem;
  }
}

.p-top-business__header-sentence {
  font-size: max(1.25rem, 16px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-left: auto;
  width: fit-content;
  margin-top: -0.375rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-business__header-sentence {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-business__header-sentence {
    margin-top: 1.8125rem;
    text-align: left;
    font-size: max(1.125rem, 14.4px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-business__header-sentence {
    font-size: 1.125rem;
  }
}

.p-top-business__content {
  margin-top: 5rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-business__content {
    margin-top: 1.375rem;
  }
}

.p-top-business__list {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-business__list {
    gap: 1.25rem;
    align-items: center;
  }
}

.p-top-business__card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  display: flex;
  gap: 3.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem 1rem 1rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-business__card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 767.99px) and (min-width: 500px) {
  .p-top-business__card {
    width: calc(100% - 3rem);
    max-width: 35.375rem;
  }
}

.p-top-business__card-head {
  width: 28.4375rem;
  height: auto;
  aspect-ratio: 455/300;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 767.99px) {
  .p-top-business__card-head {
    width: 100%;
    max-width: 34.375rem;
  }
}

.p-top-business__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-business__card-body {
  padding-block: 2.5rem;
  max-width: 34.375rem;
  flex: 1;
}
@media screen and (max-width: 767.99px) {
  .p-top-business__card-body {
    padding-block: 1.875rem;
    max-width: 31.25rem;
  }
}

.p-top-business__card-title {
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #0d46b7;
}
@media screen and (max-width: 767.99px) {
  .p-top-business__card-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-business__card-title {
    font-size: max(1.25rem, 16px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-business__card-title {
    font-size: 1.25rem;
  }
}

.p-top-business__card-text {
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-top: 1.3125rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-business__card-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-business__card-text {
    font-size: max(0.9375rem, 12px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-business__card-text {
    font-size: 0.9375rem;
  }
}

.p-top-business__btn-more {
  margin-top: 1.375rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-business__btn-more {
    margin-top: 1.5rem;
  }
}

.p-top-business__btn-more + .p-top-business__btn-more {
  margin-block-start: 1em;
}

.p-top-business__btn-more-link {
  margin-left: auto;
}

.p-top-company {
  background-color: #ffffff;
}

.p-top-company__inner {
  padding-block: 1.875rem 1.5rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-company__inner {
    padding-block: 1.34375rem;
  }
}

@media screen and (max-width: 767.99px) {
  .p-top-company__head {
    display: none;
  }
}

.p-top-company__swiper-container {
  padding-top: 2.8125rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-company__swiper-container {
    padding-top: 0;
  }
}

.p-top-company__swiper-wrapper {
  transition-timing-function: linear;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
@media screen and (max-width: 767.99px) {
  .p-top-company__swiper-wrapper {
    gap: 0.625rem;
  }
}

.p-top-company__swiper-slide {
  max-width: 16rem;
  width: 100%;
}
@media screen and (max-width: 767.99px) {
  .p-top-company__swiper-slide {
    max-width: 7.125rem;
  }
}
.p-top-company__swiper-slide.--small .p-top-company__logo {
  max-width: 13.375rem;
  margin-right: 5rem;
}

.p-top-news-pickup {
  padding-block: 0.8125rem;
  border-bottom: 1px solid #343434;
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
}

.p-top-news-pickup__content-link {
  display: flex;
  gap: 3.75rem;
  align-items: center;
}
@media screen and (max-width: 767.99px) {
  .p-top-news-pickup__content-link {
    flex-direction: column;
    gap: 0.4375rem;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.p-top-news-pickup__item-head {
  display: flex;
  align-items: center;
  gap: 3.75rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767.99px) {
  .p-top-news-pickup__item-head {
    justify-content: flex-start;
    gap: 1.25rem;
    width: 100%;
  }
}

.p-top-news-pickup__tag {
  font-family: "Inter", sans-serif;
  font-size: max(1.125rem, 14.4px);
  font-weight: 400;
  line-height: calc(normal / 18);
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-top-news-pickup__tag {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-news-pickup__tag {
    font-size: max(1rem, 12.8px);
    font-weight: 400;
    line-height: calc(normal / 16);
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-news-pickup__tag {
    font-size: 1rem;
  }
}

.p-top-news-pickup__item-time {
  font-family: "Inter", sans-serif;
  font-size: max(1.125rem, 14.4px);
  font-weight: 400;
  line-height: calc(normal / 18);
  letter-spacing: 0em;
  color: #797a7b;
}
@media screen and (max-width: 767.99px) {
  .p-top-news-pickup__item-time {
    font-size: 1.125rem;
  }
}

.p-top-news-pickup__item-title {
  font-size: max(1.125rem, 14.4px);
  font-weight: 400;
  line-height: calc(normal / 18);
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-top-news-pickup__item-title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-news-pickup__item-title {
    font-size: max(1rem, 12.8px);
    font-weight: 400;
    line-height: calc(normal / 16);
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-news-pickup__item-title {
    font-size: 1rem;
  }
}

.p-top-news-pickup__item-text-link {
  font-family: "Inter", sans-serif;
  font-size: max(1.125rem, 14.4px);
  font-weight: 400;
  line-height: calc(normal / 18);
  letter-spacing: 0em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767.99px) {
  .p-top-news-pickup__item-text-link {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-news-pickup__item-text-link {
    font-size: max(1rem, 12.8px);
    font-weight: 400;
    line-height: calc(normal / 16);
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-news-pickup__item-text-link {
    font-size: 1rem;
  }
}

.p-top-news {
  padding-block: 7.5rem 0;
  background-color: #ffffff;
}
@media screen and (max-width: 767.99px) {
  .p-top-news {
    padding-block: 3.75rem 0;
  }
}

.p-top-news-inner {
  display: flex;
  gap: 0.625rem;
  justify-content: space-between;
}
@media screen and (max-width: 767.99px) {
  .p-top-news-inner {
    flex-direction: column;
    gap: 1.875rem;
  }
}

.p-top-news__content {
  max-width: 45.8125rem;
  width: 100%;
  margin-top: 0;
}

.p-top-news__list {
  display: flex;
  flex-direction: column;
  gap: 1.6875rem;
}

.p-top-news__item {
  border-bottom: 1px solid #cacaca;
}

.p-top-news__item-head {
  display: flex;
  align-items: center;
  gap: 2.625rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-news__item-head {
    gap: 1.25rem;
  }
}

.p-top-news__item-time {
  font-family: "Inter", sans-serif;
  color: #cacaca;
  font-size: max(0.875rem, 11.2px);
  font-weight: 500;
  line-height: calc(normal / 14);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.99px) {
  .p-top-news__item-time {
    font-size: 0.875rem;
  }
}

.p-top-news__tag {
  font-size: max(0.625rem, 8px);
  font-weight: 500;
  line-height: calc(normal / 10);
  letter-spacing: 0.05em;
  background-color: #0d46b7;
  color: #ffffff;
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
  width: fit-content;
}
@media screen and (max-width: 767.99px) {
  .p-top-news__tag {
    font-size: 0.625rem;
  }
}

.p-top-news__item-title-wrap {
  padding-block: 1rem;
}

.p-top-news__item-title {
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  display: -webkit-box; /* Flexboxっぽい表示モードにする */
  -webkit-box-orient: vertical; /* 縦方向に揃える */
  -webkit-line-clamp: 2; /* ← ★ 表示する行数を指定 */
  overflow: hidden;
}
@media screen and (max-width: 767.99px) {
  .p-top-news__item-title {
    font-size: 1rem;
  }
}

.p-top-news__item-link {
  display: block;
}
@media (any-hover: hover) {
  .p-top-news__item-link {
    transition: 0.3s ease;
  }
  .p-top-news__item-link:hover {
    opacity: 0.5;
  }
}

.p-top-news__btn {
  margin-top: 6.375rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-news__btn {
    margin-top: 1.875rem;
  }
}

.p-top-news__btn-more-link {
  margin-left: auto;
  padding: 0.875rem 0.5rem 0.875rem 1.25rem;
  width: fit-content;
  max-width: 16.25rem;
  width: 100%;
}
@media screen and (max-width: 767.99px) {
  .p-top-news__btn-more-link {
    max-width: 11.75rem;
  }
}

@media screen and (max-width: 767.99px) {
  .p-top-news__btn-more-text {
    font-size: 0.75rem;
  }
}

.p-top-contact {
  position: relative;
  padding-block: 6.875rem 7.4375rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767.99px) {
  .p-top-contact {
    padding-block: 3.75rem;
  }
}

.p-top-contact__bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.p-top-contact__bg {
  object-fit: cover;
  object-position: top;
}

.p-top-contact__header-sentence {
  margin-top: 3.25rem;
  font-size: max(1.25rem, 16px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-top-contact__header-sentence {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-contact__header-sentence {
    font-size: max(0.9375rem, 12px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em;
    margin-top: 2.0625rem;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-contact__header-sentence {
    font-size: 0.9375rem;
  }
}

.p-top-contact__content {
  margin-top: 9.0625rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-contact__content {
    margin-top: 5rem;
  }
}

.p-top-contact__btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-contact__btn-wrap {
    flex-direction: column;
    gap: 1rem;
  }
}

.p-top-contact__btn {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  max-width: 34.0625rem;
  width: 100%;
  border-radius: 0.75rem;
  padding-block: 4rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767.99px) {
  .p-top-contact__btn {
    gap: 0.75rem;
    padding-block: 2.5rem;
    border-radius: 0.45rem;
    max-width: 25rem;
  }
}
.p-top-contact__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgb(52, 52, 52);
  transition: width 0.3s ease;
  transform-origin: left center;
}
@media (any-hover: hover) {
  .p-top-contact__btn:hover::after {
    width: 100%;
  }
}
.p-top-contact__btn.--company {
  background-color: #5088e2;
}
.p-top-contact__btn.--person {
  background-color: #0d46b7;
  stroke: #ffffff;
}

.p-top-contact__btn-icon {
  position: relative;
  z-index: 2;
}

.p-top-contact__btn.--company svg {
  fill: #ffffff;
}

.p-top-contact__btn-icon svg {
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 767.99px) {
  .p-top-contact__btn-icon svg {
    width: 1.2rem;
    height: 1.2rem;
  }
}

.p-top-contact__btn-text {
  position: relative;
  z-index: 2;
  font-size: max(1.5rem, 19.2px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0em;
}
@media screen and (max-width: 767.99px) {
  .p-top-contact__btn-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767.99px) {
  .p-top-contact__btn-text {
    font-size: max(1rem, 12.8px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767.99px) and (max-width: 767.99px) {
  .p-top-contact__btn-text {
    font-size: 1rem;
  }
}