@charset "utf-8";

.page__fv {
  width: 100%;
  aspect-ratio: 1366/383;
  position: relative;
  height: 383px;
}

.page__fv-image {
  aspect-ratio: 1366/383;
  height: 383px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.page__fv-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(9, 89, 160, 0.24);
  pointer-events: none;
}

.page__fv-image img {
  aspect-ratio: 1366/383;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page__fv-inner {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1000px) {
  .page__fv-inner.l-inner {
    max-width: calc(1124px + 59px * 2);
  }
}

.page__fv-container {
  pointer-events: auto;
  position: relative;
  width: 100%;
  height: 100%;
}

.page__fv-heading {
  position: absolute;
  top: 64%;
  left: 0;
}

.page__fv-title-en {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--ff-en);
  letter-spacing: calc(100 / 1000 * 1em);
  line-height: calc(25 / 15);
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
}

.page__fv-title-ja {
  margin-top: 10px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: calc(150 / 1000 * 1em);
  line-height: calc(40 / 30);
  color: var(--color-white);
}

.page {
  background: linear-gradient(
    to bottom,
    rgba(253, 254, 255, 0.69),
    rgba(222, 239, 255, 0.69)
  );
}

@media screen and (min-width: 1000px) {
  .page__inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .page__inner.l-inner {
    max-width: calc(1124px + 59px * 2);
  }
}

/* サイドバー */
.page__sidebar {
  display: none;
  flex-shrink: 0;
  height: fit-content;
  position: sticky;
  z-index: 10;
  top: 80px;
  left: 0;
  flex-direction: column;
  width: 211px;
  padding: 100px 20px 100px 0;
}

@media screen and (min-width: 1000px) {
  .page__sidebar {
    display: block;
  }
}

.page__sidebar-title {
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: calc(80 / 1000 * 1em);
  line-height: calc(24 / 16);
  border-bottom: 1px solid #24354c;
}

.page__sidebar-list {
  margin-top: 20px;
  border-top: 1px solid #bbcdd5;
  padding-top: 12px;
  position: relative;
}

.page__sidebar-list::before {
  content: "";
  position: absolute;
  border-top: 1px solid #51acd9;
  top: -1px;
  left: 0;
  width: 15%;
  height: 1px;
}

.page__sidebar-link p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: calc(50 / 1000 * 1em);
  line-height: calc(35 / 14);
  padding: 7px 10px 2px;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page__sidebar-link p::before {
  content: "";
  width: 6px;
  height: 6px;
  padding-right: 6px;
  background: #51acd9;
  border-radius: 50%;
}

.page__sidebar-link:hover {
  opacity: 1;
}

.page__sidebar-link:focus p,
.page__sidebar-link:hover p {
  background: #f6f7fa;
}

/* ======================
  右側コンテンツ
=====================  */
.page__right {
  padding: 100px 0 303px;
  position: relative;
}

@media screen and (min-width: 1000px) {
  .page__right {
    padding: 100px 0 303px 78px;
  }
  .page__right::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 97%;
    background: #bbcdd5;
    left: 0;
    top: 0;
  }
}

.page__right-description {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: calc(80 / 1000 * 1em);
  line-height: calc(25 / 14);
}

.page__right-head-list {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 20px;
}

@media screen and (min-width: 600px) {
  .page__right-head-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page__right-head-link {
  margin-left: 5px;
  border-top: 1px solid #bbcdd5;
  padding-block: 23px 21px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.page__right-head-link img {
  width: 41px;
  aspect-ratio: 41/41;
  object-fit: cover;
  object-position: center;
}

.page__right-head-link p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: calc(50 / 1000 * 1em);
  line-height: calc(35 / 14);
  display: flex;
  align-items: center;
  gap: 20px;
}

.page__right-head-link p::after {
  content: "";
  width: 10px;
  height: 5px;
  background: url(../images/feature-list-icon.svg) no-repeat center
    center/contain;
  padding-left: 9px;
  transition: all 0.3s ease;
}

.page__right-head-link:hover p::after {
  transform: translateY(5px);
}

.page__right-container {
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media screen and (min-width: 768px) {
  .page__right-container {
    margin-bottom: 125px;
    gap: 123px;
  }
}

.page__right-box-image {
  aspect-ratio: 835/430;
  border-radius: 10px;
  max-width: 835px;
  height: auto;
  overflow: hidden;
  position: relative;
}

.page__right-box-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(9, 89, 160, 0.1);
  top: 0;
  left: 0;
  pointer-events: none;
}

.page__right-box-image img {
  border-radius: 10px;
  aspect-ratio: 835/430;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: auto;
}

.page__right-box-image-heading {
  position: absolute;
  z-index: 2;
  bottom: 8%;
  left: 4%;
  color: var(--color-white);
}

.page__right-box-image-number {
  display: inline-block;
  font-family: var(--ff-en);
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
  border-bottom: 4px solid var(--color-white);
}

.page__right-box-image-title {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: calc(150 / 1000 * 1em);
  line-height: calc(40 / 30);
}

.page__right-box-title {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: calc(60 / 1000 * 1em);
  line-height: calc(34 / 26);
}

@media screen and (min-width: 768px) {
  .page__right-box-title {
    font-size: 26px;
  }
}

.page__right-box-text {
  margin-top: 30px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: calc(80 / 1000 * 1em);
  line-height: calc(25 / 14);
}

@media screen and (min-width: 768px) {
  .page__right-box-text {
    font-size: 14px;
  }
}

.page__right-box-cards {
  margin-top: 60px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.page__right-box-card {
  min-width: 205px;
  max-width: 258px;
}

.page__right-box-card img {
  border-radius: 10px;
  aspect-ratio: 258/200;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: auto;
}

.page__right-box-card-title {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: calc(60 / 1000 * 1em);
  line-height: 1;
}
