/* ===== 木古内スタイル 薬剤師採用ページ ===== */
:root {
    --pharm-primary: #2e7d32;
    --pharm-primary-dark: #1b5e20;
    --pharm-accent: #4dd0e1;
    --pharm-bg-light: #f5f9f5;
    --pharm-text: #333;
}

/* Hero Section */
.sakura-pharm-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46,125,50,0.9) 0%, rgba(27,94,32,0.95) 100%);
    overflow: hidden;
}
.sakura-pharm-hero__bg-text {
    position: absolute;
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    white-space: nowrap;
    -webkit-user-select: none;
    user-select: none;
}
.sakura-pharm-hero__bg-text--line1 { top: 10%; left: -5%; }
.sakura-pharm-hero__bg-text--line2 { bottom: 15%; right: -10%; }
.sakura-pharm-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
}
.sakura-pharm-hero__lead {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    opacity: 0.9;
}
.sakura-pharm-hero__title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.sakura-pharm-hero__title-accent { color: #a5d6a7; }
.sakura-pharm-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Sub Navigation */
.sakura-pharm-subnav {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}
.sakura-pharm-subnav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    overflow-x: auto;
}
.sakura-pharm-subnav__link {
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--pharm-text);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}
.sakura-pharm-subnav__link:hover,
.sakura-pharm-subnav__link.is-active {
    color: var(--pharm-primary);
    border-bottom-color: var(--pharm-primary);
}

/* Section Base */
.sakura-pharm-section {
    padding: 6rem 2rem;
}
.sakura-pharm-section--gray { background: var(--pharm-bg-light); }
.sakura-pharm-section--dark { 
    background: linear-gradient(135deg, #1a1a2e, #16213e); 
    color: #fff; 
}
.sakura-pharm-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.sakura-pharm-section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.sakura-pharm-section-label {
    font-size: 0.85rem;
    color: var(--pharm-primary);
    letter-spacing: 0.3em;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}
.sakura-pharm-section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--pharm-text);
}
.sakura-pharm-section--dark .sakura-pharm-section-label { 
    color: rgba(255,255,255,0.7); 
}
.sakura-pharm-section--dark .sakura-pharm-section-title { 
    color: #fff; 
}

/* About Section */
.sakura-pharm-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 768px) { 
    .sakura-pharm-about { grid-template-columns: 1fr; } 
}
.sakura-pharm-about__content {}
.sakura-pharm-about__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--pharm-text);
    line-height: 1.5;
}
.sakura-pharm-about__title-accent { color: var(--pharm-primary); }
.sakura-pharm-about__text {
    font-size: 1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 1.5rem;
}
.sakura-pharm-about__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.sakura-pharm-about__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Data Section */
.sakura-pharm-data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.sakura-pharm-data__item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
}
.sakura-pharm-data__number {
    font-size: 3rem;
    font-weight: 900;
    color: #a5d6a7;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.sakura-pharm-data__unit {
    font-size: 1rem;
}
.sakura-pharm-data__label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Work Section */
.sakura-pharm-work {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.sakura-pharm-work__card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}
.sakura-pharm-work__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--pharm-primary), var(--pharm-accent));
}
.sakura-pharm-work__icon {
    width: 60px;
    height: 60px;
    background: var(--pharm-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.sakura-pharm-work__icon span {
    font-size: 1.75rem;
    color: var(--pharm-primary);
}
.sakura-pharm-work__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--pharm-text);
}
.sakura-pharm-work__text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
}

/* Features Section */
.sakura-pharm-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.sakura-pharm-feature {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.sakura-pharm-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.sakura-pharm-feature__number {
    width: 50px;
    height: 50px;
    background: var(--pharm-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}
.sakura-pharm-feature__content {}
.sakura-pharm-feature__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--pharm-text);
}
.sakura-pharm-feature__text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* Schedule Section */
.sakura-pharm-schedule {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.sakura-pharm-schedule__title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--pharm-text);
}
.sakura-pharm-schedule__list {
    max-width: 600px;
    margin: 0 auto;
}
.sakura-pharm-schedule__item {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #eee;
}
.sakura-pharm-schedule__item:last-child { border-bottom: none; }
.sakura-pharm-schedule__time {
    min-width: 80px;
    font-weight: 700;
    color: var(--pharm-primary);
}
.sakura-pharm-schedule__task {
    color: #555;
}

/* Message Section */
.sakura-pharm-message {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
    .sakura-pharm-message {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.sakura-pharm-message__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.sakura-pharm-message__image img {
    width: 100%;
    height: auto;
    display: block;
}
.sakura-pharm-message__content {}
.sakura-pharm-message__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--pharm-text);
}
.sakura-pharm-message__text {
    font-size: 1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 1rem;
}
.sakura-pharm-message__meta {
    font-size: 0.9rem;
    color: var(--pharm-primary);
    font-weight: 600;
}

/* Requirements Section */
.sakura-pharm-requirements {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.sakura-pharm-requirements__header {
    background: var(--pharm-primary);
    color: #fff;
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
}
.sakura-pharm-requirements__table {
    width: 100%;
    border-collapse: collapse;
}
.sakura-pharm-requirements__table th,
.sakura-pharm-requirements__table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.sakura-pharm-requirements__table th {
    background: var(--pharm-bg-light);
    font-weight: 600;
    width: 180px;
    color: var(--pharm-text);
}
.sakura-pharm-requirements__table td {
    color: #555;
    line-height: 1.8;
}

/* CTA Section */
.sakura-pharm-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--pharm-primary), var(--pharm-primary-dark));
    text-align: center;
    color: #fff;
}
.sakura-pharm-cta__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}
.sakura-pharm-cta__text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.sakura-pharm-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.sakura-btn--primary:hover {
    background: var(--pharm-primary-dark);
    transform: translateY(-2px);
}
.sakura-btn--white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}
.sakura-btn--ghost:hover {
    background: rgba(255,255,255,0.1);
}
