/* --- Toyota Pharmacy Design System --- */
:root {
    /* Branding Colors */
    --primary: #F15A24; /* Toyota Orange */
    --primary-dark: #D44E1F;
    --primary-light: #FFF1EB;
    --secondary: #FBB03B; /* Toyota Yellow */
    --accent: #39B54A; /* Toyota Green */
    
    /* UI Colors */
    --text: #2D3436;
    --text-light: #636E72;
    --bg: #FFFFFF;
    --bg-alt: #F4F6F9;
    --white: #FFFFFF;
    
    /* Glassmorphism */
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    
    /* Effects */
    --shadow: 0 30px 60px -12px rgba(241, 90, 36, 0.12);
    --radius-lg: 32px;
    --radius-md: 16px;
    
    /* Typography */
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-accent: 'Plus Jakarta Sans', sans-serif;
}

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 88px;
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-desktop a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: var(--primary);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 12px 24px rgba(241, 90, 36, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 32px rgba(241, 90, 36, 0.35);
}

.btn-glass {
    background: var(--glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    color: var(--primary);
}

.btn-glass:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 130px 0 60px;
    min-height: auto;
    display: flex;
    align-items: center;
    background: var(--bg-alt);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.glass-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.1;
    animation: orbFloat 25s infinite alternate ease-in-out;
}

.orb-1 { width: 600px; height: 600px; background: var(--secondary); top: -200px; right: -100px; }
.orb-2 { width: 700px; height: 700px; background: var(--primary); bottom: -100px; left: -100px; opacity: 0.22; animation-delay: -5s; }
.orb-3 { width: 400px; height: 400px; background: var(--accent); top: 30%; left: 30%; opacity: 0.05; animation-delay: -10s; }

@keyframes orbFloat {
    from { transform: translate(0, 0) rotate(0deg); }
    to { transform: translate(60px, 80px) rotate(15deg); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: center;
}

.hero-inner > * {
    min-width: 0;
}

.hero-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(241, 90, 36, 0.1);
}

.hero-title {
    font-family: var(--font-sans);
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 28px;
    max-width: 580px;
}

/* Subpage Single-Column Hero */
.page-hero {
    padding: 120px 0 50px;
    display: block;
    min-height: auto;
}

.page-hero .hero-inner {
    display: block;
    max-width: 880px;
    grid-template-columns: none;
}

.page-hero .hero-subtitle {
    max-width: 100%;
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* --- Navigator Card --- */
.navigator-container {
    width: 100%;
}

.navigator-card {
    width: 460px;
    max-width: 100%;
    margin-left: auto;
    background: var(--glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.4s ease;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.navigator-card:hover {
    transform: translateY(-5px);
}

.navigator-header {
    padding: 24px 24px 12px;
    text-align: center;
}

.navigator-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text);
}

.navigator-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
}

.navigator-body {
    width: 100%;
    max-width: 100%;
    padding: 8px 0 20px;
    height: 330px;
    position: relative;
    overflow: hidden;
}

.navigator-track {
    display: flex;
    width: 200%;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.navigator-step {
    width: 50%;
    max-width: 50%;
    flex-shrink: 0;
    min-width: 0;
    padding: 0 24px;
}

.navigator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.nav-option-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.nav-option-btn:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-4px);
}

.nav-option-icon {
    font-size: 2.2rem;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon-img {
    width: 2.4rem;
    height: 2.4rem;
    object-fit: contain;
    display: block;
}

.nav-option-btn:hover .nav-option-icon {
    transform: scale(1.1);
}

.nav-option-text {
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    color: var(--text);
}

/* Step 2 List */
.nav-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 16px;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s;
}

.nav-back-btn:hover {
    background: var(--primary-light);
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    min-width: 0;
}

.nav-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--white);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
    width: 100%;
    min-width: 0;
    text-align: left;
    cursor: pointer;
}

.nav-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    width: 100%;
}

.nav-item-text {
    font-size: 1rem;
    line-height: 1.2;
    word-break: break-all;
    overflow-wrap: break-word;
}

.nav-item-note {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.8;
    word-break: break-all;
    overflow-wrap: break-word;
}

.nav-list-item:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateX(8px);
    color: var(--primary);
}

.nav-list-item::after {
    content: '→';
    font-size: 1.2rem;
    opacity: 0.5;
    transition: transform 0.3s;
}

.nav-list-item:hover::after {
    transform: translateX(4px);
    opacity: 1;
}

.navigator-footer {
    padding: 16px;
    background: rgba(241, 90, 36, 0.03);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .hero-title { font-size: 1.9rem; }
    .hero-inner { gap: 32px; }
}

@media (max-width: 992px) {
    .logo-img { height: 32px; }
    .hero { padding-top: 120px; padding-bottom: 40px; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 1.8rem; margin: 0 auto 20px; }
    .hero-subtitle { margin: 0 auto 28px; font-size: 1rem; }
    .hero-actions { justify-content: center; }
    .navigator-container { max-width: 460px; margin: 40px auto 0; }
    .navigator-card { margin: 0 auto; }
}

@media (max-width: 576px) {
    .container { padding: 0 20px; }
    .hero-title { font-size: 1.4rem; }
    .navigator-grid { grid-template-columns: 1fr; }
    .navigator-body { padding: 0 20px 32px; min-height: 280px; }
}

/* --- News Section (Compact) --- */
.news-section {
    padding: 32px 0;
    background: var(--bg);
}

.news-container-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.news-list-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.news-item-compact {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
}

.news-item-compact .news-date {
    font-family: var(--font-accent);
    color: var(--primary);
    font-weight: 700;
    min-width: 90px;
}

.view-all-compact {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.view-all-compact:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* --- Philosophy Section --- */
.philosophy-section {
    padding: 60px 0;
    background: var(--bg-alt);
    position: relative;
}

.section-label {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 16px;
}

.section-heading {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 32px;
}

.text-large {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.8;
}

/* --- Services Section --- */
.service-block {
    padding: 80px 0;
    background-color: var(--bg);
}

.service-block.alt-bg {
    background-color: var(--bg-alt);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* Box（ボタン）用スタイル */
.service-btn-container {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.service-btn-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-md); /* 角丸8px */
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid var(--primary);
    text-align: center;
    cursor: pointer;
}

.service-btn-box.primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(241, 90, 36, 0.15);
}

.service-btn-box.primary:hover {
    background-color: #d84513;
    border-color: #d84513;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(241, 90, 36, 0.25);
}

.service-btn-box.outline {
    background-color: transparent;
    color: var(--primary);
}

.service-btn-box.outline:hover {
    background-color: rgba(241, 90, 36, 0.05);
    transform: translateY(-2px);
}

.service-btn-box.btn-teal {
    background-color: #5fa9a0;
    border-color: #5fa9a0;
    color: var(--white);
}

.service-btn-box.btn-teal:hover {
    background-color: #4a8e85;
    border-color: #4a8e85;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(95, 169, 160, 0.25);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.service-card-main {
    display: grid;
    grid-template-columns: 1fr 580px;
    grid-template-areas: "info image";
    gap: 60px;
    align-items: center;
}

.service-card-main.reverse {
    /* 特部の順序反転が必要な場合用（デフォルトはテキスト左・画像右） */
    grid-template-areas: "image info";
}

.service-image {
    grid-area: image;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.service-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.service-info {
    grid-area: info;
}

/* 個別サイズ調整 */
.service-image-pharmacy img,
.service-image-sales img,
.service-image-daycare img {
    max-width: 100%;
}

.service-name {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.service-name .en {
    font-family: var(--font-accent);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.service-name .ja {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.btn-text {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
}

/* --- Access Section --- */
.access-section {
    padding: 60px 0;
    background: var(--bg-alt);
}

.access-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-top: 60px;
    align-items: flex-start;
}

.access-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.company-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--primary);
}

.info-item {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.info-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.info-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.6;
}

/* --- SNS Section (Horizontal) --- */
.sns-section {
    padding: 40px 0;
    background: var(--bg);
}

.sns-container-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sns-header {
    flex-shrink: 0;
}

.sns-content {
    flex-grow: 1;
    max-width: 600px;
}

.sns-card-horizontal {
    display: flex;
    align-items: center;
    padding: 20px 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(225, 48, 108, 0.1);
}

.sns-card-horizontal:hover {
    transform: translateX(10px);
    border-color: #E1306C;
    box-shadow: 0 20px 40px rgba(225, 48, 108, 0.1);
}

.sns-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sns-icon-img {
    width: 2.8rem;
    height: 2.8rem;
    object-fit: contain;
    display: block;
}

.sns-info-text {
    display: flex;
    flex-direction: column;
}

.sns-name {
    font-size: 1.1rem;
    font-weight: 800;
}

.sns-handle {
    font-size: 0.85rem;
    font-weight: 600;
    color: #E1306C;
}

.sns-arrow {
    margin-left: auto;
    font-size: 1.2rem;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .sns-container-horizontal { flex-direction: column; align-items: flex-start; gap: 24px; }
    .sns-content { max-width: 100%; width: 100%; }
}

/* --- Responsive Updates --- */
@media (max-width: 992px) {
    .access-grid { grid-template-columns: 1fr; gap: 40px; }
    .news-container-compact { flex-direction: column; align-items: flex-start; gap: 24px; }
    .service-card-main { grid-template-columns: 1fr; grid-template-areas: "image" "info"; text-align: center; gap: 32px; }
    .service-card-main.reverse { grid-template-areas: "image" "info"; }
    .service-image { max-width: 100%; justify-content: center; }
    .section-heading { font-size: 2rem; }
}

/* --- Contact Page --- */
.page-contact {
    background-color: var(--bg-alt);
}

.contact-hero {
    padding: 180px 0 60px;
    background: linear-gradient(135deg, var(--primary-light), #FFFFFF);
    text-align: center;
}

.page-title {
    font-family: var(--font-accent);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.3em;
}

.contact-form-section {
    padding: 60px 0 120px;
}

.container-sm {
    max-width: 800px;
}

.form-card {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.badge-required {
    background: #E74C3C;
    color: var(--white);
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #F0F0F0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #FAFAFA;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.form-footer {
    text-align: center;
    margin-top: 24px;
}

.btn-wide {
    width: 100%;
    max-width: 400px;
}

@media (max-width: 576px) {
    .form-card { padding: 40px 24px; }
    .page-title { font-size: 2.5rem; }
}

/* --- Business Page (Strategic Layout) --- */
.page-business { background-color: var(--white); }
.business-section { padding: 60px 0; }
.alt-bg { background-color: var(--bg-alt); }
.business-hero { 
    padding: 140px 0 60px; 
    background: linear-gradient(135deg, var(--bg-alt), var(--white)); 
    text-align: left;
    position: relative;
    overflow: hidden;
}

.business-hero .page-title {
    font-size: 3.5rem;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.business-hero .page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-header-left {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
    padding-left: 28px;
}

.section-header-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 4px;
}

.section-header-left .section-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.3em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-header-left .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -0.01em;
}

.philosophy-content-box {
    max-width: 960px;
    margin-left: 0;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.philosophy-list-verbatim {
    list-style: none;
    padding: 0;
}

.philosophy-list-verbatim li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 32px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.8;
}



.services-verbatim-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-verbatim-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-v-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-v-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-v-content-inner {
    padding: 32px;
}

.service-v-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.v-icon { font-size: 2rem; }
.service-verbatim-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.service-verbatim-card p { font-size: 0.95rem; line-height: 1.8; color: var(--text-light); }

.strengths-verbatim-list {
    max-width: 1000px;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.strength-v-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.v-icon-box {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    border: 2px solid var(--primary-light);
}

.v-content h4 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; color: var(--primary); }
.v-content p { font-size: 1rem; line-height: 1.8; }

.overview-table-container {
    max-width: 900px;
    margin-left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.overview-table {
    width: 100%;
    border-collapse: collapse;
}

.overview-table th, .overview-table td {
    padding: 24px 32px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.overview-table th {
    background: var(--bg-alt);
    width: 30%;
    font-weight: 800;
    color: var(--primary);
}

.overview-table td { font-weight: 600; }

.overview-inner-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    margin: 0;
}

.overview-inner-list li {
    font-size: 0.9rem;
    position: relative;
    padding-left: 12px;
}

.overview-inner-list li::before {
    content: '・';
    position: absolute;
    left: 0;
}

.notice-block-v {
    max-width: 900px;
    margin: 40px 0 0;
    background: #FFF9F6;
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--primary-light);
}

.notice-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.notice-block-v p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text);
}

@media (max-width: 992px) {
    .business-hero { padding: 110px 0 40px; }
    .business-hero .page-title { font-size: 2.4rem; }
    .section-header-left { margin-bottom: 40px; padding-left: 20px; }
    .section-header-left .section-title { font-size: 1.75rem; }
    .services-verbatim-grid { grid-template-columns: 1fr; }
    .philosophy-content-box { padding: 40px 24px; }
    .strength-v-item { flex-direction: column; gap: 16px; }
    .v-num { font-size: 2rem; }
    .overview-table th { width: 40%; padding: 20px; }
    .overview-table td { padding: 20px; }
    .overview-inner-list { grid-template-columns: 1fr; }
}

/* --- Footer Bottom --- */
.footer-bottom {
    background: #2D3436;
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Global overflow protection */
html, body { max-width: 100%; overflow-x: hidden; }

/* =========================================
   Store Page
   ========================================= */
.page-store { background-color: #F0EFED; }

.store-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.store-hero-title {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    background: var(--primary);
    padding: 16px 56px;
    border-radius: 50px;
    letter-spacing: 0.15em;
}

.store-list-section {
    padding: 0 0 100px;
}

/* Brand Header */
.store-brand-header {
    margin-bottom: 16px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.brand-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Area Label */
.store-area-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 40px 0 24px;
}

/* Store List */
.store-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

/* Store Row */
.store-row {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-row:hover {
    background: #FFF1EB;
    border-color: var(--primary-dark);
}

.store-row.active {
    background: var(--primary);
    border-color: var(--primary);
}

.store-row.active .store-row-name,
.store-row.active .store-row-address,
.store-row.active .store-row-contact,
.store-row.active .contact-tel,
.store-row.active .contact-fax {
    color: var(--white);
}

/* Store Row Name (Left) */
.store-row-name {
    flex-shrink: 0;
    width: 200px;
    padding: 28px 32px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    transition: color 0.3s;
}

/* Store Row Details (Right) */
.store-row-details {
    flex: 1;
    padding: 24px 40px;
}

.store-row-address {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.store-row-contact {
    display: flex;
    gap: 24px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-tel, .contact-fax {
    color: var(--text-light);
    transition: color 0.3s;
}

/* ---- Store Modal ---- */
.store-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.store-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.store-modal {
    background: var(--white);
    border-radius: var(--radius-md);
    max-width: 640px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px 48px 40px;
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.store-modal-overlay.show .store-modal {
    transform: translateY(0) scale(1);
}

.store-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.store-modal-close:hover {
    background: #F0F0F0;
}

.store-modal-name {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 28px;
    color: var(--text);
}

.store-modal-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background-color: #f5f7fa;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-modal-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.25s ease-in-out;
    opacity: 0;
}

.store-modal-info {
    text-align: center;
}

.store-modal-info-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 4px 20px;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.store-modal-address {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.store-modal-contact {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

.modal-tel-link {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.modal-tel-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.store-modal-address a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.store-modal-address a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.store-modal-map {
    width: 100%;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.store-modal-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.store-modal-actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Theme Variants --- */
.store-list.theme-blue .store-row {
    border: 2px solid #00A0E9 !important;
}

.store-list.theme-blue .store-row:hover {
    background: #E6F7FF !important;
    border-color: #007BBB !important;
}

.store-list.theme-blue .store-row.active {
    background: #00A0E9 !important;
    border-color: #00A0E9 !important;
}

.brand-name.theme-blue {
    color: #00A0E9 !important;
}

.brand-line.theme-blue {
    background: linear-gradient(to right, #00A0E9, #87CEEB) !important;
}

.store-modal.theme-blue .store-modal-info-label {
    color: #00A0E9 !important;
    border-color: #00A0E9 !important;
}

.store-modal.theme-blue .modal-tel-link {
    color: #00A0E9 !important;
}

.store-modal.theme-blue .btn-primary {
    background: linear-gradient(135deg, #00A0E9 0%, #87CEEB 100%) !important;
}

/* Store Page Responsive */
@media (max-width: 768px) {
    .store-hero { padding: 120px 0 40px; }
    .store-hero-title { font-size: 1.3rem; padding: 12px 40px; }
    .brand-name { font-size: 1.4rem; }
    .store-row { flex-direction: row; align-items: center; }
    .store-row-name {
        width: 110px;
        padding: 12px 8px;
        border-right: 1px solid rgba(0, 0, 0, 0.06);
        border-bottom: none;
        text-align: center;
        font-size: 0.95rem;
    }
    .store-row-details { padding: 12px 16px; }
    .store-row-address { font-size: 0.85rem; margin-bottom: 4px; }
    .store-row-contact { flex-direction: row; flex-wrap: wrap; gap: 4px 12px; font-size: 0.8rem; }
    .store-modal { padding: 32px 24px; }
    .store-modal-name { font-size: 1.25rem; }
    .store-modal-map { height: 180px; margin-top: 16px; }
}

/* =========================================
   Recruit Page
   ========================================= */

/* --- Hero --- */
.rc-hero {
    padding: 130px 0 60px;
    background: linear-gradient(135deg, #F15A24 0%, #E8630A 100%);
    position: relative;
    overflow: hidden;
}

/* Large watermark text behind content */
.rc-hero-watermark {
    position: absolute;
    bottom: -15px;
    right: 20px;
    font-size: 14rem;
    font-weight: 900;
    font-family: var(--font-en);
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.02em;
    z-index: 0;
}

.rc-hero-badge {
    display: inline-block;
    font-size: 1rem;
    font-weight: 800;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 6px 28px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.12em;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px);
}

.rc-hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.45;
    color: #FFFFFF;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.rc-hero-title .highlight {
    color: #FFEA00;
}

.rc-hero-sub {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    z-index: 1;
    max-width: 800px;
}

/* --- Message --- */
.rc-message {
    position: relative;
    background: var(--primary);
    padding: 120px 0;
    overflow: hidden;
}

.rc-message-watermark {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    font-family: var(--font-en);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.rc-message-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.rc-message-card {
    background: var(--white);
    padding: 56px 48px;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.rc-message-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text);
}

.rc-message-card-line {
    width: 48px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 28px;
}

.rc-message-card-text {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 16px;
}

.rc-message-author {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    text-align: right;
    margin-top: 24px;
    letter-spacing: 0.05em;
}

.rc-message-photo img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* --- My Philosophy --- */
/* Neutral background so color-coded rows stand out clearly */
.rc-philosophy {
    padding: 80px 0 100px;
    background: #F9FAFB;
}

.rc-philosophy-header {
    text-align: left;
    margin-bottom: 48px;
}

.rc-philosophy-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.rc-philosophy-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text);
}

.rc-philosophy-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.rc-philosophy-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
    border-radius: 24px;
    padding: 44px 48px;
    border: none;
    box-shadow: none;
}

/* Color Block Themes (Borderless, soft background tints) */
/* 1. 患者さんに対して: Warm Orange Theme */
.rc-philosophy-row.theme-patient {
    background: linear-gradient(135deg, #FFF7F2 0%, #FFF1E8 100%);
}
.rc-philosophy-row.theme-patient .rc-philosophy-category {
    color: #E8630A;
}
.rc-philosophy-row.theme-patient .rc-philosophy-row-label::before {
    background: #FFFFFF;
    border: 2px solid rgba(232, 99, 10, 0.18);
    box-shadow: 0 12px 32px rgba(232, 99, 10, 0.14);
}
.rc-philosophy-row.theme-patient .rc-philosophy-item {
    border-left: 3px solid #E8630A;
}

/* 2. スタッフに対して: Fresh Teal/Blue Theme */
.rc-philosophy-row.theme-staff {
    background: linear-gradient(135deg, #F0F7FF 0%, #E6F2FF 100%);
}
.rc-philosophy-row.theme-staff .rc-philosophy-category {
    color: #007791;
}
.rc-philosophy-row.theme-staff .rc-philosophy-row-label::before {
    background: #FFFFFF;
    border: 2px solid rgba(0, 119, 145, 0.18);
    box-shadow: 0 12px 32px rgba(0, 119, 145, 0.14);
}
.rc-philosophy-row.theme-staff .rc-philosophy-item {
    border-left: 3px solid #007791;
}

/* 3. 取引業者に対して: Warm Green/Sage Theme */
.rc-philosophy-row.theme-partner {
    background: linear-gradient(135deg, #F4F9F5 0%, #EBF4ED 100%);
}
.rc-philosophy-row.theme-partner .rc-philosophy-category {
    color: #2E7D32;
}
.rc-philosophy-row.theme-partner .rc-philosophy-row-label::before {
    background: #FFFFFF;
    border: 2px solid rgba(46, 125, 50, 0.18);
    box-shadow: 0 12px 32px rgba(46, 125, 50, 0.14);
}
.rc-philosophy-row.theme-partner .rc-philosophy-item {
    border-left: 3px solid #2E7D32;
}

.rc-philosophy-row-label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 36px;
    z-index: 1;
}

/* Soft glowing badge behind the label */
.rc-philosophy-row-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    z-index: -1;
}

.rc-philosophy-category {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    white-space: nowrap;
    line-height: 1;
    padding: 0;
}

.rc-philosophy-row-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rc-philosophy-item {
    position: relative;
    padding-left: 20px;
}

.rc-philosophy-item-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.rc-philosophy-item-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #4A5568;
}

/* --- Style / Features --- */
.rc-style {
    padding: 80px 0;
    background: #FFFFFF;
}

.rc-feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 40px;
    background: #FAFAFA;
    border-left: 4px solid var(--primary);
    border-radius: 0 20px 20px 0;
    padding: 36px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rc-feature-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

.rc-feature-block:last-child {
    margin-bottom: 0;
}

.rc-feature-img {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.rc-feature-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
    transition: transform 0.4s ease;
}

.rc-feature-block:hover .rc-feature-img img {
    transform: scale(1.03);
}

.rc-feature-content {
    position: relative;
}

.rc-feature-watermark {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-en);
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
    margin-bottom: -12px;
    pointer-events: none;
}

.rc-feature-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text);
}

.rc-feature-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* --- Recruiting Stores (Gradient) --- */
.rc-stores {
    padding: 64px 0;
    background: linear-gradient(180deg, #E8630A 0%, #F5A623 100%);
    text-align: center;
}

/* Home Page Override: Compact spacing */
.rc-stores-home {
    padding: 56px 0;
}
.rc-stores-home .rc-stores-title {
    font-size: 2rem;
    margin-bottom: 12px;
}
.rc-stores-home .rc-stores-line {
    margin: 0 auto 20px;
}
.rc-stores-home .rc-stores-sub {
    font-size: 0.95rem;
    margin-bottom: 32px;
}
@media (max-width: 992px) {
    .rc-stores-home {
        padding: 36px 0;
    }
    .rc-stores-home .rc-stores-title {
        font-size: 1.5rem;
    }
    .rc-stores-home .rc-stores-sub {
        margin-bottom: 24px;
    }
}


.rc-stores-title {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.rc-stores-line {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto 20px;
}

.rc-stores-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

.rc-stores-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 12px 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(0,0,0,0.05);
}

.rc-stores-grid::-webkit-scrollbar {
    height: 8px;
}

.rc-stores-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.rc-stores-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.rc-store-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
    width: 250px;
    position: relative;
}

.rc-store-card-new {
    border: 2px solid #FF8C00;
}

.rc-store-opening-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B26 0%, #FF8C00 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 12px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 8px rgba(255, 107, 38, 0.3);
    white-space: nowrap;
}

.rc-store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.rc-store-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
}

.rc-store-tags-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    width: 100%;
}

.rc-store-area {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-light);
    background: #F0F4F8;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    white-space: nowrap;
}

.rc-job-badge {
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    line-height: 1.3;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.rc-job-badge.badge-pharmacist {
    background: #F15A24;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(241, 90, 36, 0.25);
}

.rc-job-badge.badge-office {
    background: #FFF7F2;
    color: #D94814;
    border: 2px solid #F15A24;
}

/* --- CTA --- */
.rc-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #FFF0E6 0%, #FFF9F5 100%);
}

.rc-cta-text {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text);
}

/* --- Recruit Responsive --- */
@media (max-width: 992px) {
    .rc-hero { padding: 130px 0 60px; }
    .rc-hero-title { font-size: 1.8rem; }
    .rc-message-grid { grid-template-columns: 1fr; }
    .rc-message-watermark { font-size: 5rem; }
    .rc-feature-block { grid-template-columns: 1fr; gap: 32px; }
    .rc-feature-watermark { font-size: 3rem; }
    .rc-stores-title { font-size: 1.6rem; }
    .rc-cta-text { font-size: 1.2rem; }
}

/* =========================================
   Mobile Responsive Overhaul
   ========================================= */

/* --- Hamburger Button (hidden on desktop) --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-only {
    display: none;
}

/* --- Mobile Navigation (768px and below) --- */
@media (max-width: 768px) {
    /* Show hamburger, hide desktop nav & header actions */
    .hamburger {
        display: flex;
    }

    .nav-desktop {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
        z-index: 1050;
        padding: 100px 32px 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 0.4s, opacity 0.3s;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
    }

    .nav-desktop.open {
        display: block;
        right: 0;
        visibility: visible;
        opacity: 1;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s, opacity 0.3s;
    }

    .nav-desktop ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-desktop li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-desktop a {
        display: block;
        padding: 18px 8px;
        font-size: 1.05rem;
    }

    .header-actions {
        display: none;
    }

    .mobile-only {
        display: block !important;
    }

    /* Mobile nav overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 990;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    /* --- Header --- */
    .header {
        height: 64px;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-sub {
        font-size: 0.6rem;
    }

    /* --- Hero Section --- */
    .hero {
        padding: 80px 0 32px;
        min-height: auto;
    }

    .hero-bg,
    .glass-orb {
        display: none !important;
    }

    .page-hero {
        padding: 85px 0 32px;
        display: block;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
    }

    /* --- Navigator Card --- */
    .navigator-container {
        max-width: 100%;
        margin: 20px auto 0;
    }

    .navigator-header {
        padding: 20px 16px 10px;
    }

    .navigator-title {
        font-size: 1.1rem;
    }

    .navigator-subtitle {
        font-size: 0.8rem;
    }

    .navigator-body {
        padding: 0 16px 16px;
        min-height: 270px;
    }

    .navigator-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .nav-option-btn {
        padding: 16px 10px;
        gap: 8px;
    }

    .nav-option-icon {
        font-size: 1.8rem;
    }

    .nav-option-text {
        font-size: 0.8rem;
    }

    .nav-list-item {
        padding: 12px 16px;
    }

    .navigator-footer {
        padding: 12px;
    }

    /* --- News Section --- */
    .news-section {
        padding: 20px 0;
    }

    .news-container-compact {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .news-item-compact {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        font-size: 0.85rem;
    }

    /* --- Philosophy Section --- */
    .philosophy-section {
        padding: 40px 0;
    }

    .section-label {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .section-heading {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .text-large {
        font-size: 1rem;
    }

    /* --- Services Section --- */
    .service-block {
        padding: 40px 0;
    }

    .service-btn-container {
        justify-content: center;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .service-card-main {
        grid-template-columns: 1fr;
        grid-template-areas: "image" "info";
        text-align: center;
        gap: 20px;
    }

    .service-card-main.reverse {
        grid-template-areas: "image" "info";
    }

    .service-image {
        max-width: 100%;
        justify-content: center;
    }

    .service-image-pharmacy img {
        max-width: 300px;
    }

    .service-name {
        gap: 2px;
    }
    .service-name .en {
        font-size: 2.0rem;
    }
    .service-name .ja {
        font-size: 1.2rem;
    }

    .service-info p {
        font-size: 0.9rem;
    }

    /* --- Access Section --- */
    .access-section {
        padding: 40px 0;
    }

    .access-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }

    .access-map iframe {
        height: 280px;
    }

    .company-name {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .info-item {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    /* --- SNS Section --- */
    .sns-section {
        padding: 32px 0;
    }

    .sns-container-horizontal {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .sns-content {
        max-width: 100%;
        width: 100%;
    }

    /* --- Footer Bottom --- */
    .footer-bottom {
        padding: 20px 0;
        font-size: 0.75rem;
    }

    /* --- Buttons mobile --- */
    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .btn-sm {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    /* --- Contact Page --- */
    .contact-hero {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .contact-form-section {
        padding: 32px 0 60px;
    }

    .form-card {
        padding: 32px 20px;
    }

    .form-intro {
        margin-bottom: 32px;
        font-size: 0.85rem;
    }

    .contact-form {
        gap: 24px;
    }

    /* --- Business Page --- */
    .business-hero {
        padding: 90px 0 32px;
    }

    .business-hero .page-title {
        font-size: 2rem;
    }

    .business-section {
        padding: 40px 0;
    }

    .section-header-left {
        margin-bottom: 24px;
        padding-left: 16px;
    }

    .section-header-left .section-title {
        font-size: 1.4rem;
    }

    .philosophy-content-box {
        padding: 28px 20px;
    }

    .philosophy-list-verbatim li {
        padding-left: 28px;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }



    .services-verbatim-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-v-content-inner {
        padding: 20px;
    }

    .service-verbatim-card h3 {
        font-size: 1.1rem;
    }

    .service-verbatim-card p {
        font-size: 0.85rem;
    }

    .strength-v-item {
        flex-direction: column;
        gap: 12px;
    }

    .v-icon-box {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .v-content h4 {
        font-size: 1.1rem;
    }

    .v-content p {
        font-size: 0.9rem;
    }

    .strengths-verbatim-list {
        gap: 28px;
    }

    .overview-table th,
    .overview-table td {
        padding: 16px;
        font-size: 0.85rem;
    }

    .overview-table th {
        width: 35%;
    }

    .overview-inner-list {
        grid-template-columns: 1fr;
    }

    .notice-block-v {
        padding: 24px 20px;
        margin-top: 24px;
    }

    /* --- Recruit Page Mobile / Responsive --- */
    .rc-hero {
        padding: 95px 0 36px;
        background: linear-gradient(135deg, #F15A24 0%, #E8630A 100%);
    }

    .rc-hero-watermark {
        display: none;
    }

    .rc-hero-badge {
        font-size: 0.85rem;
        padding: 5px 18px;
        margin-bottom: 14px;
    }

    .rc-hero-title {
        font-size: 1.35rem;
        line-height: 1.45;
        margin-bottom: 14px;
        color: #FFFFFF;
        word-break: break-word;
    }

    .rc-hero-sub {
        font-size: 0.88rem;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.92);
    }

    .desktop-only {
        display: none;
    }

    .rc-stores {
        padding: 48px 0;
        position: relative;
        z-index: 1;
    }

    .rc-stores-title {
        font-size: 1.35rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .rc-stores-line {
        width: 60px;
        margin-bottom: 16px;
    }

    .rc-stores-sub {
        font-size: 0.88rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .rc-stores-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 16px;
        width: 100%;
        max-width: 100%;
        padding: 8px 8px 16px;
    }

    .rc-store-card {
        width: 220px;
        flex-shrink: 0;
        padding: 18px 16px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    }

    .rc-style {
        padding: 40px 0;
    }

    .rc-feature-block {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 24px;
        padding: 24px 20px;
        border-radius: 16px;
    }

    .rc-feature-reverse {
        direction: ltr;
    }

    .rc-feature-img img {
        height: 180px;
        width: 100%;
    }

    .rc-feature-watermark {
        font-size: 1.8rem;
    }

    .rc-feature-title {
        font-size: 1.2rem;
    }

    .rc-feature-text {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .rc-message {
        padding: 50px 0;
    }

    .rc-message-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .rc-message-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .rc-message-card-title {
        font-size: 1.1rem;
    }

    .rc-message-card-text {
        font-size: 0.88rem;
        line-height: 1.8;
    }

    .rc-philosophy {
        padding: 48px 0;
    }

    .rc-philosophy-header {
        margin-bottom: 28px;
    }

    .rc-philosophy-title {
        font-size: 1.45rem;
    }

    .rc-philosophy-list {
        gap: 20px;
    }

    .rc-philosophy-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 16px;
        border-radius: 16px;
    }

    .rc-philosophy-row-label {
        position: relative;
        padding: 10px 20px;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .rc-philosophy-category {
        font-size: 1.15rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    .rc-philosophy-item-title {
        font-size: 1.05rem;
    }

    .rc-philosophy-item-text {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .rc-cta {
        padding: 48px 0;
    }

    .rc-cta-text {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .rc-cta .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    /* --- Store Page --- */
    .store-hero {
        padding: 90px 0 32px;
    }

    .store-hero-title {
        font-size: 1.1rem;
        padding: 10px 32px;
    }

    .store-list-section {
        padding: 0 0 60px;
    }

    .brand-name {
        font-size: 1.3rem;
    }

    .store-area-label {
        font-size: 0.95rem;
        margin: 28px 0 16px;
    }

    .store-row {
        flex-direction: row;
        align-items: center;
    }

    .store-row-name {
        width: 95px;
        padding: 10px 6px;
        border-right: 1px solid rgba(0, 0, 0, 0.06);
        border-bottom: none;
        text-align: center;
        font-size: 0.9rem;
    }

    .store-row-details {
        padding: 10px 12px;
    }

    .store-row-address {
        font-size: 0.82rem;
        margin-bottom: 2px;
    }

    .store-row-contact {
        flex-direction: column;
        gap: 2px;
        font-size: 0.78rem;
    }

    .store-modal {
        padding: 28px 20px;
    }

    .store-modal-name {
        font-size: 1.15rem;
    }
}

/* --- Thanks Page --- */
.page-thanks {
    background: linear-gradient(135deg, #FFF9F6 0%, #FFFDFD 50%, #F5FBF9 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.thanks-section {
    padding: 160px 0 100px;
    flex: 1;
    display: flex;
    align-items: center;
}

.thanks-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.thanks-icon {
    font-size: 2.5rem;
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, #FF8A50 100%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 8px 20px rgba(255, 107, 38, 0.3);
}

.thanks-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.thanks-message {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.thanks-submessage {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 36px;
}

.thanks-actions {
    margin-top: 32px;
}

@media (max-width: 576px) {
    .rc-hero {
        padding: 105px 0 36px;
    }
    .rc-hero-title {
        font-size: 1.25rem;
    }
    .rc-hero-sub {
        font-size: 0.85rem;
    }
    .thanks-section {
        padding: 120px 0 60px;
    }
    .thanks-card {
        padding: 40px 20px;
    }
    .thanks-title {
        font-size: 1.45rem;
    }
    .thanks-message {
        font-size: 0.95rem;
    }
}

/* --- Sales Promotion Page --- */
.page-salespromotion {
    background-color: var(--white);
    --teal: #5fa9a0;
    --cream: #fffaf2;
}

.salespromotion-section {
    padding: 80px 0;
}

.salespromotion-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg-alt), var(--white));
    text-align: left;
    position: relative;
    overflow: hidden;
}

.salespromotion-hero .page-title {
    font-size: 3.5rem;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    color: var(--text-dark);
}

.salespromotion-hero .page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* 1. 営業推進部の役割 */
.role-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.role-catch {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 24px;
}

.role-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 500;
}

.role-subdesc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ざるすについての解説ボックス */
.zarus-about-box {
    margin-top: 50px;
    background: var(--cream);
    border-left: 4px solid var(--teal);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
    display: flex;
    align-items: center;
    gap: 30px;
}

.zarus-about-logo-wrapper {
    flex-shrink: 0;
}

.zarus-about-logo-wrapper img {
    max-width: 150px;
    height: auto;
    display: block;
}

.zarus-about-content {
    flex: 1;
}

.zarus-about-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.zarus-about-body p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-light);
}

.zarus-about-body p:not(:last-child) {
    margin-bottom: 12px;
}

.zarus-about-body strong {
    color: var(--text-dark);
    font-weight: 700;
}

@media (max-width: 768px) {
    .zarus-about-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 20px;
    }
    
    .zarus-about-logo-wrapper img {
        max-width: 120px;
    }
}

/* 2. ざるすの活動（3つの柱） */
.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header-center .section-label {
    display: inline-block;
    color: var(--teal);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-header-center .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 15px;
}

.section-header-center .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-top: 15px;
}

.activities-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-color: rgba(95, 169, 160, 0.3);
}

.pillar-icon {
    font-size: 2.5rem;
    background: rgba(95, 169, 160, 0.08);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    color: var(--teal);
}

.pillar-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.pillar-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* 3. 医療・介護の連携体制 */
.paper-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.paper-grid-single {
    max-width: 850px;
    margin: 0 auto;
}

.paper-grid-single .paper-subdesc {
    text-align: left;
    margin-bottom: 0;
}

.paper-desc {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.paper-subdesc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 36px;
}

.paper-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.paper-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paper-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 1.8rem;
    background: var(--cream);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.feature-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* 3. 老人ホーム紹介 */
.referral-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.referral-grid-single {
    width: 100%;
}

.referral-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 992px) {
    .strengths-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.strength-card {
    background: var(--white);
    padding: 24px 28px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.strength-card:hover {
    background: var(--white);
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transform: translateY(-4px);
    border-color: var(--teal);
}

.strength-card-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.strength-card-text {
    flex: 1;
    min-width: 0;
}

.strength-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.strength-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Image styles */
.premium-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.premium-img:hover {
    transform: scale(1.02);
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* 4. ざるすWeb紹介ボックス */
.zarus-web-box {
    background: linear-gradient(135deg, #f3f9e9 0%, #ffffff 100%);
    border: 2px solid #078465;
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(7, 132, 101, 0.08);
}

.box-badge {
    background: #078465;
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.zarus-web-box .btn-primary {
    position: relative;
    background: linear-gradient(135deg, #078465, #a0c33c);
    box-shadow: 0 12px 24px rgba(7, 132, 101, 0.25);
    padding: 18px 48px;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.zarus-web-box .btn-primary::after {
    content: '→';
    font-size: 0.95rem;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s ease, transform 0.3s ease;
}

.zarus-web-box .btn-primary:hover {
    box-shadow: 0 16px 32px rgba(7, 132, 101, 0.35);
}

.zarus-web-box .btn-primary:hover::after {
    right: 18px;
}

.box-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 16px;
}

.box-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #078465;
    border-radius: 2px;
}

.box-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.box-check-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin: 32px auto;
    padding: 0;
    max-width: 100%;
    flex-wrap: wrap;
}

.box-check-list li {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    padding: 24px 20px;
    flex: 1 1 220px;
    max-width: 240px;
    white-space: normal;
    line-height: 1.5;
}

.box-subtext {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.box-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* 5. 営業推進部お問い合わせ */
.contact-card-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    align-items: center;
}

.contact-left h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-left .address {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    gap: 32px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-label {
    background: var(--bg-alt);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    color: var(--text-dark);
}

.detail-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-right {
    border-left: 1px solid rgba(0,0,0,0.08);
    padding-left: 50px;
}

.contact-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* --- Responsive for Sales Promotion Page --- */
@media (max-width: 992px) {
    .role-grid, .paper-grid, .referral-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .activities-pillars {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .paper-grid .paper-image {
        order: 2;
    }
    
    .contact-card-box {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px;
    }
    
    .contact-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(0,0,0,0.08);
        padding-top: 32px;
    }
}

@media (max-width: 768px) {
    .salespromotion-section {
        padding: 24px 0;
    }
    
    .salespromotion-hero {
        padding: 100px 0 30px;
    }
    
    .salespromotion-hero .page-title {
        font-size: 2.0rem;
    }
    
    .role-catch {
        font-size: 1.3rem;
    }
    
    .role-desc {
        font-size: 0.95rem;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .zarus-web-box {
        padding: 16px 12px;
        border-radius: 14px;
    }
    
    .box-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
        padding-bottom: 6px;
    }

    .box-text {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .box-check-list {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        padding: 0;
        width: 100%;
        margin: 12px auto;
    }
    
    .box-check-list li {
        background: var(--white);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(7, 132, 101, 0.15);
        border-radius: 8px;
        max-width: 100%;
        width: 100%;
        padding: 9px 14px;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--text-dark);
        text-align: center;
        justify-content: center;
        line-height: 1.3;
        min-height: 0;
        flex: none;
        white-space: nowrap;
    }

    .box-btn-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 14px;
        width: 100%;
    }
    
    .zarus-web-box .btn-primary {
        padding: 14px 44px 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 310px;
        margin: 0 auto;
        justify-content: center;
        text-align: center;
    }

    .zarus-web-box .btn-primary::after {
        right: 18px;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 16px;
    }
    
    .zarus-about-box {
        padding: 24px 20px;
        margin-top: 40px;
    }
    
    .zarus-about-title {
        font-size: 1.15rem;
    }
}

/* ===== Business Page Custom Icons ===== */

/* 経営理念 ちょぼアイコン */
.philosophy-list-verbatim {
    list-style: none;
    padding: 0;
}

.philosophy-list-verbatim li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.philosophy-bullet-img {
    width: 1.4rem;
    height: 1.4rem;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 3px;
}

/* STRENGTHS アイコン */
.strength-icon-img {
    width: 2.4rem;
    height: 2.4rem;
    object-fit: contain;
    display: block;
}

/* サービス内容 アイコン */
.service-v-icon-img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    display: block;
}

/* ===== Store Page Contact Icons ===== */
.contact-icon-img {
    width: 1.1rem;
    height: 1.1rem;
    object-fit: contain;
    vertical-align: middle;
    display: inline-block;
    margin-right: 2px;
}

/* ===== Sales Promotion Page Icons ===== */

/* THEALTH ACTIVITIES ウォーターマーク画像 */
.pillar-watermark-img {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 160px;
    height: 160px;
    object-fit: contain;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

/* ONE-STOP SUPPORT カード左端アイコン */
.strength-card-icon {
    margin-bottom: 12px;
}

.onestop-icon-img {
    width: 2.8rem;
    height: 2.8rem;
    object-fit: contain;
    display: block;
}

/* ===== Subpage Simple Hero Styling ===== */
.page-hero-simple {
    background: #F4F6F9;
    padding: 100px 0 40px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.hero-badge-simple {
    display: inline-block;
    padding: 6px 20px;
    background: #FFF1EB;
    color: #F15A24;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 14px;
    border: 1px solid rgba(241, 90, 36, 0.1);
    letter-spacing: 0.05em;
}

.page-title-simple {
    font-size: 1.35rem;
    font-weight: 800;
    color: #2D3436;
    line-height: 1.45;
    margin: 0 auto 12px;
    max-width: 600px;
    padding: 0 16px;
}

.page-subtitle-simple {
    font-size: 0.88rem;
    color: #636E72;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 580px;
    padding: 0 16px;
}

@media (min-width: 769px) {
    .page-hero-simple {
        padding: 140px 0 60px;
    }
    .page-title-simple {
        font-size: 2.5rem;
        margin-bottom: 16px;
        max-width: 900px;
    }
    .page-subtitle-simple {
        font-size: 1.05rem;
        max-width: 800px;
    }
}

/* ===== Rich Recruit Hero ===== */
.rc-hero-rich {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #FFF9F5 0%, #F4F6F9 100%);
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rc-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.rc-hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14rem;
    font-weight: 900;
    color: rgba(241, 90, 36, 0.03);
    font-family: var(--font-accent);
    letter-spacing: 0.1em;
    user-select: none;
    white-space: nowrap;
}

.rc-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

.rc-hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: #FFF1EB;
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    border: 1px solid rgba(241, 90, 36, 0.15);
    box-shadow: 0 4px 12px rgba(241, 90, 36, 0.08);
}

.rc-hero-title {
    font-family: var(--font-sans);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.rc-hero-title .highlight {
    color: var(--primary);
    background: linear-gradient(transparent 65%, rgba(241, 90, 36, 0.12) 65%);
}

.rc-hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.85;
    margin: 0 auto 36px;
    max-width: 680px;
}

.rc-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .rc-hero-rich {
        padding: 120px 0 60px;
    }
    .rc-hero-title {
        font-size: 1.8rem;
    }
    .rc-hero-subtitle {
        font-size: 0.95rem;
    }
    .rc-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .rc-hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }
}

