/* Basic Reset & Typography */
:root {
    --color-primary-yellow: #ffcf00;
    --color-dark-text: #333333;
    --color-light-bg: #ffffff;
    --color-orange: #e86a2b;
    --color-dark-yellow: #e8a12b;
    /* PC版用のCTAカラー定義（今回は変更せず維持） */
    --color-cta-red: #ea5532; 
    --color-cta-orange: #eb9436;
    --color-cta-green: #2fa682;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--color-dark-text);
    background-color: var(--color-light-bg);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5px;
}

img {
    max-width: 100%;
    height: auto;
}

/* PCのみ表示 */
.pc-only {
    display: inline;
}
/* SPのみ表示 */
.sp-only {
    display: none;
}

/* Header */
.header {
    padding: 7.5px 0;
    background-color: var(--color-light-bg);
    position: sticky; /* 追従する設定を追加 */
    top: 0; /* 画面の上端に固定 */
    z-index: 1001; /* フォームより手前に表示 */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* 境界線として影を追加 */
}

.header .container {
    max-width: 1920px;
    margin: 0px 100px 0px 70px;
    padding: 0 5px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.header-tagline {
    font-size: 20px;
    font-weight: 500;
}

/* Main Layout Wrapper */
.main-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 0px; 
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.main-content {
    flex: 1;
    min-width: 0;
    flex-shrink: 1;
}

.sticky-contact-form {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 85px; 
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    height: fit-content;
}

.sticky-contact-form h4 {
    text-align: center;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 10px;
    color: #003366;
    font-weight: 700;
}

.sticky-contact-form p {
    text-align: center;
    font-size: 13px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.sticky-contact-form .submit-button:hover {
    background-color: #d15b20;
}

/* Hero Section */
.hero {
    background-color: #f5f5f5; 
    background-image: url('./images/fv/background.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
}

/* PC表示の黄色い背景の斜め部分を削除 */
.hero::before {
    display: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin-top: 30px;
}

.hero-content {
    flex: 1;
    max-width: 65%;
    color: #000000;
    padding-left: 20px;
}

.catch-copy {
    width: 50vw;
    font-weight: 900;
    margin-top: -30px;
    margin-bottom: 20px;
    color: #000000;
}

.catch-copy .highlight {
    background-color: #ffffff;
    padding: 1.5px 2.5px;
    color: #000000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.catch-copy .highlight-red {
    color: #d7000f;
}

.catch-copy .pre-headline {
    display: inline-block;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.catch-copy .mid-headline {
    display: block;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.catch-copy .main-headline {
    display: block;
    font-size: 48px;
    font-weight: 900;
}

.sub-copy {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #000000;
}

/* Hero CTA Box (修正：PC/SP共通スタイル) */
.hero-cta-box {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 25px 30px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.hero-cta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.badge-green {
    background-color: var(--color-cta-green);
    color: white;
    font-weight: bold;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 2px;
}

.cta-title {
    font-weight: 900;
    font-size: 22px;
    color: #000;
}

.cta-question {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    color: #000;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 15px;
}

.hero-btn {
    display: block;
    width: 48%;
    padding: 15px 0;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 6px;
    font-size: 16px;
    transition: opacity 0.3s, transform 0.2s;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.hero-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-red {
    background-color: var(--color-cta-red);
}

.btn-orange {
    background-color: var(--color-cta-orange);
}

.skip-link {
    font-size: 12px;
    color: #333;
    text-decoration: underline;
    display: inline-block;
    margin-top: 5px;
    cursor: pointer;
}

.hero-image {
    flex: 1;
    max-width: 32.5%;
    align-self: flex-end;
}

.hero-image img {
    display: block;
}

/* Support Banner */
.support-banner {
    background-color: #000000;
    color: var(--color-light-bg);
    padding: 20px 0;
    text-align: center;
}

.support-banner h2 {
    font-size: 2px;
    margin: 0;
    font-weight: 500;
}

/* Clients Section */
.clients {
    padding: 5px 15px 20px; /* 修正：上部の余白を50px→20pxに減らして文字を上に移動 */
    text-align: center;
    background-color: #ffffff;
}

.clients h3 {
    font-size: 24px;
    margin-top: 0; /* 修正：上部のマージンを削除 */
    margin-bottom: 1000px;
    font-weight: 700;
    line-height: 4.3;
}

.client-logos img {
    margin: 0 auto;
}

/* CTA for SP */
.cta-sp {
    display: none;
}

/* CTA Section */
.cta-section {
    padding: 10px 0;
    background-color: #f7f7f7;
}

.cta-section .container {
    max-width: 600px;
}

.cta-button {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
    padding: 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.cta-button::after {
    content: '>';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
}

.cta-button.orange {
    background-color: var(--color-orange);
}

.cta-button.yellow {
    background-color: var(--color-dark-yellow);
}

/* Success Stories Section */
.success-stories {
    padding: 20px 0;
    background-color: #f0f5fa;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: #003366;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 50px;
}

.stories-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/* Chrome, Safari, Opera */
.stories-container::-webkit-scrollbar {
    display: none;
}
.story-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    width: 300px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.story-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.story-demo {
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 5px 20px;
    margin-bottom: 20px;
}

.story-details p {
    margin: 5px 0;
    font-size: 16px;
}

.story-arrow {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--color-orange);
    margin: 20px auto;
}

.story-details.after p {
    color: var(--color-orange);
    font-weight: bold;
}

.story-salary {
    font-size: 28px !important;
}

/* CTA Section 2 */
.cta-section-2 {
    padding: 20px 0;
    text-align: center;
}

.cta-section-2 h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 6px;
}

.cta-section-2 .cta-button {
    background-color: var(--color-orange);
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    display: inline-block;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cta-section-2 .cta-button::after {
    content: '>';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

/* Features Section */
.features-section {
    background-color: #fde375;
    padding: 20px 0 40px;
    text-align: center;
}

.features-reason-label {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
    letter-spacing: 2px;
}

.features-title {
    color: #000000;
    font-size: 36px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 30px;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.feature-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 32%;
    box-sizing: border-box;
    text-align: left;
}

.feature-point {
    background-color: #000000;
    color: #fff;
    padding: 5px 17.5px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.feature-headline {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    line-height: 1.4;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-headline .highlight-red {
    color: #fe2d3b;
}

.feature-sub-headline {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #000;
}

.feature-sub-headline .highlight-red {
    color: #d7000f;
}

.feature-description-text {
    font-size: 16px;
    line-height: 1.2;
    color: #333;
    margin-top: 30px;
}

/* Achievements Section */
.achievements-section {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.achievements-title {
    font-size: 32px;
    font-weight: 700;
    color: #f5b400;
    margin-bottom: 30px;
}

.achievements-subtitle {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 40px;
}

.company-awards {
    max-width: 800px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.company-award-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-name {
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    flex-basis: 40%;
}

.company-award-item img {
    max-width: 280px;
}

.achievements-subtitle.conclusion {
    margin-top: 40px;
    margin-bottom: 40px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.achievement-card img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* CTA Section 3 */
.cta-section-3 {
    padding: 60px 0;
    background-color: #f7f7f7;
}
.cta-section-3 .container {
    max-width: 600px;
}
.cta-section-3 .cta-button {
    background-color: var(--color-orange);
    display: block;
    width: 100%;
    padding: 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cta-section-3 .cta-button::after {
    content: '>';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}
.cta-section-3 .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Popular Jobs Section */
.popular-jobs-section {
    padding: 20px 0;
    background-color: #f1f1f1;
}

.section-title-gold-line {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    color: #003366;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.section-title-gold-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background-color: #003366;
}

.section-headline {
    font-size: 40px;
    text-align: center;
    color: #003366;
    margin-bottom: 20px;
}

.section-subtitle-small {
    text-align: center;
    font-size: 16px;
    margin-bottom: 25px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.job-card {
    text-align: center;
}
.job-logo {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 10px;
    box-sizing: border-box;
}
.job-logo img {
    max-height: 85px;
    width: auto;
}

.job-title {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
    min-height: 45px;
}

.job-salary {
    font-size: 16px;
    margin: 15px 0 5px;
}
.salary-number {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-orange);
}

.job-incentive-note {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.incentive-example {
    margin-bottom: 10px;
}
.incentive-title {
    display: block;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    padding: 10px;
    font-weight: bold;
}
.incentive-details {
    background-color: #fff;
    padding: 20px 15px;
}
.incentive-case {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: bold;
    color: #003366;
}
.incentive-amount {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    color: #003366;
}
.incentive-amount .unit {
    font-size: 16px;
    font-weight: normal;
}

/* Testimonials Section */
.testimonials-section {
    padding: 20px 0;
}

.section-title-alt {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 50px;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    width: 48%;
    border: 1px solid #ddd;
    background-color: #fff;
}

.testimonial-top {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    padding: 20px;
}

.testimonial-image-wrapper {
    flex: 0 0 150px;
}
.testimonial-image-wrapper img {
    width: 100%;
    display: block;
}
.testimonial-content {
    flex: 1;
}

.testimonial-headline {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 15px;
}

.testimonial-profile {
    background-color: #f5b400;
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 1.6;
    display: inline-block;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0 100%);
}

.testimonial-bottom {
    padding: 20px;
}

.testimonial-text {
    line-height: 1.8;
    font-size: 15px;
    margin-top: 0;
}
.testimonial-conclusion {
    line-height: 1.8;
    font-size: 16px;
    font-weight: bold;
    color: var(--color-orange);
}

.sp-contact-section {
    display: none;
}

.sp-contact-section {
    background-color: #f0f5fa;
    padding: 60px 0;
}

.sp-contact-section .container {
    margin: 15px;
}

.sp-contact-section h4 {
    text-align: center;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 10px;
    color: #003366;
    font-weight: 700;
}

.sp-contact-section p {
    text-align: center;
    font-size: 13px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.sp-contact-section .form-group {
    margin-bottom: 15px;
}

.sp-contact-section label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.sp-contact-section label span {
    background-color: var(--color-orange);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: normal;
    vertical-align: middle;
}

.sp-contact-section input,
.sp-contact-section textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

.sp-contact-section .submit-button {
    width: 100%;
    background-color: var(--color-orange);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Responsive Styles (for screens smaller than 1200px) */
@media (max-width: 1200px) {
    .main-wrapper {
        display: block;
    }

    .main-content {
        width: 100%;
    }

    .sticky-contact-form {
        display: none;
    }

    .sp-contact-section {
        display: block;
    }
}


/* Responsive Styles (for screens smaller than 768px) */
@media (max-width: 768px) {
    .logo {
        height: 30px;
    }
    
    .pc-only {
        display: none !important; /* 強制的に非表示 */
    }
    .sp-only {
        display: block !important; /* 強制的に表示 */
    }
    span.sp-only {
        display: inline !important;
    }

    .header-tagline {
        font-size: 11px;
        text-align: right;
        margin: -85px;
    }

    .header .container {
        margin-left: 0;
    }

    /* === 修正: SP版 Heroセクションのデザインを画像に合わせる === */
    .hero {
        min-height: auto;
        overflow: visible;
        padding: 0; /* 余白はレイアウト調整で確保 */
        position: relative;
        background: transparent; /* 背景装飾は別要素で管理 */
    }

    /* 鮮やかな黄色と光沢のある背景（斜めカット含む） */
    .hero-bg-decoration {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 520px; /* 画像とCTAの重なり具合を調整 */
        /* グラデーションを少し調整してより鮮やかに */
        background-image: url('./images/fv/background_sp.png');
        z-index: 1;
    }

    .hero-container {
        width: 100%;
        display: block;
        position: relative;
        padding: 0 0 40px 0; /* 下に余白 */
        margin: 0;
        z-index: 2; /* 背景より上 */
    }
    
    .hero-content {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        text-align: left;
        position: relative;
        z-index: 29;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* 人物画像の配置を調整（右側に配置） */
    .hero-image {
        position: absolute;
        right: 1px; /* 位置調整 */
        top: 140px;  /* 位置調整 */
        max-width: 80%; /* サイズ調整 */
        width: 220px;   /* サイズ調整 */
        z-index: 6; /* テキストより奥、背景より前 */
    }

    .hero-text {
        position: relative;
        z-index: 20; /* 画像より前 */
        padding-top: 40px;
    }

    .catch-copy {
        width: 100%;
        text-align: left;
        line-height: 1.4;
        margin-top: 0;
    }

    .catch-copy .pre-headline {
        font-size: 23px;
        margin-bottom: 10px;
        font-weight: bold;
    }
    /* "M&A業界"のハイライト（白背景） */
    .catch-copy .highlight {
        background-color: #ffffff;
        padding: 2px 5px;
        box-shadow: none;
        display: inline-block;
        margin-right: 2px;
    }
    
    .catch-copy .mid-headline {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .catch-copy .main-headline {
        font-size: 26px;
        font-weight: bold;
        display: block;
        margin-top: -8px;
    }
    
    .sub-copy {
        font-size: 17px;
        text-align: left;
        margin-top: 11px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    
    /* === 修正：Hero CTA BoxのSPスタイル === */
    .hero-cta-box {
        display: block;
        padding: 30px 20px 25px; /* パディング調整 */
        width: 100%; /* 幅調整 */
        margin: 70px auto 0; /* マージン調整（人物との重なり） */
        position: relative;
        z-index: 30; /* 最前面 */
        background-color: rgba(255, 255, 255, 0.75); /* 透過度調整 */
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        box-sizing: border-box;
    }
    
    .hero-cta-header {
        position: absolute; /* タイトルボックス風に配置 */
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        background-color: transparent;
        width: 100%;
        margin-bottom: 0;
        gap: 0;
    }
    
    /* バッジとタイトルの一体化デザイン調整 */
    .badge-green {
        background-color: #00a08d;
        font-size: 14px; /* サイズ調整 */
        padding: 6px 12px; /* パディング調整 */
        display: inline-block;
        margin-right: 0; /* タイトルとくっつける場合は調整 */
    }
    .cta-title {
        display: none; /* レイアウトが異なるため一旦非表示にし、必要ならHTML構造変更かCSSで調整。画像では「簡単30秒」の横ではなく下にタイトルが来ているように見えるが、今回は画像通り「簡単30秒」が目立ち、その下にテキストがある構成にする */
    }
    /* 画像の「無料の転職サポートに登録」を再現するための調整 */
    .hero-cta-box::before {
        content: '無料の転職サポートに登録';
        display: block;
        font-size: 18px; /* サイズ調整 */
        font-weight: bold;
        margin-top: 25px; /* マージン調整 */
        margin-bottom: 10px;
        color: #000;
    }

    .cta-question {
        font-size: 12px;
        font-weight: bold;
        margin-bottom: 10px;
        margin-top: 10px; /* マージン調整 */
    }

    .hero-cta-buttons {
        flex-direction: column; /* 縦並びにする */
        gap: 12px; /* 間隔調整 */
    }
    
    .hero-btn {
        width: 100%; /* 幅を100%に */
        font-size: 19px; /* サイズ調整 */
        padding: 18px 0; /* パディング調整 */
        border-radius: 7px; /* 角丸調整 */
        position: relative; /* 矢印配置用 */
    }

    /* ボタンの矢印追加 */
    .hero-btn::after {
        content: '>';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-weight: bold;
    }
    
    /* === ボタン色の上書き（画像に合わせる）=== */
    .btn-red {
        background-color: #ea5532; /* 少し赤みを強く */
    }

    .btn-orange {
        background-color: #eb9436; /* 少しオレンジを強く */
    }
    
    .skip-link {
        color: #333;
        font-weight: bold;
        text-decoration: underline;
        margin-top: 10px;
        display: inline-block;
    }
    
    /* Support Banner for SP: 非表示 */
    .support-banner.pc-only {
        display: none !important;
    }
    
    /* Clients Section for SP */
    .clients {
        background: #ffffff; /* 白背景 */
        padding: 10px 15px 25px;
        text-align: center;
        margin-top: -45px;
    }
    .clients .container {
        padding: 0;
    }
    .clients h3 {
        font-size: 14px;
        font-weight: bold;
        color: #333;
        margin-top: 0;
        margin-bottom: 0px;
    }

    /* CTA for SP */
    .cta-sp {
        display: block;
        padding: 30px 15px;
        background-color: #f0f5fa;
        text-align: center;
    }
    .cta-sp .container {
        background-color: white;
        border-radius: 10px;
        padding: 10px 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        margin-top: -120px;
    }
    .cta-sp p {
        font-weight: bold;
        margin-bottom: 20px;
        font-size: 16px;
    }

    .cta-sp .cta-button {
        max-width: none;
    }

    .cta-button {
        display: block;
        padding: 15px;
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        border-radius: 8px;
        margin: 0 auto 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        position: relative;
        max-width: 500px;
        width: 100%;
        box-sizing: border-box;
    }
    .cta-button::after {
        content: '>';
        position: absolute;
        right: 20px;
        font-weight: bold;
    }

    .cta-button.orange {
        background-color: var(--color-orange);
    }

    .cta-button.yellow {
        background-color: var(--color-dark-yellow);
    }

    /* CTA Section for SP */
    .cta-section {
        padding: 40px 20px;
    }
    .cta-button {
        font-size: 16px;
        padding: 15px;
    }
    .cta-button::after {
        right: 20px;
    }

    /* Success Stories for SP */
    .success-stories {
        padding: 10px 20px 50px;
    }
    .section-title {
        font-size: 24px;
    }
    .section-subtitle {
        font-size: 14px;
        text-align: left;
    }
    .stories-container {
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
        margin: 0 -20px;
    }
    .story-card {
        width: 280px;
    }

    /* CTA Section 2 for SP */
    .cta-section-2 {
        padding: 5px 20px;
    }
    .cta-section-2 h2 {
        font-size: 16px;
    }
    .cta-section-2 .cta-button {
        display: block;
        font-size: 16px;
        padding: 15px 20px;
    }

    /* Features Section for SP */
    .features-section {
        padding: 10px 20px 40px;
    }
    .features-reason-label {
        font-size: 18px;
    }
    .features-title {
        font-size: 22px;
        line-height: 1.5;
    }

    .features-container {
        flex-direction: column;
        gap: 20px;
    }
    .feature-card {
        width: 100%;
        padding: 20px;
    }
    .feature-headline {
        font-size: 24px;
        line-height: 1.5;
    }

    .feature-sub-headline {
        font-size: 18px;
        line-height: 1.5;
    }
    .feature-description-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .achievements-section {
        padding: 50px 20px;
    }
    .achievements-title {
        font-size: 22px;
    }
    .achievements-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .company-awards {
        gap: 20px;
    }
    .company-award-item {
        flex-direction: column;
        gap: 10px;
    }
    .company-name {
        margin-top: 5px;
        margin-bottom: 0;
        text-align: center;
    }
    .company-award-item img {
        max-width: 250px;
    }
    .achievements-subtitle.conclusion {
        margin-top: 50px;
        margin-bottom: 20px;
    }
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .cta-section-3 {
        padding: 20px 20px;
    }

    /* Popular Jobs Section for SP */
    .popular-jobs-section {
        padding: 11px 38px;
    }
    .section-title-gold-line {
        font-size: 24px;
    }
    .section-headline {
        font-size: 20px;
    }
    .section-subtitle-small {
        font-size: 11px;
    }
    .job-card {
        border: 1px solid #ffffff;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .salary-number {
        font-size: 24px;
    }
    .incentive-amount {
        font-size: 22px;
    }
    .incentive-example {
        margin-bottom: 0px;
    }

    /* Testimonials Section for SP */
    .testimonials-section {
        padding: 50px 15px;
        background-color: #f7f3ed;
    }
    .section-title-alt {
        font-size: 24px;
    }
    .testimonials-container {
        flex-direction: column;
        gap: 20px;
    }
    .testimonial-card {
        width: 100%;
        box-sizing: border-box;
        background-color: white;
        border: 1px solid #c9a77e;
        border-radius: 10px;
        padding: 20px;
    }
    .testimonial-top {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        border-bottom: none;
        padding: 0;
        margin-bottom: 20px;
    }
    .testimonial-image-wrapper {
        flex: 0 0 150px;
    }
    .testimonial-headline {
        font-size: 22px;
    }
    .testimonial-profile {
        clip-path: none;
        padding: 5px;
    }
    .testimonial-profile span {
        font-size: 10px;
    }
    .testimonial-text {
        line-height: 1.25;
        font-size: 12px;
        margin-top: 0;
    }
    .testimonial-bottom {
        padding: 0;
    }
    .testimonial-conclusion {
        line-height: 1.25;
        font-size: 14px;
    }
}