/*
Theme Name: デモ薬局 (Demo Pharmacy)
Version: 31.0.0
Description: 地域密着型・高機能デザイン（内容修正版）
*/
@charset "UTF-8";

/* --- 1. Fonts & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;700&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

:root {
    --c-bg: #FDFCF8;
    --c-main: #4FBFA5;
    --c-main-rgb: 79, 191, 165;
    --c-main-light: rgba(79, 191, 165, 0.1);
    --c-accent: #F4A261;
    --c-text: #455A64;
    --c-text-light: #90A4AE;
    --c-border: #E0E0E0;
    --f-base: "Zen Maru Gothic", sans-serif;
    --f-accent: "Shippori Mincho", serif;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: 1px solid rgba(255, 255, 255, 0.95);
    --glass-shadow: 0 8px 32px 0 rgba(79, 191, 165, 0.08);
    --blur-val: 20px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --w-container: 1100px;
}

/* --- 2. Base Styles --- */
body {
    background-color: var(--c-bg);
    color: var(--c-text);
    font-family: var(--f-base);
    line-height: 2.0;
    margin: 0;
    overflow-x: hidden;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}

a {
    color: var(--c-main);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    vertical-align: bottom;
}

.container {
    max-width: var(--w-container);
    margin: 0 auto;
    padding: 0 25px;
    box-sizing: border-box;
    width: 100%;
}

/* Utilities */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.text-center {
    text-align: center;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- 3. Header & Nav --- */
.header-top-bar {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--c-text-light);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.site-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

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

.site-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-main);
    font-family: var(--f-accent);
    font-size: 1.6rem;
    font-weight: bold;
}

.logo-icon {
    background: linear-gradient(135deg, var(--c-main), #6ddcc2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-main ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-main a {
    display: block;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--c-text);
}

.nav-main span {
    display: block;
    font-size: 0.7rem;
    color: #aaa;
    margin-top: 2px;
}

/* Mobile Menu */
.menu-toggle {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--c-main);
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.is-open {
    display: flex;
    animation: fadeIn 0.3s;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-nav li {
    margin-bottom: 25px;
}

.mobile-nav a {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--c-text);
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--c-text);
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* --- 4. Cards & Glassmorphism --- */
.glass-card,
.store-card,
.menu-card,
.recruit-stat-card,
.step-card,
.voice-card,
.philosophy-card,
.service-box,
.network-map-visual,
.recruit-table-card,
.timeline-content {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-val));
    -webkit-backdrop-filter: blur(var(--blur-val));
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
    transition: transform 0.4s, box-shadow 0.4s;
    box-sizing: border-box;
}

.glass-card:hover,
.store-card:hover,
.menu-card:hover,
.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 191, 165, 0.15);
}

/* --- 5. General Layouts --- */
.hero-section {
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.hero-text-area {
    flex: 1;
    min-width: 0;
}

.hero-image-area {
    flex: 1.2;
    min-width: 0;
    text-align: right;
}

.hero-image-area img {
    width: 100%;
    border-radius: 40px 10px 60px 10px;
    box-shadow: 20px 20px 0 var(--c-main-light);
}

.tate-gaki {
    writing-mode: vertical-rl;
    text-orientation: upright;
    height: 380px;
    line-height: 1.8;
    margin-bottom: 30px;
    margin-right: auto;
    letter-spacing: 0.15em;
    font-family: var(--f-accent);
    font-size: 2.5rem;
    color: #333;
    border-right: 1px solid #ddd;
    padding-right: 30px;
    margin-right: 30px;
}

.text-highlight {
    color: var(--c-main);
}

.hero-desc p {
    font-size: 1rem;
    line-height: 2;
    color: #666;
    margin-bottom: 30px;
}

.news-container {
    position: relative;
    z-index: 5;
    margin-top: -30px;
    margin-bottom: 60px;
}

.news-ticker {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: #fff;
}

.news-label {
    background: var(--c-accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
}

.news-content {
    flex: 1;
    font-weight: 500;
    font-size: 0.95rem;
}

.news-link {
    color: var(--c-text-light);
    font-size: 0.85rem;
    text-decoration: underline;
    white-space: nowrap;
}

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

.section-subtitle {
    color: var(--c-main);
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
}

.section-title {
    font-family: var(--f-accent);
    font-size: 2.2rem;
    color: var(--c-text);
    margin-bottom: 25px;
    line-height: 1.4;
}

.section-desc {
    color: var(--c-text-light);
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

/* --- 6. Recruit & Components --- */
.recruit-hero {
    text-align: center;
    padding: 100px 0 60px;
}

.recruit-tag {
    display: inline-block;
    background: #E0F5F0;
    color: var(--c-main);
    padding: 5px 20px;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.recruit-title {
    font-family: var(--f-accent);
    font-size: 2.8rem;
    color: var(--c-text);
    margin-bottom: 20px;
    line-height: 1.4;
}

.recruit-desc {
    max-width: 600px;
    margin: 0 auto;
    line-height: 2;
    color: #666;
}

.recruit-section {
    margin-bottom: 100px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.recruit-stat-card {
    text-align: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--c-accent);
    font-family: var(--f-accent);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-number .stat-unit {
    font-size: 1.2rem;
    margin-left: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--c-text-light);
}

/* Timeline */
.timeline-container {
    position: relative;
    margin-top: 40px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.time-badge {
    width: 60px;
    height: 60px;
    background: var(--c-main);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(79, 191, 165, 0.3);
}

.timeline-content {
    flex: 1;
    padding: 25px;
}

.timeline-content h3 {
    font-size: 1.1rem;
    color: var(--c-main);
    margin-bottom: 10px;
    font-weight: bold;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* Voices */
.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.voice-card {
    padding: 30px;
}

.voice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.voice-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.voice-profile h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--c-main);
}

.voice-profile span {
    font-size: 0.8rem;
    color: #999;
}

.voice-body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

/* Career Path */
.career-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.career-step {
    text-align: center;
    width: 220px;
    position: relative;
}

.step-circle {
    width: 100px;
    height: 100px;
    background: #fff;
    border: 4px solid var(--c-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--c-main);
    margin: 0 auto 20px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(79, 191, 165, 0.15);
    z-index: 2;
    position: relative;
}

.step-connector {
    padding-top: 40px;
    font-size: 1.5rem;
    color: #ccc;
    flex: 0 0 20px;
    text-align: center;
}

.career-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.career-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* CEO Message */
.ceo-message-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 40px 0;
}

.ceo-photo {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.ceo-photo img {
    border-radius: 8px;
    box-shadow: 20px 20px 0 var(--c-accent);
    width: 100%;
}

.ceo-name-tag {
    background: #fff;
    padding: 20px;
    position: absolute;
    bottom: -30px;
    right: -20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 250px;
}

.ceo-name-tag .position {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 5px;
}

.ceo-name-tag .name {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: var(--f-accent);
    margin-bottom: 5px;
}

.ceo-text {
    flex: 1.5;
}

.ceo-headline {
    font-size: 2.5rem;
    font-family: var(--f-accent);
    line-height: 1.4;
    margin-bottom: 40px;
    color: var(--c-text);
}

.ceo-body p {
    margin-bottom: 25px;
    line-height: 2.2;
    font-size: 1.05rem;
    text-align: justify;
}

.ceo-body .lead {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--c-main);
}

.ceo-signature {
    margin-top: 40px;
    text-align: right;
    opacity: 0.7;
}

/* Service Rich & FAQ */
.service-rich-grid {
    margin-top: 60px;
}

.service-rich-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service-rich-item.reverse {
    flex-direction: row-reverse;
}

.srv-img {
    flex: 1;
}

.srv-img img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    border-radius: var(--radius-lg);
}

.srv-content {
    flex: 1;
}

.srv-content h3 {
    font-size: 1.8rem;
    font-family: var(--f-accent);
    color: var(--c-main);
    margin-bottom: 20px;
    line-height: 1.4;
}

.srv-content p {
    line-height: 2;
    color: #555;
    font-size: 1rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--c-main);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

/* Philosophy & Network */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.philosophy-card {
    padding: 40px 30px;
    position: relative;
}

.phi-num {
    font-size: 4rem;
    color: #f0f0f0;
    font-weight: bold;
    font-family: var(--f-accent);
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 0;
}

.philosophy-card h3 {
    color: var(--c-main);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.philosophy-card h4 {
    font-size: 1.5rem;
    font-family: var(--f-accent);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.philosophy-card p {
    position: relative;
    z-index: 1;
    color: #666;
    line-height: 1.8;
}

/* Buttons & Archive */
.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--c-main), #3DA890);
    color: #fff !important;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(79, 191, 165, 0.3);
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(79, 191, 165, 0.4);
    opacity: 1;
}

.btn-secondary {
    background: #fff;
    color: var(--c-main) !important;
    border: 2px solid var(--c-main);
}

.btn-lg {
    padding: 18px 50px;
    font-size: 1.1rem;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.store-card {
    display: flex;
    flex-direction: column;
}

.card-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.store-name {
    font-size: 1.3rem;
    margin: 0 0 10px;
    font-family: var(--f-accent);
}

.store-info {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    flex: 1;
}

.map-pin-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #fff;
    color: #333;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Store Detail Specifics */
.store-hero-area {
    background: #fff;
    padding: 50px 0 30px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.store-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.area-badge {
    background: #f0f0f0;
    color: #555;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.status-badge {
    background: var(--c-main);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.store-title {
    font-family: var(--f-accent);
    font-size: 2.2rem;
    color: var(--c-text);
    margin: 10px 0;
}

.store-lead {
    color: var(--c-text-light);
    font-size: 1rem;
}

.store-main-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 80px;
}

.store-content-primary {
    flex: 1;
    min-width: 0;
}

.store-sidebar {
    flex: 0 0 320px;
}

.store-visual {
    margin-bottom: 40px;
}

.main-store-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.no-image-placeholder {
    height: 300px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 2rem;
    color: #aaa;
}

.store-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
}

.store-h2 {
    font-family: var(--f-accent);
    font-size: 1.4rem;
    color: var(--c-main);
    border-bottom: 2px solid var(--c-main-light);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-sidebar-primary {
    display: block;
    text-align: center;
    background: var(--c-accent);
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(244, 162, 97, 0.3);
}

.btn-sidebar-secondary {
    display: block;
    text-align: center;
    background: #fff;
    color: var(--c-main);
    padding: 12px;
    border-radius: 50px;
    font-weight: bold;
    border: 2px solid var(--c-main);
}

.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.info-title {
    font-size: 1rem;
    background: var(--c-main-light);
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
}

.info-list dt {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 2px;
}

.info-list dd {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.tel-number {
    font-size: 1.4rem !important;
    color: var(--c-main) !important;
    font-weight: bold;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    text-align: center;
}

.hours-table th {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 5px;
    font-weight: normal;
}

.hours-table td {
    border: 1px solid #eee;
    padding: 5px 2px;
}

.hours-table .holiday {
    color: red;
    background: #fff5f5;
}

.sidebar-map iframe {
    border-radius: 12px;
    width: 100%;
    height: 200px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.feature-item {
    background: #f9fbfb;
    border: 1px solid #eef5f5;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #555;
}

.payment-group {
    margin-bottom: 15px;
}

.payment-label {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pay-icon {
    background: #fff;
    border: 1px solid #ddd;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.recruit-table-card {
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.recruit-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.recruit-table th {
    text-align: left;
    padding: 20px;
    width: 30%;
    color: var(--c-main);
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.recruit-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    color: #444;
}

/* === Responsive (Mobile) === */
@media (max-width: 900px) {
    .desktop-only {
        display: none !important;
    }

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

    .hero-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .hero-image-area {
        order: -1;
        width: 100%;
        text-align: center;
    }

    .tate-gaki {
        writing-mode: horizontal-tb;
        height: auto;
        border-right: none;
        border-bottom: 2px solid var(--c-main-light);
        padding: 0 0 20px 0;
        margin: 0 0 30px 0;
        text-align: left;
        font-size: 2rem;
        width: 100%;
    }

    .ceo-message-wrapper {
        flex-direction: column;
    }

    .ceo-photo {
        width: 100%;
    }

    .ceo-name-tag {
        position: static;
        margin-top: -20px;
        margin-left: 10px;
        width: auto;
        max-width: 90%;
    }

    .ceo-headline {
        font-size: 1.8rem;
    }

    .service-rich-item {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 60px;
    }

    .city-list {
        gap: 15px;
    }

    .city-item {
        width: 45%;
    }

    .stats-grid,
    .voice-grid,
    .store-grid {
        grid-template-columns: 1fr;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        gap: 15px;
    }

    .time-badge {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .store-main-container {
        flex-direction: column;
        padding-bottom: 100px;
    }

    .store-sidebar {
        flex: auto;
        order: -1;
    }

    .sidebar-sticky {
        position: static;
    }

    .sidebar-actions {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        margin: 0;
        flex-direction: row;
        box-sizing: border-box;
    }

    .btn-sidebar-primary,
    .btn-sidebar-secondary {
        flex: 1;
        padding: 12px;
        font-size: 0.85rem;
    }

    .career-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .recruit-table th,
    .recruit-table td {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .recruit-table th {
        border-bottom: none;
        padding-bottom: 0;
    }

    .recruit-table-card {
        padding: 30px 20px;
    }
}
/* --- 7. Store Detail Enhancements (v35.0) --- */
.payment-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-label {
    background: #f0f0f0;
    font-size: 0.8rem;
    padding: 2px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-icon {
    display: inline-block;
    padding: 3px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #555;
    background: #fff;
}

.hours-table {
    width: 100%;
    margin-top: 10px;
    font-size: 0.9rem;
    border-collapse: collapse;
}

.hours-table th, .hours-table td {
    padding: 8px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.hours-table th {
    width: 30%;
    color: #666;
    font-weight: normal;
}

.hours-table .holiday {
    color: #E57373;
}

.info-list dt {
    margin-top: 15px;
    font-weight: bold;
    color: var(--c-main);
}

.info-list dd {
    margin: 5px 0 0;
    line-height: 1.6;
}

.map-link-text {
    font-size: 0.85rem;
    color: var(--c-main);
    text-decoration: underline;
}
