/* ===== 木古内スタイル 職種ページ共通 ===== */
:root {
    --job-primary: #4dd0e1;
    --job-primary-dark: #008080;
    --job-accent: #1a73e8;
    --job-bg-light: #fefefe;
    --job-text: #333;
}

/* Hero Section */
.sakura-job-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0,160,160,0.92) 0%, rgba(0,100,100,0.95) 100%);
    overflow: hidden;
}
.sakura-job-hero__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}
.sakura-job-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    color: #fff;
}
.sakura-job-hero__badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}
.sakura-job-hero__title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.sakura-job-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 600px;
    line-height: 1.8;
    opacity: 0.95;
}

/* Sticky Sub Navigation */
.sakura-job-subnav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.sakura-job-subnav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.sakura-job-subnav__inner::-webkit-scrollbar { display: none; }
.sakura-job-subnav__link {
    flex-shrink: 0;
    padding: 1rem 1.5rem;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.sakura-job-subnav__link:hover,
.sakura-job-subnav__link.is-active {
    color: var(--job-primary);
}
.sakura-job-subnav__link.is-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--job-primary);
}

/* Section Base */
.sakura-job-section {
    padding: 6rem 2rem;
}
.sakura-job-section--gray { background: var(--job-bg-light); }
.sakura-job-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.sakura-job-section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.sakura-job-section-label {
    font-size: 0.85rem;
    color: var(--job-primary);
    letter-spacing: 0.3em;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}
.sakura-job-section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--job-text);
}

/* About Section */
.sakura-job-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 768px) {
    .sakura-job-about { grid-template-columns: 1fr; }
}
.sakura-job-about__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.sakura-job-about__image img {
    width: 100%;
    height: auto;
    display: block;
}
.sakura-job-about__content {}
.sakura-job-about__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--job-text);
}
.sakura-job-about__text {
    font-size: 1rem;
    line-height: 2;
    color: #555;
}

/* Data Section */
.sakura-job-data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}
.sakura-job-data__item {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}
.sakura-job-data__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--job-primary);
}
.sakura-job-data__number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--job-primary);
    line-height: 1;
}
.sakura-job-data__unit {
    font-size: 0.9rem;
    color: var(--job-primary);
}
.sakura-job-data__label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Team Section */
.sakura-job-team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.sakura-job-team__card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.sakura-job-team__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.sakura-job-team__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.sakura-job-team__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sakura-job-team__body {
    padding: 1.5rem;
}
.sakura-job-team__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--job-text);
    margin-bottom: 0.5rem;
}
.sakura-job-team__text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* Work Features */
.sakura-job-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.sakura-job-feature {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.sakura-job-feature__icon {
    width: 60px;
    height: 60px;
    background: var(--job-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sakura-job-feature__icon span {
    font-size: 1.75rem;
}
.sakura-job-feature__content {}
.sakura-job-feature__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--job-text);
    margin-bottom: 0.5rem;
}
.sakura-job-feature__text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* Schedule Section */
.sakura-job-schedule {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.sakura-job-schedule__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--job-text);
}
.sakura-job-schedule__timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.sakura-job-schedule__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}
.sakura-job-schedule__item:hover {
    background: var(--job-bg-light);
}
.sakura-job-schedule__time {
    font-weight: 700;
    color: var(--job-primary);
    font-size: 0.95rem;
}
.sakura-job-schedule__content {
    color: var(--job-text);
    font-size: 0.95rem;
}

/* Message Section */
.sakura-job-message {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
    .sakura-job-message {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.sakura-job-message__image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.sakura-job-message__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sakura-job-message__content {}
.sakura-job-message__label {
    font-size: 0.85rem;
    color: var(--job-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.sakura-job-message__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--job-text);
}
.sakura-job-message__text {
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
}

/* Requirements Table */
.sakura-job-table {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.sakura-job-table table {
    width: 100%;
    border-collapse: collapse;
}
.sakura-job-table th,
.sakura-job-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.sakura-job-table th {
    width: 30%;
    background: var(--job-bg-light);
    font-weight: 600;
    color: var(--job-text);
}
.sakura-job-table td {
    color: #555;
    line-height: 1.7;
}
.sakura-job-table tr:last-child th,
.sakura-job-table tr:last-child td {
    border-bottom: none;
}
@media (max-width: 768px) {
    .sakura-job-table th,
    .sakura-job-table td {
        display: block;
        width: 100%;
    }
    .sakura-job-table th {
        padding-bottom: 0.5rem;
    }
    .sakura-job-table td {
        padding-top: 0.5rem;
    }
}

/* CTA Section */
.sakura-job-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--job-primary) 0%, var(--job-primary-dark) 100%);
    text-align: center;
    color: #fff;
}
.sakura-job-cta__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}
.sakura-job-cta__text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.sakura-job-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.sakura-btn--white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}
.sakura-btn--ghost:hover {
    background: rgba(255,255,255,0.1);
}
