:root {
  --primary: #0b7a5d;
  --accent: #f86b40;
  --bg: #ffffff;
  --card: #ffffff;
  --text: #1e2a23;
  --border: #d9e4dc;
  --hover: #0a6b52;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-hover: rgba(0, 0, 0, 0.12);
}

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

body {
  font-family: "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Header */
.main-header {
  background: #fff;
  color: var(--text);
  padding: 16px 18px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  padding: 12px 18px;
}

.nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.logo {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--primary);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
  font-weight: 500;
}

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

.header-search {
  flex: 1;
  max-width: 500px;
}

.header-search-form {
  display: flex;
  gap: 0;
  width: 100%;
  background: #f5f5f5;
  border-radius: 25px;
  overflow: hidden;
}

.header-search-input {
  flex: 1;
  padding: 10px 20px;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  outline: none;
}

.header-search-input::placeholder {
  color: #999;
}

.header-search-button {
  padding: 10px 24px;
  background: #0071e3;
  color: #fff;
  border: none;
  border-radius: 0 25px 25px 0;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.header-search-button:hover {
  background: #005bb5;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1920&q=80') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 32px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-search-form {
  display: flex;
  gap: 0;
  max-width: 700px;
  margin: 0 auto 16px;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-search-input {
  flex: 1;
  padding: 18px 24px;
  border: none;
  font-size: 1rem;
  outline: none;
}

.hero-search-input::placeholder {
  color: #999;
}

.hero-search-button {
  padding: 18px 40px;
  background: #0071e3;
  color: #fff;
  border: none;
  border-radius: 0 50px 50px 0;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.hero-search-button:hover {
  background: #005bb5;
}

.hero-subtext {
  font-size: 0.95rem;
  opacity: 0.9;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Search Bar */
.search-bar {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--card);
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: 12px;
}

.search-form {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 8px;
  align-items: end;
}

.search-form input,
.search-form select {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  width: 100%;
}

.search-form button {
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  font-size: 0.9rem;
}

.search-form button:hover {
  background: #e55a2e;
}

.search-quick-buttons {
  margin-top: 8px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.search-quick-buttons button {
  padding: 6px 12px;
  background: #f5f5f5;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background 0.2s;
}

.search-quick-buttons button:hover {
  background: #e8e8e8;
}

/* Container */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  margin: 60px auto 0;
  padding: 0 18px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section.event-block {
  padding: 0 18px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  font-weight: 700;
  text-align: center;
}

/* Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.related-events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .related-events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .related-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .related-events-grid {
    grid-template-columns: 1fr;
  }
}

/* Card Carousel */
.card-carousel-wrapper {
  position: relative;
  margin-top: 20px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  width: 100%;
}

.card-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.card-carousel .card {
  flex: 0 0 270px;
  width: 270px;
  min-width: 270px;
  max-width: 270px;
  scroll-snap-align: start;
}

.card-carousel::-webkit-scrollbar {
  display: none;
}

/* カルーセルの青い矢印ボタンは非表示 */
.carousel-arrow {
  display: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0071e3;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: all 0.2s;
  font-weight: 300;
}

.carousel-arrow:hover {
  background: #005bb5;
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow-right {
  right: 0;
}

.carousel-arrow-left {
  left: -20px;
}

.card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  height: 100%;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.card.highlighted {
  border: 2px solid var(--accent);
  box-shadow: 0 16px 32px rgba(248, 107, 64, 0.3);
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

.card-favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: all 0.2s;
  z-index: 2;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.card-favorite:hover {
  background: #fff;
  color: #e74c3c;
  transform: scale(1.05);
}

.card-favorite.active {
  color: #e74c3c;
}

.card-favorite.active svg {
  fill: currentColor;
}

.card-favorite svg {
  width: 18px;
  height: 18px;
}

.card-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-badges-rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.card-type {
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 2px;
  text-align: center;
}

.card-title {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #333;
  margin-bottom: 4px;
  text-align: center;
  width: 100%;
  min-height: 2.66rem; /* 2行分の高さを確保 (0.95rem * 1.4 * 2) */
}

.card-duration {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 6px;
  text-align: center;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  margin: 0;
}

.rating-value {
  font-weight: 600;
  color: #333;
}

.rating-star {
  color: #f5a623;
  font-size: 0.9rem;
}

.rating-count {
  color: #666;
  font-size: 0.85rem;
}

.card-location {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 8px;
  text-align: left;
  width: 100%;
  min-height: 1.2rem; /* 場所の高さを統一 */
  line-height: 1.2rem;
}

.card-price {
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: auto;
  text-align: right;
  width: 100%;
}

.card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  background: #eaf7f1;
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
}

.badge.recommended {
  background: #fff3e0;
  color: #e65100;
}

.badge.new {
  background: #e3f2fd;
  color: #1565c0;
}

.badge.external-link {
  background: #f3e5f5;
  color: #7b1fa2;
}

.badge.upcoming {
  background: #e8f5e9;
  color: #2e7d32;
}

.card-link {
  text-decoration: none;
  color: inherit;
}

/* Map */
.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 14px;
  overflow: hidden;
  margin: 20px 0;
  background: #e8f5e9;
  border: 1px solid var(--border);
}

.map-container .map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c7a72;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.map-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Filters */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
  align-items: center;
}

.filters select,
.filters input {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
}

.filter-reset {
  padding: 10px 16px;
  background: #f5f5f5;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.filter-reset:hover {
  background: #e8e8e8;
}

/* Bottom Sheet (Mobile) */
.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  max-height: 80vh;
  overflow-y: auto;
}

.bottom-sheet.open {
  transform: translateY(0);
}

.bottom-sheet-header {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: var(--card);
  z-index: 1;
}

.bottom-sheet-content {
  padding: 20px;
}

.bottom-sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.bottom-sheet-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Event Blocks */
.event-block {
  margin: 40px 0;
}

.event-block-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
  position: relative;
  width: 100%;
}

.event-block-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  flex: 1;
  display: flex;
  justify-content: center;
}

.event-block-header .view-all {
  position: absolute;
  right: 0;
}

.week-event-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
  width: 100%;
}

.week-event-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  flex: 1;
  display: flex;
  justify-content: center;
}

.week-event-header .week-nav-button {
  position: absolute;
  right: 0;
}

.view-all {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.view-all:hover {
  color: #333;
  text-decoration: underline;
}

/* Categories */
.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.cat {
  background: var(--card);
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  text-align: left;
}

.cat:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.cat span {
  font-size: 1.1rem;
  min-width: 24px;
  text-align: center;
}

/* Week Calendar */
.week-calendar {
  background: var(--card);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px var(--shadow);
  overflow-x: auto;
  min-height: 80px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.week-calendar-list {
  display: flex;
  gap: 12px;
  align-items: stretch;
  width: max-content;
  margin: 0 auto;
  transition: transform 0.3s ease-in-out;
}

.week-calendar-sliding .week-calendar-list {
  animation: slideWeek 0.3s ease-in-out;
}

@keyframes slideWeek {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 今週のイベントのスクロールバーを非表示 */
.week-calendar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.week-calendar::-webkit-scrollbar {
  display: none;
}

.week-day-item {
  flex: 0 0 110px;
  min-width: 110px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  scroll-snap-align: start;
}

.week-day-item:hover {
  background: #f0f5f1;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.week-day-item.has-events {
  background: #eaf7f1;
  border-color: var(--primary);
  font-weight: 600;
}

.week-day-item.has-events:hover {
  background: #d4ede4;
}

.week-day-item.today {
  background: #fff3e0;
  border-color: var(--accent);
  border-width: 2px;
  font-weight: 700;
}

.week-day-item.today.has-events {
  background: #ffe0b2;
}

.week-day-date {
  display: block;
  margin-bottom: 2px;
  line-height: 1.4;
  font-weight: 600;
}

.week-day-name {
  display: block;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.2;
}

.week-day-count {
  font-size: 0.75rem;
  color: var(--primary);
  background: rgba(11, 122, 93, 0.15);
  padding: 2px 6px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 4px;
  font-weight: 600;
}

.week-day-item.today .week-day-count {
  background: rgba(248, 107, 64, 0.2);
  color: var(--accent);
}

.week-calendar-wrapper {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.week-nav-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #0071e3;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: all 0.2s;
  font-weight: 300;
}

.week-nav-arrow:hover {
  background: #005bb5;
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
  transform: translateY(-50%) scale(1.05);
}

/* Organizer */
.organizer-card {
  background: var(--card);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 12px 26px var(--shadow);
  margin-bottom: 20px;
}

.organizer-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.organizer-logo {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  background: #f0f0f0;
}

.organizer-info h3 {
  margin-bottom: 8px;
}

.organizer-meta {
  color: #6c7a72;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #6c7a72;
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.empty-suggestions {
  max-width: 1180px;
  margin: 0 auto 40px;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.empty-suggestions-section h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text);
}

.empty-suggestions-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.empty-suggestion-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f5f5f5;
  color: var(--text);
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s;
}

.empty-suggestion-chip:hover {
  background: #e9f3ef;
  border-color: var(--primary);
}

.empty-suggestion-icon {
  font-size: 1rem;
}

.empty-suggestions-events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

/* Mobile */
@media (max-width: 768px) {
  .main-header {
    padding: 12px 16px;
  }

  .logo {
    font-size: 1.5rem;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 0.1em;
  }

  .nav-links {
    gap: 16px;
  }

  .nav a {
    font-size: 0.85rem;
  }

  .hero-section {
    height: 400px;
    margin-bottom: 40px;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .hero-search-form {
    flex-direction: column;
    border-radius: 12px;
  }

  .hero-search-input {
    padding: 14px 20px;
    border-radius: 12px 12px 0 0;
  }

  .hero-search-button {
    padding: 14px 20px;
    border-radius: 0 0 12px 12px;
  }

  .hero-subtext {
    font-size: 0.85rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filters select,
  .filters input {
    width: 100%;
  }

  .map-container {
    height: 300px;
  }

  .event-block-header {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .event-block-header .view-all {
    position: static;
    margin-top: 8px;
  }

  .nav-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .header-search {
    max-width: 100%;
    width: 100%;
  }

  .header-search-form {
    max-width: 100%;
  }

  .week-calendar {
    padding: 12px;
  }

  .week-calendar-list {
    gap: 8px;
  }

  .week-day-item {
    min-width: 75px;
    padding: 10px 6px;
    font-size: 0.85rem;
  }

  .week-day-date {
    font-size: 0.8rem;
  }

  .card-carousel {
    grid-template-columns: repeat(2, 260px);
    gap: 12px;
  }

  .card-carousel .card {
    min-width: 260px;
    max-width: 260px;
  }

  .card-image-wrapper {
    height: 160px;
  }

  .carousel-arrow {
    display: none;
  }
}

/* Footer */
.main-footer {
  background: #1a1a2e;
  color: #fff;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
}

.footer-column a {
  display: block;
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-select {
  width: 100%;
  padding: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  cursor: pointer;
}

.app-button {
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.app-button:hover {
  background: #333;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-methods span {
  background: #fff;
  color: #333;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #ccc;
}

.footer-logo {
  font-size: 1.1rem;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: #555;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Utility */
.hidden {
  display: none !important;
}

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

