/* 行政書士法人サポートオフィス - スタイルシート */

:root {
    --primary-color: #1a5f4a;
    --primary-light: #2a7f6a;
    --secondary-color: #1a3a5c;
    --accent-color: #d4a574;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.btn-primary { background: var(--primary-color); color: white; }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-secondary { background: white; color: var(--primary-color); border: 2px solid var(--primary-color); }
.btn-secondary:hover { background: var(--primary-color); color: white; }
.btn-line { background: #06C755; color: white; }

.section-title { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 15px; color: var(--text-color); }
.section-subtitle { text-align: center; color: var(--text-light); margin-bottom: 50px; }

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    box-shadow: var(--shadow);
}

nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 25px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-color); text-decoration: none; }
.nav-links a:hover { color: var(--primary-color); }
.btn-nav { background: var(--primary-color); color: white !important; padding: 10px 25px; border-radius: 5px; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 25px; height: 2px; background: var(--text-color); }

/* Hero */
.hero { padding: 120px 0 80px; background: var(--bg-light); }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero-sub { color: var(--primary-color); font-weight: 600; margin-bottom: 15px; }
.hero h1 { font-size: 2.8rem; font-weight: 700; margin-bottom: 20px; line-height: 1.3; }
.hero-desc { font-size: 1.1rem; color: var(--text-light); margin-bottom: 30px; }
.hero-cta { display: flex; gap: 15px; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 30px; }
.trust-item { text-align: center; }
.trust-number { display: block; font-size: 2rem; font-weight: 700; color: var(--primary-color); }
.trust-label { font-size: 0.85rem; color: var(--text-light); }
.hero-image img { width: 100%; border-radius: 10px; box-shadow: var(--shadow); }

/* Services */
.services { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.service-card { background: var(--bg-light); padding: 35px 25px; border-radius: 10px; text-align: center; transition: var(--transition); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-icon { font-size: 2.5rem; margin-bottom: 15px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--primary-color); }
.service-card p { font-size: 0.9rem; color: var(--text-light); }

/* Features */
.features { padding: 100px 0; background: var(--secondary-color); color: white; }
.features .section-title, .features .section-subtitle { color: white; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature-card { background: rgba(255, 255, 255, 0.1); padding: 40px 30px; border-radius: 10px; }
.feature-number { font-size: 2.5rem; font-weight: 700; color: var(--accent-color); margin-bottom: 15px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 15px; }
.feature-card p { opacity: 0.9; }

/* Profile */
.profile { padding: 100px 0; background: var(--bg-light); }
.profile-content { display: grid; grid-template-columns: 300px 1fr; gap: 50px; align-items: start; max-width: 900px; margin: 0 auto; }
.profile-image img { width: 100%; border-radius: 10px; box-shadow: var(--shadow); }
.profile-info h3 { font-size: 1.5rem; color: var(--primary-color); margin-bottom: 15px; }
.profile-credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; }
.profile-credentials span { background: var(--bg-color); padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; }
.profile-career, .profile-message { margin-bottom: 25px; }
.profile-career h4, .profile-message h4 { font-size: 1rem; color: var(--primary-color); margin-bottom: 10px; }
.profile-career p, .profile-message p { color: var(--text-light); }

/* Price */
.price { padding: 100px 0; }
.price-table { overflow-x: auto; margin-bottom: 30px; }
.price-table table { width: 100%; border-collapse: collapse; background: white; box-shadow: var(--shadow); border-radius: 10px; overflow: hidden; }
.price-table th, .price-table td { padding: 20px; text-align: left; border-bottom: 1px solid #eee; }
.price-table th { background: var(--primary-color); color: white; }
.price-table tr:hover { background: var(--bg-light); }
.price-note { text-align: center; color: var(--text-light); font-size: 0.9rem; }

/* Flow */
.flow { padding: 100px 0; background: var(--bg-light); }
.flow-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.flow-step { background: white; padding: 30px 20px; border-radius: 10px; text-align: center; box-shadow: var(--shadow); }
.step-number { width: 50px; height: 50px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; margin: 0 auto 15px; }
.flow-step h3 { font-size: 1rem; margin-bottom: 10px; }
.flow-step p { font-size: 0.85rem; color: var(--text-light); }

/* Voices */
.voices { padding: 100px 0; }
.voices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.voice-card { background: var(--bg-light); padding: 30px; border-radius: 10px; }
.voice-tag { display: inline-block; background: var(--primary-color); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; margin-bottom: 15px; }
.voice-text { color: var(--text-light); margin-bottom: 15px; font-style: italic; }
.voice-author { font-size: 0.9rem; color: var(--text-color); }

/* FAQ */
.faq { padding: 100px 0; background: var(--bg-light); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: white; margin-bottom: 15px; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; cursor: pointer; font-weight: 600; }
.faq-question .icon { color: var(--primary-color); transition: var(--transition); }
.faq-item.active .faq-question .icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-content { padding: 0 25px 25px; color: var(--text-light); }

/* Access */
.access { padding: 100px 0; }
.access-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.info-table { width: 100%; }
.info-table th, .info-table td { padding: 15px; text-align: left; border-bottom: 1px solid #eee; }
.info-table th { width: 30%; background: var(--bg-light); font-weight: 600; }
.map { background: #ddd; border-radius: 10px; min-height: 350px; display: flex; align-items: center; justify-content: center; color: var(--text-light); }

/* Contact */
.contact { padding: 100px 0; background: var(--primary-color); color: white; }
.contact .section-title, .contact .section-subtitle { color: white; }
.contact-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }
.contact-method { background: rgba(255, 255, 255, 0.1); padding: 40px; border-radius: 10px; text-align: center; }
.contact-method .icon { font-size: 3rem; margin-bottom: 20px; }
.contact-method h3 { margin-bottom: 15px; }
.phone-number { font-size: 1.5rem; font-weight: 700; }
.contact-method p { margin-bottom: 10px; opacity: 0.9; }

/* Footer */
footer { background: #333; color: white; padding: 60px 0 30px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-section h3 { font-size: 1.1rem; margin-bottom: 15px; color: var(--accent-color); }
.footer-section p { color: #aaa; font-size: 0.9rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #aaa; text-decoration: none; font-size: 0.9rem; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom p { color: #666; font-size: 0.85rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; box-shadow: var(--shadow); }
    .nav-links.active { display: flex; }
    .menu-toggle { display: flex; }
    .hero-content, .profile-content, .access-content { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .hero-cta { flex-direction: column; }
    .hero-trust { justify-content: center; }
}
