/* --- CSS Reset & Variables --- */
:root {
    --primary-yellow: #E5C44B;
    --text-dark: #333333;
    --text-black: #000000;
    --text-light: #FFFFFF;
    --bg-gray: #E6E6E6;
    --bg-light-gray: #F5F5F5;
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
    --side-padding: 40px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 改行・表示制御用 */
.sp-only {
    display: none;
}

.pc-only {
    display: inline;
}

/* --- Header Section --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--side-padding);
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

/* 要件: PCスクロール時に透過度30%のブラックに変更 */
.header.scrolled {
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
    z-index: 1100;
}

.logo-subtext {
    font-size: 10px;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.8;
    color: var(--text-light);
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-item a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 700;
    font-size: 12px; /* 項目数増加のため調整 */
    letter-spacing: 0.05em;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-item a:hover { color: var(--primary-yellow); }

.nav-mobile-cta { display: none; } /* スマホ用CTA */

.btn-form {
    background-color: var(--primary-yellow);
    color: var(--text-dark) !important;
    padding: 12px 24px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-black);
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Hero Section (Main Visual) --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    overflow: hidden;
}

.hero-left {
    flex: 0 0 50%;
    background-color: var(--primary-yellow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: var(--side-padding);
    padding-right: 5%;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--text-black);
    letter-spacing: -0.02em;
}

.hero-title .highlight-white {
    color: var(--text-light);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 48px;
    letter-spacing: 0.05em;
    color: var(--text-black);
}

.cta-container {
    display: flex;
    gap: 20px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    padding: 16px 32px;
    min-width: 220px;
    line-height: 1.4;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.btn-black {
    background-color: var(--text-black);
    color: var(--text-light);
}

.btn-white {
    background-color: var(--text-light);
    color: var(--text-black);
}

.hero-right {
    flex: 0 0 50%;
    background-color: var(--bg-gray);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 5;
}

.hero-image {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: right bottom;
    z-index: 15;
}

.bg-text {
    position: absolute;
    bottom: 20px;
    right: 0;
    font-size: clamp(60px, 12vw, 220px);
    font-weight: 900;
    line-height: 0.85;
    text-align: right;
    pointer-events: none;
    z-index: 30;
    white-space: nowrap;
}

.bg-text .text-right {
    color: var(--primary-yellow);
    display: block;
    margin-right: 20px;
}

.bg-text .text-brothers {
    color: var(--text-light);
    display: block;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 15px;
    writing-mode: vertical-rl;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    z-index: 50;
}

.scroll-down::before {
    content: "";
    width: 1px;
    height: 60px;
    background-color: var(--text-dark);
    margin-bottom: 10px;
    display: block;
    animation: scrollLine 2s infinite;
    transform-origin: top;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); }
    50% { transform: scaleY(1); }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Common Section Styles --- */
.section-label {
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--primary-yellow);
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(20px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 60px;
}

/* --- Partners Section --- */
.partners {
    padding: 100px 0;
    background-color: var(--bg-light-gray);
    text-align: center;
    overflow: hidden;
}

.logo-slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo-track {
    display: flex;
    width: calc(204px * 14);
    animation: scroll-partners 40s linear infinite;
}

.logo-track.reverse {
    animation-direction: reverse;
}

.logo-item {
    flex: 0 0 200px;
    height: 100px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    border-radius: 4px;
    text-align: center;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.logo-item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-204px * 7)); }
}

/* --- Recruit Section --- */
.recruit {
    padding: 100px 0;
    background-color: #ffffff;
    background-image: linear-gradient(rgba(229, 196, 75, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(229, 196, 75, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    text-align: center;
}

.recruit-scroll-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 0 var(--side-padding) 40px;
    scrollbar-width: none;
    /* PC表示でも横スクロールを有効化 */
    -webkit-overflow-scrolling: touch;
}

.recruit-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.recruit-card {
    flex: 0 0 405px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: left;
    border-radius: 4px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.recruit-card-thumb {
    position: relative;
    height: 162px;
}

.recruit-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruit-card-logo {
    position: absolute;
    bottom: -40px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-radius: 50%;
    padding: 8px;
    z-index: 10;
}

.recruit-card-content {
    padding: 40px 25px 20px;
}

.recruit-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 62px;
}

.recruit-card-desc {
    font-size: 11px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
    min-height: 99px;
}

.recruit-card-info {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 14px;
    min-height: 120px;
}

.recruit-card-info th {
    background: #f9f9f9;
    padding: 10px;
    text-align: left;
    border-top: 1px solid #eee;
    width: 90px;
    color: #666;
    font-size: 13px;
}

.recruit-card-info td {
    padding: 10px;
    border-top: 1px solid #eee;
    color: #333;
    font-size: 13px;
}

.recruit-card-highlights {
    display: flex;
    gap: 8px;
    padding: 0 25px 25px;
    background: #fff;
    min-height: 95px;
}

.recruit-card .highlight-item {
    flex: 1;
    border: 1px solid #000;
    display: flex;
    flex-direction: column;
}

.recruit-card .highlight-header {
    background: #000;
    color: #fff;
    font-size: 10px;
    padding: 4px 8px;
    text-align: center;
    font-weight: 400;
}

.recruit-card .highlight-body {
    padding: 10px 5px;
    text-align: center;
    font-weight: 700;
    color: #000;
    font-size: 15px;
}

/* --- Success Cases Section --- */
.success-cases {
    padding: 100px 0;
    background-color: var(--primary-yellow);
    text-align: center;
}

.success-cases .section-label {
    color: #fff;
}

.success-desc {
    max-width: 900px;
    margin: 0px auto 40px;
    font-size: 14px;
    line-height: 2;
    color: var(--text-black);
}

.success-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 var(--side-padding);
    max-width: 1200px;
    margin: 0 auto;
}

.success-card {
    background: #fff;
    border-radius: 4px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.case-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.case-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eee;
    overflow: hidden;
    flex-shrink: 0;
}

.case-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-name {
    font-weight: 700;
    font-size: 18px;
}

.case-meta {
    font-size: 12px;
    color: #666;
}

.case-story {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    min-height: 3.2em;
}

.case-income-row {
    display: flex;
    gap: 10px;
}

.income-box {
    flex: 1;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    align-content: center;
}

.income-box.before {
    background: #EFEFEF;
}

.income-box.after {
    background: #FDE89C;
}

.income-label {
    font-size: 11px;
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.income-value {
    font-size: 16px;
    font-weight: 900;
    color: #555;
}

.income-box.after .income-value {
    color: #B58B00;
}

.case-award {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}

.award-crown {
    width: 32px;
    height: 32px;
    fill: #D4AF37;
    margin-bottom: 5px;
}

.award-text {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 900;
    color: #000;
    text-align: center;
}

/* --- Real Section --- */
.real-section {
    position: relative;
    padding: 120px 0;
    background-color: #0a121d;
    background-image: linear-gradient(rgba(10, 18, 29, 0.85), rgba(10, 18, 29, 0.95)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.real-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.real-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 5vw, 44px);
    margin-bottom: 50px;
    line-height: 1.4;
    margin-top: 0;
}

.real-copy {
    font-family: var(--font-serif);
    font-size: clamp(15px, 2vw, 19px);
    line-height: 2.2;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
}

.real-copy b {
    color: var(--primary-yellow);
    font-weight: 700;
    border-bottom: 1px solid var(--primary-yellow);
}

.real-footer {
    font-family: var(--font-serif);
    font-size: clamp(16px, 2.5vw, 22px);
    line-height: 1.8;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 40px;
}

.real-person-left, .real-person-right {
    position: absolute;
    bottom: 0;
    width: 35%;
    max-width: 450px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.7;
}

.real-person-left {
    left: -5%;
    text-align: left;
}

.real-person-right {
    right: -5%;
    text-align: right;
}

.real-person-left img, .real-person-right img {
    max-width: 100%;
    height: auto;
    filter: grayscale(30%);
}

/* --- Reason Section --- */
.reason-section {
    padding: 100px 0;
    background-color: var(--primary-yellow);
    text-align: center;
}

.reason-section .section-label {
    color: #fff;
}

.reason-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.category-wrapper {
    margin-bottom: 80px;
    text-align: left;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-serif);
}

.category-line {
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,0.1);
    position: relative;
}

.category-line::after {
    content: "さらにRight Brothersなら入社後も —";
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(0,0,0,0.6);
}

.category-wrapper.after .category-line::after {
    content: "だから選んで欲しい —";
}

.reason-grid {
    display: grid;
    gap: 20px;
}

.reason-grid.before {
    grid-template-columns: repeat(4, 1fr);
}

.reason-grid.after {
    grid-template-columns: repeat(2, 1fr);
}

.reason-card {
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.reason-card-img {
    width: 100%;
    height: 180px;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-card-img img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.reason-card-name {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.05em;
}

.reason-card-desc {
    font-size: 12px;
    line-height: 1.8;
    color: #333;
    text-align: left;
}

.reason-footer-message {
    margin-top: 80px;
    font-family: var(--font-serif);
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 900;
    color: #000;
    letter-spacing: 0.1em;
    line-height: 1.6;
}

.emphasize-dots {
    text-emphasis: filled dot #000;
    -webkit-text-emphasis: filled dot #000;
    text-emphasis-position: over right;
}

/* --- Advisor Section --- */
.advisor-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.advisor-header {
    margin-bottom: 60px;
}

.advisor-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.advisor-container {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.advisor-card {
    flex: 0 1 550px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.advisor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, transparent 100%);
}

.advisor-photo {
    flex-shrink: 0;
    width: 140px;
    height: 180px;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
    margin: 0 auto;
}

.advisor-photo::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.3;
}

.advisor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisor-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.advisor-role {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--text-black);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    align-self: center;
    letter-spacing: 0.05em;
}

.advisor-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 900;
    color: var(--text-black);
    margin: 0;
    line-height: 1.2;
}

.advisor-description {
    font-size: 13px;
    line-height: 1.7;
    color: #444;
    letter-spacing: 0.02em;
    text-align: left;
}

.advisor-nav {
    display: none;
}

.advisor-dots {
    display: none;
}

/* PC・タブレット表示では全カードを表示 */
@media (min-width: 769px) {
    .advisor-card {
        opacity: 1 !important;
        visibility: visible !important;
        transform: scale(1) !important;
        position: relative !important;
        pointer-events: auto !important;
        width: auto !important;
        max-width: 550px !important;
        padding: 40px !important;
    }
}

/* --- Comparison Section --- */
.comparison-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

.comparison-table {
    width: 100%;
    min-width: 900px;
    border-collapse: separate;
    border-spacing: 5px;
}

.comparison-table th, .comparison-table td {
    padding: 20px 10px;
    text-align: center;
    vertical-align: middle;
    font-weight: 700;
}

.comparison-table .row-label {
    background-color: #E6E6E6;
    color: #333;
    width: 200px;
    font-size: 16px;
}

.comparison-table .col-rb {
    background-color: #fff;
    border: 2px solid var(--primary-yellow);
    width: 700px;
    position: relative;
    padding: 15px 12px;
}

.comparison-table th.col-rb {
    background-color: var(--primary-yellow);
    color: #fff;
    font-size: 18px;
    border: none;
}

.rb-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rb-description {
    font-size: 11px;
    line-height: 1.5;
    font-weight: 400;
    color: #333;
    text-align: center;
    max-width: 500px;
}

.comparison-table .col-other {
    background-color: #F5F5F5;
    color: #333;
    width: 120px;
}

.comparison-table th.col-other {
    background-color: #E6E6E6;
    font-size: 16px;
}

.symbol-double-circle {
    color: var(--primary-yellow);
    font-size: 28px;
    flex-shrink: 0;
}

.symbol-circle {
    color: #888;
    font-size: 24px;
}

.symbol-triangle {
    color: #888;
    font-size: 24px;
}

.comparison-note {
    margin-top: 30px;
    font-size: 10px;
    color: #888;
    text-align: left;
    line-height: 1.6;
}

/* --- Voice Section --- */
.voice-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.voice-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.voice-list {
    display: flex;
    flex-direction: column;
}

.voice-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.voice-item:last-child {
    border-bottom: none;
}

.voice-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.voice-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #ffffff;
    border: 1px solid #ddd;
}

.voice-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.voice-name {
    font-weight: 700;
    font-size: 18px;
    color: #333;
}

.voice-industry {
    font-size: 14px;
    color: #666;
}

.voice-text {
    font-family: var(--font-serif);
    font-size: clamp(14px, 1.8vw, 17px);
    line-height: 1.8;
    color: #333;
    letter-spacing: 0.05em;
}

/* --- Award Section --- */
.award-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.award-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.award-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
}

.award-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.award-laurel {
    width: 80px;
    height: 120px;
    flex-shrink: 0;
}

.award-laurel img {
    width: 100%;
    height: 100%;
    fill: var(--primary-yellow);
}

.award-text-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.award-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.award-company {
    font-size: 12px;
    color: #666;
    font-weight: 700;
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background-color: var(--primary-yellow);
    text-align: center;
    overflow: hidden;
}

.cta-banner-bg-text {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(38px, 11.5vw, 135px);
    font-weight: 900;
    color: #fff;
    opacity: 0.15;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.cta-banner-container {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.cta-badge {
    position: absolute;
    top: -40px;
    left: 20px;
    width: 90px;
    height: 90px;
    background-color: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    clip-path: polygon(50% 0%, 58% 10%, 71% 7%, 75% 19%, 88% 21%, 86% 34%, 96% 41%, 90% 53%, 95% 65%, 84% 71%, 84% 84%, 71% 83%, 63% 93%, 51% 89%, 39% 95%, 31% 84%, 18% 86%, 16% 73%, 5% 69%, 10% 57%, 4% 45%, 13% 36%, 10% 23%, 22% 19%, 24% 6%, 37% 9%);
}

.cta-banner-heading {
    font-family: var(--font-serif);
    font-size: clamp(20px, 4vw, 44px);
    font-weight: 900;
    color: #000;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.cta-banner-heading span {
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-thickness: 1px;
}

.cta-banner-subheading {
    font-size: clamp(14px, 2vw, 22px);
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    display: inline-block;
    padding-bottom: 5px;
}

.cta-banner-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 680px;
    margin: 0 auto 30px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: clamp(18px, 3vw, 36px);
    font-weight: 900;
    padding: 25px 20px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-banner-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.cta-banner-disclaimer {
    font-size: 12px;
    color: #000;
    opacity: 0.7;
}

/* 転職成功事例直下のホワイトCTAスタイル */
.cta-banner-white {
    background-color: #ffffff;
}

.cta-banner-white .cta-banner-bg-text {
    color: var(--primary-yellow);
    opacity: 0.1;
}

.cta-banner-white .cta-badge {
    background-color: var(--primary-yellow);
}

.cta-banner-white .cta-banner-btn {
    background-color: var(--primary-yellow);
}

/* --- Form Section --- */
.form-section {
    padding: 120px 0;
    background-color: #F9F9F9;
    text-align: center;
}

.form-desc {
    font-size: 13px;
    line-height: 2;
    color: #444;
    max-width: 800px;
    margin: -30px auto 60px;
    padding: 0 20px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border-radius: 4px;
}

.form-group {
    margin-bottom: 40px;
}

.form-label-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.required-tag {
    background-color: var(--primary-yellow);
    color: #333;
    font-size: 10px;
    padding: 2px 6px;
    font-weight: 400;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #E6E6E6;
    font-size: 16px;
    font-family: inherit;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--primary-yellow);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #CCCCCC;
}

.name-row {
    display: flex;
    gap: 20px;
}

.name-row .form-input {
    flex: 1;
}

.form-textarea {
    height: 150px;
    resize: vertical;
}

.consent-row {
    text-align: center;
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.consent-row input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-submit-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 20px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.2em;
    cursor: pointer;
    border-radius: 50px;
    transition: opacity 0.3s;
}

.form-submit-btn:hover {
    opacity: 0.8;
}

/* --- Footer Section --- */
.footer-section {
    background-color: var(--primary-yellow);
    padding: 80px var(--side-padding);
    color: #000;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-catchphrase {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 40px;
}

.footer-logo-sub {
    font-size: 12px;
    color: #fff;
    margin-bottom: 5px;
    display: block;
}

.footer-logo-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--primary-yellow);
    font-weight: 900;
    font-size: 32px;
}

.footer-logo-text {
    color: #fff;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-copy {
    font-size: 12px;
    color: #fff;
    opacity: 0.8;
    margin-top: 30px;
}

.footer-right {
    flex: 0 0 450px;
}

.footer-right-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #444;
}

.company-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.info-label {
    font-weight: 700;
    width: 120px;
    flex-shrink: 0;
}

/* --- Sticky Footer --- */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 5px;
    display: none;
    gap: 5px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    transition: transform 0.3s ease;
}

.sticky-footer .cta-button {
    flex: 1;
    padding: 20px 5px;
    font-size: 20px;
    min-width: 0;
    box-shadow: none;
    white-space: nowrap;
}

.sticky-footer .cta-button.btn-white {
    background-color: #cccccc;
    border: none;
}

/* --- Responsive Design (Smartphone) --- */
@media (max-width: 1024px) {
    :root {
        --side-padding: 20px;
    }

    .sp-only {
        display: inline;
    }

    .pc-only {
        display: none;
    }

    .header { padding: 0 var(--side-padding); }
    .logo { font-size: 18px; }
    .logo-subtext { display: none; }

    .hamburger { display: flex; }

    /* 要件: スマホナビゲーションの開閉設定 */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-gray);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        padding: 40px;
        z-index: 1050;
    }
    .nav.active { right: 0; }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
    }
    .nav-item a { font-size: 18px; color: var(--text-dark); }

    /* 要件: スマホメニュー内にFVと同じCTAを表示 */
    .nav-mobile-cta {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 280px;
    }
    .nav-mobile-cta .cta-button {
        width: 100%;
        padding: 16px;
        font-size: 14px;
        min-width: unset;
        box-shadow: none;
    }

    .hero {
        flex-direction: column;
        height: 1200px;
        min-height: auto;
        background: linear-gradient(111deg, var(--primary-yellow) 55%, var(--bg-gray) 55%);
        overflow: hidden;
    }

    .hero-left {
        flex: none;
        width: 100%;
        background-color: transparent;
        padding: 100px var(--side-padding) 20px;
        justify-content: flex-start;
        z-index: 20;
    }

    .hero-right {
        flex: 1;
        width: 100%;
        background-color: transparent;
        justify-content: right;
        align-items: flex-end;
        z-index: 10;
        margin-top: -300px;
    }

    .hero-image {
        width: 50%;
        max-width: none;
        object-position: left bottom;
        transform: translateX(20px);
        height: auto;
    }

    .hero-title {
        font-size: 72px;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .cta-container {
        flex-direction: column;
        margin-top: 30px;
        gap: 50px;
        width: 100%;
        max-width: 450px;
    }

    .cta-button {
        width: 100%;
        min-width: unset;
        padding: 14px;
        font-size: 36px;
    }

    .scroll-down {
        top: 80px;
        right: 20px;
        left: auto;
        bottom: auto;
        color: var(--text-black);
    }

    .scroll-down::before {
        background-color: var(--text-black);
        height: 40px;
        margin-top: 10px;
        order: 2;
    }

    .bg-text {
        font-size: 14vw;
        bottom: 10px;
        right: -5px;
    }

    .partners, .recruit, .success-cases, .reason-section, .advisor-section, .comparison-section, .voice-section, .award-section, .form-section {
        padding: 40px 0;
    }

    .section-title {
        margin-bottom: 20px;
    }

    .logo-item {
        flex: 0 0 125px;
        height: 60px;
    }

    @keyframes scroll-partners {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-148px * 7)); }
    }

    .recruit-card {
        flex: 0 0 288px;
    }

    .recruit-card-thumb {
        height: 144px;
    }

    .recruit-card-logo {
        width: 64px;
        height: 64px;
        bottom: -32px;
        right: 15px;
        padding: 6px;
    }

    .recruit-card-content {
        padding: 32px 18px 15px;
    }

    .recruit-card-content h3 {
        font-size: 18px;
        min-height: 48px;
    }

    .recruit-card-desc {
        min-height: 132px;
    }

    .recruit-card-info {
        font-size: 10px;
        min-height: 120px;
    }

    .recruit-card-info td {
        font-size: 10px;
    }

    .recruit-card-highlights {
        padding: 0 18px 18px;
        gap: 8px;
        flex-direction: column;
        min-height: 130px;
    }

    .success-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding: 0 20px 40px;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .success-grid::-webkit-scrollbar {
        display: none;
    }

    .success-card {
        flex: 0 0 280px;
        padding: 20px;
    }

    .success-cases .income-value {
        font-size: 14px;
    }

    .success-cases .award-text {
        font-size: 16px;
    }

    .real-section {
        padding: 40px 0;
    }

    .real-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .real-person-left, .real-person-right {
        display: none;
    }

    .real-copy {
        font-size: 14px;
        line-height: 2;
        text-align: center;
    }

    .real-footer {
        font-size: 14px;
        text-align: center;
        padding-top: 30px;
    }

    .reason-grid.before, .reason-grid.after {
        grid-template-columns: repeat(2, 1fr);
    }

    .reason-card-img {
        height: 200px;
    }

    .category-line::after {
        display: none;
    }

    .reason-footer-message {
        font-size: 14px;
        line-height: 2.2;
    }

    .comparison-table .row-label {
        width: 100px;
        font-size: 13px;
    }

    .comparison-table .col-rb {
        width: 140px;
        padding: 12px 8px;
    }

    .rb-content {
        flex-direction: column;
        gap: 8px;
    }

    .rb-description {
        font-size: 9px;
        line-height: 1.4;
        max-width: 120px;
        text-align: center;
    }

    .symbol-double-circle {
        font-size: 24px;
    }

    .comparison-table th.col-rb {
        font-size: 14px;
    }

    .comparison-table .col-other {
        width: 80px;
        font-size: 13px;
    }

    .voice-item {
        gap: 20px;
        padding: 30px 0;
    }

    .voice-profile {
        gap: 15px;
    }

    .voice-avatar {
        width: 60px;
        height: 60px;
    }

    .voice-name {
        font-size: 16px;
    }

    .voice-industry {
        font-size: 12px;
    }

    .award-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-container {
        padding: 40px 20px;
        margin-top: 40px;
    }

    .name-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-submit-btn {
        font-size: 18px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        flex: none;
        width: 100%;
    }

    .info-label {
        width: 100px;
    }

    .sticky-footer.active {
        display: flex;
    }

    .cta-banner {
        padding: 80px 0;
    }

    .cta-badge {
        width: 70px;
        height: 70px;
        font-size: 11px;
        top: -35px;
    }

    .cta-banner-subheading {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .advisor-carousel-wrapper {
        position: relative;
        padding: 0 60px;
        margin-bottom: 40px;
        overflow: hidden;
    }

    .advisor-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 500px;
        padding: 0 20px;
    }

    .advisor-card {
        position: absolute;
        padding: 30px 20px;
        width: 90%;
        max-width: 400px;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.8);
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
        pointer-events: none;
    }

    .advisor-card.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        pointer-events: auto;
        position: relative;
    }

    .advisor-nav {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid var(--primary-yellow);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .advisor-nav:hover {
        background: var(--primary-yellow);
        transform: translateY(-50%) scale(1.1);
    }

    .advisor-nav svg {
        width: 20px;
        height: 20px;
        color: var(--text-black);
    }

    .advisor-nav-prev {
        left: 10px;
    }

    .advisor-nav-next {
        right: 10px;
    }

    .advisor-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }

    .advisor-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.3s;
    }

    .advisor-dot.active {
        background: var(--primary-yellow);
        width: 30px;
        border-radius: 5px;
    }
}

@media (max-width: 820px) {
    .hero {
        height: 1000px;
    }

    .hero-right {
        z-index: 10;
        margin-top: -215px;
    }

    .hero-title {
        font-size: 64px;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hero-image {
        width: 45%;
    }

    .cta-container {
        margin-top: 30px;
        gap: 20px;
        width: 100%;
        max-width: 300px;
    }

    .cta-button {
        padding: 14px;
        font-size: 20px;
    }

    .award-company {
        font-size: 10px;
    }
}

@media (max-width: 640px) {
    .hero {
        height: 600px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .hero-image {
        width: 47.5%;
    }

    .cta-container {
        margin-top: 10px;
        gap: 20px;
        max-width: 185px;
    }

    .cta-button {
        padding: 10px;
        font-size: 14px;
    }

    .bg-text {
        font-size: 16vw;
        bottom: 5px;
        right: 0px;
    }

    .reason-grid.before, .reason-grid.after {
        grid-template-columns: 1fr;
    }

    .reason-card-img {
        height: 150px;
    }

    .award-company {
        font-size: 9px;
    }

    .rb-description {
        font-size: 8px;
        line-height: 1.3;
    }
}

/* --- PC表示での横スクロール有効化 --- */
@media (min-width: 1025px) {
    .recruit {
        overflow: hidden;
    }
    
    .recruit-scroll-wrapper {
        /* PC表示でも横スクロールを可能にする */
        max-width: 1400px;
        margin: 0 auto;
        overflow-x: auto;
        cursor: grab;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
    }
    
    .recruit-scroll-wrapper::-webkit-scrollbar {
        display: block;
        height: 8px;
    }
    
    .recruit-scroll-wrapper::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .recruit-scroll-wrapper::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 4px;
    }
    
    .recruit-scroll-wrapper::-webkit-scrollbar-thumb:hover {
        background-color: rgba(0, 0, 0, 0.5);
    }
    
    .recruit-scroll-wrapper:active {
        cursor: grabbing;
    }
}