:root {
    --navy: #002B5B;
    --gold: #F3A000;
    --gold-hover: #e09400;
    --beige: #F8F4F0;
    --offwhite: #FDF5E6;
    --text-main: #333;
    --text-light: #666;
    --shadow: 0 10px 30px rgba(0, 43, 91, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-main);
    line-height: 1.8;
    background: var(--offwhite);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

body.slj-body {
    padding-top: 90px;
    background: var(--offwhite);
}

body.slj-body main {
    padding-top: 20px;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.bg-white {
    background-color: #fff;
}

.bg-beige {
    background-color: var(--beige);
}

.bg-dark {
    background-color: var(--navy);
    color: #fff;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: var(--offwhite);
    border-bottom: 1px solid #e0dbca;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 80px;
    width: auto;
}

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

.nav-list li a {
    color: #333;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
}

.bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--navy);
    transition: all 0.3s ease;
}

.page-en,
.service-subtitle {
    display: block;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.page-jp,
.service-title {
    color: var(--navy);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
}

.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtext,
.section-subtext-top {
    max-width: 700px;
    margin: 18px auto 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.message-box,
.message-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 2;
}

.highlight-underline {
    border-bottom: 3px solid var(--gold);
    padding-bottom: 2px;
}

.floating-cta {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--navy);
    color: #fff;
    border: 2px solid var(--navy);
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 43, 91, 0.3);
    font-weight: 700;
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-cta:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-5px);
}

.floating-cta-text {
    font-size: 0.95rem;
}

.cta-icon {
    width: 20px;
    height: 20px;
}

.btn-main-solid,
.btn-sub-outline {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.btn-main-solid {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(243, 160, 0, 0.3);
}

.btn-main-solid:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
}

.btn-sub-outline {
    background: #fff;
    color: var(--gold);
}

.btn-sub-outline:hover {
    background: var(--offwhite);
    transform: translateY(-3px);
}

.slj-hero {
    background: linear-gradient(135deg, var(--offwhite) 0%, #ffffff 100%);
    padding: 120px 0;
    text-align: center;
}

.hero-title {
    color: var(--navy);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.hero-lead {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.target-grid-quad {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: stretch;
}

.target-card-v2 {
    background: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 43, 91, 0.05);
    border-top: 6px solid var(--gold);
}

.target-card-v2 h3 {
    position: relative;
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.target-card-v2 h3::after {
    content: "";
    position: absolute;
    left: 10%;
    bottom: 0;
    width: 80%;
    height: 1px;
    background: #eee;
}

.target-card-v2 ul {
    list-style: none;
}

.target-card-v2 li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 15px;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.6;
    letter-spacing: -0.02em;
    word-break: break-word;
}

.target-card-v2 li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 2px;
    color: #333;
    font-size: 0.6rem;
    opacity: 0.8;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    background: #fff;
    padding: 40px 30px;
    border: 1px solid transparent;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.service-card .num {
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--offwhite);
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    transition: color 0.3s ease;
}

.service-card:hover .num {
    color: var(--gold);
    opacity: 0.2;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 10px 0 20px;
}

.service-card p {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    font-size: 0.95rem;
}

.mid-cta {
    margin-top: 60px;
    padding: 40px;
    background: var(--offwhite);
    border-radius: 12px;
}

.mid-cta p {
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.flow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.flow-box {
    position: relative;
    width: 100%;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.flow-box.before {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.flow-box.after {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.flow-badge,
.flow-badge-gold {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
}

.flow-badge {
    padding: 5px 20px;
    background: #555;
    color: #fff;
}

.flow-badge-gold {
    padding: 8px 30px;
    background: var(--gold);
    color: #fff;
    box-shadow: 0 4px 10px rgba(243, 160, 0, 0.3);
}

.flow-steps {
    margin: 15px 0;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.8;
}

.highlight-text {
    display: inline-block;
    padding: 0 10px;
    color: var(--gold);
    font-size: 1.5rem;
    border-bottom: 2px solid var(--gold);
}

.flow-arrow {
    color: var(--gold);
    font-size: 2rem;
}

.results-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.res-circle-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
}

.res-circle-inner {
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid #FDF5E6;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 43, 91, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.res-circle-inner.accent {
    border: 2px solid #FFF5E0;
    transform: scale(1.05);
}

.res-circle-inner:hover {
    transform: translateY(-10px);
}

.res-prefix {
    display: block;
    margin-bottom: -5px;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
}

.res-value {
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.res-value small {
    font-size: 1.2rem;
    margin-left: 2px;
}

.res-text {
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
}

.step-container {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 20px 0;
}

.step-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 45px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold) 0%, rgba(243, 160, 0, 0.1) 100%);
}

.step-item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

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

.step-num-box {
    width: 90px;
    min-width: 90px;
    height: 90px;
    border: 4px solid var(--beige);
    border-radius: 50%;
    background: var(--navy);
    box-shadow: 0 4px 15px rgba(0, 43, 91, 0.2);
    color: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.step-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.step-content {
    flex: 1;
    margin-left: 30px;
    padding: 30px 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
}

.step-content h3 {
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-q {
    background: var(--navy);
    color: #fff;
    padding: 20px 30px;
    font-weight: 700;
}

.faq-a {
    background: #fff;
    color: var(--text-main);
    padding: 20px 30px;
}

.final-contact {
    padding: 120px 0;
}

.contact-btns-large {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.btn-huge-gold,
.btn-huge-white {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-huge-gold {
    background: var(--gold);
    color: #fff;
    border: 2px solid var(--gold);
}

.btn-huge-white {
    background: #fff;
    color: var(--navy);
    border: 2px solid #fff;
}

.btn-huge-gold:hover,
.btn-huge-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-type {
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.9;
}

.btn-main-text {
    font-size: 1.4rem;
    font-weight: 800;
}

.btn-arrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
}

.footer {
    background: #001f42;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    font-size: 0.85rem;
}

.content {
    line-height: 2;
    color: #444;
}

.archive-container {
    max-width: 1000px;
    padding: 0 4%;
}

.archive-card {
    background: var(--offwhite);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.archive-list {
    list-style: none;
}

.archive-item {
    border-bottom: 1px solid #e0dbca;
}

.archive-link {
    display: grid;
    grid-template-columns: 140px 1fr 24px;
    align-items: center;
    gap: 20px;
    padding: 25px 15px;
}

.archive-date {
    color: #888;
    font-size: 0.9rem;
}

.archive-title {
    color: #333;
    font-weight: 500;
}

.archive-arrow {
    color: #e6b422;
    font-weight: 700;
    text-align: right;
}

.reveal {
    opacity: 1;
    transform: none;
    visibility: visible;
}

@media (max-width: 1100px) {
    .target-grid-quad {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 850px) {
    .results-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .res-circle-item {
        width: 100%;
        max-width: 250px;
    }

    .res-value {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    body.slj-body {
        padding-top: 70px;
    }

    .navbar {
        height: 70px;
    }

    .nav-list {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle .bar {
        position: absolute;
        width: 100%;
    }

    .menu-toggle .bar:nth-child(1) {
        transform: translateY(-8px);
    }

    .menu-toggle .bar:nth-child(2) {
        transform: translateY(0);
    }

    .menu-toggle .bar:nth-child(3) {
        transform: translateY(8px);
    }

    .menu-toggle.open .bar:nth-child(1),
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(0) rotate(45deg);
    }

    .menu-toggle.open .bar:nth-child(2),
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open .bar:nth-child(3),
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
    }

    .nav-list.active {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--offwhite);
        z-index: 999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-main-solid,
    .btn-sub-outline {
        width: 100%;
        text-align: center;
    }

    .floating-cta {
        right: 20px;
        bottom: 20px;
        padding: 12px 20px;
    }

    .step-container::before {
        left: 30px;
    }

    .step-num-box {
        width: 65px;
        min-width: 65px;
        height: 65px;
    }

    .step-number {
        font-size: 1.3rem;
    }

    .step-label {
        font-size: 0.6rem;
    }

    .step-content {
        margin-left: 15px;
        padding: 20px 25px;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .btn-huge-gold,
    .btn-huge-white {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .archive-container {
        padding: 0 20px;
    }

    .archive-card {
        padding: 12px;
    }

    .archive-link {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 18px 10px;
        text-align: left;
    }

    .archive-date {
        font-size: 0.85rem;
    }

    .archive-title {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .archive-arrow {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .target-grid-quad {
        grid-template-columns: 1fr;
    }

    .target-card-v2 {
        padding: 30px 20px;
    }
}
