@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #2e318e;
    --primary-dark: #1a1c5e;
    --accent-color: #219a57;
    --accent-hover: #1b7e45;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f4f6f9;
    --bg-white: #ffffff;
    --font-main: 'Noto Sans JP', sans-serif;
    --max-width: 1000px;
    --shadow-card: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 35px rgba(0,0,0,0.1);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Header */
/*
header {
    padding: 1.2rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
*/

.container {
    width: 88%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef1f5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 49, 142, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.hero h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Sections General */
section {
    padding: 5rem 0;
}

section.bg-light {
    background-color: var(--bg-light);
}

h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

/* Service Overview (Cards) */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: rgba(46, 49, 142, 0.05);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Scope Table */
.scope-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    box-shadow: var(--shadow-card);
    border-radius: 12px;
    overflow: hidden;
}

.scope-table th, .scope-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    vertical-align: middle;
}

.scope-table th.scope-header {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
}

.scope-table tr:last-child td {
    border-bottom: none;
}

.scope-table .check {
    color: var(--accent-color);
    font-weight: bold;
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: rgba(33, 154, 87, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
}

.scope-table .cross {
    color: #999;
    font-weight: normal;
    font-size: 0.9rem;
}

.scope-table .center-align {
    text-align: center;
}

/* Plans & Costs */
.cost-box {
    background: #fff;
    padding: 3.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.cost-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent-color);
}

.plan-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.price {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 2px;
}

.price .tax {
    font-size: 0.9rem;
    color: #999;
    font-weight: normal;
}

.price .period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: normal;
}

.cost-details {
    text-align: left;
    max-width: 350px;
    margin: 0 auto 2rem;
}

.cost-details li {
    margin-bottom: 0.8rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.cost-details li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

.note {
    font-size: 0.85rem;
    color: #888;
    text-align: left;
    max-width: 350px;
    margin: 0 auto;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

/* FAQ */
.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
}

.faq-q {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.faq-q::before {
    content: 'Q.';
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-right: 0.8rem;
    font-weight: 900;
    line-height: 1.5;
}

.faq-a {
    padding-left: 2rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-section h2::after {
    background: rgba(255,255,255,0.3);
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--accent-color);
    color: #fff;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border: 2px solid transparent;
}

.btn:hover {
    background: #fff;
    color: var(--accent-color);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .scope-table {
        display: block;
        overflow-x: auto;
    }
    
    .scope-table th, .scope-table td {
        white-space: nowrap;
        padding: 1rem;
    }

    .cost-box {
        padding: 2rem 1.5rem;
    }

    .price {
        font-size: 3rem;
    }
}
