@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Noto+Sans+JP:wght@400;700;900&display=swap');
:root { --primary: #007aff; --primary-dark: #005bb5; --accent: #ff4757; --bg-color: #f8f9fa; --text-dark: #2d3436; --text-light: #636e72; --card-bg: rgba(255, 255, 255, 0.95); --glass-border: rgba(255, 255, 255, 0.2); }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', 'Noto Sans JP', sans-serif; color: var(--text-dark); background: var(--bg-color); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { line-height: 1.4; letter-spacing: -0.05em; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.highlight { color: var(--primary); font-weight: 900; }
.hero { min-height: auto; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg, rgba(0, 122, 255, 0.2), rgba(0, 122, 255, 0.05)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; position: relative; padding: 40px 20px 80px; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px); }
.hero-content { position: relative; z-index: 1; max-width: 800px; background: var(--card-bg); padding: 60px 40px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 1px solid var(--glass-border); }
.badge { display: inline-block; background: var(--primary); color: white; padding: 8px 20px; border-radius: 50px; font-weight: bold; font-size: 0.95rem; margin-bottom: 25px; box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3); }
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.25rem; font-weight: bold; color: var(--text-light); margin-bottom: 40px; }
section { padding: 100px 0; }
h2 { font-size: 2.4rem; text-align: center; margin-bottom: 60px; position: relative; }
h2::after { content: ''; display: block; width: 60px; height: 4px; background: var(--primary); margin: 20px auto 0; border-radius: 2px; }
.agitation { background: #fff; }
.worry-list { list-style: none; max-width: 700px; margin: 0 auto; }
.worry-list li { background: #f8f9fa; margin-bottom: 20px; padding: 25px; border-radius: 12px; font-weight: bold; font-size: 1.15rem; border-left: 5px solid #bdc3c7; }
.agitation-text { text-align: center; font-size: 1.6rem; font-weight: 900; margin-top: 50px; color: var(--primary); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px; }
.feature-card { background: white; padding: 50px 30px; border-radius: 20px; text-align: center; box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.feature-icon { font-size: 4.5rem; margin-bottom: 25px; display: inline-block; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary-dark); }
.feature-card p { color: var(--text-light); line-height: 1.7; }
.cta-banner { background: linear-gradient(135deg, #1e3c72, #2a5298); color: white; text-align: center; padding: 120px 20px; }
.cta-banner h2 { color: white; }
.cta-banner h2::after { background: #fff; }
.cta-banner p { font-size: 1.3rem; font-weight: bold; margin-bottom: 50px; }
.faq { background: #fff; }
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item { background: var(--bg-color); border-radius: 12px; margin-bottom: 20px; overflow: hidden; padding: 20px;}
.accordion-header { width: 100%; text-align: left; background: transparent; border: none; font-size: 1.2rem; font-weight: bold; color: var(--text-dark); margin-bottom: 10px;}
.accordion-body { padding: 0 10px 10px; color: var(--text-light); }
footer { background: #2d3436; padding: 60px 0; text-align: center; color: #bdc3c7; }
@media (max-width: 768px) { h2 { font-size: 2rem; } .hero h1 { font-size: 2.2rem; } .hero-content { padding: 30px 20px; } }
