/* Scoped CSS */
#gloce_v3_root {
  line-height: 1.5;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 8px;
  max-width: 1080px;
  margin: 0 auto;
}
#gloce_v3_root * {
  box-sizing: border-box;
}

/* --- Header --- */
.gloce-header {
  background-color: #454444;
  color: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  gap: 15px;
}

.gloce-header-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 !important;
  color: white !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

#gloce_filter_map_label {
  font-size: 20px;
  font-weight: bold;
  color: #111111;
  letter-spacing: 0.05em;
}

.gloce-lang-group-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.gloce-lang-group {
  display: flex;
  gap: 5px;
  background: rgba(0, 0, 0, 0.1);
  padding: 4px;
  border-radius: 6px;
  text-align: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}

.gloce-lang-btn {
  background: transparent;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.gloce-lang-btn.active {
  background-color: white;
  color: #FFA500;
  font-weight: bold;
}

/* --- Coupon Box --- */
.gloce-coupon-box {
  background-color: #1f2937;
  color: white;
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.gloce-coupon-icon {
  font-size: 2rem;
  color: #fbbf24;
  margin-bottom: 10px;
  display: inline-block;
}

.gloce-coupon-title {
  margin: 0 0 10px 0 !important;
  color: white !important;
  font-size: 1.2rem;
  font-weight: bold;
}

.gloce-coupon-desc {
  color: #9ca3af;
  margin-bottom: 15px !important;
  font-size: 0.95rem;
}

.gloce-coupon-btn {
  display: inline-flex;
  align-items: center;
  background-color: #fbbf24;
  color: #111827;
  padding: 10px 24px;
  border-radius: 9999px;
  text-decoration: none !important;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.2s;
}
.gloce-coupon-btn:hover {
  background-color: #f59e0b;
}

/* --- Filter Section --- */
.gloce-filter-section {
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  margin-bottom: 20px;
  overflow: hidden;
}

.gloce-filter-header {
  padding: 15px 20px;
  background-color: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.gloce-filter-header:hover {
  background-color: #e5e7eb;
}
.gloce-filter-header.static {
  cursor: default;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.gloce-filter-header.static:hover {
  background-color: #f3f4f6;
}
.gloce-filter-header.collapsed {
  border-bottom: none;
}
.gloce-filter-header.collapsed .gloce-filter-toggle-icon {
  transform: rotate(-90deg);
}

.gloce-filter-header-title {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gloce-filter-toggle-icon {
  color: #6b7280;
  transition: transform 0.3s;
}

.gloce-filter-body {
  padding: 20px;
  display: block;
  transition: all 0.3s ease-in-out;
}
.gloce-filter-body.hidden {
  display: none;
}

/* --- MAP --- */
.gloce-map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gloce-japan-map {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.map-region {
  fill: #e5e7eb;
  stroke: #fff;
  stroke-width: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #9ca3af;
}
.map-region image {
  filter: brightness(0) saturate(100%) invert(65%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}
.map-region:hover {
  color: #FFA500;
}
.map-region:hover image {
  filter: brightness(0) saturate(100%) invert(70%) sepia(100%) saturate(2000%) hue-rotate(0deg) brightness(110%) contrast(100%);
}
.map-region.active {
  fill: #FFA500;
}
.map-region.active image {
  filter: brightness(0) saturate(100%) invert(30%) sepia(90%) saturate(2000%) hue-rotate(140deg) brightness(95%) contrast(90%);
}

.map-label {
  font-size: 12px;
  font-weight: bold;
  fill: #374151;
  pointer-events: none;
  text-anchor: middle;
}

/* --- Filter Buttons --- */
.gloce-region-group {
  margin-bottom: 15px;
  border-bottom: 1px dashed #f0f0f0;
  padding-bottom: 10px;
}
.gloce-region-group:last-child {
  border-bottom: none;
}

.gloce-region-label {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 6px;
  font-weight: bold;
  display: block;
  text-transform: uppercase;
}

.gloce-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gloce-filter-btn {
  padding: 5px 12px;
  border: 1px solid #d1d5db;
  background-color: white;
  border-radius: 15px;
  color: #4b5563;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.gloce-filter-btn.active {
  background-color: #333333;
  color: white;
  border-color: #333333;
  font-weight: bold;
}

.gloce-reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  background: none;
  border: 1px solid #9ca3af;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #4b5563;
  transition: all 0.2s;
}
.gloce-reset-btn:hover {
  background-color: #f3f4f6;
  color: #333;
}

/* --- Area Info Box (UNIFIED) --- */
.gloce-area-info-box {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.5s ease-in-out;
}

.gloce-area-info-main-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gloce-area-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #e5e7eb;
}
.gloce-area-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (min-width: 640px) {
  .gloce-area-item {
    flex-direction: row;
    align-items: flex-start;
  }
}

.gloce-area-info-img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .gloce-area-info-img {
    width: 250px;
    height: 160px;
  }
}

.gloce-area-content-wrapper {
  flex-grow: 1;
}

.gloce-area-item-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #374151;
  margin-bottom: 8px;
}

.gloce-area-info-content {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- Cards --- */
#gloce_v3_content {
  scroll-margin-top: 20px;
}

.gloce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.gloce-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 22px rgba(0, 0, 0, 0.1);
}
.gloce-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.gloce-card-img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #e5e7eb;
}

.gloce-card-placeholder {
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.gloce-card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gloce-card-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0 0 10px 0 !important;
  line-height: 1.4;
}

.gloce-card-address {
  font-size: 0.875rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.gloce-card-address a {
  text-decoration: none;
}
.gloce-card-address a:hover {
  color: #FFA500;
  text-decoration: underline;
}

.gloce-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.gloce-tag {
  background-color: #f3f4f6;
  color: #4b5563;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 100px;
}

.gloce-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  background: transparent;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.2s;
  margin-top: auto;
}
.gloce-btn:hover {
  background-color: #eeeeee;
}

.gloce-section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 30px 0 20px 0 !important;
}

.gloce-loading {
  text-align: center;
  padding: 50px;
  color: #059669;
  font-size: 1.2rem;
}

.gloce-copyright {
  margin-top: 30px;
  border-top: 1px solid #374151;
  padding-top: 20px;
  font-size: 0.8rem;
  color: #6b7280;
}

@media (max-width: 600px) {
  .gloce-header {
    flex-direction: column;
    text-align: center;
  }
  .gloce-header-title {
    justify-content: center;
    margin-bottom: 15px !important;
  }
}/*# sourceMappingURL=gloce.css.map */