* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Yu Gothic', 'Hiragino Sans', 'Meiryo', sans-serif;
line-height: 1.6;
color: #333;
background-color: #f8faf9;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.navbar {
background: linear-gradient(135deg, #1b5e20, #2e7d2e);
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
max-width: 1200px;
margin: 0 auto;
}

.logo {
color: white;
font-size: 1.8rem;
font-weight: bold;
text-decoration: none;
}

.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-menu a {
color: white;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
padding: 0.5rem 1rem;
border-radius: 4px;
}

.nav-menu a:hover {
background-color: rgba(255,255,255,0.1);
transform: translateY(-2px);
}

.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
}

.hamburger span {
width: 25px;
height: 3px;
background: white;
margin: 3px 0;
transition: 0.3s;
}

.hero {
position: relative;
color: white;
padding: 120px 0 80px;
overflow: hidden;
background: linear-gradient(135deg, #1b5e20, #2e7d2e, #4caf50);
}

.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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}


.hero-content {
position: relative;
z-index: 2;
text-align: right;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.hero-image-section {
position: absolute;
top: 70px;
left: 10%;
width: 60%;
height: calc(100% - 70px);
z-index: 1;
}

.hero-image {
width: 100%;
height: 100%;
object-fit: contain;
object-position: center;
border-radius: 0 10px 10px 0;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
font-weight: bold;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
animation: slideInUp 1s ease;
}

.hero p {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
animation: slideInUp 1s ease 0.3s both;
}

.hero-image {
max-width: 600px;
width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
animation: slideInUp 1s ease 0.6s both;
}

.section {
padding: 80px 0;
}

.section:nth-child(even) {
background-color: #ffffff;
}

.section-title {
font-size: 2.5rem;
text-align: center;
margin-bottom: 3rem;
color: #1b5e20;
position: relative;
font-weight: bold;
}

.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, #1b5e20, #4caf50);
border-radius: 2px;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.service-item {
background: white;
padding: 2rem;
border-radius: 10px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: all 0.3s ease;
border: 1px solid #e0e0e0;
}

.service-item:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
width: 80px;
height: 80px;
margin: 0 auto 1rem;
display: block;
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.service-item h3 {
font-size: 1.3rem;
margin-bottom: 1rem;
color: #1b5e20;
font-weight: bold;
}

.service-item p {
color: #666;
line-height: 1.6;
}

.info-table {
width: 100%;
border-collapse: collapse;
margin: 2rem 0;
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-table th,
.info-table td {
padding: 1rem;
text-align: left;
border-bottom: 1px solid #e0e0e0;
}

.info-table th {
background-color: #1b5e20;
color: white;
font-weight: bold;
width: 200px;
}

.info-table td {
background-color: #fff;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
border-bottom: none;
}

.store-card {
background: white;
padding: 2rem;
border-radius: 10px;
margin-bottom: 2rem;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.store-card h3 {
color: #1b5e20;
font-size: 1.8rem;
margin-bottom: 1rem;
font-weight: bold;
}

.store-intro {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 2rem;
color: #555;
}

.store-details h4 {
color: #1b5e20;
font-size: 1.2rem;
margin: 2rem 0 1rem;
font-weight: bold;
}

.pdf-button {
background: linear-gradient(135deg, #1b5e20, #2e7d2e);
color: white;
border: none;
padding: 1rem 2rem;
font-size: 1.1rem;
border-radius: 6px;
cursor: pointer;
transition: all 0.3s ease;
margin-top: 2rem;
font-weight: bold;
}

.pdf-button:hover {
background: linear-gradient(135deg, #2e7d2e, #4caf50);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.legal-info {
background: #f8f9fa;
padding: 2rem;
border-radius: 10px;
margin-top: 2rem;
border-left: 4px solid #1b5e20;
}

.legal-info h3 {
color: #1b5e20;
margin-bottom: 1rem;
font-weight: bold;
}

.news-list {
display: grid;
gap: 1.5rem;
}

.news-item {
background: white;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
border-left: 4px solid #1b5e20;
transition: all 0.3s ease;
}

.news-item:hover {
transform: translateX(5px);
box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.news-date {
color: #1b5e20;
font-weight: bold;
font-size: 0.9rem;
}

.news-title {
font-size: 1.2rem;
font-weight: bold;
margin: 0.5rem 0;
color: #333;
}

.news-content {
color: #666;
line-height: 1.6;
}

.recruit-content {
text-align: center;
padding: 2rem;
background: white;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.recruit-content p {
font-size: 1.1rem;
margin-bottom: 1rem;
color: #555;
}

.contact-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.contact-item {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-item h3 {
color: #1b5e20;
font-size: 1.3rem;
margin-bottom: 1rem;
font-weight: bold;
}

.contact-item p {
margin-bottom: 0.5rem;
color: #555;
}

footer {
background: #1b5e20;
color: white;
text-align: center;
padding: 2rem 0;
}

@keyframes slideInUp {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

.fade-in {
animation: fadeIn 0.6s ease;
}

@media (max-width: 768px) {
.hamburger {
display: flex;
}

.nav-menu {
position: fixed;
left: -100%;
top: 70px;
flex-direction: column;
background-color: #1b5e20;
width: 100%;
text-align: center;
transition: 0.3s;
box-shadow: 0 10px 27px rgba(0,0,0,0.05);
padding: 2rem 0;
}

.nav-menu.active {
left: 0;
}

.nav-menu li {
margin: 1rem 0;
}

.hero h2 {
font-size: 2rem;
}

.hero p {
font-size: 1rem;
}

.section {
padding: 50px 0;
}

.section-title {
font-size: 2rem;
}

.services-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}

.info-table th {
width: auto;
}

.info-table th,
.info-table td {
padding: 0.8rem;
font-size: 0.9rem;
}

.contact-info {
grid-template-columns: 1fr;
}

.nav-container {
padding: 1rem;
}
}

@media (max-width: 480px) {
.hero {
padding: 100px 0 60px;
}

.hero h2 {
font-size: 1.5rem;
}

.section {
padding: 40px 0;
}

.section-title {
font-size: 1.8rem;
}

.service-item,
.store-card,
.contact-item {
padding: 1.5rem;
}

.container {
padding: 0 15px;
}
}