/* ========================================
   リセット & ベーススタイル
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B7355;
    --secondary-color: #A08770;
    --accent-color: #6B8E9D;
    --dark-color: #2C2C2C;
    --text-color: #2C2C2C;
    --text-light: #5A5A5A;
    --text-lighter: #8C8C8C;
    --bg-color: #FAFAF8;
    --bg-light: #F5F3F0;
    --bg-accent: #E8E6E3;
    --border-color: #D4D2CF;
    --success-color: #7A9D7E;
    --gold-accent: #C9A961;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'HG Mincho E', serif;
    color: var(--text-color);
    line-height: 1.9;
    background-color: var(--bg-color);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.05em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   ヘッダー（シックなデザイン）
======================================== */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.header.transparent {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.header.transparent .nav-list a,
.header.transparent .logo h1 {
    color: var(--dark-color);
    text-shadow: none;
}

.header.transparent .menu-toggle span {
    background: var(--primary-color);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.12em;
    font-family: 'Noto Serif JP', serif;
}

.nav-list {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-list a {
    font-weight: 400;
    color: var(--dark-color);
    padding: 0.5rem 0;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    font-family: 'Noto Sans JP', sans-serif;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold-accent);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1.5rem 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0.8rem 2rem;
}

.dropdown-menu a {
    display: block;
    color: var(--text-color);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* ========================================
   ヒーローセクション（高級感）
======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.75), rgba(139, 115, 85, 0.65), rgba(201, 169, 97, 0.5));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    letter-spacing: 0.15em;
    animation: fadeInUp 1s ease-out;
    font-family: 'Noto Serif JP', serif;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
    font-weight: 300;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    letter-spacing: 0.12em;
    animation: fadeInUp 1s ease-out 0.2s both;
    opacity: 0.95;
    line-height: 1.9;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.4s both;
    font-size: 1.1rem;
    padding: 1.2rem 3.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    z-index: 3;
}

.hero-prev,
.hero-next {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    font-size: 1.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.5);
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* ========================================
   セクション共通
======================================== */
section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    letter-spacing: 0.1em;
    font-family: 'Noto Serif JP', serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 400;
    margin-top: 2rem;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ========================================
   ボタン
======================================== */
.btn {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    border-radius: 2px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.15em;
    font-family: 'Noto Sans JP', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gold-accent);
    color: #fff;
    box-shadow: 0 6px 24px rgba(201, 169, 97, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(201, 169, 97, 0.4);
    background: #B89850;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-white:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ========================================
   ページヒーロー（about, contact, recruitページ用）
======================================== */
.page-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px; /* ヘッダーの高さ分のマージン */
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.85), rgba(201, 169, 97, 0.75));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    letter-spacing: 0.1em;
    font-family: 'Noto Serif JP', serif;
    color: #fff;
}

.page-hero p {
    font-size: 1.15rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.9;
    color: #fff;
}

/* ========================================
   保育理念セクション（エレガント）
======================================== */
.philosophy-section {
    background: var(--bg-light);
    padding: 8rem 0;
    position: relative;
}

.philosophy-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.philosophy-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    letter-spacing: 2px;
}

.philosophy-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 2;
    letter-spacing: 1px;
}

.philosophy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-card {
    background: #fff;
    border-radius: 4px;
    padding: 4.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.1);
    border-color: var(--gold-accent);
}

.philosophy-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2.5rem;
    background: var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #fff;
    position: relative;
    box-shadow: 0 8px 32px rgba(201, 169, 97, 0.25);
    transition: var(--transition);
    overflow: hidden;
}

.philosophy-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition);
}

.philosophy-card:hover .philosophy-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.35);
}

.philosophy-card:hover .philosophy-icon img {
    transform: scale(1.1);
}

.philosophy-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.08em;
    font-family: 'Noto Serif JP', serif;
}

.philosophy-card .en-title {
    font-size: 0.85rem;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.8rem;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
}

.philosophy-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
}

/* ========================================
   康聖会について
======================================== */
.about-intro {
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 2;
}

.about-text .btn {
    margin-top: 2rem;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.15), rgba(154, 175, 183, 0.15));
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ========================================
   保育園紹介
======================================== */
.nurseries {
    background: var(--bg-light);
}

.nursery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nursery-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.nursery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
    border-color: var(--gold-accent);
}

.nursery-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.nursery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.nursery-card:hover .nursery-image img {
    transform: scale(1.08);
}

.nursery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.9), rgba(201, 169, 97, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.nursery-card:hover .nursery-overlay {
    opacity: 1;
}

.nursery-content {
    padding: 3rem;
}

.nursery-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: 'Noto Serif JP', serif;
}

.nursery-location {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.nursery-location i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.nursery-description {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.nursery-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.nursery-features li {
    font-size: 0.9rem;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.nursery-features i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* ========================================
   特徴セクション
======================================== */
.features {
    background: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-item {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background: #fff;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.2);
}

.feature-icon i {
    font-size: 2.2rem;
    color: #fff;
    z-index: 1;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ========================================
   お知らせ
======================================== */
.news {
    background: var(--bg-light);
}

.news-list {
    max-width: 1000px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    gap: 2rem;
    border: 1px solid var(--border-color);
}

.news-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.news-date {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 120px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.news-category {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.category-event {
    background: #E8F4F8;
    color: #5A8FA3;
}

.category-important {
    background: #F8E8E8;
    color: #A35A5A;
}

.category-general {
    background: #F0EDE8;
    color: #8B7355;
}

.news-title {
    flex: 1;
    color: var(--text-color);
    font-size: 1.05rem;
}

/* ========================================
   採用CTA
======================================== */
.recruit-cta {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.recruit-content {
    position: relative;
    z-index: 1;
}

.recruit-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.recruit-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    letter-spacing: 1px;
}

.recruit-cta .btn-primary {
    background: #fff;
    color: var(--dark-color);
}

.recruit-cta .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: var(--bg-light);
}

/* ========================================
   フッター
======================================== */
.footer {
    background: linear-gradient(135deg, #3A3530 0%, #4A4540 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gold-accent);
    font-family: 'Noto Serif JP', serif;
}

.footer-section p,
.footer-section li {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--gold-accent);
}

.footer-section i {
    margin-right: 0.8rem;
    color: var(--gold-accent);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ========================================
   募集要項詳細（採用ページ）
======================================== */
.position-card-detail {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.position-card-detail:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* 募集していない職種のスタイル */
.position-card-detail:has(.status-badge.status-closed) {
    opacity: 0.85;
    background: #fafafa;
}

.position-card-detail:has(.status-badge.status-closed):hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.position-card-detail h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold-accent);
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
}

.position-details-list {
    margin-bottom: 2rem;
}

.position-details-list dl {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.position-details-list dl:last-child {
    border-bottom: none;
}

.position-details-list dt {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.05rem;
    letter-spacing: 0.05em;
}

.position-details-list dd {
    color: var(--text-color);
    line-height: 1.8;
}

.position-details-list dd strong {
    color: var(--primary-color);
    font-weight: 600;
}

.position-details-list dd dl {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 0.5rem 0;
    border: none;
}

.position-details-list dd dt {
    font-size: 1rem;
    font-weight: 600;
}

.position-details-list dd dd {
    font-size: 0.95rem;
}

.position-card-detail .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* シンプルな募集カード（募集していない職種用） */
.position-card-simple {
    background: #fafafa;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.position-card-simple h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
}

.position-card-simple .not-recruiting {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

/* 募集状況バッジ */
.recruitment-status {
    text-align: right;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.status-badge.status-closed {
    background: #f5f5f5;
    color: #999;
    border: 1px solid #ddd;
}

.status-badge.status-open {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.recruitment-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f5f5f5;
    border-left: 3px solid var(--gold-accent);
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ========================================
   お問い合わせフォーム
======================================== */
.form-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.form-message {
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-message i {
    font-size: 1.5rem;
}

.success-message {
    background: #e8f5e9;
    border: 1px solid #4caf50;
    color: #2e7d32;
}

.success-message i {
    color: #4caf50;
}

.error-message {
    background: #ffebee;
    border: 1px solid #f44336;
    color: #c62828;
}

.error-message i {
    color: #f44336;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ========================================
   プライバシーポリシー モーダル
======================================== */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.privacy-modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.privacy-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.privacy-modal-close:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.privacy-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.privacy-modal-body h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.privacy-modal-body h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.privacy-modal-body p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.privacy-modal-body ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.privacy-modal-body li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.privacy-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
}

.privacy-modal-footer .btn {
    min-width: 200px;
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .nursery-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }
    
    .header-container {
        padding: 0 20px;
    }
    
    /* ページヒーロー レスポンシブ */
    .page-hero {
        height: 300px;
        margin-top: 80px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
        text-shadow: 0 3px 15px rgba(0,0,0,0.5);
    }

    .page-hero p {
        font-size: 1rem;
        text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    }
    
    .nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: #fff;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 1rem 0 0 2rem;
        border: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    /* 募集要項詳細 レスポンシブ */
    .position-card-detail {
        padding: 2rem;
    }

    .position-card-detail h3 {
        font-size: 1.6rem;
    }

    .position-details-list dl {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .position-details-list dt {
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }

    /* シンプルな募集カード レスポンシブ */
    .position-card-simple {
        padding: 2rem;
    }

    .position-card-simple h3 {
        font-size: 1.5rem;
    }

    .position-card-simple .not-recruiting {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: break-word;
        line-height: 1.4;
    }

    /* スマホのみ改行を表示 */
    .sp-br {
        display: none;
    }
    
    section {
        padding: 5rem 0;
    }
}

@media (min-width: 640px) {
	.pc_none{
		display: none;
	}
	
}
@media (max-width: 640px) {
    /* ページヒーロー スマートフォン */
    .page-hero {
        height: 250px;
        margin-top: 70px;
    }

    .page-hero h1 {
        font-size: 2rem;
        text-shadow: 0 3px 15px rgba(0,0,0,0.6);
        padding: 0 1rem;
    }

    .page-hero p {
        font-size: 0.9rem;
        text-shadow: 0 2px 8px rgba(0,0,0,0.5);
        padding: 0 1rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: break-word;
        line-height: 1.4;
    }

    /* スマホのみ改行を表示 */
    .sp-br {
        display: inline;
    }

    section {
        padding: 4rem 0;
    }

    .btn {
        padding: 1rem 2rem;
    }

    .hero-controls {
        padding: 0 1rem;
    }

    .hero-prev,
    .hero-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .recruit-content h2 {
        font-size: 2rem;
    }

    .recruit-content p {
        font-size: 1rem;
    }

    /* 募集要項詳細 スマートフォン */
    .position-card-detail {
        padding: 1.5rem;
    }

    .position-card-detail h3 {
        font-size: 1.4rem;
    }

    /* プライバシーモーダル スマートフォン */
    .privacy-modal {
        padding: 10px;
    }

    .privacy-modal-content {
        max-height: 95vh;
    }

    .privacy-modal-header {
        padding: 1.5rem 1rem;
    }

    .privacy-modal-header h2 {
        font-size: 1.4rem;
    }

    .privacy-modal-body {
        padding: 1.5rem 1rem;
    }

    .privacy-modal-body h3 {
        font-size: 1.2rem;
    }

    .privacy-modal-body h4 {
        font-size: 1.1rem;
    }

    .privacy-modal-footer {
        padding: 1rem;
    }

    .privacy-modal-footer .btn {
        min-width: auto;
        width: 100%;
    }

    .position-details-list dt {
        font-size: 0.95rem;
    }

    .position-details-list dd {
        font-size: 0.9rem;
    }

    .position-card-detail .btn {
        width: 100%;
        text-align: center;
    }

    /* シンプルな募集カード スマートフォン */
    .position-card-simple {
        padding: 1.5rem;
    }

    .position-card-simple h3 {
        font-size: 1.3rem;
    }

    .position-card-simple .not-recruiting {
        font-size: 0.95rem;
    }
}

/* ========================================
   スムーススクロール
======================================== */
html {
    scroll-behavior: smooth;
}

/* スクロールアニメーション用 */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out both;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}