.info-share-detail-page {
    padding: 0 0 5rem;
    background: #ffffff;
}

.info-share-detail-hero {
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.info-share-detail-hero img {
    width: 100%;
    max-width: 100%;
    height: 560px;
    display: block;
    object-fit: cover;
    object-position: center;
    animation: infoShareRelatedZoom 2.6s ease-out forwards;
}

.info-share-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(7, 17, 28, 0.65) 0%, rgba(7, 17, 28, 0.25) 55%, rgba(7, 17, 28, 0.05) 100%);
    pointer-events: none;
}

.info-share-detail-container {
    max-width: 1000px;
    margin: -90px auto 0;
    padding: 3.5rem 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.info-share-detail-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-share-detail-date {
    font-size: 14.4px;
    text-transform: uppercase;
    color: #393939;
}

.info-share-detail-title {
    color: #1d2743;
    margin: 0;
    font-size: 36px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.info-share-detail-article {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    color: #393939;
}

.info-share-block h2 {
    font-size: clamp(1.7rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #374543;
    margin-bottom: 1rem;
}

.info-share-block {
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-share-block p {
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-share-block img {
    max-width: 100%;
    height: auto;
}

.info-share-block table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

.info-share-block iframe,
.info-share-block video {
    max-width: 100%;
    height: auto;
}

.info-share-detail-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-bottom: 1px solid #d8dee8;
    padding-bottom: 1.25rem;
    flex-wrap: wrap;
}

.info-share-detail-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #393939;
}

.info-share-detail-tags span {
    font-weight: 400;
}

.info-share-detail-tags a {
    padding: 0.38rem 1.2rem;
    border-radius: 999px;
    border: 1px solid #393939;
    background: #ffffff;
    color: #393939;
    text-decoration: none;
    font-weight: 300;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.info-share-detail-tags a:hover {
    background: #e58393;
    color: #ffffff;
    border-color: #e58393;
}

.info-share-detail-share {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: #4c5671;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.info-share-share-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 1.35rem;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: #393939;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.info-share-share-trigger svg {
    width: 20px;
    height: 20px;
}

.info-share-share-links {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.info-share-share-links a,
.info-share-share-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef1f6;
    color: #1f3a68;
    transition: background 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.info-share-share-links a:hover,
.info-share-share-btn:hover {
    background: #1f3a68;
    color: #ffffff;
}

.info-share-detail-related {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-items: center;
    text-align: center;
    margin: 4rem auto 0;
    max-width: 1280px;
    padding: 0 1.5rem;
}

.info-share-detail-related h3 {
    font-size: 20px;
    font-weight: 500;
    color: #995964;
    margin: 0;
}

.info-share-related-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.info-share-related-card {
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}



.info-share-related-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.info-share-related-image img {
    width: 100%;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.6s ease;
    transform-origin: center;
    animation: pageLoadZoom 1.08s ease;
}

.info-share-related-image img:hover {
    transform: scale(1.08);
}
@keyframes pageLoadZoom {
    0% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.info-share-related-body {
    padding: 2rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
}

.info-share-related-body--left {
    align-items: flex-start;
    text-align: left;
}

.info-share-related-date {
    font-size: 0.9rem;
    color: #393939;
}

.info-share-related-body h4 {
    font-size: 1.55rem;
    font-weight: 700;
    color: #3b2a1f;
    margin: 0;
    position: relative;
    display: inline-flex;
}

.info-share-related-body h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.info-share-related-body p {
    font-size: 0.96rem;
    line-height: 1.7;
    color: #393939;
    flex: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.info-share-related-title-link {
    color: #995965;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    font-size: 30.8px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.info-share-related-title-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.info-share-related-title-link:hover::after,
.info-share-related-title-link:focus-visible::after {
    transform: scaleX(1);
}

.info-share-related-link {
    color: #393939;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    margin-bottom: 1rem;
}
.info-share-detail-related{
    min-width: 1400px;
}

@media (max-width: 1399.98px) {
    .info-share-detail-related {
        min-width: auto;
        width: 100%;
        max-width: 100%;
    }
}
.info-share-related-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 0.45;
}

.info-share-related-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 1px;
    background: #374543;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.info-share-related-link:hover::after {
    transform: scaleX(1);
}

.info-share-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.info-share-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 300;
    color: #393939;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-share-nav-link svg {
    width: 18px;
    height: 18px;
    color: inherit;
}

.info-share-nav-link svg path {
    transition: stroke 0.3s ease;
    stroke: currentColor;
}

.info-share-nav-link:hover,
.info-share-nav-link:focus-visible {
    color: #374543;
}

.info-share-nav-link:hover svg,
.info-share-nav-link:focus-visible svg {
    color: #374543;
}

.info-share-nav-link:hover svg path,
.info-share-nav-link:focus-visible svg path {
    stroke: #374543 !important;
}

.info-share-nav-link--prev svg {
    order: -1;
}

.info-share-nav-link span {
    white-space: nowrap;
    font-weight: 500;
}

.info-share-nav-link--prev,
.info-share-nav-link--next {
    flex: 1;
}

.info-share-nav-link--prev {
    justify-content: flex-start;
}

.info-share-nav-link--next {
    justify-content: flex-end;
}


.info-share-related-title-link:hover .info-share-related-body h4::after {
    transform: scaleX(1);
}


.info-share-share-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1050;
}

.info-share-share-modal.active {
    pointer-events: auto;
    opacity: 1;
}

.info-share-share-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 17, 35, 0.58);
    backdrop-filter: blur(3px);
}

.info-share-share-dialog {
    position: relative;
    background: #f5f5f5;
    padding: 2rem 2rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 460px;
    width: 90%;
    z-index: 1;
    box-shadow: 0 24px 48px rgba(9, 17, 35, 0.2);
}

.info-share-share-dialog h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0;
    text-align: left;
    color: #393939;
}

.info-share-share-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #393939;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    line-height: 1;
}

.info-share-share-url {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 999px;
    padding: 0;
    overflow: hidden;
}

.info-share-share-url input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 0.95rem;
    color: #393939;
    background: transparent;
    outline: none;
}

.info-share-share-url input:focus {
    outline: none;
}

.info-share-share-copy {
    padding: 0.75rem 1.25rem;
    border: none;
    border-left: 1px solid #d0d0d0;
    border-radius: 0 999px 999px 0;
    background: #f5f5f5;
    color: #393939;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* 鼠标悬停时的浅色遮罩滑动效果 Start */
.info-share-share-copy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #E58393;
    transition: left 0.3s ease;
    z-index: -1;
}

.info-share-share-copy::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: left 0.6s ease;
    z-index: -1;
}

.info-share-share-copy:hover {
    color: #ffffff;
}

.info-share-share-copy:hover::before {
    left: 0;
}

.info-share-share-copy:hover::after {
    left: 100%;
}

/* 鼠标悬停时的浅色遮罩滑动效果 End */




.info-share-social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.info-share-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #393939;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.info-share-social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}



@keyframes infoShareRelatedZoom {
    0% {
        transform: scale(1.18);
    }

    100% {
        transform: scale(1.08);
    }
}

@media (max-width: 767.98px) {
    .info-share-detail-hero {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .info-share-detail-hero img {
        width: 100%;
        max-width: 100%;
        height: 412px;
        object-fit: cover;
        object-position: center;
        transform: scale(1);
    }

    .info-share-detail-container {
        margin: 0;
        padding: 2.5rem 1.5rem 0;
        gap: 2rem;
    }
    .info-share-detail-title{
        font-size: 30.8px;
    }
    .info-share-detail-article {
        overflow-x: hidden;
    }

    .info-share-detail-tags{
        color: #393939;
    }

    .info-share-detail-tags span{
        font-weight: 400;
    }
    .info-share-detail-tags a{
        border:1px solid #393939;
        color: #393939;
    }

    .info-share-block {
        overflow-x: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
    }

    .info-share-block p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .info-share-block img {
        max-width: 100% !important;
        height: auto !important;
    }

    .info-share-block table {
        max-width: 100%;
        overflow-x: auto;
        display: block;
        -webkit-overflow-scrolling: touch;
    }

    .info-share-block iframe,
    .info-share-block video {
        max-width: 100% !important;
        height: auto !important;
    }

    .info-share-detail-meta-bar {
        align-items: flex-start;
    }



    .info-share-share-dialog {
        padding: 2rem 1rem;
        gap: 1.3rem;
    }

    .info-share-share-copy {
        padding: 0.6rem 1.25rem;
    }

    .info-share-related-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }

    .info-share-detail-related {
        margin: 3rem auto 0;
        padding: 0 1.25rem;
        width: 100%;
        max-width: 100%;
    }

    .info-share-related-image {
        width: 100%;
        max-width: 100%;
    }

    .info-share-related-image img {
        width: 100%;
        max-width: 100%;
        transform: scale(1);
    }

    .info-share-related-card {
        width: 100%;
        max-width: 100%;
    }
}


.index-share-link {
    color: #5b5c5e;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    align-self: flex-start;
    padding-bottom: 2px;
    letter-spacing: 0.2rem;
}

.index-share-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: #5b5c5e;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.index-share-link:hover {
    opacity: 0.9;
}

.index-share-link:hover::after {
    animation: underlineHideShow 0.5s ease-in-out;
}

@media (max-width: 575.98px) {
    .info-share-detail-title{
        font-weight: 600 !important;
    }
    .info-share-detail-container{
        gap: 0 !important;
    }
}