/* デフォルトのヘッダー */
header.l-header.p-header {
    display: none;
}

/* デフォルトのフッター */
p.footer-copyright {
    display: none;
}

/* パンくずリスト */
.cb-breadcrumb {
    font-size: 0.75rem;
}

.cb-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0.375rem 0.75rem;
    background: #F5F5F5;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;      
}

.cb-breadcrumb-list::-webkit-scrollbar {
    display: none;
}

.cb-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    color: #535353;
}

.cb-breadcrumb-item a {
    color: inherit;
    text-decoration: none;
    padding: 0.15rem 0.4rem;
    border-radius: 999px;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.cb-breadcrumb-item a:hover {
    background: rgba(233, 82, 142, 0.08);
    color: #7D40A0;
}

.cb-breadcrumb-item::after {
    content: "›";
    display: inline-block;
    margin: 0 0.15rem;
    color: #535353;
    font-size: 0.7rem;
}

.cb-breadcrumb-item:last-child::after {
    content: "";
    margin: 0;
}

.cb-breadcrumb-item--current {
    color: #7D40A0;
}

.cb-breadcrumb-item--current a {
    pointer-events: none;
    cursor: default;
    background: rgba(233, 82, 142, 0.08);
    color: #7D40A0;
}

/* 目次 */
.cb-toc {
    margin: 2.5rem 0;
    border: 1px solid #7D40A0;
    background-color: #ffffff;
    font-size: 0.875rem;
    border-radius: 0 0 10px 10px;
}

.cb-toc-header {
    background-color: #7D40A0;
    color: #ffffff;
    padding: 0.625rem 1rem;
    display: flex;
    align-items: center;
}

.cb-toc-header-icon {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.cb-toc-header-title {
    letter-spacing: 0.2em;
}

.cb-toc-body {
    position: relative;
    max-height: 8.5rem;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.cb-toc-body::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2.5rem;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
    pointer-events: none;
}

.cb-toc-body.is-open {
    max-height: 2000px;
}

.cb-toc-body.is-open::after {
    opacity: 0;
}

.cb-toc-level1,
.cb-toc-level2 {
    list-style: none;
    margin: 0;
    padding: 0.75rem 1rem;
}

.cb-toc-level1 > .cb-toc-item-h2 {
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
}

.cb-toc-level2 {
    margin-top: 0.25rem;
    margin-left: 0.5rem;
    padding-left: 0.75rem;
}

.cb-toc-item a {
    display: inline-block;
    text-decoration: none;
    color: #535353;
    line-height: 1.6;
}

.cb-toc-item a:hover {
    text-decoration: underline;
}

.cb-toc-number {
    margin-right: 0.25rem;
    color: #7D40A0;
}

.cb-toc-item-h3 .cb-toc-number {
    color: #7D40A0;
}

.cb-toc-text {
    word-break: break-all;
}

.cb-toc-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0.75rem 1rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #7D40A0;
    background-color: #ffffff;
    color: #7D40A0;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}


/* ------------------------------------------------------------------------------------- */
/* 記事一覧ページ */
.blog-archive-page {
    max-width: 100%;
    box-sizing: border-box;
    padding-top: 4.625rem;
    font-weight: 500;
}

.blog-archive-header {
    height: 4.625rem;
    position: fixed;
    right: 0;
    top: env(safe-area-inset-top, 0);
    width: 100%;
    z-index: 100;
    background: #FFF;
    border-bottom: 1px solid #7D40A0;
    padding-block: 0.5rem;    
    display: flex;
    align-items: center;    
}

.blog-archive-header-inner {
    padding-inline: 0.9375rem;
    position: relative;
    width: 100%;
}

.blog-archive-title {
    width: auto;
}

.blog-archive-title a {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #7D40A0;
    text-decoration: none;
    line-height: 1;
    letter-spacing: 0.12em;
    font-family: "Noto Sans JP", sans-serif;
    transition: opacity 0.3s ease;
}

.blog-archive-title a:hover {
    opacity: 0.7;
}

.blog-archive-header-hamburger {
    cursor: pointer;
    display: block;
    height: 2.375rem;
    padding-inline: 0.75rem;
    position: absolute;
    right: 0.9375rem;
    text-align: center;
    top: 0.625rem;
    width: 2.875rem;
    z-index: 150;
}

.blog-archive-header-hamburger__line {
    background: #7D40A0;
    display: block;
    height: 1.5px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    transition: 0.3s ease-in-out;
    width: 2.125rem;
}

.blog-archive-header-hamburger__line:nth-of-type(1) {
    top: 0rem;
}

.blog-archive-header-hamburger__line:nth-of-type(2) {
    top: 0.5rem;
}

.blog-archive-header-hamburger__line:nth-of-type(3) {
    top: 1rem;
}

.blog-archive-header-hamburger__text {
    bottom: 0;
    color: #7D40A0;
    font-size: 0.75rem;
    font-weight: 500;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    transition: 0.3s;
}

.blog-archive-header-hamburger.active .blog-archive-header-hamburger__line:nth-of-type(1) {
    top: 0.625rem;
    transform: translateX(-50%) rotate(-45deg);
}

.blog-archive-header-hamburger.active .blog-archive-header-hamburger__line:nth-of-type(2), 
.blog-archive-header-hamburger.active .blog-archive-header-hamburger__line:nth-of-type(3) {
    top: 0.625rem;
    transform: translateX(-50%) rotate(45deg);
}

.blog-archive-header-hamburger.active .blog-archive-header-hamburger__text {
    opacity: 0;
    visibility: hidden;
}

.blogMenuSp__headline__en {
    color: #7D40A0;
    font-size: 2.1875rem;
    font-weight: 500;
    line-height: 1;
}

.blogMenuSp__headline__ja {
    color: #7D40A0;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.6666666667;
    margin-top: 0.8125rem;
}

@media screen and (min-width: 1024px) {
    .blogMenuSp {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }
}

.blogMenuSP__link {
    display: block;
    padding-block: 1rem 1.125rem;
    position: relative;
}

.blogMenuSP__head {
    color: #7D40A0;
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.3333333333;
}

/* -------------------- */
/* 新着記事 */
.blog-new_articles {
    margin-top: 2.5rem;
    padding-inline: 1.25rem;
}

.blog-section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    color: #7D40A0;
    margin: 0 0 0.25rem;
}


.blog-section-title {
    font-size: 1.125rem;
    margin: 0 0 1.25rem;
    color: #535353;
}

.blog-new_articles-swiper {
    position: relative;
    overflow: hidden;
}

.blog-new_articles-swiper .swiper-wrapper {
    align-items: stretch;
}

.blog-new_articles-swiper .swiper-slide {
    box-sizing: border-box;
}

.blog-new_articles-card {
    display: block;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-new_articles-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.blog-new_articles-thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.blog-new_articles-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.blog-new_articles-card-link:hover .blog-new_articles-thumb img {
    transform: scale(1.2);
}

.blog-new_articles-thumb--placeholder {
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AAAAAC;
    font-size: 0.825rem;
    position: absolute;
    top: 0;
    left: 0;
}

.blog-new_articles-label {
    display: inline-block;
    margin-top: 0.625rem;
    padding: 2px 8px;
    border-radius: 999px;
    background: #7D40A0;
    color: #fff;
    font-size: 0.6rem;
}

.blog-new_articles-body {
    padding: 0.625rem 0rem 0;
}

.blog-new_articles-title {
    font-size: 1rem;
    color: #535353;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-new_articles-pagination {
    margin-top: 1.25rem;
    text-align: center;
}

.blog-new_articles-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ddd;
    opacity: 1;
    margin: 0 4px !important;
}

.blog-new_articles-pagination .swiper-pagination-bullet-active {
    background: #7D40A0;
}

/* -------------------- */
/* ランキング */

.blog-ranking {
    margin-top: 2.5rem;
    padding-inline: 1.25rem;
}

.blog-ranking-inner {
}

.blog-ranking-swiper {
    position: relative;
    overflow: hidden;
}

.blog-ranking-swiper .swiper-wrapper {
    align-items: stretch;
}

.blog-ranking-swiper .swiper-slide {
    box-sizing: border-box;
}

.blog-ranking-card {
    display: block;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-ranking-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.blog-ranking-thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.blog-ranking-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.blog-ranking-card-link:hover .blog-ranking-thumb img {
    transform: scale(1.2);
}

.blog-ranking-thumb--placeholder {
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AAAAAC;
    font-size: 0.825rem;
    position: absolute;
    top: 0;
    left: 0;
}

.blog-ranking-label {
    display: inline-block;
    margin-top: 0.625rem;
    padding: 2px 8px;
    border-radius: 999px;
    background: #7D40A0;
    color: #fff;
    font-size: 0.6rem;
}

.blog-ranking-body {
    padding: 0.625rem 0rem 0;
}

.blog-ranking-title {
    font-size: 1rem;
    color: #535353;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-ranking-pagination {
    margin-top: 1.25rem;
    text-align: center;
}

.blog-ranking-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ddd;
    opacity: 1;
    margin: 0 4px !important;
}

.blog-ranking-pagination .swiper-pagination-bullet-active {
    background: #7D40A0;
}


/* -------------------- */
/* アーカイブ */

.blog-archive {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    padding-inline: 1.25rem;
}

.blog-archive-inner {
}

.blog-archive-section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    color: #7D40A0;
    margin: 0 0 0.25rem;
    text-align: center;
}

.blog-archive-section-title {
    font-size: 1.125rem;
    margin: 0 0 1.25rem;
    color: #535353;
    text-align: center;    
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1200px;
    margin:  0 auto;
}

.blog-archive-date {
    display: block;
    font-size: 0.75rem;
    color: #AAAAAC;
    margin-bottom: 4px;
}

.blog-archive-loadmore {
    margin-top: 32px;
    text-align: center;
}

.blog-archive-loadmore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 0.625rem 1.5rem;
    border-radius: 999px;
    border: 1px solid #7D40A0;
    background: #fff;
    color: #7D40A0;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.blog-archive-loadmore-btn:hover {
    background: #7D40A0;
    color: #fff;
}

.blog-archive-loadmore-btn:disabled,
.blog-archive-loadmore-btn.is-loading {
    cursor: default;
    opacity: 0.6;
}

/* -------------------- */
/* サイドメニュー */

.blog-archive-sidebar {
    margin-top: 5rem;
}

.blog-archive-sidebar-inner {
    max-width: none;
    width: 100%;
    margin: 0 auto;
}

.blog-archive-sidebar-title {
    font-size: 1rem;
    color: #535353;
    margin: 0 0 0.75rem;
    border-bottom: 1px solid #7D40A0;
    padding-bottom: 0.5rem;
}

.blog-archive-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-archive-sidebar-item {
    margin-bottom: 1.25rem;
}

.blog-archive-sidebar-item a {
    display: block;
    font-size: 0.85rem;
    color: #535353;
    text-decoration: none;
    padding: 0.35rem 0;
    border-bottom: 1px solid #AAAAAC;
}

.blog-archive-sidebar-item a:hover {
    color: #7D40A0;
}

.blog-archive-widget {
    margin-bottom: 2.5rem;
}

.blog-archive-sidebar-count {
    font-size: 0.75rem;
    color: #AAAAAC;
    margin-left: 0.25rem;
}

.blog-archive-sidebar-list--posts .blog-archive-sidebar-item a {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.blog-archive-sidebar-post-title {
    font-size: 0.85rem;
    line-height: 1.4;
}

.blog-archive-sidebar-post-date {
    font-size: 0.75rem;
    color: #AAAAAC;
}

.blog-archive-widget-service {
    text-align: center;
}

.blog-archive-service-logo img {
    width: 200px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.blog-archive-service-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.blog-archive-service-btn {
    display: block;
    max-width: 18.75rem;
    width: 100%;
    text-align: center;
    padding: 0.75rem 2rem;
    border-radius: 62.4375rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease;
    position: relative;
}

.blog-archive-service-btn--register {
    background: #E9528E;
    color: #fff;
    border: 1px solid #E9528E;
}

.blog-archive-service-btn--register::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    height: 0.625rem;
    right: 1.625rem;
    width: 0.625rem;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: translatey(-50%) rotate(-135deg);
    transform: translatey(-50%) rotate(-135deg);
}

.blog-archive-service-btn--register:hover {
    background: #c74478;
}

.blog-archive-service-btn--contact {
    background: #fff;
    border: 1px solid #E9528E;
    color: #E9528E;
}

.blog-archive-service-btn--contact::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    height: 0.625rem;
    right: 1.625rem;
    width: 0.625rem;
    border-bottom: 1px solid #E9528E;
    border-left: 1px solid #E9528E;
    -webkit-transform: translatey(-50%) rotate(-135deg);
    transform: translatey(-50%) rotate(-135deg);
}

.blog-archive-service-btn--contact:hover {
    background: #E9528E;
    color: #fff;
}

@media (min-width: 960px) {
    .blog-archive {
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        max-width: 1200px;
        margin: 2.5rem auto;
    }

    .blog-archive-inner {
        flex: 1 1 auto;
    }

    .blog-archive-grid {
        max-width: none;
        margin: 0;
    }

    .blog-archive-sidebar {
        flex: 0 0 280px;
        margin-top: 0px;
    }

    .blog-archive-sidebar-inner {
        max-width: 280px;
    }
}

.custom-blog-about-us-section {
    background: #fff;
    padding: 40px 0px;
    text-align: center;
}

/* ------------------------------------------------------------------------------------- */
/* 個別記事ページ */

.blog-single-page {
    max-width: 100%;
    box-sizing: border-box;
    padding-top: 4.625rem;
    font-weight: 500;
}

.blog-single-and-sidebar {
    margin-top: 2.5rem;
    padding-inline: 1.25rem;
}

@media (min-width: 960px) {
    .blog-single-and-sidebar {
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        max-width: 1200px;
        margin: 2.5rem auto;
    }
}

.blog-header {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.125rem;
    line-height: 1.4;
    width: 100%;
    color: #535353;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
}

.blog-meta-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.blog-meta-category {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: #7D40A0;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
}

.blog-meta-date {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #AAAAAC;
}

.blog-thumbnail {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 1.25rem;
}

.blog-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-thumbnail--placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AAAAAC;
    font-size: 0.825rem;
    margin-top: 1.25rem;      
}

.blog-author-section {
    margin: 1.25rem 0;
    padding: 1.25rem 0;
    border-top: 1px solid #AAAAAC;
    border-bottom: 1px solid #AAAAAC;
}

.blog-supervisor,
.blog-writer {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #AAAAAC;
    align-items: flex-start;
}

.blog-supervisor {
    padding-bottom: 1.25rem;
}

.blog-writer {
    padding-top: 1.25rem;
}


.blog-writer:last-child {
    border-bottom: none;
}


.blog-supervisor-icon,
.blog-writer-icon {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
}

.blog-supervisor-icon img,
.blog-writer-icon img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50%;
    object-fit: contain;
    display: block;
}

.blog-author-role {
    margin: 0;
    font-size: 0.75rem;
    color: #AAAAAC;
}

.blog-author-name {
    font-size: 1rem;
    color: #535353;
}

.blog-author-description {
    margin-top: 0.65rem;
    font-size: 0.85rem;
    color: #535353;
    line-height: 1.8;
    position: relative;
}

.blog-author-description {
    overflow: hidden;
    max-height: 4.8em;
    transition: max-height 0.3s ease;
}

.blog-author-description::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.2em;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #FFFFFF);
    pointer-events: none;
}

.blog-author-description.is-open {
    max-height: 1000px;
}

.blog-author-description.is-open::after {
    opacity: 0;
}

.blog-under-author-description {
    margin-top: 0.65rem;
    font-size: 0.85rem;
    color: #535353;
}

.blog-author-toggle {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.95rem;
    border-radius: 999px;
    border: 1px solid #7D40A0;
    background: #fff;
    color: #7D40A0;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.3rem 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}


.blog-footer .post-navigation {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #AAAAAC;
    display: flex;
    flex-direction: row;
    font-size: 1rem;
    justify-content: space-between;
}

.blog-footer .post-navigation a {
    color: #535353;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s ease, color 0.2s ease;
    display: inline-block;
}

.blog-footer .post-navigation a:hover {
    color: #7D40A0;
    border-color: #7D40A0;
}

.blog-footer .nav-previous {
    text-align: left;
}

.blog-footer .nav-next {
    text-align: right;
}

.blog-footer .back-to-archive {
    margin-top: 1.25rem;
    text-align: center;
}

.blog-footer .back-to-archive a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 0.6rem 1.6rem;
    border-radius: 999px;
    border: 1px solid #7D40A0;
    background: #fff;
    color: #7D40A0;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.blog-footer .back-to-archive a::before {
    content: "←";
    margin-right: 0.4rem;
    font-size: 0.9rem;
}

.blog-footer .back-to-archive a:hover {
    background: #7D40A0;
    color: #fff;
    transform: translateY(-1px);
}
/* ------------------------------------------------------------------------------------- */
/* 記事本体 */

.blog-content {
    color: #535353;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.blog-content h2 {
    margin: 4rem 0 2rem;
    padding: 0.4rem 0;
    font-size: 1.2rem;
    color: #535353;
    border-top: 3px solid #7D40A0;
    border-bottom: 3px solid #7D40A0;
    font-weight: 700;
}

.blog-content h3:not(.blog-content-talk-h3) {
    position: relative;
    margin: 3rem 0 2rem;
    padding-bottom: 0.6rem;
    font-size: 1.1rem;
    color: #535353;
    font-weight: 700;
}

.blog-content h3:not(.blog-content-talk-h3)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 3px;
    background: #7D40A0;
}

.blog-content h3:not(.blog-content-talk-h3)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 70%;
    height: 3px;
    background: #e5e5e5;
    width: 30%;
}

.blog-content h4 { 
    margin: 3rem 0 1.5rem;
    padding-left: 0.75rem; 
    font-size: 1.05rem;
    font-weight: 700; 
    color: #535353; 
    border-left: 3px solid #7D40A0;
    line-height: 1.6; 
}

.blog-content p {
    line-height: 1.8;
    font-size: 1rem;
}

.blog-content .blog-marker {
    background: linear-gradient(rgba(0, 0, 0, 0) 75%, #fff799 75%);
    font-weight: 700;
}

.blog-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1.25rem 0;
}

.blog-content ul li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.25rem 0;
    font-size: 1rem;
    color: #535353;
    line-height: 1.8;
    transition: color 0.15s ease, transform 0.15s ease;
}

.blog-content ul li::before {
    content: "";
    flex-shrink: 0;
    margin-top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7D40A0, #9E6CBB);
    box-shadow: 0 0 0 3px #f2e9f9;
}

.blog-content ul li:hover {
    color: #3d3d3d;
    transform: translateX(2px);
}


.blog-content ul ul {
    margin: 0.25rem 0 0.25rem 1.4rem;
    padding-left: 0;
}

.blog-content ul ul li::before {
    width: 6px;
    height: 6px;
    margin-top: 0.65em;
    box-shadow: 0 0 0 2px #f6f0fb;
    opacity: 0.9;
}

.blog-content .table-wrap {
    width: 100%;
    overflow-x: auto;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 1rem;
    color: #535353;
    table-layout: fixed;
}

.blog-content table thead th {
    background: #7D40A0;
    color: #fff;
    padding: 0.75rem;
    text-align: left;
    font-weight: 500;
    font-size: 1rem;
}

.blog-content table tbody td {
    padding: 0.75rem 0.75rem;
    border-bottom: 1px solid #E9DFF2;
}

.blog-content table tbody tr:nth-child(even) {
    background: #FAF7FC;
}

.blog-content table tbody tr:last-child td {
    border-bottom: none;
}

.blog-content .talk-wrapper {
    margin-top: 2rem;
}

.blog-content .talk-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.blog-content .talk-row--right {
    justify-content: flex-end;
}

.blog-content .talk-row--left {
    justify-content: flex-start;
}

.blog-content .talk-content {
    max-width: 75%;
}

.blog-content .talk-avatar {
    width: 56px;
    flex-shrink: 0;
    text-align: center;
    font-size: 0.7rem;
    color: #777777;
}

.blog-content .talk-avatar-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0.25rem;
    background: #f5f5f5;
}

.blog-content .talk-avatar-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.blog-content .talk-avatar-name {
    font-size: 0.7rem;
}

.blog-content .blog-content-talk-h3,
.blog-content .blog-content-talk-p {
    margin: 0;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.95rem;
    line-height: 1.8;
    position: relative;
    box-sizing: border-box;
}

.blog-content .blog-content-talk-h3 {
    background: #F5F5F5;
}

.blog-content .blog-content-talk-h3::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 1.1rem;
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #f5f5f8;
}

.blog-content .blog-content-talk-p {
    background: #F3E7FD;
}

.blog-content .blog-content-talk-p::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 1.1rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 7px 7px 0;
    border-color: transparent #E0ECFF transparent transparent;
    background: transparent;
}