/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #2d3748;
    background: white;
    overflow-x: hidden;
    min-width: 320px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section */
.section {
    padding: 80px 0;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.5);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.mobile-br {
    display: none;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.9) 0%, rgba(13, 34, 64, 0.90) 100%), url('../assets/images/osaka-cityscape.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* ロゴ（左上） */
.hero-logo {
    position: absolute;
    top: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100;
}

.logo-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: white;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.logo-main {
    font-size: 24px;
    font-weight: 600;
}

.logo-sub {
    font-size: 14px;
    font-weight: 500;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 30px 30px;
    pointer-events: none;
}

.hero-inner {
    height: 100vh;
    min-height: 900px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 16px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.hero-main {
    flex: 1;
    max-width: 700px;
    z-index: 2;
}

.hero-subtitle {
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-title {
    margin-bottom: 40px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.75);
}

.title-line1 {
    display: block;
    color: white;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.title-line2 {
    display: block;
    color: white;
    font-size: 104px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-appeal {
    display: flex;
    align-items: center;
    gap: 16px;
}

.appeal-badge {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    color: white;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.28;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
    transform: rotate(-12deg);
}

.appeal-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.appeal-list li {
    color: white;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.75);
    position: relative;
    z-index: 1;
    font-style: italic;
}

.appeal-list li i {
    color: white;
    font-size: 22px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.badge-item {
    background: linear-gradient(135deg, #2980b9, #1a5490);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    line-height: 1.2;
    font-style: italic;
}

.badge-main {
    display: inline-block;
    color: white;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 0.01em;
}

.badge-main strong {
    font-size: 36px;
    color: #ffeb3b;
}

.badge-main > span {
    font-size: 18px;
}

.badge-sub {
    display: block;
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.hero-welcome {
    color: #ffeb3b;
    font-size: 88px;
    font-weight: 900;
    text-align: left;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.75);
    letter-spacing: 0.1em;
    font-style: italic;
}

.hero-image {
    position: absolute;
    padding-top: 16px;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.hero-campaign {
    position: absolute;
    top: 100px;
    right: 30px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    max-width: 280px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 3;
}

.campaign-label {
    display: inline-block;
    background: linear-gradient(135deg, #e53935, #c0392b);
    color: white;
    padding: 5px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.campaign-title {
    font-size: 12px;
    margin-bottom: 5px;
}

.campaign-main {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.campaign-main .red {
    color: #e53935;
}

.campaign-date {
    font-size: 12px;
    margin-bottom: 10px;
}

.campaign-amount {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.campaign-amount .big {
    font-size: 32px;
    color: #e53935;
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8fbfd 0%, #f0f8fc 100%);
    padding: 40px 0;
}

.cta-section.white {
    background: white;
}

.cta-content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-left, .cta-right {
    width: min(360px, 100%);
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.cta-label-small {
    position: relative;
    display: inline-block;
    background-color: #fff;
    border-bottom: solid 2px #1a3a5c;
    padding: 8px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #1a3a5c;
    font-weight: 600;
}

.cta-label-small:before {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    border: solid 8px transparent;
    border-top: solid 8px #1a3a5c;
}

.cta-label-small:after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    border: solid 10px transparent;
    border-top: solid 10px #fff;
    margin-top: -5px;
}

.cta-left .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.5);
}

/* 電話番号（右側） */
.cta-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 32px;
    font-weight: 700;
    color: #e53935;
}

.cta-phone i {
    font-size: 32px;
    color: #e53935;
}

.cta-phone a {
    color: #e53935;
    text-decoration: none;
}

.cta-phone a:hover {
    color: #c62828;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* .section-title::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2980b9, #1a5276);
    margin: 0 auto 24px;
    border-radius: 2px;
} */

.section-title.white::before {
    background: linear-gradient(135deg, #ffeb3b, #f39c12);
    box-shadow: 0 2px 8px rgba(241, 196, 15, 0.3);
}

.section-title .title-main {
    display: inline-block;
    font-size: 48px;
    font-weight: 900;
    color: #1a3a5c;
    line-height: 1.2;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* .section-title .title-main::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    bottom: 0;
    left: 0;
    background: #ffeb3b;
    transform: skewX(-24deg);
    z-index: -1;
} */



.section-title .title-sub {
    display: block;
    font-size: 24px;
    color: #1a3a5c;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.05em;
}


.section-title.white .title-main {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.section-title.white .title-sub {
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* 最短でお給料げGET */
.steps {
    background: white;
    position: relative;
}

.section-title .title-sub.step-title {
    font-size: 18px;
    line-height: 2;
}

.section-title .title-sub.step-title > span {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.section-title .title-sub.step-title > span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 12%;
    left: 0;
    background: #ffeb3b;
    z-index: -1;
}

.steps-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto 80px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
    gap: 40px;
}

.step-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-image {
    width: 300px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    overflow: hidden;
    flex-shrink: 0;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-number-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 80px;
}

.step-label {
    font-size: 16px;
    color: #2980b9;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.step-number {
    font-size: 72px;
    color: #2980b9;
    font-weight: 300;
    line-height: 0.8;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 28px;
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 16px;
    margin: 0;
}

.step-badge {
    position: absolute;
    top: -40px;
    right: 60px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #e53935, #d32f2f, #c62828);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4);
    z-index: 10;
    font-style: italic;
    font-weight: 700;
}

.step-badge::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 15px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 18px solid #d32f2f;
    transform: rotate(25deg);
}

.badge-text-top {
    font-size: 16px;
    line-height: 1;
}

.badge-text-main {
    font-size: 32px;
    line-height: 1;
    margin: 3px 0;
}

.badge-text-bottom {
    font-size: 24px;
    line-height: 1;
}

.step-footer {
    width: 100%;
    background: linear-gradient(to bottom, #2980b9, #1a3a5c);
    color: white;
    text-align: center;
    font-size: 40px;
    position: absolute;
    bottom: 0;
    padding: 24px 0;
    font-weight: 600;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.step-footer::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 15px solid #2980b9;
}

.step-footer span {
    font-size: 24px;
    vertical-align: baseline; /* ベースラインで揃える */
}

.step-arrow {
    margin: 24px 0;
    text-align: center;
}

.arrow-down {
    font-size: 24px;
    color: #2980b9;
}

.step-item:last-child .step-arrow {
    display: none;
}


/* 未経験でも安心のサポート体制 */
.support {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.support-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 40px auto;
}

.support-image {
    flex: 1;
    position: relative;
}

.support-image img {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.support-badge {
    position: absolute;
    top: -70px;
    left: -40px;
    background: linear-gradient(135deg, #2980b9, #1a5276);
    color: white;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(41, 128, 185, 0.3);
    animation: sway 3s ease-in-out infinite;
    font-weight: 600;
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.support-badge .badge-label {
    display: block;
    font-size: 16px;
}

.support-badge .badge-number {
    display: block;
    font-size: 14px;
}

.support-badge .badge-text {
    display: block;
    font-size: 22px;
}

.support-text {
    flex: 1;
}

.support-title {
    font-size: 48px;
    font-weight: 900;
    color: #1a3a5c;
    margin-bottom: 24px;
    font-style: italic;
}

.support-title .highlight {
    color: #2980b9;
}

.support-desc {
    font-size: 16px;
    line-height: 1.8;
}

.plus-point {
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1a3a5c;
    background: #ffeb3b;
    font-size: 32px;
    font-weight: 700;
    position: absolute;
    top: -80px;
    left: 50%;
    margin-left: -80px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: rotate(-9deg);
}

/* 研修中でも */
.allowance {
    position: relative;
}

.allowance-box {
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.allowance-box {
    border-radius: 16px;
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.allowance-amount-box {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    margin: 40px auto 24px;
}

.allowance-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.amount-label {
    font-size: 30px;
    color: #1a3a5c;
    font-weight: 600;
    position: relative;
    padding: 0 20px;
}

.amount-value {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    position: relative;
    z-index: 1;
    padding: 0 12px;
    font-style: italic;
}

.amount-value::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) skewX(-8deg);
    width: 100%;
    height: 24px;
    background: #ffeb3b;
    z-index: -1;
}

.amount-number {
    font-size: 140px;
    color: #1a3a5c;
    line-height: 1;
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.amount-text {
    display: flex;
    flex-direction: column;
    color: #1a3a5c;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.amount-currency,
.amount-action {
    font-size: 40px;
    font-weight: 900;
}

.daily-pay-badge {
    background: #1a3a5c;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    position: absolute;
    right: 0;
    bottom: 56px;
}

/* 月収例 */
.salary {
    background:
        linear-gradient(135deg, rgba(26, 58, 92, 0.95) 0%, rgba(13, 34, 64, 0.97) 100%),
        url('../assets/images/osaka-cityscape.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.salary-cards {
    max-width: 800px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 0 auto 40px;
}

.salary-card {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    border: 2px solid #2980b9;
}

.salary-card:hover {
    transform: translateY(-10px);
}

.salary-card.recommended {
    border: 2px solid #e53935;
}

.recommend-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e53935, #c0392b);
    color: white;
    padding: 8px 48px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
}

.salary-type {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.salary-time {
    font-size: 16px;
    margin-bottom: 24px;
}

.salary-amount {
    margin-bottom: 16px;
}

.salary-amount .yen {
    font-size: 24px;
    color: #2980b9;
    font-weight: 700;
}

.salary-amount .number {
    font-size: 48px;
    font-weight: 900;
    color: #2980b9;
}

.salary-card.recommended .salary-amount .yen,
.salary-card.recommended .salary-amount .number,
.salary-card.recommended .salary-amount .unit,
.salary-card.recommended .salary-note {
    color: #e53935;
}

.salary-amount .unit {
    font-size: 18px;
    color: #2980b9;
    font-weight: 700;
}

.salary-note {
    color: #2980b9;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.salary-detail {
    font-size: 14px;
}

.salary-recommend {
    text-align: center;
    color: white;
    font-size: 18px;
}

.salary-recommend .highlight {
    color: #ffeb3b;
    font-weight: 700;
}

/* ここも嬉しい！セクション */
.benefits {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
}

.benefits-cards {
    width: min(800px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    background: white;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-style: italic;
    font-size: 32px;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.benefit-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a3a5c;
    text-align: left;
}

.benefit-highlight {
    position: relative;
    margin: 0 auto 8px;
    font-weight: 900;
    color: #e91e63;
    white-space: nowrap;
}

.benefit-highlight::before {
    content: '';
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%) skewX(-16deg);
    width: 100%;
    height: 48px;
    background: #ffeb3b;
    z-index: -1;
}

.benefit-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #1a3a5c;
    display: flex;
}

.benefit-subtitle span:last-child {
    font-size: 32px;
    margin-left: auto;
}

.benefit-subtitle span.up {
    color: #e91e63;
    position: relative;
    padding: 0 16px 0 8px;
    margin-right: 4px;
    line-height: 1;
    font-weight: 900;
}

.benefit-subtitle span.up::before {
    content: '';
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%) skewX(-16deg);
    width: 100%;
    height: 56px;
    background: #ffeb3b;
    z-index: -1;
}

.benefit-amount {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
}

/* 1枚目・3枚目・4枚目：大きめ */
.benefit-card:nth-child(1) .benefit-highlight,
.benefit-card:nth-child(3) .benefit-highlight,
.benefit-card:nth-child(4) .benefit-highlight {
    font-size: 54px;
}

/* 4枚目：横並び用 */
.benefit-card:nth-child(4) .benefit-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.campaign {
    font-size: 22px;
    line-height: 1;
    padding-top: 0.5em;
}

.star {
    font-size: 42px;
    position: relative;
    top: -0.2em;
}

/* お仕事内容 */
.job {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.job-cards {
    display: flex;
    justify-content: center;
}

.job-card {
    background: white;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 800px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.job-icon {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.job-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 24px;
}

.job-desc {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

/* シフトは電話1本でOKセクション */
.shift {
    background: white;
}

.shift-content {
    max-width: 700px;
    margin: 0 auto;
}

.shift-conversation {
    margin-bottom: 64px;
}

.conversation-bubble {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 48px;
}

.conversation-bubble.user {
    flex-direction: row;
}

.conversation-bubble.staff {
    flex-direction: row-reverse;
}

.bubble-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.conversation-bubble.user .bubble-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.conversation-bubble.staff .bubble-icon {
    background: #00C300;
}

.bubble-icon i {
    font-size: 24px;
    color: white;
}

.bubble-wrapper {
    position: relative;
    max-width: 80%;
}

.conversation-bubble p {
    min-width: 300px;
    background: white;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 1.8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin: 0;
    position: relative;
}

.conversation-bubble.user .bubble-wrapper::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent white transparent transparent;
    filter: drop-shadow(-1px 1px 2px rgba(0,0,0,0.1));
}

.conversation-bubble.user .bubble-wrapper::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 21px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 6px 0;
    border-color: transparent white transparent transparent;
}

.conversation-bubble.staff .bubble-wrapper::before {
    content: '';
    position: absolute;
    right: -7px;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #00C300;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.1));
}

.conversation-bubble.staff .bubble-wrapper::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 21px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent #00C300;
}

.conversation-bubble.staff p {
    background: #00C300;
    color: white;
}

.shift-message {
    text-align: center;
}

.message-bubble {
    color: #00C300;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.message-bubble i {
    margin-right: 4px;
    font-size: 34px;
}

.shift-note {
    font-size: 16px;
    color: inherit;
    font-weight: 400;
    margin: 0;
}


/* 3つの特徴 */
.features {
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.feature-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-number {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2980b9, #1a5276);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

.feature-number span {
    font-size: 12px;
}

.feature-content {
    padding: 24px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 16px;
    line-height: 1.5;
}

.feature-desc {
    font-size: 14px;
    line-height: 1.8;
}

.feature-desc span {
    font-size: 12px;
}

.more-benefits-content {
    max-width: 800px;
    margin: 64px auto 0;
}

.more-benefits-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    color: #2980b9;
}

.more-benefits-list {
    width: min(800px, 100%);
    margin: 0 auto;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.more-benefit-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    flex: 1;
}

.more-benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.more-benefit-item i {
    font-size: 32px;
    color: #2980b9;
    display: block;
}

.more-benefit-item span {
    font-size: 14px;
    font-weight: 600;
    display: block;
    text-align: left;
}

/* 安心して働ける */
.stability {
    background: linear-gradient(135deg, rgb(26, 58, 92) 0%, rgb(13, 34, 64) 100%);
}

.stability-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stability-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stability-card:hover {
    transform: translateY(-5px);
}

.stability-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.stability-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a3a5c;
    padding: 16px;
}

.stability-card-text {
    font-size: 14px;
    padding: 0 16px 24px;
    line-height: 1.8;
}

/* 勤務地エリア */
.area {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(248, 249, 250, 0.97) 100%),
        url('../assets/images/osaka-area.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.area-image {
    width: min(800px, 100%);
    margin: 0 auto;
    overflow: hidden;
}

.area-image img {
    aspect-ratio: 16 /9;
    object-fit: cover;
}

/* 募集要項 */
.requirements {
    background: white;
}

.requirements-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    font-size: 14px;
}

.req-row {
    display: flex;
    border-bottom: 1px solid #e8e8e8;
}

.req-row:last-child {
    border-bottom: none;
}

.req-label {
    width: 180px;
    background: #f0f2f5;
    color: #1a3a5c;
    padding: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.req-label i {
    color: #2980b9;
}

.req-content {
    flex: 1;
    padding: 20px;
    line-height: 1.8;
}

.req-content strong {
    color: #1a3a5c;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.benefit-list li i {
    font-size: 12px;
}

/* よくある質問 */
.faq {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}


.faq-list {
    max-width: 800px;
    margin: 0 auto;
}


.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.q-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #2980b9, #1a5276);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.q-text {
    flex: 1;
}

.faq-question i {
    color: #2980b9;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    background: white;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 24px;
}

.faq-answer .answer-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.a-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #e53935, #c0392b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.faq-answer p {
    flex: 1;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* Application Form Section */
.apply {
    background:
        linear-gradient(135deg, rgba(26, 58, 92, 0.95) 0%, rgba(13, 34, 64, 0.97) 100%),
        url('../assets/images/osaka-cityscape.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.application-intro {
    max-width: 800px;
    text-align: center;
    margin: 0 auto 48px;
    font-size: 14px;
    line-height: 1.8;
}

.application-intro p {
    text-align: left;
    display: inline-block;
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    color: #2d3748;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-label.required::after {
    content: '必須';
    background: #e53935;
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 10px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1a3a5c;
}

.form-select {
    color: #ddd;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
    background-color: transparent;
    padding-right: 24px;
    position: relative;
}

/* カスタム矢印 */
.form-select {
    background-image: 
        linear-gradient(45deg, transparent 50%, #ddd 50%),
        linear-gradient(135deg, #ddd 50%, transparent 50%);
    background-position: 
        calc(100% - 15px) calc(50% + 2px),
        calc(100% - 10px) calc(50% + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.form-input-short {
    width: 120px;
}

.form-unit {
    margin-left: 10px;
    font-size: 14px;
}

.form-radio-group {
    display: flex;
    gap: 20px;
}

.form-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-radio input {
    width: 18px;
    height: 18px;
}

.form-privacy {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.form-privacy h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-privacy p {
    font-size: 12px;
    line-height: 1.68;
}

.form-consent {
    margin-bottom: 30px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-checkbox input {
    display: none;
}

.form-checkbox .checkmark {
    font-size: 24px;
    color: #ddd;
    transition: color 0.3s ease;
}

.form-checkbox input:checked + .checkmark {
    color: #4caf50;
}

.form-checkbox span:last-child {
    font-size: 14px;
}

.form-submit {
    text-align: center;
}

.btn-submit {
    min-width: 250px;
}


/* リンクバナー */
.link-banner {
    background: white;
    padding: 40px 0;
}

.link-banner-list {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.link-banner-list li {
    max-width: 800px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}


.link-banner-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}


/* Footer */
.footer-cta {
    background: linear-gradient(135deg, #f8fbfd 0%, #f0f8fc 100%);
    padding: 40px 0;
}

.footer-bottom {
    background: #1a3a5c;
    padding: 20px 0;
    text-align: center;
}

.copyright {
    font-size: 12px;
    color: white;
}

.copyright a {
    color: white;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .support-content {
        width: min(800px, 100%);
        flex-direction: column;
    }

    .support-title {
        text-align: center;
    }

    .support-badge {
        left: -16px;
    }
}

@media (max-width: 1024px) {

    .hero-badges {
        flex-wrap: wrap;
    }

    .hero-campaign {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 30px;
        max-width: 100%;
    }

    .hero-image {
        width: auto;
        height: 100%;
    }

    .hero-welcome {
        font-size: 72px;
    }

    .appeal-badge {
        width: 132px;
        height: 132px;
        font-size: 24px;
    }

    .appeal-list li {
        font-size: 24px;
    }

    .appeal-list li i {
        font-size: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .salary-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .salary-card {
        min-width: 280px;
        max-width: 350px;
    }

    .support-content {
        gap: 30px;
    }

    .apply-phone-number {
        font-size: 36px;
    }

    .apply-form {
        max-width: 500px;
    }

    .section-title .title-sub {
        font-size: 24px;
    }

    .title-line1 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .title-line2 {
        font-size: 88px;
    }
    
    .more-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 768px) {
    .container {
        padding-inline: clamp(1rem, 0.167rem + 2.78vw, 1.5rem);
    }

    .hero-logo {
        top: 20px;
        left: 20px;
        gap: 8px;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-main {
        font-size: 20px;
    }
    
    .logo-sub {
        font-size: 12px;
    }

    .hero-inner {
        padding: 64px 16px 32px;
        min-height: 700px;
    }

    .hero-image {
        right: -16px;
    }

    .hero-welcome {
        font-size: 60px;
    }

    .appeal-badge {
        width: 124px;
        height: 124px;
        font-size: 20px;
    }

    .appeal-list li {
        font-size: 22px;
    }

    .appeal-list li i {
        font-size: 18px;
    }

    .hero-badges {
        gap: clamp(0.5rem, -0.333rem + 2.78vw, 1rem);
    }
    
    .badge-item {
        width: 104px;
        height: 104px;
        min-width: auto;
    }
    
    .badge-main {
        font-size: 20px;
    }
    
    .badge-main strong {
        font-size: 24px;
    }

    .badge-main > span {
        font-size: 12px;
    }

    .badge-sub {
        font-size: 14px;
    }

    .steps-flow {
        margin-bottom: 60px;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        gap: 16px;
    }

    .step-image {
        width: 100%;
    }

    .step-number-section {
        width: auto;
    }

    .step-number {
        font-size: 48px;
    }

    .step-title {
        font-size: 24px;
    }
    .step-badge {
        width: 100px;
        height: 100px;
        top: -50px;
        right: 16px;
    }

    .step-badge::before {
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 15px solid #d32f2f;
        bottom: -6px;
        left: 12px;
    }

    .step-footer {
        font-size: 32px;
    }

    .badge-text-top {
        font-size: 14px;
        font-weight: 600;
    }

    .badge-text-main {
        font-size: 24px;
        font-weight: 900;
    }

    .badge-text-bottom {
        font-size: 18px;
        font-weight: 800;
    }

    .job-card {
        padding: clamp(1.5rem, -1rem + 8.33vw, 3rem);
    }

    .job-title {
        font-size: 28px;
    }
    
    .job-desc {
        font-size: 14px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-cards {
        grid-template-columns: 1fr;
    }
    
    .support-content {
        flex-direction: column;
        text-align: center;
        padding: 0;
        margin-top: 0;
    }
    
    .support-image {
        max-width: 100%;
    }

    .support-badge {
        position: relative;
        top: auto;
        left: auto;
        margin: 30px auto 0;
    }

    .req-row {
        flex-direction: column;
    }

    .req-label {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 16px;
    }

    .req-content {
        padding: 16px;
    }

    .more-benefit-item {
        font-size: 14px;
        padding: 10px;
    }

    .apply-form {
        min-width: 100%;
        max-width: 100%;
        padding: 30px 20px;
    }

    .apply-phone-number {
        font-size: 32px;
        padding: 16px 32px;
    }

    .salary, .area, .apply {
        background-attachment: scroll;
    }

    .salary-cards {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .salary-card {
        min-width: 100%;
        max-width: 100%;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-question .q-text {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 16px 20px;
    }

    .stability-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title::before {
        width: 50px;
        height: 3px;
        margin-bottom: 20px;
    }

    .section-title .title-main {
        font-size: clamp(2.25rem, 2.071rem + 0.89vw, 2.5rem);
        white-space: nowrap;
    }

    .section-title .title-sub {
        font-size: 20px;
    }

    .title-line1 {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .title-line2 {
        font-size: 64px;
    }
    
    .shift-content {
        margin: 0 20px;
    }

     .conversation-bubble p {
        min-width: 100%;
     }

    
    .message-bubble {
        font-size: 24px;
    }
    
    .message-bubble i {
        font-size: 30px;
    }

    .more-benefits-title {
        font-size: clamp(2.25rem, 2.071rem + 0.89vw, 2.5rem);;
    }
    
    .more-benefits-list {
        flex-direction: column;
        align-items: center;
    }
    
    .more-benefit-item {
        width: 100%;
        flex: none;
    }

    .area {
        background-attachment: scroll;
    }

    .application-form {
        padding-inline: clamp(1rem, 0.167rem + 2.78vw, 1.5rem);
    }
}

@media (max-width: 640px) {

    .allowance-box {
        padding: clamp(1.5rem, 0.214rem + 5.71vw, 2.5rem) 0;
    }

    .allowance-amount-box {
        gap: clamp(1.125rem, 0.161rem + 4.29vw, 1.875rem);
        margin: clamp(1.5rem, 0.214rem + 5.71vw, 2.5rem) auto clamp(0.9rem, 0.129rem + 3.43vw, 1.5rem);
    }

    .allowance-amount {
        gap: clamp(0.9rem, 0.129rem + 3.43vw, 1.5rem);
    }

    .amount-label {
        font-size: clamp(1.125rem, 0.161rem + 4.29vw, 1.875rem);
        padding: 0 clamp(0.75rem, 0.107rem + 2.86vw, 1.25rem);
    }

    .amount-value {
        gap: clamp(0.6rem, 0.086rem + 2.29vw, 1rem);
        padding: 0 clamp(0.45rem, 0.064rem + 1.71vw, 0.75rem);
    }

    .amount-value::after {
        bottom: clamp(-0.15rem, -0.021rem + -0.57vw, -0.25rem);
        height: clamp(0.9rem, 0.129rem + 3.43vw, 1.5rem);
    }

    .amount-number {
        font-size: clamp(5rem, 0.179rem + 21.43vw, 8.75rem);
    }

    .amount-text {
        margin-bottom: clamp(0.3rem, 0.043rem + 1.14vw, 0.5rem);
    }

    .amount-currency,
    .amount-action {
        font-size: clamp(1.5rem, 0.214rem + 5.71vw, 2.5rem);
    }

    .daily-pay-badge {
        width: clamp(3rem, 0.429rem + 11.43vw, 5rem);
        height: clamp(3rem, 0.429rem + 11.43vw, 5rem);
        font-size: clamp(0.675rem, 0.096rem + 2.57vw, 1.125rem);
        bottom: clamp(2.1rem, 0.3rem + 8vw, 3.5rem);
    }
}

@media (max-width: 640px) {
    .hero-inner {
        padding-top: 200px;
    }
}

@media (max-width: 480px) {

    .mobile-br {
        display: block;
    }

    .hero-logo {
        gap: 4px;
    }

    .logo-icon {
        width: 40px;
    }
    .logo-main {
        font-size: 18px;
    }

    .logo-sub {
        font-size: 10px;
    }

    .hero-main {
        padding: 16px;
    }

    .hero-title {
        margin-bottom: 16px;
        text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.75);
        text-align: center;
    }

    .title-line1 {
        font-size: 32px;
        margin-bottom: 0;
    }

    .title-line2 {
        font-size: 48px;
    }

    .support-title {
        font-size: 32px;
    }

    .support-desc {
        font-size: 14px;
    }

    .plus-point {
        width: 140px;
        height: 140px;
        font-size: 27px;
        margin-left: -70px;
    }

    .hero-inner {
        padding: 240px 12px 0px;
    }

    .hero-main {
        flex: none;
    }

    .hero-image {
        right: 0;
        left: 0;
        padding: 56px 0 0;
    }

    .hero-image img {
        width: 100%;
    }

    .hero-appeal {
        justify-content: center;
        gap: 16px;
    }

    .hero-welcome {
        font-size: 48px;
        text-align: center;
        text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.75);
    }

    .appeal-badge {
        width: 100px;
        height: 100px;
        font-size: 16px;
    }

    .appeal-list li {
        font-size: 20px;
        text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.75);
    }

    .appeal-list li i {
        font-size: 16px;
    }

    .hero-badges {
        gap: clamp(0.25rem, -0.5rem + 3.33vw, 0.5rem);
        flex-wrap: nowrap;
        justify-content: center;
    }

    .badge-item {
        width: 80px;
        height: 80px;
    }

    .badge-main {
        font-size: 16px;
    }
    
    .badge-main strong {
        font-size: 20px;
    }

    .badge-main > span {
        font-size: 11px;
    }

    .badge-sub {
        font-size: 12px;
    }

    .phone-number {
        font-size: 24px;
    }

    .phone-number i {
        font-size: 24px;
    }

    .contact-btn {
        font-size: 18px;
    }

    .steps-flow {
        margin-bottom: 40px;
    }

    .step-desc {
        font-size: 14px;
    }

     .step-footer {
        font-size: 24px;
    }

    .salary-amount .number {
        font-size: 36px;
    }

    .benefit-title {
        font-size: 20px;
    }

    .benefit-subtitle span:last-child {
        font-size: 30px;
    }

    .benefit-highlight::before {
        height: 48px;
        top: 80%;
    }

    /* 1枚目・3枚目・4枚目 */
    .benefit-card:nth-child(1) .benefit-highlight,
    .benefit-card:nth-child(3) .benefit-highlight,
    .benefit-card:nth-child(4) .benefit-highlight {
        font-size: 48px;
    }

    .campaign {
        font-size: 18px;
    }

    .star {
        font-size: 38px;
    }

    .support-badge {
        width: 120px;
        height: 120px;
    }

    .support-badge .badge-label {
        font-size: 14px;
    }

    .support-badge .badge-number {
        font-size: 12px;
    }

    .support-badge .badge-text {
        font-size: 20px;
    }

    .faq-question .q-text {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .section-title::before {
        width: 40px;
        height: 3px;
        margin-bottom: 16px;
    }
    
    .conversation-bubble {
        gap: 10px;
    }
    
    .conversation-bubble p {
        padding: 12px 16px;
        font-size: 14px;
    }

    .shift-message p {
        font-size: 14px;
    }

    .shift-note {
        font-size: 14px;
    }
    
    .more-benefit-item i {
        font-size: 24px;
    }
    
}
