@charset "utf-8";

.bread-dust {
    font-size: 12px;
    margin-bottom: 40px;
}
.bread-dust span a {
    color: var(--corporate-brown);
}

.term_list {
    display: flex;
    gap: 24px;
    padding: 24px 0;
}

/* FAQ LIST SECTION */
.faq-list-section {
    /* background: var(--clinical-white); */
    margin: 0 auto;
    padding: 60px 0;
}

.faq-list-section .faq-list {
    margin: 0 auto;
}

.faq-list-section .faq-item {
    border-bottom: 1px solid var(--skin-beige);
    padding: 20px 0;
}

.faq-list-section .faq-item:first-child {
    border-top: 1px solid var(--skin-beige);
}

.faq-list-section .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 0.95rem;
    color: var(--corporate-brown);
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-list-section .faq-question:hover .faq-question-text {
    color: var(--skin-beige);
}

.faq-list-section .faq-question-text {
    flex: 1;
    display: block;
    transition: color 0.3s ease;
}

.faq-list-section .faq-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-list-section .faq-open-btn,
.faq-list-section .faq-close-btn {
    background: transparent;
    color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.faq-list-section .faq-open-btn::before,
.faq-list-section .faq-close-btn::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--skin-beige);
    border-bottom: 2px solid var(--skin-beige);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.faq-list-section .faq-open-btn:hover::before,
.faq-list-section .faq-close-btn:hover::before {
    border-right-color: var(--corporate-brown);
    border-bottom-color: var(--corporate-brown);
}

.faq-list-section .faq-close-btn {
    display: none;
}

.faq-list-section .faq-item.active .faq-open-btn {
    display: none;
}

.faq-list-section .faq-item.active .faq-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-list-section .faq-item.active .faq-close-btn::before {
    transform: rotate(-135deg);
}

.faq-list-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    font-size: 0.95rem;
    color: var(--font-color);
    line-height: 1.6;
}

.faq-list-section .faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    margin-top: 15px;
}

.faq-list-section .faq-item.active .faq-question-text {
    color: var(--skin-beige);
}

.faq-list-section .faq-item.active .faq-question {
    color: var(--skin-beige);
}

/* NEWS HERO SECTION */
.news {
    background: var(--clinical-white);
    margin: 0 auto;
}

.news-hero {
    padding: 40px 0 30px;
    margin-bottom: 40px;
}

.section-title-large {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 8px;
    margin: 0 0 20px 0;
    color: var(--clinical-white);
    -webkit-text-stroke: 1px #ddd;
    text-stroke: 1px #ddd;
    font-family: 'Shippori Mincho', serif;
}

.news-hero-subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.news-subtitle {
    font-size: 14px;
    color: var(--font-color);
    letter-spacing: 2px;
    margin: 0;
}

.news-divider-line {
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--font-color);
}

.news-hero-divider {
    width: 100%;
    border: none;
    border-top: 1px solid #ddd;
    margin: 0;
}

.term-list {
    color: var(--font-color);
}

.term-list.positive {
    color: var(--black);
    font-weight: 900;
}

.news-content h2{
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
}

.news-content p {
    font-size: 1rem;
    color: var(--font-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.nav-links {
    text-align: center;
}

.page-numbers {
    padding: 8px 12px;
    margin: 0 4px;
}

.news-content {
    margin: 40px 0 80px 0;
}

.news-sub-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 30px;
    line-height: 2;
}

.c-label {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--skin-beige);
    margin: 16px 0;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-top: 20px;
}

.news-detail {
    max-width: 1280px;
    margin: 0 auto;
}