/* =============================== begin header =============================== */
.top-header {
    background-color: #ffffff;
    top: 0;
    z-index: 1000;
}

/* Header Top Section */
.header-top-section {
    padding: 24px 0;
}

.header-container {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Header Left - Logo và Text */
.header-left {
    display: flex;
    align-items: center;
    gap: 13.634px;
    flex-shrink: 0;
    margin-left: 130px;
}

.header-home-link {
    display: flex;
    align-items: center;
    gap: 13.634px;
    text-decoration: none;
    color: inherit;
}

.header-home-link:hover {
    text-decoration: none;
}

.logo {
    flex-shrink: 0;
    width: 81.805px;
    height: 86px;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 31.298px;
    font-weight: 900;
    color: #612500;
    line-height: 1.2;
    white-space: nowrap;
    margin: 0;
}

.site-location {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 31.298px;
    font-weight: 900;
    color: #fa8c16;
    line-height: 1.2;
    white-space: nowrap;
    margin: 0;
}

/* Header Menu Section */
.header-menu-section {
    border-top: 1px solid #d1d1d6;
    width: 100%;
}

.header-menu-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 128px;
    width: 100%;
    box-sizing: border-box;
}

.header-menu-section .header-nav {
    display: flex;
    justify-content: center;
    padding: 12px 0;
    width: 100%;
}

.header-menu-section .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
    align-items: center;
}

.header-menu-section .nav-menu li {
    margin: 0;
}

.header-menu-section .nav-link {
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.85);
    line-height: 28px;
    padding: 13px 20px;
    white-space: nowrap;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    box-sizing: border-box;
}

.header-menu-section .nav-link.active {
    color: #fa8c16;
}

.header-menu-section .nav-link.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 0;
    width: 0;
}

.header-menu-section .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #fa8c16;
}

 .header-menu-section .nav-link:hover {
    color: #fa8c16;
}


/* =============================== Hero Section (Desktop) =============================== */
.hero-section {
    position: relative;
    background-image: url('../bgr_b1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 128px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 128px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.hero-card {
    position: relative;
    background-color: #fa8c16;
    border-radius: 24px;
    padding: 48px;
    max-width: 880px;
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 1000px;
    background-color: #40a9ff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 40px;
    margin-bottom: 24px;
}

.hero-main-title {
    font-family: 'Dela Gothic One';
    font-weight: 400;
    font-size: 64px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #ffffff;
}

.hero-location {
    color: #ffffff;
}

.hero-main-highlight {
    color: #ffec3d;
}

.hero-description {
    font-family: 'Hiragino Kaku Gothic Pro';
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
    color: #ffffff;
}

.hero-description p {
    margin: 0 0 8px;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

.hero-location-inline {
    color: #ffffff;
}

.hero-description-highlight {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #ffec3d;
}

.hero-cta-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 19px 32px;
    border-radius: 12px;
    background-color: #52c41a;
    border: 1px solid #52c41a;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    position: relative;
    z-index: 1;
}

.hero-cta-btn:hover {
    background-color: #3f9c14;
    text-decoration: none;
    opacity: 0.95;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

.hero-trophy {
    position: absolute;
    right: 80px;
    top: -77px;
    width: 305px;
    height: auto;
}

.hero-trophy-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


/* =============================== Worries Section =============================== */
.worries-section {
    position: relative;
    background-color: #fff7e6;
    background-image: url('../images/bgr_3.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0;
    overflow: hidden;
}

.worries-bg-circle {
    display: none;
}

.worries-bg-circle-left {
    left: -120px;
    top: -180px;
}

.worries-bg-circle-right {
    right: -200px;
    top: 200px;
}

.worries-container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 128px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.worries-card {
    background-color: #0050b3;
    border-radius: 48px;
    padding: 48px 64px 40px;
    box-sizing: border-box;
    color: #ffffff;
    max-width: 960px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.worries-heading {
    text-align: center;
    margin-bottom: 32px;
}

.worries-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.4;
    margin: 0 0 12px;
    color: #ffec3d;
}

.worries-location {
    color: #ffec3d;
}

.worries-subtitle {
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
    margin: 0;
}

.worries-list {
    list-style: none;
    margin: 32px 0 32px;
    padding: 0;
}

.worries-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    position: relative;
}

.worries-item::after {
    content: '';
    position: absolute;
    left: 96px;
    right: 0;
    bottom: 0;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.7);
}

.worries-item-last::after {
    border-bottom: none;
}

.worries-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.worries-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.worries-text {
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 32px;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
}

.worries-note {
    margin-top: 24px;
    background-color: #ffe7ba;
    border-radius: 12px;
    padding: 24px 48px;
    box-sizing: border-box;
}

.worries-note-text {
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-size: 24px;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.85);
    margin: 0;
}

.worries-note-highlight {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #0050b3;
}

.worries-illustration {
    position: absolute;
    bottom: -20px;
    width: 360px;
}

.worries-illustration-left {
    left: 80px;
}

.worries-illustration-right {
    right: 80px;
}

.worries-illustration-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* General Body Styles */
body {
    font-family: 'Noto Sans JP';
    margin: 0;
    padding: 0;
    line-height: 150%;
}


/* =============================== Footer =============================== */
.main-footer {
    background: #2c2c2c;
    color: #FFFFFF;
    padding: 48px 0 24px;
}

.footer-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-top-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
}

.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13.634px;
}

.footer-logo {
    width: 81.805px;
    height: 86px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-title {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-title p {
    margin: 0;
}

.footer-site {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 31.3px;
    color: #FFFFFF;
    line-height: 1.2;
}

.footer-location {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 31.3px;
    color: #fa8c16;
    line-height: 1.2;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-link {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    text-decoration: none;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-email-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.footer-email-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    color: #FFFFFF;
}

.footer-content-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-heading {
    position: relative;
    border-bottom: 2px solid #fa8c16;
    padding-bottom: 15px;
}

.footer-heading-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #fa8c16;
    text-decoration: underline;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.footer-cities {
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.footer-bottom {
    padding-top: 23px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .main-footer {
        padding: 30px 0 20px;
    }

    .footer-container {
        padding: 0 15px;
        gap: 30px;
    }

    .footer-top-section {
        flex-direction: column;
        gap: 24px;
    }

    .footer-left {
        gap: 20px;
    }

    .footer-brand {
        gap: 10px;
    }

    .footer-logo {
        width: 50px;
        height: 53px;
    }

    .footer-site {
        font-size: 20px;
    }

    .footer-location {
        font-size: 20px;
    }

    .footer-link {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-right {
        justify-content: flex-start;
    }

    .footer-email {
        gap: 10px;
    }

    .footer-email-icon {
        width: 28px;
        height: 28px;
    }

    .footer-email-text {
        font-size: 18px;
    }

    .footer-content-section {
        gap: 20px;
    }

    .footer-heading {
        padding-bottom: 12px;
    }

    .footer-heading-text {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-cities {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-copyright {
        font-size: 12px;
        line-height: 18px;
    }
}

/* =============================== Ranking Table =============================== */
.ranking-title-section {
    max-width: 1650px;
    margin: 0 auto;
    padding: 64px 30px 24px;
    text-align: center;
}

.ranking-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 1000px;
    background-color: #40a9ff;
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    color: #ffffff;
    margin-bottom: 24px;
}

.ranking-title {
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.location-highlight {
    color: #fa8c16;
}

.ranking-table-container {
    max-width: 1650px;
    margin: 0 auto 60px;
    padding: 0 30px;
    overflow-x: auto;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.ranking-table thead {
    background-color: #fa8c16;
}

.ranking-table th {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    padding: 16px 12px;
    text-align: center;
    white-space: nowrap;
}

.ranking-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.ranking-table tbody tr:last-child {
    border-bottom: none;
}

.ranking-table tbody tr.even-row {
    background-color: #ffffff;
}

.ranking-table tbody tr.odd-row {
    background-color: #ffffff;
}

/* Row 1 - Cam đậm, text đậm */
.ranking-table tbody tr.rank-row-1 {
    background-color: #ffd591;
}

.ranking-table tbody tr.rank-row-1 .agency-name,
.ranking-table tbody tr.rank-row-1 .features-text,
.ranking-table tbody tr.rank-row-1 .area-text,
.ranking-table tbody tr.rank-row-1 .rating-number {
    font-family: "Hiragino Kaku Gothic Pro", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    color: #000000;
    text-align: center;
}

/* Row 2 - Cam nhạt hơn row 1 */
.ranking-table tbody tr.rank-row-2 {
    background-color: #ffe7ba;
}

/* Row 3 - Cam nhạt nhất */
.ranking-table tbody tr.rank-row-3 {
    background-color: #fff7e6;
}

/* Các row khác (không phải row 1) - Style chung */
.ranking-table tbody tr:not(.rank-row-1) .agency-name,
.ranking-table tbody tr:not(.rank-row-1) .features-text,
.ranking-table tbody tr:not(.rank-row-1) .area-text,
.ranking-table tbody tr:not(.rank-row-1) .rating-number {
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
}

/* remove inner border between 2位 rows */
.ranking-table tbody tr.double-row-top {
    border-bottom: none;
}

.ranking-table td {
    padding: 20px 12px;
    text-align: center;
    vertical-align: middle;
}

.rank-col {
    width: 80px;
}

.agency-col {
    width: 280px;
    text-align: left;
}

.features-col {
    width: 250px;
    text-align: left;
}

.rating-col {
    width: 180px;
}

.area-col {
    width: 150px;
}

.details-col {
    width: 150px;
}

.rank-cell {
    font-weight: 700;
}

.medal-icon {
    display: inline-block;
    width: auto;
    height: 80px;
    object-fit: contain;
    vertical-align: middle;
}

.rank-number {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
}

.agency-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    line-height: 1.5;
    text-align: left;
}

.features-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    text-align: left;
}

.rating-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stars {
    display: inline-flex;
    gap: 2px;
    align-items: center;
}

.star {
    font-size: 20px;
    line-height: 1;
    color: #ffc107;
}

.star-full {
    color: #ffc107;
}

.star-half {
    color: #ffc107;
    opacity: 0.7;
}

.star-empty {
    color: #e0e0e0;
}

.rating-number {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

.area-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: #666666;
}

.detail-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fa8c16;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
}

.detail-btn:hover {
    background-color: #d46b08;
    text-decoration: none;
    color: #ffffff;
    opacity: 0.9;
}

/* special styling for row 2 (two entries in one row) */
.agency-cell-double .agency-name:not(:last-child),
.features-cell-double .features-text:not(:last-child),
.area-cell-double .area-text:not(:last-child),
.details-cell-double .detail-btn:not(:last-child) {
    margin-bottom: 8px;
}

.rating-cell-double .rating-wrapper + .rating-wrapper {
    margin-top: 4px;
}

/* Responsive styles for ranking table */
@media (max-width: 768px) {
    .comparison-banner-content {
        padding: 0 15px;
    }

    .comparison-badge {
        font-size: 16px;
    }

    .ranking-title-section {
        padding: 24px 15px 20px;
    }

    .ranking-title {
        font-size: 24px;
    }

    .ranking-table-container {
        padding: 0 15px;
        margin-bottom: 40px;
    }

    .ranking-table {
        font-size: 12px;
    }

    .ranking-table th {
        font-size: 12px;
        padding: 12px 8px;
    }

    .ranking-table td {
        padding: 16px 8px;
    }

    .rank-col {
        width: 60px;
    }

    .agency-col {
        width: 200px;
    }

    .features-col {
        width: 180px;
    }

    .rating-col {
        width: 120px;
    }

    .area-col {
        width: 100px;
    }

    .details-col {
        width: 100px;
    }

    .agency-name {
        font-size: 13px;
    }

    .features-text {
        font-size: 11px;
    }

    .star {
        font-size: 16px;
    }

    .rating-number {
        font-size: 12px;
    }

    .area-text {
        font-size: 11px;
    }

    .detail-btn {
        padding: 8px 12px;
        font-size: 11px;
    }

    .medal-icon {
        font-size: 24px;
    }

    .rank-number {
        font-size: 14px;
    }
}

/* =============================== Ranking Detail Section =============================== */
.ranking-detail-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 32px;
    box-sizing: border-box;
}

.ranking-detail-container {
    width: 100%;
}

.ranking-detail-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-sizing: border-box;
    border: 2px solid #ff0000;
}

.ranking-detail-card-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    padding: 24px;
    background-color: #FF2D55;
    border-radius: 16px;
}

.ranking-detail-medal {
    width: 101.136px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranking-detail-medal-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ranking-detail-heading-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.ranking-detail-rank-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

.ranking-detail-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

.ranking-detail-body {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.ranking-detail-left {
    width: 615px;
    flex-shrink: 0;
}

.ranking-detail-image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9.681px;
    justify-content: flex-start;
    align-items: flex-start;
}

.ranking-detail-grid-item {
    width: calc((615px - 5 * 9.681px) / 6);
    height: 124.654px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.ranking-detail-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ranking-detail-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ranking-detail-feature-block {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ranking-detail-feature-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ff2d55;
    margin: 0 0 24px;
    line-height: normal;
}

.ranking-detail-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ranking-detail-feature-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.ranking-detail-feature-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
}

.ranking-detail-feature-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: normal;
    white-space: nowrap;
}

.ranking-detail-feature-divider {
    height: 1px;
    background-color: #ff2d55;
    margin: 16px 0;
    width: 100%;
}

.ranking-detail-description {
    margin: 0;
}

.ranking-detail-description-content {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.ranking-detail-description-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108.921px;
    height: 130px;
}

.ranking-detail-child-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(180deg) scaleY(-1);
    display: block;
}

.ranking-detail-description p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #2e2e2e;
    line-height: 1.5;
    margin: 0;
    letter-spacing: -0.308px;
    flex: 1;
    padding: 10px;
    box-sizing: border-box;
}

.ranking-detail-cta-wrapper {
    margin-top: 0;
}

.ranking-detail-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9.297px;
    padding: 11.156px 22.312px;
    background-color: #ff2d55;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0px 1.859px 0px 0px rgba(0, 0, 0, 0.04);
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.ranking-detail-cta-button:hover {
    background-color: #e0244a;
    text-decoration: none;
    opacity: 0.95;
}

.ranking-detail-cta-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22.312px;
    font-weight: 700;
    color: #ffffff;
    line-height: 29.749px;
    white-space: nowrap;
}

.ranking-detail-cta-icon {
    width: 22.312px;
    height: 22.312px;
    flex-shrink: 0;
    object-fit: contain;
}

/* =============================== Ranking Detail Section 2 (サレ夫探偵 & サレ妻探偵) =============================== */
.ranking-detail-section-2 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 32px;
    box-sizing: border-box;
}

.ranking-detail-container-2 {
    width: 100%;
}

.ranking-detail-card-2 {
    background-color: #ffffff;
    border: 3px solid #fa8c16;
    border-radius: 12px;
    padding: 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ranking-detail-2-top {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ranking-detail-2-medal {
    width: 113.72px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranking-detail-2-medal-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ranking-detail-2-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ranking-detail-2-service-card {
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
}

.ranking-detail-2-service-card-blue {
    background-color: #40a9ff;
}

.ranking-detail-2-service-card-orange {
    background-color: #fa8c16;
}

.ranking-detail-2-service-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ranking-detail-2-service-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

.ranking-detail-2-service-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

.ranking-detail-2-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #2e2e2e;
    line-height: normal;
    margin: 0;
}

.ranking-detail-2-buttons-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 32px;
    box-sizing: border-box;
}

.ranking-detail-2-trademarks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ranking-detail-2-trademark-image {
    width: 171px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.ranking-detail-2-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 406px;
    align-items: center;
}

.ranking-detail-2-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9.297px;
    padding: 11.156px 22.312px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0px 1.859px 0px 0px rgba(0, 0, 0, 0.04);
    transition: background-color 0.3s ease, opacity 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.ranking-detail-2-cta-button-blue {
    background-color: #40a9ff;
}

.ranking-detail-2-cta-button-blue:hover {
    background-color: #1890ff;
    text-decoration: none;
    opacity: 0.95;
}

.ranking-detail-2-cta-button-orange {
    background-color: #fa8c16;
}

.ranking-detail-2-cta-button-orange:hover {
    background-color: #d46b08;
    text-decoration: none;
    opacity: 0.95;
}

.ranking-detail-2-cta-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22.312px;
    font-weight: 700;
    color: #ffffff;
    line-height: 29.749px;
    white-space: nowrap;
}

.ranking-detail-2-cta-icon {
    width: 22.312px;
    height: 22.312px;
    flex-shrink: 0;
    object-fit: contain;
}

.ranking-detail-2-divider {
    height: 1px;
    background-color: transparent;
    border: none;
    margin: 0;
    width: 100%;
    border-top: 1px dashed #fa8c16;
}

.ranking-detail-2-features-block {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.ranking-detail-2-features-image {
    width: 322px;
    height: 298px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.ranking-detail-2-features-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ranking-detail-2-features-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ranking-detail-2-features-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.ranking-detail-2-features-title-blue {
    color: #1890ff;
}

.ranking-detail-2-features-title-orange {
    color: #fa8c16;
}

.ranking-detail-2-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ranking-detail-2-features-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ranking-detail-2-features-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
}

.ranking-detail-2-features-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: normal;
}

.ranking-detail-2-features-divider {
    height: 0;
    width: 100%;
    margin: 0;
    border: none;
}

.ranking-detail-2-features-divider-blue {
    border-top: 1px dashed #1890ff;
}

.ranking-detail-2-features-divider-orange {
    border-top: 1px dashed #fa8c16;
}

/* =============================== Ranking Detail Section 3 (ひまわり探偵事務所) =============================== */
.ranking-detail-section-3 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 32px;
    box-sizing: border-box;
}

.ranking-detail-container-3 {
    width: 100%;
}

.ranking-detail-card-3 {
    background-color: #ffffff;
    border: 3px solid #ffec3d;
    border-radius: 12px;
    padding: 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ranking-detail-3-header {
    background-color: #ad8b00;
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    gap: 20px;
    align-items: center;
}

.ranking-detail-3-medal {
    width: 109.487px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranking-detail-3-medal-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ranking-detail-3-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.ranking-detail-3-title-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.ranking-detail-3-title-icon {
    width: 22px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 13.06px;
}

.ranking-detail-3-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    padding-left: 32px;
}

.ranking-detail-3-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

.ranking-detail-3-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ranking-detail-3-content-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 8px 32px;
    box-sizing: border-box;
}

.ranking-detail-3-icon {
    width: 130px;
    height: 130px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranking-detail-3-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.ranking-detail-3-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    box-sizing: border-box;
}

.ranking-detail-3-description p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #2e2e2e;
    line-height: normal;
    margin: 0 0 8px;
}

.ranking-detail-3-description p:last-child {
    margin-bottom: 0;
}

.ranking-detail-3-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 32px;
}

.ranking-detail-3-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9.297px;
    padding: 11.156px 22.312px;
    background-color: #ad8b00;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0px 1.859px 0px 0px rgba(0, 0, 0, 0.04);
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.ranking-detail-3-cta-button:hover {
    background-color: #8b6f00;
    text-decoration: none;
    opacity: 0.95;
}

.ranking-detail-3-cta-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22.312px;
    font-weight: 700;
    color: #ffffff;
    line-height: 29.749px;
    white-space: nowrap;
}

.ranking-detail-3-cta-icon {
    width: 22.312px;
    height: 22.312px;
    flex-shrink: 0;
    object-fit: contain;
}

.ranking-detail-3-divider {
    height: 1px;
    width: 100%;
    border-top: 3px dashed #AD8B00;
    margin: 0;
}

/* =============================== Ranking Detail Section 4 (弁護士推奨あい探偵事務所) =============================== */
.ranking-detail-section-4 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 32px;
    box-sizing: border-box;
}

.ranking-detail-container-4 {
    width: 100%;
}

.ranking-detail-card-4 {
    background-color: #ffffff;
    border: 3px solid #8b4513;
    border-radius: 12px;
    padding: 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ranking-detail-4-header {
    background-color: #ff2d55;
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    gap: 20px;
    align-items: center;
}

.ranking-detail-4-medal {
    width: 109.487px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranking-detail-4-medal-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ranking-detail-4-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.ranking-detail-4-title-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.ranking-detail-4-title-icon {
    width: 22px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 13.06px;
}

.ranking-detail-4-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    padding-left: 32px;
}

.ranking-detail-4-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

.ranking-detail-4-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ranking-detail-4-content-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 8px 32px;
    box-sizing: border-box;
    justify-content: space-between;
}

.ranking-detail-4-icon {
    width: 130px;
    height: 130px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranking-detail-4-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ranking-detail-4-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    box-sizing: border-box;
}

.ranking-detail-4-description p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #2e2e2e;
    line-height: normal;
    margin: 0 0 8px;
}

.ranking-detail-4-description p:last-child {
    margin-bottom: 0;
}

.ranking-detail-4-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.ranking-detail-4-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9.297px;
    padding: 11.156px 22.312px;
    background-color: #ff2d55;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0px 1.859px 0px 0px rgba(0, 0, 0, 0.04);
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.ranking-detail-4-cta-button:hover {
    background-color: #e0244a;
    text-decoration: none;
    opacity: 0.95;
}

.ranking-detail-4-cta-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22.312px;
    font-weight: 700;
    color: #ffffff;
    line-height: 29.749px;
    white-space: nowrap;
}

.ranking-detail-4-cta-icon {
    width: 22.312px;
    height: 22.312px;
    flex-shrink: 0;
    object-fit: contain;
}

/* =============================== Ranking Detail Section 5 (ベリーグッド探偵事務所) =============================== */
.ranking-detail-section-5 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 32px;
    box-sizing: border-box;
}

.ranking-detail-container-5 {
    width: 100%;
}

.ranking-detail-card-5 {
    background-color: #ffffff;
    border: 3px solid #40a9ff;
    border-radius: 12px;
    padding: 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ranking-detail-5-header {
    background-color: #fa8c16;
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    gap: 20px;
    align-items: center;
}

.ranking-detail-5-medal {
    width: 109.487px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranking-detail-5-medal-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ranking-detail-5-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.ranking-detail-5-title-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.ranking-detail-5-title-icon {
    width: 22px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 13.06px;
}

.ranking-detail-5-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    padding-left: 32px;
}

.ranking-detail-5-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

.ranking-detail-5-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ranking-detail-5-content-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 8px 32px;
    box-sizing: border-box;
    justify-content: space-between;
}

.ranking-detail-5-icon {
    width: 130px;
    height: 130px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranking-detail-5-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ranking-detail-5-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    box-sizing: border-box;
}

.ranking-detail-5-description p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #2e2e2e;
    line-height: normal;
    margin: 0 0 8px;
}

.ranking-detail-5-description p:last-child {
    margin-bottom: 0;
}

.ranking-detail-5-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.ranking-detail-5-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9.297px;
    padding: 11.156px 22.312px;
    background-color: #fa8c16;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0px 1.859px 0px 0px rgba(0, 0, 0, 0.04);
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.ranking-detail-5-cta-button:hover {
    background-color: #d46b08;
    text-decoration: none;
    opacity: 0.95;
}

.ranking-detail-5-cta-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22.312px;
    font-weight: 700;
    color: #ffffff;
    line-height: 29.749px;
    white-space: nowrap;
}

.ranking-detail-5-cta-icon {
    width: 22.312px;
    height: 22.312px;
    flex-shrink: 0;
    object-fit: contain;
}

/* =============================== Ranking Detail Section 6 (ピーチ探偵社) =============================== */
.ranking-detail-section-6 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 32px;
    box-sizing: border-box;
}

.ranking-detail-container-6 {
    width: 100%;
}

.ranking-detail-card-6 {
    background-color: #ffffff;
    border: 3px solid #d46b08;
    border-radius: 12px;
    padding: 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ranking-detail-6-header {
    background-color: #d46b08;
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    gap: 20px;
    align-items: center;
}

.ranking-detail-6-medal {
    width: 109.487px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranking-detail-6-medal-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ranking-detail-6-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.ranking-detail-6-title-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.ranking-detail-6-title-icon {
    width: 22px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 13.06px;
}

.ranking-detail-6-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    padding-left: 32px;
}

.ranking-detail-6-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

.ranking-detail-6-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ranking-detail-6-content-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 8px 32px;
    box-sizing: border-box;
    justify-content: space-between;
}

.ranking-detail-6-icon {
    width: 130px;
    height: 130px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranking-detail-6-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ranking-detail-6-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    box-sizing: border-box;
}

.ranking-detail-6-description p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #2e2e2e;
    line-height: normal;
    margin: 0 0 8px;
}

.ranking-detail-6-description p:last-child {
    margin-bottom: 0;
}

.ranking-detail-6-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.ranking-detail-6-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9.297px;
    padding: 11.156px 22.312px;
    background-color: #d46b08;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0px 1.859px 0px 0px rgba(0, 0, 0, 0.04);
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.ranking-detail-6-cta-button:hover {
    background-color: #b85a06;
    text-decoration: none;
    opacity: 0.95;
}

.ranking-detail-6-cta-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22.312px;
    font-weight: 700;
    color: #ffffff;
    line-height: 29.749px;
    white-space: nowrap;
}

.ranking-detail-6-cta-icon {
    width: 22.312px;
    height: 22.312px;
    flex-shrink: 0;
    object-fit: contain;
}

/* More Button Below Ranking 6 */
.ranking-6-more-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 32px;
}

.ranking-6-more-btn {
    display: inline-block;
    padding: 19px 32px;
    border-radius: 12px;
    background-color: #52c41a;
    border: 1px solid #52c41a;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    cursor: pointer;
    outline: none;
}

.ranking-6-more-btn:hover {
    background-color: #73d13d;
    border-color: #73d13d;
    text-decoration: none;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(82, 196, 26, 0.3);
}

.ranking-6-more-btn:active {
    transform: translateY(0);
}

.ranking-6-more-btn:hover {
    background-color: #73d13d;
    border-color: #73d13d;
    text-decoration: none;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(82, 196, 26, 0.3);
}

/* =============================== Ranking Detail Section Common (7-10) =============================== */
/* Common Section Styles */
.ranking-detail-section-7,
.ranking-detail-section-8,
.ranking-detail-section-9,
.ranking-detail-section-10 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 32px;
    box-sizing: border-box;
}

.ranking-detail-container-7,
.ranking-detail-container-8,
.ranking-detail-container-9,
.ranking-detail-container-10 {
    width: 100%;
}

.ranking-detail-card-7,
.ranking-detail-card-8,
.ranking-detail-card-9,
.ranking-detail-card-10 {
    background-color: #ffffff;
    border: 3px solid;
    border-radius: 12px;
    padding: 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ranking-detail-card-7 {
    border-color: #872229;
}

.ranking-detail-card-8 {
    border-color: #0B00A0;
}

.ranking-detail-card-9 {
    border-color: #EA638E;
}

.ranking-detail-card-10 {
    border-color: #FFA901;
}

/* Common Header Styles */
.ranking-detail-7-header,
.ranking-detail-8-header,
.ranking-detail-9-header,
.ranking-detail-10-header {
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    gap: 20px;
    align-items: center;
}

.ranking-detail-7-header {
    background-color: #872229;
}

.ranking-detail-8-header {
    background-color: #0B00A0;
}

.ranking-detail-9-header {
    background-color: #EA638E;
}

.ranking-detail-10-header {
    background-color: #FFA901;
}

/* Common Medal Styles */
.ranking-detail-7-medal,
.ranking-detail-8-medal,
.ranking-detail-9-medal,
.ranking-detail-10-medal {
    width: 108.891px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranking-detail-7-medal-icon,
.ranking-detail-8-medal-icon,
.ranking-detail-9-medal-icon,
.ranking-detail-10-medal-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Common Header Content Styles */
.ranking-detail-7-header-content,
.ranking-detail-8-header-content,
.ranking-detail-9-header-content,
.ranking-detail-10-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.ranking-detail-7-title-wrapper,
.ranking-detail-8-title-wrapper,
.ranking-detail-9-title-wrapper,
.ranking-detail-10-title-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.ranking-detail-7-title,
.ranking-detail-8-title,
.ranking-detail-9-title,
.ranking-detail-10-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

.ranking-detail-7-subtitle,
.ranking-detail-8-subtitle,
.ranking-detail-9-subtitle,
.ranking-detail-10-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

/* Common Body Styles */
.ranking-detail-7-body,
.ranking-detail-8-body,
.ranking-detail-9-body,
.ranking-detail-10-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ranking-detail-7-content-wrapper,
.ranking-detail-8-content-wrapper,
.ranking-detail-9-content-wrapper,
.ranking-detail-10-content-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 8px 32px;
    box-sizing: border-box;
    justify-content: space-between;
}

.ranking-detail-7-image-wrapper,
.ranking-detail-8-image-wrapper,
.ranking-detail-9-image-wrapper,
.ranking-detail-10-image-wrapper {
    width: 247px;
    height: 228px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranking-detail-7-image,
.ranking-detail-8-image,
.ranking-detail-9-image,
.ranking-detail-10-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Common Description Styles */
.ranking-detail-7-description,
.ranking-detail-8-description,
.ranking-detail-9-description,
.ranking-detail-10-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    box-sizing: border-box;
    min-width: 0;
}

.ranking-detail-7-description p,
.ranking-detail-8-description p,
.ranking-detail-9-description p,
.ranking-detail-10-description p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #2e2e2e;
    line-height: 1.5;
    margin: 0 0 8px;
    letter-spacing: -0.352px;
}

.ranking-detail-7-description p:last-child,
.ranking-detail-8-description p:last-child,
.ranking-detail-9-description p:last-child {
    margin-bottom: 0;
}

.ranking-detail-10-description p:last-of-type {
    margin-bottom: 16px;
}

/* Common CTA Styles */
.ranking-detail-7-cta-wrapper,
.ranking-detail-8-cta-wrapper,
.ranking-detail-9-cta-wrapper,
.ranking-detail-10-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.ranking-detail-7-cta-button,
.ranking-detail-8-cta-button,
.ranking-detail-9-cta-button,
.ranking-detail-10-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9.297px;
    padding: 11.156px 22.312px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0px 1.859px 0px 0px rgba(0, 0, 0, 0.04);
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.ranking-detail-7-cta-button {
    background-color: #872229;
}

.ranking-detail-7-cta-button:hover {
    background-color: #6b1a1f;
    text-decoration: none;
    opacity: 0.95;
}

.ranking-detail-8-cta-button {
    background-color: #0B00A0;
}

.ranking-detail-8-cta-button:hover {
    background-color: #08007a;
    text-decoration: none;
    opacity: 0.95;
}

.ranking-detail-9-cta-button {
    background-color: #EA638E;
}

.ranking-detail-9-cta-button:hover {
    background-color: #d44d75;
    text-decoration: none;
    opacity: 0.95;
}

.ranking-detail-10-cta-button {
    background-color: #FFA901;
}

.ranking-detail-10-cta-button:hover {
    background-color: #e69801;
    text-decoration: none;
    opacity: 0.95;
}

.ranking-detail-7-cta-text,
.ranking-detail-8-cta-text,
.ranking-detail-9-cta-text,
.ranking-detail-10-cta-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22.312px;
    font-weight: 700;
    color: #ffffff;
    line-height: 29.749px;
    white-space: nowrap;
}

.ranking-detail-7-cta-icon,
.ranking-detail-8-cta-icon,
.ranking-detail-9-cta-icon,
.ranking-detail-10-cta-icon {
    width: 22.312px;
    height: 22.312px;
    flex-shrink: 0;
    object-fit: contain;
}

/* =============================== Ranking Detail Section 10 Specific Styles =============================== */

.ranking-detail-10-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 16px;
}

.ranking-detail-10-features-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #2e2e2e;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.ranking-detail-10-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.ranking-detail-10-feature-item:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 12px;
    margin-bottom: 4px;
}

.ranking-detail-10-feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}

.ranking-detail-10-feature-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #2e2e2e;
    line-height: 1.5;
}

.ranking-detail-10-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.ranking-detail-10-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9.297px;
    padding: 11.156px 22.312px;
    background-color: #FFA901;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0px 1.859px 0px 0px rgba(0, 0, 0, 0.04);
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.ranking-detail-10-cta-button:hover {
    background-color: #e69801;
    text-decoration: none;
    opacity: 0.95;
}

.ranking-detail-10-cta-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22.312px;
    font-weight: 700;
    color: #ffffff;
    line-height: 29.749px;
    white-space: nowrap;
}

.ranking-detail-10-cta-icon {
    width: 22.312px;
    height: 22.312px;
    flex-shrink: 0;
    object-fit: contain;
}

/* =============================== Evaluation Criteria Section =============================== */
.evaluation-criteria-section {
    background-color: #FAFAFA;
    padding: 128px 448px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
}

.evaluation-criteria-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.evaluation-criteria-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
}

.evaluation-criteria-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #fa8c16;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    margin: 0;
}

.evaluation-criteria-location {
    color: #fa8c16;
}

.evaluation-criteria-table-wrapper {
    box-sizing: border-box;
    max-width: 1040px;
    width: 100%;
    flex-shrink: 0;
    box-shadow: 0px 4px 20px 0px rgba(145, 213, 255, 0.25);
}

.evaluation-criteria-table {
    width: 100%;
    max-width: 1040px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 24px;
    overflow: hidden;
    background-color: #ffffff;
}

.evaluation-criteria-header-row {
    width: 100%;
}

.evaluation-criteria-header-cell {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 28px;
    text-decoration: underline;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding: 24px;
    box-sizing: border-box;
    background-color: #fa8c16;
    white-space: nowrap;
    text-align: left;
}

.evaluation-criteria-header-cell-left {
    width: 278px;
    border-top-left-radius: 24px;
}

.evaluation-criteria-header-cell-right {
    border-top-right-radius: 24px;
}

.evaluation-criteria-row {
    width: 100%;
}

.evaluation-criteria-label-cell {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 28px;
    text-decoration: underline;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding: 24px;
    box-sizing: border-box;
    width: 278px;
    white-space: nowrap;
    text-align: left;
    border-bottom: 1px solid #fa8c16;
}

.evaluation-criteria-row-last .evaluation-criteria-label-cell {
    border-bottom: none;
    border-bottom-left-radius: 24px;
}

.evaluation-criteria-content-cell {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 28px;
    padding: 24px;
    box-sizing: border-box;
    white-space: nowrap;
    text-align: left;
    border-bottom: 1px solid #fa8c16;
}

.evaluation-criteria-row-last .evaluation-criteria-content-cell {
    border-bottom: none;
    border-bottom-right-radius: 24px;
}

/* =============================== FAQ Section =============================== */
.faq-section {
    background-color: #fa8c16;
    padding: 128px 448px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    justify-content: center;
    max-width: 1024px;
    width: 100%;
    box-sizing: border-box;
}

.faq-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
}

.faq-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #ffec3d;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    margin: 0;
}

.faq-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
    flex-shrink: 0;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.faq-question-row {
    display: flex;
    align-items: flex-start;
    width: 100%;
    flex-shrink: 0;
}

.faq-answer-row {
    display: flex;
    align-items: flex-start;
    width: 100%;
    border-top: 1px solid #cccccc;
    padding-top: 12px;
    padding-bottom: 12px;
    flex-shrink: 0;
}

.faq-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    padding-top: 9.2px;
    padding-bottom: 9.8px;
    box-sizing: border-box;
    flex-shrink: 0;
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-size: 18px;
    line-height: 30.6px;
    text-align: center;
    white-space: nowrap;
    font-style: normal;
}

.faq-badge-q {
    background-color: #d46b08;
    color: #ffffff;
}

.faq-badge-a {
    background-color: #f3f3f3;
    color: #333333;
}

.faq-question-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 20px;
    padding-right: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    flex: 1;
    box-sizing: border-box;
    flex-shrink: 0;
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-size: 18px;
    line-height: 30.6px;
    color: #333333;
    white-space: nowrap;
    font-style: normal;
}

.faq-answer-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 20px;
    padding-right: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    flex: 1;
    box-sizing: border-box;
    flex-shrink: 0;
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-size: 18px;
    line-height: 30.6px;
    color: #333333;
    font-style: normal;
}

/* Hero Guide Section */
.hero-guide-section {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 128px 50px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    background-color: #ffffff;
}

.hero-guide-bg-circle {
    position: absolute;
    width: 1350px;
    height: 1350px;
    z-index: 0;
}

.hero-guide-bg-circle-left {
    left: -878px;
    top: -836.94px;
    background: radial-gradient(circle, rgba(255, 231, 186, 0.3) 0%, transparent 70%);
}

.hero-guide-bg-circle-right {
    left: 1185px;
    top: 1528.06px;
    background: radial-gradient(circle, rgba(255, 231, 186, 0.3) 0%, transparent 70%);
}

.hero-guide-container {
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 1154px;
    box-sizing: border-box;
}

.hero-guide-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
}

.hero-guide-badge {
    background-color: #40a9ff;
    border-radius: 1000px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
}

.hero-guide-badge-text {
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
    white-space: pre;
}

.hero-guide-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-guide-main-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.4;
    color: #fa8c16;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

.hero-guide-location {
    color: #fa8c16;
}

.hero-guide-subtitle {
    display: flex;
    flex-direction: column;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    text-align: center;
    width: 100%;
    margin: 0;
}

.hero-guide-subtitle p {
    margin: 0;
}

.hero-guide-description {
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    text-align: center;
    width: 100%;
}

.hero-guide-description p {
    margin: 0;
}

.hero-guide-highlight-red {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #873800;
}

.hero-guide-main-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    align-items: center;
}

.hero-guide-point {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: flex-start;
}

.hero-guide-point-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #fa8c16;
    margin: 0 0 0 0;
}

.hero-guide-point-text {
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    color: #000000;
    margin: 24px 0 0 0;
}

.hero-guide-text-highlight {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #ad4e00;
}

.hero-guide-comparison-box {
    box-shadow: 0px 4px 20px 0px rgba(145, 213, 255, 0.25);
    width: 100%;
    margin-top: 24px;
    margin-bottom: 0;
}

.hero-guide-comparison-header {
    display: flex;
    width: 100%;
}

.hero-guide-comparison-header-cell {
    flex: 1;
    padding: 24px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.hero-guide-comparison-header-good {
    background-color: #fa8c16;
}

.hero-guide-comparison-header-bad {
    background-color: #fa8c16;
}

.hero-guide-comparison-header-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #ffffff;
    text-decoration: underline;
    margin: 0;
    white-space: pre;
}

.hero-guide-comparison-row {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #91d5ff;
}

.hero-guide-comparison-cell {
    flex: 1;
    padding: 24px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.hero-guide-comparison-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-decoration: underline;
    margin: 0;
    white-space: pre;
}

.hero-guide-comparison-text-good {
    color: #52c41a;
}

.hero-guide-comparison-text-bad {
    color: #ff4d4f;
}

.hero-guide-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #000000;
    margin: 24px 0 0 0;
}

.hero-guide-note-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.hero-guide-note-highlight {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #ad4e00;
}

.hero-guide-summary-box {
    background-color: #fff7e6;
    border: 1px solid #ffa940;
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-guide-summary-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    text-decoration: underline;
    margin: 0;
    width: 100%;
}

.hero-guide-summary-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.hero-guide-summary-item {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.hero-guide-summary-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.hero-guide-summary-text {
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    color: #000000;
    margin: 0;
    white-space: pre;
}

.hero-guide-cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-guide-cta-button {
    background-color: #52c41a;
    border: 1px solid #52c41a;
    border-radius: 24px;
    padding: 19px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
}

.hero-guide-cta-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    text-align: center;
    white-space: pre;
    margin: 0;
}

.hero-guide-image-left {
    position: relative;
    width: 251px;
    height: 300px;
    z-index: 1;
    flex-shrink: 0;
}

.hero-guide-image-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-guide-image-right {
    position: relative;
    width: 317px;
    height: 362px;
    z-index: 1;
    flex-shrink: 0;
    align-self: flex-end;
}

.hero-guide-image-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Summary Hero Section */
.summary-hero-section {
    background-color: #fff7e6;
    width: 100%;
    box-sizing: border-box;
}

.summary-hero-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 128px 448px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    box-sizing: border-box;
}

.summary-hero-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.4;
    color: #fa8c16;
    text-align: center;
    margin: 0;
    padding: 0;
}

.summary-hero-text {
    width: 100%;
    text-align: center;
}

.summary-hero-text p {
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    margin: 0;
    padding: 0;
}

.summary-hero-text .summary-text-bold {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #873800;
}

.summary-hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.summary-btn {
    display: inline-block;
    padding: 13px 25px;
    border-radius: 24px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.summary-btn:hover {
    opacity: 0.9;
}

.summary-btn-green {
    background-color: #52c41a;
    border: 1px solid #52c41a;
}

.summary-btn-orange {
    background-color: #fa8c16;
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.04);
}

.summary-hero-image-left {
    position: absolute;
    left: 104px;
    top: 342.8px;
    width: 370px;
    height: 445px;
    z-index: 1;
}

.summary-hero-image-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.summary-hero-image-right {
    position: absolute;
    left: 1318px;
    top: 340.8px;
    width: 488px;
    height: 472px;
    z-index: 1;
}

.summary-hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Detective Columns Section */
.detective-columns-section {
    width: 100%;
    box-sizing: border-box;
    padding: 96px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
}

.detective-columns-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    max-width: 1656px;
    width: 100%;
    box-sizing: border-box;
}

.detective-columns-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.detective-columns-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.4;
    color: #fa8c16;
    margin: 0;
    width: 100%;
}

.detective-columns-description {
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    width: 100%;
}

.detective-columns-description p {
    margin: 0;
}

.detective-columns-desc-normal {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #2e2e2e;
}

.detective-columns-desc-highlight {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #fa8c16;
}

.detective-columns-grid {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    width: 100%;
    justify-content: center;
}

.detective-column-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.detective-column-card-link:hover .detective-column-card {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.detective-column-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    width: 336px;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.detective-column-image {
    background-color: #000000;
    height: 245px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.detective-column-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 428px;
    height: 285px;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.detective-column-placeholder {
    width: 100%;
    height: 100%;
    background-color: #cccccc;
}

.detective-column-card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #1c1c1c;
    margin: 0;
    width: 100%;
    min-height: 96px;
}

.detective-column-card-description {
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    width: 100%;
    height: 54px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.detective-column-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    gap: 0;
}

.detective-column-author-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #ec6400;
    margin: 0;
    text-align: right;
}

.detective-column-author-office {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #ec6400;
    margin: 0;
    text-align: right;
}

.detective-columns-footer {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
}

.detective-columns-more-btn {
    background-color: #fa8c16;
    border-radius: 24px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}

.detective-columns-more-btn-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
    text-align: center;
    white-space: pre;
    margin: 0;
}

/* =============================== Company Section =============================== */
.company-section {
    background-color: #fff7e6;
    padding: 128px 248px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
}

.company-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1440px;
    box-sizing: border-box;
}

.company-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 0 48px;
    box-sizing: border-box;
    width: 100%;
}

.company-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.4;
    color: #fa8c16;
    text-align: center;
    margin: 0;
    width: 100%;
}

.company-image-wrapper {
    height: 568px;
    overflow: hidden;
    position: relative;
    width: 886px;
    max-width: 100%;
    box-sizing: border-box;
}

.company-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Responsive styles for company section */
@media (max-width: 1440px) {
    .company-section {
        padding: 128px 128px;
    }
}

@media (max-width: 1024px) {
    .company-section {
        padding: 96px 64px;
    }
    
    .company-title {
        font-size: 48px;
    }
    
    .company-image-wrapper {
        height: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .company-section {
        padding: 64px 32px;
    }
    
    .company-title {
        font-size: 40px;
    }
    
    .company-title-wrapper {
        padding: 0 24px;
    }
    
    .company-container {
        gap: 20px;
    }
}

/* =============================== Company Info Table Section =============================== */
.company-info-section {
    padding: 128px 448px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
}

.company-info-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1440px;
    box-sizing: border-box;
}

.company-info-table {
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0px 4px 20px 0px rgba(145, 213, 255, 0.25);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.company-info-row {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #ffa940;
}

.company-info-row:last-child {
    border-bottom: none;
}

.company-info-header-row {
    background-color: #fa8c16;
    border-bottom: none;
}

.company-info-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    padding: 24px;
    box-sizing: border-box;
    width: 433px;
    flex-shrink: 0;
    white-space: nowrap;
}

.company-info-header-label {
    color: #ffffff;
}

.company-info-value {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    padding: 24px;
    box-sizing: border-box;
    flex: 1;
    min-width: 0;
}

.company-info-header-value {
    color: #ffffff;
}

/* Responsive styles for company info section */
@media (max-width: 1440px) {
    .company-info-section {
        padding: 128px 248px;
    }
}

@media (max-width: 1024px) {
    .company-info-section {
        padding: 96px 64px;
    }
    
    .company-info-label {
        width: 300px;
        font-size: 18px;
    }
    
    .company-info-value {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .company-info-section {
        padding: 64px 32px;
    }
    
    .company-info-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .company-info-label {
        width: 100%;
        padding: 20px 20px 12px;
        font-size: 18px;
    }
    
    .company-info-value {
        padding: 0 20px 20px;
        font-size: 16px;
        width: 100%;
    }
    
    .company-info-header-row {
        flex-direction: row;
    }
    
    .company-info-header-label {
        padding: 24px;
    }
    
    .company-info-header-value {
        padding: 24px;
    }
}

/* =============================== Summary & Next Action Section =============================== */
.summary-action-section {
    background-color: #ffffff;
    padding: 128px 448px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
}

.summary-action-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.summary-action-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.summary-action-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.summary-action-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.4;
    color: #fa8c16;
    text-align: center;
    margin: 0;
    white-space: pre;
    width: 100%;
}

.summary-action-description {
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.summary-action-description p {
    margin: 0;
}

.summary-action-columns {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.summary-action-column {
    flex: 1;
    display: flex;
    gap: 12px;
    align-items: center;
    min-width: 0;
    box-sizing: border-box;
}

.summary-action-column-bar {
    width: 15px;
    flex-shrink: 0;
    align-self: stretch;
}

.summary-action-column-bar-green {
    background-color: #52c41a;
}

.summary-action-column-bar-orange {
    background-color: #fa8c16;
}

.summary-action-column-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    box-sizing: border-box;
}

.summary-action-column-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 32px;
    text-align: center;
    white-space: pre;
    margin: 0;
}

.summary-action-column-title-green {
    color: #73d13d;
}

.summary-action-column-title-orange {
    color: #fa8c16;
}

.summary-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.summary-action-button {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    text-decoration: none;
    box-sizing: border-box;
    overflow: hidden;
}

.summary-action-button-green {
    background-color: #52c41a;
    border: 1px solid #52c41a;
    padding: 13px 25px;
}

.summary-action-button-orange {
    background-color: #fa8c16;
    border: 1px solid #fa8c16;
    padding: 12px 24px;
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.04);
}

.summary-action-button-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
    text-align: center;
    white-space: pre;
    margin: 0;
}

/* =============================== Topic Hero Section =============================== */
/* =============================== Privacy Policy Hero Section =============================== */
.policy-hero-section {
    box-sizing: border-box;
    width: 100%;
    padding: 48px 132px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.policy-hero-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.policy-hero-box {
    background-color: #fa8c16;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 48px;
    border-radius: 24px;
    width: 100%;
}

.policy-hero-title {
    font-family: 'Dela Gothic One', sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 0;
    color: #ffffff;
    margin: 0;
    white-space: pre;
}

.policy-hero-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #ffffff;
    width: 100%;
    margin-top: 30px;
}

.policy-hero-description p {
    margin: 0 0 0 0;
}

.policy-hero-description p:last-child {
    margin-bottom: 0;
}

/* =============================== Privacy Policy Content Section =============================== */
.policy-content-section {
    box-sizing: border-box;
    width: 100%;
    padding: 128px 448px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.policy-content-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.policy-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.policy-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.policy-section-header {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 0;
}

.policy-section-bar {
    background-color: #ffa940;
    width: 15px;
    height: 64px;
    flex-shrink: 0;
}

.policy-section-title {
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 32px;
    color: #000000;
    margin: 0;
    white-space: pre;
}

.policy-section-content {
    font-family: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    color: #333333;
    width: 100%;
    margin-top: 30px;
}

.policy-section-content p {
    margin: 0 0 0 0;
}

.policy-section-content p:last-child {
    margin-bottom: 0;
}

.policy-list {
    list-style: disc;
    margin: 0;
    padding-left: 0;
}

.policy-list li {
    margin-left: 36px;
    margin-bottom: 0;
    line-height: 32px;
}

.policy-list li:last-child {
    margin-bottom: 0;
}

/* ================================== begin breacum ================================== */

/* breacum */
.contact-section-breadcrumb-container {
    background: #F7F7F7;

}

.contact-section-banner {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.contact-section-banner .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-section-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.contact-section-banner-content .section-title {
    color: #FFFFFF;
}

.contact-section-breadcrumb {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    align-items: center;
    background: #F7F7F7;
    /* padding: 10px 20px; */
}

.contact-section-breadcrumb .breadcrumb-link,
.contact-section-breadcrumb .breadcrumb-home-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.contact-section-breadcrumb .breadcrumb-link:hover,
.contact-section-breadcrumb .breadcrumb-home-link:hover {
    opacity: 0.7;
}

.breadcrumb-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-home-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .contact-section-breadcrumb {
        gap: 10px;
        padding: 10px 20px;
        /* flex-wrap: wrap; */
        /* Allow items to wrap to next line when out of space */
        align-items: flex-start;
    }

    .contact-section-breadcrumb p {
        margin: 0;
        padding: 0;
    }

    .breadcrumb-title {
        width: 40%;
        white-space: nowrap;
        text-align: center;
    }


}

/* ================================== end breacum ================================== */