/* === GENERAL === */
body {
    font-family: 'Noto Sans JP', 'Roboto', Arial, sans-serif;
    font-size: 16px;
    color: #222;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: #e30613; text-decoration: none; }
a:hover { color: #c80411; text-decoration: underline; }

h1, h2, h3, h4 {
    font-family: 'Noto Sans JP', 'Roboto', sans-serif;
    font-weight: 700;
    color: #212529;
    margin: 0 0 20px;
}

h1 { font-size: 42px; line-height: 1.15; }
h2 { font-size: 32px; line-height: 1.2; }
h3 { font-size: 22px; }
h4 { font-size: 1.125rem; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }

/* === COOKIES GDPR === */
#cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.12);
    padding: 18px 20px;
    font-size: 14px;
    color: #333;
    z-index: 9999;
    display: none;
}
#cookie-bar .cookie-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
#cookie-bar p { margin: 0; flex: 1; min-width: 200px; }
#cookie-bar .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
#cookie-bar .btn-accept { background: #212529; color: #fff; border: 0; padding: 10px 22px; border-radius: 4px; cursor: pointer; font-size: 14px; }
#cookie-bar .btn-decline { background: #fff; color: #212529; border: 1px solid #212529; padding: 10px 22px; border-radius: 4px; cursor: pointer; font-size: 14px; }
#cookie-bar .btn-settings { background: transparent; color: #6c757d; border: 0; text-decoration: underline; padding: 10px 0px; cursor: pointer; font-size: 14px; }

/* === HEADER === */
.site-header {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    transition: all .25s ease;
}
.site-header .logo { display: flex; align-items: center; gap: 10px; }
.site-header .logo svg { width: 42px; height: 42px; }
.site-header .logo .logo-text { font-size: 20px; font-weight: 700; color: #212529; line-height: 1.1; }
.site-header .logo .logo-text span { color: #e30613; }
.site-header .logo .logo-sub { font-size: 10px; color: #666; display: block; letter-spacing: 0.5px; }
.site-header .main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 24px; }
.site-header .main-nav a { color: #222; font-weight: 500; font-size: 15px; }
.site-header .main-nav a:hover { color: #e30613; text-decoration: none; }
.site-header .main-nav a.active { color: #e30613; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #222; margin: 5px 0; transition: all .3s; }

/* === HERO === */
.hero {
    background: #f7f7f7;
    padding: 70px 0 90px;
    position: relative;
}
.hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #212529;
    margin-bottom: 18px;
}
.hero p { font-size: 1.125rem; color: #444; margin-bottom: 24px; max-width: 520px; }
.hero .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img { border-radius: 8px; overflow: hidden; }
.hero-img img { width: 100%; height: auto; display: block; }

/* === BUTTONS === */
.btn {
    display: inline-block;
    background: #e30613;
    border: 1px solid #e30613;
    padding: 12px 24px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: background .2s, border-color .2s;
    cursor: pointer;
    text-align: center;
}
.btn:hover { background: #c80411; border-color: #c80411; color:#fff; text-decoration: none; }
.btn-primary { background: #e30613; }
.btn.btn-lg { padding: 16px 32px; font-size: 1.125rem; }
.btn-outline { background: #fff; color: #e30613; border: 1px solid #E30613; }
.btn-outline:hover { background: #e30613; color: #fff; }
.btn-dark { background: #212529; border-color: #212529; color:#fff; }
.btn-dark:hover { background: #000; border-color: #000; color:#fff; }

/* === CATEGORY GRID === */
.category-grid { padding: 60px 0 40px; text-align: center; }
.category-grid h2 { margin-bottom: 8px; }
.category-grid .lead { color: #666; margin-bottom: 36px; }
.category-grid .cats-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.cat-item {
    flex: 0 0 calc(16.6667% - 18px);
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 24px 10px;
    transition: box-shadow .25s, transform .25s;
    text-align: center;
}
.cat-item:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.cat-item .icon-circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #fff5f5;
    margin: 0 auto 12px;
    display:flex; align-items:center; justify-content:center;
}
.cat-item .icon-circle i { font-size: 22px; color: #e30613; }
.cat-item span { display: block; font-size: 14px; color: #222; font-weight: 500; }

/* === STATS === */
.stats-row { background: #f7f7f7; padding: 60px 0; }
.stats-row .stats-inner { display:flex; justify-content: space-around; text-align:center; flex-wrap:wrap; gap: 30px; }
.stat-item h3 { font-size: 48px; color: #e30613; margin: 0 0 6px; font-weight:800; }
.stat-item span { color:#666; font-size: 16px; }

/* === PROCESS / HOW IT WORKS === */
.how-it-works { padding: 80px 0; }
.how-it-works .img-wrap { border-radius: 8px; overflow: hidden; }
.how-it-works .img-wrap img { width: 100%; height: auto; display: block; }
.how-it-works .steps-list { list-style: none; padding: 0; margin: 0; }
.how-it-works .steps-list li {
    display: flex; align-items: flex-start; gap: 18px;
    margin-bottom: 28px;
}
.how-it-works .steps-list li .num {
    flex: 0 0 42px;
    width:42px; height:42px;
    border:2px solid #e30613;
    color:#e30613;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-weight:700;
    font-size: 18px;
}
.how-it-works .steps-list li h4 { margin: 0 0 6px; }
.how-it-works .steps-list li p { margin:0; color:#666; font-size: 15px; }

/* === CTA BAND === */
.cta-band { background:#f7f7f7; padding: 60px 0; text-align:center; }
.cta-band h2 { margin-bottom: 6px; }
.cta-band p { font-size: 20px; font-weight: 600; margin-bottom: 24px; color:#212529; }

/* === PRICING === */
.pricing { padding: 80px 0; }
.pricing h2 { text-align: center; margin-bottom: 8px; }
.pricing .lead { text-align: center; color: #666; margin-bottom: 40px; }
.pricing .row { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.price-card {
    flex: 0 0 calc(33.3333% - 24px);
    min-width: 260px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 32px 28px;
    position: relative;
    transition: box-shadow .25s;
}
.price-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.price-card.featured {
    border-color: #e30613;
    box-shadow: 0 4px 20px rgba(227,6,19,0.12);
}
.price-card .badge-top {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e30613;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.price-card h3 { font-size: 20px; margin-bottom: 10px; }
.price-card .price-val { font-size: 42px; font-weight: 800; color: #e30613; line-height: 1; margin-bottom: 4px; }
.price-card .price-val sup { font-size: 20px; vertical-align: top; margin-top: 8px; }
.price-card .price-period { font-size: 13px; color: #999; margin-bottom: 20px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; }
.price-card ul li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 15px; color: #444; display: flex; align-items: center; gap: 8px; }
.price-card ul li i { color: #e30613; font-size: 13px; }
.price-card .btn { width: 100%; text-align: center; }

/* === REVIEW CARDS === */
.reviews { padding: 60px 0; }
.reviews h2 { text-align: center; margin-bottom: 8px; }
.reviews .lead { text-align: center; color: #666; margin-bottom: 36px; }
.reviews .reviews-row { display: flex; gap: 20px; flex-wrap: wrap; }
.review-card {
    flex: 1 1 calc(33.3333% - 20px);
    min-width: 240px;
    background:#fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 22px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.review-card h4 { font-size: 16px; margin-bottom: 4px; }
.review-card .meta { color:#999; font-size: 13px; margin-bottom: 12px; }
.review-card .stars { color:#ffc107; margin-bottom: 8px; font-size: 14px; }
.review-card .body { font-size: 14px; color: #444; margin-bottom: 14px; line-height: 1.5; }

/* === EXPLAINER === */
.explainer { padding: 70px 0; }
.explainer h2 { text-align:center; margin-bottom: 28px; }
.explainer h3 { font-size: 18px; margin: 24px 0 8px; }
.explainer p { color:#444; margin-bottom: 14px; }
.explainer ul { padding-left: 18px; margin-bottom: 16px; color:#444; }
.explainer .cta-bar {
    background: #e30613;
    color:#fff;
    border-radius: 6px;
    padding: 18px 22px;
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    gap: 16px;
}
.explainer .cta-bar p { color:#fff; margin: 0; font-weight: 600; }
.explainer .cta-bar .btn { background:#fff; color:#e30613; border-color:#fff; white-space: nowrap; }

/* === TESTIMONIALS === */
.testimonials { padding: 60px 0 80px; background:#f7f7f7; }
.testimonials h2 { text-align:center; margin-bottom: 36px; }
.testimonials .quotes-row { display: flex; gap: 20px; flex-wrap: wrap; }
.quote {
    flex: 1 1 calc(33.3333% - 20px);
    min-width: 220px;
    background:#fff; padding: 22px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.quote p { font-size: 15px; color: #444; margin-bottom: 18px; line-height: 1.5; }
.quote .person { display:flex; align-items:center; gap: 12px; }
.quote .person img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.quote .person span { font-size: 14px; color: #212529; font-weight:500; }

/* === FAQ === */
.faq { padding: 70px 0; }
.faq h2 { text-align:center; margin-bottom: 32px; }
.faq .q { border-bottom:1px solid #eee; padding: 18px 0; cursor:pointer; }
.faq .q h4 { font-size: 16px; margin: 0; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq .q h4 i { font-size: 13px; color: #999; transition: transform .3s; }
.faq .q .a { display:none; padding-top: 10px; color:#444; font-size: 14px; line-height: 1.6; }
.faq .q.open .a { display:block; }
.faq .q.open h4 i { transform: rotate(180deg); }

/* === CONTACT FORM === */
.contact-section { padding: 80px 0; }
.contact-section h2 { margin-bottom: 8px; }
.contact-form { background: #f7f7f7; border-radius: 8px; padding: 36px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: #333; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    color: #222;
    background: #fff;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: #e30613; box-shadow: 0 0 0 2px rgba(227,6,19,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-box { padding-left: 20px; }
.contact-info-box h3 { font-size: 20px; margin-bottom: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-info-item .icon { width: 40px; height: 40px; background: #fff5f5; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item .icon i { color: #e30613; font-size: 16px; }
.contact-info-item .text { font-size: 15px; color: #444; line-height: 1.5; }
.contact-info-item .text strong { color: #222; display: block; margin-bottom: 2px; }

/* === PAGE HERO (inner pages) === */
.page-hero { background: #f7f7f7; padding: 50px 0; border-bottom: 1px solid #eee; }
.page-hero h1 { font-size: 36px; margin-bottom: 10px; }
.page-hero p { color: #666; font-size: 16px; margin: 0; }
.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: #999; margin-bottom: 14px; list-style: none; padding: 0; }
.breadcrumb li + li::before { content: '/'; margin-right: 8px; }
.breadcrumb a { color: #666; }

/* === LONG TEXT PAGE === */
.page-content { padding: 60px 0; }
.page-content h2 { font-size: 24px; margin: 32px 0 12px; }
.page-content h3 { font-size: 19px; margin: 24px 0 10px; }
.page-content p { color: #444; margin-bottom: 16px; line-height: 1.7; }
.page-content ul, .page-content ol { padding-left: 22px; margin-bottom: 16px; color: #444; line-height: 1.7; }
.page-content ul li, .page-content ol li { margin-bottom: 6px; }
.page-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 15px; }
.page-content table th { background: #f7f7f7; padding: 12px; text-align: left; border: 1px solid #e5e5e5; }
.page-content table td { padding: 12px; border: 1px solid #e5e5e5; color: #444; }

/* === FOOTER === */
.site-footer { background:#212529; color:#bbb; padding: 50px 0 20px; font-size: 14px; }
.site-footer a { color:#bbb; }
.site-footer a:hover { color:#fff; text-decoration: none; }
.site-footer h5 { color:#fff; font-size: 14px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer .footer-row { display: flex; gap: 40px; flex-wrap: wrap; }
.site-footer .footer-col { flex: 1 1 180px; }
.site-footer .footer-logo { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.site-footer .footer-logo span { color: #e30613; }
.site-footer .footer-desc { font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.site-footer .social-links { display: flex; gap: 10px; }
.site-footer .social-links a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: #333; color: #bbb; transition: background .2s; }
.site-footer .social-links a:hover { background: #e30613; color: #fff; }
.copy { border-top:1px solid #333; padding-top: 16px; margin-top: 30px; font-size: 12px; color:#777; text-align: center; }

/* === UTILITY === */
.clearfix:after { content:""; display:table; clear:both; }
.pull-left { float:left; }
.pull-right { float:right; }
.text-center { text-align:center !important; }
.text-red { color: #e30613; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px !important; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.row { display: flex; flex-wrap: wrap; gap: 24px; }
.col-lg-5 { flex: 0 0 calc(41.6667% - 24px); }
.col-lg-6 { flex: 0 0 calc(50% - 12px); }
.col-lg-7 { flex: 0 0 calc(58.3333% - 24px); }
.col-lg-8 { flex: 0 0 calc(66.6667% - 24px); }
.col-lg-4 { flex: 0 0 calc(33.3333% - 24px); }

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .container { max-width: 100%; }
    .hero { padding: 50px 0 60px; }
    .hero h1 { font-size: 36px; }
    .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-4 { flex: 0 0 100%; }
    .cat-item { flex: 0 0 calc(33.3333% - 18px); }
    .price-card { flex: 0 0 calc(50% - 24px); }
    .contact-info-box { padding-left: 0; padding-top: 30px; }
    .footer-col { flex: 1 1 140px; }
}

@media (max-width: 767px) {
    h1 { font-size: 30px; }
    h2 { font-size: 24px; }
    .hero { padding: 40px 0 50px; }
    .hero h1 { font-size: 30px; }
    .hero p { font-size: 16px; }
    .cat-item { flex: 0 0 calc(50% - 10px); }
    .stats-row .stats-inner { gap: 30px; }
    .review-card { flex: 0 0 100%; }
    .quote { flex: 0 0 100%; }
    .price-card { flex: 0 0 100%; }
    .explainer .cta-bar { flex-direction: column; gap: 14px; text-align:center; }
    .site-footer { padding: 40px 0 20px; }
    .site-header .main-nav { display: none; }
    .site-header .main-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 16px 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
    .site-header .main-nav.open ul { flex-direction: column; gap: 10px; }
    .hamburger { display: block; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .btn { padding: 12px 18px; font-size: 14px; }
    .cat-item { flex: 0 0 calc(50% - 10px); }
    .stat-item h3 { font-size: 36px; }
    .contact-form { padding: 24px 18px; }
}
