@charset "UTF-8";
:root {
  --viewport-base-pc: 1420;
  --viewport-base-sp: 375;
  --vpx-ratio: 1;
}

@media screen and (min-width: 769px) and (max-width: 1420px) {
  :root {
    --vpx-ratio: var(--viewport-ratio-pc, calc(100vw / 1420px));
  }
}
@media screen and (max-width: 768px) {
  :root {
    --vpx-ratio: min(var(--viewport-ratio-sp, calc(100vw / 375px)), 1.4814814815);
  }
}
.intro {
  width: 100%;
  padding-bottom: calc(30px * var(--vpx-ratio));
  background: #fff;
}
.intro__ttl {
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 8px;
  margin-bottom: 30px;
  margin-inline: auto;
  border-bottom: 1px solid #202121;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
}
.intro__lead {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .intro {
    padding-bottom: calc(18px * var(--vpx-ratio));
  }
  .intro__ttl {
    padding-bottom: 5px;
    margin-bottom: 25px;
    font-size: 20px;
  }
  .intro__lead {
    font-size: 14px;
    text-align: start;
  }
}
.finance {
  width: 100%;
  padding-top: calc(30px * var(--vpx-ratio));
  background: #fff;
}
.finance__block + .finance__block {
  margin-top: 80px;
}
.finance__block > *:not(.finance__ttl) + * {
  margin-top: 40px;
}
.finance__ttl {
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 1em;
  padding-bottom: 8px;
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2em;
  border-bottom: 1px dashed #202121;
}
.finance__ttl::before {
  content: "■ ";
}
.finance__box > *:not(.finance__subttl) + * {
  margin-top: 36px;
}
.finance__subttl {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 27px;
  margin-bottom: 24px;
  background: #202121;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.finance__lead {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.6;
}
.finance__txt, .finance__note, .finance__notice {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.6;
}
.finance__note {
  padding-left: 1.15em;
  text-indent: -1.15em;
}
.finance__note::before {
  content: "※";
}
.finance__notice {
  padding-left: 1.15em;
  text-indent: -1.15em;
  font-weight: 500;
}
.finance__notice::before {
  content: "◎";
}
.finance__notice + .finance__note {
  margin-top: 0 !important;
  font-weight: 500;
}
.finance__list {
  display: grid;
}
.finance__item {
  padding-left: 1.05em;
  text-indent: -1.05em;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.6;
}
.finance__item::before {
  content: "・";
}
.finance__order {
  display: grid;
  row-gap: 24px;
  counter-reset: finance-order;
}
.finance__order-item {
  padding-left: 1.47em;
  text-indent: -1.47em;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.6;
  counter-increment: finance-order;
}
.finance__order-item::before {
  content: counter(finance-order) ".";
  font-family: "Roboto", sans-serif;
  font-size: 22px;
}
.finance__detail + .finance__detail {
  margin-top: 45px;
}
.finance__detail > *:not(.finance__heading) + * {
  margin-top: 36px;
}
.finance__heading {
  display: inline-block;
  margin-bottom: 20px;
  border-bottom: 1px solid #202121;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
.finance__btn {
  position: relative;
  width: 100%;
  max-width: 320px;
  padding-block: 17px;
  margin-inline: auto;
  background: #595757;
  box-shadow: 3px 3px 0 #D9D8CB;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.finance__btn-txt {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.finance__btn-arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 6px;
}
.finance__table {
  --head-width: 25%;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.finance__table--two-col {
  --head-width: 50%;
}
.finance__col--head {
  width: var(--head-width);
}
tbody .finance__row:last-child > .finance__label,
tbody .finance__row:last-child > .finance__data {
  border-bottom: none;
}
.finance__head, .finance__label, .finance__data {
  padding: 12px;
  border-bottom: 1px solid #202121;
  border-left: 1px solid #202121;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: start;
  vertical-align: middle;
}
.finance__head:first-child, .finance__label:first-child, .finance__data:first-child {
  border-left: none;
}
.finance__head {
  background: #f2f2f2;
  text-align: center;
}
.finance__data--num {
  text-align: end;
}

@media screen and (max-width: 768px) {
  .finance {
    padding-top: calc(18px * var(--vpx-ratio));
  }
  .finance__block + .finance__block {
    margin-top: 50px;
  }
  .finance__block > *:not(.finance__ttl) + * {
    margin-top: 32px;
  }
  .finance__ttl {
    padding-bottom: 6px;
    margin-bottom: 24px;
    font-size: 18px;
  }
  .finance__box > *:not(.finance__subttl) + * {
    margin-top: 24px;
  }
  .finance__subttl {
    padding: 8px 18px;
    margin-bottom: 18px;
    font-size: 16px;
  }
  .finance__lead {
    font-size: 14px;
  }
  .finance__txt, .finance__note, .finance__notice {
    font-size: 14px;
  }
  .finance__item {
    font-size: 14px;
  }
  .finance__scholarship {
    display: grid;
    row-gap: 18px;
  }
  .finance__scholarship-item {
    font-size: 14px;
  }
  .finance__scholarship-item::before {
    font-size: 18px;
  }
  .finance__detail + .finance__detail {
    margin-top: 36px;
  }
  .finance__detail > *:not(.finance__heading) + * {
    margin-top: 24px;
  }
  .finance__heading {
    margin-bottom: 18px;
    font-size: 16px;
  }
  .finance__table-wrap {
    width: 100%;
    overflow-x: scroll;
  }
  .finance__table {
    --head-width: 20%;
    width: 900px;
  }
  .finance__table--two-col {
    --head-width: 50%;
    width: 100%;
  }
  .finance__col--head {
    width: var(--head-width);
  }
  .finance__head, .finance__label, .finance__data {
    padding: 10px;
    font-size: 14px;
  }
}
@media (hover: hover) {
  .finance__btn:hover,
  .finance__btn:focus-visible {
    box-shadow: none;
    opacity: 0.7;
    transform: translate(3px, 3px);
  }
}
/*# sourceMappingURL=expense.css.map */
