@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@400;600;700&display=swap');

:root {
--primary-color: #2c5f2d;
--secondary-color: #97c1a9;
--spring-color: #ffb7c5;
--summer-color: #4a90e2;
--autumn-color: #d2691e;
--winter-color: #4169e1;
--text-dark: #2c3e50;
--text-light: #ecf0f1;
--bg-light: #f8f9fa;
--bg-white: #ffffff;
--border-color: #dfe6e9;
--shadow: 0 4px 12px rgba(0,0,0,0.1);
--shadow-hover: 0 8px 24px rgba(0,0,0,0.15);
}

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

body {
font-family: 'Noto Sans JP', sans-serif;
line-height: 1.8;
color: var(--text-dark);
background-color: var(--bg-white);
overflow-x: hidden;
}

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

.main-header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
box-shadow: var(--shadow);
position: sticky;
top: 0;
z-index: 1000;
}

.header-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
}

.logo-section {
display: flex;
align-items: center;
gap: 15px;
}

.logo-section a {
display: flex;
align-items: center;
gap: 15px;
text-decoration: none;
}

.logo-img {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
border: 3px solid var(--bg-white);
}

.logo-text {
font-size: 1.6rem;
font-weight: 700;
color: var(--text-light);
font-family: 'Noto Serif JP', serif;
}

.primary-nav ul {
display: flex;
list-style: none;
gap: 35px;
}

.nav-link {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
padding: 10px 18px;
border-radius: 8px;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
}

.nav-link:hover,
.nav-link.active {
background: rgba(255,255,255,0.2);
transform: translateY(-2px);
}

.welcome-banner {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 35px 0;
text-align: center;
}

.welcome-content {
max-width: 900px;
margin: 0 auto;
}

.welcome-text {
font-size: 1.8rem;
color: var(--text-light);
font-weight: 700;
margin-bottom: 12px;
font-family: 'Noto Serif JP', serif;
}

.welcome-subtext {
font-size: 1.1rem;
color: var(--text-light);
opacity: 0.95;
}

.hero-section {
position: relative;
height: 600px;
background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('images/1.jpg') center/cover;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}

.page-hero {
height: 400px;
}

.blog-hero {
background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('images/2.jpg') center/cover;
}

.about-hero {
background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('images/3.jpg') center/cover;
}

.contact-hero {
background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('images/4.jpg') center/cover;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.3);
}

.hero-content {
position: relative;
z-index: 2;
color: var(--text-light);
}

.hero-title {
font-size: 4rem;
font-weight: 900;
margin-bottom: 25px;
text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
font-family: 'Noto Serif JP', serif;
}

.hero-subtitle {
font-size: 1.6rem;
margin-bottom: 40px;
opacity: 0.95;
}

.hero-buttons {
display: flex;
gap: 25px;
justify-content: center;
}

.btn-primary,
.btn-secondary {
padding: 16px 40px;
font-size: 1.1rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
display: inline-block;
}

.btn-primary {
background: var(--primary-color);
color: var(--text-light);
}

.btn-primary:hover {
background: var(--secondary-color);
transform: translateY(-3px);
box-shadow: var(--shadow-hover);
}

.btn-secondary {
background: transparent;
color: var(--text-light);
border: 2px solid var(--text-light);
}

.btn-secondary:hover {
background: var(--text-light);
color: var(--primary-color);
}

.seasons-showcase {
padding: 100px 0;
background: var(--bg-light);
}

.section-title {
text-align: center;
font-size: 3rem;
margin-bottom: 60px;
color: var(--text-dark);
font-weight: 700;
font-family: 'Noto Serif JP', serif;
}

.seasons-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 40px;
}

.season-card {
background: var(--bg-white);
border-radius: 20px;
overflow: hidden;
box-shadow: var(--shadow);
transition: all 0.4s ease;
}

.season-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-hover);
}

.season-image {
position: relative;
overflow: hidden;
height: 280px;
}

.season-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}

.season-card:hover .season-image img {
transform: scale(1.1);
}

.season-content {
padding: 35px;
}

.season-icon {
font-size: 3rem;
margin-bottom: 20px;
}

.spring-card .season-icon {
color: var(--spring-color);
}

.summer-card .season-icon {
color: var(--summer-color);
}

.autumn-card .season-icon {
color: var(--autumn-color);
}

.winter-card .season-icon {
color: var(--winter-color);
}

.season-title {
font-size: 1.8rem;
margin-bottom: 18px;
color: var(--text-dark);
font-family: 'Noto Serif JP', serif;
}

.season-description {
color: #636e72;
margin-bottom: 25px;
line-height: 1.8;
}

.season-link {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
}

.season-link:hover {
gap: 15px;
color: var(--secondary-color);
}

.featured-destinations {
padding: 100px 0;
}

.destinations-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.destination-item {
position: relative;
height: 350px;
border-radius: 20px;
overflow: hidden;
cursor: pointer;
}

.destination-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}

.destination-item:hover img {
transform: scale(1.15);
}

.destination-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0,0,0,0.85));
color: var(--text-light);
padding: 40px 25px;
transform: translateY(10px);
transition: all 0.3s ease;
}

.destination-item:hover .destination-overlay {
transform: translateY(0);
}

.destination-overlay h3 {
font-size: 1.8rem;
margin-bottom: 8px;
font-family: 'Noto Serif JP', serif;
}

.travel-tips {
padding: 100px 0;
background: var(--bg-light);
}

.tips-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 35px;
}

.tip-box {
background: var(--bg-white);
padding: 40px 30px;
border-radius: 15px;
box-shadow: var(--shadow);
text-align: center;
transition: all 0.3s ease;
}

.tip-box:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-hover);
}

.tip-icon {
font-size: 3.5rem;
color: var(--primary-color);
margin-bottom: 25px;
}

.tip-box h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--text-dark);
}

.tip-box p {
color: #636e72;
line-height: 1.7;
}

.cta-section {
padding: 100px 0;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
text-align: center;
color: var(--text-light);
}

.cta-content h2 {
font-size: 3rem;
margin-bottom: 20px;
font-family: 'Noto Serif JP', serif;
}

.cta-content p {
font-size: 1.3rem;
margin-bottom: 40px;
opacity: 0.95;
}

.btn-cta {
padding: 18px 50px;
background: var(--bg-white);
color: var(--primary-color);
text-decoration: none;
border-radius: 50px;
font-weight: 700;
font-size: 1.2rem;
display: inline-block;
transition: all 0.3s ease;
}

.btn-cta:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.blog-section {
padding: 80px 0;
}

.blog-intro {
text-align: center;
max-width: 800px;
margin: 0 auto 60px;
}

.blog-intro h2 {
font-size: 2.5rem;
margin-bottom: 20px;
font-family: 'Noto Serif JP', serif;
}

.blog-intro p {
font-size: 1.15rem;
color: #636e72;
line-height: 1.8;
}

.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 40px;
}

.blog-card {
background: var(--bg-white);
border-radius: 15px;
overflow: hidden;
box-shadow: var(--shadow);
transition: all 0.3s ease;
}

.blog-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-hover);
}

.blog-image {
position: relative;
height: 250px;
overflow: hidden;
}

.blog-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
transform: scale(1.1);
}

.blog-category {
position: absolute;
top: 15px;
left: 15px;
padding: 8px 18px;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 600;
color: var(--text-light);
}

.spring-category {
background: var(--spring-color);
}

.summer-category {
background: var(--summer-color);
}

.autumn-category {
background: var(--autumn-color);
}

.winter-category {
background: var(--winter-color);
}

.all-seasons-category {
background: var(--primary-color);
}

.blog-content {
padding: 30px;
}

.blog-meta {
display: flex;
gap: 20px;
margin-bottom: 15px;
color: #636e72;
font-size: 0.9rem;
}

.blog-meta span {
display: flex;
align-items: center;
gap: 6px;
}

.blog-title {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--text-dark);
font-family: 'Noto Serif JP', serif;
line-height: 1.5;
}

.blog-excerpt {
color: #636e72;
margin-bottom: 20px;
line-height: 1.7;
}

.blog-link {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
}

.blog-link:hover {
gap: 15px;
color: var(--secondary-color);
}

.post-article {
background: var(--bg-white);
}

.post-hero {
position: relative;
height: 500px;
overflow: hidden;
}

.post-hero-image {
width: 100%;
height: 100%;
object-fit: cover;
}

.post-hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(transparent, rgba(0,0,0,0.4));
}

.post-header {
max-width: 900px;
margin: -80px auto 0;
position: relative;
z-index: 10;
background: var(--bg-white);
padding: 40px 50px;
border-radius: 15px;
box-shadow: var(--shadow-hover);
}

.post-category {
display: inline-block;
padding: 8px 18px;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 600;
color: var(--text-light);
margin-bottom: 20px;
}

.post-title {
font-size: 2.8rem;
margin-bottom: 25px;
color: var(--text-dark);
font-family: 'Noto Serif JP', serif;
line-height: 1.4;
}

.post-meta {
display: flex;
gap: 30px;
color: #636e72;
font-size: 0.95rem;
flex-wrap: wrap;
}

.post-meta span {
display: flex;
align-items: center;
gap: 8px;
}

.post-content {
max-width: 900px;
margin: 60px auto;
padding: 0 50px;
}

.content-section {
margin-bottom: 50px;
}

.content-section h2 {
font-size: 2rem;
margin-bottom: 25px;
color: var(--text-dark);
font-family: 'Noto Serif JP', serif;
padding-bottom: 15px;
border-bottom: 3px solid var(--primary-color);
}

.content-section p {
margin-bottom: 20px;
line-height: 1.9;
font-size: 1.05rem;
color: #2d3436;
}

.content-image {
width: 100%;
height: auto;
border-radius: 15px;
margin: 30px 0;
box-shadow: var(--shadow);
}

.post-navigation {
max-width: 900px;
margin: 50px auto;
padding: 0 50px;
}

.btn-back {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 30px;
background: var(--primary-color);
color: var(--text-light);
text-decoration: none;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s ease;
}

.btn-back:hover {
background: var(--secondary-color);
transform: translateX(-5px);
}

.team-section {
padding: 80px 0;
background: var(--bg-light);
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
}

.team-card {
background: var(--bg-white);
border-radius: 15px;
overflow: hidden;
box-shadow: var(--shadow);
transition: all 0.3s ease;
text-align: center;
}

.team-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-hover);
}

.team-photo {
height: 400px;
overflow: hidden;
}

.team-photo img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}

.team-card:hover .team-photo img {
transform: scale(1.1);
}

.team-info {
padding: 30px;
}

.team-info h3 {
font-size: 1.6rem;
margin-bottom: 10px;
color: var(--text-dark);
font-family: 'Noto Serif JP', serif;
}

.team-role {
color: var(--primary-color);
font-weight: 600;
margin-bottom: 15px;
font-size: 1.1rem;
}

.team-bio {
color: #636e72;
line-height: 1.7;
}

.about-mission {
padding: 80px 0;
}

.mission-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.mission-content h2 {
font-size: 2.5rem;
margin-bottom: 30px;
font-family: 'Noto Serif JP', serif;
}

.mission-text {
font-size: 1.1rem;
line-height: 1.9;
color: #2d3436;
margin-bottom: 25px;
text-align: left;
}

.values-section {
padding: 80px 0;
background: var(--bg-light);
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 35px;
}

.value-item {
background: var(--bg-white);
padding: 40px 30px;
border-radius: 15px;
text-align: center;
box-shadow: var(--shadow);
transition: all 0.3s ease;
}

.value-item:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-hover);
}

.value-icon {
font-size: 3.5rem;
color: var(--primary-color);
margin-bottom: 20px;
}

.value-item h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--text-dark);
}

.value-item p {
color: #636e72;
line-height: 1.7;
}

.contact-section {
padding: 80px 0;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 60px;
}

.contact-info h2 {
font-size: 2rem;
margin-bottom: 20px;
font-family: 'Noto Serif JP', serif;
}

.contact-intro {
margin-bottom: 35px;
line-height: 1.8;
color: #636e72;
}

.contact-details {
margin-bottom: 30px;
}

.contact-item {
display: flex;
gap: 20px;
margin-bottom: 30px;
}

.contact-icon {
font-size: 1.8rem;
color: var(--primary-color);
flex-shrink: 0;
}

.contact-text h3 {
font-size: 1.2rem;
margin-bottom: 8px;
color: var(--text-dark);
}

.contact-text p {
color: #636e72;
line-height: 1.7;
}

.contact-text a {
color: var(--primary-color);
text-decoration: none;
}

.contact-text a:hover {
text-decoration: underline;
}

.contact-hours {
font-size: 0.9rem;
color: #95a5a6;
margin-top: 5px;
}

.registration-info {
padding: 20px;
background: var(--bg-light);
border-radius: 10px;
margin-top: 20px;
}

.contact-form-container h2 {
font-size: 2rem;
margin-bottom: 30px;
font-family: 'Noto Serif JP', serif;
}

.contact-form {
background: var(--bg-light);
padding: 40px;
border-radius: 15px;
}

.form-group {
margin-bottom: 25px;
}

.form-group label {
display: block;
margin-bottom: 10px;
font-weight: 600;
color: var(--text-dark);
}

.required {
color: #e74c3c;
}

.form-input {
width: 100%;
padding: 14px 18px;
border: 2px solid var(--border-color);
border-radius: 8px;
font-size: 1rem;
font-family: 'Noto Sans JP', sans-serif;
transition: all 0.3s ease;
}

.form-input:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(44,95,45,0.1);
}

textarea.form-input {
resize: vertical;
min-height: 120px;
}

.btn-submit {
width: 100%;
padding: 16px;
background: var(--primary-color);
color: var(--text-light);
border: none;
border-radius: 8px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.btn-submit:hover {
background: var(--secondary-color);
transform: translateY(-2px);
box-shadow: var(--shadow);
}

.modal {
display: none;
position: fixed;
z-index: 2000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
}

.modal-content {
background: var(--bg-white);
margin: 10% auto;
padding: 0;
border-radius: 15px;
max-width: 500px;
box-shadow: var(--shadow-hover);
animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

.modal-header {
padding: 30px;
border-bottom: 1px solid var(--border-color);
position: relative;
}

.modal-header h2 {
margin: 0;
color: var(--text-dark);
font-family: 'Noto Serif JP', serif;
}

.modal-close {
position: absolute;
right: 20px;
top: 20px;
font-size: 2rem;
color: #95a5a6;
cursor: pointer;
transition: color 0.3s ease;
}

.modal-close:hover {
color: var(--text-dark);
}

.modal-body {
padding: 40px 30px;
text-align: center;
}

.success-icon {
font-size: 4rem;
color: #27ae60;
margin-bottom: 20px;
}

.modal-body p {
font-size: 1.1rem;
color: #636e72;
margin-bottom: 15px;
line-height: 1.7;
}

.modal-footer {
padding: 20px 30px;
border-top: 1px solid var(--border-color);
text-align: center;
}

.btn-modal {
padding: 12px 40px;
background: var(--primary-color);
color: var(--text-light);
border: none;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.btn-modal:hover {
background: var(--secondary-color);
}

.page-number {
padding: 40px 0;
text-align: center;
background: var(--bg-light);
}

.page-indicator {
font-size: 1.1rem;
color: #636e72;
font-weight: 500;
}

.main-footer {
background: linear-gradient(135deg, #2c3e50, #34495e);
color: var(--text-light);
padding: 60px 0 20px;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-col h4 {
font-size: 1.4rem;
margin-bottom: 20px;
font-family: 'Noto Serif JP', serif;
}

.footer-col p {
line-height: 1.8;
opacity: 0.9;
}

.registration-number {
margin-top: 15px;
font-weight: 600;
color: var(--secondary-color);
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 12px;
}

.footer-links a {
color: var(--text-light);
text-decoration: none;
opacity: 0.9;
transition: all 0.3s ease;
display: inline-block;
}

.footer-links a:hover {
opacity: 1;
transform: translateX(5px);
color: var(--secondary-color);
}

.footer-contact {
list-style: none;
}

.footer-contact li {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 15px;
opacity: 0.9;
}

.footer-contact i {
margin-top: 4px;
color: var(--secondary-color);
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.1);
opacity: 0.8;
}

.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--bg-white);
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
z-index: 1500;
padding: 25px 20px;
display: none;
}

.cookie-consent.show {
display: block;
animation: slideUp 0.4s ease;
}

@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-text {
margin-bottom: 20px;
}

.cookie-text h4 {
font-size: 1.3rem;
margin-bottom: 12px;
color: var(--text-dark);
}

.cookie-text p {
color: #636e72;
line-height: 1.7;
}

.cookie-text a {
color: var(--primary-color);
text-decoration: underline;
}

.cookie-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.cookie-btn {
padding: 12px 28px;
border: none;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Noto Sans JP', sans-serif;
}

.accept-all {
background: var(--primary-color);
color: var(--text-light);
}

.accept-all:hover {
background: var(--secondary-color);
transform: translateY(-2px);
}

.customize {
background: var(--bg-light);
color: var(--text-dark);
border: 2px solid var(--border-color);
}

.customize:hover {
background: var(--border-color);
}

.reject {
background: transparent;
color: #636e72;
border: 2px solid #636e72;
}

.reject:hover {
background: #636e72;
color: var(--text-light);
}

@media (max-width: 768px) {
.header-wrapper {
flex-direction: column;
gap: 20px;
}

.primary-nav ul {
flex-direction: column;
gap: 10px;
width: 100%;
}

.nav-link {
justify-content: center;
}

.hero-title {
font-size: 2.5rem;
}

.hero-subtitle {
font-size: 1.2rem;
}

.hero-buttons {
flex-direction: column;
}

.seasons-grid,
.destinations-grid,
.tips-container,
.blog-grid,
.team-grid,
.values-grid {
grid-template-columns: 1fr;
}

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

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

.post-header,
.post-content,
.post-navigation {
padding: 20px;
}

.post-title {
font-size: 2rem;
}

.cookie-buttons {
flex-direction: column;
}

.cookie-btn {
width: 100%;
}
}