@charset "UTF-8";

/* =====================
  mv
===================== */
.mv {
  position: relative;
  margin-top: 120px;
  &::before {
    content: '';
    display: block;
    width: calc(100% - 80px);
    height: 360px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 32px;
  }
}

.mv .mv-title_wrap {
  position: relative;
  display: block;
  width: 1300px;
  min-height: 427px;
  margin-inline: auto;
  padding-inline: 80px;
  padding-top: 116px;
  .h1-title {
    display: grid;
    gap: 18px;
    p[lang='en'] {
      text-shadow: 0 0 6px rgba(15, 36, 47, 0.6);
      font-family: var(--mont);
      font-size: 24px;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: 0.48px;
      text-align: center;
      color: rgba(255, 255, 255, 0.8);
    }
    h1 {
      text-shadow: 0 0 6px rgba(15, 36, 47, 0.6);
      font-size: 48px;
      font-weight: 600;
      line-height: 1.7;
      letter-spacing: 7.68px;
      text-align: center;
      color: #fff;
    }
  }
}
/* =====================
  mv
===================== */
.sub-mv {
  position: relative;
  margin-top: 120px;
  .mv-title_wrap {
    position: relative;
    display: block;
    width: 1300px;
    min-height: 322px;
    margin-inline: auto;
    padding-inline: 80px;
    padding-top: 65px;
    .h1-title {
      display: grid;
      gap: 16px;
      padding-inline: 40px;

      p[lang='en'] {
        font-family: var(--mont);
        font-size: 24px;
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: 0.48px;
        color: rgba(27, 27, 30, 0.8);
      }
      h1 {
        font-size: 48px;
        font-weight: 600;
        line-height: 1.7;
        letter-spacing: 7.68px;
      }
    }
  }
  .bread {
    margin-top: 67px;
  }
}

/* =====================
  Bread
===================== */
.bread {
  position: relative;
  width: fit-content;
  margin-inline: auto 0;
  margin-top: 118px;
  padding-block: 24px;
  ul {
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 1em;
    justify-content: flex-end;
    li {
      display: flex;
      align-items: center;
      gap: 1em;
      position: relative;
      &::after {
        content: '';
        display: inline;
        width: 4px;
        aspect-ratio: 1/1;
        border-radius: 50rem;
        background-color: #cdd8e3;
      }
    }
  }
}
.link {
  color: #003d99;
  border-bottom: 1px solid #003d99;
}

.bread ul li:last-child::after {
  display: none;
}
/* =====================
  H3-title
===================== */
.h3-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 2.56px;
  color: #074d94;
}
/* =====================
  H4-title-20
===================== */
.h4-title-20 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 1.6px;
  color: #1b1b1e;
}
/* =====================
  H4-title-22
===================== */
.h4-title-22 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 1.76px;
  color: #1b1b1e;
}
/* =====================
  H4-title-24
===================== */
.h4-title-24 {
  font-size: 24px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.72px;
  color: #1b1b1e;
}
/* =====================
  gray-list
===================== */
.gray-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 12px;
  & > li {
    padding: 32px 24px;
    border-radius: 8px;
    background-color: #f4f6f8;
    & > h4 {
      font-size: 20px;
      font-weight: 600;
      letter-spacing: 1.6px;
      text-align: center;
    }
    & > p {
      font-size: 15px;
      line-height: 2;
      text-align: center;
    }
  }
}
/* =====================
  テーブル
===================== */
.table {
  width: 776px;

  tbody tr {
    th,
    td {
      font-size: 15px;
      border: solid 1px #babaca;
      padding-inline: 24px;
      padding-block: 15px;
      vertical-align: top;
    }
    th {
      width: 200px;
      font-weight: 600;
      background-color: #edf0f5;
    }
    td {
      background-color: #fff;
      p + p {
        margin-top: 0.5em;
      }
    }
  }
}
/* =====================
  Lineテーブル
===================== */
.table-inline {
  padding-inline: 80px;
  .line-table {
    width: 100%;

    tbody tr {
      border-bottom: solid 1px #babaca;
      th,
      td {
        padding-block: 39px;
        vertical-align: top;
        line-height: 2;
      }
      th {
        width: 216px;
        font-weight: 600;
      }
      td {
        padding-inline: 40px;
        p + p {
          margin-top: 1.8em;
        }
      }
    }
  }
}
