@charset "UTF-8";

/* ====================================
   Section Layout
   ==================================== */
.as-l-section {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .as-l-section {
    padding: 10rem 0;
  }
}

/* バナー */
.as-p-top-banner {
  margin-block-start: 3rem;
}

/* ====================================
   Feature Section
   ==================================== */
.as-p-top-feature {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  margin-block-end: 4rem;
}

.as-p-top-feature-img {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.as-p-top-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.as-p-top-feature-img:hover img {
  transform: scale(1.05);
}

.as-p-top-feature-content {
  width: 100%;
}

.as-p-top-feature-lead {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.as-p-top-feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.as-p-top-feature-item {
  border-left: 2px solid rgba(194, 149, 70, 0.3);
  padding-left: 1.5rem;
}

.as-p-top-feature-item h3 {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.as-p-top-feature-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.as-p-top-feature-link {
  margin-block-start: 4rem;
}

/* Reverse modifier */
.as-p-top-feature.is-reverse {
  flex-direction: column-reverse;
}

@media (min-width: 960px) {
  .as-p-top-feature {
    flex-direction: row;
    gap: 5rem;
  }

  .as-p-top-feature.is-reverse {
    flex-direction: row;
  }

  .as-p-top-feature-img {
    width: 60%;
  }
  .as-p-top-feature-content {
    width: 40%;
  }
  .as-p-top-feature-lead {
    font-size: 1.125rem;
  }
}

/* ====================================
   Gallery Section
   ==================================== */
.as-p-top-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.as-p-top-gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.as-p-top-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.as-p-top-gallery-item:hover img {
  transform: scale(1.05);
}

.as-p-top-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.as-p-top-gallery-item:hover .as-p-top-gallery-overlay {
  opacity: 1;
}

@media (min-width: 768px) {
  .as-p-top-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .as-p-top-gallery-item.is-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 4 / 3;
  }
}

/* ====================================
   Access Section
   ==================================== */
.as-p-top-access-item {
  padding: var(--card-padding);
  border-radius: var(--radius);
  background-color: var(--card-bg-thin);
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 0.5rem;
  align-items: center;
}

.as-p-top-access-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1rem;
  margin-block-end: 4rem;
}

.as-p-top-access-title-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 0.5em;
}

.as-p-top-access-icon img {
  inline-size: 2rem;
}

.as-p-top-access-title {
  font-size: 2rem;
}

.as-p-top-access-content .as-p-top-access-text {
  font-size: calc(16px * var(--rem));
}

.as-p-top-access-text {
  color: var(--text-muted);
}

.as-p-top-access-text ul li::before {
  content: "・";
}

.as-p-top-access-map iframe {
  inline-size: 100%;
  aspect-ratio: 16 / 9;
}
