@charset "UTF-8";

:root {
    --primary-color: #cf3c39;
    --primary-color-400: #8e3328;
    --primary-color-500: #b90303;
    --secondary-color: #ff0000;
    --orange-color: #ffa648;
    --orange-color-100: #d26b28;
    --green-color: #b2b268;
    --green-color-100: #a8c448;
    --gray-color: #666666;
    --gray-color-50: #f7f7f7;
    --gray-color-80: #d9d9d9;
    --gray-color-100: #707070;
    --gray-dark-color-700: #333;
    --gray-dark-color-400: #7d7d8e;
    --white-color: #fff;
    --black-color: #000;
    --bg-body-color: #fff;
    --bg-color-1: #f2dfb5;
    --bg-color-2: #f9f0da;
    --breadcrumb-bg-color: #e99494;
    --breadcrumb-text-color: #333;
    --breadcrumb-separator-color: #333;
    --breadcrumb-current-color: #777;
    --sidebar-border-color: #999;
    --sidebar-title-bg-color: #f5f5f5;
    --sidebar-title-color: #333;
    --sidebar-link-color: #0066cc;
    --sidebar-link-hover-color: #4671b2;
    --category-table-border-color: #999;
    --category-table-header-bg: #f5f5f5;
    --category-table-row-hover: #f9f9f9;
    --category-arrow-color: #666;
    --data-table-border-color: #999;
    --data-table-header-bg: #dcf0ff;
    --data-table-header-color: #333;
    --data-table-cell-color: #333;
    --download-table-section-bg: #ddd;
    --download-table-border-color: #999;
    --download-table-legend-border: #666;
    --download-table-link-color: #4671b2;
    --banner2-bg-color: #e4eff6;
    --about-title-color: #666;
    --about-text-color: #333;
    --about-button-bg: #fffbc7;
    --about-button-hover-bg: #f5e084;
    --about-button-text: #333;
    --about-mission-bg: #f8f8f8;
    --about-mission-border: #e0e0e0;
    --about-image-caption-color: #666;
    --accordion-red: #e68082;
    --accordion-blue: #5096c8;
    --accordion-orange: #f0962b;
    --accordion-green: #68bb61;
    --accordion-teal: #5ab4b4;
    --accordion-purple: #a078a0;
    --accordion-yellow: #f0c81e;
    --table-border-gray: #dfdfdf;
    --phone-separator-gray: #d3d3d3;
    --input-border-gray: #828282;
    --bg-gray: #828282;
    --banner-bg-red: #f8dfdf;
    --banner-bg-blue: #d3e4f1;
    --banner-bg-orange: #fbe4ca;
    --banner-bg-teal: #D5ECEC;
    --banner-bg-purple: #E7DDE7;
    --banner-bg-yellow: #fbf1c4;
    --arrow-bg-red: #e68082;
    --arrow-bg-blue: #5096c8;
    --arrow-bg-orange: #f0962b;
    --arrow-bg-teal: #5ab4b4;
    --arrow-bg-purple: #a078a0;
    --arrow-bg-yellow: #f0c81e;
}

body {
    min-height: 100vh;
    background-color: var(--bg-body-color);
    font-size: 14px;
    font-family: "Noto Sans JP", sans-serif;
}

.hpd-wrapper {
    width: 100%;
    max-width: 1920px;
    overflow-x: hidden;
}

@media (min-width: 1921px) {
    .hpd-wrapper {
        max-width: none;
        margin: 0 auto;
    }
}

/* Header component */
.hpd-header {
    position: relative;
    z-index: 50;
    /* Main header */
}

.hpd-header__main {
    background-color: var(--white-color);
    border-bottom: 1px solid var(--gray-color-100);
}

.hpd-header__search-mobile {
    display: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.hpd-header__search-mobile.is-open {
    max-height: 80px;
    padding: 12px 20px;
}

@media (max-width: 767px) {
    .hpd-header__search-mobile {
        display: block;
        background-color: var(--gray-color);
    }
}

.hpd-header__search-input-mobile {
    width: 100%;
    height: 40px;
    padding: 0 16px;
    border: none;
    outline: none;
    border-radius: 20px;
}

.hpd-header__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

@media (max-width: 767px) {
    .hpd-header__container {
        height: 60px;
        padding: 0 12px;
    }
}

.hpd-header {
    /* Logo */
}

.hpd-header__logo {
    flex-shrink: 0;
}

.hpd-header__logo-link {
    display: block;
    text-decoration: none;
}

.hpd-header__logo-image {
    height: 40px;
    width: auto;
    display: block;
}

@media (max-width: 767px) {
    .hpd-header__logo-image {
        height: 32px;
    }
}

.hpd-header {
    /* Desktop Navigation */
}

.hpd-header__nav {
    display: flex;
    flex: 1;
    justify-content: left;
    margin-left: 40px;
}

@media (max-width: 767px) {
    .hpd-header__nav {
        display: none;
    }
}

.hpd-header__nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

@media (max-width: 1279px) {
    .hpd-header__nav-list {
        display: none;
    }
}

.hpd-header__nav-item {
    position: relative;
}

.hpd-header__nav-item:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 16px;
    background: var(--gray-dark-color-700);
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
}

.hpd-header__nav-link {
    display: block;
    padding: 8px 0;
    color: var(--gray-dark-color-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.hpd-header__nav-link:hover {
    color: var(--secondary-color);
}

.hpd-header {
    /* Search */
}

.hpd-header__search {
    flex-shrink: 0;
    display: flex;
    margin-left: auto;
}

.hpd-header__search-text {
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--gray-color);
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 0 12px;
    width: 190px;
    cursor: pointer;
    color: var(--gray-color);
}

.hpd-header__search-text--secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

@media (max-width: 767px) {
    .hpd-header__search-text {
        display: none;
    }
}

.hpd-header__search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.hpd-header__search-input {
    width: 240px;
    height: 40px;
    padding: 0 40px 0 16px;
    border: 1px solid var(--gray-color);
    font-size: 14px;
    outline: none;
    border-radius: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hpd-header__search-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

@media (max-width: 767px) {
    .hpd-header__search-input {
        display: none;
    }
}

.hpd-header__search-button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    color: var(--gray-color);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.hpd-header__search-button:hover {
    color: var(--secondary-color);
    background-color: var(--gray-color-50);
}

@media (max-width: 767px) {
    .hpd-header__search-button {
        position: static;
        transform: none;
        background-color: transparent;
    }
}

.hpd-header__search-icon {
    display: block;
}

.hpd-header {
    /* Mobile menu toggle */
}

.hpd-header__menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.hpd-header__menu-toggle:hover {
    background-color: var(--gray-color-50);
}

@media (max-width: 767px) {
    .hpd-header__menu-toggle {
        display: flex;
    }
}

.hpd-header__menu-toggle-line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--gray-dark-color-700);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.hpd-header {
    /* Mobile drawer */
}

.hpd-header__drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    display: none;
}

.hpd-header__drawer.is-open {
    display: block;
}

@media (min-width: 768px) {
    .hpd-header__drawer {
        display: none !important;
    }
}

.hpd-header__drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.hpd-header__drawer-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    height: 100%;
    background-color: var(--white-color);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.hpd-header__drawer.is-open .hpd-header__drawer-nav {
    transform: translateX(0);
}

.hpd-header__drawer-image {
    height: 40px;
    width: auto;
}

.hpd-header__drawer-header {
    padding: 16px;
    border-bottom: 1px solid var(--gray-color-50);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hpd-header__drawer-close,
.hpd-header__drawer-search {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    color: var(--gray-color);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.hpd-header__drawer-close:hover,
.hpd-header__drawer-search:hover {
    color: var(--gray-dark-color-700);
    background-color: var(--gray-color-50);
}

.hpd-header__drawer-list,
.hpd-header__drawer-list-secondary {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hpd-header__drawer-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--gray-color);
    margin: 0 20px;
}

.hpd-header__drawer-item:last-child,
.hpd-header__drawer-item:first-child {
    border-bottom: 1px solid var(--gray-color);
}

.hpd-header__drawer-item:last-child .header__drawer-arrow,
.hpd-header__drawer-item:first-child .header__drawer-arrow {
    margin-right: 20px;
}

.hpd-header__drawer-item:last-child .header__drawer-link,
.hpd-header__drawer-item:first-child .header__drawer-link {
    padding-left: 16px;
}

.hpd-header__drawer-link,
.hpd-header__drawer-link-secondary {
    display: block;
    padding: 16px 0 24px;
    color: var(--gray-dark-color-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.hpd-header__drawer-link:hover,
.hpd-header__drawer-link-secondary:hover {
    background-color: var(--gray-color-50);
    color: var(--secondary-color);
}

.hpd-header__drawer-item-secondary {
    display: flex;
    justify-content: space-around;
    width: 100%;
    border-bottom: 1px solid var(--gray-color);
}

.hpd-header__drawer-item-secondary:first-child {
    width: calc(100% - 32px);
    margin: 0 auto;
    justify-content: center;
    border-bottom-style: dashed;
}

.hpd-header__drawer-item-secondary-link {
    display: flex;
    align-items: center;
}

.hpd-header__drawer-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
}

.hpd-header {
    /* Mobile drawer buttons */
}

.hpd-header__drawer-buttons {
    padding: 20px;
    display: flex;
    gap: 12px;
    font-size: 14px;
}

.hpd-header__drawer-button {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 20px;
    background-color: var(--white-color);
}

.hpd-header__drawer-button:last-child {
    margin-bottom: 0;
}

.hpd-header__drawer-button--primary {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.hpd-header__drawer-button--secondary {
    color: var(--gray-color);
    border: 1px solid var(--gray-color);
}

.hpd-header__drawer-footer {
    padding: 24px;
}

.hpd-header__drawer-sites {
    display: flex;
    justify-content: space-around;
    gap: 12px;
}

.hpd-header__drawer-site {
    color: var(--gray-dark-color-700);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.hpd-header__drawer-site:hover {
    color: var(--secondary-color);
}

.hpd-header {
    /* Active states for mobile menu */
}

.hpd-header__menu-toggle.is-active .header__menu-toggle-line:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.hpd-header__menu-toggle.is-active .header__menu-toggle-line:nth-child(2) {
    opacity: 0;
}

.hpd-header__menu-toggle.is-active .header__menu-toggle-line:last-child {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hpd-header {
    /* Responsive adjustments */
}

@media (max-width: 480px) {
    .hpd-header__container {
        padding: 0 8px;
    }

    .hpd-header__drawer-nav {
        width: 100%;
    }

    .hpd-header__logo-image {
        height: 40px;
    }
}

/* Footer component */
.hpd-footer {
    color: var(--gray-color);
    margin-top: auto;
    background-color: var(--white-color);
    border-top: 1px solid var(--gray-color-100);
    /* Main footer */
}

.hpd-footer__main {
    padding: 40px 0;
}

@media (max-width: 767px) {
    .hpd-footer__main {
        padding: 30px 0 20px;
        display: none;
    }
}

.hpd-footer__mobile {
    display: none;
}

@media (max-width: 767px) {
    .hpd-footer__mobile {
        padding: 40px 0;
        display: block;
    }
}

.hpd-footer__mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hpd-footer__mobile-content {
    text-align: center;
}

.hpd-footer__mobile-content:nth-child(1),
.hpd-footer__mobile-content:nth-child(3) {
    border-right: 1px solid var(--gray-color-100);
}

.hpd-footer__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (max-width: 767px) {
    .hpd-footer__container {
        padding: 0 12px;
    }
}

.hpd-footer {
    /* Footer top section */
}

.hpd-footer__top {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
    .hpd-footer__top {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
}

.hpd-footer__brand {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

@media (max-width: 767px) {
    .hpd-footer__brand {
        flex-direction: column;
        gap: 20px;
    }
}

.hpd-footer__logo {
    flex-shrink: 0;
}

.hpd-footer__logo-image {
    height: 60px;
    width: auto;
    display: block;
}

@media (max-width: 767px) {
    .hpd-footer__logo-image {
        height: 50px;
    }
}

.hpd-footer {
    /* Contact information */
}

.hpd-footer__contact {
    flex: 1;
}

.hpd-footer__contact-item {
    margin-bottom: 8px;
    line-height: 1.6;
}

.hpd-footer__contact-item:last-child {
    margin-bottom: 0;
}

.hpd-footer__contact-label {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    text-align: center;
}

@media (max-width: 767px) {
    .hpd-footer__contact-label {
        font-size: 16px;
    }
}

.hpd-footer {
    /* Footer navigation */
}

.hpd-footer__nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-footer__nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .hpd-footer__nav-section:nth-child(7),
    .hpd-footer__nav-section:nth-child(8) {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .hpd-footer__nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.hpd-footer__nav-section {
    border-left: 1px solid var(--gray-color-100);
    padding-left: 20px;
}

.hpd-footer__nav-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 8px;
    color: var(--gray-color);
}

@media (max-width: 767px) {
    .hpd-footer__nav-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
}

.hpd-footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hpd-footer__nav-item {
    margin-bottom: 8px;
    padding-left: 16px;
}

.hpd-footer__nav-item.is-no-padding {
    padding-left: 0;
}

.hpd-footer__nav-item:last-child {
    margin-bottom: 0;
}

.hpd-footer__nav-link {
    color: var(--gray-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    display: block;
    padding: 2px 0;
}

.hpd-footer__nav-link:hover {
    text-decoration: underline;
}

.hpd-footer__nav-link.is-highlight {
    font-weight: 600;
}

@media (max-width: 767px) {
    .hpd-footer__nav-link {
        font-size: 13px;
    }
}

.hpd-footer__horizontal-line {
    padding: 80px 0 0;
}

.hpd-footer__horizontal-list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hpd-footer__horizontal-item {
    padding: 0 8px;
}

.hpd-footer__horizontal-item:not(:first-child) .hpd-footer__nav-link {
    border-left: 1px solid var(--gray-color-100);
    padding-left: 16px;
}

.hpd-footer {
    /* Footer bottom */
}

.hpd-footer__bottom {
    background-color: var(--secondary-color);
    padding: 14px 0;
}

@media (max-width: 767px) {
    .hpd-footer__bottom {
        padding: 15px 0;
    }
}

.hpd-footer__copyright {
    flex-shrink: 0;
}

.hpd-footer__copyright-text {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--white-color);
    text-align: center;
}

@media (max-width: 767px) {
    .hpd-footer__copyright-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hpd-footer__container {
        padding: 0 8px;
    }

    .hpd-footer__nav {
        gap: 15px;
    }

    .hpd-footer__nav-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .hpd-footer__nav-link {
        font-size: 12px;
    }

    .hpd-footer__contact-label {
        font-size: 15px;
    }
}

/* Breadcrumb component */
.hpd-breadcrumb {
    background-color: var(--breadcrumb-bg-color);
    padding: 10px 0;
    width: 100%;
    border-radius: 3px;
}

.hpd-breadcrumb.is-yellow {
    background-color: #ffc77c;
}

.hpd-breadcrumb.is-gray {
    background-color: #f4f4f4;
}

.hpd-breadcrumb__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (max-width: 767px) {
    .hpd-breadcrumb__container {
        padding: 0 12px;
    }
}

.hpd-breadcrumb__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 767px) {
    .hpd-breadcrumb__list {
        gap: 8px;
    }
}

.hpd-breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .hpd-breadcrumb__item {
        font-size: 14px;

    }
}

.hpd-breadcrumb__item:first-child .hpd-breadcrumb__separator {
    display: none;
}

.hpd-breadcrumb__link {
    color: var(--breadcrumb-text-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.hpd-breadcrumb__link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.hpd-breadcrumb__separator {
    color: var(--breadcrumb-separator-color);
    font-weight: 600;
    user-select: none;
    flex-shrink: 0;
}

.hpd-breadcrumb__current {
    color: var(--breadcrumb-current-color);
    font-weight: 600;
}

/* Breadcrumb component */
.hpd-breadcrumb2 {
    padding: 10px 0;
    width: 100%;
}

.hpd-breadcrumb2__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (max-width: 767px) {
    .hpd-breadcrumb2__container {
        padding: 0;
    }
}

.hpd-breadcrumb2__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hpd-breadcrumb2__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .hpd-breadcrumb2__item {
        font-size: 12px;
    }
}

.hpd-breadcrumb2__item:first-child .hpd-breadcrumb2__separator {
    display: none;
}

.hpd-breadcrumb2__link {
    color: var(--breadcrumb-text-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.hpd-breadcrumb2__link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.hpd-breadcrumb2__separator {
    color: var(--breadcrumb-separator-color);
    font-weight: 400;
    user-select: none;
    flex-shrink: 0;
}

.hpd-breadcrumb2__current {
    color: var(--breadcrumb-current-color);
    font-weight: 600;
}

.hpd-banner {
    margin-top: 20px;
}

.hpd-banner__container {
    position: relative;
}

.hpd-banner__image {
    width: 100%;
    height: 100px;
}

.hpd-banner__image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-30deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 1));
}

@media (max-width: 767px) {
    .hpd-banner__container {
        display: flex;
        align-items: stretch;
        min-height: 100px;
    }

    .hpd-banner__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 100px;
    }
}

.hpd-banner__image-src {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hpd-banner__content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .hpd-banner__content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: flex;
        align-items: center;
        padding: 20px 0;
        width: 100%;
        z-index: 1;
    }
}

.hpd-banner__content-title {
    margin-left: 50px;
    font-size: 30px;
    font-weight: 500;
}

.hpd-banner__content-title-sub {
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .hpd-banner__content-title {
        font-size: 30px;
        color: var(--black-color);
        margin-left: 20px;
        margin-right: 20px;
    }
}

.hpd-banner2 {
    background-color: var(--banner2-bg-color);
    height: auto;
    overflow: hidden;
}

@media (max-width: 767px) {
    .hpd-banner2 {
        height: auto;
        padding: 30px 0;
    }

    .hpd-banner2__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 0 !important;
    }

    .hpd-banner2__content {
        text-align: left;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .hpd-banner2__content-title {
        font-size: 24px;
    }

    .hpd-banner2__image {
        transform: none !important;
        display: flex;
        justify-content: flex-end;
    }

    .hpd-banner2__image-src {
        width: auto !important;
        height: 245px !important;
        max-width: none;
        margin: 0 !important;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-banner2 {
        height: 300px;
    }

    .hpd-banner2__container {
        height: 100%;
    }

    .hpd-banner2__inner {
        height: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hpd-banner2__content {
        display: flex;
        align-items: center;
        text-align: left;
    }

    .hpd-banner2__content-title {
        white-space: nowrap;
    }

    .hpd-banner2__image {
        transform: translateX(0) !important;
    }

    .hpd-banner2__image-src {
        width: auto !important;
        height: 280px !important;
        margin: 0 !important;
    }
}

.hpd-banner2__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-banner2__content-title {
    font-size: 34px;
    color: var(--gray-color);
    transform: translateX(0);
    font-weight: 600;
}

@media (min-width: 768px) {
    .hpd-banner2__content-title {
        font-size: 64px;
        font-weight: 600;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-banner2__content-title {
        font-size: 40px;
    }
}

.hpd-banner2__inner {
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

@media (min-width: 768px) {
    .hpd-banner2__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        padding-top: 0;
    }
}

.hpd-banner2__image {
    transform: translateX(60px);
    padding-top: 5px;
}

@media (min-width: 1280px) {
    .hpd-banner2__image {
        transform: translateX(60px);
    }
}

.hpd-banner2__image-src {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Sidebar component */
.hpd-sidebar {
    background-color: var(--white-color);
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
}

@media (min-width: 1280px) {
    .hpd-sidebar {
        max-width: 370px;
    }
}

@media (min-width: 1340px) {
    .hpd-sidebar {
        max-width: 425px;
    }
}

@media (max-width: 767px) {
    .hpd-sidebar {
        margin-top: 20px;
    }
}

.hpd-sidebar__accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hpd-sidebar__item {
    border: 1px solid var(--sidebar-border-color);
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--white-color);
}

.hpd-sidebar__item.is-active .hpd-sidebar__content {
    max-height: 3000px;
    opacity: 1;
    padding: 14px;
}

.hpd-sidebar__item.is-active .hpd-sidebar__header {
    border-bottom: 1px solid var(--sidebar-border-color);
}

.hpd-sidebar__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: var(--sidebar-title-bg-color);
    border: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: left;
}

@media (max-width: 767px) {
    .hpd-sidebar__header {
        padding: 14px 16px;
    }
}

.hpd-sidebar__title {
    font-size: 14px;
    color: var(--sidebar-title-color);
    flex: 1;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .hpd-sidebar__title {
        font-size: 14px;
    }
}

.hpd-sidebar__icon {
    font-size: 10px;
    color: var(--sidebar-title-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.hpd-sidebar__content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    background-color: var(--white-color);
}

@media (max-width: 767px) {
    .hpd-sidebar__content {
        padding: 0 16px;
    }
}

.hpd-sidebar__section {
    margin-bottom: 0px;
}

.hpd-sidebar__section:last-child {
    margin-bottom: 0;
}

.hpd-sidebar__section-title {
    font-size: 14px;
    color: var(--gray-dark-color-700);
    margin: 0 0 5px 0;
    line-height: 1.6;
}

.hpd-sidebar__section-title+.hpd-sidebar__list {
    padding-left: 16px;
}

.hpd-sidebar__section-title+.hpd-sidebar__list .is-sub {
    padding-left: 20px;
}

.hpd-sidebar__section-title+.hpd-sidebar__list .hpd-sidebar__link {
    padding-left: 12px;
}

.hpd-sidebar__section-title+.hpd-sidebar__list .hpd-sidebar__link::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gray-dark-color-700);
    font-size: 16px;
    line-height: 1.6;
}

.hpd-sidebar__section-title+.hpd-sidebar__list .is-nodisc,
.hpd-sidebar__section-title+.hpd-sidebar__list .is_nodisc {
    padding-left: 0;
}

.hpd-sidebar__section-title+.hpd-sidebar__list .is-nodisc::before,
.hpd-sidebar__section-title+.hpd-sidebar__list .is_nodisc::before {
    content: none;
}

.hpd-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hpd-sidebar__list-item {
    margin-bottom: 5px;
    position: relative;
}

.hpd-sidebar__link {
    font-size: 14px;
    color: var(--sidebar-link-color);
    text-decoration: underline;
    line-height: 1.6;
    display: inline-block;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.hpd-sidebar__link:hover {
    color: var(--sidebar-link-hover-color);
    text-decoration: underline;
    cursor: pointer;
}

.hpd-heading {
    height: 40px;
    border-radius: 3px;
    background-color: var(--breadcrumb-bg-color);
}

@media (max-width: 767px) {
    .hpd-heading {
        height: auto;
        border-radius: 3px;
        background-color: var(--breadcrumb-bg-color);
    }
}

.hpd-heading__title {
    font-size: 18px;
    color: var(--white-color);
    line-height: 40px;
    text-align: left;
    padding-left: 20px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .hpd-heading__title {
        line-height: 30px;
        padding: 10px 10px 10px 20px;
    }    
}

.hpd-heading__title-narrow {
    letter-spacing: -0.05em;
}

.hpd-heading.is-yellow {
    background-color: #faebcc;
}

.hpd-heading.is-yellow .hpd-heading__title {
    color: #8a6d3b;
}

/* Category Table component */
.hpd-category-table {
    background-color: var(--white-color);
    border: 1px solid var(--category-table-border-color);
    border-radius: 4px;
    overflow: hidden;
    margin: 20px 0px;
}

.hpd-category-table__header {
    background-color: var(--category-table-header-bg);
    padding: 10px 28px;
    border-bottom: 1px solid var(--category-table-border-color);
}

@media (max-width: 767px) {
    .hpd-category-table__header {
        padding: 14px 16px;
    }
}

.hpd-category-table__title {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .hpd-category-table__title {
        font-size: 15px;
    }
}

.hpd-category-table__body {
    display: flex;
    flex-direction: column;
}

.hpd-category-table__row {
    display: flex;
    align-items: center;
    padding: 8px 40px;
    border-bottom: 1px solid var(--category-table-border-color);
    text-decoration: none;
    color: var(--gray-dark-color-700);
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.hpd-category-table__row:last-child {
    border-bottom: none;
}

.hpd-category-table__row:hover {
    background-color: var(--category-table-row-hover);
}

@media (max-width: 767px) {
    .hpd-category-table__row {
        padding: 12px 16px;
    }
}

.hpd-category-table__icon {
    font-size: 12px;
    color: var(--category-arrow-color);
    margin-right: 30px;
    flex-shrink: 0;
    width: 16px;
    display: inline-block;
}

@media (max-width: 767px) {
    .hpd-category-table__icon {
        font-size: 11px;
        margin-right: 10px;
        width: 14px;
    }
}

.hpd-category-table__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .hpd-category-table__text {
        font-size: 14px;
    }
}

/* Checklist component */
.hpd-checklist {
    background-color: var(--white-color);
    border: 1px solid var(--category-table-border-color);
    border-radius: 4px;
    overflow: hidden;
    margin: 0;
}

.hpd-checklist.is-active .hpd-checklist__header {
    border-bottom: 1px solid var(--category-table-border-color);
}

.hpd-checklist__header {
    background-color: var(--category-table-header-bg);
    padding: 10px 28px;
}

.hpd-checklist__title {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    margin: 0;
    line-height: 1.5;
}

.hpd-checklist__body {
    padding: 12px 14px;
}

.hpd-checklist__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hpd-checklist__buttons {
        flex-direction: column;
    }
}

.hpd-checklist__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    background-color: var(--white-color);
    border: 1px solid var(--gray-dark-color-700);
    border-radius: 4px;
    color: var(--gray-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    min-width: 140px;
}

.hpd-checklist__button.is-auto {
    min-width: auto;
}

@media (max-width: 767px) {
    .hpd-checklist__button.is-auto {
        white-space: normal;
    }
}

.hpd-checklist__button:hover {
    color: #000;
    background-color: rgba(198, 66, 66, .47);
    border-color: rgba(176, 53, 53, .47);
}

.hpd-category-title {
    margin: 20px 0;
    line-height: 1.5;
    border: 1px solid var(--category-table-border-color);
    height: 40px;
    border-radius: 3px;
    background-color: var(--category-table-header-bg);
}

.hpd-category-title__text {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-dark-color-700);
    margin: 0;
    line-height: 40px;
    text-align: left;
    padding-left: 20px;
}

/* Data Table component */
.hpd-data-table {
    margin: 20px 0;
    background-color: var(--white-color);
}

@media (min-width: 768px) {
    .hpd-data-table {
        margin: 20px 0;
    }
}

.hpd-data-table__wrapper {
    overflow-x: auto;
    /* border: 1px solid var(--data-table-border-color); */
}

.hpd-data-table__table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--data-table-border-color);
    background-color: var(--white-color);
}

.hpd-data-table__thead {
    background-color: var(--category-table-header-bg);
    border-bottom: 1px solid #707070;
}

.hpd-data-table__row {
    border-bottom: 1px solid var(--data-table-border-color);
    height: 3em;
}

.hpd-data-table__row:last-child {
    border-bottom: none;
}

.hpd-data-table__header {
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--data-table-header-color);
    border-right: 1px solid var(--data-table-border-color);
    vertical-align: middle;
    line-height: 1.2;
    min-width: 56px;
    white-space: nowrap;
}

.hpd-data-table__header:last-child {
    border-right: none;
}

.hpd-data-table__header:first-child {
    min-width: 324px;
    text-align: center;
    /* padding-left: 16px; */
}

.hpd-data-table__header:nth-child(2) {
    width: 78px;
}

.hpd-data-table__header:nth-child(3) {
    width: 56px;
}

.hpd-data-table__header:nth-child(4) {
    width: 56px;
}

.hpd-data-table__header:nth-child(5) {
    width: 86px;
}

.hpd-data-table__header:nth-child(6) {
    width: 56px;
}

.hpd-data-table__header:nth-child(7) {
    width: 56px;
}

.hpd-data-table__header:nth-child(8) {
    width: 56px;
    letter-spacing: -.125em;
}

.hpd-data-table__header:nth-child(9) {
    width: 56px;
}


.hpd-data-table__cell {
    padding: 5px;
    line-height: 1.2;
    text-align: center;
    font-size: 14px;
    color: var(--data-table-cell-color);
    border-right: 1px solid var(--data-table-border-color);
    vertical-align: middle;
}

.hpd-data-table__cell:last-child {
    border-right: none;
}

.hpd-data-table__cell:first-child {
    text-align: left;
    /* padding-left: 16px; */
    font-weight: 400;
    letter-spacing: -.1em;
}

.hpd-data-table__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.hpd-data-table__link:hover {
    opacity: 0.7;
}

.hpd-data-table__icon-badge {
    width: 40px;
    height: auto;
    display: block;
    margin: 0 auto;
    font-size: 10px;
    border: 1px solid var(--data-table-border-color);
    color: var(--secondary-color);
    font-weight: 700;
}

.hpd-data-table__icon-badge.is-secondary.type-general {
    color: var(--sidebar-link-color);
}

.hpd-data-table__icon-badge.is-secondary.type-free_proposal {
    color: #33cc33;
}

.hpd-data-table__note {
    margin-top: 16px;
    padding: 0 20px 0 0;
}

@media (max-width: 767px) {
    .hpd-data-table__note {
        padding: 0 16px;
    }
}

.hpd-data-table__note-text {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
    line-height: 1.6;
}

.hpd-data-table__note-text a {
    text-decoration: none;
    color: var(--sidebar-link-color);
}

.hpd-data-table__note-text a:hover {
    text-decoration: underline;
    color: var(--sidebar-link-hover-color);
}

.hpd-data-table__note-text strong {
    font-weight: bold;
}

.hpd-data-table__note-text em {
    font-style: italic;
}

.hpd-data-table__note-text u {
    text-decoration: underline;
}

.hpd-data-table__note-text del {
    text-decoration: line-through;
}

.hpd-data-table__note-text ul {
    list-style-type: disc;
    margin: 10px 0 10px 20px;
}

.hpd-data-table__note-text ol {
    list-style-type: decimal;
    margin: 10px 0 10px 20px;
}

.hpd-data-table__note-text li {
    margin-bottom: 5px;
}

.hpd-data-table__note-link {
    color: var(--sidebar-link-color);
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    font-size: 12px;
    text-decoration: underline;
    margin-left: 12px;
}

.hpd-data-table__note-link:hover {
    color: var(--sidebar-link-hover-color);
    text-decoration: underline;
}

/* JIS Table component */
.hpd-jis-table {
    margin: 20px 0;
    background-color: var(--white-color);
}

.hpd-jis-table__date {
    text-align: right;
    font-size: 14px;
    color: var(--gray-dark-color-700);
    margin-bottom: 10px;
}

.hpd-jis-table__wrapper {
    overflow-x: auto;
    border: 1px solid var(--data-table-border-color);
    margin-bottom: 0;
    border-radius: 3px;
}

.hpd-jis-table__wrapper:last-child {
    margin-bottom: 0;
}

.hpd-jis-table__wrapper:nth-last-of-type(1) {
    margin-top: 20px;
}

.hpd-jis-table__table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white-color);
}

.hpd-jis-table__thead {
    background-color: var(--data-table-header-bg);
}

.hpd-jis-table__thead.is-hidden {
    visibility: collapse;
}

.hpd-jis-table__row {
    border-bottom: 1px solid var(--data-table-border-color);
}

.hpd-jis-table__row:last-child {
    border-bottom: none;
}

.hpd-jis-table__header {
    padding: 6px;
    text-align: center;
    font-size: 14px;
    color: var(--data-table-header-color);
    border-right: 1px solid var(--data-table-border-color);
    vertical-align: middle;
    line-height: 1.2;
    border-bottom: 1px solid var(--data-table-border-color);
}

.hpd-jis-table__header:last-child {
    border-right: none;
}

.hpd-jis-table__header:first-child {
    min-width: 30px;
    width: 30px;
}

.hpd-jis-table__header:nth-child(2) {
    min-width: 86px;
}

.hpd-jis-table__header:nth-child(3) {
    min-width: 119px;
}

.hpd-jis-table__header:nth-child(4) {
    min-width: 210px;
}

.hpd-jis-table__header:nth-child(5) {
    min-width: 114px;
}

.hpd-jis-table__header:nth-child(6) {
    min-width: 220px;
}

.hpd-jis-table__header:nth-child(7) {
    min-width: 44px;
    width: 44px;
    white-space: nowrap;
}

.hpd-jis-table__cell {
    padding: 12px 5px;
    text-align: center;
    font-size: 14px;
    color: var(--data-table-cell-color);
    border-right: 1px solid var(--data-table-border-color);
    vertical-align: middle;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.hpd-jis-table__cell:last-child {
    border-right: none;
}

.hpd-jis-table__cell--number {
    text-align: center;
    font-weight: 400;
}

.hpd-jis-table__cell:nth-child(4) {
    text-align: left;
}

.hpd-jis-table__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.hpd-jis-table__link:hover {
    opacity: 0.7;
}

.hpd-jis-table__icon {
    width: 20px;
    height: auto;
    display: block;
}

.hpd-jis-table__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
    gap: 12px;
    margin-top: 40px;
}

.hpd-jis-table__pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-dark-color-700);
}

/* Download Table component */
.hpd-download-table {
    margin: 20px 0;
}

.hpd-download-table__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

@media (max-width: 767px) {
    .hpd-download-table__top {
        flex-direction: column;
    }
}

.hpd-download-table__title {
    font-size: 18px;
    color: var(--gray-dark-color-700);
    margin: 0;
}

.hpd-download-table__link-new {
    font-size: 16px;
}

.hpd-download-table__link-text {
    font-size: 14px;
    color: var(--download-table-link-color);
    text-decoration: underline;
    cursor: pointer;
}

.hpd-download-table__wrapper {
    overflow-x: auto;
    border: 1px solid var(--download-table-border-color);
    max-width: 100%;
}

@media (max-width: 767px) {
    .hpd-download-table__wrapper {
        overflow: hidden !important;
    }
}

.hpd-download-table__table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white-color);
    table-layout: fixed;
}

.hpd-download-table__thead {
    background-color: var(--white-color);
}

.hpd-download-table__row {
    border-bottom: 1px solid var(--download-table-border-color);
}

.hpd-download-table__row:last-child {
    border-bottom: none;
}

.hpd-download-table__row--section {
    background-color: var(--download-table-section-bg);
}

.hpd-download-table__row--section .hpd-download-table__cell {
    padding: 8px;
}

.hpd-download-table__row--subsection {
    background-color: var(--gray-color-50);
}

.hpd-download-table__row--subsection .hpd-download-table__cell {
    padding: 6px 8px;
}

.hpd-download-table__row--dashed {
    border-bottom: 1px dashed var(--download-table-border-color);
}

.hpd-download-table__row--dashed .hpd-download-table__cell:first-child {
    border-bottom: 1px solid transparent;
}

.hpd-download-table__header {
    padding: 6px 2px;
    text-align: center;
    font-size: 12px;
    color: var(--data-table-header-color);
    border-right: 1px solid #555;
    border-bottom: 1px solid #555 !important;
    vertical-align: middle;
    line-height: 1.4;
    background-color: var(--white-color);
    width: 56px;
    white-space: nowrap;
    box-sizing: border-box;
}

.hpd-download-table__header:first-child {
    width: 40px;
    border-right: 0;
}

.hpd-download-table__header:last-child {
    border-right: none;
    width: 100%;
}

.hpd-download-table__header--left {
    text-align: left;
    padding-left: 16px;
}

.hpd-download-table__header--download {
    padding: 6px;
    background-color: var(--white-color);
}

.hpd-download-table__cell {
    padding: 2px 2px;
    text-align: center;
    font-size: 12px;
    color: var(--data-table-cell-color);
    border-right: 1px solid var(--download-table-border-color);
    vertical-align: middle;
    line-height: 1.5;
}

.hpd-download-table__cell.is-zip-final {
    transform: translateY(-8px);
}

.hpd-download-table__cell.is-zip-final .hpd-download-table__download-link {
    transform: translateY(8px);
}

.hpd-download-table__cell:first-child {
    padding: 8px 0;
}

.hpd-download-table__cell:last-child {
    padding-left: 10px;
}

.hpd-download-table__cell:last-child,
.hpd-download-table__cell:first-child {
    border-right: none;
}

.hpd-download-table__cell--number {
    text-align: center;
    background-color: var(--download-table-section-bg);
}

.hpd-download-table__cell--left {
    text-align: left;
}

.hpd-download-table__cell--indent {
    padding-left: 12px;
}

.hpd-download-table__cell--subindent {
    padding-left: 32px;
}

.hpd-download-table__symbol {
    font-size: 16px;
    font-weight: bold;
}

.hpd-download-table__download-link.is-zip {
    padding: 4px 0;
}

.hpd-download-table__download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    vertical-align: middle;
}

.hpd-download-table__download-link:hover {
    opacity: 0.7;
}

.hpd-download-table__icon {
    width: 20px;
    height: auto;
    display: block;
}

.hpd-download-table__icon-small {
    width: 20px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hpd-download-table__icon-link {
    width: 20px;
    height: auto;
    display: block;
}

.hpd-download-table__note {
    margin: 10px 0 0 10px;
    font-size: 12px;
    color: var(--gray-color);
    line-height: 1.5;
}

.hpd-download-table__legend {
    margin-top: 20px;
}

.hpd-download-table__legend-text {
    margin: 0;
    font-size: 12px;
    color: var(--gray-dark-color-700);
    line-height: 1.6;
}

.hpd-download-table__legend-note {
    margin-top: 40px;
    text-align: center;
}

.hpd-download-table__legend-note-link {
    font-size: 18px;
    color: var(--download-table-link-color);
    text-decoration: underline;
    cursor: pointer;
}

/* Notice Box component */
.hpd-notice-box {
    margin: 22px 0;
    border: 1px solid var(--download-table-border-color);
    background-color: var(--white-color);
    border-radius: 5px;
}

.hpd-notice-box__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-dark-color-700);
    margin: 0;
    padding: 6px 20px;
    border-bottom: 1px solid var(--download-table-border-color);
    background-color: var(--gray-color-50);
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.hpd-notice-box__content {
    padding: 10px 20px 10px 36px;
}

.hpd-notice-box__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hpd-notice-box__item {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

.hpd-notice-box__item:last-child {
    margin-bottom: 0;
}

.hpd-notice-box__item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gray-dark-color-700);
    font-size: 16px;
    line-height: 1.6;
}

.hpd-notice-box__text {
    font-size: inherit;
    color: var(--gray-dark-color-700);
    line-height: 1.6;
}

.hpd-notice-box__text--highlight {
    color: var(--secondary-color);
    font-weight: 500;
}

.hpd-notice-box__text+.hpd-notice-box__link {
    margin-top: 0;
}

.hpd-notice-box__link {
    font-size: inherit;
    color: var(--sidebar-link-color);
    text-decoration-line: none;
    transition: color 0.2s ease;
}

.hpd-notice-box__link:hover {
    color: var(--sidebar-link-hover-color);
    text-decoration-line: underline;
}

/* Info Box component */
.hpd-info-box {
    margin: 0 0 30px;
    border: 1px solid var(--download-table-border-color);
    background-color: var(--white-color);
    border-radius: 5px;
}

.hpd-info-box__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-dark-color-700);
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid var(--download-table-border-color);
    background-color: var(--gray-color-50);
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.hpd-info-box__content {
    padding: 10px 20px;
}

.hpd-info-box__text {
    font-size: 14px;
    color: var(--gray-dark-color-700);
    line-height: 1.6;
    margin: 0;
}

/* Recruitment component */
.hpd-recruitment {
    margin: 16px 0;
}

.hpd-recruitment__section {
    margin-bottom: 40px;
    margin-left: 20px;
    font-size: 16px;
}

.hpd-recruitment__section span {
    vertical-align: top;
}

.hpd-recruitment__section:last-child {
    margin-bottom: 0;
}

.hpd-recruitment__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.hpd-recruitment__icon {
    width: 10px;
    height: 18px;
    flex-shrink: 0;
}

.hpd-recruitment__title {
    font-size: 18px;
    color: var(--gray-dark-color-700);
    margin: 0;
    line-height: 1.4;
}

.hpd-recruitment__title img,
picture,
video,
canvas,
svg {
    display: inline;
}

.hpd-recruitment__content {
    padding-left: 22px;
}

.hpd-recruitment__content h5 {
    border-top: dotted 1px #666;
    border-bottom: dotted 1px #666;
    margin: 20px 0 10px 0;
    padding: 4px;
    font-weight: bold;
}

.hpd-recruitment__item {
    margin-bottom: 6px;
    display: flex;
    gap: 5px;
}

.hpd-recruitment__item:last-child {
    margin-bottom: 0;
}

.hpd-recruitment__bullet {
    margin: 0 5px;
}

.hpd-recruitment__label {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
}

.hpd-recruitment__text {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
}

.hpd-recruitment__text.is-space {
    margin-left: 20px;
}

.hpd-recruitment__text:last-child {
    margin-bottom: 0;
}

.hpd-recruitment__indent {
    padding-left: 26px;
    margin: 5px 0;
}

.hpd-recruitment__content.arrow-down {
    position: relative;
}

.hpd-recruitment__content.arrow-down::after {
    content: "↓";
    position: absolute;
    top: 24px;
    left: 60px;
    font-size: 24px;
    color: var(--gray-dark-color-700);
}

.hpd-recruitment__note {
    margin-top: 10px;
    padding-left: 0;
}

.hpd-recruitment__subsection {
    margin-bottom: 25px;
}

.hpd-recruitment__subsection:last-child {
    margin-bottom: 0;
}

.hpd-recruitment__subtitle {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.hpd-recruitment__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 20px;
}

/* Job List component */
.hpd-job-list {
    margin: 20px 0;
}

.hpd-job-list__menu {
    margin-bottom: 40px;
    margin-left: 20px;
}

.hpd-job-list__menu-item {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    line-height: 1.8;
}

.hpd-job-list__menu-item:last-child {
    margin-bottom: 0;
}

.hpd-job-list__bullet {
    background-color: var(--sidebar-link-color);
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    display: inline-block;
}

.hpd-job-list__bullet-black {
    color: var(--gray-dark-color-700);
    font-size: 14px;
    flex-shrink: 0;
}

.hpd-job-list__menu-link {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    text-decoration: none;
    transition: color 0.2s ease;
    color: var(--sidebar-link-hover-color);
}

.hpd-job-list__menu-link:hover {
    text-decoration: underline;
}

.hpd-job-list__new-label {
    color: var(--secondary-color);
    font-size: 16px;
    margin-left: 8px;
    flex-shrink: 0;
    align-self: baseline;
}

.hpd-job-list__detail {
    margin-bottom: 50px;
}

.hpd-job-list__detail:last-child {
    margin-bottom: 0;
}

.hpd-job-list__detail-header {
    display: flex;
    align-items: baseline;
    gap: 3px;
    border-bottom: 1px solid var(--download-table-border-color);
    padding: 12px;
    background-color: var(--category-table-header-bg);
}

.hpd-job-list__detail-title {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    margin: 0;
    line-height: 1.6;
}

.hpd-job-list__table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--download-table-border-color);
    background-color: var(--white-color);
    border-radius: 4px;
}

.hpd-job-list__table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white-color);
}

.hpd-job-list__row {
    border-bottom: 1px solid var(--download-table-border-color);
}

.hpd-job-list__row:last-child {
    border-bottom: none;
}

.hpd-job-list__header {
    width: 200px;
    padding: 15px 20px;
    text-align: left;
    font-size: 14px;
    color: var(--gray-dark-color-700);
    background-color: var(--data-table-header-bg);
    vertical-align: top;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .hpd-job-list__header {
        width: 150px;
        padding: 12px 16px;
        font-size: 13px;
    }
}

.hpd-job-list__cell {
    padding: 15px 20px;
    font-size: 14px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
    vertical-align: top;
}

@media (max-width: 767px) {
    .hpd-job-list__cell {
        padding: 12px 16px;
        font-size: 13px;
    }
}

.hpd-job-list__link {
    color: var(--sidebar-link-color);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.hpd-job-list__link:hover {
    color: var(--sidebar-link-hover-color);
}

.hpd-main-banner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    min-height: 120px;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}

.hpd-main-banner__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    max-width: 1920px;
}

.hpd-main-banner.is-red {
    background-color: var(--banner-bg-red);
}

.hpd-main-banner.is-red .hpd-main-banner__header {
    border-left: 10px solid var(--accordion-red);
}

.hpd-main-banner.is-red .hpd-main-banner__badge {
    background-color: var(--banner-bg-red);
    color: var(--accordion-red);
}

.hpd-main-banner.is-blue {
    background-color: var(--banner-bg-blue);
}

.hpd-main-banner.is-blue .hpd-main-banner__header {
    border-left: 10px solid var(--accordion-blue);
}

.hpd-main-banner.is-blue .hpd-main-banner__badge {
    background-color: var(--banner-bg-blue);
    ;
    color: var(--accordion-blue);
}

.hpd-main-banner.is-orange {
    background-color: var(--banner-bg-orange);
}

.hpd-main-banner.is-orange .hpd-main-banner__header {
    border-left: 10px solid var(--accordion-orange);
}

.hpd-main-banner.is-orange .hpd-main-banner__badge {
    background-color: var(--banner-bg-orange);
    color: var(--accordion-orange);
}

.hpd-main-banner.is-teal {
    background-color: var(--banner-bg-teal);
}

.hpd-main-banner.is-teal .hpd-main-banner__header {
    border-left: 10px solid var(--accordion-teal);
}

.hpd-main-banner.is-teal .hpd-main-banner__badge {
    background-color: var(--banner-bg-teal);
    color: var(--accordion-teal);
}

.hpd-main-banner.is-purple {
    background-color: var(--banner-bg-purple);
}

.hpd-main-banner.is-purple .hpd-main-banner__header {
    border-left: 10px solid var(--accordion-purple);
}

.hpd-main-banner.is-purple .hpd-main-banner__badge {
    background-color: var(--banner-bg-purple);
    color: var(--accordion-purple);
}

.hpd-main-banner.is-yellow {
    background-color: var(--banner-bg-yellow);
}

.hpd-main-banner.is-yellow .hpd-main-banner__header {
    border-left: 10px solid var(--accordion-yellow);
}

.hpd-main-banner.is-yellow .hpd-main-banner__badge {
    background-color: #fdf7dd;
    color: var(--accordion-yellow);
}

.hpd-main-banner__content {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.hpd-main-banner__header {
    position: relative;
    margin-bottom: 40px;
    display: inline-flex;
    flex-direction: column;
    padding-top: 50px;
    padding-left: 12px;
    border-left: 10px solid transparent;
    margin-left: calc(50vw - 656px);
}


@media (min-width: 768px) and (max-width: 1279px) {

    .hpd-main-banner.is-purple .hpd-main-banner__header,
    .hpd-main-banner.is-yellow .hpd-main-banner__header {
        margin-bottom: 20px;
        padding-top: 25px;
    }
}

@media (max-width: 767px) {

    .hpd-main-banner.is-purple .hpd-main-banner__header,
    .hpd-main-banner.is-yellow .hpd-main-banner__header {
        margin-bottom: 0;
        padding-top: 10px;
    }
}

@media (max-width: 767px) {
    .hpd-main-banner__header {
        padding-top: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 1400px) {
    .hpd-main-banner__header {
        margin-left: 16px;
    }
}

.hpd-main-banner__header.is-full {
    min-width: 80%;
}

.hpd-main-banner__header.is-main_1,
.hpd-main-banner__header.is-main_2,
.hpd-main-banner__header.is-main_3,
.hpd-main-banner__header.is-main_4,
.hpd-main-banner__header.is-main_5,
.hpd-main-banner__header.is-main_6 {
    /* Removed individual margins - now handled by container */
}

/* Container styles handled in main media queries */

.hpd-main-banner__title {
    font-size: 50px;
    font-weight: 600;
    color: var(--gray-dark-color-700);
    line-height: 1.3;
}

.hpd-main-banner__title-bold {
    font-weight: bolder;
}

.hpd-main-banner__subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-dark-color-700);
    margin: 0;
    line-height: 1.6;
}

.hpd-main-banner__notices {
    background-color: #ffffff;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 35px 40px;
    padding-left: calc(50vw - 656px);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
    margin-bottom: 50px;
}

/* PC notices - show on desktop, hide on tablet */
.hpd-main-banner__notices--pc {
    display: flex;
}

.hpd-main-banner__notices--tablet {
    display: none;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-main-banner__notices--pc {
        display: none;
    }

    .hpd-main-banner__notices--tablet {
        display: flex;
        width: 100%;
        border-radius: 20px;
        margin: 0 20px 30px;
        padding-left: 20px;
        max-width: calc(100% - 40px);
    }
}

@media (max-width: 1279px) {
    .hpd-main-banner__notices {
        padding-left: 16px;
    }
}

.hpd-main-banner__notices.is-full {
    max-width: 1600px;
}

@media (max-width: 767px) {
    .hpd-main-banner__notices {
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .hpd-main-banner__notices {
        border-radius: 15px;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-main-banner__notices {
        border-radius: 15px;
    }
}

.hpd-main-banner__notice {
    display: flex;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
    padding: 8px 0;
    border-bottom: 1px dashed #b4b1b1;
    align-items: center;
}

.hpd-main-banner__notice:first-child {
    border-top: 1px dashed #b4b1b1;
}

.hpd-main-banner__notices-list {
    overflow: hidden;
    flex: 1;
}

.hpd-main-banner__notices-list.is-full {
    max-width: 1150px;
}

.hpd-main-banner__notice-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.hpd-main-banner__badge {
    padding: 4px 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.hpd-main-banner__date {
    font-weight: 550;
    font-size: 16px;
    color: var(--gray-dark-color-700);
    white-space: nowrap;
    min-width: 90px;
}

.hpd-main-banner__notice-title {
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.hpd-main-banner__arrow {
    font-size: 18px;
    color: #353232;
    flex-shrink: 0;
    align-self: center;
}

.hpd-main-banner__image {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
}

.hpd-main-banner__image img {
    display: block;
    height: 400px;
    object-fit: contain;
}

@media (max-width: 1279px) {
    .hpd-main-banner__image img {
        height: 280px;
    }

    .hpd-main-banner__content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hpd-main-banner__header {
        margin-right: 20px;
        margin-left: 20px;
    }

    .hpd-main-banner__image {
        margin: 0 auto;
    }

    .hpd-main-banner__notices {
        padding: 30px 35px;
    }

    .hpd-main-banner__inner {
        flex-direction: row;
    }

    .hpd-main-banner {
        min-height: auto;
    }

    .hpd-main-banner__content {
        padding: 0 10px;
        flex: 0 0 61%;
    }

    .hpd-main-banner__title {
        font-size: 30px;
    }

    .hpd-main-banner__image {
        flex: 0 0 45%;
        width: auto;
        order: 0;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .hpd-main-banner {
        flex-direction: column;
        min-height: auto;
    }

    .hpd-main-banner__inner {
        flex-direction: column;
    }

    .hpd-main-banner__content {
        padding: 0 30px;
        flex: 0 0 100%;
    }

    .hpd-main-banner__title {
        font-size: 28px;
    }

    .hpd-main-banner__subtitle {
        font-size: 16px;
    }

    .hpd-main-banner__notices {
        max-width: 100%;
        padding: 25px 20px;
    }

    .hpd-main-banner__notice {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hpd-main-banner__notice-meta {
        width: 100%;
    }

    .hpd-main-banner__notice-title {
        white-space: normal;
        width: 100%;
    }

    .hpd-main-banner__image {
        width: 100%;
        order: -1;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .hpd-main-banner__content {
        padding: 0 20px 20px 10px;
    }

    .hpd-main-banner__title {
        font-size: 24px;
    }

    .hpd-main-banner__notices {
        padding: 20px 15px;
        gap: 15px;
        margin-left: 10px;
    }

    .hpd-main-banner__badge {
        font-size: 16px;
        padding: 3px 10px;
    }

    .hpd-main-banner__date {
        min-width: 90px;
    }
}

/* Banner without image - keep same layout as with image */
.hpd-main-banner.is-no-image {
    justify-content: flex-start;
}

.hpd-main-banner.is-no-image .hpd-main-banner__content {
    flex: 0 0 60%;
    max-width: 60%;
}

/* For main_4, content should take full width when no image,
 and notices should align to right edge of container (not screen) */
/*
.hpd-main-4 .hpd-main-banner.is-no-image .hpd-main-banner__content {
    flex: 0 0 100%;
    max-width: 100%;
}

.hpd-main-4 .hpd-main-banner__notices--pc {
    max-width: calc(50vw + 640px);
}
*/

.hpd-main-banner.is-purple.is-no-image .hpd-main-banner__content,
.hpd-main-banner.is-yellow.is-no-image .hpd-main-banner__content {
    flex: 0 0 70%;
    max-width: 70%;
}

@media (max-width: 767px) {
    .hpd-main-banner.is-purple.is-no-image .hpd-main-banner__content,
    .hpd-main-banner.is-yellow.is-no-image .hpd-main-banner__content {
        max-width: 90%;
    }
}

.hpd-main-banner.is-no-image .hpd-main-banner__header {
    /* align-self: flex-start; */
    margin-right: 0;
}

.hpd-main-banner.is-no-image .hpd-main-banner__notices {
    margin-bottom: 20px;
}

/* Banner with header only (no notices) */
.hpd-main-banner.is-header-only {
    min-height: 180px;
}

.hpd-main-banner.is-header-only .hpd-main-banner__content {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
}

.hpd-main-banner.is-yellow.is-header-only .hpd-main-banner__header {
    max-width: 1400px;
}

.hpd-main-banner.is-header-only .hpd-main-banner__header {
    margin-bottom: 0;
    padding-top: 40px;
    padding-bottom: 40px;
    align-self: flex-start;
    min-width: 100%;
    padding-left: 32px;
}

@media (max-width: 1279px) {
    .hpd-main-banner.is-no-image .hpd-main-banner__content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hpd-main-banner.is-header-only .hpd-main-banner__header {
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .hpd-main-banner.is-header-only {
        min-height: 120px;
    }

    .hpd-main-banner.is-header-only .hpd-main-banner__header {
        padding-left: 16px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.hpd-section-header.is-red .hpd-section-header__title {
    background-color: var(--banner-bg-red);
    border: 3px solid var(--accordion-red);
}

.hpd-section-header.is-blue .hpd-section-header__title {
    background-color: var(--banner-bg-blue);
    border: 3px solid var(--accordion-blue);
}

.hpd-section-header.is-orange .hpd-section-header__title {
    background-color: var(--banner-bg-orange);
    border: 3px solid var(--accordion-orange);
}

.hpd-section-header.is-teal .hpd-section-header__title {
    background-color: var(--banner-bg-teal);
    border: 3px solid var(--accordion-teal);
}

.hpd-section-header__title {
    font-weight: 600;
    font-size: 24px;
    color: var(--gray-color);
    margin: 0;
    line-height: 1.4;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hpd-section-header__title.is-left {
    text-align: left;
}

@media (min-width: 768px) {
    .hpd-section-header__title.is-center {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hpd-section-header__title {
        font-size: 18px;
        padding: 15px 20px;
    }
}

.hpd-slider {
    position: relative;
    width: 100%;
    max-width: 1020px;
    margin: 60px auto;
    padding: 0;
}

.hpd-slider__container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hpd-slider__track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.hpd-slider__slide {
    flex: 0 0 240px;
    width: 240px;
    min-width: 240px;
    background-color: var(--white-color);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hpd-slider__slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1100px) {
    .hpd-slider {
        max-width: calc(100% - 120px);
    }
}

@media (max-width: 992px) {
    .hpd-slider {
        max-width: calc(100% - 100px);
    }

    .hpd-slider__slide {
        flex: 0 0 200px;
        width: 200px;
        min-width: 200px;
    }
}

@media (max-width: 767px) {
    .hpd-slider {
        max-width: calc(100% - 80px);
    }

    .hpd-slider__slide {
        flex: 0 0 180px;
        width: 180px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .hpd-slider {
        max-width: calc(100% - 40px);
    }

    .hpd-slider__slide {
        flex: 0 0 160px;
        width: 160px;
        min-width: 160px;
    }
}

.hpd-slider__image {
    width: 240px;
    height: auto;
    aspect-ratio: auto;
    overflow: hidden;
    background-color: var(--gray-color-50);
}

@media (max-width: 992px) {
    .hpd-slider__image {
        width: 200px;
    }
}

@media (max-width: 767px) {
    .hpd-slider__image {
        width: 180px;
    }
}

@media (max-width: 480px) {
    .hpd-slider__image {
        width: 160px;
    }
}

.hpd-slider__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hpd-slider__content {
    padding: 4px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
}

.hpd-slider__title {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-dark-color-700);
    margin: 0 0 2px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hpd-slider__description {
    font-size: 12px;
    color: var(--gray-color);
    margin: 0 0 10px 0;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hpd-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 56px;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--gray-dark-color-700);
    border: none;
    padding: 0;
    border-radius: 4px;
}

.hpd-slider__arrow svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hpd-slider__arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.hpd-slider__arrow.is-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.hpd-slider__arrow--prev {
    left: -45px;
}

.hpd-slider__arrow--next {
    right: -45px;
}

@media (max-width: 767px) {
    .hpd-slider__arrow {
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.9);
        padding: 8px;
    }

    .hpd-slider__arrow--prev {
        left: 10px;
    }

    .hpd-slider__arrow--next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hpd-slider__arrow {
        width: 28px;
        height: 28px;
        padding: 6px;
    }

    .hpd-slider__arrow--prev {
        left: 8px;
    }

    .hpd-slider__arrow--next {
        right: 8px;
    }
}

/* Swiper Pagination */
.hpd-swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 20px !important;
}

.hpd-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-color-80);
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hpd-swiper-pagination .swiper-pagination-bullet:hover {
    background-color: var(--gray-color-100);
}

.hpd-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--gray-dark-color-700);
}

.hpd-slider__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.hpd-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gray-color-80);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hpd-slider__dot:hover {
    background-color: var(--gray-color-100);
}

.hpd-slider__dot.is-active {
    background-color: var(--gray-dark-color-700);
    width: 10px;
    height: 10px;
}

@media (max-width: 767px) {
    .hpd-slider {
        margin: 40px auto;
    }
}

@media (max-width: 480px) {
    .hpd-slider {
        padding: 0 16px;
    }
}

.hpd-contact-box {
    padding: 40px 16px;
}

@media (min-width: 768px) {
    .hpd-contact-box {
        padding: 60px 0;
    }
}

.hpd-contact-box.is-red {
    background: var(--banner-bg-red);
}

.hpd-contact-box.is-blue {
    background: var(--banner-bg-blue);
}

.hpd-contact-box.is-orange {
    background: var(--banner-bg-orange);
    ;
}

.hpd-contact-box.is-teal {
    background: var(--banner-bg-teal);
}

.hpd-contact-box.is-purple {
    background: var(--banner-bg-purple);
}

.hpd-contact-box.is-yellow {
    background: var(--banner-bg-yellow);
}

.hpd-contact-box__link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 50px;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    background: var(--white-color);
    color: var(--gray-dark-color-700);
}

.hpd-contact-box__link:hover {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: #DDD;
}

.hpd-contact-box__link:active {
    background-color: var(--gray-color-50);
}

@media (max-width: 767px) {
    .hpd-contact-box__link {
        padding: 22px 35px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .hpd-contact-box__link {
        padding: 18px 0px;
        border-radius: 20px;
    }
}

.hpd-contact-box__text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.02em;
}

@media (max-width: 767px) {
    .hpd-contact-box__text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hpd-contact-box__text {
        font-size: 14px;
        letter-spacing: 0.03em;
    }
}

.hpd-003 {
    margin-top: 40px;
    min-height: 100vh;
}

.hpd-003__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-003__main {
    flex: 1;
    width: 100%;
    overflow: hidden;
}

.hpd-003__content {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    margin-bottom: 40px;
    gap: 20px;
}

@media (min-width: 1280px) {
    .hpd-003__content {
        flex-direction: row;
        gap: 30px;
    }
}

.hpd-003__footer {
    padding: 0 20px 20px;
    background-color: var(--white-color);
}

@media (max-width: 767px) {
    .hpd-003__footer {
        padding: 16px;
    }
}

.hpd-003__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hpd-003__link-item {
    margin-bottom: 12px;
}

.hpd-003__link-item:last-child {
    margin-bottom: 0;
}

.hpd-003__link {
    font-size: 14px;
    color: var(--sidebar-link-color);
    text-decoration: none;
    line-height: 1.6;
    display: inline-block;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.hpd-003__link:hover {
    color: var(--sidebar-link-hover-color);
    text-decoration: underline;
}

@media (min-width: 768px) {
    .hpd-003__link {
        font-size: 16px;
    }
}

.hpd-003__news {
    margin: 20px 0;
    border: 1px solid var(--download-table-border-color);
    border-radius: 4px;
}

.hpd-003__news-title {
    background-color: var(--category-table-header-bg);
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-dark-color-700);
    margin: 0 0 8px 0;
    border-bottom: 1px solid var(--download-table-border-color);
    padding: 4px 20px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.hpd-003__news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hpd-003__news-item {
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 4px 20px;
}

.hpd-003__news-date {
    font-size: 16px;
    color: #333333;
    flex-shrink: 0;
    white-space: nowrap;
    width: 136px;
}

.hpd-003__news-text {
    font-size: 14px;
    color: var(--gray-dark-color-700);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .hpd-003__news-item {
        flex-direction: column;
        gap: 4px;
    }

    .hpd-003__news-date {
        width: 100%;
    }

    .hpd-003__news-text {
        font-size: 16px;
        width: 100%;
    }
}

.hpd-003__tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-direction: row;
}

@media (max-width: 767px) {
    .hpd-003__tabs {
        margin-bottom: 20px;
        flex-direction: column;
        gap: 20px;
    }
}

.hpd-003__tab {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    gap: 8px;
    padding: 12px 5px;
    text-align: center;
    text-decoration: underline;
    color: var(--gray-dark-color-700);
    font-size: 15px;
    background-color: #faebcc;
    position: relative;
}

@media (max-width: 767px) {
    .hpd-003__tab {
        padding: 10px 15px;
        font-size: 13px;
    }
}

.hpd-003__tab-icon {
    font-size: 10px;
    color: inherit;
    position: absolute;
    left: 50%;
    transform: translateY(-50%);
    bottom: -24px;
}

.hpd-003__section {
    background-color: var(--white-color);
    margin-bottom: 30px;
    border: 1px solid var(--download-table-border-color);
    border-radius: 4px;
}

.hpd-003__section.no-border {
    border: none;
}

.hpd-003__section.no-border .hpd-003__section-title {
    border-bottom: none;
}

.hpd-003__section.no-border .hpd-003__section-main {
    padding: 0;
}

@media (max-width: 767px) {
    .hpd-003__section {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
}

.hpd-003__section-main {
    padding: 0 20px 20px;
}

.hpd-003__section-title {
    font-size: 18px;
    font-weight: 500;
    background-color: var(--category-table-header-bg);
    color: var(--gray-dark-color-700);
    margin: 0 0 20px 0;
    padding: 10px 20px;
    border-bottom: 1px solid var(--download-table-border-color);
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

@media (max-width: 767px) {
    .hpd-003__section-title {
        margin-bottom: 15px;
    }
}

.hpd-003__subsection {
    margin-bottom: 30px;
    padding: 0 20px;
}

.hpd-003__subsection:last-child {
    margin-bottom: 0;
}

.hpd-003__subsection-title {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    margin: 0 0 4px 0;
}

@media (max-width: 767px) {
    .hpd-003__subsection-title {
        font-size: 15px;
    }
}

.hpd-003__download-table {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .hpd-003__download-table {
        overflow: hidden;
    }
}

.hpd-003__table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--download-table-border-color);
    background-color: var(--white-color);
}

.hpd-003__table-row--section {
    border-bottom: 1px solid var(--download-table-border-color);
}

.hpd-003__table-row--section:last-child {
    border-bottom: none;
}

.hpd-003__table-cell--label {
    padding: 10px 15px;
    background-color: var(--data-table-header-bg);
    font-size: 14px;
    color: var(--gray-dark-color-700);
    vertical-align: middle;
    width: 100px;
    text-align: center;
    border-right: 1px solid var(--download-table-border-color);
}

@media (max-width: 767px) {
    .hpd-003__table-cell--label {
        width: 80px;
        padding: 8px 12px;
        font-size: 13px;
    }
}

.hpd-003__table-cell--content {
    padding: 10px 15px;
    background-color: var(--white-color);
    vertical-align: middle;
    border-right: 1px solid var(--download-table-border-color);
}

@media (max-width: 767px) {
    .hpd-003__table-cell--content {
        padding: 8px 12px;
    }
}

.hpd-003__download-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gray-dark-color-700);
    transition: opacity 0.2s ease;
}

.hpd-003__download-link:hover {
    opacity: 0.7;
}

.hpd-003__download-text {
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .hpd-003__download-text {
        font-size: 13px;
    }
}

.hpd-003__download-form {
    font-size: 14px;
    margin-left: 10px;
    white-space: nowrap;
}

.hpd-003__download-icon {
    width: 20px;
    height: auto;
    display: block;
    margin-left: 12px;
}

.hpd-003__download-icon--word {
    width: 20px;
    height: auto;
    display: block;
    margin-left: 12px;
}

.hpd-003__software-text {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
    margin: 0 0 12px 40px;
}

@media (max-width: 767px) {
    .hpd-003__software-text {
        font-size: 13px;
    }
}

.hpd-003__software-link {
    color: #0066cc;
    text-decoration: underline;
    margin-left: 5px;
}

.hpd-003__software-link:hover {
    text-decoration: none;
}

.hpd-003__intro-text {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
    margin: 0 0 20px 0;
}

@media (max-width: 767px) {
    .hpd-003__intro-text {
        font-size: 13px;
    }
}

.hpd-003__fee-table {
    margin-bottom: 30px;
}

.hpd-003__fee-table-title {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    margin: 0 0 15px 0;
    text-align: center;
}

@media (max-width: 767px) {
    .hpd-003__fee-table-title {
        font-size: 15px;
    }
}

.hpd-003__table-wrapper {
    overflow-x: auto;
}

@media (max-width: 767px) {
    .hpd-003__table-wrapper {
        overflow: hidden;
    }
}

.hpd-003__fee-table-content {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white-color);
    min-width: 600px;
}

.hpd-003__fee-header {
    padding: 12px 15px;
    background-color: var(--data-table-header-bg);
    font-size: 14px;
    color: var(--data-table-header-color);
    text-align: center;
    border: 1px solid var(--data-table-border-color);
    vertical-align: middle;
    border-radius: 4px;
}

.hpd-003__fee-header:nth-child(2) {
    width: 140px;
}

@media (max-width: 767px) {
    .hpd-003__fee-header {
        padding: 10px 12px;
        font-size: 13px;
    }
}

.hpd-003__fee-cell {
    padding: 12px 15px;
    font-size: 14px;
    color: var(--data-table-cell-color);
    border: 1px solid var(--data-table-border-color);
    vertical-align: middle;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 767px) {
    .hpd-003__fee-cell {
        padding: 10px 12px;
        font-size: 13px;
    }
}

.hpd-003__fee-tax {
    font-size: 14px;
    color: var(--gray-dark-color-700);
    margin-left: 5px;
}

.hpd-003__notes {
    margin-top: 20px;
}

.hpd-003__note {
    font-size: 12px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
}

.hpd-003__note:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .hpd-003__note {
        font-size: 12px;
        padding-left: 20px;
    }
}

.hpd-003__note-mark {
    position: absolute;
    left: 0;
    color: var(--gray-dark-color-700);
}

.hpd-003__flow-subtitle {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
    margin: 0 0 30px 0;
    text-align: left;
}

@media (max-width: 767px) {
    .hpd-003__flow-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
}

.hpd-003__flowchart {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.hpd-003__flow-step {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 40px;
}

@media (max-width: 767px) {
    .hpd-003__flow-step {
        padding-bottom: 0;
        margin-bottom: 20px;
    }
}

.hpd-003__flow-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

@media (max-width: 767px) {
    .hpd-003__flow-wrapper {
        gap: 15px;
    }
}

.hpd-003__flow-arrow-line {
    position: absolute;
    top: 42px;
    width: 2px;
    height: calc(100% - 12px);
    background-color: var(--black-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin: 0 90px;
}

.hpd-003__flow-arrow-line::after {
    content: "↓";
    font-size: 20px;
    color: var(--black-color);
    line-height: 1;
    position: absolute;
    bottom: -10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hpd-003__flow-arrow-line.is-last {
    display: none;
}

@media (max-width: 767px) {
    .hpd-003__flow-arrow-line {
        position: absolute;
        top: 42px;
        left: 20px;
        width: 2px;
        height: calc(100% - 30px);
        margin: 0;
        background-color: var(--black-color);
    }

    .hpd-003__flow-arrow-line::after {
        position: absolute;
        bottom: -10px;
        font-size: 14px;
    }
}

.hpd-003__flow-box {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    flex: 1;
}

@media (max-width: 767px) {
    .hpd-003__flow-box {
        margin: 0;
    }
}

.hpd-003__flow-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .hpd-003__flow-content {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        position: relative;
        padding-left: 0px;
    }
}

.hpd-003__flow-item {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .hpd-003__flow-item {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .hpd-003__flow-item {
        width: 100%;
        flex-shrink: 0;
        position: relative;
    }
}

.hpd-003__flow-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-dark-color-700);
    margin: 0;
    padding: 8px 20px;
    background-color: #d2c3a8;
    border-radius: 9px;
    width: 180px;
    text-align: center;
    white-space: nowrap;
    justify-content: center;
    min-height: 40px;
    display: flex;
    align-items: center;
    border: solid 0.5px #000000;
}

.hpd-003__flow-title-building-1 {
    background-color: #33cccc;
}

.hpd-003__flow-title-building-2 {
    background-color: #ffff99;
}

.hpd-003__flow-title-building-3 {
    background-color: #ff9900;
}

.hpd-003__flow-title-building-4 {
    background-color: #ffff99;
}

.hpd-003__flow-title-building-5 {
    background-color: #ccffff;
}

.hpd-003__flow-title-house-1 {
    background-color: #ffff9a;
}

.hpd-003__flow-title-house-2 {
    background-color: #ff9b00;
}

.hpd-003__flow-title-house-3 {
    background-color: #ffff9a;
}

.hpd-003__flow-title-house-4 {
    background-color: #ccfffe;
}

.hpd-003__flow-title-realestate-1 {
    background-color: #6dc3b5;
}

.hpd-003__flow-title-realestate-2 {
    background-color: #f7f739;
}

.hpd-003__flow-title-realestate-3 {
    background-color: #ed983b;
}

.hpd-003__flow-title-realestate-4 {
    background-color: #f7f739;
}

.hpd-003__flow-title-realestate-5 {
    background-color: #9ff3ef;
}

.hpd-003__flow-title-wellness-1 {
    background-color: #9dc3e6;
}

.hpd-003__flow-title-wellness-2 {
    background-color: #fbe5d6;
}

.hpd-003__flow-title-wellness-3 {
    background-color: #f4b183;
}

.hpd-003__flow-title-wellness-4 {
    background-color: #ffcc66;
}

.hpd-003__flow-title-wellness-5 {
    background-color: #b4c7e7;
}

.hpd-003__flow-content-inner {
    flex: 1;
}

.hpd-003__flow-description {
    font-size: 14px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

@media (max-width: 767px) {
    .hpd-003__flow-description {
        font-size: 13px;
        margin-top: 0;
        width: 100%;
        padding-left: 40px;
    }
}

.hpd-003__flow-publish-title {
    color: var(--gray-dark-color-700);
    margin: 0 0 8px 0;
}

@media (max-width: 767px) {
    .hpd-003__flow-publish-title {
        margin-bottom: 10px;
        margin-top: 15px;
    }
}

.hpd-003__flow-publish-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hpd-003__flow-publish-item {
    font-size: 14px;
    color: var(--gray-dark-color-700);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .hpd-003__flow-publish-item {
        font-size: 12px;
    }
}

.hpd-003__overview-intro {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
    margin: 0 0 30px 0;
}

@media (max-width: 767px) {
    .hpd-003__overview-intro {
        font-size: 13px;
        margin-bottom: 20px;
    }
}

.hpd-003__overview-table {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .hpd-003__overview-table {
        margin-bottom: 20px;
    }
}

.hpd-003__overview-table-content {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--data-table-border-color);
    background-color: var(--white-color);
}

@media (max-width: 767px) {
  .hpd-003__overview-table-content {
    width: auto;
    min-width: 783px;
  }
}

.hpd-003__overview-label {
    padding: 12px 20px;
    background-color: var(--data-table-header-bg);
    font-size: 14px;
    color: var(--data-table-header-color);
    border: 1px solid var(--data-table-border-color);
    vertical-align: middle;
    width: 150px;
    text-align: center;
}

@media (max-width: 767px) {
    .hpd-003__overview-label {
        padding: 10px 15px;
        font-size: 13px;
        width: 120px;
    }
}

.hpd-003__overview-value {
    padding: 12px 20px;
    font-size: 14px;
    color: var(--data-table-cell-color);
    border: 1px solid var(--data-table-border-color);
    vertical-align: top;
    line-height: 1.8;
    letter-spacing: -0.5px;
}

@media (max-width: 767px) {
    .hpd-003__overview-value {
        padding: 10px 15px;
        font-size: 13px;
    }
}

.hpd-003__overview-section {
    margin-bottom: 30px;
}

.hpd-003__overview-section.is-background {
    background-color: #faebcc;
    padding: 10px 20px;
}

.hpd-003__overview-section:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .hpd-003__overview-section {
        margin-bottom: 20px;
    }
}

.hpd-003__overview-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-dark-color-700);
    margin: 0 0 15px 0;
}

@media (max-width: 767px) {
    .hpd-003__overview-section-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
}

.hpd-003__overview-text {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
    margin: 0 0 15px 0;
}

.hpd-003__overview-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .hpd-003__overview-text {
        font-size: 13px;
    }
}

.hpd-003__overview-casbee {
    margin-top: 6px;
}

.hpd-003__list-intro {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
    margin: 0 0 20px 20px;
}

@media (max-width: 767px) {
    .hpd-003__list-intro {
        font-size: 13px;
        margin-bottom: 15px;
    }
}

.hpd-003__list-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .hpd-003__list-controls {
        justify-content: flex-start;
        margin-bottom: 15px;
    }
}

.hpd-003__list-per-page {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hpd-003__list-per-page-label {
    font-size: 14px;
    color: var(--gray-dark-color-700);
}

.hpd-003__list-per-page-link {
    font-size: 14px;
    color: var(--gray-dark-color-700);
    text-decoration: none;
    padding: 2px 5px;
    transition: color 0.2s ease;
}

.hpd-003__list-per-page-separator {
    font-size: 14px;
    color: var(--gray-color);
}

.hpd-003__list-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .hpd-003__list-table-wrapper {
        margin-bottom: 20px;
    }
}

.hpd-003__list-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white-color);
}

@media (max-width: 767px) {
    .hpd-003__list-table {
        width: 850px;
    }
}

.hpd-003__list-table th {
    font-weight: 800;
}

.hpd-003__list-header {
    padding: 4px 0;
    background-color: var(--data-table-header-bg);
    font-size: 14px;
    color: var(--data-table-header-color);
    border: 1px solid var(--data-table-border-color);
    text-align: center;
    vertical-align: middle;
}

.hpd-003__list-header:first-child {
    width: 104px;
}

.hpd-003__list-header:nth-child(2) {
    width: 164px;
}

.hpd-003__list-header:nth-child(3) {
    width: 92px;
}

.hpd-003__list-header:nth-child(4) {
    width: 415px;
}

.hpd-003__list-header:nth-child(5) {
    width: 50px;
}

@media (max-width: 767px) {
    .hpd-003__list-header {
        padding: 10px 12px;
        font-size: 13px;
    }

    .hpd-003__list-header:first-child {
        width: 104px;
    }

    .hpd-003__list-header:nth-child(2) {
        width: 164px;
    }

    .hpd-003__list-header:nth-child(3) {
        width: 92px;
    }

    .hpd-003__list-header:nth-child(4) {
        width: 415px;
    }

    .hpd-003__list-header:nth-child(5) {
        width: 50px;
    }

}

.hpd-003__list-cell {
    padding: 8px;
    font-size: 14px;
    color: var(--data-table-cell-color);
    border: 1px solid var(--data-table-border-color);
    vertical-align: middle;
    line-height: 1.6;
}

.hpd-003__list-cell.is-expand {
    background-color: #cccccc;
}

.hpd-003__list-cell:last-child {
    text-align: center;
}

@media (max-width: 767px) {
    .hpd-003__list-cell {
        padding: 12px;
        font-size: 13px;
    }
}

.hpd-003__list-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hpd-003__list-detail-plus {
    font-size: 30px;
    text-align: center;
    cursor: pointer;
}

.hpd-003__list-detail-minus {
    font-size: 30px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ccc;
    margin: -8px -8px 0;
    cursor: pointer;
}

.hpd-003__list-detail-item {
    font-size: 14px;
    color: var(--gray-dark-color-700);
    line-height: 1.6;
    margin: 0;
    display: flex;
}

.hpd-003__list-detail-item:not(:last-child) {
    border-bottom: 1px solid #cccccc;
}

@media (max-width: 767px) {
    .hpd-003__list-detail-item {
        font-size: 12px;
    }
}

.hpd-003__list-detail-label {
    margin-right: 5px;
    display: inline-block;
    width: 130px;
    flex-shrink: 0;
    font-weight: 800;
}

.hpd-003__list-pdf-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.hpd-003__list-pdf-link:hover {
    opacity: 0.7;
}

.hpd-003__list-pdf-icon {
    width: 20px;
    height: auto;
    display: block;
}

.hpd-003__list-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .hpd-003__list-pagination {
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
}

.hpd-003__list-pagination-prev,
.hpd-003__list-pagination-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    text-decoration: none;
    color: var(--gray-dark-color-700);
    font-size: 16px;
    transition: all 0.2s ease;
}

.hpd-003__list-pagination-prev:hover,
.hpd-003__list-pagination-next:hover {
    background-color: #f5f5f5;
    border-color: #c0c0c0;
}

.hpd-003__list-pagination-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.hpd-003__list-pagination-item {
    flex-shrink: 0;
}

.hpd-003__list-pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    text-decoration: none;
    color: var(--gray-dark-color-700);
    font-size: 16px;
    transition: all 0.2s ease;
    color: #0066cc;
}

.hpd-003__list-pagination-link.is-active {
    color: #333;
}

.hpd-003__list-pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 14px;
    color: var(--gray-color);
}

.hpd-003__list-past {
    text-align: center;
    margin-top: 20px;
}

.hpd-003__list-past-link {
    font-size: 16px;
    color: var(--sidebar-link-color);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.hpd-003__list-past-link:hover {
    color: var(--sidebar-link-hover-color);
}

@media (max-width: 767px) {
    .hpd-003__list-past-link {
        font-size: 13px;
    }
}

.hpd-003__notes-section {
    margin-top: 40px;
    padding-top: 30px;
}

@media (max-width: 767px) {
    .hpd-003__notes-section {
        margin-top: 30px;
        padding-top: 20px;
    }
}

.hpd-003__notes-title {
    font-size: 16px;
    color: var(--gray-dark-color-700);
}

@media (max-width: 767px) {
    .hpd-003__notes-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

.hpd-003__notes-list {
    margin: 0;
}

.hpd-003__notes-item {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
    margin-bottom: 4px;
}

.hpd-003__notes-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .hpd-003__notes-item {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

.hpd-003__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    transform: rotate(90deg);
    margin-bottom: 20px;
}

.hpd-003__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gray-dark-color-700);
}

.hpd-004-1 {
    margin-top: 40px;
    min-height: 100vh;
}

.hpd-004-1__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-004-1__main {
    flex: 1;
    width: 100%;
}

.hpd-004-1__content {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    margin-bottom: 40px;
    gap: 20px;
}

@media (min-width: 1280px) {
    .hpd-004-1__content {
        flex-direction: row;
        gap: 30px;
    }
}

.hpd-004-1__footer {
    padding: 0 20px 40px;
    background-color: var(--white-color);
}

@media (max-width: 767px) {
    .hpd-004-1__footer {
        padding: 16px;
    }
}

.hpd-004-1__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hpd-004-1__link-item {
    margin-bottom: 2px;
    position: relative;
    padding-left: 1.2em;
}

.hpd-004-1__link-item:last-child {
    margin-bottom: 0;
}

.hpd-004-1__link {
    font-size: 14px;
    color: var(--sidebar-link-color);
    text-decoration: none;
    line-height: 1.6;
    display: inline-block;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    position: relative;
}

.hpd-004-1__link:hover {
    color: var(--sidebar-link-hover-color);
    text-decoration: underline;
}

.hpd-004-1__link-item::before {
    content: "・";
    position: absolute;
    top: 0px;
    left: 0px;
    margin-right: 4px;
    color: var(--gray-dark-color-700);
    font-size: 16px;
    line-height: 1.6;
    display: inline-block;
}

@media (min-width: 768px) {
    .hpd-004-1__link {
        font-size: 16px;
        letter-spacing: 1.3px;
    }
}

.hpd-004-2 {
    margin-top: 40px;
    min-height: 100vh;
}

.hpd-004-2__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-004-2__main {
    flex: 1;
    width: 100%;
    overflow: hidden;
}

.hpd-004-2__content {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    margin-bottom: 40px;
    gap: 20px;
}

@media (min-width: 1280px) {
    .hpd-004-2__content {
        flex-direction: row;
        gap: 30px;
    }
}

.hpd-005-1 {
    margin-top: 40px;
    min-height: 100vh;
}

.hpd-005-1__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-005-1__main {
    flex: 1;
    width: 100%;
}

.hpd-005-1__content {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    margin-bottom: 40px;
    gap: 20px;
}

@media (min-width: 1280px) {
    .hpd-005-1__content {
        flex-direction: row;
        gap: 30px;
    }
}

.hpd-005-1__checklists-title {
    font-size: 16px;
    margin: 16px 20px -16px;
}

.hpd-005-1__checklists-item:not(:first-child) {
    margin-top: 20px;
    overflow: hidden;
}

.hpd-005-1__checklists-item:not(:first-child) .hpd-checklist__buttons {
    gap: 14px;
}

.hpd-005-1__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
    gap: 12px;
    margin-top: 60px;
}

.hpd-005-1__pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-dark-color-700);
}

.hpd-005-2 {
    margin-top: 40px;
    min-height: 100vh;
}

.hpd-005-2__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-005-2__main {
    flex: 1;
    width: 100%;
}

.hpd-005-2__content {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    margin-bottom: 40px;
    gap: 20px;
}

@media (min-width: 1280px) {
    .hpd-005-2__content {
        flex-direction: row;
        gap: 30px;
    }
}

.hpd-005-2__breadcrumb {
    margin: 20px 0;
    border: 1px solid var(--data-table-border-color);
    border-radius: 3px;
    padding: 6px 28px;
    display: flex;
    gap: 20px;
    background-color: var(--sidebar-title-bg-color);
    font-weight: 500;
    font-size: 18px;
}

@media (max-width: 767px) {
    .hpd-005-2__breadcrumb {
        flex-wrap: wrap;
    }

    .hpd-005-2__breadcrumb-current .is-wrapped {
        margin-left: auto;
    }
}

.hpd-005-2__breadcrumb-link {
    color: var(--gray-dark-color-700);
    text-decoration: none;
}

.hpd-005-2__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
    gap: 12px;
    margin-top: 60px;
}

.hpd-005-2__pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-dark-color-700);
}

.hpd-005-2__table {
    margin: 0;
    border: 1px solid var(--data-table-border-color);
    border-radius: 3px;
    margin-bottom: 20px;
}

.hpd-005-2__table:has(+ .hpd-heading) {
    margin-bottom: 60px;
}

.hpd-005-2__table-item {
    padding: 10px 10px 10px 28px;
    display: flex;
    gap: 20px;
    align-items: start;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .hpd-005-2__table-item {
        padding: 10px 20px 20px 20px;
        flex-direction: column;
        gap: 10px;
    }
}

.hpd-005-2__table-item.is-primary {
    background-color: var(--category-table-header-bg);
}

.hpd-005-2__table-item-title {
    font-size: 16px;
}

.hpd-005-2__table-item-files {
    display: flex;
    flex-wrap: wrap;
    width: 268px;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
    gap: 8px;
}

@media (max-width: 767px) {
    .hpd-005-2__table-item-files {
        justify-content: flex-start;
    }
}

.hpd-005-2__table-item-files .hpd-005-2__table-item-files-item:only-child {
    margin-left: auto;
}

@media (max-width: 767px) {
    .hpd-005-2__table-item-files .hpd-005-2__table-item-files-item:only-child {
        margin-left: 0;
        margin-right: auto;
    }
}

.hpd-005-2__table-item-files-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--data-table-border-color);
    border-radius: 3px;
    padding: 0 4px;
    width: 84px;
}

.hpd-005-2__table-item-files-item:hover {
    background-color: #f5f5f5;
}

.hpd-005-2__table-item-files-item-icon {
    width: 14px;
    height: 14px;
}

.hpd-005-2__table-item-files-item-name {
    font-size: 12px;
    color: var(--gray-dark-color-700);
}

.hpd-005-2__table-item:not(:first-child) {
    border-top: 1px solid var(--data-table-border-color);
}

.hpd-006 {
    margin-top: 40px;
    min-height: 100vh;
}

.hpd-006__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-006__main {
    flex: 1;
    width: 100%;
    overflow: hidden;
}

.hpd-006__content {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    margin-bottom: 40px;
    gap: 20px;
}

@media (min-width: 1280px) {
    .hpd-006__content {
        flex-direction: row;
        gap: 30px;
    }
}

.hpd-006__section {
    width: 100%;
}

.hpd-006__section .hpd-category-title {
    margin: 20px 0 0 0;
}

.hpd-006__section .hpd-jis-table {
    margin: 20px 0;
}

.hpd-007 {
    margin-top: 40px;
    min-height: 100vh;
}

.hpd-007__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-007__main {
    flex: 1;
    width: 100%;
    overflow: hidden;
}

.hpd-007__content {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    margin-bottom: 40px;
    gap: 20px;
}

@media (min-width: 1280px) {
    .hpd-007__content {
        flex-direction: row;
        gap: 30px;
    }
}

.hpd-008 {
    margin-top: 40px;
    min-height: 100vh;
}

.hpd-008__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-008__main {
    flex: 1;
    width: 100%;
}

.hpd-008__content {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    margin-bottom: 40px;
    gap: 20px;
}

@media (min-width: 1280px) {
    .hpd-008__content {
        flex-direction: row;
        gap: 30px;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-008__content {
        margin-top: 16px;
    }
}

.hpd-008__text {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
    margin: 10px 0 20px;
}

@media (max-width: 767px) {
    .hpd-008__text {
        font-size: 13px;
    }
}

.hpd-008__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    transform: rotate(90deg);
}

.hpd-008__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gray-dark-color-700);
}

.hpd-009 {
    margin-top: 40px;
    margin-bottom: 80px;
    min-height: 100vh;
}

.hpd-009__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-009__main {
    flex: 1;
    width: 100%;
    overflow: hidden;
}

.hpd-009__content {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    gap: 20px;
}

@media (min-width: 1280px) {
    .hpd-009__content {
        margin: 20px 0 30px;
        flex-direction: row;
        gap: 30px;
    }
}

.hpd-009__heading {
    margin-bottom: 20px;
    height: 40px;
    border-radius: 3px;
    background-color: var(--category-table-header-bg);
    border: 1px solid var(--sidebar-border-color);
    display: flex;
    align-items: center;
}

.hpd-009__title {
    font-size: 18px;
    color: var(--gray-dark-color-700);
    padding-left: 20px;
}

.hpd-010 {
    margin-top: 40px;
    margin-bottom: 80px;
    min-height: 100vh;
}

.hpd-010__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-010__main {
    flex: 1;
    width: 100%;
}

.hpd-010__content {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    gap: 20px;
}

@media (min-width: 1280px) {
    .hpd-010__content {
        margin: 20px 0 30px;
        flex-direction: row;
        gap: 30px;
    }
}

.hpd-010__heading {
    margin-bottom: 20px;
    height: 40px;
    border-radius: 3px;
    background-color: var(--category-table-header-bg);
    border: 1px solid var(--sidebar-border-color);
    display: flex;
    align-items: center;
}

.hpd-010__title {
    font-size: 18px;
    color: var(--gray-dark-color-700);
    padding-left: 20px;
}

.hpd-010__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    transform: rotate(90deg);
}

.hpd-010__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gray-dark-color-700);
}

.hpd-about {
    margin-top: 0;
    min-height: 100vh;
}

.hpd-about__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-about__main {
    flex: 1;
    width: 100%;
}

.hpd-about__content {
    display: flex;
    flex-direction: column;
    margin: 0 0 0;
}

.hpd-about__intro {
    max-width: 1312px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hpd-about__title {
    font-size: 40px;
    font-weight: 500;
    color: var(--about-title-color);
    text-align: center;
    margin-bottom: 38px;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-about__title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hpd-about__title {
        font-size: 24px;
    }
}

.hpd-about__body {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .hpd-about__body {
        flex-direction: row;
        gap: 20px;
    }

    .hpd-about__body .hpd-about__image-box {
        align-self: flex-start;
    }
}

@media (min-width: 1280px) {
    .hpd-about__body {
        gap: 40px;
    }
}

.hpd-about__text-content {
    flex: 1;
    font-size: 16px;
}

.hpd-about__paragraph {
    font-size: 16px;
    line-height: 2;
    color: var(--about-text-color);
    margin-bottom: 30px;
    text-align: justify;
}

.hpd-about__paragraph:last-child {
    margin-bottom: 0;
}

.hpd-about__image-box {
    flex-shrink: 0;
    width: 100%;
    max-width: 300px;
    text-align: center;
    align-self: center;
}

@media (min-width: 768px) {
    .hpd-about__image-box {
        width: 250px;
        margin: 0 auto;
    }
}

.hpd-about__pamphlet {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.hpd-about__image-caption {
    font-size: 16px;
    color: var(--about-text-color);
    margin: 0;
}

.hpd-about__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .hpd-about__buttons {
        flex-direction: row;
        gap: 30px;
    }
}

.hpd-about__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: var(--about-button-bg);
    color: var(--about-button-text);
    text-decoration: none;
    border-radius: 20px;
    font-size: 24px;
    font-weight: 500;
    min-width: 280px;
    transition: all 0.3s ease;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
    flex: 1;
    width: 100%;
}

@media (max-width: 767px) {
    .hpd-about__button {
        font-size: 20px;
    }
}

.hpd-about__button:hover {
    background-color: var(--about-button-hover-bg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.hpd-about__button span {
    flex: 1;
}

.hpd-about__button-icon {
    margin-left: 10px;
    color: var(--about-button-text);
}

.hpd-about__mission {
    padding: 50px 0;
}

@media (min-width: 768px) {
    .hpd-about__mission {
        padding: 60px 20px;
    }
}

.hpd-about__mission-container {
    max-width: 1312px;
    padding: 0 20px;
    margin: 0 auto;
}

.hpd-about__mission-title {
    font-size: 40px;
    font-weight: 500;
    color: var(--about-title-color);
    text-align: center;
    margin: 40px 0 60px;
    letter-spacing: 0.08em;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-about__mission-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hpd-about__mission-title {
        font-size: 24px;
        overflow-wrap: break-word;
        word-break: keep-all;
        margin: 15px 0 30px 0;
    }
}

.hpd-about__mission-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
    color: var(--about-text-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hpd-about__mission-section {
    background-color: var(--white-color);
    padding: 25px 20px 65px;
    border-radius: 4px;
    max-width: 850px;
    margin: 0 auto;
}

.hpd-about__mission-heading {
    font-size: 20px;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
    margin-top: 20px;
    color: var(--about-text-color);
}

.hpd-about__mission-heading.is-secondary {
    padding-top: 30px;
}

.hpd-about__mission-heading-icon {
    color: #ccc;
    margin-right: 4px;
}

.hpd-about__mission-text {
    font-size: 18px;
    line-height: 1.9;
    margin: 0;
    text-align: justify;
}

.hpd-about__mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hpd-about__mission-item {
    font-size: 18px;
    line-height: 1.9;
    color: var(--about-text-color);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    text-align: justify;
}

.hpd-about__mission-item:last-child {
    margin-bottom: 0;
}

.hpd-about__mission-item:before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--about-text-color);
    font-weight: bold;
}

.hpd-about__mission-message {
    font-size: 18px;
    line-height: 1.9;
    color: var(--about-text-color);
    margin: 0;
}

.hpd-about__services {
    margin: 30px auto 0;
    padding: 65px 0;
    background-color: #f5f5f5;
}

.hpd-about__services-title {
    font-size: 40px;
    font-weight: 500;
    color: var(--about-title-color);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-about__services-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hpd-about__services-title {
        font-size: 32px;
    }
}

.hpd-about__accordion {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hpd-about__accordion-item {
    border: 1px solid #ddd;
    overflow: hidden;
    background-color: var(--white-color);
    transition: box-shadow 0.3s ease;
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.3);
}

.hpd-about__accordion-item.is-active {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hpd-about__accordion-item.is-active .hpd-about__accordion-icon {
    transform: none;
    position: relative;
}

.hpd-about__accordion-item.is-active .hpd-about__accordion-icon::before {
    content: "";
    width: 14px;
    height: 1.8px;
    background-color: var(--gray-color-100);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hpd-about__accordion-item.is-active .hpd-about__accordion-content {
    opacity: 1;
    padding: 40px 30px 20px 30px;
    max-height: 3000px;
}

.hpd-about__accordion-item.is-active .hpd-about__accordion-content .hpd-about__accordion-content-inner {
    display: flex;
    gap: 30px;
}

.hpd-about__accordion-item[data-color=red].is-active .hpd-about__accordion-header {
    background-color: hsl(0, 65%, 95%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hpd-about__accordion-item[data-color=blue].is-active .hpd-about__accordion-header {
    background-color: #e8f3fb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hpd-about__accordion-item[data-color=orange].is-active .hpd-about__accordion-header {
    background-color: #fef5e8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hpd-about__accordion-item[data-color=green].is-active .hpd-about__accordion-header {
    background-color: #f0f8ed;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hpd-about__accordion-item[data-color=teal].is-active .hpd-about__accordion-header {
    background-color: #edf7f7;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hpd-about__accordion-item[data-color=purple].is-active .hpd-about__accordion-header {
    background-color: #f5f0f5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hpd-about__accordion-item[data-color=yellow].is-active .hpd-about__accordion-header {
    background-color: #fdf7dd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hpd-about__accordion-item[data-color=red] .hpd-about__accordion-header {
    border-left: 15px solid var(--accordion-red);
}

.hpd-about__accordion-item[data-color=blue] .hpd-about__accordion-header {
    border-left: 15px solid var(--accordion-blue);
}

.hpd-about__accordion-item[data-color=orange] .hpd-about__accordion-header {
    border-left: 15px solid var(--accordion-orange);
}

.hpd-about__accordion-item[data-color=green] .hpd-about__accordion-header {
    border-left: 15px solid var(--accordion-green);
}

.hpd-about__accordion-item[data-color=teal] .hpd-about__accordion-header {
    border-left: 15px solid var(--accordion-teal);
}

.hpd-about__accordion-item[data-color=purple] .hpd-about__accordion-header {
    border-left: 15px solid var(--accordion-purple);
}

.hpd-about__accordion-item[data-color=yellow] .hpd-about__accordion-header {
    border-left: 15px solid var(--accordion-yellow);
}

.hpd-about__accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

@media (max-width: 767px) {
    .hpd-about__accordion-header {
        position: relative;
    }
}

.hpd-about__accordion-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--about-text-color);
    flex: 1;
    letter-spacing: 0.02em;
}

@media (max-width: 767px) {
    .hpd-about__accordion-title {
        font-size: 18px;
        letter-spacing: 0;
    }
}

.hpd-about__accordion-icon {
    font-size: 30px;
    font-weight: 300;
    color: var(--gray-color-100);
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 20px;
    font-size: 1px;
}

@media (max-width: 767px) {
    .hpd-about__accordion-icon {
        margin-left: 10px;
    }
}

.hpd-about__accordion-icon::before {
    content: "+";
    font-size: 30px;
    font-weight: 300;
    display: block;
}

@media (max-width: 767px) {
    .hpd-about__accordion-icon::before {
        top: -2px;
        position: absolute;
    }
}

.hpd-about__accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 30px;
}

.hpd-about__accordion-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--about-text-color);
    margin-bottom: 10px;
    text-align: justify;
}

.hpd-about__accordion-content p:last-child {
    margin-bottom: 0;
}

.hpd-about__accordion-content-dp{
    width: 100%;
    text-align: right;
}

.hpd-about__accordion-dp-button{
    width: 116px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--white-color);
    border-radius: 16px;
    padding: 4px 28px 4px 8px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    text-decoration: none;
}

.hpd-about__accordion-dp-button span{
    font-size: 10px;
    position: absolute;
    top: 5px;
    right: 10px;
}

.hpd-about__accordion-dp-1{
    background-color: var(--accordion-red);
}

.hpd-about__accordion-dp-2{
    background-color: var(--accordion-blue);
}

.hpd-about__accordion-dp-3{
    background-color: var(--accordion-orange);
}

.hpd-about__accordion-dp-4{
    background-color: var(--accordion-green);
}

.hpd-about__accordion-dp-5{
    background-color: var(--accordion-teal);
}

.hpd-about__accordion-dp-6{
    background-color: var(--accordion-purple);
}

.hpd-about__accordion-dp-7{
    background-color: var(--accordion-yellow);
}

.hpd-about__accordion-section {
    margin-bottom: 30px;
}

.hpd-about__accordion-section.is-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 1280px) {
    .hpd-about__accordion-section.is-row {
        flex-direction: row;
    }
}

.hpd-about__accordion-section-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--accordion-red);
    background-color: #fbecec;
    padding: 4px 20px;
    margin-bottom: 20px;
    border-radius: 2px;
    border-bottom: 1px solid var(--gray-color-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hpd-about__accordion-section-title span:first-child {
    flex: 0 0 auto;
}

.hpd-about__accordion-section-title span:last-child {
    flex: 0 0 auto;
    margin-left: 20px;
    font-size: 14px;
    color: var(--about-text-color);
    white-space: nowrap;
}

@media (max-width: 767px) {
    .hpd-about__accordion-section-title {
        flex-direction: column;
        align-items: stretch;
    }

    .hpd-about__accordion-section-title span:first-child {
        text-align: left;
    }

    .hpd-about__accordion-section-title span:last-child {
        margin-left: 0;
        margin-top: 8px;
        text-align: right;
        white-space: normal;
    }
}

.hpd-about__accordion-section-title.blue {
    color: var(--accordion-blue);
    background-color: #e8f3fb;
}

.hpd-about__accordion-section-title.orange {
    color: var(--accordion-orange);
    background-color: #fef5e8;
}

.hpd-about__accordion-section-title.green {
    color: var(--accordion-green);
    background-color: #f0f8ed;
}

.hpd-about__accordion-section-title.teal {
    color: var(--accordion-teal);
    background-color: #edf7f7;
}

.hpd-about__accordion-section-title.purple {
    color: var(--accordion-purple);
    background-color: #f5f0f5;
}

.hpd-about__accordion-section-body {
    display: block;
    flex-grow: 1;
}

.hpd-about__accordion-section-body.teal {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .hpd-about__accordion-section-body.teal {
        flex-direction: row;
        gap: 40px;
    }
}

.hpd-about__accordion-section-content {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1200px) {
    .hpd-about__accordion-section-content.is-row {
        flex-direction: row;
        gap: 30px;
    }
}

.hpd-about__accordion-image-left {
    flex-shrink: 0;
    width: 200px;
}

@media (max-width: 1279px) {
    .hpd-about__accordion-image-left {
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .hpd-about__accordion-image-left {
        width: 350px;
    }
}

.hpd-about__accordion-image-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hpd-about__accordion-text {
    flex: 1;
}

.hpd-about__accordion-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--about-text-color);
    margin: 0;
    text-align: justify;
}

.hpd-about__accordion-image-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

@media (max-width: 1279px) {
    .hpd-about__accordion-image-right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .hpd-about__accordion-image-right {
        flex-direction: row;
        gap: 20px;
    }
}

.hpd-about__accordion-products {
    text-align: center;
    flex: 1;
}

@media (max-width: 1279px) {
    .hpd-about__accordion-products {
        flex: 0 0 auto;
    }
}

.hpd-about__accordion-products img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.hpd-about__accordion-product-caption p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--about-text-color);
    margin: 0;
    text-align: center;
}

.hpd-about__accordion-product-note {
    font-size: 12px !important;
}

.hpd-about__accordion-mark {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 auto;
}

.hpd-about__accordion-mark img {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 8px;
}

.hpd-about__accordion-mark-caption {
    font-size: 12px !important;
    line-height: 1.6;
    color: var(--about-text-color);
    margin: 0;
    text-align: center;
}

.hpd-about__accordion-section-text {
    font-size: 14px;
    line-height: 1.9;
    color: var(--about-text-color);
    margin: 0;
    text-align: justify;
    letter-spacing: 1px;
}

.hpd-about__accordion-images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
    margin-left: 40px;
    margin-right: 40px;
}

@media (min-width: 768px) {
    .hpd-about__accordion-images-grid {
        grid-template-columns: repeat(3, 180px);
        gap: 20px;
        margin: 15px auto 0;
    }
}

.hpd-about__accordion-grid-item {
    text-align: center;
}

.hpd-about__accordion-grid-item img {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 8px;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .hpd-about__accordion-grid-item img {
        max-width: 100%;
    }
}

.hpd-about__accordion-grid-caption {
    font-size: 12px !important;
    line-height: 1.6;
    color: var(--about-text-color);
    margin: 0;
    text-align: center !important;
}

.hpd-about__accordion-subsection {
    margin-bottom: 20px;
}

.hpd-about__accordion-subsection:last-child {
    margin-bottom: 0;
}

.hpd-about__accordion-subsection-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--about-text-color);
    margin-bottom: 10px;
}

.hpd-about__accordion-text-content {
    flex: 1;
}

.hpd-about__accordion-content-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 1200px) {
    .hpd-about__accordion-content-inner {
        flex-direction: row;
    }
}

.hpd-about__accordion-image-single {
    text-align: center;
    flex-shrink: 0;
}

.hpd-about__accordion-image-single.purple img {
    margin-top: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.hpd-about__accordion-image-single img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto 5px;
    object-fit: cover;
}

.hpd-about__accordion-image-single.less img {
    margin: 0 5px 5px auto;
    max-width: 210px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.hpd-about__accordion-image-caption {
    font-size: 13px !important;
    line-height: 1.6;
    color: var(--about-text-color) !important;
    margin: 0 !important;
    text-align: center !important;
}

.hpd-about__accordion-two-columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .hpd-about__accordion-two-columns {
        flex-direction: row;
        gap: 20px;
    }
}

.hpd-about__accordion-column {
    flex: 1;
}

.hpd-about__accordion-column:first-child {
    flex: 0 0 45%;
}

.hpd-about__accordion-column:last-child {
    flex: 1;
}

.hpd-about__accordion-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
    .hpd-about__accordion-list {
        grid-template-columns: 1fr;
        letter-spacing: -0.05em;
    }
}

.hpd-about__accordion-list li {
    font-size: 16px;
    line-height: 2;
    color: var(--about-text-color);
    margin-bottom: 8px;
}

.hpd-about__accordion-list li:last-child {
    margin-bottom: 0;
}

.hpd-about__accordion-bels-image {
    text-align: center;
    border-radius: 4px;
}

.hpd-about__accordion-bels-image img {
    width: 100%;
    max-width: 225px;
    height: auto;
    display: block;
    margin: 0 auto 0;
}

.hpd-about__accordion-two-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

@media (min-width: 968px) {
    .hpd-about__accordion-two-sections {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 50px;
    }
}

.hpd-about__accordion-half-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 968px) {
    .hpd-about__accordion-half-section {
        flex-basis: calc(50% - 25px);
        min-width: calc(50% - 25px);
    }
}

@media (max-width: 767px) {
    .hpd-about__flex-order-1{
        order: 1;
    }
    .hpd-about__flex-order-2{
        order: 2;
    }
    .hpd-about__flex-order-3{
        order: 3;
    }
    .hpd-about__flex-order-4{
        order: 4;
    }
}

.hpd-about__accordion-half-section .hpd-about__accordion-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hpd-about__accordion-half-section .hpd-about__accordion-section-text {
    margin-bottom: 10px;
}

.hpd-about__accordion-section-text.bottom-text {
    align-self: center;
    margin-top: auto;
    font-size: 12px;
}

.hpd-about__accordion-half-section .hpd-about__accordion-section-text:last-of-type {
    margin-bottom: 0;
}

.hpd-about__accordion-half-section .hpd-about__accordion-image-single {
    margin-top: auto;
}

.hpd-about__accordion-custom-section {
    max-width: 870px;
}

.hpd-about__accordion-section-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

@media (min-width: 1200px) {
    .hpd-about__accordion-section-main {
        flex-direction: row;
        gap: 40px;
    }
}

.hpd-about__accordion-section-main-item .hpd-about__accordion-text {
    margin-bottom: 30px;
}

.hpd-about__accordion-section-main-item .hpd-about__accordion-text:last-of-type {
    margin-bottom: 0;
}

.hpd-foundation {
    margin-top: 0;
    min-height: 100vh;
    padding-bottom: 80px;
}

.hpd-foundation__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-foundation__title {
    font-size: 28px;
    font-weight: 600;
    color: var(--gray-color);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    padding: 40px;
}

.hpd-foundation__content {
    background-color: #efefef;
    padding: 80px 0;
}

@media (max-width: 767px) {
    .hpd-foundation__title {
        padding: 10px;
    }

    .hpd-foundation__content {
        padding: 40px 0;
    }
}

@media (max-width: 992px) {
    .hpd-foundation__title {
        padding: 20px;
    }

    .hpd-foundation__content {
        padding: 60px 0;
    }
}

.hpd-foundation__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .hpd-foundation__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1280px) {
    .hpd-foundation__cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 0 40px;
    }
}

.hpd-foundation__card {
    text-decoration: none;
    background-color: var(--white-color);
    padding: 25px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    min-height: 120px;
    border: 1px solid #e0e0e0;
}

@media (min-width: 768px) {
    .hpd-foundation__card {
        padding: 16px 25px;
        gap: 20px;
        min-height: 150px;
    }
}

.hpd-foundation__card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.hpd-foundation__card.is-download {
    cursor: pointer;
}

.hpd-foundation__card-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .hpd-foundation__card-icon {
        width: 70px;
        height: 110px;
    }
}

.hpd-foundation__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hpd-foundation__card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.hpd-foundation__card-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-dark-color-700);
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.01em;
    text-align: center;
}

.hpd-foundation__card-title-br-sp{
    display: none;
}

@media (max-width: 767px) {
    .hpd-foundation__card-title-br-sp{
        display: inline;
    }
}

.hpd-foundation__card-action {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hpd-foundation__card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hpd-main-1 {
    min-height: 100vh;
}

.hpd-main-1__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 12px;
}

.hpd-main-1__content {
    padding: 60px 0 0;
}

@media (max-width: 767px) {
    .hpd-main-1__container {
        padding: 0 16px;
    }

    .hpd-main-1__content {
        padding: 40px 0 0 0;
    }
}

.hpd-main-1__slider-section {
    margin-top: 60px;
}

@media (max-width: 767px) {
    .hpd-main-1__slider-section {
        margin-top: 40px;
    }
}

.hpd-main-1__contact-section {
    margin-top: 80px;
}

@media (max-width: 767px) {
    .hpd-main-1__contact-section {
        margin-top: 40px;
    }
}

.hpd-main-1__section {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .hpd-main-1__section {
        margin-bottom: 20px;
    }
}

.hpd-main-1__section--last {
    margin-bottom: 90px;
}

.hpd-main-1__section-body {
    padding: 40px 20px;
}

@media (min-width: 768px) {
    .hpd-main-1__section-body {
        padding: 40px 60px 20px;
    }
}

@media (max-width: 767px) {
    .hpd-main-1__section-body {
        padding-bottom: 0px;
    }
}

.hpd-main-1__columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (max-width: 767px) {
    .hpd-main-1__columns {
        gap: 25px;
        padding-bottom: 15px;
    }

    .hpd-main-1__columns__sgap {
        gap: 8px;
    }
}

@media (min-width: 768px) {
    .hpd-main-1__columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}

.hpd-main-1__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 767px) {
    .hpd-main-1__column {
        gap: 25px;
    }
}

.hpd-main-1__group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hpd-main-1__heading {
    font-size: 19px;
    font-weight: 600;
    color: var(--gray-dark-color-700);
    margin: 0;
    padding-left: 24px;
    padding-bottom: 4px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-color);
}

.hpd-main-1__heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-55%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--accordion-red);
}

@media (max-width: 767px) {
    .hpd-main-1__heading {
        font-size: 15px;
        padding-left: 18px;
    }

    .hpd-main-1__heading::before {
        width: 7px;
        height: 7px;
    }
}

.hpd-main-1__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hpd-main-1__item {
    margin: 0;
    padding: 0;
}

.hpd-main-1__link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 19px;
    color: var(--gray-dark-color-700);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.2s ease;
    padding: 2px 0;
}

.hpd-main-1__link::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #e68082;
    border-top: 2px solid #e68082;
    transform: rotate(45deg);
    margin-right: 8px;
    flex-shrink: 0;
}

.hpd-main-1__link:hover {
    color: var(--accordion-red);
    text-decoration: underline;
}

.hpd-main-1__link.has-pdf .hpd-main-1__text {
    flex: 1;
}

@media (max-width: 767px) {
    .hpd-main-1__link {
        font-size: 14px;
    }
}

.hpd-main-1__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hpd-main-1__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hpd-main-1__text {
    display: inline;
}

.hpd-main-2 {
    min-height: 100vh;
}

.hpd-main-2__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-main-2__content {
    padding: 60px 0 0;
}

@media (max-width: 767px) {
    .hpd-main-2__content {
        padding: 40px 0 0;
    }
}

.hpd-main-2__section {
    margin-bottom: 30px;
}

.hpd-main-2__section--last {
    margin-bottom: 90px;
}

@media (max-width: 767px) {
    .hpd-main-2__section {
        margin-bottom: 20px;
    }
}

.hpd-main-2__section-body {
    padding: 40px 20px;
}

@media (min-width: 768px) {
    .hpd-main-2__section-body {
        padding: 20px 60px;
    }
}

@media (max-width: 767px) {
    .hpd-main-2__section-body {
        padding-bottom: 0px;
    }
}

.hpd-main-2__columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (max-width: 767px) {
    .hpd-main-2__columns {
        gap: 8px;
    }
}

@media (min-width: 768px) {
    .hpd-main-2__columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}

.hpd-main-2__column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 767px) {
    .hpd-main-2__column {
        gap: 25px;
    }
}

.hpd-main-2__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hpd-main-2__item {
    margin: 0;
    padding: 0;
}

.hpd-main-2__link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 19px;
    color: var(--gray-dark-color-700);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.2s ease;
    padding: 2px 0;
}

.hpd-main-2__link::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--arrow-bg-blue);
    border-top: 2px solid var(--arrow-bg-blue);
    transform: rotate(45deg);
    margin-right: 8px;
    flex-shrink: 0;
}

.hpd-main-2__link:hover {
    color: var(--accordion-blue);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .hpd-main-2__link {
        font-size: 14px;
    }
}

.hpd-main-2__slider-section {
    margin-top: 60px;
}

@media (max-width: 767px) {
    .hpd-main-2__slider-section {
        margin-top: 40px;
    }
}

.hpd-main-2__contact-section {
    margin-top: 80px;
}

@media (max-width: 767px) {
    .hpd-main-2__contact-section {
        margin-top: 40px;
    }
}

.hpd-main-3 {
    min-height: 100vh;
}

.hpd-main-3__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-main-3__content {
    padding: 60px 0 0;
}

@media (max-width: 767px) {
    .hpd-main-3__content {
        padding: 40px 0 0;
    }
}

.hpd-main-3__section {
    margin-bottom: 30px;
}

.hpd-main-3__section--last {
    margin-bottom: 90px;
}

@media (max-width: 767px) {
    .hpd-main-3__section {
        margin-bottom: 30px;
    }
}

.hpd-main-3__section-body {
    padding: 40px 20px;
}

@media (max-width: 767px) {
    .hpd-main-3__section-body {
        padding-bottom: 0px;
    }
}

@media (min-width: 768px) {
    .hpd-main-3__section-body {
        padding: 20px 60px;
    }
}

.hpd-main-3__columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (max-width: 767px) {
    .hpd-main-3__columns {
        gap: 8px;
    }
}

@media (min-width: 768px) {
    .hpd-main-3__columns {
        grid-template-columns: 1.2fr 1fr;
        gap: 55px;
    }
}

.hpd-main-3__column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 767px) {
    .hpd-main-3__column {
        gap: 25px;
    }
}

.hpd-main-3__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hpd-main-3__item {
    margin: 0;
    padding: 0;
}

.hpd-main-3__link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 19px;
    color: var(--gray-dark-color-700);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.2s ease;
    padding: 2px 0;
}

.hpd-main-3__link::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--arrow-bg-orange);
    border-top: 2px solid var(--arrow-bg-orange);
    transform: rotate(45deg);
    margin-right: 8px;
    flex-shrink: 0;
}

.hpd-main-3__link:hover {
    color: var(--accordion-orange);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .hpd-main-3__link {
        font-size: 14px;
    }
}

.hpd-main-3__slider-section {
    margin-top: 60px;
}

@media (max-width: 767px) {
    .hpd-main-3__slider-section {
        margin-top: 40px;
    }
}

.hpd-main-3__contact-section {
    margin-top: 80px;
}

@media (max-width: 767px) {
    .hpd-main-3__contact-section {
        margin-top: 40px;
    }
}

.hpd-main-4 {
    min-height: 100vh;
}

.hpd-main-4__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-main-4__content {
    padding: 60px 0 0;
}

@media (max-width: 767px) {
    .hpd-main-4__content {
        padding: 40px 0 0;
    }
}

.hpd-main-4__section {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .hpd-main-4__section {
        margin-bottom: 20px;
    }
}

.hpd-main-4__section--last {
    margin-bottom: 90px;
}

.hpd-main-4__section-body {
    padding: 40px 20px;
}

@media (min-width: 768px) {
    .hpd-main-4__section-body {
        padding: 20px 60px;
    }
}

@media (max-width: 767px) {
    .hpd-main-4__section-body {
        padding-bottom: 0px;
    }
}

.hpd-main-4__columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (max-width: 767px) {
    .hpd-main-4__columns {
        gap: 8px;
    }
}

.hpd-main-4__columns.is-full {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .hpd-main-4__columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}

.hpd-main-4__column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 767px) {
    .hpd-main-4__column {
        gap: 25px;
    }
}

.hpd-main-4__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hpd-main-4__item {
    margin: 0;
    padding: 0;
}

.hpd-main-4__link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 19px;
    color: var(--gray-dark-color-700);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.2s ease;
    padding: 2px 0;
}

.hpd-main-4__link::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--arrow-bg-teal);
    border-top: 2px solid var(--arrow-bg-teal);
    transform: rotate(45deg);
    margin-right: 8px;
    flex-shrink: 0;
}

.hpd-main-4__link:hover {
    color: var(--accordion-teal);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .hpd-main-4__link {
        font-size: 14px;
    }
}

.hpd-main-4__slider-section {
    margin-top: 60px;
}

@media (max-width: 767px) {
    .hpd-main-4__slider-section {
        margin-top: 40px;
    }
}

.hpd-main-4__contact-section {
    margin-top: 80px;
}

@media (max-width: 767px) {
    .hpd-main-4__contact-section {
        margin-top: 40px;
    }
}

.hpd-main-4__logo {
    margin-top: 40px;
    text-align: center;
}

@media (min-width: 1280px) {
    .hpd-main-4__logo {
        margin-top: 80px;
    }
}

.hpd-main-4__logo img {
    width: 255px;
    object-fit: cover;
    margin: 0 auto;
}

.hpd-main-5 {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1279px) {
    .hpd-main-5 {
        min-height: 70vh;
    }
}

.hpd-main-5__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

.hpd-main-5__content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    min-height: 360px;
}

@media (max-width: 767px) {
    .hpd-main-5__content {
        padding: 0 0 0;
        min-height: 160px;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-main-5__content {
        flex-grow: 0;
        padding: 0 0 0;
        min-height: 240px;
    }
}

.hpd-main-5__section {
    display: flex;
    flex-direction: column;
    font-size: 24px;
    gap: 24px;
}

@media (min-width: 768px) {
    .hpd-main-5__section {
        flex-direction: row;
        justify-content: space-around;
    }
}

.hpd-main-5__contact-section {
    margin-top: auto;
}

.hpd-main-5__section-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    color: var(--gray-dark-color-700);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.2s ease;
    padding: 2px 0;
}

.hpd-main-5__section-link::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--arrow-bg-purple);
    border-top: 2px solid var(--arrow-bg-purple);
    transform: rotate(45deg);
    margin-right: 8px;
    flex-shrink: 0;
}

.hpd-main-5__section-link:hover {
    color: var(--accordion-purple);
    text-decoration: underline;
}

.hpd-main-5__section-link span {
    font-size: 24px;
    font-weight: 450;
}

.hpd-main-6__section-link::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--arrow-bg-yellow);
    border-top: 2px solid var(--arrow-bg-yellow);
    transform: rotate(45deg);
    margin-right: 8px;
    flex-shrink: 0;
}

.hpd-main-6__section-link:hover {
    color: var(--accordion-yellow);
    text-decoration: underline;
}

.hpd-main-6 {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1279px) {
    .hpd-main-6 {
        min-height: 70vh;
    }
}

.hpd-main-6__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

.hpd-main-6__content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    min-height: 360px;
}

@media (max-width: 767px) {
    .hpd-main-6__content {
        padding: 0 0 0;
        min-height: 160px;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-main-6__content {
        flex-grow: 0;
        padding: 0 0 0;
        min-height: 240px;
    }
}

.hpd-main-6__section {
    display: flex;
    flex-direction: column;
    font-size: 24px;
    gap: 24px;
}

@media (min-width: 768px) {
    .hpd-main-6__section {
        flex-direction: row;
        justify-content: space-around;
    }
}

.hpd-main-6__contact-section {
    margin-top: auto;
}

.hpd-main-6__section-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    color: var(--gray-dark-color-700);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.2s ease;
    padding: 2px 0;
}

.hpd-main-6__section-link::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--arrow-bg-yellow);
    border-top: 2px solid var(--arrow-bg-yellow);
    transform: rotate(45deg);
    margin-right: 8px;
    flex-shrink: 0;
}

.hpd-main-6__section-link:hover {
    color: var(--accordion-yellow);
    text-decoration: underline;
}

.hpd-main-6__section-link span {
    font-size: 24px;
    font-weight: 450;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-main-5__section-link span {
        font-size: 18px;
    }

    .hpd-main-6__section-link span {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .hpd-main-5__section-link span {
        font-size: 15px;
    }

    .hpd-main-6__section-link span {
        font-size: 15px;
    }
}

.hpd-mail-form__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-mail-form__wrapper {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-mail-form__inner {
    background-color: var(--white-color);
}

@media (max-width: 767px) {
    .hpd-mail-form__inner {
        padding: 30px 25px;
    }
}

.hpd-mail-form__content {
    padding: 60px 0;
    background-color: #fee7dc;
}

@media (max-width: 767px) {
    .hpd-mail-form__content {
        padding: 30px 0;
    }
}

.hpd-mail-form__header {
    background-color: #716769;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 40px;
}

@media (max-width: 767px) {
    .hpd-mail-form__header {
        padding: 20px 25px;
        gap: 15px;
    }
}

.hpd-mail-form__icon {
    flex-shrink: 0;
}

.hpd-mail-form__title {
    font-size: 24px;
    color: var(--white-color);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 767px) {
    .hpd-mail-form__title {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .hpd-mail-form__title br {
        display: none;
    }
}

.hpd-mail-form__info {
    background-color: var(--white-color);
    padding: 30px 35px;
    max-width: 820px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .hpd-mail-form__info {
        padding: 20px 25px;
    }
}

.hpd-mail-form__info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hpd-mail-form__info-item {
    font-size: 15px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
    letter-spacing: -1px;
}

@media (max-width: 767px) {
    .hpd-mail-form__info-item {
        font-size: 13px;
    }
}

.hpd-mail-form__form {
    background-color: var(--white-color);
    padding: 0 0 50px;
    max-width: 820px;
    margin: 0 auto;
}

/* @media (max-width: 767px) {
    .hpd-mail-form__form {
        padding: 30px 25px;
    }
} */

.hpd-mail-form__field {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
    position: relative;
    padding: 0 25px;
}

.hpd-mail-form__field:last-of-type {
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .hpd-mail-form__field {
        flex-direction: row;
        padding-top: 40px;
        border-top: 1px solid #b6aea8;
    }
}

.hpd-mail-form__label {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 12px; */
    width: 100%;
}

@media (min-width: 768px) {
    .hpd-mail-form__label {
        max-width: 250px;
    }
}

.hpd-mail-form__label-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-dark-color-700);
}

@media (max-width: 767px) {
    .hpd-mail-form__label-text {
        font-size: 15px;
    }
}

.hpd-mail-form__required {
    background-color: #fe100a;
    color: var(--white-color);
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
}

.hpd-mail-form__input-container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hpd-mail-form__input {
    width: 100%;
    padding: 8px 16px;
    font-size: 15px;
    border: 1px solid var(--input-border-gray);
    transition: border-color 0.2s ease;
}

.hpd-mail-form__input::placeholder {
    color: #aaa;
}

.hpd-mail-form__input:focus {
    outline: none;
    border-color: #fe100a;
}

@media (max-width: 767px) {
    .hpd-mail-form__input {
        font-size: 14px;
        padding: 12px 14px;
    }
}

.hpd-mail-form__note {
    /* position: absolute;
    top: 100%;
    left: 0; */
    margin: 8px 0 0 0;
    color: #fe0f09;
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 767px) {
    .hpd-mail-form__note {
        font-size: 13px;
    }
}

.hpd-mail-form__privacy {
    padding: 50px 0 20px;
    margin-bottom: 25px;
    border-top: 1px solid #b6aea8;
}

@media (max-width: 767px) {
    .hpd-mail-form__privacy {
        padding: 30px 20px 20px 20px;
        margin-bottom: 4px;
    }
}

.hpd-mail-form__privacy-text {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
    margin: 0 0 10px 0;
}

.hpd-mail-form__privacy-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .hpd-mail-form__privacy-text {
        font-size: 13px;
    }
}

.hpd-mail-form__privacy-link {
    color: #fe100a;
    text-decoration: underline;
    font-weight: 500;
}

.hpd-mail-form__privacy-link:hover {
    color: #fe100a;
}

.hpd-mail-form__checkbox {
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .hpd-mail-form__checkbox {
        margin-bottom: 20px;
    }
}

.hpd-mail-form__checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.hpd-mail-form__checkbox-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.hpd-mail-form__checkbox-text {
    font-size: 16px;
    color: #140b0b;
}

.hpd-mail-form__submit {
    text-align: center;
}

@media (max-width: 767px) {
    .hpd-mail-form__submit {
        padding: 0 20px;
    }
}

.hpd-mail-form__button {
    background-color: #5a5a5a;
    color: var(--white-color);
    padding: 18px 80px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.hpd-mail-form__button:hover {
    background-color: var(--bg-gray);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hpd-mail-form__button:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .hpd-mail-form__button {
        padding: 15px 60px;
        font-size: 16px;
    }
}

.hpd-inquiry {
    min-height: 50vh;
}

.hpd-inquiry__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-inquiry__inner {
    background-color: var(--white-color);
}

@media (max-width: 767px) {
    .hpd-inquiry__inner {
        margin: 0;
    }
}

.hpd-inquiry__content {
    padding: 60px 0;
    background-color: #f2f2f3;
}

@media (max-width: 767px) {
    .hpd-inquiry__content {
        padding: 40px 0;
    }
}

.hpd-inquiry__content-header {
    margin-top: 80px !important;
}

.hpd-inquiry__header {
    background-color: #828282;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 40px;
}

@media (max-width: 767px) {
    .hpd-inquiry__header {
        padding: 20px 25px;
        gap: 15px;
        margin: 0;
    }
}

.hpd-inquiry__icon {
    flex-shrink: 0;
    width: 20px;
}

.hpd-inquiry__title {
    font-size: 24px;
    color: var(--white-color);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 767px) {
    .hpd-inquiry__title {
        font-size: 20px;
    }
}

.hpd-inquiry__intro {
    padding: 30px 0;
    max-width: 820px;
    margin: 0 auto;
    background-color: var(--white-color);
}

@media (max-width: 767px) {
    .hpd-inquiry__intro {
        padding: 10px 5px 40px 5px
    }
}

.hpd-inquiry__intro-text {
    font-size: 20px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

@media (max-width: 767px) {
    .hpd-inquiry__intro-text {
        font-size: 16px;
    }
}

.hpd-inquiry__categories {
    background-color: var(--white-color);
    padding: 30px 0;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (max-width: 767px) {
    .hpd-inquiry__categories {
        padding: 20px 25px;
        gap: 20px;
    }
}

.hpd-inquiry__categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1279px) {
    .hpd-inquiry__categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding: 20px 30px;
    }

    .hpd-inquiry__category-label .hpd-inquiry__category-text {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .hpd-inquiry__categories {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
        padding: 20px 25px;
    }

    .hpd-inquiry__category-label .hpd-inquiry__category-text {
        font-size: 16px;
    }
}

.hpd-inquiry__category-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex: 1;
    min-width: 150px;
}

.hpd-inquiry__radio {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #fe100a;
}

.hpd-inquiry__category-text {
    font-size: 20px;
    color: var(--gray-dark-color-700);
}

.hpd-inquiry__info {
    background-color: var(--white-color);
    padding: 30px;
    max-width: 860px;
    margin: 0 auto 40px;
    /* border-bottom: 1px solid #b6aea8; */
}

.hpd-inquiry__info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 730px;
    margin: 0 auto;
}

.hpd-inquiry__info-item {
    font-size: 14px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
}

@media (max-width: 767px) {
    .hpd-inquiry__info-item {
        font-size: 13px;
    }
}

.hpd-inquiry__form {
    background-color: var(--white-color);
    padding: 0 0 50px;
    max-width: 860px;
    margin: 0 auto;
}

@media (max-width: 1279px) {
    .hpd-inquiry__form {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .hpd-inquiry__form {
        padding: 30px 25px;
    }
}

.hpd-inquiry__section-title {
    padding: 2px 16px;
    font-size: 24px;
    font-weight: 500;
    color: var(--gray-dark-color-700);
    border-left: 5px solid var(--inquiry-theme-color, --accordion-red);
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .hpd-inquiry__section-title {
        font-size: 16px;
        padding: 12px 20px;
    }
}

.hpd-inquiry__inquiry-box {
    padding: 20px 32px;
    margin-bottom: 60px;
    border: 1px solid #b6aea8;
}

.hpd-inquiry__inquiry-note {
    font-size: 14px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
}

.hpd-inquiry__contact-header {
    background-color: var(--inquiry-header-bg, #f9dfe0);
    padding: 12px 20px;
    font-size: 22px;
    font-weight: 500;
    color: var(--gray-dark-color-700);
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .hpd-inquiry__contact-header::after {
        content: "";
        display: block;
        top: -90px;
        left: -20px;
        width: 860px;
        height: 1px;
        background-color: #b6aea8;
        margin-top: 8px;
        position: relative;
    }
}

@media (max-width: 767px) {
    .hpd-inquiry__contact-header {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .hpd-inquiry__contact-header+.hpd-inquiry__field {
        border-top: none;
        padding-top: 0;
    }
}

.hpd-inquiry__category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    flex: 1;
}

@media (max-width: 767px) {
    .hpd-inquiry__category-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.hpd-inquiry__category-grid--vertical {
    grid-template-columns: 1fr;
    gap: 15px;
}

.hpd-inquiry__category-grid.is-one-column {
    grid-template-columns: repeat(1, 1fr);
}

.hpd-inquiry__category-grid.is-three-column {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 30px;
}

.hpd-inquiry__category-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.hpd-inquiry__category-option-text {
    font-size: 15px;
    color: var(--gray-dark-color-700);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .hpd-inquiry__category-option-text {
        font-size: 14px;
    }
}

.hpd-inquiry__textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--input-border-gray);
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s ease;
    flex: 1;
}

.hpd-inquiry__textarea::placeholder {
    color: #aaa;
}

.hpd-inquiry__textarea:focus {
    outline: none;
    border-color: #fe100a;
}

@media (max-width: 767px) {
    .hpd-inquiry__textarea {
        font-size: 14px;
        padding: 12px 14px;
    }
}

.hpd-inquiry__field {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

@media (min-width: 768px) {
    .hpd-inquiry__field {
        flex-direction: row;
        align-items: center;
        padding-top: 40px;
        border-top: 1px solid #b6aea8;
    }
}

.hpd-inquiry__label {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

@media (min-width: 768px) {
    .hpd-inquiry__label {
        max-width: 250px;
    }
}

.hpd-inquiry__label-text {
    font-size: 16px;
    color: var(--gray-dark-color-700);
}

@media (max-width: 767px) {
    .hpd-inquiry__label-text {
        font-size: 15px;
    }
}

.hpd-inquiry__required {
    background-color: #fe100a;
    color: var(--white-color);
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
}

.hpd-inquiry__input-wrapper {
    flex: 1;
    position: relative;
}

.hpd-inquiry__input {
    width: 100%;
    padding: 8px 16px;
    font-size: 15px;
    border: 1px solid var(--input-border-gray);
    transition: border-color 0.2s ease;
}

.hpd-inquiry__input::placeholder {
    color: #aaa;
}

.hpd-inquiry__input:focus {
    outline: none;
    border-color: #fe100a;
}

@media (max-width: 767px) {
    .hpd-inquiry__input {
        font-size: 14px;
        padding: 12px 14px;
    }
}

.hpd-inquiry__note {
    margin: 8px 0 0 0;
    color: #fe100a;
    line-height: 1.6;
    font-size: 16px;
}

@media (min-width: 768px) {
    .hpd-inquiry__note {
        position: absolute;
        bottom: -32px;
    }
}

.hpd-inquiry__phone-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hpd-inquiry__phone-input {
    padding: 8px 16px;
    font-size: 15px;
    border: 1px solid var(--input-border-gray);
    width: 70px;
    transition: border-color 0.2s ease;
}

.hpd-inquiry__phone-input::placeholder {
    color: #aaa;
}

.hpd-inquiry__phone-input:focus {
    outline: none;
    border-color: #fe100a;
}

@media (max-width: 767px) {
    .hpd-inquiry__phone-input {
        font-size: 14px;
        padding: 12px 14px;
        width: 70px;
    }
}

.hpd-inquiry__phone-separator {
    color: var(--phone-separator-gray);
    font-size: 20px;
}

.hpd-inquiry__privacy {
    padding: 50px 25px 30px;
    text-align: center;
    border-top: 1px solid #b6aea8;
}

@media (max-width: 767px) {
    .hpd-inquiry__privacy {
        padding: 10px;
        border-top: none;
    }
}

.hpd-inquiry__privacy-text {
font-size: 16px;
    color: var(--gray-dark-color-700);
    line-height: 1.8;
    margin: 0 20px 10px 20px;
    text-align: left;
}

@media (min-width: 1280px) {
    .hpd-inquiry__privacy-text {
        margin: 0 40px 10px 40px;
    }
}

@media (max-width: 1279px) {
    .hpd-inquiry__privacy-text {
        margin: 0 0 10px 0;
    }
}

.hpd-inquiry__privacy-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .hpd-inquiry__privacy-text {
        font-size: 13px;
    }
}

.hpd-inquiry__privacy-link {
    color: #fe100a;
    text-decoration: underline;
    font-weight: 500;
}

.hpd-inquiry__privacy-link:hover {
    color: #fe100a;
}

.hpd-inquiry__checkbox {
    text-align: center;
    margin-bottom: 40px;
}

.hpd-inquiry__checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.hpd-inquiry__checkbox-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.hpd-inquiry__checkbox-text {
    font-size: 16px;
    color: var(--gray-dark-color-700);
}

.hpd-inquiry__submit {
    text-align: center;
}

.hpd-inquiry__button {
    background-color: #828282;
    color: var(--white-color);
    padding: 18px 80px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.hpd-inquiry__button:hover {
    background-color: #828282;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hpd-inquiry__button:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .hpd-inquiry__button {
        padding: 15px 54.5px 15px 54.5px;
        font-size: 16px;
    }
}

.hpd-inquiry__recruit-fields {
    margin-bottom: 0;
}

.hpd-inquiry__recruit-fields.is-group {
    border-bottom: 1px solid #b6aea8;
    border-top: 1px solid #b6aea8;
    margin-bottom: 40px;
    padding-top: 40px;
    align-items: center;
    flex-direction: column;
}

@media (min-width: 768px) {
    .hpd-inquiry__recruit-fields.is-group {
        flex-direction: row;
    }
}

.hpd-inquiry__recruit-fields.is-group .hpd-inquiry__field {
    border-top: 0;
    padding-top: 0;
}

.hpd-inquiry__recruit-fields.is-group .hpd-inquiry__label {
    max-width: 120px;
}

.hpd-inquiry__recruit-fields-title {
    flex: 0 1 20%;
}

@media (min-width: 768px) {
    .hpd-inquiry__recruit-fields-title {
        flex: 0 1 10%;
        padding-right: 20px;
        margin-bottom: 40px;
    }
}

.hpd-inquiry__recruit-fields-content {
    flex: 1;
    width: 100%;
}

@media (min-width: 768px) {
    .hpd-inquiry__recruit-fields-content .hpd-inquiry__label {
        margin-right: 44px;
    }
}
.hpd-inquiry__school-section {
    margin-bottom: 30px;
}

.hpd-inquiry__school-header {
    background-color: #f5f5f5;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-dark-color-700);
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .hpd-inquiry__school-header {
        padding: 12px 20px;
        font-size: 16px;
    }
}

.hpd-inquiry__select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #828282;
    background-color: var(--white-color);
    cursor: pointer;
    transition: border-color 0.2s ease;
    width: 100px;
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 6px center;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'><path fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/></svg>");
}

.hpd-inquiry__select:focus {
    outline: none;
    border-color: #fe100a;
}

@media (max-width: 767px) {
    .hpd-inquiry__select {
        font-size: 14px;
        padding: 12px 14px;
        width: 100%;
    }
}

.hpd-inquiry__file-upload {
    flex: 1;
    position: relative;
}

.hpd-inquiry__file-input {
    display: none;
}

.hpd-inquiry__file-label {
    display: inline-block;
    padding: 7px 8px;
    background-color: #eaeaea;
    border: 1px solid #828282;
    cursor: pointer;
    font-size: 16px;
    color: var(--gray-dark-color-700);
    transition: background-color 0.2s ease;
    margin-right: 10px;
}

.hpd-inquiry__file-label:hover {
    background-color: #f5f5f5;
}

.hpd-inquiry__file-name {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    vertical-align: middle;
}

@media (max-width: 767px) {
    .hpd-inquiry__file-name {
        display: block;
        margin-top: 10px;
    }
}

.hpd-inquiry__file-note {
    margin: 8px 0 0 0;
    font-size: 16px;
    color: var(--gray-dark-color-700);
    line-height: 1.6;
    letter-spacing: -1px;
}

@media (max-width: 767px) {
    .hpd-inquiry__file-note {
        font-size: 12px;
    }
}

.hpd-inquiry__file-link {
    display: inline-block;
    margin-top: 5px;
    font-size: 14px;
    color: #0066cc;
    text-decoration: underline;
}

.hpd-inquiry__file-link:hover {
    color: #0052a3;
}

.hpd-inquiry__recruit-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 60px auto 0;
    border: 3px solid #828282;
    border-radius: 12px;
    max-width: 520px;
    background-color: var(--white-color);
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}

@media (max-width: 767px) {
    .hpd-inquiry__recruit-contact {
        padding: 10px;
        margin: 16px 16px;
    }
}

.hpd-inquiry__recruit-contact-image {
    width: 28px;
    margin-left: 10px;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .hpd-inquiry__recruit-contact-image {
        margin-right: 5px;
    }
}

.hpd-inquiry__recruit-contact-text {
    font-size: 24px;
}

@media (max-width: 767px) {
    .hpd-inquiry__recruit-contact-text {
        font-size: 16px;
    }
}

.hpd-inquiry__recruit-contact-icon {
    font-size: 24px;
    opacity: 0.7;
    margin-left: auto;
}

.hpd-inquiry__date-wrapper {
    display: flex;
    flex-direction: column;
}

.hpd-inquiry__date-wrapper .hpd-inquiry__select {
    width: 230px;
    margin-bottom: 8px;
}

.hpd-contact-list {
    min-height: 100vh;
}

.hpd-contact-list__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-contact-list__content {
    background-color: #f2f2f2;
    padding: 60px 0 60px;
}

@media (max-width: 767px) {
    .hpd-contact-list__content {
        padding: 40px 0;
    }
}

.hpd-contact-list__header {
    background-color: #828282;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 40px;
}

@media (max-width: 992px) {
    .hpd-contact-list__header {
        padding: 18px 24px;
        gap: 15px;
        /* margin-bottom: 40px; */
    }
}

@media (max-width: 767px) {
    .hpd-contact-list__header {
        padding: 12px 16px;
        gap: 15px;
        /* margin-bottom: 40px; */
    }
}

.hpd-contact-list__icon {
    flex-shrink: 0;
    width: 20px;
    height: auto;
}

.hpd-contact-list__title {
    font-size: 24px;
    color: var(--white-color);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 767px) {
    .hpd-contact-list__title {
        font-size: 20px;
    }
}

.hpd-contact-list__section {
    max-width: 900px;
    margin: 0 auto 80px;
}

.hpd-contact-list__section:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .hpd-contact-list__section {
        margin-bottom: 60px;
    }
}

.hpd-contact-list__section-title {
    font-size: 25px;
    font-weight: 500;
    color: var(--gray-color);
    margin: 0 0 12px 0;
}

@media (max-width: 767px) {
    .hpd-contact-list__section-title {
        font-size: 18px;
    }
}

.hpd-contact-list__table-wrapper {
    overflow-x: auto;
}

.hpd-contact-list__table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .hpd-contact-list__table {
        min-width: 600px;
    }
}

.hpd-contact-list__th {
    background-color: #828282;
    color: var(--white-color);
    padding: 8px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--table-border-gray);
    text-align: center;
}

@media (max-width: 767px) {
    .hpd-contact-list__th {
        padding: 14px 16px;
        font-size: 14px;
    }
}

.hpd-contact-list__th:nth-child(1) {
    width: 35%;
}

.hpd-contact-list__th:nth-child(2) {
    width: 40%;
}

.hpd-contact-list__th:nth-child(3) {
    width: 25%;
}

.hpd-contact-list__td {
    padding: 8px 20px;
    font-size: 16px;
    color: var(--gray-dark-color-700);
    vertical-align: middle;
}

.hpd-contact-list__td.is-border {
    border-left: 1px solid var(--table-border-gray);
    border-right: 1px solid var(--table-border-gray);
}

@media (max-width: 767px) {
    .hpd-contact-list__td {
        padding: 14px 16px;
        font-size: 14px;
    }
}

.hpd-contact-list tbody tr {
    transition: background-color 0.2s ease;
}

.hpd-contact-list tbody tr.is-gray {
    background-color: #f4f4f4;
}

.hpd-contact-list__inner {
    background-color: var(--white-color);
    padding-top: 70px;
    padding-bottom: 60px;
}

@media (max-width: 992px) {
    .hpd-contact-list__inner {
        padding: 40px 20px;
    }
}

@media (max-width: 767px) {
    .hpd-contact-list__inner {
        padding: 20px 12px;
    }
}

.hpd-top-1__banner {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-top-1__banner {
        overflow: visible;
    }
}

.hpd-top-1__banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 96 / 35;
}

@media (max-width: 1279px) {
    .hpd-top-1__banner-video {
        aspect-ratio: 96 / 48;
    }
}

.hpd-top-1__banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

@media (max-width: 767px) {
    .hpd-top-1__banner-video {
        aspect-ratio: 96 / 48;
    }

    .hpd-top-1__banner-overlay {
        padding-top: 40px;
    }

    .hpd-top-1__news-category,
    .hpd-top-1__news-tag {
        font-size: 11px !important;
        width: 90px !important;
    }
}

.hpd-top-1__banner-text {
    text-align: center;
}

.hpd-top-1__banner-line {
    font-size: 32px;
    color: var(--gray-color);
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .hpd-top-1__banner-line {
        font-size: 18px;
    }
}

.hpd-top-1__content {
    background-color: var(--white-color);
    padding: 40px 0;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-top-1__content {
        padding: 20px 20px !important;
    }
}

@media (max-width: 767px) {
    .hpd-top-1__content {
        padding: 40px 0;
    }
}

.hpd-top-1__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0px;
}

.hpd-top-1__main-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-top-1__main-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 10px !important;
        width: calc(100% - 20px) !important;
        max-width: none !important;
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 20px auto !important;
    }
}

@media (max-width: 767px) {
    .hpd-top-1__main-cards {
        grid-template-columns: 1fr;
        display: none;
    }
}

.hpd-top-1__card {
    background-color: var(--white-color);
    padding: 14px 25px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    width: 290px;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-top-1__card {
        width: 100% !important;
        min-width: 0 !important;
        padding: 8px 10px !important;
    }

    .hpd-top-1__card-title {
        font-size: 20px !important;
        line-height: 1.2 !important;
    }

    .hpd-top-1__card-subtitle {
        font-size: 12px !important;
        line-height: 1.2 !important;
    }

    .hpd-top-1__card-arrow {
        width: 18px !important;
        height: 18px !important;
    }

    .hpd-top-1__card--red::before,
    .hpd-top-1__card--blue::before,
    .hpd-top-1__card--orange::before,
    .hpd-top-1__card--green::before {
        width: 10px !important;
        height: 50px !important;
    }

    .hpd-top-1__sub-card--teal::before,
    .hpd-top-1__sub-card--purple::before,
    .hpd-top-1__sub-card--yellow::before {
        width: 10px !important;
        height: 50px !important;
    }
}

.hpd-top-1__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hpd-top-1__card--red {
    position: relative;
}

.hpd-top-1__card--red::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 50px;
    background-color: var(--accordion-red);
}

.hpd-top-1__card--red .hpd-top-1__card-subtitle {
    color: var(--accordion-red);
}

.hpd-top-1__card--red .hpd-top-1__card-arrow {
    background-color: var(--accordion-red);
}

.hpd-top-1__card--blue {
    position: relative;
}

.hpd-top-1__card--blue::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 50px;
    background-color: var(--accordion-blue);
}

.hpd-top-1__card--blue .hpd-top-1__card-subtitle {
    color: var(--accordion-blue);
}

.hpd-top-1__card--blue .hpd-top-1__card-arrow {
    background-color: var(--accordion-blue);
}

.hpd-top-1__card--orange {
    position: relative;
}

.hpd-top-1__card--orange::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 50px;
    background-color: var(--accordion-orange);
}

.hpd-top-1__card--orange .hpd-top-1__card-subtitle {
    color: var(--accordion-orange);
}

.hpd-top-1__card--orange .hpd-top-1__card-arrow {
    background-color: var(--accordion-orange);
}

.hpd-top-1__card--green {
    position: relative;
}

.hpd-top-1__card--green::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 50px;
    background-color: var(--accordion-green);
}

.hpd-top-1__card--green .hpd-top-1__card-subtitle {
    color: var(--accordion-green);
}

.hpd-top-1__card--green .hpd-top-1__card-arrow {
    background-color: var(--accordion-green);
}

.hpd-top-1__card-header {
    margin-bottom: 10px;
    text-align: center;
}

.hpd-top-1__card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-dark-color-700);
    margin: 0;
    line-height: 1.4;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-top-1__card-header {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hpd-top-1__card-title {
        font-size: 18px;
    }
}

.hpd-top-1__card-subtitle {
    font-size: 16px;
    color: var(--gray-color);
    margin: 0 0 auto 0;
    padding-bottom: 14px;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 767px) {
    .hpd-top-1__card-subtitle {
        font-size: 13px;
    }
}

.hpd-top-1__card--red .hpd-top-1__card-subtitle {
    color: var(--accordion-red);
}

.hpd-top-1__card--blue .hpd-top-1__card-subtitle {
    color: var(--accordion-blue);
}

.hpd-top-1__card--orange .hpd-top-1__card-subtitle {
    color: var(--accordion-orange);
}

.hpd-top-1__card--green .hpd-top-1__card-subtitle {
    color: var(--accordion-green);
}

.hpd-top-1__card-icon {
    display: flex;
    justify-content: center;
}

.hpd-top-1__card-arrow {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #828282;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 300;
}

.hpd-top-1__card-arrow svg {
    width: 10px;
    height: auto;
}

.hpd-top-1__sub-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-top-1__sub-cards {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }

    .hpd-top-1__sub-card {
        padding: 4px 8px !important;
        min-height: 70px !important;
        justify-content: flex-start !important;
    }

    .hpd-top-1__sub-card-inner {
        margin-left: 15px !important;
        text-align: left !important;
    }

    .hpd-top-1__sub-card-title {
        font-size: 16px !important;
        line-height: 1.2 !important;
        text-align: left !important;
    }

    .hpd-top-1__sub-card-subtitle {
        font-size: 11px !important;
        line-height: 1.2 !important;
        text-align: left !important;
    }

    .hpd-top-1__sub-card-icon {
        padding-left: 10px !important;
        margin-left: auto !important;
    }

    .hpd-top-1__sub-card-arrow {
        width: 18px !important;
        height: 18px !important;
    }
}

@media (max-width: 767px) {
    .hpd-top-1__sub-cards {
        grid-template-columns: 1fr;
    }

    .hpd-top-1__content .hpd-top-1__sub-cards .hpd-top-1__sub-card {
        min-height: 60px;
    }

    .hpd-top-1__content .hpd-top-1__sub-cards .hpd-top-1__sub-card::before {
        height: 50px;
    }
}

.hpd-top-1__sub-card {
    background-color: var(--white-color);
    padding: 4px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    min-height: 80px;
    text-align: center;
}

@media (min-width: 768px) {
    .hpd-top-1__sub-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }
}

.hpd-top-1__sub-card--teal {
    position: relative;
}

.hpd-top-1__sub-card--teal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 50px;
    background-color: var(--accordion-teal);
}

.hpd-top-1__sub-card--teal .hpd-top-1__sub-card-arrow {
    background-color: var(--accordion-teal);
}

.hpd-top-1__sub-card--purple {
    position: relative;
}

.hpd-top-1__sub-card--purple::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 50px;
    background-color: var(--accordion-purple);
}

.hpd-top-1__sub-card--purple .hpd-top-1__sub-card-arrow {
    background-color: var(--accordion-purple);
}

.hpd-top-1__sub-card--yellow {
    position: relative;
}

.hpd-top-1__sub-card--yellow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 50px;
    background-color: var(--accordion-yellow);
}

.hpd-top-1__sub-card--yellow .hpd-top-1__sub-card-arrow {
    background-color: var(--accordion-yellow);
}

.hpd-top-1__sub-card-inner {
    margin-left: auto;
}

.hpd-top-1__sub-card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-dark-color-700);
    line-height: 31px;
}

@media (max-width: 767px) {
    .hpd-top-1__sub-card-title {
        font-size: 15px;
    }
}

.hpd-top-1__sub-card-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #5ab4b4;
    margin: 0 0 auto 0;
}

@media (max-width: 767px) {
    .hpd-top-1__sub-card-subtitle {
        font-size: 12px;
    }
}

.hpd-top-1__sub-card--red .hpd-top-1__sub-card-subtitle {
    color: var(--accordion-red);
}

.hpd-top-1__sub-card--blue .hpd-top-1__sub-card-subtitle {
    color: var(--accordion-blue);
}

.hpd-top-1__sub-card--orange .hpd-top-1__sub-card-subtitle {
    color: var(--accordion-orange);
}

.hpd-top-1__sub-card--green .hpd-top-1__sub-card-subtitle {
    color: var(--accordion-green);
}

.hpd-top-1__sub-card-icon {
    display: flex;
    justify-content: center;
    padding-left: 30px;
}

.hpd-top-1__sub-card-arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #828282;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 300;
}

.hpd-top-1__sub-card-arrow>svg {
    width: 8px;
    height: auto;
}

.hpd-top-1__news {
    background-color: #f0f0f0;
    padding: 80px 0;
}

@media (max-width: 767px) {
    .hpd-top-1__news {
        padding: 30px 0;
    }
}

.hpd-top-1__news-header {
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .hpd-top-1__news-header {
        margin-bottom: 30px;
    }
}

.hpd-top-1__news-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--gray-color);
    margin: 0 0 5px 0;
}

@media (max-width: 767px) {
    .hpd-top-1__news-title {
        font-size: 24px;
    }
}

.hpd-top-1__news-title-en {
    font-size: 24px;
    font-weight: 500;
    color: #fe100a;
    margin: 0;
    letter-spacing: 0.1em;
}

@media (max-width: 767px) {
    .hpd-top-1__news-title-en {
        display: none;
    }
}

.hpd-top-1__news-span-arrow {
    color: black;
}

.hpd-top-1__news-tabs {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 30px;
}

.hpd-top-1__news-tab {
    position: relative;
    flex: 1;
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
    cursor: pointer;
    color: #333;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-align: center;
    border-left: 1px solid #999;
}

.hpd-top-1__news-tab:first-child {
    border-left: none;
}

/* ========= CBL-34#comment-249783297 */
@media screen and (min-width: 1280px) {
    .hpd-top-1__news-tab:hover span {
        background-color: var(--gray-color-80);
        border: 1px solid #828282;
    }
}

/* ================================== */


.hpd-top-1__news-tab span {
    display: block;
    width: 90%;
    padding: 5px 35px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
}

.hpd-top-1__news-tab.is-active span {
    background-color: var(--gray-color);
    color: var(--white-color);
    border: 1px solid #828282;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-top-1__news-tabs {
        padding: 0 5px;
        gap: 0;
    }

    .hpd-top-1__news-tab {
        font-size: 13px;
        padding: 0 2px;
    }

    .hpd-top-1__news-tab span {
        padding: 3px 2px;
	    width: 100%;
    }

    .hpd-top-1__news-tab.is-active span {
        background-color: var(--gray-color);
        color: var(--white-color);
    }
}

@media (max-width: 767px) {
    .hpd-top-1__news-tabs {
        flex-wrap: wrap;
        margin-bottom: 10px;
        padding: 0 5px;
        width: 100%;
        justify-content: center;
    }

    .hpd-top-1__news-tab {
        padding: 8px 2px;
        font-size: 12px;
        flex: 0 0 25%;
        border-left: none;
        position: relative;
        text-align: center;
        box-sizing: border-box;
    }

    .hpd-top-1__news-tab span {
        padding: 5px 0px;
    	width: 95%;
    }

    .hpd-top-1__news-tab::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 16px;
        background-color: #999;
    }

    .hpd-top-1__news-tab:first-child::before,
    .hpd-top-1__news-tab:nth-child(5)::before {
        display: none;
    }

    .hpd-top-1__news-tab:nth-child(4)::after,
    .hpd-top-1__news-tab:last-child::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 16px;
        background-color: #999;
    }

    .hpd-top-1__news-tab:nth-child(4)::after,
    .hpd-top-1__news-tab:last-child::after {
        display: none;
    }

    .hpd-top-1__news-tab:last-child {
        border-right: none;
    }

    .hpd-top-1__news-tab.is-active span {
        background-color: var(--gray-color);
        color: var(--white-color);
    }
}

.hpd-top-1__news-list {
    background-color: var(--white-color);
    overflow: hidden;
    box-shadow: 0 2px 8px rgb(172 172 172 / 50%);
    margin-bottom: 30px;
}

.hpd-top-1__news-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 25px 16px 50px;
    border-bottom: 1px solid #848484;
    text-decoration: none;
    transition: background-color 0.2s ease;
    justify-content: space-between;
}

.hpd-top-1__news-item:last-child {
    border-bottom: none;
}

.hpd-top-1__news-item:hover {
    background-color: #f9f9f9;
}

@media (max-width: 767px) {
    .hpd-top-1__news-item {
        gap: 10px;
        padding: 15px 20px;
    }
}

.hpd-top-1__news-item-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .hpd-top-1__news-item-left {
        flex-wrap: wrap;
        gap: 8px;
    }
}

.hpd-top-1__news-date {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    font-weight: 500;
    min-width: 95px;
}

@media (max-width: 767px) {
    .hpd-top-1__news-date {
        font-size: 13px;
        width: 80px;
    }
}

.hpd-top-1__news-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hpd-top-1__news-category,
.hpd-top-1__news-tag {
    padding: 2px 5px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    width: 100px;
    text-align: center;
    color: var(--gray-dark-color-700);
}

.hpd-top-1__news-category {
    background-color: #d1d1d1;
}

.hpd-top-1__news-category.is-red {
    background-color: var(--banner-bg-red);
}

.hpd-top-1__news-category.is-blue {
    background-color: var(--banner-bg-blue);
}

.hpd-top-1__news-category.is-orange {
    background-color: var(--banner-bg-orange);
}

.hpd-top-1__news-category.is-green {
    background-color: #d2ead0;
}

.hpd-top-1__news-category.is-default {
    background-color: #d1d1d1;
}

.hpd-top-1__news-tag {
    color: var(--gray-dark-color-700);
    background-color: #d1d1d1;
}

.hpd-top-1__news-tag.is-blue {
    background-color: var(--banner-bg-blue);
}

.hpd-top-1__news-tag.is-orange {
    background-color: var(--banner-bg-orange);
}

.hpd-top-1__news-tag.is-green {
    background-color: #d2ead0;
}

.hpd-top-1__news-tag.is-default {
    background-color: #d1d1d1;
}

.hpd-top-1__news-text {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    margin: 0;
    line-height: 1.6;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .hpd-top-1__news-text {
        font-size: 14px;
    }
}

.hpd-top-1__news-arrow {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--gray-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
}

@media (max-width: 767px) {
    .hpd-top-1__news-arrow {
        display: none;
    }
}

.hpd-top-1__news-more {
    text-align: right;
}

@media (max-width: 767px) {
    .hpd-top-1__news-more {
        text-align: center;
    }
}

.hpd-top-1__news-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 21px;
    background-color: #666666;
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hpd-top-1__news-more-link:hover {
    background-color: #6d6d6d;
    opacity: 0.9;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-top-1__news-more-link {
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .hpd-top-1__news-more-link {
        font-size: 14px;
        padding: 10px 25px;
    }
}

.hpd-top-1__news-more-arrow {
    font-size: 20px;
    font-weight: 300;
}

.hpd-top-1__link-banners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 120px;
}

@media (max-width: 767px) {
    .hpd-top-1__link-banners {
        gap: 15px;
        margin: 0px 10px 30px 10px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .hpd-top-1__link-banner {
        width: 100% !important;
        height: 100% !important;
    }
}

.hpd-top-1__link-banner:last-child img {
    object-fit: contain;
}

.hpd-top-2 {
    min-height: 100vh;
}

.hpd-top-2__container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.hpd-top-2__title {
    font-size: 36px;
    font-weight: 500;
    color: var(--gray-color);
    margin-bottom: 32px;
    margin-left: 0;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .hpd-top-2__title {
        margin-left: 50px;
    }
}

.hpd-top-2__content {
    background-color: #f0f0f0;
    padding: 60px 0;
}

@media (max-width: 1279px) {
    .hpd-top-2__content {
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .hpd-top-2__content {
        padding: 20px 0;
    }

    .hpd-top-2__title {
        font-size: 30px;
    }
}

.hpd-top-2__layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 80px;
    margin-left: 0;
}

@media (max-width: 1279px) {
    .hpd-top-2__layout {
        grid-template-columns: 1fr;
    }
}

.hpd-top-2__sidebar {
    padding: 0;
    margin-top: 42px;
}

@media (max-width: 1279px) {
    .hpd-top-2__sidebar {
        display: none;
    }
}

.hpd-top-2__filter-group {
    padding: 0 0 30px 0;
    margin-bottom: 30px;
}

.hpd-top-2__filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.hpd-top-2__filter-title {
    font-size: 16px;
    font-weight: 500;
    color: #fe100a;
    margin: 0 0 15px 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-color);
    padding: 8px 0;
}

.hpd-top-2__filter-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 2px 15px;
    background-color: var(--white-color);
    border: 1px solid #828282;
    color: var(--gray-dark-color-700);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 16px;
    border-radius: 10px;
}

.hpd-top-2__filter-btn:hover {
    background-color: #f5f5f5;
}

.hpd-top-2__filter-btn.is-all {
    background-color: var(--gray-color);
    color: var(--white-color);
    border-radius: 10px;
    border: 1px solid var(--gray-color);
}

.hpd-top-2__filter-btn.is-active {
    background-color: var(--gray-color);
    color: var(--white-color);
    border: 1px solid var(--gray-color);
}

.hpd-top-2__search {
    display: flex;
    gap: 0;
    align-items: center;
    border: 1px solid #828282;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--white-color);
    margin-top: 25px;
}

.hpd-top-2__search-input {
    flex: 1;
    padding: 10px 10px 10px 10px;
    border: none;
    font-size: 14px;
    min-width: 0;
    width: auto;
}

.hpd-top-2__search-input:focus {
    outline: none;
}

.hpd-top-2__search-btn {
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: var(--gray-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hpd-top-2__search-btn:hover {
    color: var(--gray-dark-color-700);
}

.hpd-top-2__main {
    border-radius: 4px;
}

.hpd-top-2__header {
    margin-bottom: 20px;
}

.hpd-top-2__results {
    font-size: 16px;
    color: #535353;
    margin: 0;
    line-height: 1.6;
    text-align: right;
}

.hpd-top-2__limit-spacer {
    display: inline-block;
    width: 2em;
}

@media (max-width: 767px) {
    .hpd-top-2__results {
        font-size: 13px;
    }
    
    .hpd-top-2__limit-spacer {
        width: 1.5em;
    }
}

.hpd-top-2__list {
    margin-bottom: 40px;
    background-color: var(--white-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hpd-top-2__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 25px 16px 50px;
    border-bottom: 1px solid #848484;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.hpd-top-2__item-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hpd-top-2__item:hover {
    background-color: #f9f9f9;
}

@media (max-width: 767px) {
    .hpd-top-2__item {
        gap: 10px;
        padding: 15px;
    }
}

.hpd-top-2__item-header {
    display: flex;
    align-items: center;
    gap: 42px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .hpd-top-2__item-header {
        gap: 8px;
    }
}

.hpd-top-2__item-date {
    font-size: 16px;
    color: var(--gray-dark-color-700);
    font-weight: 500;
    min-width: 95px;
}

@media (max-width: 767px) {
    .hpd-top-2__item-date {
        font-size: 13px;
        width: 80px;
    }

    .hpd-top-2__item-category {
        font-size: 11px !important;
        width: 90px !important;
        line-height: 15px !important;
    }
}

.hpd-top-2__item-category {
    padding: 2px 10px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 13px;
    background-color: #f2cccd;
    color: var(--gray-dark-color-700);
    white-space: nowrap;
    width: 100px;
    text-align: center;
}

.hpd-top-2__item-text {
    flex: 1;
    font-size: 16px;
    color: var(--gray-dark-color-700);
    margin: 0;
    line-height: 1.6;
    margin-top: 16px;
}

.hpd-top-2__news-span-arrow {
    color: black;
}

@media (max-width: 767px) {
    .hpd-top-2__item-text {
        font-size: 14px;
    }
}

.hpd-top-2__item-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
}

.hpd-top-2__item-arrow.is-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--gray-color);
    color: var(--white-color);
}

.hpd-top-2__pagination {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 40px 4px;
}

.hpd-top-2__page-btn {
    width: 40px;
    height: 40px;
    border: none;
    background-color: var(--white-color);
    color: #828282;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #828282;
    margin-top: 5px;
}

.hpd-top-2__page-btn:hover {
    background-color: #e0e0e0;
}

.hpd-top-2__page-btn.is-active {
    background-color: #828282;
    color: var(--white-color);
}

.hpd-top-2__page-btn.is-prev,
.hpd-top-2__page-btn.is-next {
    background-color: transparent;
    color: #666;
    border: none;
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 0 5px;
    font-size: 16px;
}

.hpd-top-2__page-btn.is-prev:hover,
.hpd-top-2__page-btn.is-next:hover {
    background-color: transparent;
    color: #333;
}

@media (max-width: 767px) {
    .hpd-top-2__page-btn {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
    
    .hpd-top-2__page-btn.is-prev,
    .hpd-top-2__page-btn.is-next {
        width: auto;
        height: auto;
        font-size: 14px;
    }
}

.hpd-top-2__page-dots {
    color: var(--gray-color);
    font-size: 30px;
    margin: auto 0 auto 0;
}


/* ========================================
   Mobile Menu Display - Show all menus
   ======================================== */

/* Mobile only main cards container - hidden on desktop */
.hpd-top-1__main-cards-mobile {
    display: none;
}

@media (max-width: 767px) {

    /* Hide original main cards on mobile */
    .hpd-top-1__main-cards {
        display: none !important;
    }

    /* Show mobile version */
    .hpd-top-1__main-cards-mobile {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        background-color: var(--white-color);
    }

    /* Styles only for cards inside mobile container */
    .hpd-top-1__main-cards-mobile .hpd-top-1__sub-card {
        padding: 5px 16px !important;
    }

    .hpd-top-1__main-cards-mobile .hpd-top-1__sub-card-inner,
    .hpd-top-1__content .hpd-top-1__sub-card-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hpd-top-1__sub-card-inner {
        margin-right: auto;
        margin-left: unset;
        padding-left: 10px;
    }

    .hpd-top-1__main-cards-mobile .hpd-top-1__sub-card-title {
        font-size: 1.2em;
    }

    /* Color variants for mobile main cards */
    .hpd-top-1__sub-card--red {
        position: relative;
    }

    .hpd-top-1__sub-card--red::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 10px;
        height: 50px;
        background-color: var(--accordion-red);
    }

    .hpd-top-1__sub-card--red .hpd-top-1__sub-card-arrow {
        background-color: var(--accordion-red);
    }

    .hpd-top-1__sub-card--blue {
        position: relative;
    }

    .hpd-top-1__sub-card--blue::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 10px;
        height: 50px;
        background-color: var(--accordion-blue);
    }

    .hpd-top-1__sub-card--blue .hpd-top-1__sub-card-arrow {
        background-color: var(--accordion-blue);
    }

    .hpd-top-1__sub-card--orange {
        position: relative;
    }

    .hpd-top-1__sub-card--orange::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 10px;
        height: 50px;
        background-color: var(--accordion-orange);
    }

    .hpd-top-1__sub-card--orange .hpd-top-1__sub-card-arrow {
        background-color: var(--accordion-orange);
    }

    .hpd-top-1__sub-card--green {
        position: relative;
    }

    .hpd-top-1__sub-card--green::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 10px;
        height: 50px;
        background-color: var(--accordion-green);
    }

    .hpd-top-1__sub-card--green .hpd-top-1__sub-card-arrow {
        background-color: var(--accordion-green);
    }

    /* Sub cards mobile styles - height ~60px each */
    .hpd-top-1__sub-card {
        min-height: 60px;
        padding: 8px 16px;
    }

    .hpd-top-1__sub-card-title {
        font-size: 1.2em;
        line-height: 1.3;
    }

    .hpd-top-1__sub-card-title br {
        display: none;
    }

    .hpd-top-1__sub-card-subtitle {
        font-size: 10px;
    }

    .hpd-top-1__sub-card-arrow {
        width: 16px;
        height: 16px;
    }

    .hpd-top-1__sub-card-arrow svg {
        width: 10px;
        height: 6px;
    }

    /* Adjust content section padding */
    .hpd-top-1__content {
        padding: 16px 0 40px;
    }

    .hpd-top-1__sub-cards {
        gap: 12px;
    }
}


/* CBL Slider - New classes to avoid CSS conflicts */

/* Slider Container - same as hpd-top-1__container */
.hpd-slider-container {
    max-width: 1312px;
    margin: 0 auto 30px auto;
    padding: 0px;
}

.hpd-slider-container .cbl-slider-section {
    padding: unset;
}

@media (max-width: 767px) {
    .hpd-slider-container .cbl-slider-section {
        padding: 20px 0 0;
    }
}

/* ===== CBL SLIDER SECTION ===== */
.cbl-slider-section {
    padding: 40px 0 20px;
}

.cbl-swiper-top {
    max-width: 1280px;
    margin: auto;
    position: relative;
    overflow: visible;
}

/* PC: Swiper 11 fix - ensure fixed width in flexbox */
@media (min-width: 1280px) {
    .cbl-swiper-top {
        width: 1280px;
        flex-shrink: 0;
    }
}

.cbl-swiper-top.cbl-swiper-centered {
    width: fit-content;
    max-width: 100%;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .cbl-swiper-top {
        flex: 1;
        min-width: 0;
        max-width: 100%;
        position: relative;
        overflow: visible;
    }
}

/* ===== SLIDE ===== */
.cbl-swiper-top .swiper-slide {
    background: #fff;
    overflow: hidden;
}

/* PC: fixed width 240px */
@media (min-width: 1280px) {
    .cbl-swiper-top .swiper-slide {
        width: 240px !important;
    }
}

/* ===== IMAGE ===== */
.cbl-swiper-top .hpd-swiper__image {
    overflow: hidden;
}

.cbl-swiper-top .hpd-swiper__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== TEXT ===== */
.cbl-swiper-top .hpd-swiper__content {
    padding: 14px 16px;
}

.cbl-swiper-top .hpd-swiper__title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

.cbl-swiper-top .hpd-swiper__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ===== ARROWS ===== */

/* Slider section inner - flexbox for PC arrows */
.cbl-slider-section__inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .cbl-slider-section__inner {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 1280px;
        margin: 0 auto;
    }
}

/* PC arrows - outside swiper */
.cbl-slider-section__inner .cbl-swiper-prev--pc,
.cbl-slider-section__inner .cbl-swiper-next--pc {
    position: relative;
    top: -25px;
    transform: none;
    width: 28px;
    height: 56px;
    color: #716b6b;
    flex-shrink: 0;
}

.cbl-slider-section__inner .cbl-swiper-prev--pc::after,
.cbl-slider-section__inner .cbl-swiper-next--pc::after {
    font-size: 56px;
    font-weight: 100;
}

.cbl-slider-section__inner .cbl-swiper-prev--pc {
    margin-right: 25px;
}

.cbl-slider-section__inner .cbl-swiper-next--pc {
    margin-left: 25px;
}

/* Mobile/Tablet arrows - inside swiper */
.cbl-swiper-top .cbl-swiper-prev--mobile,
.cbl-swiper-top .cbl-swiper-next--mobile {
    top: 47%;
    transform: translateY(-50%);
    width: 28px;
    height: 56px;
    color: #716b6b;
}

.cbl-swiper-top .cbl-swiper-prev--mobile::after,
.cbl-swiper-top .cbl-swiper-next--mobile::after {
    font-size: 56px;
    font-weight: 100;
}

.cbl-swiper-top .cbl-swiper-prev--mobile {
    left: 12px;
}

.cbl-swiper-top .cbl-swiper-next--mobile {
    right: 12px;
}

/* PC: Show PC arrows, hide mobile arrows */
@media (min-width: 768px) {

    .cbl-slider-section__inner .cbl-swiper-prev--pc,
    .cbl-slider-section__inner .cbl-swiper-next--pc {
        display: flex;
    }

    .cbl-swiper-top .cbl-swiper-prev--mobile,
    .cbl-swiper-top .cbl-swiper-next--mobile {
        display: none;
    }
}

/* Tablet/Mobile: Hide PC arrows, show mobile arrows */
@media (max-width: 767px) {

    .cbl-slider-section__inner .cbl-swiper-prev--pc,
    .cbl-slider-section__inner .cbl-swiper-next--pc {
        display: none;
    }

    .cbl-swiper-top .cbl-swiper-prev--mobile,
    .cbl-swiper-top .cbl-swiper-next--mobile {
        display: none;
    }

    .cbl-slider-section__inner {
        display: block;
    }
}

/* ===== PAGINATION ===== */
.cbl-slider-section .cbl-swiper-pagination {
    margin-top: 24px;
    position: relative;
    text-align: center;
}

.cbl-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--gray-color-80);
    opacity: 1;
    margin: 0 4px;
}

.cbl-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--gray-dark-color-700);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .cbl-swiper-top .swiper-slide {
        opacity: 0.5;
        transition: opacity 0.3s ease;
    }

    .cbl-swiper-top .swiper-slide-active {
        opacity: 1;
    }
}

@media (max-width: 767px) {

    .cbl-swiper-top .cbl-swiper-prev--mobile,
    .cbl-swiper-top .cbl-swiper-next--mobile {
        width: 20px;
        height: 40px;
    }

    .cbl-swiper-top .cbl-swiper-prev--mobile::after,
    .cbl-swiper-top .cbl-swiper-next--mobile::after {
        display: none;
    }

    .cbl-swiper-top .hpd-swiper__title {
        font-size: 15px;
    }

    .cbl-swiper-top .hpd-swiper__content {
        font-size: 13px;
    }
}


/* ========================================
   Mobile/Tablet Sidebar for Announcements
   ======================================== */

/* Hide mobile sidebar on PC */
.hpd-top-2__sidebar-mobile {
    display: none;
}

/* Show mobile sidebar on tablet and mobile */
@media (max-width: 1279px) {
    .hpd-top-2__sidebar-mobile {
        display: block;
        margin-bottom: 0;
    }

    .hpd-top-2__sidebar-mobile-row {
        display: flex;
        align-items: flex-start;
    }

    .hpd-top-2__sidebar-mobile-left {
        flex: 1;
        min-width: 0;
    }

    .hpd-top-2__sidebar-mobile-right {
        width: 210px;
        margin-top: 100px;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
    }

    .hpd-top-2__search-mobile {
        width: 85% !important;
    }

    .mobile-label-none {
        display: none;
    }

    .hpd-top-2__sidebar-mobile-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 3px;
        margin-bottom: 10px;
    }

    .hpd-top-2__title {
        font-weight: 600 !important;
    }

    .hpd-top-2__filter-btn-mobile {
        display: inline-block;
        padding: 2px 5px;
        background-color: var(--white-color);
        border: 1px solid #828282;
        color: var(--gray-dark-color-700);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        border-radius: 8px;
        text-decoration: none;
        white-space: nowrap;
    }

    .hpd-top-2__filter-btn-mobile:hover {
        background-color: #f5f5f5;
    }

    .hpd-top-2__filter-btn-mobile.is-all,
    .hpd-top-2__filter-btn-mobile.is-active {
        background-color: var(--gray-color);
        color: var(--white-color);
        border: 1px solid var(--gray-color);
    }

    .hpd-top-2__sidebar-mobile-group {
        margin-bottom: 5px;
    }

    .hpd-top-2__sidebar-mobile-left>.hpd-top-2__sidebar-mobile-btns .hpd-top-2__filter-btn-mobile {
        min-width: 100px;
        text-align: center;
    }

    .hpd-top-2__sidebar-mobile-btns--category .hpd-top-2__filter-btn-mobile {
        min-width: 100px;
        text-align: center;
    }

    .hpd-top-2__sidebar-mobile-group:last-child .hpd-top-2__sidebar-mobile-btns .hpd-top-2__filter-btn-mobile {
        min-width: 100px;
        text-align: center;
    }

    .hpd-top-2__sidebar-mobile-label {
        font-size: 14px;
        font-weight: 600;
        color: var(--gray-color);
        margin-bottom: 5px;
    }

    .hpd-top-2__sidebar-mobile-right .hpd-top-2__sidebar-mobile-label {
        text-align: right;
    }

    .hpd-top-2__search-mobile {
        display: flex;
        gap: 0;
        align-items: center;
        border: 1px solid #828282;
        border-radius: 20px;
        overflow: hidden;
        background-color: var(--white-color);
        width: 85% !important;
        margin-bottom: 8px;
        margin-right: auto;
    }

    .hpd-top-2__search-input-mobile {
        flex: 1;
        padding: 8px 12px;
        border: none;
        font-size: 14px;
        min-width: 0;
    }

    .hpd-top-2__search-input-mobile:focus {
        outline: none;
    }

    .hpd-top-2__search-btn-mobile {
        width: 36px;
        height: 36px;
        background-color: transparent;
        color: var(--gray-color);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
    }

    .hpd-top-2__search-btn-mobile:hover {
        color: var(--gray-dark-color-700);
    }

    .hpd-top-2__sidebar-mobile-limit {
        font-size: 14px;
        color: #535353;
        text-align: right;
        margin-bottom: 5px;
    }

    .hpd-top-2__sidebar-mobile-limit a,
    .hpd-top-2__sidebar-mobile-limit span {
        color: #535353;
        text-decoration: none;
        display: inline-block;
        min-width: 2em;
        text-align: center;
        white-space: nowrap;
    }

    .hpd-top-2__sidebar-mobile-limit a:hover {
        text-decoration: underline;
    }

    .hpd-top-2__sidebar-mobile-limit .is-active {
        font-weight: bold;
    }

    /* Hide the results count in main content on mobile/tablet since it's in mobile sidebar */
    .hpd-top-2__results--announcements {
        display: none;
    }
}

/* Tablet specific adjustments (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1279px) {
    .hpd-top-2__sidebar-mobile-row {
        flex-direction: column;
        gap: 10px;
    }

    .hpd-top-2__sidebar-mobile-right {
        width: 100%;
        margin-top: 0;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .hpd-top-2__search-mobile {
        width: 250px !important;
    }

    .hpd-top-2__sidebar-mobile-limit {
        width: 100%;
        text-align: right;
    }
}

@media (max-width: 441px) {
    .hpd-top-2__filter-btn-mobile {
        font-size: 10px !important;
    }

    .hpd-top-2__sidebar-mobile-left>.hpd-top-2__sidebar-mobile-btns .hpd-top-2__filter-btn-mobile {
        min-width: 83px !important;
    }

    .hpd-top-2__sidebar-mobile-btns--category .hpd-top-2__filter-btn-mobile {
        min-width: 83px !important;
    }

    .hpd-top-2__sidebar-mobile-group:last-child .hpd-top-2__sidebar-mobile-btns .hpd-top-2__filter-btn-mobile {
        min-width: 83px !important;
    }
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
    .hpd-top-2__sidebar-mobile-left>.hpd-top-2__sidebar-mobile-btns .hpd-top-2__filter-btn-mobile {
        min-width: 100px;
        text-align: center;
    }

    .hpd-top-2__sidebar-mobile-btns--category .hpd-top-2__filter-btn-mobile {
        min-width: 100px;
        text-align: center;
    }

    .hpd-top-2__sidebar-mobile-group:last-child .hpd-top-2__sidebar-mobile-btns .hpd-top-2__filter-btn-mobile {
        min-width: 100px;
        text-align: center;
    }

    .hpd-top-2__search-mobile {
        width: 45% !important;
    }

    .hpd-top-2__sidebar-mobile-row {
        flex-direction: column;
        gap: 10px;
    }

    .hpd-top-2__sidebar-mobile-right {
        width: 100%;
        margin-top: 0;
    }

    .hpd-top-2__sidebar-mobile-right .hpd-top-2__sidebar-mobile-label {
        text-align: left;
    }

    .hpd-top-2__sidebar-mobile-limit {
        text-align: left;
    }

    .hpd-top-2__filter-btn-mobile {
        font-size: 13px;
        padding: 3px 10px;
    }

    .hpd-top-2__sidebar-mobile-label {
        font-size: 13px;
    }

    .hpd-top-2__sidebar-mobile-limit {
        font-size: 13px;
    }
}

.panel-jis-col-sm-4 {
    width: 25%;
}

@media (max-width: 767px) {
    .panel-jis-col-sm-4 {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {
    .panel-jis-col-sm-4 {
        width: 50%;
    }
}

.panel-jis-col-sm-4-3 {
    width: 33%;
}

@media (max-width: 767px) {
    .panel-jis-col-sm-4-3 {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {
    .panel-jis-col-sm-4-3 {
        width: 50%;
    }
}

.panel-jis-col-sm-4 a,
.panel-jis-col-sm-4-3 a {
    width: 100%;
}

[id] {
  scroll-margin-top: 20px;
}

.is-nowrap, .is_nowrap {
    white-space: nowrap;
}

@media (min-width: 1280px) {
    .only-pc {
        display: inline-block;
    }
    .only-tab {
        display: none;
    }
    .only-sp {
        display: none;
    }
    .only-pc-tab {
        display: inline-block;
    }
    .only-sp-tab {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 1279px) {
    .only-pc {
        display: none;
    }
    .only-tab {
        display: inline-block;
    }
    .only-sp {
        display: none;
    }
    .only-pc-tab {
        display: inline-block;
    }
    .only-sp-tab {
        display: inline-block;
    }
}
@media (max-width: 767px) { 
    .only-pc {
        display: none;
    }
    .only-tab {
        display: none;
    }
    .only-sp {
        display: inline-block;
    }
    .only-pc-tab {
        display: none;
    }
    .only-sp-tab {
        display: inline-block;
    }
}