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

:root {
  --bg-color: #fcfbf9;
  /* Warm off-white */
  --text-main: #333333;
  --text-sub: #666666;
  --accent-line: #e0e0e0;
  --font-serif: 'Shippori Mincho', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --max-width: 1000px;
  --spacing-section: 120px;
  --spacing-mobile: 80px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 1000px;
  /* Limit image width to standard container size */
  width: 100%;
  /* Allow scaling down */
  height: auto;
  display: block;
}


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

.section {
  padding: var(--spacing-section) 0;
}

@media (max-width: 768px) {
  .section {
    padding: var(--spacing-mobile) 0;
  }
}

.text-center {
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header/Nav (Simple) */
header {
  padding: 30px 20px;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.95);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for readability if image is light */
  /* If image is dark, white text is fine. If mixed, we might need overlay. 
     Let's add a gradient overlay to ensure text pops but keep it subtle. */
}

/* Overlay for Hero to ensure text readability */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  color: #fff;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-serif);
}

.hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid currentColor;
  background: transparent;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.btn:hover {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.btn-primary {
  /* Inversed for non-hero sections */
  color: var(--text-main);
  border-color: var(--text-main);
}

.btn-primary:hover {
  background: var(--text-main);
  color: #fff;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 0.8rem;
  font-family: var(--font-serif);
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  color: #fff;
  z-index: 2;
  opacity: 0.8;
  animation: float 2s infinite ease-in-out;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* About Section */
.about-text {
  font-size: 1.1rem;
  line-height: 2.2;
  font-family: var(--font-serif);
}

/* Section Headings */
.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.15em;
  font-family: var(--font-serif);
}

/* Seasonal Style (Grid) */
.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  /* Responsive grid */
  gap: 40px;
}

.style-card {
  text-align: left;
}

.style-image-wrapper {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 15px;
  background-color: #f0f0f0;
}

.style-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.style-card:hover .style-image-wrapper img {
  transform: scale(1.05);
}

.style-desc {
  font-size: 0.9rem;
  color: var(--text-sub);
}

/* Store Display */
.display-image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  margin-bottom: 20px;
}

.display-caption {
  text-align: right;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-top: -40px;
  /* Overlap effect */
  margin-right: 40px;
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Alternate caption style if image is light? Making it generic for now.
   Let's keep it simple: caption below image for safety. */
.display-caption-simple {
  text-align: center;
  margin-top: 15px;
  font-family: var(--font-serif);
}

/* Brands */
.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 60px;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-sub);
}

.brand-note {
  margin-top: 30px;
  font-size: 0.8rem;
  color: #999;
  text-align: center;
}

/* Shop Info */
.info-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.info-card {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.info-dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 15px;
  font-size: 0.95rem;
}

.info-dt {
  color: var(--text-sub);
  font-weight: 500;
}

.info-dd {
  margin-bottom: 10px;
}

.map-wrapper {
  flex: 1;
  min-width: 300px;
  height: 400px;
  background: #eee;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

/* Footer */
footer {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid var(--accent-line);
}

footer .brand-logo {
  color: var(--text-main);
  margin-bottom: 40px;
  /* ロゴとコピーライトの間の余白 */
}


.copyright {
  color: #999;
  font-size: 0.8rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .brands-list {
    gap: 30px 20px;
  }

  .section-title {
    margin-bottom: 30px;
  }

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

  .info-dl {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .info-dt {
    color: var(--text-sub);
    margin-top: 15px;
    font-size: 0.85rem;
  }

  .display-caption {
    margin: 15px 0 0 0;
    text-align: center;
    color: var(--text-main);
    text-shadow: none;
  }
}