* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #1f2937;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #024f83;
    color: white;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.header-nav {
    display: flex;
    gap: 30px;
}

.header-nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.header-nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #024f83 0%, #0369a1 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Video Background Styles */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 79, 131, 0.92) 0%, rgba(3, 105, 161, 0.88) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
    }
    10% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

        
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.mobile-break {
    display: none;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.price {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 40px;
    font-weight: bold;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.demo-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    text-align: center;
}

/* Trust Indicators Section */
.trust-indicators {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-item {
    padding: 20px;
}

.trust-number {
    font-size: 2rem;
    font-weight: bold;
    color: #024f83;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.4;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: #f59e0b;
    color: white;
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #024f83;
}

/* Small CTA buttons for less emphasis sections */
.btn-small {
    padding: 10px 20px;
    font-size: 0.95rem;
}

.cta-small {
    margin: 60px 0 40px;
}

.cta-small .cta-buttons {
    gap: 15px;
}

.cta-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
    text-align: center;
}

.pricing-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
    text-align: center;
}

/* Specific class for visible button */
.btn-visible {
    background: white !important;
    color: #024f83 !important;
    border: 2px solid #024f83 !important;
    min-width: 200px;
}

.btn-visible:hover {
    background: #024f83 !important;
    color: white !important;
}

/* Alternative approach matching demo section pattern */
.pre-faq-cta .btn-secondary {
    background: white !important;
    color: #024f83 !important;
    border: 2px solid #024f83 !important;
    min-width: 200px;
}

.pre-faq-cta .btn-secondary:hover {
    background: #024f83 !important;
    color: white !important;
}


/* Section Styling */
.section {
    padding: 80px 0;
    border-bottom: 1px solid #e5e7eb;
}

.section:last-of-type {
    border-bottom: none;
}

.section-alt {
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #024f83;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 60px;
}

/* Semi-Custom Section */
.semi-custom {
    background: #f8fafc;
}

.semi-custom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.semi-custom-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.semi-custom-icon {
    background: #024f83;
    color: white;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.semi-custom-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #024f83;
}

.semi-custom-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.features {
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background: #d1d5db;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.9rem;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #024f83;
}

/* Use Cases Section */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 100%;
}

.use-case-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.use-case-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.use-case-content {
    padding: 25px;
}

.use-case-content h3 {
    color: #024f83;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Functions Section */
.functions {
    background: #f8fafc;
}

.functions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.function-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.function-icon {
    background: #024f83;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.function-item h3 {
    color: #024f83;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Pricing Section */
.pricing {
    text-align: center;
}

.pricing-main {
    background: #024f83;
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.pricing-main h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.pricing-main .price {
    font-size: 3.5rem;
    color: #fbbf24;
    margin: 30px 0;
}

.pricing-description {
    font-size: 1rem;
    margin: 20px 0;
    opacity: 0.9;
}

.pricing-link {
    color: white;
    background: #fbbf24;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin: 15px 0 40px;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.pricing-link:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
}

.options-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.options-table table {
    width: 100%;
    border-collapse: collapse;
}

.options-table th {
    background: #024f83;
    color: white;
    padding: 20px;
    text-align: left;
}

.options-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.options-table tr:last-child td {
    border-bottom: none;
}

/* Demo Section */
.demo {
    background: #f8fafc;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.demo-item {
    background: white;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.demo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.demo-image {
    background: #d1d5db;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.9rem;
    object-fit: cover;
    border-radius: 0;
}

.demo-caption {
    padding: 20px;
    text-align: center;
}

.demo-caption h3 {
    font-size: 1.2rem;
    color: #024f83;
    margin-bottom: 8px;
}

.demo-caption p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Demo section specific button styles for better visibility */
.demo .btn-secondary {
    background: white;
    color: #024f83;
    border: 2px solid #024f83;
}

.demo .btn-secondary:hover {
    background: #024f83;
    color: white;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-number {
    background: #024f83;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

.process-icon {
    background: #d1d5db;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #6b7280;
    font-size: 0.8rem;
}

.process-item h3 {
    color: #024f83;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq {
    background: #f8fafc;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    background: #024f83;
    color: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #0369a1;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-icon.active {
    transform: rotate(180deg);
}



.contact-content-simple {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta-large {
    margin: 50px 0;
}

.btn-contact-large {
    padding: 20px 50px;
    font-size: 1.3rem;
    background: #f59e0b;
    color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-contact-large:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.4);
}

.contact-info-center {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-item-center {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    max-width: 350px;
}

.contact-item-center .icon {
    background: #024f83;
    color: white;
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 5px;
}

.contact-detail {
    font-size: 1.3rem;
    color: #024f83;
    display: block;
    margin-bottom: 5px;
}

.contact-hours,
.contact-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .contact-info-center {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .btn-contact-large {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 400px;
    }
}






/* Contact Section */
.contact-section {
    background: white;
    padding: 60px 0;
    text-align: center;
    border-top: 3px solid #024f83;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 40px auto;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group.full-width {
    grid-column: span 2;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #024f83;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #024f83;
    text-align: left;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #024f83;
    font-weight: bold;
}

.contact-intro {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0 40px;
    text-align: center;
    color: #024f83;
    font-weight: 500;
    border: 2px solid #024f83;
}

.contact-item .icon {
    background: #024f83;
    color: white;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.final-cta {
    background: linear-gradient(135deg, #024f83 0%, #0369a1 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: #024f83;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-links {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links p {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-legal {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-contact {
    font-size: 0.9rem;
}

.contact-group {
    margin-bottom: 20px;
}

.contact-label {
    font-weight: bold;
    margin-bottom: 8px;
}

.contact-hours {
    font-size: 0.85rem;
    opacity: 0.9;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
    margin-top: 10px;
}

.whatsapp-btn:hover {
    background: #20ba5a;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.footer-map {
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}        
/* Responsive Design */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .mobile-break {
        display: inline;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .use-cases-grid,
    .functions-grid,
    .semi-custom-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .options-table {
        overflow-x: auto;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn-small {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-number {
        font-size: 1.4rem;
    }
    
    .trust-label {
        font-size: 0.85rem;
    }
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   Pricing Section Styles
   ======================================== */

.pricing {
    background: #f8fafc;
}

/* Override container width for pricing section */
.pricing .container {
    max-width: 100% !important;
}

/* Pricing Plans Grid - 3カラム横並び */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 400px));
    gap: 30px;
    margin: 40px auto;
    max-width: 1400px;
    justify-content: center;
    align-items: stretch;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card-featured {
    border: 3px solid #007bff;
}

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

.featured-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 5px 35px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 11px;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
    z-index: 1;
}

/* Pricing Card Header */
.pricing-card-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.plan-name {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.plan-subtitle {
    font-size: 14px;
    font-weight: normal;
    opacity: 0.9;
}

.plan-price {
    margin-top: 12px;
}

.price-amount {
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
}

.price-currency {
    font-size: 20px;
    margin-left: 3px;
}

.price-tax {
    display: block;
    font-size: 13px;
    margin-top: 5px;
    opacity: 0.9;
}

/* Pricing Card Body */
.pricing-card-body {
    padding: 25px 20px;
    flex-grow: 1;
}

.plan-section {
    margin-bottom: 20px;
}

.plan-section h4 {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid #f0f0f0;
}

.plan-includes {
    text-align: center;
    font-size: 20px;
    color: #007bff;
    margin: 8px 0;
    font-weight: bold;
}

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

.plan-features li {
    padding: 6px 0 6px 22px;
    position: relative;
    line-height: 1.5;
    color: #555;
    font-size: 13px;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
}

.plan-features li strong {
    color: #333;
}

.plan-target {
    margin-top: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

.plan-target strong {
    color: #007bff;
}

/* Pricing Card Footer */
.pricing-card-footer {
    padding: 20px;
    background: #f8f9fa;
    text-align: center;
    margin-top: auto;
}

.pricing-card-footer .btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: bold;
}

/* Pricing Footer Note */
.pricing-footer-note {
    text-align: center;
    margin-top: 40px;
    padding: 25px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-footer-note p {
    margin: 6px 0;
    color: #666;
    font-size: 14px;
}

.pricing-footer-note .cta-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pricing Responsive */
@media (max-width: 1200px) {
    .pricing-plans {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .pricing-plans {
        grid-template-columns: 1fr !important;
        max-width: 500px;
    }
    
    .pricing-footer-note .cta-buttons {
        flex-direction: column;
    }
    
    .pricing-footer-note .btn {
        width: 100%;
    }
}

/* Pricing Section Button Fix */
.pricing .btn-secondary,
.pricing-footer-note .btn-secondary {
    background: white;
    color: #024f83;
    border: 2px solid #024f83;
}

.pricing .btn-secondary:hover,
.pricing-footer-note .btn-secondary:hover {
    background: #024f83;
    color: white;
}

/* Price Unit Style */
.price-unit {
    font-size: 24px;
    margin-left: 2px;
}

/* Pricing Intro Section */
.pricing-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 30px 25px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe4b3 100%);
    border-radius: 16px;
    border: 3px solid #f59e0b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.pricing-catch {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d97706;
    margin-bottom: 15px;
    line-height: 1.4;
}

.pricing-lead {
    font-size: 1.1rem;
    color: #92400e;
    line-height: 1.7;
    margin: 0;
}

/* Pricing Detail Link */
.pricing-detail-link {
    text-align: center;
    margin: 30px 0 25px;
}

.btn-detail {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.btn-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-catch {
        font-size: 1.2rem;
    }
    
    .pricing-lead {
        font-size: 1rem;
    }
    
    .btn-detail {
        padding: 12px 30px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 350px;
    }
}

/* ========================================
   Simple Pricing Cards for Index Page
   ======================================== */

.pricing-plans-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.pricing-card-simple {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card-simple:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card-simple.pricing-card-featured {
    border: 3px solid #f59e0b;
    position: relative;
}

/* ヘッダー部分：青背景に白文字 */
.pricing-card-simple .pricing-card-header {
    background: linear-gradient(135deg, #024f83 0%, #0369a1 100%);
    padding: 30px 25px 25px;
    text-align: center;
}

.pricing-card-simple .plan-name {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    font-weight: bold;
}

.pricing-card-simple .plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.pricing-card-simple .price-amount {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    line-height: 1;
}

.pricing-card-simple .price-unit {
    font-size: 1.3rem;
    color: white;
}

.pricing-card-simple .price-tax {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 5px;
}

/* ボディ部分 */
.pricing-card-simple .pricing-card-body {
    text-align: center;
    padding: 30px 25px;
}

.pricing-card-simple .plan-tagline {
    font-size: 1.1rem;
    color: #f59e0b;
    font-weight: bold;
    margin-bottom: 15px;
}

.pricing-card-simple .plan-description {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 80px;
}

.pricing-card-simple .plan-target-simple {
    font-size: 0.9rem;
    color: #6b7280;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.pricing-card-simple .plan-target-simple strong {
    color: #024f83;
}

/* Responsive for Simple Pricing Cards */
@media (max-width: 1024px) {
    .pricing-plans-simple {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card-simple.pricing-card-featured {
        border: 3px solid #f59e0b;
    }
}

@media (max-width: 768px) {
    .pricing-card-simple .plan-name {
        font-size: 1.5rem;
    }
    
    .pricing-card-simple .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-card-simple .plan-description {
        min-height: auto;
    }
}

/* ========================================
   Pricing More Info Section
   ======================================== */

.pricing-more-info {
    text-align: center;
    margin: 40px auto;
    padding: 30px 25px;
    background: #f0f9ff;
    border-radius: 12px;
    border: 2px solid #0284c7;
    max-width: 700px;
}

.pricing-more-text {
    font-size: 1.1rem;
    color: #0c4a6e;
    line-height: 1.7;
}

.pricing-detail-link {
    color: #024f83;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.pricing-detail-link:hover {
    color: #0369a1;
}

@media (max-width: 768px) {
    .pricing-more-info {
        padding: 25px 20px;
        margin: 30px auto;
    }
    
    .pricing-more-text {
        font-size: 1rem;
    }
    
    .pricing-more-text br {
        display: none;
    }
}
