/* ============================================
   リクルートサイト コンポーネントCSS
   recruit.saikazo.org 完全再現
============================================ */

/* ========== ヒーローセクション ========== */
.sz-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-bg-cream);
}

.sz-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.sz-hero__bg-image {
    position: absolute;
    width: 45%;
    height: 60%;
    object-fit: cover;
}

.sz-hero__bg-image--left {
    left: 0;
    top: 10%;
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
}

.sz-hero__bg-image--right {
    right: 0;
    top: 5%;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
}

.sz-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.sz-hero__content {
    text-align: center;
}

.sz-hero__lead {
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.sz-hero__title {
    margin-bottom: 40px;
}

.sz-hero__title-en {
    display: block;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text);
    line-height: 1.1;
}

.sz-hero__title-sub {
    display: block;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-top: 10px;
}

.sz-hero__accent {
    color: var(--color-accent);
}

.sz-hero__categories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 1.4rem;
}

.sz-hero__category {
    color: #666666; /* ベージュ背景(#faf8f5)で4.5:1以上確保 */
}

.sz-hero__category-item {
    padding: 5px 15px;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    color: var(--color-text);
}

.sz-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sz-hero__scroll-text {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: #666666; /* ベージュ背景(#faf8f5)で4.5:1以上確保 */
}

.sz-hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-text-muted), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========== メッセージセクション ========== */
.sz-message {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.sz-message__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.sz-message__label {
    display: block;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.sz-message__title {
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sz-message__title-accent {
    display: block;
    position: relative;
}

.sz-message__title-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 30'%3E%3Cpath d='M10 20 Q100 0 190 20' fill='none' stroke='%23333' stroke-width='1'/%3E%3C/svg%3E") center no-repeat;
    background-size: contain;
}

.sz-message__content {
    font-size: 1.6rem;
    line-height: 2.2;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.sz-message__content p {
    margin-bottom: 20px;
}

.sz-message__image {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
}

.sz-message__image--left {
    left: -50px;
    top: 20%;
}

.sz-message__image--right {
    right: -50px;
    bottom: 20%;
}

.sz-message__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== 募集職種セクション ========== */
.sz-joblist {
    padding: 100px 0;
    background: var(--color-white);
}

.sz-joblist__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.sz-joblist__header {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 50px;
}

.sz-joblist__label {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

.sz-joblist__label .sz-accent {
    color: var(--color-accent);
}

.sz-joblist__title {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
}

.sz-joblist__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.sz-joblist__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 1.4rem;
    text-align: center;
    transition: all 0.3s ease;
}

.sz-joblist__item:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    opacity: 1;
}

.sz-joblist__note {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    padding: 30px 0;
}

.sz-joblist__note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 20'%3E%3Cpath d='M5 15 Q30 5 55 15' fill='none' stroke='%23333' stroke-width='1'/%3E%3C/svg%3E") center no-repeat;
}

.sz-joblist__desc {
    font-size: 1.4rem;
    color: var(--color-text-muted);
    text-align: center;
}

/* ========== 特集カードセクション ========== */
.sz-featured {
    padding: 80px 0;
    background: var(--color-bg-cream);
}

.sz-featured__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.sz-featured__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sz-featured__card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sz-featured__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    opacity: 1;
}

.sz-featured__card-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.sz-featured__card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sz-featured__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.sz-featured__card-overlay-title {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 4rem;
    letter-spacing: 0.1em;
}

.sz-featured__card-content {
    padding: 30px;
    text-align: center;
}

.sz-featured__card-label {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.sz-featured__card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 30px;
    background: var(--color-accent-coral);
    border-radius: 50px;
    font-size: 1.4rem;
    color: var(--color-text);
}

.sz-featured__card--nurse {
    background: var(--color-bg-beige);
}

.sz-featured__card--nurse .sz-featured__card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* ========== 働く環境セクション ========== */
.sz-environment {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.sz-environment__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.sz-environment__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 0 50%;
}

.sz-environment__label {
    display: block;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.sz-environment__title {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
}

.sz-environment__desc {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 40px;
}

.sz-environment__image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 80%;
    border-radius: 50% 0 0 50%;
    overflow: hidden;
}

.sz-environment__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,230,255,0.3) 0%, transparent 50%);
}

.sz-environment__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== ニュースセクション ========== */
.sz-news {
    padding: 100px 0;
    background: var(--color-white);
}

.sz-news__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.sz-news__header {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 50px;
}

.sz-news__label {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

.sz-news__label .sz-accent {
    color: var(--color-accent);
}

.sz-news__title {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
}

.sz-news__list {
    border-top: 1px solid var(--color-border);
}

.sz-news__item {
    border-bottom: 1px solid var(--color-border);
}

.sz-news__link {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px 0;
    transition: background 0.3s ease;
}

.sz-news__link:hover {
    opacity: 1;
    background: var(--color-bg-cream);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 -20px;
}

.sz-news__date {
    font-size: 1.4rem;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.sz-news__title-text {
    flex: 1;
    font-size: 1.5rem;
}

.sz-news__arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--color-border);
}

.sz-news__empty {
    display: block;
    padding: 30px 0;
    text-align: center;
    color: var(--color-text-muted);
}

/* ========== 看護部ヒーロー ========== */
.sz-nurse-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: var(--color-bg-beige);
    overflow: hidden;
}

.sz-nurse-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.sz-nurse-hero__bg-text {
    position: absolute;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 20rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.sz-nurse-hero__bg-text--top {
    top: 5%;
    left: 0;
}

.sz-nurse-hero__bg-text--middle {
    top: 35%;
    left: 10%;
}

.sz-nurse-hero__bg-text--bottom {
    bottom: 10%;
    left: 5%;
}

.sz-nurse-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.sz-nurse-hero__content {
    max-width: 500px;
}

.sz-nurse-hero__title {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: 1.8;
    margin-bottom: 40px;
}

.sz-nurse-hero__images {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 20px;
}

.sz-nurse-hero__image {
    width: 200px;
    height: 280px;
    border-radius: 100px;
    overflow: hidden;
    transform: rotate(-5deg);
}

.sz-nurse-hero__image:nth-child(2) {
    transform: rotate(5deg) translateY(30px);
}

.sz-nurse-hero__image:nth-child(3) {
    transform: rotate(-3deg) translateY(-20px);
}

.sz-nurse-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== 看護部サブナビ ========== */
.sz-nurse-subnav {
    position: sticky;
    top: 80px;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    z-index: 99;
}

.sz-nurse-subnav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sz-nurse-subnav__btn {
    padding: 15px 25px;
    background: var(--color-accent-coral);
    color: var(--color-text);
    font-size: 1.3rem;
    border-radius: 0;
}

.sz-nurse-subnav__list {
    display: flex;
    align-items: center;
}

.sz-nurse-subnav__link {
    display: block;
    padding: 20px 25px;
    font-size: 1.3rem;
    color: var(--color-text);
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.sz-nurse-subnav__link:hover,
.sz-nurse-subnav__link.is-active {
    border-bottom-color: var(--color-accent);
    opacity: 1;
}

/* ========== 募集要項一覧 ========== */
.sz-guidelines {
    padding: 80px 0;
}

.sz-guidelines__header {
    text-align: center;
    margin-bottom: 60px;
}

.sz-guidelines__page-title {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
}

.sz-guidelines__tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.sz-guidelines__tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 1.4rem;
    background: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sz-guidelines__tab.is-active,
.sz-guidelines__tab:hover {
    border-color: var(--color-text);
}

.sz-guidelines__section {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 40px;
}

.sz-guidelines__section-header {
    text-align: center;
    margin-bottom: 40px;
}

.sz-guidelines__section-label {
    display: block;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.sz-guidelines__section-label .sz-accent {
    color: var(--color-accent);
}

.sz-guidelines__section-title {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
}

/* 職種グループ */
.sz-job-group {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px dashed var(--color-border);
}

.sz-job-group__title {
    flex-shrink: 0;
    width: 150px;
    font-size: 1.8rem;
    font-weight: 500;
    padding-top: 15px;
}

.sz-job-group__list {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.sz-job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: var(--color-teal);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.sz-job-card:hover {
    background: var(--color-teal-light);
    opacity: 1;
}

.sz-job-card--outline {
    background: var(--color-white);
    color: var(--color-teal);
    border: 1px solid var(--color-teal);
}

.sz-job-card--outline:hover {
    background: var(--color-teal);
    color: var(--color-white);
}

.sz-job-card__info {
    display: flex;
    flex-direction: column;
}

.sz-job-card__title {
    font-weight: 500;
}

.sz-job-card__note {
    font-size: 1.2rem;
    opacity: 0.8;
}

.sz-job-card__arrow {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.sz-job-card--outline .sz-job-card__arrow {
    background: transparent;
    border: 1px solid var(--color-teal);
}

/* 採用フロー */
.sz-flow {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.sz-flow__header {
    text-align: center;
    margin-bottom: 40px;
}

.sz-flow__label {
    display: block;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.sz-flow__title {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.sz-flow__desc {
    font-size: 1.5rem;
    color: var(--color-text-light);
}

.sz-flow__list {
    position: relative;
}

.sz-flow__list::before {
    content: '';
    position: absolute;
    left: 42px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: var(--color-border);
}

.sz-flow__item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.sz-flow__number {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8a87c, #85c88a);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1rem;
    line-height: 1.2;
}

.sz-flow__number-label {
    font-size: 0.9rem;
}

.sz-flow__number-num {
    font-size: 2rem;
    font-weight: 600;
}

.sz-flow__content {
    flex: 1;
}

.sz-flow__item-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.sz-flow__item-text {
    font-size: 1.5rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.sz-flow__item-note {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    margin-top: 10px;
}

/* ========== 求人詳細ページ ========== */
.sz-detail-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-bg-cream) 0%, #fff 100%);
    padding-top: 100px;
    overflow: hidden;
}

.sz-detail-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 40px;
}

.sz-detail-hero__category {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-teal);
    color: var(--color-white);
    font-size: 1.3rem;
    border-radius: 30px;
    margin-bottom: 20px;
}

.sz-detail-hero__title {
    font-size: 3.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin-bottom: 15px;
}

.sz-detail-hero__subtitle {
    font-size: 1.6rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.sz-detail-hero__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.sz-detail-hero__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    font-size: 1.3rem;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.sz-detail-hero__nav-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    opacity: 1;
}

.sz-detail-hero__nav-link .material-symbols-outlined {
    font-size: 1.4rem;
}

.sz-detail-hero__image {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.sz-detail-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sz-detail-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.sz-detail-hero__scroll-text {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

.sz-detail-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-text-muted), transparent);
    animation: scrollLine 2s infinite;
}

/* Detail Sections */
.sz-detail-section {
    padding: 100px 0;
}

.sz-detail-section--gray {
    background: var(--color-bg-gray);
}

.sz-detail-section__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.sz-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sz-section-label {
    display: block;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.25em;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.sz-section-label .sz-accent {
    color: var(--color-accent);
}

.sz-section-title {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.sz-detail-section__notice {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--color-accent-coral);
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.sz-detail-section__notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    font-weight: 700;
}

.sz-detail-section__content {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 40px;
}

.sz-detail-section__subtitle {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.sz-detail-section__text {
    color: var(--color-text-light);
    margin-bottom: 25px;
}

/* Person Cards */
.sz-person-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sz-person-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sz-person-card__title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.sz-person-card__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.sz-person-card__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.sz-person-card__dot--red {
    background: var(--color-accent);
}

.sz-person-card__dot--blue {
    background: var(--color-teal);
}

.sz-person-card__dot--green {
    background: #7cb342;
}

.sz-person-card__desc {
    font-size: 1.4rem;
    line-height: 1.9;
    color: var(--color-text-light);
}

/* Detail Definition List */
.sz-detail-dl {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sz-detail-dl__row {
    display: flex;
    border-bottom: 1px solid var(--color-border-light);
}

.sz-detail-dl__row:last-child {
    border-bottom: none;
}

.sz-detail-dl__term {
    flex: 0 0 180px;
    padding: 25px 30px;
    background: var(--color-bg-cream);
    font-weight: 500;
    font-size: 1.4rem;
}

.sz-detail-dl__desc {
    flex: 1;
    padding: 25px 30px;
    font-size: 1.5rem;
    line-height: 1.9;
}

/* Download Section */
.sz-download-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sz-download-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sz-download-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 1;
}

.sz-download-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 8px;
}

.sz-download-card__info {
    flex: 1;
}

.sz-download-card__name {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.sz-download-card__size {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

/* ========== レスポンシブ ========== */
@media (max-width: 1024px) {
    .sz-hero__title-en {
        font-size: 5rem;
    }
    
    .sz-hero__title-sub {
        font-size: 2.5rem;
    }
    
    .sz-featured__cards {
        grid-template-columns: 1fr;
    }
    
    .sz-environment__inner {
        padding: 0 40px;
    }
    
    .sz-environment__bg,
    .sz-environment__image {
        display: none;
    }
    
    .sz-job-group {
        flex-direction: column;
        gap: 20px;
    }
    
    .sz-job-group__title {
        width: 100%;
    }
    
    .sz-job-group__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sz-hero {
        min-height: 600px;
    }
    
    .sz-hero__title-en {
        font-size: 3.5rem;
    }
    
    .sz-hero__title-sub {
        font-size: 2rem;
    }
    
    .sz-hero__categories {
        flex-wrap: wrap;
    }
    
    .sz-message__title {
        font-size: 2.2rem;
    }
    
    .sz-joblist__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .sz-news__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .sz-news__link {
        flex-wrap: wrap;
    }
    
    .sz-nurse-subnav__inner {
        overflow-x: auto;
        justify-content: flex-start;
    }
    
    .sz-nurse-subnav__list {
        flex-wrap: nowrap;
    }
    
    .sz-guidelines__tabs {
        flex-direction: column;
    }
    
    .sz-flow__item {
        flex-direction: column;
        text-align: center;
    }
    
    /* Detail Page Responsive */
    .sz-detail-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .sz-detail-hero__image {
        position: relative;
        width: 100%;
        height: 250px;
        order: -1;
    }
    
    .sz-detail-hero__inner {
        padding: 30px 20px;
    }
    
    .sz-detail-hero__title {
        font-size: 2.4rem;
    }
    
    .sz-detail-hero__nav {
        gap: 10px;
    }
    
    .sz-detail-hero__nav-link {
        padding: 8px 15px;
        font-size: 1.2rem;
    }
    
    .sz-section-title {
        font-size: 2.2rem;
    }
    
    .sz-person-cards {
        grid-template-columns: 1fr;
    }
    
    .sz-detail-dl__row {
        flex-direction: column;
    }
    
    .sz-detail-dl__term {
        flex: none;
        padding: 15px 20px;
    }
    
    .sz-detail-dl__desc {
        padding: 15px 20px;
    }
}
