@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&display=swap");
/* Breakpoint variables */
/* Color variables */
/* Font variables */
/* ==========================================
   LOCAL MIXINS
   ========================================== */
/**
 * Section title with gradient underline
 */
/**
 * External link icon mixin
 * @param {string} $icon-color - Icon color variant ('default' or 'white')
 * @param {number} $size - Icon size in pixels (default: 20px)
 */
/**
 * Button base styles
 */
/* ==========================================
   COMMON STYLES
   ========================================== */
main {
  font-family: "Baskervville", serif;
  color: #ffffff;
  overflow-x: hidden;
}

.pagetop {
  display: none !important;
}

/* ==========================================
   CTA BUTTON COMPONENT
   ========================================== */
a.cta-button {
  position: relative;
  display: inline-block;
  width: 384px;
  height: 66px;
  margin: 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 66px;
  color: #d5a26e;
  border: 1px solid #d5a26e;
  padding-left: 98px;
  transition: opacity 0.3s ease;
}
a.cta-button::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  content: "";
  background-image: url("../images/ui/ui_bullet@2x.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
a.cta-button:hover {
  opacity: 0.75;
  text-decoration: none;
}
a.cta-button--black {
  background-color: rgba(0, 0, 0, 0.7);
}
a.cta-button--transparent {
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  a.cta-button {
    width: 218px;
    padding: 0 50px 0 20px;
    font-size: 18px;
    height: 60px;
    line-height: 60px;
  }
  a.cta-button::after {
    right: 14px;
  }
}

h2.heading2 {
  font-weight: 300;
  font-size: 46px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-align: center;
  padding: 24px 40px;
}
@media screen and (max-width: 767px) {
  h2.heading2 {
    font-weight: 300;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    padding: 4px;
  }
}
h2.heading2:after {
  content: "";
  display: block;
  width: 120%;
  margin-left: -10%;
  height: 2px;
  margin-top: 20px;
  background: linear-gradient(90deg, rgba(177, 120, 63, 0) 0%, #b1783f 36.84%, #b1783f 68.42%, rgba(177, 120, 63, 0) 105.27%);
}
@media screen and (max-width: 767px) {
  h2.heading2:after {
    width: 100%;
    margin-left: 0;
  }
}

/* ==========================================
   PREMIUM SECTION
   ========================================== */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  .hero {
    height: 536px;
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.hero__title {
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.hero__title-main {
  font-family: "Baskervville", serif;
}
.hero__title-sub {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Roboto", "Helvetica Neue", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .hero__title {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 80px;
    top: 50%;
    transform: translateY(-50%);
  }
  .hero__title-main {
    font-weight: 300;
    font-size: 64px;
    line-height: 1.4;
    letter-spacing: 0em;
    margin: 0 0 0 6%;
  }
  .hero__title-main strong {
    font-weight: 500;
    font-size: 64px;
    line-height: 1.4;
    letter-spacing: 0em;
  }
  .hero__title-sub {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0em;
    margin-bottom: -10px !important;
  }
}
@media screen and (max-width: 767px) {
  .hero__title {
    top: 50%;
    transform: translateY(-50%);
    margin-left: 16px;
  }
  .hero__title-main {
    font-weight: 300;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    margin: 0;
  }
  .hero__title-main strong {
    font-weight: 500;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
  .hero__title-sub {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0;
    margin-top: 40px;
    margin-bottom: -10px !important;
  }
}
.hero__presented-by {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .hero__presented-by {
    top: 21px;
    right: 26px;
    gap: 20px;
  }
  .hero__presented-by__logo {
    width: 124px;
  }
}
@media screen and (max-width: 767px) {
  .hero__presented-by {
    top: 21px;
    right: 26px;
    gap: 12px;
  }
  .hero__presented-by__logo {
    width: 100px;
  }
}
.hero__carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__slide {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero__slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}
.hero .swiper-slide .hero__slide-image {
  transform: scale(1);
  transition: transform 7s linear;
}
.hero .swiper-slide-active .hero__slide-image,
.hero .swiper-slide-prev .hero__slide-image {
  transform: scale(1.1);
}
.hero .swiper-pagination {
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .hero .swiper-pagination {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    top: 50vh;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .hero .swiper-pagination {
    bottom: 20px;
    top: auto;
  }
}
.hero .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  margin: 6px 0;
  transition: opacity 0.3s ease;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .hero .swiper-pagination .swiper-pagination-bullet {
    margin: 0 6px;
  }
}
.hero .swiper-pagination .swiper-pagination-bullet-active {
  background: white;
  opacity: 1;
}

.spending-program__inner,
.card-list__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  background: linear-gradient(to right, #262626, #000000), url("../images/textures/noise_black_pc@2x.png");
  background-blend-mode: multiply;
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
}
@media screen and (max-width: 767px) {
  .spending-program__inner,
  .card-list__inner {
    background: linear-gradient(to right, #262626, #000000), url("../images/textures/noise_black_sp@2x.png");
    background-blend-mode: multiply;
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
  }
}
.spending-program__container,
.card-list__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .spending-program__container,
  .card-list__container {
    padding: 96px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .spending-program__title,
  .card-list__title {
    width: 100%;
    margin: 0 32px;
  }
}
.spending-program__title-text,
.card-list__title-text {
  font-weight: 300;
  font-size: 46px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-align: center;
  padding: 24px 40px;
}
@media screen and (max-width: 767px) {
  .spending-program__title-text,
  .card-list__title-text {
    font-weight: 300;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    padding: 4px;
    margin: 0 32px;
  }
}
.spending-program__content,
.card-list__content {
  width: 100%;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .spending-program__content,
  .card-list__content {
    padding-bottom: 60px;
  }
}
.spending-program__description,
.card-list__description {
  width: 1000px;
  margin: 90px auto 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .spending-program__description,
  .card-list__description {
    width: auto;
    margin: 32px 32px 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}

.spending-program__list {
  width: 1000px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  list-style-type: none;
  padding: 0;
  margin: 60px auto;
}
@media screen and (max-width: 767px) {
  .spending-program__list {
    width: auto;
    margin: 32px 32px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
.spending-program__list-item {
  width: 322px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .spending-program__list-item {
    width: 100%;
  }
}
.spending-program__list-item-image {
  height: 292px;
  overflow: hidden;
}
.spending-program__list-item-image img {
  max-width: inherit;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .spending-program__list-item-image {
    height: 168px;
  }
  .spending-program__list-item-image img {
    object-fit: cover;
  }
}
.spending-program__list-item-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 170px;
  background: linear-gradient(#967554, #967554), url("../images/textures/noise_gold_sp@2x.png");
  background-blend-mode: multiply;
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  border: 0;
  padding: 24px;
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .spending-program__list-item-text {
    padding: 16px;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
.spending-program__list-item-text p {
  margin: 0;
}
.spending-program__list-item-text small {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .spending-program__list-item-text small {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0em;
  }
}
.spending-program__button .cta-button {
  display: block;
  margin: 0 auto;
}
.spending-program__sublist {
  width: 100%;
  max-width: 1440px;
  min-width: 1320px;
  list-style-type: none;
  padding: 0;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .spending-program__sublist {
    max-width: unset;
    min-width: unset;
  }
}
@media screen and (min-width: 768px) {
  .spending-program__sublist-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 0 72px;
  }
  .spending-program__sublist-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 767px) {
  .spending-program__sublist-item {
    margin: 32px 0 56px;
    width: 100%;
  }
  .spending-program__sublist-item:nth-child(odd) .spending-program__sublist-image {
    margin-left: auto;
    margin-right: 0;
  }
  .spending-program__sublist-item:last-child {
    margin: 32px 0 0;
  }
}
.spending-program__sublist-image {
  width: 830px;
  height: 400px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .spending-program__sublist-image {
    width: calc(100% - 32px);
    aspect-ratio: 1/1;
    height: auto;
  }
}
.spending-program__sublist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spending-program__sublist-text {
  flex-shrink: 0;
  width: 454px;
}
@media screen and (max-width: 767px) {
  .spending-program__sublist-text {
    width: auto;
    margin: 16px 32px;
  }
}
.spending-program__sublist-title {
  font-weight: 300;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .spending-program__sublist-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
}
.spending-program__sublist-description {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .spending-program__sublist-description {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
  }
}
.spending-program__sublist-description ul {
  margin: 0;
}
.spending-program__sublist-description li {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  list-style-type: disc;
}
@media screen and (max-width: 767px) {
  .spending-program__sublist-description li {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
.spending-program__sublist-description li::marker {
  color: #ffffff;
}
.spending-program__sublist-description li:last-child {
  margin-bottom: 0;
}
.spending-program__sublist a.spending-program__sublist-button {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  vertical-align: middle;
  color: #d5a26e;
  text-decoration: underline;
  text-underline-offset: 0.4em;
}
.spending-program__sublist a.spending-program__sublist-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: url("../images/ui/new_tab_light-gold.svg") no-repeat center center/contain;
}
.spending-program__sublist a.spending-program__sublist-button {
  transition: opacity 0.3s ease;
}
.spending-program__sublist a.spending-program__sublist-button:hover {
  opacity: 0.7;
}
.spending-program__sublist a.spending-program__sublist-button span {
  text-decoration: underline;
  margin-right: 26px;
}
@media screen and (max-width: 767px) {
  .spending-program__sublist a.spending-program__sublist-button {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
.spending-program__sublist-item:nth-child(even) > .spending-program__sublist-text {
  margin-right: 36px;
}
.spending-program__sublist-item:nth-child(odd) > .spending-program__sublist-text {
  margin-left: 36px;
}
.spending-program__service {
  width: 994px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 100px;
  background: linear-gradient(120.32deg, #252525 10.75%, #252525 51.35%, #252525 90.42%);
}
@media screen and (max-width: 767px) {
  .spending-program__service {
    width: auto;
    margin: 32px 32px;
    flex-direction: column;
    padding: 16px;
  }
}
.spending-program__service a.spending-program__service-item--modal::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background: url("../images/ui/icon_plus.svg") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .spending-program__service a.spending-program__service-item--modal::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background: url("../images/ui/icon_plus.svg") no-repeat center center/contain;
  }
}
.spending-program__service a.spending-program__service-item--link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background: url("../images/ui/new_tab_gold.svg") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .spending-program__service a.spending-program__service-item--link::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background: url("../images/ui/new_tab_gold.svg") no-repeat center center/contain;
  }
}
.spending-program__service a.spending-program__service-item::after {
  top: auto;
  bottom: 5px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .spending-program__service a.spending-program__service-item::after {
    right: 16px;
  }
}
.spending-program__service a:hover {
  text-decoration: none;
  opacity: 0.75;
}
.spending-program__service-item {
  position: relative;
  display: block;
  height: 450px;
  background: linear-gradient(#f4f3ed, #f4f3ed), url("../images/textures/noise_black_sp@2x.png");
  background-blend-mode: multiply;
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .spending-program__service-item {
    height: auto;
  }
}
.spending-program__service-item-image {
  width: 100%;
}
.spending-program__service-item-image img {
  object-fit: cover;
}
.spending-program__service-item-text {
  padding: 24px 33px 0;
  color: #080621;
}
@media screen and (max-width: 767px) {
  .spending-program__service-item-text {
    padding: 16px 16px 40px;
  }
}
.spending-program__service-item-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .spending-program__service-item-title {
    margin-bottom: 16px;
  }
}
.spending-program__service-item-description {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .spending-program__service-item-description {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
.spending-program__service-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  max-width: 1030px;
  font-family: "Baskervville", serif;
  color: #080621;
  border: 9px solid #d5a26e;
  background: linear-gradient(#ffffff, #ffffff), url("../images/textures/noise_black_pc@2x.png");
  background-blend-mode: multiply;
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
}
@media screen and (max-width: 767px) {
  .spending-program__service-modal {
    width: calc(100% - 72px);
    height: calc(100% - 72px);
    background: linear-gradient(#ffffff, #ffffff), url("../images/textures/noise_black_sp@2x.png");
    background-blend-mode: multiply;
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
  }
}
.spending-program__service-modal-content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .spending-program__service-modal-content {
    flex-direction: column;
    height: 100%;
    overflow-y: scroll;
  }
}
.spending-program__service-modal-image {
  width: 420px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .spending-program__service-modal-image {
    flex-shrink: 1;
    width: 100%;
    height: 208px;
  }
}
.spending-program__service-modal-image img {
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .spending-program__service-modal-image img {
    width: 100%;
    height: 100%;
  }
}
.spending-program__service-modal-description {
  position: relative;
  padding: 75px 25px 60px 50px;
}
@media screen and (max-width: 767px) {
  .spending-program__service-modal-description {
    padding: 16px;
  }
}
.spending-program__service-modal-description h2 {
  font-weight: 300;
  font-size: 46px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #b1783f;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .spending-program__service-modal-description h2 {
    font-weight: 300;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
}
.spending-program__service-modal-description p {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .spending-program__service-modal-description p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
  }
}
.spending-program__service-modal-description small {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .spending-program__service-modal-description small {
    font-weight: 300;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
  }
}
.spending-program__service-modal-close {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 24px;
  right: 24px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.spending-program__service-modal-close:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .spending-program__service-modal-close {
    top: 16px;
    right: 16px;
  }
}
.spending-program__service-modal-close::before {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 1px;
  background: url("../images/ui/icon_close_white.svg") no-repeat center center/contain;
}
.spending-program__service-modal-close::after {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0px;
  background: url("../images/ui/icon_close_light-gold.svg") no-repeat center center/contain;
}
.spending-program__service-modal-list {
  display: flex;
  flex-direction: row;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  gap: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .spending-program__service-modal-list {
    margin-bottom: 12px;
  }
}
.spending-program__service-modal-list strong {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .spending-program__service-modal-list strong {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.02em;
  }
}
.spending-program__service-modal-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.spending-program__service-modal-list li {
  margin: 2px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .spending-program__service-modal-list li {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.02em;
  }
}
.spending-program__service-modal a.spending-program__service-modal-link {
  color: #b1783f;
  text-decoration: underline;
  text-underline-offset: 0.4em;
}
.spending-program__service-modal a.spending-program__service-modal-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: url("../images/ui/new_tab_gold.svg") no-repeat center center/contain;
}
.spending-program__service-modal-link {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  transition: opacity 0.3s ease;
}
.spending-program__service-modal-link:hover {
  text-decoration: underline;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .spending-program__service-modal-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    margin-bottom: 0;
  }
}
.spending-program__service-modal-link span {
  text-decoration: underline;
  display: inline-block;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .spending-program__service-modal-link span {
    text-align: right;
  }
}
.spending-program__service-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  position: relative;
  padding: 79px 123px;
  background: linear-gradient(94.89deg, #d5a26e -13.98%, #b1783f 102.89%), url("../images/textures/noise_black_pc@2x.png");
  background-blend-mode: multiply;
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
}
@media screen and (max-width: 767px) {
  .spending-program__service-more {
    padding: 56px 32px;
    background: linear-gradient(94.89deg, #d5a26e -13.98%, #b1783f 102.89%), url("../images/textures/noise_black_sp@2x.png");
    background-blend-mode: multiply;
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
  }
}
.spending-program__service-more-description {
  font-weight: 500;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .spending-program__service-more-description {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
.spending-program__service-more-link {
  vertical-align: middle;
}
.spending-program__service-more-link a {
  color: #d5a26e;
  text-decoration: underline;
  text-underline-offset: 0.4em;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.spending-program__service-more-link a:hover {
  opacity: 0.7;
}
.spending-program__service-more-link a span {
  text-decoration: underline;
  display: inline-block;
  margin-right: 30px;
}
@media screen and (min-width: 768px) {
  .spending-program__service-more-link a {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
  .spending-program__service-more-link a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background: url("../images/ui/new_tab_white.svg") no-repeat center center/contain;
  }
}
@media screen and (max-width: 767px) {
  .spending-program__service-more-link a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background: url("../images/ui/new_tab_white.svg") no-repeat center center/contain;
  }
  .spending-program__service-more-link a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-align: right;
  }
}
.spending-program__service-more-link br {
  display: none;
}
@media screen and (max-width: 767px) {
  .spending-program__service-more-link br {
    display: block;
  }
}

.card-list__cards-item-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0em;
}
.card-list__cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .card-list__cards {
    flex-direction: column;
    width: auto;
    margin: 50px 32px;
  }
}
.card-list__cards-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 580px;
  padding: 0 100px;
}
@media screen and (max-width: 767px) {
  .card-list__cards-item {
    width: 100%;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .card-list__cards-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
  }
}
.card-list__cards-item-image {
  position: relative;
  width: 100%;
  object-fit: cover;
}
.card-list__cards-item-image::before {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -12.5%;
  width: 125%;
  height: 50%;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 0.05;
  filter: blur(30px);
  z-index: 1;
}
.card-list__cards-item-image img {
  position: relative;
  z-index: 2;
  aspect-ratio: 6/4;
  object-fit: cover;
}
.card-list__cards-item-title {
  padding-top: 48px;
  text-align: center;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .card-list__cards-item-title {
    padding-top: 32px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
.card-list__cards-item-description {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  opacity: 0.8;
}
.card-list__cards-item-description ul {
  margin: 0;
}
.card-list__cards-item-description ul li {
  list-style-type: disc;
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.card-list__cards-item-description ul li::marker {
  color: #ffffff;
}
.card-list__cards-item-button {
  position: relative;
  margin: 40px auto 0;
  padding: 12px;
  width: 240px;
  background-color: #b1783f;
  color: #ffffff;
  font-family: "Baskervville", serif;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .card-list__cards-item-button {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.12em;
    margin: 32px auto 0;
  }
}
.card-list__cards-item a.card-list__cards-item-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: url("../images/ui/new_tab_white.svg") no-repeat center center/contain;
}
.card-list__cards-item a.card-list__cards-item-button {
  transition: opacity 0.3s ease;
}
.card-list__cards-item a.card-list__cards-item-button::after {
  right: 10px;
}
.card-list__cards-item a.card-list__cards-item-button:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .card-list__cards {
    flex-direction: column;
    padding: 0;
  }
  .card-list__cards-item-text {
    padding: 0;
  }
  .card-list__cards-item-text-title {
    padding-top: 32px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
  .card-list__cards-item-button {
    margin-top: 32px;
  }
  .card-list__cards > * + * {
    margin-top: 64px;
  }
}
.card-list__banks {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(#574f48, #574f48), url("../images/textures/noise_charcoal_pc@2x.png");
  background-blend-mode: multiply;
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
}
@media screen and (max-width: 767px) {
  .card-list__banks {
    width: auto;
    padding: 56px 32px;
    background: linear-gradient(#574f48, #574f48), url("../images/textures/noise_charcoal_sp@2x.png");
    background-blend-mode: multiply;
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
  }
}
.card-list__banks-description {
  width: 900px;
  font-family: "Baskervville", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .card-list__banks-description {
    width: auto;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    margin: 0 auto 35px;
  }
  .card-list__banks-description br {
    display: none;
  }
}
.card-list__banks-list {
  width: 900px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .card-list__banks-list {
    width: auto;
  }
}
.card-list__banks-list li {
  word-break: keep-all;
  font-family: "Baskervville", serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  padding: 0 72px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .card-list__banks-list li {
    font-weight: 300;
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.02em;
    padding: 0 12px;
  }
}
.card-list__banks-list li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

/* ------------------------------------------
   About
   ------------------------------------------ */
.about {
  background: #292929;
  padding: 48px 0 100px;
}
.about__container {
  max-width: 1200px;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about__container {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 32px;
  }
}
.about__logo {
  flex-grow: 0;
  flex-shrink: 0;
  width: 102px;
  height: 78px;
  margin-top: 45px;
  margin-right: 102px;
}
.about__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .about__logo {
    width: 78px;
    height: 49px;
    margin: 0 0 24px -7px;
  }
}
.about__description {
  flex-grow: 1;
  flex-shrink: 0;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}
.about__description h2 {
  width: 592px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 500;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .about__description h2 {
    width: 100%;
  }
}
.about__description p {
  width: 592px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .about__description p {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .about__description {
    margin-bottom: 72px;
  }
}
.about__sns {
  align-self: flex-end;
  display: flex;
  justify-content: space-between;
  flex-grow: 0;
  flex-shrink: 0;
  width: 121px;
}
@media screen and (max-width: 767px) {
  .about__sns {
    width: 105px;
    align-self: flex-start;
  }
}
.about__sns a {
  display: inline-block;
  width: 48px;
  height: 48px;
  transition: opacity 0.3s ease;
}
.about__sns a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .about__sns a {
    width: 40px;
    height: 40px;
  }
}
.about__sns a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================================
   INTERACTION ANIMATIONS
   ========================================== */
[data-interaction=fade-in] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-in-out 0.3s, transform 0.8s ease-in-out 0.3s;
}
[data-interaction=fade-in][data-visibility=visible] {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   APPLY NOW
   ========================================== */
.apply-now {
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 999;
  text-align: center;
  position: fixed;
  bottom: 25px;
  right: 40px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  transition: opacity 0.3s ease;
}
.apply-now:hover {
  opacity: 0.7;
}
.apply-now[data-status=hidden] {
  visibility: hidden;
  opacity: 0;
}
.apply-now[data-status=visible] {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .apply-now {
    width: 68px;
    height: 68px;
    right: 16px;
    bottom: 12px;
  }
}
.apply-now::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  background-image: url("../images/ui/apply_arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  .apply-now::after {
    width: 7px;
    height: 7px;
    bottom: 10px;
  }
}
.apply-now a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/ui/bg_apply@2x.png") no-repeat center center/contain;
  color: #ffffff;
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .apply-now a {
    font-size: 10px;
  }
}
.apply-now a span {
  margin-top: -5px;
}
@media screen and (max-width: 767px) {
  .apply-now a span {
    margin-top: -3px;
  }
}