html {
  font-family: Poppins, Noto Sans JP, Yu Gothic Medium, Yu Gothic, YuGothic,
    sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;

  @media screen and (min-width: 769px) {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.title_lv2 {
  align-items: center;
  display: flex;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;

  @media screen and (min-width: 769px) {
    font-size: 36px;
    margin-bottom: 56px;
  }
}

.title_lv3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;

  @media screen and (min-width: 769px) {
    font-size: 30px;
  }
}

/* IRカレンダー */
.calendar {
  .calendar_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .calendar_item {
    @media screen and (min-width: 769px) {
      display: flex;
      align-items: center;
    }

    .date {
      font-size: 15px;
      font-weight: 700;
    }
    .link {
      margin-top: 8px;
      color: #0a2a69;
      text-decoration: underline;
      @media screen and (min-width: 769px) {
        margin: 0 0 0 24px;
      }
    }
  }
}

/* 財務ハイライト */
.highlights {
  .title_lv2 {
    font-weight: 700;
    font-size: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    @media screen and (min-width: 769px) {
      font-size: 36px;
      margin-bottom: 56px;
      line-height: 160%;
      letter-spacing: -0.04em;
      position: relative;
      padding-left: 28px;
    }

    &::before {
      content: "";
      display: inline-block;
      width: 12px;
      min-width: 12px;
      height: 12px;
      background: #f05537;
      border-radius: 50%;
      margin-right: 8px;
      vertical-align: middle;

      @media screen and (min-width: 769px) {
        margin-right: 16px;
        position: absolute;
        top: 0.6em;
        left: 0;
      }
    }
  }

  .highlight_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    row-gap: 80px;
    column-gap: 20px;

    @media screen and (min-width: 769px) {
      grid-template-columns: repeat(2, 1fr);
      row-gap: 100px;
      column-gap: 80px;
    }

    img {
      width: 100%;
      height: auto;
    }
  }

  .table {
    margin-top: 24px;

    @media screen and (min-width: 769px) {
      margin-top: 32px;
    }

    table {
      width: 100%;
    }

    thead {
      tr:nth-of-type(1) {
        th:nth-of-type(1) {
          border-top-left-radius: 10px;
        }

        th:last-of-type {
          border-top-right-radius: 10px;
        }
      }
    }

    tbody {
      tr:last-of-type {
        th:nth-of-type(1),
        td:nth-of-type(1) {
          border-bottom-left-radius: 10px;
        }

        td {
          &::before {
            border-bottom: 1px solid #e9ecf3;
          }

          &:last-of-type {
            &::before {
              border-bottom-right-radius: 10px;
            }
          }
        }
      }
    }

    th {
      background-color: #e9ecf3;
      text-align: center;
      font-weight: 400;
      font-size: 12px;
      padding: 10px;
      border-top: 1px solid #fff;

      &:not(:last-of-type) {
        border-right: 1px solid #fff;
      }

      @media screen and (min-width: 769px) {
        font-size: 14px;
      }
    }

    td {
      position: relative;
      text-align: center;
      padding: 10px;

      &::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        border-right: 1px solid #e9ecf3;
      }
    }
  }
}
