/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background-color: #fafcfe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    color: #333333;
    font-weight: 700;
    margin: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #10b981;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #334155;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('../images/hero-nature-meadow.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text {
    color: #1e293b;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
}

.hero-image {
    display: none;
}

.hero-family-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    filter: drop-shadow(0 12px 30px rgba(37, 99, 235, 0.12));
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    backdrop-filter: blur(10px);
}

.hero-family-image:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.2));
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.08) 0%, rgba(96, 165, 250, 0.04) 40%, transparent 70%);
    border-radius: 60px;
    z-index: -1;
    animation: subtle-pulse 6s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-bg {
    display: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #10b981;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background-color: #10b981;
    color: #fff !important;
    border: 2px solid #10b981;
}

.btn-secondary:hover {
    background-color: #059669;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #10b981;
    border: 2px solid #10b981;
}

.btn-outline:hover {
    background-color: #10b981;
    color: #fff;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #10b981;
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* About Section */
.about {
    background-color: #f0fdf4;
}

.about-subtitle {
    font-size: 1.5rem;
    color: #059669;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Value Proposition */
.value-proposition {
    margin: 4rem 0;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.vp-title {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.vp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.vp-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #ecfdf5;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.vp-number {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.vp-content h4 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.vp-content p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.about-closing {
    margin: 2rem 0;
    text-align: center;
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
}

.closing-message {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Services Section */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
    border-color: #10b981;
}

.service-icon-small {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.5rem;
}

.service-name {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
}

.service-cta {
    background: linear-gradient(135deg, #059669, #10b981);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

.service-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Shops Section */
.shops {
    background-color: #ecfdf5;
}

.shops-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.shops-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
}

.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.shop-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.shop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shop-card:hover .shop-image img {
    transform: scale(1.05);
}

.shop-info {
    padding: 2rem;
    flex: 1;
}

.shop-map-inline {
    margin: 1rem 0;
    background-color: #f8fafc;
    padding: 0.8rem;
    border-radius: 10px;
}

.shop-map-inline iframe {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.shop-name {
    font-size: 1.2rem;
    color: #059669;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.shop-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: #10b981;
    font-size: 1.1rem;
    width: 18px;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.detail-item span {
    color: #475569;
    line-height: 1.5;
}

.shop-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* News Section */
.news-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.news-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateX(5px);
}

.news-date {
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.news-excerpt {
    color: #64748b;
    line-height: 1.6;
}

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

/* Company Section */
.company {
    background-color: #f0fdf4;
}

.company-overview {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.company-description {
    margin-bottom: 3rem;
}

.company-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

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

/* Contact Section */
.contact-info h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.contact-info > p {
    text-align: center;
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.contact-method {
    background-color: #f0fdf4;
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    flex-shrink: 0;
}

.method-info h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.phone-number {
    font-size: 2rem;
    color: #059669;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.phone-hours {
    color: #64748b;
    margin-bottom: 1rem;
}

.method-info p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: #047857;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-logo p {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-concept {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-nav-group h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-nav-group ul {
    list-style: none;
}

.footer-nav-group li {
    margin-bottom: 0.5rem;
}

.footer-nav-group a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-group a:hover {
    color: #d1fae5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: #ecfdf5;
    padding: 1rem 0;
    border-bottom: 1px solid #d1fae5;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-item {
    color: #64748b;
    font-size: 0.9rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #94a3b8;
}

.breadcrumb-item a {
    color: #10b981;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Page Layout */
.main-content {
    padding-top: 2rem;
}

.page-title {
    font-size: 2.5rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Company Profile Page Styles */
/* Remove all left borders from all pages globally */
* {
    border-left: none !important;
}

/* Specifically ensure no left borders on common elements */
.philosophy-section *,
.purpose-section *,
.policy-section *,
.financial-section *,
.privacy-policy-section *,
.privacy-basic-policy-section *,
.solicitation-policy-section *,
.antisocial-policy-section *,
.greeting-section *,
.about *,
.services *,
.shops *,
.news *,
.contact *,
.hero * {
    border-left: none !important;
}

/* Target specific content classes */
.philosophy-content,
.philosophy-main,
.philosophy-description,
.purpose-content,
.purpose-main,
.policy-content,
.financial-content,
.privacy-content,
.privacy-intro,
.privacy-block,
.article-title,
.section-content,
.policy-subsection,
.greeting-message,
.greeting-content,
.about-content,
.service-item,
.shop-info,
.news-content {
    border-left: none !important;
}

.purpose-section {
    padding: 3rem 0;
    background-color: #fff;
}

.purpose-content {
    max-width: 1000px;
    margin: 0 auto;
}

.purpose-statement {
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
    padding: 3rem;
    border-radius: 20px;
}

.statement-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.statement-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.purpose-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-item {
    background-color: #ecfdf5;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.8rem;
}

.detail-item h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-item p {
    color: #64748b;
    line-height: 1.6;
}

.philosophy-section {
    padding: 5rem 0;
    background-color: #f0fdf4;
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-main {
    text-align: center;
    margin-bottom: 4rem;
}

.philosophy-title {
    font-size: 2rem;
    color: #059669;
    margin-bottom: 2rem;
    font-weight: 700;
}

.philosophy-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.principle-item {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.principle-item h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
    padding-left: 1.5rem;
    position: relative;
}

.principle-item h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 2px;
}

.principle-item p {
    color: #64748b;
    line-height: 1.7;
}

.policy-section {
    padding: 5rem 0;
    background-color: #fff;
}

.policy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.policy-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.policy-card {
    background-color: #f0fdf4;
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease;
}

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

.policy-number {
    position: absolute;
    top: -15px;
    left: 2.5rem;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.policy-card h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.policy-card p {
    color: #64748b;
    line-height: 1.7;
}

.financial-section {
    padding: 5rem 0;
    background-color: #ecfdf5;
}

.financial-content {
    max-width: 1000px;
    margin: 0 auto;
}

.financial-info {
    text-align: center;
    margin-bottom: 4rem;
}

.financial-info h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 600;
}

.financial-info p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.financial-links {
    max-width: 1000px;
    margin: 0 auto;
}

.financial-link-section {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.financial-link-section h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.financial-link-section p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.financial-table-container {
    overflow-x: auto;
}

.financial-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.financial-table th {
    background-color: #f8fafc;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.financial-table td {
    padding: 0.8rem 1rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    color: #475569;
}

.pdf-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pdf-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    color: #fff;
}

.company-info-section {
    padding: 5rem 0;
    background-color: #fff;
}

.company-table-detailed {
    width: 100%;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    max-width: 900px;
}

.company-table-detailed th,
.company-table-detailed td {
    padding: 1.5rem 2rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

.company-table-detailed th {
    background-color: #f1f5f9;
    color: #1e293b;
    font-weight: 600;
    width: 180px;
}

.company-table-detailed td {
    color: #475569;
}

.company-table-detailed tr:last-child th,
.company-table-detailed tr:last-child td {
    border-bottom: none;
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
    padding: 3rem 0 5rem;
    background-color: #ecfdf5;
}

.privacy-intro {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.privacy-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.privacy-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.privacy-article {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.privacy-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.article-title {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-left: 1rem;
}

.article-content {
    padding-left: 1rem;
}

.article-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.subsection-title {
    font-size: 1.1rem;
    color: #1e293b;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.privacy-list {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-list li {
    margin-bottom: 0.8rem;
    color: #475569;
    line-height: 1.6;
}

.contact-info-privacy {
    background-color: #f0fdf4;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-info-privacy h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details {
    display: grid;
    gap: 1rem;
}

.contact-details .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-details .contact-item i {
    color: #10b981;
    width: 20px;
}

.contact-details .contact-item span {
    color: #475569;
    font-size: 0.95rem;
}

.privacy-effective-date {
    text-align: right;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.privacy-effective-date p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.back-to-home {
    text-align: center;
}

.current-page {
    color: #10b981 !important;
    font-weight: 600;
}

/* Privacy Blocks Styling */
.privacy-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.privacy-block {
    background-color: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
}

.block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.block-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.block-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

.block-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.block-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.block-link:hover {
    color: #059669;
}

.block-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.block-link:hover i {
    transform: translateX(3px);
}

.detail-section {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 10px;
}

.detail-section h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-info-privacy {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.contact-info-privacy h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-group {
    margin-bottom: 1.5rem;
}

.contact-group h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-hours {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.contact-hours p {
    margin-bottom: 0.5rem;
    color: #475569;
}

.contact-note {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* Antisocial Policy Styling */
.antisocial-policy-section {
    padding: 5rem 0;
    background-color: #ecfdf5;
}

.antisocial-policy-intro {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.antisocial-policy-intro p {
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

.antisocial-policy-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-items {
    margin-bottom: 3rem;
}

.policy-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: #f0fdf4;
    border-radius: 10px;
}

.policy-item:last-child {
    margin-bottom: 0;
}



.policy-text p {
    color: #1e293b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.policy-footer {
    text-align: right;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.policy-date p {
    color: #475569;
    margin: 0.5rem 0;
    font-weight: 500;
}

.policy-date p:last-child {
    color: #1e293b;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .hero-layout {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-family-image {
        max-width: 350px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .vp-grid {
        grid-template-columns: 1fr;
    }
    
    .vp-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .services-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .shops-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
    }
    

    
    .company-table th,
    .company-table td {
        padding: 1rem;
    }
    
    .company-table th {
        width: auto;
    }
    
    .financial-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .financial-table th,
    .financial-table td {
        padding: 0.6rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .pdf-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .privacy-blocks {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .privacy-block {
        padding: 2rem;
    }
    
    .block-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .block-title {
        font-size: 1.2rem;
    }
    
    .antisocial-policy-intro,
    .antisocial-policy-content {
        padding: 2rem;
    }
    
    .policy-item {
        padding: 1rem;
    }
    
    .policy-text p {
        font-size: 1rem;
    }
    
    .company-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .service-item,
    .feature-item {
        padding: 1.5rem;
    }
    
    .value-proposition {
        padding: 2rem;
    }
    
    .vp-item {
        padding: 1.5rem;
    }
    
    .about-closing {
        padding: 2rem;
    }
    
    .shop-card {
        margin-bottom: 1rem;
    }
    
    .shop-info {
        padding: 1.5rem;
    }
    
    .shop-map-inline {
        padding: 0.6rem;
        margin: 0.8rem 0;
    }
    
    .shop-map-inline iframe {
        height: 180px;
    }
    
    .contact-method {
        padding: 2rem;
    }
}

/* Privacy Basic Policy Page Styles */
.privacy-basic-policy-section {
    padding: 3rem 0 5rem;
    background-color: #ecfdf5;
}

.privacy-basic-policy-intro {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.privacy-basic-policy-intro p {
    color: #1e293b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-basic-policy-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-left: 1rem;
}

.section-content {
    padding-left: 1rem;
}

.section-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.numbered-list {
    counter-reset: item;
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.numbered-list li {
    counter-increment: item;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    line-height: 1.6;
}

.numbered-list li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 600;
}

.sub-section {
    background-color: #f0fdf4;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 3px solid #34d399;
}

.sub-section p {
    margin: 0;
    font-weight: 500;
    color: #1e293b;
}

.security-measures {
    margin-top: 2rem;
}

.security-measures h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
    padding: 1rem;
    background-color: #f1f5f9;
    border-radius: 8px;
}

.security-measures p {
    margin-bottom: 1rem;
    padding-left: 1rem;
    color: #475569;
    line-height: 1.6;
}

.sub-list {
    margin: 1rem 0 2rem;
    padding-left: 3rem;
}

.sub-list li {
    margin-bottom: 0.6rem;
    color: #475569;
    line-height: 1.6;
    position: relative;
}

.sub-list li::before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: #10b981;
    font-weight: bold;
}

.contact-table {
    margin: 2rem 0;
}

.detailed-contact-table {
    width: 100%;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-collapse: collapse;
}

.detailed-contact-table th,
.detailed-contact-table td {
    padding: 1.5rem 2rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

.detailed-contact-table th {
    background-color: #f1f5f9;
    color: #1e293b;
    font-weight: 600;
    width: 180px;
}

.detailed-contact-table td {
    color: #475569;
}

.detailed-contact-table tr:last-child th,
.detailed-contact-table tr:last-child td {
    border-bottom: none;
}

.notice {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #fef3c7;
    border-radius: 8px;
    border-left: 3px solid #fbbf24;
}

.policy-footer {
    text-align: right;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.footer-text {
    color: #475569;
    margin-bottom: 1rem;
    font-weight: 500;
}

.establishment-date {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.company-name {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Mobile Styles for Basic Policy */
@media (max-width: 768px) {
    .privacy-basic-policy-intro,
    .privacy-basic-policy-content {
        padding: 2rem;
    }
    
    .detailed-contact-table th,
    .detailed-contact-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .detailed-contact-table th {
        width: 140px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .security-measures h3 {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .privacy-basic-policy-intro,
    .privacy-basic-policy-content {
        padding: 1.5rem;
    }
    
    .detailed-contact-table {
        font-size: 0.8rem;
    }
    
    .detailed-contact-table th,
    .detailed-contact-table td {
        padding: 0.8rem;
    }
    
    .detailed-contact-table th {
        width: 120px;
    }
}

/* Solicitation Policy Page Styles */
.solicitation-policy-section {
    padding: 3rem 0 5rem;
    background-color: #ecfdf5;
}

.solicitation-policy-intro {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.business-type {
    display: inline-block;
}

.business-label {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.solicitation-policy-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-subsection {
    margin-bottom: 2rem;
    background-color: #f0fdf4;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #34d399;
}

.policy-subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.policy-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.policy-list li {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

.policy-list li:last-child {
    margin-bottom: 0;
}

.policy-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-size: 1.2rem;
    line-height: 1.7;
}

.legal-basis {
    background-color: #f1f5f9;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.legal-text {
    color: #1e293b;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

.contact-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.contact-info-box {
    background-color: #f0fdf4;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-address {
    margin-bottom: 1.5rem;
}

.contact-address p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-company {
    margin-bottom: 1.5rem;
}

.contact-company .company-name {
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.contact-details p {
    color: #475569;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.contact-details strong {
    color: #1e293b;
    font-weight: 600;
}

/* Mobile Styles for Solicitation Policy */
@media (max-width: 768px) {
    .solicitation-policy-intro,
    .solicitation-policy-content {
        padding: 2rem;
    }
    
    .business-label {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }
    
    .policy-subsection {
        padding: 1.5rem;
    }
    
    .subsection-title {
        font-size: 1.1rem;
    }
    
    .policy-list li {
        font-size: 0.95rem;
    }
    
    .contact-info-box {
        padding: 2rem;
    }
    
    .contact-company .company-name {
        font-size: 1.2rem;
    }
    
    .legal-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .solicitation-policy-intro,
    .solicitation-policy-content {
        padding: 1.5rem;
    }
    
    .business-label {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .policy-subsection {
        padding: 1rem;
    }
    
    .subsection-title {
        font-size: 1rem;
    }
    
    .policy-list li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }
    
    .contact-info-box {
        padding: 1.5rem;
    }
    
    .contact-company .company-name {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
}