@charset "utf-8";
/* CSS Document */

:root{
  --nx-bg:#0b1220;          /* ページ暗背景に馴染む */
  --nx-card:#141b2c;        /* カード面 */
  --nx-line:#24324d;        /* 枠・線 */
  --nx-accent:#3b82f6;      /* アクセント（青） */
  --nx-accent-2:#f97316;    /* サンネクサスオレンジ */
  --nx-text:#eaf1ff;        /* 文字の白 */
  --nx-muted:#b7c3da;       /* サブ文字 */
  --acc-bg:        #0f172a;
  --acc-border:    #1f2937;
  --acc-text:      #e5e7eb;
  --acc-muted:     #cbd5e1;
  --map-border:    #334155;
	
  /* Button */
  --btn-bg:        #3b82f6;
  --btn-text:      #ffffff;
	
   /* Layout */
  --acc-max-width: 1200px;
	
}

.enjoy-wrap{
  max-width:1200px; 
  margin:72px auto; 
  padding:0 24px;
  color:var(--nx-text);
}
.enjoy-head{
  display:flex; align-items:end; gap:16px; flex-wrap:wrap; margin-bottom:20px;
}
.enjoy-head h2{
  font: 800 clamp(22px,3vw,36px)/1.15 "Noto Sans JP",system-ui,sans-serif;
  margin:0;
}
.enjoy-head h2 small{
  font-weight:700; color:var(--nx-muted); margin-left:.5em; font-size:.55em;
}
.enjoy-intro .enjoy-lead{
  color: var(--nx-accent-2) !important;  /* サンネクサスオレンジ */
  font-weight: 800;
  font-size: clamp(16px,1.8vw,22px);
  margin: 0 0 12px;
  text-align: center;
}
.enjoy-cta{
  margin-left:auto;
  display:inline-block; padding:10px 16px; border-radius:999px;
  background:linear-gradient(135deg,var(--nx-accent),#60a5fa);
  color:#fff; text-decoration:none; font-weight:400; border:1px solid rgba(255,255,255,.06);
  transition:filter .25s ease, transform .25s ease;
}
.enjoy-cta:hover{ filter:brightness(1.1); transform:translateY(-1px); }


.enjoy-intro {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 1200px;  /* 横幅を制限すると中央で整う */
  color: #fff;
}

.enjoy-lead {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--nx-accent-2); /* サンネクサスオレンジ */
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.enjoy-heading {
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 1400;
  line-height: 1.35;
  margin-bottom: 20px;
}

.enjoy-intro h2{
  font-size:clamp(24px,3.6vw,38px);
  font-weight:1400;
  line-height:1.3;
  margin:0 0 16px;
}

.enjoy-desc {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.85;
  color: var(--nx-muted);
  margin: 0;
}

.enjoy-intro p{
  font-size:clamp(14px,1.5vw,17px);
  line-height:1.8;
  margin:0;
  color:#e5e7eb;
}


/* ===== Grid ===== */
.enjoy-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 18px; /* 行・列の両方 */
}

/* 基本カード */
.enjoy-card{
  position:relative; overflow:hidden; border-radius:18px;
  background:var(--nx-card); border:1px solid var(--nx-line);
  min-height: 280px; /* 基本高さ */
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  isolation:isolate; /* overlayのブレンドを閉じ込める */
  transition: transform .35s ease, box-shadow .35s ease;
}
.enjoy-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
}

.enjoy-card img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transform: scale(1.02); transition: transform .5s ease;
}
.enjoy-card:hover img{ transform: scale(1.06); }

/* オーバーレイ（グラデ） */
.enjoy-overlay{
  position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end;
  padding:22px;
  background: linear-gradient(to top, rgba(9,13,23,.85) 0%, rgba(9,13,23,.25) 55%, rgba(9,13,23,0) 100%);
  z-index:1;
}
.enjoy-title{
  margin:0 0 6px; font-weight:600;
  font-size: clamp(14px,1.6vw,26px);
  letter-spacing:.01em;
}
.enjoy-text{
  margin:0; color:var(--nx-muted);
  font-size: clamp(13px,1.2vw,16px); line-height:1.65;
}

/* バッジ */
.enjoy-badge{
  position:absolute; top:14px; left:14px; z-index:2;
  font:700 12px/1 "Noto Sans JP";
  padding:8px 10px; border-radius:999px; letter-spacing:.06em;
  color:#021432; background:linear-gradient(135deg,#ffd166,#fbbf24);
  border:1px solid rgba(255,255,255,.5);
  box-shadow:0 6px 14px rgba(0,0,0,.35);
}

/* スパン指定（大きく大胆に） */
.enjoy-card.span2{ grid-column: span 2; }
.enjoy-card.tall{ min-height: 520px; } /* ヒーローの高さ */

@media (max-width: 1100px){
  .enjoy-grid{ grid-template-columns: repeat(3,1fr); }
  .enjoy-card.tall{ min-height: 480px; }
}
@media (max-width: 820px){
  .enjoy-head{ align-items:flex-start; gap:10px; }
  .enjoy-lead{ order:3; width:100%; margin:4px 0 0 0; }
  .enjoy-grid{ grid-template-columns: repeat(2,1fr); gap:14px; }
  .enjoy-card{ min-height: 220px; }
  .enjoy-card.span2{ grid-column: span 2; } /* 横長は2列使う */
}
@media (max-width: 520px){
  .enjoy-grid{ grid-template-columns: 1fr; }
  .enjoy-card.span2{ grid-column: auto; }
  .enjoy-card.tall{ min-height: 380px; }
}


.access {
  max-width: var(--acc-max-width);
  margin: 64px auto;
  padding: 20px 20px;
  color: var(--acc-text);
}

/* ===== Headings ===== */
.access h2 {
  margin: 0 20 24px;
  font: 400 2.5em/1.2 'Do Hyeon',sans-serif;
  letter-spacing: .05em;
  font-feature-settings: "palt" 1;
  color: var(--nx-accent-2); /* サンネクサスオレンジ */
}

.access h2 small {
  margin-left: .5em;
  color: var(--acc-muted);
  font-weight: 400;
  font-size: 16px;
}

/* ===== Venue Card ===== */
.venue {
  margin: 0 0 32px;
  padding: 24px;
  background: var(--acc-bg);
  color: var(--acc-text);
  border: 1px solid var(--acc-border);
  border-radius: 16px;
}

.venue h3 {
  margin: 0 0 4px;
  font: 700 22px/1.25 "Noto Sans JP", system-ui, sans-serif;
}

.addr {
  margin: 0 0 16px;
  color: var(--acc-muted);
}

/* ===== Columns & Map ===== */
.cols {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 左：交通案内／右：地図 */
  gap: 20px;
}

.map {
  overflow: hidden;
  border: 1px solid var(--map-border);
  border-radius: 12px;
}

.map iframe {
  display: block;
  width: 100%;
  height: 360px;
}

/* ===== Button ===== */
.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-text);
  text-decoration: none;
  font-weight: 700;
  transition: filter .15s ease-in-out;
}

.btn:hover {
  filter: brightness(1.08);
}

.btn:focus-visible {
  outline: 2px solid var(--btn-bg);
  outline-offset: 3px;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .cols {
    grid-template-columns: 1fr; /* 1カラムに */
  }
  .map iframe {
    height: 300px;
  }
}
	
/* --- コラージュ --- */
.snx-collage{ max-width:1200px; margin:80px auto; padding:0 20px; }

.snx-collage-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap:16px;
}

@media (max-width: 768px){
  .snx-collage-grid{
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
}

/* 画像は“切らない・全部見せる” */
.snx-collage-grid figure{ margin:0; text-align:center; }
.snx-collage-grid img{
  width:100%;
  height:auto;             /* 縦横比を保持 */
  object-fit:contain;      /* ← トリミングしない */
  background:#000;         /* 余白を黒で埋める（好みで変更可） */
  border-radius:12px;
  display:block;
  box-shadow:0 4px 12px rgba(0,0,0,.25);
  transition:transform .25s ease;
}
.snx-collage-grid img:hover{ transform:scale(1.02); }
.snx-collage-grid figcaption{
  margin-top:8px; font-size:14px; font-weight:600; color:#cbd5e1;
}

/* 以前の“切れる”指定を無効化（重要） */
.snx-collage-grid .snx-item{ height:auto; border-radius:12px; overflow:visible; }
.snx-collage-grid .snx-item img{
  aspect-ratio:auto !important;
  height:auto !important;
  object-fit:contain !important;
}


/* --- Lightbox dialog（小さめ＆ふわっと表示） --- */
#snx-lightbox{
  width:auto;
  max-width: 60vw;   /* ← 小さく */
  max-height: 70vh;  /* ← 小さく */
  padding:0; border:none; background:transparent;
  animation: dlgFade .25s ease;
}
#snx-lightbox::backdrop{ background:rgba(0,0,0,.6); }

#snx-lightbox .snx-frame{
  position:relative; background:#000; border-radius:12px; overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.6);
  transform: scale(.96); opacity:0; animation: zoomIn .28s ease forwards;
}
#snx-lightbox img{
  display:block; max-width:100%; max-height: 60vh; margin:auto;
}
#snx-lightbox .snx-close{
  position:absolute; top:8px; right:8px; width:40px; height:40px;
  border:0; border-radius:50%; background:rgba(0,0,0,.55);
  color:#fff; cursor:pointer; font-size:20px; line-height:40px;
}

/* anim */
@keyframes dlgFade{ from{opacity:0} to{opacity:1} }
@keyframes zoomIn{ from{transform:scale(.96);opacity:0} to{transform:scale(1);opacity:1} }

/* --- Lightbox（シンプル版） --- */
/* --- Lightbox改良版 --- */
#snx-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  cursor: zoom-out; /* 背景に縮小カーソル */
}

#snx-lightbox[open] {
  display: flex !important;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#snx-lightbox .snx-frame {
  position: relative;
  max-width: 80vw;
  max-height: 85vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  cursor: default; /* 画像上では通常カーソル */
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

#snx-lightbox img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ×ボタン（PC/スマホ両対応） */
#snx-lightbox .snx-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 44px;
  text-align: center;
  z-index: 10000;
  transition: all 0.2s ease;
}

#snx-lightbox .snx-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

#snx-lightbox .snx-close:active {
  transform: scale(0.95);
}

/* 閉じ方のヒントテキスト（PC用） */
#snx-lightbox::after {
  content: "画像の外側をクリックで閉じる";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  pointer-events: none;
}

/* スマホでは別のメッセージ */
@media (max-width: 768px) {
  #snx-lightbox::after {
    content: "×ボタンをタップで閉じる";
    font-size: 12px;
  }
  
  #snx-lightbox .snx-frame {
    max-width: 95v

