/* =====================================
   NAGOYA PAGE – COMPLETE CLEAN VERSION
===================================== */

/* ===============================
   CONTAINER
=============================== */
.nagoya-section {
    padding: 60px 20px 80px;
}

.nagoya-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* セクションリズム */
.nagoya-inner>div {
    margin-top: 80px;
}

.nagoya-inner>div:first-child {
    margin-top: 0;
}

/* ===============================
   HERO
=============================== */
.nagoya-hero {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.nagoya-hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* グラデーション */
.nagoya-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
}

/* テキスト */
.nagoya-hero-text {
    position: absolute;
    left: 40px;
    bottom: 36px;
    color: #fff;
    z-index: 2;
}

.nagoya-hero-text h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 6px;
}

.nagoya-hero-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

/* ===============================
   TEXT
=============================== */
.nagoya-text {
    max-width: 720px;
}

.nagoya-text p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 14px;
}

/* ===============================
   HEADING統一（重要）
=============================== */
.nagoya-section h2 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* ===============================
   STORE GALLERY（PRO）
=============================== */
.nagoya-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 14px;
    margin-bottom: 20px;
}

.nagoya-gallery img:first-child {
    grid-row: span 2;
}

.nagoya-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #eee;
    background: #f8f8f8;
    transition: 0.4s ease;
}

.nagoya-gallery img:hover {
    transform: scale(1.04);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.gallery-caption {
    font-size: 12.5px;
    color: #777;
}

/* ===============================
   VISUAL（名古屋城など）
=============================== */
.nagoya-visual {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.nagoya-visual-image {
    height: 360px;
    /* ←これが重要 */
    overflow: hidden;
    border-radius: 6px;
}

.nagoya-visual-image img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
}

.nagoya-visual-content p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #333;
}

.nagoya-visual-sub {
    margin-top: 10px;
    font-size: 13px;
    color: #777;
}

/* ===============================
   ACCESS（最強版）
=============================== */
.nagoya-access-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.access-item {
    position: relative;
    display: flex;
    gap: 14px;
    padding: 20px;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 6px;
    transition: 0.25s ease;
}

.access-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

/* subtle line */
.access-item::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #eee, transparent);
}

/* アイコン */
.access-item .icon {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===============================
   SPOT LIST
=============================== */
.nagoya-spots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.spot {
    border: 1px solid #eee;
    padding: 16px;
    background: #fff;
    transition: 0.25s ease;
}

.spot:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

/* ===============================
   POPUP（hover画像）
=============================== */
.spot.has-popup {
    position: relative;
}

.spot-popup {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(8px);
    width: 260px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
    border-radius: 8px;

    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}

.spot.has-popup:hover .spot-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.spot-popup img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.spot-popup-text {
    padding: 12px;
    font-size: 12.5px;
}

/* ===============================
   MAP
=============================== */
.nagoya-map iframe {
    width: 100%;
    height: 400px;
    border: 1px solid #eee;
    border-radius: 6px;
}

.nagoya-map-action {
    text-align: center;
    margin-top: 16px;
}

.map-btn {
    display: inline-block;
    padding: 12px 22px;
    background: #111;
    color: #fff;
    text-decoration: none;
}

.map-btn:hover {
    background: #333;
}

/* ===============================
   REVIEWS
=============================== */
.nagoya-reviews {
    text-align: center;
}

.reviews-box {
    border-top: 1px solid #eee;
    padding-top: 40px;
}

/* ===============================
   CTA（最終）
=============================== */
.nagoya-cta {
    margin-top: 80px;
    margin-bottom: 100px;
}

.cta-box {
    border-top: none;
    padding-top: 50px;
    text-align: center;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.cta-btn {
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
}

.cta-btn.primary {
    background: #111;
    color: #fff;
}

.cta-btn.secondary {
    border: 1px solid #111;
    color: #111;
}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 768px) {

    .nagoya-hero img {
        height: 260px;
    }

    .nagoya-visual {
        grid-template-columns: 1fr;
    }

    .nagoya-access-box {
        grid-template-columns: 1fr;
    }

    .nagoya-spots {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

    .nagoya-gallery {
        display: flex;
        overflow-x: auto;
        gap: 10px;
    }

    .nagoya-gallery img {
        flex: 0 0 70%;
        height: auto;
    }

    .nagoya-spot-feature {
        grid-template-columns: 1fr;
    }
}

.spot-image {
    height: 360px;
    overflow: hidden;
    border-radius: 6px;
}

.spot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nagoya-visual-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.spot-image {
    height: 360px !important;
    overflow: hidden !important;
}

.spot-image img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}

.nagoya-spot-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.nagoya-visual-image {
  position: relative;
}

.nagoya-visual-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.nagoya-map iframe {
  width: 100%;
  height: 420px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.map-btn {
  display: inline-block;
  padding: 14px 26px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.map-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.nagoya-trust {
  text-align: center;
}

.trust-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 30px;

  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* リスト */
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.trust-list li {
  font-size: 14px;
  margin-bottom: 8px;
}

/* 区切り */
.trust-divider {
  height: 1px;
  background: #eee;
  margin: 24px 0;
}

/* レビュー */
.trust-stars {
  letter-spacing: 3px;
  font-size: 16px;
  margin-bottom: 4px;
}

.trust-score {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.trust-text {
  font-size: 13.5px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

.trust-link {
  font-size: 13px;
  color: #0050ff;
  text-decoration: none;
}

.trust-link:hover {
  text-decoration: underline;
}

.store-note {
  font-size: 12px;
  color: #777;
  margin-top: 10px;
  line-height: 1.6;
}

.store-note a {
  color: #999;
  text-decoration: none;
}

.store-note a:hover {
  color: #111;
}