/* style.css */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

/* CSS Variables */
:root {
  --primary-color: hsl(6, 65%, 45%); /* 温かみのある朱色 */
  --primary-color-hover: hsl(6, 65%, 35%);
  --secondary-color: hsl(35, 30%, 96%); /* 薄い生成り色 */
  --text-color: hsl(210, 15%, 20%); /* チャコールグレー */
  --text-light: hsl(210, 10%, 45%);
  --bg-color: hsl(0, 0%, 100%);
  --accent-color: hsl(45, 85%, 50%); /* 差し色のゴールド・黄 */
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  
  --max-width: 1200px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.7;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.3;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background-color var(--transition-fast);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo a {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-sub {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 400;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.45)), url('assets/images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-content {
  max-width: 650px;
  animation: fadeInUp 1s ease;
}

.hero h2 {
  font-size: 42px;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  line-height: 1.4;
}

.hero p {
  font-size: 18px;
  margin-bottom: 28px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 32px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.btn:hover {
  background-color: var(--primary-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Section Common */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  color: var(--text-color);
  display: inline-block;
  padding-bottom: 12px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

/* News Section */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  gap: 24px;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background-color var(--transition-fast);
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
}

.news-item:hover {
  background-color: var(--secondary-color);
}

.news-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 180px;
}

.news-date {
  font-weight: 500;
  color: var(--primary-color);
}

.news-category {
  background-color: var(--primary-color);
  color: #fff;
  padding: 2px 8px;
  font-size: 11px;
  border-radius: 3px;
  font-weight: 500;
}

.news-category.event {
  background-color: hsl(45, 85%, 45%);
}

.news-category.info {
  background-color: hsl(200, 70%, 40%);
}

.news-title {
  flex-grow: 1;
  font-weight: 500;
}

/* About Section */
.about {
  background-color: var(--secondary-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-color);
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.stat-item {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 12px;
  color: var(--text-light);
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Shops Section */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.shop-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

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

.shop-img {
  height: 180px;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  position: relative;
  overflow: hidden;
}

.shop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.shop-category {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 8px;
}

.shop-name {
  font-size: 18px;
  margin-bottom: 12px;
}

.shop-desc {
  font-size: 14px;
  color: var(--text-light);
  flex-grow: 1;
  margin-bottom: 16px;
}

.shop-details {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 12px;
  font-size: 13px;
  color: var(--text-light);
}

.shop-url {
  margin-top: 8px;
  font-size: 13px;
}

.shop-url a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

.shop-url a:hover {
  color: var(--primary-color-hover);
  text-decoration: underline;
}


/* Access Section */
.access-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}

.map-container {
  height: 380px;
  background-color: #eee;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  text-align: center;
  padding: 20px;
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.access-info h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary-color);
  border-left: 4px solid var(--primary-color);
  padding-left: 12px;
}

.access-details {
  list-style: none;
}

.access-details li {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.access-details li:last-child {
  margin-bottom: 0;
}

.access-details span.label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 4px;
}

.access-details span.value {
  font-size: 15px;
}

/* Footer */
footer {
  background-color: var(--text-color);
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.footer-nav {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  text-align: center;
  color: #777;
  font-size: 14px;
  border-top: 1px solid #34495e;
  padding-top: 20px;
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-color);
  z-index: 101;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-image {
    order: -1;
  }
  
  .access-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  
  .menu-btn {
    display: block;
  }
  
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    gap: 0;
    padding-top: 80px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-normal);
    z-index: 100;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
    text-align: left;
  }
  
  .nav-links a {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .hero h2 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
