.expenses {
  display: flex;
  flex-direction: column;
  padding: 100px 160px;
  gap: 80px;
}

.expenses-title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

.expenses-title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: 1.6px;
}

.expenses-detail {
  margin-top: 40px;
  line-height: 32px;
  letter-spacing: 0.64px;
}

/* ========================================================================== */
/* expenses-fee */
/* ========================================================================== */

.expenses-fee {
  width: 100%;
  overflow-x: auto;
  margin-top: 40px;
}

.expenses-fee table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.expenses-fee th,
.expenses-fee td {
  border: 1px solid var(--title-text-dark-blue);
  padding: 16px 24px;
  text-align: left;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.64px;
  vertical-align: middle;
}

.expenses-fee thead th {
  background-color: #EDF0F5;
  color: var(--title-text-dark-blue);
  text-align: left;
  border-bottom: 1px solid var(--title-text-dark-blue);
}

.expenses-fee .expenses-fee-empty {
  background-color: #fff;
  border-top: none;
  border-left: none;
}

.expenses-fee .expenses-fee-row-header {
  background-color: var(--title-text-dark-blue);
  color: #fff;
  width: 20%;
  min-width: 150px;
  font-weight: 600;
  text-align: left;
}

.expenses-fee td {
  background-color: #fff;
}

/* ========================================================================== */
/* expenses-scholarship */
/* ========================================================================== */

.expenses-scholarship {
  width: 100%;
  margin-top: 40px;
}

.expenses-scholarship-title {
  background-color: var(--title-text-dark-blue);
  color: #fff;
  padding: 16px 24px;
  line-height: 20px;
  letter-spacing: 0.64px;
}

.expenses-scholarship-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--title-text-dark-blue);
}

.expenses-scholarship-table th,
.expenses-scholarship-table td {
  padding: 16px 24px;
  border: 1px solid var(--title-text-dark-blue);
  font-weight: 500;

  line-height: 20px;
  letter-spacing: 0.64px;
}

.expenses-scholarship-table th {
  background-color: #EDF0F5;
  color: var(--title-text-dark-blue);
  width: 20%;
  min-width: 90px;
  text-align: left;
}

.expenses-scholarship-table td {
  background-color: #fff;
}

.expenses-scholarship-table a {
  color: #007BFF;
  text-decoration: underline;
}

/* ========================================================================== */
/* @media：TB */
/* ========================================================================== */

@media (max-width: 1023px) {

  .expenses {
    padding: 64px;
  }

  .expenses-title {
    text-align: center;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 1.28px;
  }

  .expenses-detail {
    margin-top: 8px;
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0.48px;
  }

  /* ==================================================== */
  /* expenses-fee */
  /* ==================================================== */

  .expenses-fee th,
  .expenses-fee td {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.56px;
  }
}

/* ========================================================================== */
/* @media：SP */
/* ========================================================================== */

@media (max-width: 767px) {

  .expenses {
    padding: 64px 24px;
  }

  .expenses-detail {
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 0.4px;
  }

  /* ==================================================== */
  /* expenses-scholarship */
  /* ==================================================== */

  .expenses-scholarship-table tr {
    border-bottom: 1px solid var(--title-text-dark-blue);
  }

  .expenses-scholarship-table th,
  .expenses-scholarship-table td {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.56px;
  }
}

@media print {
  .expenses {
    gap: 400px;
  }
}