@charset "UTF-8";

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  text-decoration: none;
}

.section-title {
  font-family: 'Lora', serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo-img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
  position: relative;
  font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #e70012;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e70012;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-instagram-icon {
  color: #333;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}

.nav-instagram-icon:hover {
  color: #e70012;
  background: rgba(231, 0, 18, 0.1);
  transform: scale(1.1);
}

.nav-instagram-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ヒーロー */
.hero {
  margin-top: 70px;
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-family: 'Lora', serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 3rem;
  color: #e70012;
}

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

.news-section {
  padding: 60px 0;
  background: #fff;
}

.news-section .section-header {
  margin-bottom: 40px;
}

.news-section .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #2c3e50;
}

.news-section .section-subtitle {
  font-size: 1rem;
  color: #7f8c8d;
}

.news-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  border-left: 3px solid #e70012;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.news-date {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #e70012;
  color: white;
  border-radius: 6px;
  padding: 4px 8px;
  width: fit-content;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 0.8rem;
}

.news-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-excerpt {
  color: #333;
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 1rem;
  white-space: normal;
  overflow: visible;
  display: block;
}

.news-cta {
  text-align: center;
  margin-top: 40px;
}

/* セクションスタイル */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
}
/* ニュース画像サムネイル */
.news-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}
.news-image img:hover {
  transform: scale(1.05);
}

/* 複数画像を横並びサムネイルで表示 */
.news-image-group {
  display: flex;
  gap: 12px;
  margin-bottom: 0.5em;
}
.news-image-group img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}
.news-image-group img:hover {
  transform: scale(1.05);
}

/* モーダル全体 */
#news-image-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
}
#news-image-modal .modal-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: transparent;
}
#news-image-modal .modal-content {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 1.5em 1.5em 1em 1.5em;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#news-image-modal img#modal-news-img {
  max-width: 70vw;
  max-height: 60vh;
  border-radius: 8px;
  margin-bottom: 1em;
}
#news-image-modal .modal-close {
  position: absolute;
  top: 0.5em;
  right: 0.7em;
  background: none;
  border: none;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  line-height: 1;
}

/* フッター */
.footer {
  background: #e70012;
  padding: 20px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    gap: 20px;
  }

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

  .nav-right {
    gap: 15px;
  }

  .instagram-icon {
    padding: 6px;
  }

  .hero-title {
    font-size: 2.2rem;
  }
  .news-section {
    padding: 40px 0;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .news-card {
    padding: 15px;
  }
}
