

.page-hero {
  background: #2C6E49;
  color: #FAF8F3;
  padding: 136px 0 56px;
}
.page-hero .section-label { color: #F4A300; }
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: #FAF8F3;
  margin-top: 10px;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-top: 14px;
  max-width: 600px;
  line-height: 1.7;
}

.about-block {
  padding: 72px 0;
  border-bottom: 1px solid #E8E4DB;
}
.about-block:last-of-type { border-bottom: none; }

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-two-col.reverse .about-text { order: 2; }
.about-two-col.reverse .about-image { order: 1; }

.about-image {
  border-radius: 12px;
  overflow: hidden;
  background: #E8E4DB;
  aspect-ratio: 4/3;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-text .section-title { margin-bottom: 12px; }
.about-text .divider { margin: 12px 0 20px; }
.about-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 12px;
}
.about-text p:last-child { margin-bottom: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.value-card {
  background: #FAF8F3;
  border: 1px solid #E8E4DB;
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-icon {
  width: 48px;
  height: 48px;
  background: #F4A300;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FAF8F3;
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h3 { font-size: 1rem; }
.value-card p { font-size: 0.88rem; color: #666; line-height: 1.6; }

.legal-main {
  padding: 80px 0 100px;
  background: #FAF8F3;
}
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1E1E1E;
}
.legal-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content p strong {
  color: #1E1E1E;
}
.legal-placeholder {
  border: 2px dashed #D4CEBC;
  border-radius: 10px;
  padding: 60px 40px;
  text-align: center;
  color: #AAA;
}
.legal-placeholder p {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .about-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-two-col.reverse .about-text { order: 1; }
  .about-two-col.reverse .about-image { order: 2; }
  .values-grid { grid-template-columns: 1fr; }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1E1E1E;
  color: #FAF8F3;
  z-index: 999;
  max-height: 100vh;
  overflow-y: auto;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 24px;
}

.cookie-banner-header {
  margin-bottom: 24px;
}

.cookie-banner-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Noto Serif JP', serif;
}

.cookie-banner-desc {
  font-size: 0.9rem;
  color: #D4D4D4;
  line-height: 1.6;
}

.cookie-link {
  color: #F4A300;
  text-decoration: underline;
}

.cookie-link:hover {
  color: #d9900a;
}

.cookie-banner-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}

.cookie-option {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #444;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #F4A300;
  margin-right: 8px;
  flex-shrink: 0;
}

.cookie-option input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-option-title {
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-option-desc {
  font-size: 0.8rem;
  color: #AAA;
  line-height: 1.4;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-banner-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.cookie-banner-accept {
  background: #F4A300;
  color: #1E1E1E;
}

.cookie-banner-accept:hover {
  background: #d9900a;
}

.cookie-banner-reject {
  background: transparent;
  border: 1px solid #888;
  color: #FAF8F3;
}

.cookie-banner-reject:hover {
  background: rgba(0, 0, 0, 0.2);
  border-color: #AAA;
}

.cookie-banner-save {
  background: transparent;
  border: 1px solid #F4A300;
  color: #F4A300;
}

.cookie-banner-save:hover {
  background: rgba(244, 163, 0, 0.1);
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    padding: 24px 16px;
  }
  
  .cookie-banner-options {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner-actions {
    justify-content: flex-start;
  }
  
  .cookie-banner-btn {
    flex: 1;
    min-width: 120px;
  }
}
