@charset "UTF-8";
.location-page .section--video .section__title {
  color: #2c5f8a;
}

.location-page .section--video .section__title--lined::after {
  background: #2c5f8a;
  opacity: 0.4;
}

.location-page .section--video .section__subtitle {
  color: #888;
}

.location-page .section--locations-list .section__title {
  color: #fff;
}

.location-page .section--locations-list .section__title--lined::after {
  background: rgba(255, 255, 255, 0.4);
}

.location-page .section--locations-list .section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.loc-map-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.loc-map {
  position: relative;
  flex: 0 0 540px;
}
.loc-map__base {
  width: 100%;
  height: auto;
  display: block;
}
.loc-map__pin {
  position: absolute;
  width: 7.59%;
  height: auto;
  transform: translate(-50%, -100%);
  opacity: 0;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 2;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.loc-map__pin img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
.loc-map__pin:hover, .loc-map__pin.is-active {
  transform: translate(-50%, -100%) scale(1.25);
  filter: drop-shadow(0 2px 6px rgba(0, 66, 188, 0.35));
}

.loc-map-layout.is-visible .loc-map__pin {
  animation: pin-drop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.loc-map-layout.is-visible .loc-map__pin:nth-child(2) {
  animation-delay: 0.3s;
}

.loc-map-layout.is-visible .loc-map__pin:nth-child(3) {
  animation-delay: 0.5s;
}

.loc-map-layout.is-visible .loc-map__pin:nth-child(4) {
  animation-delay: 0.7s;
}

.loc-map-layout.is-visible .loc-map__pin:nth-child(5) {
  animation-delay: 0.9s;
}

.loc-map-layout.is-visible .loc-map__pin:nth-child(6) {
  animation-delay: 1.1s;
}

.loc-map-layout.is-visible .loc-map__pin:nth-child(7) {
  animation-delay: 1.3s;
}

.loc-map-layout.is-visible .loc-map__pin:nth-child(8) {
  animation-delay: 1.5s;
}

.loc-map-layout.is-visible .loc-map__pin:nth-child(9) {
  animation-delay: 1.7s;
}

.loc-map-layout.is-visible .loc-map__pin:nth-child(10) {
  animation-delay: 1.9s;
}

.loc-info {
  flex: 1;
  min-width: 0;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-info__empty {
  text-align: center;
  color: #a0b8d0;
}
.loc-info__empty svg {
  margin-bottom: 12px;
}
.loc-info__empty p {
  font-size: 16px;
  line-height: 1.8;
}

.loc-info__detail {
  width: 100%;
  background: #fff;
  border-radius: 50%;
  aspect-ratio: 1.5/1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 32px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.loc-info__detail.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.loc-info__company {
  font-size: 16px;
  font-weight: 600;
  color: #0042bc;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.loc-info__name {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a2a3a;
  line-height: 1.4;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8eef4;
}

.loc-info__fish {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.loc-info__fish-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.loc-info__fish-item img {
  width: 56px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.loc-info__fish-item span {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
}

.loc-info__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #004A77;
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.loc-info__link:hover {
  background: #00365a;
  transform: translateX(4px);
}

@keyframes pin-drop {
  0% {
    opacity: 0;
    transform: translate(-50%, -100%) translateY(-50px);
  }
  40% {
    opacity: 1;
  }
  70% {
    transform: translate(-50%, -100%) translateY(3px);
  }
  85% {
    transform: translate(-50%, -100%) translateY(-1px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -100%) translateY(0);
  }
}
@media (max-width: 1024px) {
  .loc-map-layout {
    gap: 32px;
  }
  .loc-map {
    flex: 0 0 420px;
  }
  .loc-info__detail {
    padding: 24px;
  }
  .loc-info__name {
    font-size: 19px;
  }
  .loc-info__fish-item img {
    width: 44px;
  }
}
@media (max-width: 768px) {
  .loc-map-layout {
    flex-direction: column;
    padding: 0 20px;
    gap: 24px;
  }
  .loc-map {
    flex: none;
    width: 100%;
  }
  .loc-info {
    min-height: auto;
    width: 100%;
  }
  .loc-info__detail {
    padding: 20px;
  }
  .loc-info__name {
    font-size: 17px;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }
  .loc-info__fish-item img {
    width: 40px;
  }
  .loc-info__link {
    font-size: 16px;
    padding: 8px 22px;
  }
}
.section--video {
  background: #f5f9fc;
  padding: 80px 0;
  overflow: visible;
}

.video-section__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 56px;
}

.video-section__text {
  flex: 0 0 280px;
}

.video-section__label {
  font-size: 16px;
  font-weight: 600;
  color: #0042bc;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.video-section__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 28px;
  font-weight: 600;
  color: #1a2a3a;
  line-height: 1.4;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
}
.video-section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #0042bc;
}

.video-section__desc {
  font-size: 16px;
  line-height: 2;
  color: #555555;
}

.video-section__player {
  flex: 1;
  min-width: 0;
}

.video-aspect {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 30, 60, 0.14);
  background: #1a2a3a;
}
.video-aspect iframe,
.video-aspect video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-section__credit {
  text-align: right;
  font-size: 13px;
  color: #888;
  margin-top: 8px;
}

.section--locations-list {
  background: #2477A8;
  padding: 64px 0 80px;
  overflow: hidden;
}

.filter-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding: 0 40px;
  flex-wrap: wrap;
}

.filter-controls__group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-controls__group label {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.filter-controls__group select {
  padding: 10px 36px 10px 16px;
  border: 2px solid #d0dce8;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  min-width: 180px;
  color: #333;
  transition: border-color 0.3s ease;
}

.filter-controls__group select:hover {
  border-color: #a0b8d0;
}

.filter-controls__group select:focus {
  outline: none;
  border-color: #2c5f8a;
  box-shadow: 0 0 0 3px rgba(44, 95, 138, 0.1);
}

.locations-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.loc-card {
  display: block;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.loc-card__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.loc-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.loc-card:hover .loc-card__image img {
  transform: scale(1.06);
}

.loc-card__body {
  padding: 20px;
}

.loc-card__company {
  font-size: 16px;
  font-weight: 600;
  color: #0042bc;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.loc-card__name {
  font-size: 17px;
  font-weight: 800;
  color: #1a2a3a;
  margin-bottom: 6px;
  line-height: 1.4;
}

.loc-card__address {
  font-size: 16px;
  color: #888;
  margin-bottom: 16px;
}

.loc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.loc-card__tag {
  font-size: 16px;
  padding: 4px 12px;
  border-radius: 20px;
  background: #e8f1fc;
  color: #0042bc;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.loc-card__link .btn-circle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1a3a5c;
  transition: all 0.3s ease;
}

.loc-card__link .btn-circle__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #1a3a5c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.loc-card__link .btn-circle__icon svg {
  width: 8px;
  height: 8px;
  fill: none;
  stroke: #1a3a5c;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loc-card:hover .loc-card__link .btn-circle {
  color: #2a6b9f;
}

.loc-card:hover .loc-card__link .btn-circle__icon {
  background: #1a3a5c;
  border-color: #1a3a5c;
}

.loc-card:hover .loc-card__link .btn-circle__icon svg {
  stroke: #fff;
}

.locations-no-result {
  display: none;
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.locations-no-result.is-visible {
  display: block;
}

@media (max-width: 1024px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .video-section__inner {
    gap: 36px;
  }
  .video-section__text {
    flex: 0 0 220px;
  }
}
@media (max-width: 768px) {
  .section--video {
    padding: 48px 0;
  }
  .video-section__inner {
    flex-direction: column;
    gap: 24px;
    padding: 0 20px;
  }
  .video-section__text {
    flex: none;
    text-align: center;
  }
  .video-section__title {
    font-size: 22px;
  }
  .video-section__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .video-section__desc {
    font-size: 16px;
  }
  .section--locations-list {
    padding: 48px 0 60px;
  }
  .filter-controls {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
    gap: 16px;
  }
  .filter-controls__group {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .filter-controls__group select {
    width: 100%;
    min-width: auto;
  }
  .locations-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}/*# sourceMappingURL=locations-index.css.map */