.main {
  padding: 60px 0;
}

.station-hero {
  background-color: #ffffff;
}
.station-hero .breadcrumb {
  background-image: url("../../images/content-head-frame.png");
  background-size: cover;
  background-position: center;
}

.station-hero__content {
  padding: 40px 0;
}
.station-hero__content .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.station-hero__label {
  display: inline-block;
  background: #006637;
  color: #ffffff;
  padding: 4px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.station-hero__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333333;
}
@media (min-width: 768px) {
  .station-hero__title {
    font-size: 40px;
  }
}

.station-hero__text {
  font-size: 16px;
  color: #666666;
}

.station-gallery {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 40px 0;
  background: #f8f8f8;
}
.station-gallery::-webkit-scrollbar {
  height: 8px;
}
.station-gallery::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 4px;
}
.station-gallery::-webkit-scrollbar-thumb {
  background: #006637;
  border-radius: 4px;
}
.station-gallery::-webkit-scrollbar-thumb:hover {
  background: #2d5a3d;
}

.station-gallery__container {
  display: flex;
  gap: 20px;
  padding: 0 40px;
  width: max-content;
}
@media (max-width: 768px) {
  .station-gallery__container {
    padding: 0 20px;
    gap: 16px;
  }
}

.station-gallery__item {
  flex-shrink: 0;
  width: 400px;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.station-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.station-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .station-gallery__item {
    width: 300px;
    height: 225px;
  }
}
@media (max-width: 480px) {
  .station-gallery__item {
    width: 280px;
    height: 210px;
  }
}

.station-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.station-slider__wrapper {
  position: relative;
  width: 100%;
  height: 400px;
}
@media (min-width: 768px) {
  .station-slider__wrapper {
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .station-slider__wrapper {
    height: 600px;
  }
}

.station-slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.station-slider__slide.active {
  opacity: 1;
}
.station-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.station-slider__prev,
.station-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #006637;
}
.station-slider__prev:hover,
.station-slider__next:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .station-slider__prev,
  .station-slider__next {
    width: 40px;
    height: 40px;
  }
  .station-slider__prev svg,
  .station-slider__next svg {
    width: 20px;
    height: 20px;
  }
}

.station-slider__prev {
  left: 20px;
}

.station-slider__next {
  right: 20px;
}

.station-slider__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.station-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.station-slider__dot.active {
  background: #ffffff;
  width: 32px;
  border-radius: 6px;
}
.station-slider__dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.region-filter {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px 8px 0 0;
}

.filter-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333333;
}

.region-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 640px) {
  .region-tabs {
    grid-template-columns: 1fr;
  }
}

.region-tab {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  padding: 16px 24px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.region-tab:hover {
  border-color: #006637;
  background-color: rgba(0, 102, 55, 0.05);
}
.region-tab.active {
  background-color: #006637;
  color: #ffffff;
  border-color: #006637;
}

.detailed-filter {
  background-color: #e8f5e9;
  padding: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}
.detailed-filter.collapsed .filter-content {
  max-height: 0;
  opacity: 0;
  padding: 0 32px;
  margin: 0;
  background-color: #fff;
}
.detailed-filter.collapsed .filter-toggle .icon-plus {
  display: block;
}
.detailed-filter.collapsed .filter-toggle .icon-minus {
  display: none;
}
.detailed-filter:not(.collapsed) .filter-toggle .icon-plus {
  display: none;
}
.detailed-filter:not(.collapsed) .filter-toggle .icon-minus {
  display: block;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 32px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}
.filter-header:hover {
  background-color: rgba(0, 102, 55, 0.05);
}

.filter-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #006637;
}

.filter-toggle {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #006637;
  transition: all 0.3s ease;
}
.filter-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 102, 55, 0.2);
}
.filter-toggle:active {
  transform: scale(0.98);
}
.filter-toggle .icon-plus,
.filter-toggle .icon-minus {
  transition: transform 0.3s ease;
}
.filter-toggle svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.filter-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-height: 500px;
  opacity: 1;
  padding: 24px 32px;
  margin-top: 0;
  transition: all 0.3s ease;
  background-color: #fff;
}
@media (max-width: 640px) {
  .filter-content {
    flex-direction: column;
  }
}

.filter-label {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  white-space: nowrap;
  padding-top: 8px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 1;
}

.filter-tag {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  color: #333333;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.filter-tag:hover {
  border-color: #006637;
  background-color: rgba(0, 102, 55, 0.05);
}
.filter-tag.active {
  background-color: #006637;
  color: #ffffff;
  border-color: #006637;
}

.results {
  padding: 32px;
  border-radius: 8px;
}

.results-title {
  margin-bottom: 24px;
}

.results-count {
  color: #006637;
}

.station-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .station-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.station-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  border-radius: 8px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.station-card:hover {
  border-color: #006637;
  box-shadow: 0 4px 12px rgba(0, 102, 55, 0.15);
}
.station-card:hover .station-link {
  transform: translateX(4px);
}
.station-card[style*="display: none"] {
  display: none !important;
}

.station-name {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
}

.station-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #006637;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.station-link svg {
  width: 24px;
  height: 24px;
}

.station-detail {
  padding: 40px 0;
}

.station-section {
  margin-bottom: 60px;
}
.station-section:last-child {
  margin-bottom: 40px;
}

.station-documents {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.station-document {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: #006637;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.station-document:hover {
  background-color: #e8f5e9;
  border-color: #006637;
}
.station-document__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .station-document {
    width: fit-content;
    max-width: 100%;
    font-size: 16px;
    padding: 14px 22px;
  }
}

.section-heading {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-heading::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #006637;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .section-heading {
    font-size: 24px;
    gap: 16px;
  }
  .section-heading::before {
    width: 20px;
    height: 20px;
  }
}

.station-content {
  line-height: 1.8;
  color: #333333;
  font-size: 16px;
}
.station-content p {
  margin-bottom: 16px;
}
.station-content p:last-child {
  margin-bottom: 0;
}

.station-info-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.station-info-table tr {
  border-bottom: 1px solid #e0e0e0;
}
.station-info-table tr:last-child {
  border-bottom: none;
}
.station-info-table th {
  background: #e8f5e9;
  color: #2d5a3d;
  font-weight: 700;
  text-align: left;
  padding: 20px 24px;
  width: 180px;
  vertical-align: top;
  font-size: 15px;
}
@media (max-width: 768px) {
  .station-info-table th {
    display: block;
    width: 100%;
    padding: 15px 20px 10px;
  }
}
.station-info-table td {
  padding: 20px 24px;
  color: #333333;
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .station-info-table td {
    display: block;
    width: 100%;
    padding: 10px 20px 20px;
  }
}
.station-info-table td a {
  color: #006637;
  text-decoration: underline;
}
.station-info-table td a:hover {
  text-decoration: none;
}

.station-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.station-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}
@media (min-width: 768px) {
  .station-map iframe {
    height: 500px;
  }
}

.station-recruit-cta {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.station-recruit-cta .btn {
  min-width: 220px;
}
@media (max-width: 768px) {
  .station-recruit-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .station-recruit-cta .btn {
    width: 100%;
    max-width: 320px;
  }
}

.station-back-link {
  margin-top: 24px;
  text-align: center;
}

.station-info-box {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .station-info-box {
    padding: 30px 20px;
  }
}

.station-info-title {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.station-info-title::before, .station-info-title::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #006637;
  border-radius: 50%;
  flex-shrink: 0;
}
.station-info-title::after {
  margin-left: auto;
}
@media (min-width: 768px) {
  .station-info-title {
    font-size: 22px;
  }
}

.station-info-content {
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
}

.station-info-item {
  margin-bottom: 8px;
}
.station-info-item:last-child {
  margin-bottom: 0;
}
.station-info-item strong {
  font-weight: 600;
  color: #333333;
  margin-right: 8px;
}
.station-info-item a {
  color: #333333;
  text-decoration: none;
}
.station-info-item a:hover {
  color: #006637;
  text-decoration: underline;
}

.station-info-item--instagram {
  display: flex;
  align-items: center;
}

.station-info__instagram-link {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s;
}
.station-info__instagram-link:hover {
  opacity: 0.7;
}
.station-info__instagram-link img {
  display: block;
  width: 22px;
  height: 22px;
}

.station-map {
  margin-top: 30px;
  box-shadow: none;
}
.station-map iframe {
  display: block;
  width: 100%;
  border: none;
}

.station-map-link {
  text-align: right;
  margin-top: 12px;
}
.station-map-link a {
  color: #006637;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 600;
}
.station-map-link a:hover {
  opacity: 0.8;
}
