@charset "UTF-8";
.hero {
  position: relative;
  margin-top: 0;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 768px) {
  .hero {
    margin-top: 0;
    min-height: 200px;
  }
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__content {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .hero__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .hero__content {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.hero__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 20px;
  }
}
.hero__subtitle {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  opacity: 0.85;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 16px;
  }
}
.hero__wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 3;
  line-height: 0;
}
.hero__wave-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 768px) {
  .hero__wave-bottom {
    height: 40px;
  }
}

.section__title--lined::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: currentColor;
  margin: 12px auto 0;
  opacity: 0.6;
}
.section__title--decorative {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.section__title--mincho {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.map-embed {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.map-embed iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}
@media (max-width: 768px) {
  .map-embed iframe {
    height: 240px;
  }
}
.map-embed--tilted {
  border-radius: 8px;
  box-shadow: 8px 12px 32px rgba(0, 40, 80, 0.15);
}

.species-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.species-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.species-card__image {
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #dceef8 0%, #c4e0f2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.species-card__image img {
  max-width: 75%;
  max-height: 75%;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: auto;
}
.species-card__body {
  padding: 16px 18px 20px;
}
.species-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}
.species-card__text {
  font-size: 16px;
  line-height: 1.85;
  color: #555555;
}

.staff-member {
  text-align: center;
  color: #ffffff;
}
.staff-member__photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}
.staff-member__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff-member__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.staff-member__position {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 16px;
}
.staff-member__message {
  font-size: 16px;
  line-height: 1.9;
  opacity: 0.85;
  text-align: left;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    gap: 8px;
  }
}
.gallery-grid__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid__item:hover img {
  transform: scale(1.06);
}

.location-page .section__title {
  font-size: 40px;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .location-page .section__title {
    font-size: 26px;
  }
}
.location-page .section__subtitle {
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: #000000;
}
@media (max-width: 768px) {
  .location-page .section__subtitle {
    font-size: 16px;
  }
}
.location-page .section--map {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7fc 40%, #e6f1fa 100%);
  padding: 40px 0 60px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .location-page .section--map {
    padding: 30px 0 40px;
  }
}
.location-page .section--map .section__title {
  color: #2c5f8a;
}
.location-page .section--map .section__title--lined::after {
  background: #2c5f8a;
}
.location-page .map-wrapper {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .location-page .map-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.location-page .section--features-overview {
  background: #ffffff;
  padding: 60px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .location-page .section--features-overview {
    padding: 40px 0;
  }
}
.location-page .section--features-overview .section__title {
  color: #1e3a5f;
}
.location-page .section--features-overview .section__title--lined::after {
  background: #1e3a5f;
  opacity: 0.4;
}
.location-page .section--features-overview .column-label {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: #ffffff;
  background: #1e3a5f;
  border-radius: 60px;
  padding: 8px 70px;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
.location-page .section--features-overview .column-content__heading {
  font-size: 18px;
  font-weight: 700;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: #1e3a5f;
  line-height: 1.7;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .location-page .section--features-overview .column-content__heading {
    font-size: 16px;
  }
}
.location-page .section--features-overview .column-content__text {
  line-height: 2;
  color: #3a4a5c;
  text-align: left;
}
.location-page .section--features-overview .info-table {
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 40, 80, 0.08);
  text-align: left;
}
.location-page .section--features-overview .info-table tr {
  border-bottom: 1px solid #e0e8f0;
}
.location-page .section--features-overview .info-table tr:last-child {
  border-bottom: none;
}
.location-page .section--features-overview .info-table th {
  background: #2c4a6e;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: #ffffff;
  width: 32%;
  vertical-align: middle;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .location-page .section--features-overview .info-table th {
    display: block;
    width: 100%;
    padding: 10px 12px 4px;
  }
}
.location-page .section--features-overview .info-table td {
  padding: 12px 16px;
  color: #333333;
  line-height: 1.6;
  background: #ffffff;
}
@media (max-width: 768px) {
  .location-page .section--features-overview .info-table td {
    display: block;
    width: 100%;
    padding: 4px 12px 10px;
  }
}
.location-page .features-overview-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .location-page .features-overview-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.location-page .features-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 1024px) {
  .location-page .features-overview-grid {
    grid-template-columns: 1fr;
  }
}
.location-page .features-column,
.location-page .overview-column {
  text-align: center;
  background: #ECF8FF;
  border-radius: 12px;
  padding: 28px 24px;
}
.location-page .loc-detail-layout {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .location-page .loc-detail-layout {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.location-page .loc-detail-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 1024px) {
  .location-page .loc-detail-layout {
    flex-direction: column;
    gap: 32px;
  }
}
.location-page .loc-detail__left {
  flex: 0 0 380px;
}
@media (max-width: 1024px) {
  .location-page .loc-detail__left {
    flex: none;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }
}
.location-page .loc-detail__right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.location-page .loc-detail__catchcopy {
  text-align: center;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 24px;
  font-weight: 600;
  color: #1e3a5f;
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .location-page .loc-detail__catchcopy {
    font-size: 18px;
    margin-bottom: 28px;
  }
}
.location-page .loc-detail__map {
  position: relative;
  margin-bottom: 28px;
}
.location-page .loc-detail__map-base {
  width: 100%;
  height: auto;
  display: block;
}
.location-page .loc-detail__map-pin {
  position: absolute;
  width: 7.59%;
  height: auto;
  transform: translate(-50%, -100%);
}
.location-page .loc-detail__fish-title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #1e3a5f;
  letter-spacing: 0.06em;
}
.location-page .loc-detail__fish-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.location-page .loc-detail__fish-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 12px;
  border-bottom: 1px solid #e0e8f0;
  text-decoration: none;
  transition: background 0.3s ease;
}
.location-page .loc-detail__fish-item:last-child {
  border-bottom: none;
}
.location-page .loc-detail__fish-item:hover {
  background: rgba(0, 66, 188, 0.04);
}
.location-page .loc-detail__fish-img {
  flex-shrink: 0;
  width: 64px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-page .loc-detail__fish-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.location-page .loc-detail__fish-body {
  flex: 1;
  min-width: 0;
}
.location-page .loc-detail__fish-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 2px;
}
.location-page .loc-detail__fish-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}
.location-page .loc-detail__fish-arrow {
  flex-shrink: 0;
  color: #a0b8d0;
  transition: color 0.3s ease, transform 0.3s ease;
}
.location-page .loc-detail__fish-item:hover .location-page .loc-detail__fish-arrow {
  color: #1e3a5f;
  transform: translateX(3px);
}
.location-page .ocean-section .section__title {
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 30, 70, 0.25);
}
.location-page .ocean-section .section__title--lined::after {
  background: rgba(255, 255, 255, 0.5);
}
.location-page .ocean-section .section__subtitle {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 30, 70, 0.12);
}
.location-page .section--fish {
  background: #3DA0D0 url("../img/genkai/pc-genkai-bg02@2x.png") center/cover no-repeat;
}
.location-page .species-grid {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .location-page .species-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.location-page .species-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .location-page .species-grid {
    grid-template-columns: 1fr;
  }
}
.location-page .species-grid .species-card:only-child {
  grid-column: 1/-1;
  max-width: 420px;
  margin: 0 auto;
}
.location-page .section--staff {
  background: linear-gradient(180deg, #2878AC 0%, #1A5C8C 100%);
}
.location-page .staff-grid {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .location-page .staff-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.location-page .staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .location-page .staff-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.location-page .staff-grid .staff-member:nth-child(n+2) {
  border-left: 1px solid #ffffff;
  padding-left: 40px;
}
@media (max-width: 768px) {
  .location-page .staff-grid .staff-member:nth-child(n+2) {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #ffffff;
    padding-top: 32px;
  }
}
.location-page .section--gallery {
  background: linear-gradient(180deg, #ffffff 0%, #bee6ff 100%);
  padding-bottom: 164px !important;
}
@media (max-width: 768px) {
  .location-page .section--gallery {
    padding-bottom: 100px !important;
  }
}
.location-page .section--gallery .section__title {
  color: #2c5f8a;
}
.location-page .section--gallery .section__title--lined::after {
  background: #2c5f8a;
  opacity: 0.4;
}
.location-page .section--gallery .gallery-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .location-page .section--gallery .gallery-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.location-page .section__wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 3;
  line-height: 0;
}
.location-page .section__wave-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 768px) {
  .location-page .section__wave-bottom {
    height: 40px;
  }
}
.location-page .section__wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 3;
  line-height: 0;
}
.location-page .section__wave-top svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 768px) {
  .location-page .section__wave-top {
    height: 40px;
  }
}
.location-page .section {
  padding-bottom: 164px;
}
@media (max-width: 768px) {
  .location-page .section {
    padding-bottom: 100px;
  }
}
.location-page .section--map,
.location-page .section--features-overview {
  overflow: visible;
}
.location-page .section--fish {
  padding-top: 128px;
}
@media (max-width: 768px) {
  .location-page .section--fish {
    padding-top: 80px;
  }
}/*# sourceMappingURL=location.css.map */