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

body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
.header {
    background: transparent;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.header h1 {
    margin-bottom: 10px;
}

.header img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    display: block;
}

.header .container {
    max-width: 1100px !important;
    padding: 0 20px !important;
    width: 100% !important;
}

.update-info {
    background-color: #aab27c;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: #f8f9fa;
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: #5c6629;
    text-decoration: none;
    font-weight: bold;
}

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

.breadcrumb span {
    color: #666;
    margin: 0 5px;
}

/* Main Content */
.main-content {
    background: white;
    margin: 20px auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.intro-section {
    margin-bottom: 40px;
}

.intro-section p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
}

/* Section Styling */
.section {
    margin-bottom: 50px;
    padding: 30px;
    background: #f9ffd8;
    border-radius: 8px;
    border-left: 4px solid #5c6629;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #5c6629;
}

.section-content p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
}

.section-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.section-content ol {
    margin: 16px 0;
    padding-left: 30px;
    list-style-position: outside;
}

.section-content li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: justify;
    text-justify: inter-ideograph;
    padding-left: 20px;
    text-indent: -20px;
}

.section-content h3 {
    color: #5c6629;
    margin-bottom: 16px;
    font-size: 18px;
}

/* KPI Section */
.kpi-item {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.kpi-title {
    font-weight: bold;
    color: #5c6629;
    margin-bottom: 8px;
}

.kpi-target {
    color: #666;
    margin-bottom: 4px;
}

.kpi-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

/* Privacy Policy Button */
.privacy-section {
    text-align: center;
    margin: 40px 0;
}

.privacy-button {
    display: inline-block;
    background: linear-gradient(135deg, #5c6629 0%, #aab27c 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.privacy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Business Content */
.business-content {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
    color: #333;
}

/* Insurance Companies Grid */
.insurance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.insurance-header {
    background: #5c6629;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px 8px 0 0;
    font-weight: bold;
}

.insurance-company {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.insurance-company:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.company-logo {
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo img {
    max-width: 100%;
    height: auto;
    max-height: 70px;
}

.company-name {
    background: #f9ffd8;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
}

/* Location Section */
.location-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

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

.location-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.location-description {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 16px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #5c6629 0%, #aab27c 100%);
    color: white;
    padding: 30px 0;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
}

.footer-logo img {
    width: 80px;
    height: 47px;
    border-radius: 4px;
}

.footer-info {
    line-height: 1.8;
}

.footer-info a {
    color: white;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.copyright {
    background: #5c6629;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .main-content {
        padding: 20px;
        margin: 10px auto;
    }

    .section {
        padding: 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .insurance-company {
        grid-template-columns: 1fr;
    }

    .company-name {
        border-top: 1px solid #ddd;
    }

    .location-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .privacy-button {
        padding: 12px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header img {
        width: 100%;
        height: auto;
    }

    .main-content {
        padding: 15px;
    }

    .section {
        padding: 15px;
    }

    .section-title {
        font-size: 18px;
    }

    .privacy-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

