@charset "utf-8";
/* ==================
fv
==================== */
.page__fv {
  width: 100%;
  padding-block: 212px 166px;
  position: relative;
}

.page__fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #0a7c8c, #7dbcc1);
}

.page__fv-slide {
  overflow: hidden;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.page__fv-bg-text-wrap {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: slideLoop 10s linear infinite;
}

@media screen and (min-width: 768px) {
  .page__fv-bg-text-wrap {
    animation: slideLoop 15s linear infinite;
  }
}

.page__fv-bg-text {
  white-space: nowrap;
  font-family: var(--ff-en2);
  font-size: clamp(100px, 11.35vw, 155px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: calc(50 / 1000 * 1em);
  color: rgba(255, 255, 255, 0.1);
}

.page__fv-inner {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

@media screen and (min-width: 768px) {
  .page__fv-inner.l-inner {
    max-width: calc(1106px + 40px * 2);
  }
}

.page__fv-image {
  position: absolute;
  z-index: 20;
  top: 90%;
  right: 40px;
  width: 30%;
  max-width: 330px;
  aspect-ratio: 330/320;
}

@media screen and (min-width: 400px) {
  .page__fv-image {
    top: 72%;
  }
}

@media screen and (min-width: 510px) {
  .page__fv-image {
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
  }
}
.page__fv-image img {
  aspect-ratio: 330/320;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.page__fv-title-ja {
  font-size: clamp(12px, 1.03vw, 14px);
  font-weight: 700;
  letter-spacing: calc(80 / 1000 * 1em);
  line-height: calc(20 / 14);
  display: flex;
  gap: 10px;
  align-items: center;
}

.page__fv-title-ja::before {
  content: "";
  width: 6px;
  aspect-ratio: 6/6;
  height: auto;
  background: var(--color-white);
  border-radius: 50%;
  flex-shrink: 0;
}

.page__fv-title-en {
  margin-top: 8px;
  font-size: clamp(30px, 4.03vw, 55px);
  font-weight: 500;
  letter-spacing: calc(100 / 1000 * 1em);
  line-height: calc(84 / 55);
}

/* ====================
メインコンテンツ
====================== */
.page {
  margin-top: -10%;
  border-radius: 30px 30px 0 0;
  background: #f5fafa;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .page {
    margin-top: -7%;
    border-radius: 50px 50px 0 0;
  }
}

@media screen and (min-width: 1200px) {
  .page {
    margin-top: -3%;
    border-radius: 50px 50px 0 0;
  }
}

@media screen and (min-width: 1440px) {
  .page {
    margin-top: -63px;
  }
}

/* ==============================
下層ページセクションタイトル
================================= */
.page__heading {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

@media screen and (min-width: 768px) {
  .page__heading {
    flex-direction: row;
    align-items: center;
  }
}

.page__heading-en {
  font-size: clamp(28px, 3.67vw, 50px);
  font-family: var(--ff-en);
  font-weight: 600;
  color: #027989;
  display: flex;
  align-items: center;
  gap: 23px;
  white-space: nowrap;
}

.page__heading-en::before {
  content: "";
  flex-shrink: 0;
  width: 15px;
  height: 10px;
  background: url(../images/heading-icon.svg) no-repeat center center / contain;
}

@media screen and (min-width: 768px) {
  .page__heading-en::before {
    width: 26px;
  }
}

.page__heading-ja {
  font-size: clamp(14px, 2.19vw, 16px);
  font-weight: 700;
  letter-spacing: calc(80 / 1000 * 1em);
}

/* =====================
下層ページテーブル
========================== */
.page__table {
  margin-top: 78px;
  border: 1px solid #b1b1b1;
  border-radius: 10px;
  overflow: hidden;
  max-width: 850px;
  margin-inline: auto;
  background: var(--color-white);
}

.page__table-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid #a7a7a7;
}

@media screen and (min-width: 768px) {
  .page__table-row {
    grid-template-columns: 143px 1fr;
  }
}

.page__table-row:last-child {
  border-bottom: none;
}

.page__table-row-dt {
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .page__table-row-dt {
    height: auto;
  }
}

.page__table-row-dt::after {
  border-bottom: 2px dotted #a7a7a7;
  position: absolute;
  content: "";
  width: 95%;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .page__table-row-dt::after {
    border-right: 2px dotted #a7a7a7;
    border-bottom: none;
    width: 2px;
    height: 80%;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    bottom: auto;
    right: 0;
  }
}

.page__table-row-dt-text {
  font-size: 14px;
  font-weight: 600;
  color: #027989;
}

.page__table-row-dd-text {
  padding: 21px 49px 19px 40px;
  font-family: var(--ff-zen);
  font-size: 14px;
  font-weight: 500;
  line-height: calc(30.8 / 14);
  color: #454545;
}

@media screen and (min-width: 768px) {
  .page__table-row-dd-text {
    font-size: 13px;
  }
}

@media screen and (min-width: 1024px) {
  .page__table-row-dd-text {
    font-size: 14px;
  }
}

.page__table-row-dd-text a {
  font-family: var(--ff-zen);
  font-size: 14px;
  font-weight: 500;
  line-height: calc(30.8 / 14);
  color: #454545;
}

@media screen and (min-width: 768px) {
  .page__table-row:first-child .page__table-row-dd-text br {
    display: none;
  }
}
