/* Treatment Pages Styles for WordPress */

/* Common Treatment Page Styles */
.site-footer .logo img {
    height: 2rem;
    width: auto;
    filter: brightness(0) invert(1); /* Make logo white in footer */
}

.treatment-hero {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}

.treatment-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.treatment-hero-content {
    position: relative;
    z-index: 10;
}

.treatment-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #17d7df;
}

.treatment-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .treatment-hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .treatment-hero h1 {
        font-size: 3.75rem;
    }
}

.treatment-hero p {
    font-size: 1.125rem;
    color: #dfdfdf;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.treatment-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.feature-tag {
    background: white;
    color: #17d7df;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Notice Section */
.notice-section {
    padding: 2rem 0;
    background: #f0f9ff;
    border-left: 4px solid #17d7df;
}

.notice-box {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.notice-icon {
    font-size: 1.5rem;
    color: #17d7df;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.notice-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 0.5rem;
}

.notice-content p {
    color: #0c4a6e;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.notice-details {
    font-size: 0.875rem;
    color: #0369a1;
}

.notice-details ul {
    list-style: disc;
    list-style-position: inside;
    margin-left: 1rem;
    margin-top: 0.25rem;
}

/* Symptoms Section */
.symptoms-section {
    padding: 4rem 0;
    background: white;
}

.symptoms-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .symptoms-section h2 {
        font-size: 2.25rem;
    }
}

.symptoms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.symptom-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 0.5rem;
}

.symptom-icon {
    font-size: 1.25rem;
    color: #17d7df;
    flex-shrink: 0;
}

.symptom-item span:last-child {
    color: #374151;
}

/* Medications Section */
.medications-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.medications-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .medications-section h2 {
        font-size: 2.25rem;
    }
}

.medications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 112rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .medications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.medication-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.medication-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.medication-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.generic-name,
.medication-type {
    font-size: 0.875rem;
    color: #17d7df;
    font-weight: 600;
}

.medication-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #17d7df;
}

.medication-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.detail-section {
    margin-bottom: 1rem;
}

.detail-section h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.detail-section p {
    font-size: 0.875rem;
    color: #6b7280;
    background: #f9fafb;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin: 0;
}

.effects-tags,
.side-effects-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.effect-tag {
    background: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.side-effect-tag {
    background: #fecaca;
    color: #dc2626;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Warning Box */
.warning-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.warning-icon {
    font-size: 1.25rem;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.warning-content p {
    color: #92400e;
    font-size: 0.875rem;
    margin: 0;
    background: none;
    padding: 0;
}

/* Treatment Plans Section */
.treatment-plans-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.treatment-plans-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 2rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 112rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plan-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    position: relative;
}

.plan-card.recommended {
    background: linear-gradient(135deg, #17d7df, #17f1fc);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.recommended-badge {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: #1f2937;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
}

.plan-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #17d7df;
    margin-bottom: 1rem;
}

.plan-card.recommended .plan-price {
    color: white;
}

.plan-description {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: #6b7280;
}

.plan-card.recommended .plan-description {
    color: rgba(255, 255, 255, 0.9);
}

.plan-medications h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.plan-medications ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.plan-medications li {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    color: #6b7280;
}

.plan-card.recommended .plan-medications li {
    color: rgba(255, 255, 255, 0.9);
}

.plan-button {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.plan-card:not(.recommended) .plan-button {
    background: linear-gradient(to right, #17d7df, #17f1fc);
    color: white;
}

.plan-card:not(.recommended) .plan-button:hover {
    background: linear-gradient(to right, #15c5cc, #15e8f3);
}

.plan-card.recommended .plan-button {
    background: white;
    color: #17d7df;
}

.plan-card.recommended .plan-button:hover {
    background: #f3f4f6;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: white;
}

.pricing-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.pricing-category {
    margin-bottom: 3rem;
}

.pricing-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.pricing-table {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.pricing-table table {
    width: 100%;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    border-collapse: collapse;
}

.pricing-table thead {
    background: #17d7df;
    color: white;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.5rem;
    text-align: left;
}

.pricing-table th {
    font-weight: 600;
    font-size: 0.875rem;
}

.pricing-table td {
    border-bottom: 1px solid #f3f4f6;
}

.pricing-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.pricing-table tbody tr:hover {
    background: #f3f4f6;
}

.pricing-table .highlight {
    font-weight: 700;
    color: #17d7df;
}

.pricing-note {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1.5rem;
}

/* Hero Effects List */
.hero-effects-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-effects-list li {
    color: #374151;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.hero-effects-list li::before {
    content: '•';
    color: #17d7df;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Detail Subsections */
.detail-subsection {
    margin-bottom: 1rem;
}

.detail-subsection h5 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.detail-subsection p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.detail-subsection ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-subsection li {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}

.detail-subsection li::before {
    content: '•';
    color: #17d7df;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.note {
    font-size: 0.75rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Important Info Section */
.important-info-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.important-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.important-header .warning-icon {
    font-size: 1.5rem;
    color: #17d7df;
}

.important-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #17d7df;
    margin: 0;
}

.important-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .important-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.important-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.important-card h3 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.important-card p {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: #f0f9ff;
}

.benefits-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

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

.benefit-card {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2rem;
    color: #17d7df;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Treatment CTA Section */
.treatment-cta {
    padding: 4rem 0;
    background: linear-gradient(to right, #17d7df, #17f1fc);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2.25rem;
    }
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #a5f3fc;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.treatment-cta .btn-primary {
    background: white;
    color: #17d7df;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.treatment-cta .btn-primary:hover {
    background: #f3f4f6;
}

/* Mechanism Section */
.mechanism-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.mechanism-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.mechanism-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 64rem;
    margin: 0 auto;
}

.cycle-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.cycle-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.cycle-icon.growth {
    background: #06b6d4;
}

.cycle-icon.regression {
    background: #f97316;
}

.cycle-icon.rest {
    background: #6b7280;
}

.cycle-item h3 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.cycle-item p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.mechanism-effect {
    background: #f0f9ff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.mechanism-effect h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 0.5rem;
}

.mechanism-effect p {
    color: #0c4a6e;
    margin: 0;
}

/* Product Section */
.product-section {
    padding: 4rem 0;
    background: white;
}

.product-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    max-width: 64rem;
    margin: 0 auto;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.product-subtitle {
    color: #17d7df;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .product-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-effect h4,
.product-side-effects h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.mechanism-box {
    background: #f0f9ff;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.mechanism-box h5 {
    font-weight: 600;
    color: #0c4a6e;
    margin-bottom: 0.5rem;
}

.mechanism-box p {
    font-size: 0.875rem;
    color: #0c4a6e;
    margin: 0;
}

.side-effects-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.side-effect-item {
    background: #fecaca;
    color: #dc2626;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.important-note {
    font-size: 0.875rem;
    background: #fef3c7;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    color: #92400e;
}

/* Medication Accordion Styles */
.medication-accordion {
    margin-top: 1rem;
}

.accordion-toggle {
    width: 100%;
    padding: 1rem;
    background: #f0f9ff;
    border: 1px solid #17d7df;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-weight: 600;
    color: #1f2937;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; 
}

.accordion-toggle:hover {
    background: #f3f4f6;
    border-color: #17d7df;
}

.accordion-toggle.active {
    background: #f0f9ff;
    border-color: #17d7df;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-icon {
    font-size: 1.25rem;
    color: #17d7df;
    /* 変更: 初期状態でアクティブ色 */
    transition: transform 0.3s;
    transform: rotate(45deg);
    /* 変更: 初期状態で×マーク */
}

.accordion-toggle.active .accordion-icon {
    transform: rotate(45deg);
    color: #17d7df;
}

.accordion-content {
    display: block;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    animation: slideDown 0.3s ease-out;
}

.accordion-content.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

.accordion-content .detail-section {
    margin-bottom: 1.5rem;
}

.accordion-content .detail-section:last-child {
    margin-bottom: 0;
}

.accordion-content h4,
.accordion-content h5 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.accordion-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem 0;
}

.accordion-content li {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.accordion-content li::before {
    content: '•';
    color: #17d7df;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Mobile Optimization for Accordion */
@media (max-width: 767px) {
    .accordion-toggle {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .accordion-content {
        padding: 1rem;
    }
    
    .accordion-content h4,
    .accordion-content h5 {
        font-size: 0.875rem;
    }
    
    .accordion-content p {
        font-size: 0.875rem;
    }
    
    .side-effects-tags {
        gap: 0.25rem;
    }
    
    .side-effect-tag {
        font-size: 0.625rem;
        padding: 0.125rem 0.5rem;
    }
}

/* Single Pricing Section */
.single-pricing-section {
    padding: 4rem 0;
    background: white;
}

.single-pricing-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.single-pricing-table {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 64rem;
    margin: 0 auto;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.discontinued {
    opacity: 0.6;
}

.medication-name {
    font-weight: 600;
    color: #1f2937;
}

.pricing-row .medication-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #17d7df;
}

/* FAQ Section for Detail Pages */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: #f9fafb;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question span:first-child {
    font-weight: 600;
    color: #1f2937;
}

.faq-toggle {
    color: #6b7280;
    font-size: 1.25rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: white;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Card Styles */
.pricing-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.price-item {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #17d7df;
    margin-bottom: 1rem;
}

.price-button {
    width: 100%;
    background: linear-gradient(to right, #17d7df, #17f1fc);
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.price-button:hover {
    background: linear-gradient(to right, #15c5cc, #15e8f3);
}

/* Effects Section */
.effects-section {
    padding: 4rem 0;
    background: white;
}

.effects-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.effects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.effect-card {
    text-align: center;
    padding: 1.5rem;
    background: #f0f9ff;
    border-radius: 1rem;
}

.effect-icon {
    background: #17d7df;
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.effect-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.effect-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Generations Section */
.generations-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.generations-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.generations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .generations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.generation-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.generation-indicator {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.generation-indicator.first {
    background: #3b82f6;
}

.generation-indicator.second {
    background: #22c55e;
}

.generation-indicator.third {
    background: #8b5cf6;
}

.generation-indicator.fourth {
    background: #ec4899;
}

.generation-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.generation-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.medications-list h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.medications-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.medications-list li {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.medications-list li::before {
    content: '• ';
    color: #17d7df;
    font-weight: bold;
}

/* Usage Section */
.usage-section {
    padding: 4rem 0;
    background: white;
}

.usage-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.usage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .usage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.usage-card {
    background: #dbeafe;
    border-radius: 1rem;
    padding: 1.5rem;
}

.usage-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
}

.usage-card p {
    color: #1e40af;
    line-height: 1.6;
}

.special-usage {
    background: #f3e8ff;
    border-radius: 1rem;
    padding: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.special-usage h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 1rem;
}

.special-usage p {
    color: #7c3aed;
    line-height: 1.6;
}

/* Side Effects Section */
.side-effects-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.side-effects-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.side-effects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .side-effects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.side-effects-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.side-effects-card h3 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.side-effects-card.serious h3 {
    color: #dc2626;
}

.side-effects-card p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.side-effects-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-effects-list li {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.side-effects-list li::before {
    content: '• ';
    color: #dc2626;
    font-weight: bold;
}

/* Insurance Pricing */
.insurance-notice {
    background: #f0f9ff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.insurance-notice p {
    color: #0c4a6e;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.notice-details {
    font-size: 0.875rem;
    color: #0369a1;
}

.notice-details ul {
    list-style: disc;
    list-style-position: inside;
    margin-left: 1rem;
    margin-top: 0.25rem;
}

.insurance-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .insurance-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.insurance-price-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 1.5rem;
    text-align: center;
}

.insurance-price-card h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.insurance-price-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #17d7df;
    margin-bottom: 0.5rem;
}

.insurance-price-card p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Treatment Sets Section */
.treatment-sets-section {
    padding: 4rem 0;
    background: white;
}

.treatment-sets-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.sets-category {
    margin-bottom: 3rem;
}

.sets-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.sets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.set-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.set-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.set-medications {
    margin-bottom: 1rem;
}

.set-medications p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
}

.set-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #17d7df;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Detailed Pricing Section */
.detailed-pricing-section {
    padding: 4rem 0;
    background: white;
}

.detailed-pricing-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.pricing-category {
    margin-bottom: 3rem;
}

.pricing-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.pricing-table {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.pricing-table table {
    width: 100%;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    border-collapse: collapse;
}

.pricing-table thead {
    background: #17d7df;
    color: white;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.5rem;
    text-align: left;
}

.pricing-table th {
    font-weight: 600;
    font-size: 0.875rem;
}

.pricing-table td {
    border-bottom: 1px solid #f3f4f6;
}

.pricing-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.pricing-table tbody tr:hover {
    background: #f3f4f6;
}

.pricing-table .highlight {
    font-weight: 700;
    color: #17d7df;
}

/* Single Medications Grid */
.single-medications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .single-medications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.single-med-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.single-med-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.pricing-option.highlight {
    background: #f0f9ff;
    border: 1px solid #17d7df;
}

.option-label {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.option-price {
    font-weight: 700;
    color: #17d7df;
}

/* Supplement Section */
.supplement-section {
    margin-top: 2rem;
}

.supplement-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.supplement-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    max-width: 64rem;
    margin: 0 auto;
}

.supplement-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.supplement-pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

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

.supplement-option .option-label {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    display: block;
}

.supplement-option .option-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #17d7df;
}

/* Treatment Categories */
.treatment-categories {
    padding: 4rem 0;
    background: white;
}

.treatment-categories h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.category-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #17d7df;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.category-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-medications {
    margin-bottom: 1.5rem;
}

.category-medications h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.category-medications ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-medications li {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.category-medications li::before {
    content: '• ';
    color: #17d7df;
    font-weight: bold;
}

.category-features {
    margin-bottom: 1.5rem;
}

.category-features h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.category-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-features li {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.category-features li::before {
    content: '• ';
    color: #22c55e;
    font-weight: bold;
}

.category-link {
    color: #17d7df;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.category-link:hover {
    color: #15c5cc;
}

/* Price Overview */
.price-overview {
    padding: 4rem 0;
    background: #f9fafb;
}

.price-overview h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.price-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .price-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.price-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.price-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.price-range {
    font-size: 1.5rem;
    font-weight: 700;
    color: #17d7df;
    margin-bottom: 1rem;
}

.price-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.price-card li {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.price-card li::before {
    content: '• ';
    color: #17d7df;
    font-weight: bold;
}

/* Severity Indicators */
.severity-indicator {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.severity-indicator.mild {
    background: #22c55e;
}

.severity-indicator.light {
    background: #eab308;
}

.severity-indicator.moderate {
    background: #f97316;
}

.severity-indicator.severe {
    background: #ef4444;
}

/* Treatment Flow Section */
.treatment-flow-section {
    padding: 4rem 0;
    background: white;
}

.treatment-flow-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.flow-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .flow-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .flow-steps {
        grid-template-columns: repeat(5, 1fr);
    }
}

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

.step-number {
    background: #17d7df;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.flow-step h3 {
    font-size: 0.875rem;
    color: #374151;
    margin: 0;
}

/* Vitamin Details */
.vitamin-details {
    margin-top: 1rem;
}

.vitamin-details p {
    background: #f0f9ff;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #0c4a6e;
}

.vitamin-details strong {
    color: #17d7df;
}

/* Plan Pricing */
.plan-pricing {
    margin-bottom: 1rem;
}

.plan-pricing p {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    color: #6b7280;
}

.plan-card.recommended .plan-pricing p {
    color: rgba(255, 255, 255, 0.9);
}

/* Safety Section */
.safety-section {
    padding: 4rem 0;
    background: white;
}

.safety-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.safety-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.safety-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #17d7df;
    margin-bottom: 1rem;
}

.safety-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-card li {
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
}

.safety-card li::before {
    content: '•';
    color: #17d7df;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.safety-card p {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Injection Pricing */
.injection-pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .injection-pricing {
        grid-template-columns: repeat(2, 1fr);
    }
}

.injection-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.injection-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.injection-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.injection-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.injection-option.highlight {
    background: #fef3c7;
    border: 1px solid #f59e0b;
}

.injection-option.highlight .option-price {
    color: #dc2626;
}

.injection-note {
    font-size: 0.875rem;
    color: #6b7280;
    background: #f9fafb;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin: 0;
}

/* Daily Price Display - 高視認性＆差別化デザイン */
.daily-price-display {
    margin: 1.5rem 0 2.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.daily-price-text {
    font-size: 1.125rem;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.daily-price-text .price-range {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ea580c);
    padding: 0.75rem 1.5rem;
    margin-left: 0.75rem;
    position: relative;
    display: inline-block;
    clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    animation: priceGlow 2s ease-in-out infinite alternate;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* アニメーション効果 */
@keyframes priceGlow {
    0% {
        box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
        transform: translateY(0);
    }

    100% {
        box-shadow: 0 12px 35px rgba(249, 115, 22, 0.6);
        transform: translateY(-2px);
    }
}

@keyframes pricePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
    .daily-price-text {
        font-size: 1.25rem;
    }

    .daily-price-text .price-range {
        font-size: 2rem;
        padding: 0.875rem 1.75rem;
    }
}

@media (min-width: 1024px) {
    .daily-price-text {
        font-size: 1.375rem;
    }

    .daily-price-text .price-range {
        font-size: 2.25rem;
        padding: 1rem 2rem;
    }
}

/* Daily Price Display - 高視認性＆差別化デザイン */
.daily-price-display {
    margin: 1.5rem 0 2.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.daily-price-text {
    font-size: 1.125rem;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.daily-price-text .price-range {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ea580c);
    padding: 0.75rem 1.5rem;
    margin-left: 0.75rem;
    position: relative;
    display: inline-block;
    clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    animation: priceGlow 2s ease-in-out infinite alternate;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* アニメーション効果 */
@keyframes priceGlow {
    0% {
        box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
        transform: translateY(0);
    }

    100% {
        box-shadow: 0 12px 35px rgba(249, 115, 22, 0.6);
        transform: translateY(-2px);
    }
}

@keyframes pricePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
    .daily-price-text {
        font-size: 1.25rem;
    }

    .daily-price-text .price-range {
        font-size: 2rem;
        padding: 0.875rem 1.75rem;
    }
}

@media (min-width: 1024px) {
    .daily-price-text {
        font-size: 1.375rem;
    }

    .daily-price-text .price-range {
        font-size: 2.25rem;
        padding: 1rem 2rem;
    }
}

/* Treatment Overview Section */
.treatment-overview-section {
    padding: 4rem 0;
    background: white;
}

.treatment-overview-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .treatment-overview-section h2 {
        font-size: 2.25rem;
    }
}

.treatment-overview-section p {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .treatment-overview-section p {
        font-size: 1.25rem;
    }
}

/* Pill Image Placeholder Styles */
.pill-image-placeholder {
    background: #f0f9ff;
    border-radius: 0.5rem;
    padding: 2rem;
    margin: 1rem 0;
    text-align: center;
    color: #0c4a6e;
    font-weight: 600;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #17d7df;
    transition: all 0.3s ease;
    position: relative;
}

.pill-image-placeholder:hover {
    background: #e0f2fe;
    border-color: #15c5cc;
}

/* For actual images when they replace the placeholder */
.pill-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 0.5rem;
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
    .pill-image-placeholder {
        padding: 1.5rem 1rem;
        min-height: 150px;
        font-size: 0.875rem;
    }

    .pill-image {
        max-height: 200px;
    }
}

/* Hero Section with Black Overlay */
.treatment-hero {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 黒のオーバーレイを追加 */
.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* 50%の黒オーバーレイ */
    z-index: 1;
}

.treatment-hero-content {
    position: relative;
    z-index: 10;
    /* オーバーレイより上に表示 */
}

.treatment-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    /* テキストに影を追加 */
}

@media (min-width: 768px) {
    .treatment-hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .treatment-hero h1 {
        font-size: 3.75rem;
    }
}

.treatment-hero p {
    font-size: 1.125rem;
    color: #dfdfdf;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    /* テキストに影を追加 */
}

/* Campaign Image Section */
.campaign-section {
    padding: 40px 0;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.campaign-image {
    display: block;
    width: 100%;
    max-width: 1200px;
    /* 最大幅を設定 */
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    /* 追加の中央寄せ */
}

.campaign-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    transition: all 0.3s ease;
}

.campaign-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.campaign-image:hover::before {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .campaign-section {
        padding: 30px 0;
    }

    .campaign-image {
        width: 200px;
        height: 200px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .campaign-section {
        padding: 20px 0;
    }

    .campaign-image {
        width: 200px;
        height: 200px;
        border-radius: 6px;
    }
}

/* タブレット向け */
@media (min-width: 769px) and (max-width: 1024px) {
    .campaign-image {
        width: 200px;
        height: 200px;
    }
}

/* 大画面向け */
@media (min-width: 1200px) {
    .campaign-image {
        width: 240px;
        height: 240px;
    }
}