@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@300;400;500&display=swap');


/* ===== Theme ===== */
:root{
  --bg: #f6f7fb;
  --panel: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: rgba(17,24,39,.12);
  --shadow: 0 12px 30px rgba(0,0,0,.08);
  --shadow2: 0 8px 18px rgba(0,0,0,.08);
  --radius: 18px;
  --radius2: 14px;
  --max: 980px;
}

/* ===== Base ===== */
*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family:"Noto Sans JP","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(59,130,246,.18), transparent 60%),
    radial-gradient(1000px 600px at 95% 0%, rgba(236,72,153,.14), transparent 55%),
    var(--bg);
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.86; }

article{
  width:min(100%, var(--max));
  margin: 14px auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow:hidden;
  padding: 18px;
}

/* ===== Hero ===== */
article.hyoshi{
  width: 100vw;              /* 画面いっぱい */
  max-width: none;           /* 制限解除 */
  margin: 0;                 /* 上下左右の隙間を消す */
  padding: 0;

  height: var(--hyoshi-height, 320px);
  background: var(--hyoshi-bg, none) left center / cover no-repeat;

  border: none;
  border-radius: 0;          /* 角丸を消す */
  box-shadow: none;          /* 影を消す */

  position: relative;
}

/* Hero inner alignment */
article.hyoshi > *{
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

article.hyoshi::before{
  content:"";

  background: linear-gradient(180deg, rgba(0,0,0,.50), rgba(0,0,0,.15) 55%, rgba(0,0,0,.35));
}
article.hyoshi > *{ position:relative; }

article.hyoshi{
  background-position: left center;
}



article.hyoshi h1{
  margin: 0;
  padding: 34px 18px 6px;
  text-align:center;
  font-size: clamp(26px, 5vw, 42px);
  letter-spacing: .02em;
  color: var(--hyoshi-h1-color, #ffffff);
  text-shadow: 0 10px 28px rgba(0,0,0,.35);
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: none;

  color: var(--hyoshi-h1-color, #ffffff);
}

article.hyoshi h2{
  background: none;
  border: none;
  box-shadow: none;
  text-shadow: none;

  color: #ffffff;          /* 白文字 */
  text-align: center;      /* 中央寄せ */

  padding: 0;
  margin-top: 10px;

  font-weight: 400;        /* 落ち着いた太さ */
  letter-spacing: .08em;   /* 上品さ */
}

article.hyoshi p{
  margin: 10px auto 0;
  padding: 0 18px;
  text-align:center;
  font-size: 14px;
  color: var(--hyoshi-p-color, rgba(255,255,255,.88));
}

/* ===== Headings & text ===== */
article h2{
  background-color: #2f2f2f;  /* チャコールグレー */
  color: #ffffff;             /* 白文字 */

  padding: 12px 16px;
  margin: 22px 0 12px;

  text-align: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .08em;

  border-radius: 12px;
}

article p{
  margin: 12px 0;
  line-height:1.75;
  color: rgba(17,24,39,.92);
}
small{ color: var(--muted); }

/* ===== Nav (pill style) ===== */
nav{ margin: 0 0 14px; }
nav ul{
  list-style:none;
  padding:0; margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}
nav li{ border:none; padding:0; }
nav a{
  display:inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  font-weight:600;
}
nav a:hover{
  transform: translateY(-1px);
  transition: .18s ease;
}

/* ===== Utility ===== */
.center{ text-align:center; }
.center img{ margin: 0 auto; }

/* ===== Lists ===== */
ul.contents, ul.shop, ul.ticket, ul.botan{
  list-style:none;
  padding:0; margin: 10px 0 0;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}
li.contents{
  width: 100%;
  padding: 10px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
}
li.shop, li.ticket, li.botan{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 22px rgba(0,0,0,.07);
  padding: 10px;
}

/* ===== Footer ===== */
footer{
  width:min(100%, var(--max));
  margin: 14px auto 28px;
  text-align:center;
}

/* ===== PC ===== */
@media (min-width: 768px){
  article{ padding: 22px; }
  li.contents{ width: 45%; }
  li.shop{ width: 340px; }
  li.ticket{ width: 280px; }
}
