*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Hiragino Sans','Hiragino Kaku Gothic ProN','Noto Sans JP',Meiryo,sans-serif;line-height:1.8;color:#333;background:#fff;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:#ff7f32;text-decoration:none;transition:color .3s ease}
a:hover,a:focus{color:#e66b1f;text-decoration:underline}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}
:root{--primary:#ff7f32;--primary-dark:#e66b1f;--secondary:#4caf50;--secondary-dark:#388e3c;--accent:#2196f3;--bg-light:#fff8f3;--text:#333;--text-light:#64748b;--border:#ffe4d1;--shadow:0 4px 6px rgba(0,0,0,.1);--shadow-lg:0 10px 15px rgba(0,0,0,.1)}
#header{background:#fff;box-shadow:var(--shadow);position:sticky;top:0;z-index:1000;animation:slideDown .5s ease}
@keyframes slideDown{from{transform:translateY(-100%)}to{transform:translateY(0)}}
.header-container{max-width:1200px;margin:0 auto;padding:1rem 2rem;display:flex;justify-content:space-between;align-items:center}
.logo{display:flex;align-items:center;gap:1rem}
.logo h1{font-size:1.5rem;color:var(--primary);font-weight:700}
.nav-menu{display:flex;gap:2rem;align-items:center}
.nav-menu a{color:var(--text);font-weight:500;padding:.5rem 1rem;border-radius:4px;transition:all .3s ease}
.nav-menu a:hover,.nav-menu a:focus{background:var(--bg-light);color:var(--primary);text-decoration:none}
.menu-toggle{display:none;flex-direction:column;gap:4px;padding:.5rem}
.menu-toggle span{display:block;width:25px;height:3px;background:var(--primary);border-radius:2px;transition:all .3s ease}
.hero{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;padding:5rem 2rem;max-width:1200px;margin:0 auto;min-height:500px}
.hero-content{animation:fadeInLeft 1s ease}
@keyframes fadeInLeft{from{opacity:0;transform:translateX(-50px)}to{opacity:1;transform:translateX(0)}}
.hero-title{font-size:3rem;line-height:1.2;color:var(--primary);margin-bottom:1.5rem;font-weight:800}
.hero-text{font-size:1.1rem;color:var(--text-light);margin-bottom:2rem}
.hero-btn{display:inline-block;padding:1rem 2.5rem;background:linear-gradient(135deg,var(--primary),var(--primary-dark));color:#fff;border-radius:50px;font-weight:600;font-size:1.1rem;box-shadow:var(--shadow-lg);transition:all .3s ease}
.hero-btn:hover,.hero-btn:focus{transform:translateY(-3px);box-shadow:0 15px 25px rgba(255,127,50,.3);text-decoration:none}
.hero-image{animation:fadeInRight 1s ease}
.hero-image img{border-radius:16px;box-shadow:var(--shadow-lg);width:100%;object-fit:cover}
@keyframes fadeInRight{from{opacity:0;transform:translateX(50px)}to{opacity:1;transform:translateX(0)}}
.section{padding:5rem 2rem}
.container{max-width:1200px;margin:0 auto}
.section-title{font-size:2.5rem;text-align:center;color:var(--primary);margin-bottom:1rem;font-weight:700;position:relative;padding-bottom:1rem}
.section-title::after{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:80px;height:4px;background:linear-gradient(90deg,var(--primary),var(--secondary));border-radius:2px}
.section-subtitle{text-align:center;color:var(--text-light);margin-bottom:3rem;font-size:1.1rem}
.bg-light{background:var(--bg-light)}
.service-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;margin-top:3rem}
.service-card{background:#fff;padding:2rem;border-radius:12px;box-shadow:var(--shadow);transition:all .3s ease;border:2px solid transparent}
.service-card:hover{transform:translateY(-10px);box-shadow:var(--shadow-lg);border-color:var(--primary)}
.service-icon{width:80px;height:80px;margin:0 auto 1.5rem;background:linear-gradient(135deg,var(--primary),#ffa366);border-radius:50%;display:flex;align-items:center;justify-content:center;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.05)}}
.service-icon .icon-img{width:50px;height:50px;object-fit:contain}
.service-card h3{font-size:1.3rem;color:var(--primary);margin-bottom:1rem;text-align:center;font-weight:600}
.service-card p{color:var(--text-light);text-align:center}
.company-info,.store-info{margin-top:2rem}
.info-table{width:100%;border-collapse:collapse;background:#fff;border-radius:8px;overflow:hidden;box-shadow:var(--shadow)}
.info-table th,.info-table td{padding:1rem 1.5rem;text-align:left;border-bottom:1px solid var(--border)}
.info-table th{background:linear-gradient(135deg,var(--primary),var(--primary-dark));color:#fff;font-weight:600;width:30%}
.info-table tr:last-child td,.info-table tr:last-child th{border-bottom:none}
.info-table a{color:var(--primary);font-weight:600}
.store-card{background:#fff;border-radius:16px;box-shadow:var(--shadow-lg);overflow:hidden;margin-bottom:2rem;animation:fadeIn 1s ease}
@keyframes fadeIn{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.store-header{display:flex;justify-content:space-between;align-items:center;padding:2rem;background:linear-gradient(135deg,var(--primary),var(--primary-dark));color:#fff;flex-wrap:wrap;gap:1rem}
.store-header h3{font-size:2rem;margin:0}
.pdf-btn{display:inline-block;padding:.8rem 2rem;background:#fff;color:var(--primary);border-radius:50px;font-weight:600;box-shadow:var(--shadow);transition:all .3s ease}
.pdf-btn:hover,.pdf-btn:focus{transform:scale(1.05);box-shadow:var(--shadow-lg);text-decoration:none}
.store-image{width:100%;overflow:hidden;display:flex;justify-content:center;background:var(--bg-light)}
.store-image img{width:100%;height:auto;object-fit:contain}
.store-info,.store-legal{padding:2rem}
.store-info h4,.store-legal h4{font-size:1.5rem;color:var(--primary);margin:2rem 0 1rem;padding-bottom:.5rem;border-bottom:2px solid var(--border);font-weight:600}
.info-text{color:var(--text);line-height:1.8;margin-bottom:1rem}
.insurance-list{margin-top:1rem}
.insurance-list li{padding:.5rem 0 .5rem 1.5rem;position:relative;color:var(--text)}
.insurance-list li::before{content:'✓';position:absolute;left:0;color:var(--secondary);font-weight:700}
.hours-table th{background:var(--bg-light);color:var(--text);font-weight:600}
.news-list{display:grid;gap:1.5rem}
.news-item{background:#fff;padding:1.5rem;border-radius:8px;box-shadow:var(--shadow);border-left:4px solid var(--primary);transition:all .3s ease}
.news-item:hover{transform:translateX(5px);box-shadow:var(--shadow-lg)}
.news-date{color:var(--text-light);font-size:.9rem;font-weight:600;margin-bottom:.5rem}
.news-title{font-size:1.3rem;color:var(--primary);font-weight:600;margin-bottom:.8rem}
.news-content{color:var(--text);line-height:1.8}
.recruit-content{text-align:center;padding:3rem 0}
.recruit-text{font-size:1.2rem;color:var(--text);margin-bottom:1rem}
.contact-info{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;margin-bottom:3rem}
.contact-card{background:#fff;padding:2rem;border-radius:12px;box-shadow:var(--shadow);text-align:center;transition:all .3s ease}
.contact-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg)}
.contact-card h3{font-size:1.1rem;color:var(--primary);margin-bottom:1rem;font-weight:600}
.contact-tel a,.contact-fax,.contact-email a{font-size:1.2rem;font-weight:700;color:var(--primary);display:block;margin-bottom:.5rem}
.contact-hours{color:var(--text-light);font-size:.85rem}
.map-container{background:#fff;padding:2rem;border-radius:12px;box-shadow:var(--shadow)}
.map-container h3{font-size:1.3rem;color:var(--primary);margin-bottom:1rem;font-weight:600}
.address{font-size:1rem;color:var(--text);margin-bottom:1.5rem}
.map-frame{border-radius:8px;overflow:hidden;box-shadow:var(--shadow)}
footer{background:linear-gradient(135deg,#2d2d2d,#424242);color:#fff;padding:3rem 2rem 1rem}
.footer-container{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:3rem;margin-bottom:2rem}
.footer-logo h2{font-size:1.8rem;margin-bottom:1rem;color:#fff}
.footer-logo p{color:#cbd5e1;line-height:1.8}
.footer-nav ul{display:grid;grid-template-columns:repeat(2,1fr);gap:.8rem}
.footer-nav a{color:#cbd5e1;transition:color .3s ease}
.footer-nav a:hover,.footer-nav a:focus{color:var(--primary);text-decoration:none}
.footer-bottom{text-align:center;padding-top:2rem;border-top:1px solid rgba(255,255,255,.1);color:#cbd5e1}
#page-top{position:fixed;bottom:30px;right:30px;width:60px;height:60px;background:linear-gradient(135deg,var(--primary),var(--primary-dark));color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem;box-shadow:var(--shadow-lg);opacity:0;visibility:hidden;transition:all .3s ease;z-index:999}
#page-top.show{opacity:1;visibility:visible}
#page-top:hover,#page-top:focus{transform:scale(1.1);box-shadow:0 15px 30px rgba(255,127,50,.4)}
@media(max-width:768px){
.header-container{padding:1rem}
.logo h1{font-size:1.2rem}
.menu-toggle{display:flex}
.nav-menu{position:fixed;top:70px;left:0;right:0;background:#fff;flex-direction:column;gap:0;padding:1rem 0;box-shadow:var(--shadow-lg);max-height:0;overflow:hidden;transition:max-height .3s ease}
.nav-menu.active{max-height:500px}
.nav-menu li{width:100%;text-align:center;border-bottom:1px solid var(--border)}
.nav-menu a{display:block;padding:1rem;width:100%}
.hero{grid-template-columns:1fr;padding:3rem 1rem;gap:2rem}
.hero-title{font-size:2rem}
.hero-text{font-size:1rem}
.section{padding:3rem 1rem}
.section-title{font-size:1.8rem}
.section-subtitle{font-size:1rem}
.service-grid{grid-template-columns:1fr;gap:1.5rem}
.info-table th{width:35%;font-size:.9rem;padding:.8rem}
.info-table td{font-size:.9rem;padding:.8rem}
.store-header{flex-direction:column;text-align:center}
.store-header h3{font-size:1.5rem}
.footer-container{grid-template-columns:1fr;gap:2rem}
.footer-nav ul{grid-template-columns:1fr}
.contact-info{grid-template-columns:1fr}
#page-top{width:50px;height:50px;bottom:20px;right:20px;font-size:1.2rem}
}
@media(max-width:480px){
.hero-title{font-size:1.5rem}
.section-title{font-size:1.5rem}
.info-table{font-size:.85rem}
.info-table th,.info-table td{padding:.6rem}
}
