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

:root {
--primary-blue: #2563eb;
--secondary-blue: #3b82f6;
--light-blue: #eff6ff;
--dark-blue: #1e40af;
--accent-blue: #60a5fa;
--white: #ffffff;
--gray-light: #f8fafc;
--gray-medium: #64748b;
--gray-dark: #334155;
--text-primary: #1e293b;
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Yu Gothic', '游ゴシック', 'Meiryo', 'メイリオ', sans-serif;
line-height: 1.7;
color: var(--text-primary);
background: var(--white);
}

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

header {
position: fixed;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
box-shadow: var(--shadow);
transition: all 0.3s ease;
}

.navbar {
padding: 1rem 0;
}

.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.nav-logo h1 {
color: var(--primary-blue);
font-size: 1.5rem;
font-weight: 700;
}

.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-menu a {
text-decoration: none;
color: var(--text-primary);
font-weight: 500;
padding: 0.5rem 1rem;
border-radius: 6px;
transition: all 0.3s ease;
position: relative;
}

.nav-menu a:hover {
color: var(--primary-blue);
background: var(--light-blue);
}

.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
}

.hamburger span {
width: 25px;
height: 3px;
background: var(--primary-blue);
margin: 3px 0;
transition: 0.3s;
}

.hero {
margin-top: 80px;
background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
padding: 6rem 0;
text-align: center;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dbeafe" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
opacity: 0.3;
}

.hero-content {
position: relative;
z-index: 1;
max-width: 800px;
margin: 0 auto;
padding: 0 20px;
}

.hero h2 {
font-size: 3rem;
font-weight: 700;
color: var(--primary-blue);
margin-bottom: 1rem;
animation: fadeInUp 1s ease;
}

.hero p {
font-size: 1.25rem;
color: var(--gray-dark);
margin-bottom: 2rem;
animation: fadeInUp 1s ease 0.2s both;
}

.hero-image {
max-width: 600px;
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: var(--shadow-lg);
animation: fadeInUp 1s ease 0.4s both;
}

section {
padding: 5rem 0;
}

section h2 {
font-size: 2.5rem;
text-align: center;
color: var(--primary-blue);
margin-bottom: 3rem;
position: relative;
}

section h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 4px;
background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
border-radius: 2px;
}

.services {
background: var(--gray-light);
}

.service-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
}

.service-item {
background: var(--white);
padding: 2rem;
border-radius: 12px;
text-align: center;
box-shadow: var(--shadow);
transition: all 0.3s ease;
border: 2px solid transparent;
}

.service-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
border-color: var(--accent-blue);
}

.service-item img {
width: 80px;
height: 80px;
margin-bottom: 1rem;
filter: drop-shadow(0 4px 6px rgba(37, 99, 235, 0.2));
}

.service-item h3 {
font-size: 1.25rem;
color: var(--primary-blue);
margin-bottom: 1rem;
}

.company-table,
.store-table,
.legal-table {
width: 100%;
border-collapse: collapse;
margin: 2rem 0;
background: var(--white);
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow);
}

.company-table th,
.store-table th,
.legal-table th {
background: var(--primary-blue);
color: var(--white);
padding: 1rem;
text-align: left;
font-weight: 600;
width: 200px;
}

.company-table td,
.store-table td,
.legal-table td {
padding: 1rem;
border-bottom: 1px solid #e2e8f0;
}

.company-table tr:last-child td,
.store-table tr:last-child td,
.legal-table tr:last-child td {
border-bottom: none;
}

.stores {
background: var(--light-blue);
}

.store-card {
background: var(--white);
border-radius: 12px;
padding: 2rem;
box-shadow: var(--shadow);
margin-bottom: 3rem;
}

.store-card h3 {
color: var(--primary-blue);
font-size: 1.75rem;
margin-bottom: 1rem;
text-align: center;
}

.store-description {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 2rem;
padding: 1.5rem;
background: var(--light-blue);
border-radius: 8px;
border-left: 4px solid var(--primary-blue);
text-align: center;
}

.hours {
display: grid;
gap: 0.25rem;
}

.hours div {
padding: 0.25rem 0;
}

.pdf-button {
background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
color: var(--white);
border: none;
padding: 1rem 2rem;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: var(--shadow);
margin: 2rem auto;
display: block;
}

.pdf-button:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

.legal-info {
margin-top: 3rem;
padding: 2rem;
background: var(--gray-light);
border-radius: 12px;
border: 2px solid var(--accent-blue);
}

.legal-info h3 {
color: var(--primary-blue);
font-size: 1.5rem;
margin-bottom: 1rem;
text-align: center;
}

.news-list {
display: grid;
gap: 1.5rem;
}

.news-item {
background: var(--white);
padding: 1.5rem;
border-radius: 8px;
box-shadow: var(--shadow);
border-left: 4px solid var(--primary-blue);
transition: all 0.3s ease;
}

.news-item:hover {
transform: translateX(5px);
box-shadow: var(--shadow-lg);
}

.news-date {
color: var(--gray-medium);
font-size: 0.9rem;
margin-bottom: 0.5rem;
}

.news-title {
color: var(--primary-blue);
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.5rem;
}

.news-content {
color: var(--text-primary);
line-height: 1.6;
}

.recruit {
background: var(--gray-light);
text-align: center;
}

.recruit p {
font-size: 1.1rem;
color: var(--gray-medium);
}

.contact-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.contact-item {
background: var(--white);
padding: 2rem;
border-radius: 12px;
text-align: center;
box-shadow: var(--shadow);
transition: all 0.3s ease;
}

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

.contact-item img {
width: 60px;
height: 60px;
margin-bottom: 1rem;
}

.contact-item h3 {
color: var(--primary-blue);
font-size: 1.25rem;
margin-bottom: 1rem;
}

.contact-item p {
color: var(--text-primary);
font-size: 1.1rem;
line-height: 1.6;
}

footer {
background: var(--primary-blue);
color: var(--white);
padding: 2rem 0;
text-align: center;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

.fade-in {
animation: fadeIn 0.6s ease forwards;
}

@media (max-width: 1024px) and (min-width: 769px) {
.service-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.nav-menu {
position: fixed;
left: -100%;
top: 70px;
flex-direction: column;
background: var(--white);
width: 100%;
text-align: center;
transition: 0.3s;
box-shadow: var(--shadow);
padding: 2rem 0;
}

.nav-menu.active {
left: 0;
}

.hamburger {
display: flex;
}

.hamburger.active span:nth-child(2) {
opacity: 0;
}

.hamburger.active span:nth-child(1) {
transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(3) {
transform: translateY(-9px) rotate(-45deg);
}

.hero h2 {
font-size: 2rem;
}

.hero p {
font-size: 1rem;
}

section h2 {
font-size: 2rem;
}

.service-grid {
grid-template-columns: 1fr;
}

.contact-info {
grid-template-columns: 1fr;
}

.company-table th,
.store-table th,
.legal-table th {
width: 120px;
font-size: 0.9rem;
padding: 0.75rem;
}

.company-table td,
.store-table td,
.legal-table td {
padding: 0.75rem;
font-size: 0.9rem;
}

.store-card {
padding: 1rem;
}

.hero {
padding: 4rem 0;
}

section {
padding: 3rem 0;
}
}