/* Campaign - Common layout */
#baseBody.base-main {
    max-width: none;
    padding-top: 164px;
}

/* Campaign - Common title, tabs */
#baseBody .page__header {}

#baseBody .page__title {
    position: relative;
    padding-block: 64px;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.3px;
    color: var(--color-text-800);
}
#baseBody .page__title::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 326px;
    height: auto;
    aspect-ratio: 652 / 546;
    background: url(/common/v2026/images/page/character-menu2.png) no-repeat center;
    background-size: 100% auto;
}
#baseBody .page__tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin-bottom: 50px;
}
#baseBody .page__tab {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 32px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-400);
    background-color: var(--color-solid-100);
    transition: all 0.15s ease;
}
#baseBody .page__tab:not(.page__tab--active):hover,
#baseBody .page__tab:not(.page__tab--active):focus-visible {
    border: 1px solid var(--color-line-200);
    background-color: rgba(255, 255, 255, 0.2);
}
#baseBody .page__tab--active {
    pointer-events: none;
    color: white;
    background-color: var(--color-primary-400);
}

#baseBody .page__panel {
    display: none;
}
#baseBody .page__panel--active {
    display: block;
}


/* Section 1: Funding List */
/* Filter Common */
.funding-filter {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.funding-filter__row {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    width: 100%;
    overflow: visible;
}
.funding-filter__item {
    display: inline-flex;
    flex-shrink: 0;
}
.funding-filter__tag {
    display: inline-block;
    flex-shrink: 0;
    padding: 10px 12px;
    border: 1px solid var(--color-line-200);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-400);
    background-color: transparent;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
/* Filter Color */
.funding-filter__row[role="radiogroup"] .funding-filter__item:nth-child(2):not(:has(input:checked)) .funding-filter__tag {
    border-color: var(--color-rose-400);
    color: var(--color-rose-600);
    background-color: var(--color-rose-50);
}
.funding-filter__row[role="radiogroup"] .funding-filter__item:nth-child(3):not(:has(input:checked)) .funding-filter__tag {
    border-color: var(--color-teal-400);
    color: var(--color-teal-600);
    background-color: var(--color-teal-50);
}
.funding-filter__row[role="radiogroup"] .funding-filter__item:nth-child(4):not(:has(input:checked)) .funding-filter__tag {
    border-color: var(--color-purple-400);
    color: var(--color-purple-600);
    background-color: var(--color-purple-50);
}
.funding-filter__row[role="radiogroup"] .funding-filter__item:nth-child(5):not(:has(input:checked)) .funding-filter__tag {
    border-color: var(--color-green-400);
    color: var(--color-green-600);
    background-color: var(--color-green-50);
}
.funding-filter__row[role="radiogroup"] .funding-filter__item:nth-child(6):not(:has(input:checked)) .funding-filter__tag {
    border-color: var(--color-cyan-400);
    color: var(--color-cyan-600);
    background-color: var(--color-cyan-50);
}
.funding-filter__row[role="radiogroup"] .funding-filter__item:nth-child(8):not(:has(input:checked)) .funding-filter__tag {
    border-color: var(--color-lime-400);
    color: var(--color-lime-600);
    background-color: var(--color-lime-50);
}
.funding-filter__item:has(input:checked) .funding-filter__tag,
.funding-filter__item--active .funding-filter__tag {
    border-color: transparent;
    color: var(--color-solid-white);
    background-color: var(--color-solid-900);
}
.funding-filter__tag:hover,
.funding-filter__tag:focus-visible {
    outline: none;
}

/* Funding List */
.funding-list-wrap {
    width: 100%;
    margin: 0;
    padding: 80px 0 160px;
    background-color: #fdede8;
}
.funding-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}
.funding-list__empty {
    grid-column: 1 / -1;
    margin: 40px 0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: var(--color-text-400);
}
.funding-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.funding-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background-color: var(--color-solid-300);
}
.funding-card__img {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    transition: opacity 0.2s ease, transform 0.5s ease;
}
.funding-card__img--loaded {
    opacity: 1;
}
.funding-card__img--error {
    opacity: 0;
}
.funding-card:hover .funding-card__img--loaded,
.funding-card:focus-visible .funding-card__img--loaded {
    transform: scale(1.08);
}
.funding-card__day-wrap {
    display: flex;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    flex-wrap: wrap;
    gap: 8px;
}
.funding-card__day {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 900;
    color: var(--color-primary-500);
    background-color: var(--color-solid-white);
}
.funding-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
    padding: 0 28px 32px;
    border-radius: 0 0 16px 16px;
    background-color: var(--color-solid-white);
}
.funding-card__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 20px;
    min-height: calc(1.3em * 2);
    overflow: hidden;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
    word-break: keep-all;
    color: var(--color-text-600);
}
.funding-card__agency {
    display: block;
    width: 100%;
    margin-top: 8px;
    font-size: 16px;
    color: var(--color-text-400);
}
.funding-card__progress {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    margin-top: auto;
    padding-top: 16px;
}
.funding-card__rate {
    font-size: 20px;
    font-weight: 800;
    text-align: right;
    color: var(--color-primary-500);
}
.funding-card__bar {
    display: block;
    position: relative;
    width: 100%;
    height: 12px;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--color-solid-200);
}
.funding-card__marker {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--color-primary-400);
    transition: width 1s ease-out;
}
.funding-card__amount {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-300);
}
.funding-card__current {
    color: var(--color-text-500);
}

/* Pagination */
.funding-list__paging {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 56px;
}
.funding-list__paging--mo {
    display: none;
}

@media (max-width: 1024px) {
    #baseBody .page__title { padding-block: 40px 32px; font-size: 32px; }
    #baseBody .page__tabs { gap: 4px; }
    #baseBody .page__tab { padding: 10px 14px; font-size: 14px; }
    #baseBody .page__title::before { width: 200px; }

    /* Filter Common */
    .funding-filter__row { flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; }
    .funding-filter__row::-webkit-scrollbar { display: none; }
    .funding-filter__tag { padding: 6px 10px; font-size: 13px; }

    /* Funding List */
    .funding-list-wrap { padding: 8px 0 80px; }
    .funding-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .funding-card__body { padding: 0 24px 28px; }
    .funding-card__title { font-size: 22px; }
    .funding-card__agency { font-size: 15px; }
    .funding-card__rate { font-size: 18px; }
    .funding-card__amount { font-size: 14px; }

    /* Pagination */
    .funding-list__paging { gap: 4px; margin-top: 20px; }
}

@media (max-width: 768px) {
    #baseBody .page__title::before { display: none; }
}
@media (max-width: 640px) {
    /* Filter Common */
    .funding-filter {
        margin-bottom: 24px;
    }
    /* Funding List */
    .funding-list {
        grid-template-columns: 1fr;
    }
    .funding-card__day-wrap {
        gap: 6px;
    }
    .funding-card__day {
        padding: 6px 10px;
        font-size: 14px;
    }
    .funding-card__body {
        padding: 0 16px 24px;
    }
    .funding-card__title {
        margin-top: 16px;
        font-size: 20px;
    }
}


/* Section 1-1: Funding Detail */

#baseBody.base-main:has(.funding-view) {
    max-width: none;
    padding-top: 164px;
}
@media (max-width: 1024px) {
    #baseBody.base-main:has(.funding-view) {
        padding-top: 80px;
    }
}

.funding-view {
    width: 100%;
}
.funding-view .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 30px;
    font-family: inherit;
    font-weight: 600;
    color: var(--color-solid-white);
    background-color: var(--color-primary-400);
    cursor: pointer;
    text-decoration: none;
}
.funding-view .btn--lg {
    min-width: 160px;
    padding: 16px 24px;
    font-size: 18px;
}
.funding-view .funding-view__list { min-width: auto; }
.funding-view .funding-view__cta,
.funding-view .funding-view__list,
.project-floating-wrap .funding-view__cta {
    transition: background-color 0.2s ease;
}
.funding-view .funding-view__cta:hover,
.funding-view .funding-view__list:hover,
.project-floating-wrap .funding-view__cta:hover {
    background-color: var(--color-solid-900);
}
.funding-view .btn--xs {
    padding: 8px 10px;
    border-radius: 40px;
    font-size: 13px;
}
.funding-view .btn--basic {
    color: var(--color-text-500);
    background-color: var(--color-solid-200);
}
.funding-view .btn.is-disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.4;
}

.project-view-head {
    position: relative;
    width: 100%;
}
.project-view-head-row {
    width: 100%;
    margin: 0 auto;
    padding: 24px 0;
    border-top: 1px solid var(--color-line-150);
    background-color: var(--color-solid-white);
    transition: padding 0.2s ease;
}
.project-view-head-row .row-inner {
    position: relative;
    width: 100%;
    max-width: var(--layout-max-width);
    margin: 0 auto;
}
.project-view-head-row .row-title {
    display: flex;
    align-items: center;
    padding: 0 16px;
}
.project-view-head-row .tag-day {
    display: inline-block;
    flex-shrink: 0;
    padding: 8px 12px;
    border: 1px solid var(--color-primary-400);
    border-radius: 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary-400);
}
.project-view-head-row .tag-day.is-ended {
    border-color: var(--color-text-300);
    color: var(--color-text-400);
}
.project-view-head-row .project-title-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 0 0 16px;
    gap: 8px;
}
.project-view-head-row .project-title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-900);
    transition: font-size 0.2s ease;
}
.project-view-head-row .action-block {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 8px;
}
.project-view-head-row .share-wrap {
    position: relative;
}
.project-view-head-row .btn-project-share {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: var(--color-primary-400);
    cursor: pointer;
}
.project-view-head-row .share-popover {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 100;
    min-width: 152px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    border: 1px solid var(--color-line-150);
    border-radius: 8px;
    background-color: var(--color-solid-white);
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
}
.project-view-head-row .share-wrap.open .share-popover {
    display: block;
}
.project-view-head-row .share-item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-500);
    text-align: left;
    background: none;
    cursor: pointer;
}
.project-view-head-row .share-item:hover {
    background-color: var(--color-solid-200);
}
.project-view-head-row .share-item .icon {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
}
.project-view-head-row .row-progress {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 16px;
}
.project-view-head-row .progress-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}
.project-view-head-row .progress-num,
.project-floating-wrap .progress-num {
    width: 100%;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary-400);
}
.project-view-head-row .progress-bar,
.project-floating-wrap .progress-bar {
    display: block;
    position: relative;
    width: 100%;
    height: 12px;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--color-solid-300);
}
.project-view-head-row .progress-marker,
.project-floating-wrap .progress-marker {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--color-primary-400);
    transition: width 0.8s ease-out;
}
.project-view-head-row .progress-info-row,
.project-floating-wrap .progress-info-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.project-view-head-row .progress-info-row .text-block {
    display: inline-flex;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-400);
}
.project-view-head-row .progress-info-row .primary,
.project-floating-wrap .progress-info-row .primary {
    color: var(--color-primary-400);
}
.project-view-head-row.row-2 {
    display: block;
}
.project-view-head-row.scrolled {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    padding: 8px 0 10px;
    border-top: none;
}
.project-view-head-row.scrolled .tag-day {
    padding: 4px 8px;
    font-size: 12px;
}
.project-view-head-row.scrolled .project-title-wrap {
    margin-left: 8px;
}
.project-view-head-row.scrolled .project-title {
    font-size: 20px;
}

.project-content-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    line-height: 0;
    text-align: center;
}
.project-content-wrap img,
.project-content-wrap iframe {
    max-width: 100%;
}

.project-content-bottom-wrap {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 120px 0;
    background-color: #fdede8;
}
.project-bottom-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: var(--layout-max-width);
    overflow: hidden;
    border-radius: 16px;
    background-color: var(--color-solid-white);
    padding-bottom: 48px;
}
.project-bottom-inner .block {
    width: 100%;
    padding: 40px 56px;
}
.project-bottom-inner .block-1 {
    display: flex;
    flex-direction: row;
    padding-bottom: 56px;
    line-height: 1.4;
    color: var(--color-solid-white);
    background-color: #3a424d;
}
.project-bottom-inner .block-1 .headline {
    width: 33%;
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}
.project-bottom-inner .block-1 .desc-wrap {
    display: flex;
    flex-direction: column;
    width: 67%;
    font-size: 18px;
}
.project-bottom-inner .block-1 .desc-wrap > span {
    display: block;
    font-weight: 700;
    line-height: 1.4;
}
.project-bottom-inner .block-1 .text-line1 {
    padding-bottom: 8px;
    color: var(--color-text-100);
}
.project-bottom-inner .block-2 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.project-bottom-inner .block-2 .sub-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
}
.project-bottom-inner .block-2 .title-wrap {
    display: inline-flex;
    align-items: center;
    padding: 0 0 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-400);
}
.project-bottom-inner .block-2 .title-wrap .text-red,
.project-bottom-inner .block-2 .content-wrap .text-red {
    margin: 0 4px 0 8px;
    font-weight: 700;
    color: var(--color-primary-400);
}
.project-bottom-inner .block-2 .content-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
}
.project-bottom-inner .project-team-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
}
.project-bottom-inner .block-comment {
    border-top: 1px solid var(--color-line-150);
}
.project-bottom-inner .comment-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}
.project-bottom-inner .comment-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
.project-bottom-inner .comment-row .group-front {
    display: flex;
    align-items: center;
    gap: 4px;
}
.project-bottom-inner .comment-row .user {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 90px;
}
.project-bottom-inner .comment-row .user-name {
    font-size: 15px;
    font-weight: 700;
}
.project-bottom-inner .comment-row .date {
    font-size: 14px;
    color: var(--color-text-400);
}
.project-bottom-inner .comment-row .group-message {
    width: 100%;
    padding-left: 24px;
    font-size: 16px;
    font-weight: 600;
}
.project-bottom-inner .comment-row .group-btns {
    display: flex;
    flex-shrink: 0;
    gap: 4px;
}
.funding-view__comment-empty {
    margin: 0;
    padding: 24px 0;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: var(--color-text-400);
}
.funding-view__paging {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}
.funding-view__paging--mo {
    display: none;
}
.funding-view__nav {
    width: 100%;
    max-width: var(--layout-max-width);
    padding: 0 16px;
}

.view-other-list-wrap {
    width: 100%;
    padding: 40px 0;
}
.view-other-row-wrap {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.view-other-row {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 32px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.view-other-row .leading {
    display: flex;
    flex-shrink: 0;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-400);
    white-space: nowrap;
}
.view-other-row .list-title {
    flex: 1;
    min-width: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-700);
    text-decoration: none;
}
.view-other-row .list-title:hover {
    text-decoration: underline;
}
.view-other-row .list-title.is-empty,
.view-other-row .list-title.is-empty:hover {
    color: var(--color-text-300);
    text-decoration: none;
    cursor: default;
    pointer-events: none;
}
.view-other-row .tail {
    display: block;
    font-size: 16px;
    color: var(--color-text-400);
    white-space: nowrap;
}
.bottom-btn-row {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 32px 0;
}

.project-floating-wrap {
    display: flex;
    position: fixed;
    right: -100%;
    bottom: 32px;
    z-index: 100;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 260px;
    padding: 16px;
    border-radius: 12px;
    background-color: var(--color-solid-white);
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
    transition: right 0.25s ease;
}
.project-floating-wrap.active {
    right: 24px;
}
.project-floating-wrap .progress-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}
.project-floating-wrap .progress-info-row .text-block {
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-400);
}
.project-floating-wrap .btn {
    width: 100%;
    min-width: 0;
    padding: 12px;
    border: 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    color: var(--color-solid-white);
    background-color: var(--color-primary-400);
    text-decoration: none;
}
.project-floating-wrap .btn.is-disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.4;
}

@media (max-width: 1024px) {
    .project-view-head-row {
        padding: 16px 0;
    }
    .project-view-head-row .tag-day {
        padding: 4px 6px;
        font-size: 12px;
    }
    .project-view-head-row .project-title-wrap {
        margin-left: 8px;
    }
    .project-view-head-row .project-title {
        font-size: 16px;
    }
    .project-view-head-row .btn-project-share {
        width: 32px;
        height: 32px;
    }
    .project-view-head-row .btn-project-share svg {
        transform: scale(0.8);
    }
    .project-view-head-row.scrolled .tag-day {
        font-size: 10px;
    }
    .project-view-head-row.scrolled .project-title {
        font-size: 14px;
    }
    .project-view-head-row.row-2 {
        display: none;
    }
    .project-content-bottom-wrap {
        padding: 0;
    }
    .project-bottom-inner {
        border-radius: 0;
    }
    .project-bottom-inner .block {
        padding: 24px 16px;
    }
    .project-bottom-inner .block-1 {
        flex-direction: column;
        padding-bottom: 24px;
    }
    .project-bottom-inner .block-1 .headline {
        width: 100%;
        font-size: 18px;
        line-height: 1.4;
    }
    .project-bottom-inner .block-1 .desc-wrap {
        width: 100%;
        font-size: 15px;
    }
    .project-bottom-inner .block-1 .text-line1 {
        font-size: 15px;
    }
    .project-bottom-inner .block-2 {
        flex-direction: column;
        align-items: stretch;
    }
    .project-bottom-inner .block-2 .sub-block {
        padding: 24px 0;
        border-top: 1px solid var(--color-line-150);
    }
    .project-bottom-inner .block-2 .sub-block:first-child {
        padding-top: 0;
        border-top: none;
    }
    .project-bottom-inner .block-2 .title-wrap {
        font-size: 16px;
    }
    .project-bottom-inner .block-2 .content-wrap {
        font-size: 20px;
    }
    .project-bottom-inner .comment-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .project-bottom-inner .comment-row .group-message {
        padding-left: 0;
    }
    .funding-view__paging {
        gap: 4px;
        margin-top: 20px;
    }
    .funding-view__paging > .paging-item:not([class*="type-img"]):nth-child(n+8) {
        display: none;
    }
    .funding-view .funding-view__list {
        padding: 10px 16px;
        font-size: 15px;
    }
    .view-other-list-wrap {
        padding: 16px 0;
    }
    .view-other-row {
        gap: 16px;
        padding: 16px 0;
    }
    .view-other-row .leading {
        font-size: 13px;
    }
    .view-other-row .list-title {
        font-size: 15px;
    }
    .view-other-row .tail {
        display: none;
    }
    .bottom-btn-row {
        padding: 16px 0;
    }
    .project-floating-wrap {
        right: 0;
        bottom: 0;
        width: 100%;
        gap: 12px;
        padding: 8px 12px;
        border-radius: 0;
        filter: drop-shadow(0 -4px 8px rgba(0, 0, 0, 0.2));
    }
    .project-floating-wrap.active {
        right: 0;
    }
    .project-floating-wrap .progress-num {
        font-size: 14px;
    }
    .project-floating-wrap .progress-bar {
        height: 6px;
    }
    .project-floating-wrap .progress-info-row .text-block {
        font-size: 12px;
    }
}


/* Section 2: Funding Intro */
.funding-intro__hero {
    display: flex;
    gap: 80px;
    width: 100%;
}
.funding-intro__visual {
    flex: 1 1 0;
    min-width: 474px;
    max-width: 660px;
}
.funding-intro__visual img {
    display: block;
    width: 100%;
    height: auto;
}
.funding-intro__copy {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    min-width: 0;
    padding-top: 80px;
}
.funding-intro__title {
    margin: 0;
    font-size: clamp(32px, 5.2vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--color-text-800);
}
.funding-intro__desc {
    margin-block: 24px 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text-700);
    word-break: keep-all;
}
.funding-intro__body {
    position: relative;
    width: 100%;
    padding: 80px 0;
    clip-path: inset(0);
}
.funding-intro__graphic {
    display: block;
    position: absolute;
    top: 500px;
    left: 0;
    width: 100%;
    height: calc(100% - 500px);
    background-color: #FDEDE8;
    pointer-events: none;
}
.funding-intro__circle {
    display: block;
    position: absolute;
    border-radius: 50%;
}
.funding-intro__circle--1 {
    top: -220px;
    right: -200px;
    width: 800px;
    height: 800px;
    background-color: #FDEDE8;
}
.funding-intro__circle--2 {
    top: -420px;
    right: 150px;
    width: 300px;
    height: 300px;
    background-color: #ffe8d1;
    mix-blend-mode: multiply;
}
.funding-intro__video-outer {
    position: relative;
    z-index: 1;
    padding-block: 80px 120px;
}
.funding-intro__video {
    position: relative;
    width: 100%;
    max-width: 1208px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    background-color: var(--color-solid-200);
}
.funding-intro__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.funding-intro__faq {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1208px;
    margin: 80px auto 40px;
    overflow: hidden;
    border-radius: 24px;
    background-color: var(--color-solid-white);
}
.funding-intro__faq-title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 48px 20px;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-solid-white);
    background-color: var(--color-primary-400);
}
.funding-intro__faq-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 8px 56px 56px;
    list-style: none;
}
.funding-intro__faq-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid var(--color-line-150);
}
.funding-intro__faq-q {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 24px 16px 24px 0;
    border: 0;
    background: none;
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
}
.funding-intro__faq-badge {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-line-400);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
}
.funding-intro__faq-heading {
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}
.funding-intro__faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-text-700);
    transition: transform 0.25s ease;
}
.funding-intro__faq-a {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding: 0 32px;
    border-top: 1px solid transparent;
    background-color: var(--color-solid-100);
}
.funding-intro__faq-a p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text-500);
}
.funding-intro__faq-item--active .funding-intro__faq-icon {
    transform: rotate(180deg);
}
.funding-intro__faq-item--active .funding-intro__faq-a {
    height: auto;
    padding: 32px;
    border-top-color: var(--color-line-150);
}
.funding-intro__match {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1208px;
    margin: 0 auto 100px;
}
.funding-intro__match-title {
    width: 100%;
    margin-block: 80px 32px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: var(--color-text-600);
}
.funding-intro__table-wrap {
    width: 100%;
}
.funding-intro__table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 16px;
    background-color: var(--color-solid-white);
    box-shadow: inset 0 0 0 1px var(--color-line-150);
}
.funding-intro__table th,
.funding-intro__table td {
    padding: 20px 16px;
    border: 0 solid var(--color-line-150);
    border-width: 0 0 1px 1px;
    font-size: 18px;
    font-weight: 600;
    overflow-wrap: break-word;
}
.funding-intro__table thead tr {
    border: 1px solid var(--color-line-150);
}
.funding-intro__table thead th {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.03);
}
.funding-intro__table thead th:nth-child(1) {
    width: 20%;
}
.funding-intro__table thead th:nth-child(2) {
    width: 12%;
}
.funding-intro__table thead th:nth-child(3) {
    width: 34%;
}
.funding-intro__table thead th:nth-child(4) {
    width: 34%;
}
.funding-intro__table thead th:first-child {
    border-width: 0 0 1px 0;
}
.funding-intro__table .is-center {
    text-align: center;
}
.funding-intro__caption {
    display: block;
    width: 100%;
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-text-400);
}

@media (max-width: 1350px) {
    .funding-intro__desc .desktop-break {
        display: none;
    }
}

@media (max-width: 1024px) {
    .funding-intro__title .desktop-break {
        display: none;
    }
    .funding-intro__hero {
        gap: 32px;
    }
    .funding-intro__visual {
        min-width: auto;
    }
    .funding-intro__copy {
        padding-top: 40px;
    }
    .funding-intro__title {
        font-size: 32px;
    }
    .funding-intro__desc {
        font-size: 16px;
    }
    .funding-intro__video-outer {
        padding-block: 60px 80px;
    }
    .funding-intro__video {
        border-radius: 12px;
    }
    .funding-intro__faq {
        margin: 80px auto 40px;
        border-radius: 16px;
    }
    .funding-intro__faq-title {
        padding: 32px 20px;
        font-size: 24px;
    }
    .funding-intro__faq-list {
        padding: 8px 20px 32px;
    }
    .funding-intro__faq-q {
        padding: 16px 12px 16px 0;
    }
    .funding-intro__faq-badge {
        width: 24px;
        height: 24px;
        font-size: 15px;
    }
    .funding-intro__faq-heading {
        font-size: 18px;
    }
    .funding-intro__faq-icon {
        width: 16px;
        height: 16px;
    }
    .funding-intro__faq-a {
        padding: 0 16px;
    }
    .funding-intro__faq-a p {
        font-size: 16px;
    }
    .funding-intro__faq-item--active .funding-intro__faq-a {
        padding: 16px;
    }
    .funding-intro__match-title {
        font-size: 24px;
    }
    .funding-intro__table {
        border-radius: 12px;
    }
    .funding-intro__table th,
    .funding-intro__table td {
        padding: 16px 12px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .funding-intro__hero {
        flex-direction: column;
        gap: 32px;
    }
    .funding-intro__visual {
        flex: none;
        width: 300px;
        max-width: 100%;
        margin: 40px auto 0;
    }
    .funding-intro__copy {
        flex: none;
        padding-top: 0;
    }
    .funding-intro__title {
        font-size: 24px;
    }
    .funding-intro__body {
        padding: 0 0 40px;
    }
    .funding-intro__video-outer {
        padding-block: 40px;
    }
    .funding-intro__faq {
        margin: 60px auto 32px;
        border-radius: 12px;
    }
    .funding-intro__faq-title {
        padding: 24px 16px;
        font-size: 20px;
    }
    .funding-intro__faq-list {
        padding: 4px 16px 32px;
    }
    .funding-intro__faq-q {
        padding: 14px 10px 14px 0;
    }
    .funding-intro__faq-badge {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    .funding-intro__faq-heading {
        font-size: 16px;
    }
    .funding-intro__faq-a {
        padding: 0 12px;
    }
    .funding-intro__faq-a p {
        font-size: 15px;
    }
    .funding-intro__match {
        margin: 0 auto 32px;
    }
    .funding-intro__match-title {
        margin-block: 56px 24px;
        font-size: 20px;
    }
    .funding-intro__match-title .mobile-break {
        display: inline-block;
    }
    .funding-intro__table {
        border-radius: 8px;
    }
    .funding-intro__table th,
    .funding-intro__table td {
        padding: 12px 6px;
        font-size: 15px;
    }
}

/* Section 3: Funding Apply Guide */
#page-panel-2 { padding-bottom: 70px; }
.funding-apply > .container {
    padding-top: 80px;
}
.funding-apply__section {
    display: grid;
    grid-template-columns: 3fr 9fr;
    width: 100%;
    margin-bottom: 140px;
}
.funding-apply__section--last {
    margin-bottom: 100px;
}
.funding-apply__heading {
    width: 100%;
    margin-bottom: 32px;
}
.funding-apply__title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-800);
}
.funding-apply__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(220px, auto);
    gap: 20px;
    width: 100%;
}
.funding-apply__card {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 28px 32px;
    border: 1px solid var(--color-line-150);
    border-radius: 16px;
}
.funding-apply__card-body {
    width: 100%;
}
.funding-apply__card-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-600);
}
.funding-apply__card-desc {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-400);
}
.funding-apply__card-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}
.funding-apply__process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
    width: 100%;
}
.funding-apply__step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 48px 24px 24px;
    border: 1px solid #C1D1E1;
    border-radius: 12px;
    text-align: center;
    background-color: #F2F8FE;
}
.funding-apply__step-num {
    position: absolute;
    top: 10px;
    left: 10px;
    display: block;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--color-solid-white);
    background-color: var(--color-solid-800);
}
.funding-apply__step-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-700);
}
.funding-apply__step-desc {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: #475569;
}
.funding-apply__principle {
    width: 100%;
}
.funding-apply__principle-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.funding-apply__principle-item {
    display: flex;
    gap: 8px;
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-400);
}
.funding-apply__principle-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}
.funding-apply__principle-text strong {
    font-weight: 700;
    color: var(--color-text-700);
}
.funding-apply__notes {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 32px 0 0;
    padding-left: 24px;
}
.funding-apply__notes li {
    padding: 4px 0;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-text-500);
    list-style-type: disc;
}
.funding-apply__blocks {
    display: flex;
    gap: 32px;
    width: 100%;
}
.funding-apply__block {
    width: 100%;
    padding-top: 32px;
    border-top: 1px solid var(--color-line-400);
}
.funding-apply__block-title {
    width: 100%;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-700);
}
.funding-apply__block-title strong {
    font-weight: 700;
    color: var(--color-primary-400);
}
.funding-apply__disc {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 16px 0;
    padding-left: 20px;
}
.funding-apply__disc li {
    padding: 4px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text-400);
    list-style-type: disc;
}
.funding-apply__contacts {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 16px 0;
    padding-left: 8px;
    list-style: none;
}
.funding-apply__contacts li {
    display: flex;
    align-items: center;
    padding: 4px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text-400);
}
.funding-apply__contact-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-right: 8px;
}
.funding-apply__contacts a:hover {
    color: var(--color-primary-400);
}

@media (max-width: 1024px) {
    .funding-apply__section {
        grid-template-columns: 1fr;
        margin-bottom: 80px;
    }
    .funding-apply__title { font-size: 28px; }
    .funding-apply__cards {
        grid-auto-rows: minmax(180px, auto);
        gap: 16px;
    }
    .funding-apply__card {
        padding: 28px 32px;
    }
    .funding-apply__card-title {
        font-size: 22px;
    }
    .funding-apply__card-desc {
        font-size: 16px;
    }
    .funding-apply__process {
        gap: 16px;
    }
    .funding-apply__step-title {
        font-size: 20px;
    }
    .funding-apply__step-desc {
        margin-top: 6px;
        font-size: 15px;
    }
    .funding-apply__principle-list {
        gap: 20px;
    }
    .funding-apply__principle-item {
        font-size: 20px;
    }
    .funding-apply__block {
        padding-top: 24px;
    }
    .funding-apply__block-title {
        font-size: 22px;
    }
    .funding-apply__disc {
        padding-left: 16px;
    }
}

@media (max-width: 768px) {
    .funding-apply > .container {
        padding-top: 40px;
    }
    .funding-apply__section {
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
    }
    .funding-apply__section--last {
        margin-bottom: 40px;
    }
    .funding-apply__heading {
        margin-bottom: 24px;
    }
    .funding-apply__title {
        font-size: 20px;
    }
    .funding-apply__cards {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .funding-apply__card {
        padding: 20px 8px 16px 20px;
        border-radius: 8px;
    }
    .funding-apply__card-title {
        font-size: 20px;
    }
    .funding-apply__card-desc {
        font-size: 15px;
    }
    .funding-apply__card-icon {
        width: 64px;
        height: 64px;
    }
    .funding-apply__process {
        display: flex;
        flex-direction: column;
    }
    .funding-apply__step {
        padding: 24px;
    }
    .funding-apply__step-title {
        font-size: 20px;
    }
    .funding-apply__step-desc {
        margin-top: 6px;
        font-size: 15px;
    }
    .funding-apply__principle-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .funding-apply__principle-item {
        font-size: 18px;
    }
    .funding-apply__principle-icon {
        width: 16px;
        height: 16px;
    }
    .funding-apply__notes {
        margin-top: 16px;
        padding-left: 16px;
    }
    .funding-apply__notes li {
        font-size: 14px;
    }
    .funding-apply__blocks {
        flex-direction: column;
        gap: 32px;
    }
    .funding-apply__block {
        padding-top: 24px;
    }
    .funding-apply__block-title {
        font-size: 18px;
    }
    .funding-apply__disc li {
        font-size: 16px;
    }
    .funding-apply__contacts li {
        font-size: 16px;
    }
}

/* Section 4: Funding Apply Form */
#page-panel-3 { padding-bottom: 160px; }
.funding-form > .container {
    padding-top: 80px;
}
.funding-form__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
}
.funding-form__intro {
    width: 100%;
    margin-bottom: 32px;
}
.funding-form__title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-800);
}
.funding-form__desc {
    margin: 8px 0 24px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text-500);
}
.funding-form__guide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 18px;
    border: 1px solid var(--color-line-300);
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-500);
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.funding-form__guide-btn:hover {
    border-color: transparent;
    color: #fff;
    background-color: var(--color-solid-800);
}
.funding-form__guide-btn:hover .funding-form__guide-icon {
    color: #fff;
}
.funding-form__guide-icon {
    width: 16px;
    height: 16px;
    color: var(--color-text-600);
}
.funding-form__body {
    width: 100%;
}
.funding-form__required-note {
    margin: 0 0 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-line-150);
    font-size: 14px;
    text-align: right;
    color: var(--color-text-300);
}
.funding-form__required-mark {
    color: var(--color-primary-400);
}
.funding-form__group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 36px;
    width: 100%;
}
.funding-form__group--full {
    grid-template-columns: 1fr;
}
.funding-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.funding-form__field--wide {
    grid-column: span 2;
}
.funding-form__label-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding-bottom: 8px;
}
.funding-form__label-wrap--required .funding-form__label::after {
    content: " *";
    color: var(--color-primary-400);
    font-size: 16px;
}
.funding-form__label {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-700);
    letter-spacing: -0.02em;
}
.funding-form__sub-label {
    padding-left: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-500);
}
.funding-form__input-row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    width: 100%;
}
.funding-form__input-row > input,
.funding-form__input-row > select,
.funding-form__input-row > textarea {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    border: 1px solid var(--color-line-200);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-700);
    background-color: var(--color-solid-100);
    transition: border-color 0.15s ease, background-color 0.15s ease;
}
.funding-form__input-row > input::placeholder,
.funding-form__input-row > textarea::placeholder {
    color: var(--color-text-300);
    font-weight: 500;
}
.funding-form__input-row > input:hover,
.funding-form__input-row > select:hover,
.funding-form__input-row > textarea:hover {
    border-color: var(--color-line-300);
}
.funding-form__input-row > input:focus,
.funding-form__input-row > select:focus,
.funding-form__input-row > textarea:focus {
    outline: none;
    border-color: var(--color-line-500);
    background-color: #fff;
}
.funding-form__input-row > textarea {
    height: 200px;
    padding: 16px;
    resize: none;
}
.funding-form__input-row > select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5.5L8 11.5L14 5.5' stroke='%2333363D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 12px;
    cursor: pointer;
}
.funding-form__input-row > .funding-form__unit {
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-700);
}
.funding-form__input-row:not(.funding-form__input-row--date):not(.funding-form__input-row--captcha) > input:not([type="hidden"]) {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
}
.funding-form__input-row--date {
    flex-wrap: nowrap;
    gap: 12px;
    overflow: visible;
}
.funding-form__date-field {
    position: relative;
    isolation: isolate;
    flex: 1;
    min-width: 0;
    overflow: visible;
}
.funding-form__date-field > input {
    width: 100%;
    height: 56px;
    padding: 0 44px 0 16px;
    border: 1px solid var(--color-line-200);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-700);
    background-color: var(--color-solid-100);
    transition: border-color 0.15s ease, background-color 0.15s ease;
}
.funding-form__date-field > input:hover {
    border-color: var(--color-line-300);
}
.funding-form__date-field > input:focus {
    outline: none;
    border-color: var(--color-line-500);
    background-color: #fff;
}
.funding-form__date-field .ui-datepicker-trigger,
.funding-form__input-row--date > .funding-form__date-field:first-child .ui-datepicker-trigger {
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    z-index: 1;
    width: 28px;
    height: 28px;
    margin: 0;
    padding: 4px;
    border: 0;
    border-radius: 6px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: transparent;
    transform: translateY(-50%);
    cursor: pointer;
    transition: background-color 0.15s ease;
}
.funding-form__date-field .ui-datepicker-trigger:hover {
    background-color: var(--color-solid-200);
}
.funding-form__date-sep {
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-400);
}
.funding-form__hint {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text-400);
}
.funding-form__divider {
    display: block;
    width: 100%;
    padding: 48px 0;
}
.funding-form__divider-line {
    display: block;
    width: 100%;
    height: 1px;
    border-top: 1px solid var(--color-line-150);
}
.funding-form__input-row--captcha {
    flex-wrap: nowrap;
    align-items: center;
}
.funding-form__captcha-img-wrap {
    flex-shrink: 0;
    width: 160px;
    height: 56px;
    overflow: hidden;
    border: 1px solid var(--color-line-200);
    border-radius: 8px;
    background-color: var(--color-solid-100);
}
.funding-form__captcha-img-wrap > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.funding-form__captcha-btn {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 6px;
    border: 0;
    border-radius: 6px;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.15s ease;
}
.funding-form__captcha-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.funding-form__captcha-icon {
    width: 16px;
    height: 16px;
    color: var(--color-text-600);
}
.funding-form__captcha-input {
    flex: 1 1 auto;
    width: 180px;
    min-width: 0;
}
.funding-form__input-row--captcha > .error_message {
    flex-basis: 100%;
}
.funding-form .error_message {
    display: none;
    width: 100%;
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: #DC2626;
}
.funding-form .error_message::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 4px;
    vertical-align: middle;
    background: url(/common/img/common/icon_error.svg) no-repeat center / contain;
}
.funding-form__actions {
    display: flex;
    justify-content: center;
    gap: 6px;
    width: 100%;
}
.funding-form__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border: 1px solid transparent;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.funding-form__btn--cancel {
    color: var(--color-text-500);
    background-color: var(--color-solid-100);
}
.funding-form__btn--cancel:hover {
    color: #fff;
    background-color: var(--color-solid-800);
}
.funding-form__btn--submit {
    color: #fff;
    background-color: var(--color-primary-400);
}
.funding-form__btn--submit:hover {
    background-color: var(--color-solid-900);
}

@media (max-width: 1024px) {
    .funding-form__layout {
        grid-template-columns: 1fr;
    }
    .funding-form__title {
        font-size: 28px;
    }
    .funding-form__desc {
        font-size: 16px;
    }
    .funding-form__guide-btn {
        padding: 8px 16px;
        font-size: 15px;
    }
    .funding-form__group {
        gap: 40px 32px;
    }
    .funding-form__label {
        font-size: 16px;
    }
    .funding-form__sub-label {
        font-size: 14px;
    }
    .funding-form__input-row > input,
    .funding-form__input-row > select,
    .funding-form__input-row > textarea,
    .funding-form__date-field > input {
        height: 48px;
        padding-inline: 12px;
        font-size: 15px;
    }
    .funding-form__date-field > input {
        padding-right: 40px;
    }
    .funding-form__input-row > textarea {
        height: 200px;
        padding: 12px;
    }
    .funding-form__input-row > .funding-form__unit {
        font-size: 15px;
    }
    .funding-form__divider {
        padding: 40px 0;
    }
    .funding-form__btn {
        padding: 10px 16px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .funding-form > .container {
        padding-top: 40px;
    }
    .funding-form__title-break {
        display: none;
    }
    .funding-form__intro {
        margin-bottom: 24px;
    }
    .funding-form__required-note {
        font-size: 13px;
    }
    .funding-form__group {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    .funding-form__field--wide {
        grid-column: auto;
    }
    .funding-form__input-row--date {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .funding-form__date-sep {
        align-self: center;
    }
    .funding-form__input-row--captcha {
        flex-wrap: wrap;
    }
    .funding-form__captcha-input {
        width: 150px;
    }
}