/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  color: #333;
  background: #fff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header / Logo */
.header {
  text-align: center;
  padding: 60px 0 20px;
}

.logo-img-wrap {
  display: inline-block;
}

.logo-img {
  width: 240px;
  height: auto;
}

.logo-sub {
  font-size: 1.1rem;
  letter-spacing: 0.6em;
  color: #333;
  margin-bottom: 4px;
}

.logo-main {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #1a1a1a;
  line-height: 1.3;
}

.logo-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 0.5em;
  color: #666;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Coming Soon */
.coming-soon {
  text-align: center;
  padding: 30px 0 40px;
}

.coming-soon h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #2e7d6f;
  text-transform: lowercase;
}

/* Stores Section */
.stores-section {
  padding: 20px 0 40px;
}

.stores-section h2 {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  margin-bottom: 30px;
  color: #333;
}

.stores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.store-card {
  text-align: center;
}

.store-card h3 {
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  color: #1a1a1a;
  font-weight: 600;
}

.store-card h3 span {
  display: block;
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
  margin-top: 2px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.2em;
}

.map-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #f5f5f5;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.store-address {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* SNS Links */
.sns-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sns-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #555;
  transition: color 0.2s;
  padding: 4px 0;
}

.sns-link:hover {
  color: #2e7d6f;
}

.sns-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Topic Section */
.topic-section {
  padding: 40px 0 60px;
}

.topic-section h2 {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.topic-box {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 20px 30px;
  min-height: 80px;
  background: #fafafa;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

.topic-news-list {
  list-style: none;
  text-align: left;
}

.topic-news-list li {
  border-bottom: 1px solid #eee;
}

.topic-news-list li:last-child {
  border-bottom: none;
}

.topic-news-list li a {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
  align-items: baseline;
}

.topic-news-list li a:hover {
  color: #2e7d6f;
}

.topic-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  color: #888;
  flex-shrink: 0;
  min-width: 85px;
}

.topic-title {
  font-size: 0.9rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #eee;
  font-size: 0.75rem;
  color: #999;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 640px) {
  .header {
    padding: 40px 0 16px;
  }

  .logo-main {
    font-size: 2rem;
  }

  .logo-sub {
    font-size: 0.9rem;
  }

  .stores-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .coming-soon h2 {
    font-size: 1.3rem;
  }
}
