/* =========================================================================
   index-page.css
   index.html 専用スタイル（旧インライン <style> ブロックを集約）
   - KV/slide1 アニメ系は css/topanime.css 側に分離済み
   - 未使用セレクタ（.exhibition--no-header系 / .grandOpen__body）は削除
   ========================================================================= */


/* -----------------------------------------------------------------------
   chiffreSection（数字＋単位／説明の2行ミニマル構成）
   ----------------------------------------------------------------------- */
.chiffreSection {
  gap: clamp(3rem, 6vw, 6rem);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-left: clamp(1rem, 4vw, 5rem);
  padding-right: clamp(1rem, 4vw, 5rem);
}
.chiffreSection .block__chiffre {
  padding-left: 0 !important;
  margin: 0 !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 auto;
  min-width: 200px;
}
.chiffreSection .block__chiffre .chiffre {
  position: static !important;
  left: auto !important;
  top: auto !important;
  display: inline-flex;
  align-items: baseline;
  gap: 0.15em;
  margin-bottom: 0.3rem;
  line-height: 1;
}
.chiffreSection .block__chiffre .bleu {
  font-size: 3.6rem !important;
  line-height: 1;
}
.chiffreSection .block__chiffre .unite {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #FFF;
  letter-spacing: 0.02em;
}
.chiffreSection .block__chiffre p.sous_titre {
  margin: 0;
  font-size: 1rem;
  color: #FFF;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .chiffreSection { gap: 1.2rem; padding: 1rem .6rem 1.6rem; }
  .chiffreSection .block__chiffre .bleu { font-size: 2.4rem !important; }
  .chiffreSection .block__chiffre .unite { font-size: 1.1rem; }
  .chiffreSection .block__chiffre p.sous_titre { font-size: .85rem; }
}


/* -----------------------------------------------------------------------
   ヘッダー：location ピン削除後のロゴ左余白
   ----------------------------------------------------------------------- */
.headerContent {
  padding-top: 10px;
  padding-bottom: 10px;
}
.header__siteNameBloc__name { padding-left: 20px; }
@media (max-width: 640px) {
  .header__siteNameBloc__name { padding-left: 12px; }
}


/* -----------------------------------------------------------------------
   News Block（footer__newsletter の中身を差し替え。黒背景は維持）
   ----------------------------------------------------------------------- */
.footer__newsletter .newsBlock {
  width: 100%;
  padding: 1rem 0;
  color: #fff;
}
.footer__newsletter .newsBlock .news_h2 {
  font-family: 'Bebas Neue', 'Lato', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 0 0 32px;
  color: #fff;
  opacity: 1;
  text-transform: uppercase;
}
.footer__newsletter .newsBlock .news_wrap {
  max-width: 980px;
  margin: 0 auto;
  border-bottom: thin solid #555;
}
.footer__newsletter .newsBlock details.js-details {
  background: transparent;
}
.footer__newsletter .newsBlock summary {
  display: block;
  list-style: none;
}
.footer__newsletter .newsBlock summary::-webkit-details-marker {
  display: none;
}
.footer__newsletter .newsBlock .summary_inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 25px 10px 25px 0;
  border-top: thin solid #555;
  cursor: pointer;
}
.footer__newsletter .newsBlock .summary_inner .txt_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footer__newsletter .newsBlock .summary_inner .date {
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: 'Lato', 'Montserrat', sans-serif;
  text-align: left;
  margin: 0;
  width: 150px;
  color: #fff;
  font-weight: 400;
}
.footer__newsletter .newsBlock .summary_inner .news_txt {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: left;
  font-weight: 300;
  margin: 0;
  color: #fff;
}
.footer__newsletter .newsBlock .detail_icon {
  display: block;
  position: relative;
  width: 16px;
  margin-left: 15px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}
.footer__newsletter .newsBlock details.is-opened .detail_icon {
  transform: rotate(180deg);
}
.footer__newsletter .newsBlock .detail_icon::before,
.footer__newsletter .newsBlock .detail_icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 3px;
  background-color: #b56dff;
}
.footer__newsletter .newsBlock .detail_icon::before {
  left: 0;
  transform: rotate(45deg);
}
.footer__newsletter .newsBlock .detail_icon::after {
  right: 0;
  transform: rotate(-45deg);
}
.footer__newsletter .newsBlock .content {
  overflow: hidden;
}
.footer__newsletter .newsBlock .content_inner {
  padding: 0 10px 30px 0;
}
.footer__newsletter .newsBlock p.inner_txt {
  font-size: 0.95rem;
  line-height: 2;
  text-align: left;
  font-weight: 300;
  margin: 0 0 20px;
  color: #e8e8e8;
}
.footer__newsletter .newsBlock .content_inner .sub_title {
  font-size: 0.9rem;
  line-height: 1.2;
  letter-spacing: 2px;
  margin: 20px 0 10px;
  padding: 5px 20px 7px;
  display: inline-block;
  color: #9ec7dd;
  border: thin solid #6FA3C0;
}
.footer__newsletter .newsBlock .content_inner img {
  margin: 20px 0 40px;
}
.footer__newsletter .newsBlock .hidden_pc { display: none; }
@media screen and (max-width: 640px) {
  .footer__newsletter .newsBlock .news_h2 { font-size: 2.2rem; margin-bottom: 24px; }
  .footer__newsletter .newsBlock .summary_inner { padding: 15px 10px 15px 0; }
  .footer__newsletter .newsBlock .summary_inner .txt_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__newsletter .newsBlock .detail_icon { margin-left: 10px; }
  .footer__newsletter .newsBlock .summary_inner .date { font-size: 0.9rem; width: auto; }
  .footer__newsletter .newsBlock .summary_inner .news_txt { font-size: 0.95rem; line-height: 1.6; }
  .footer__newsletter .newsBlock .hidden_pc { display: inline; }
}


.footer__newsletter .newsBlock p.inner_txt a {
  color: #fff;
  text-decoration: underline;
}



/* -----------------------------------------------------------------------
   グランドオープン告知ブロック
   ----------------------------------------------------------------------- */
.grandOpen {
  background: #fff;
  color: #141414;
  padding: 90px 0 30px;
  position: relative;
  z-index: 5;
}
.grandOpen .grandOpen__inner { max-width: 1200px; width: 92%; margin: 0 auto; }

/* 大見出し（tdp slide2_h2 互換） */
.grandOpen__h2 {
  text-align: center;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #b56dff;
  margin: 0 0 50px;
}
.grandOpen__h2 .sub {
  display: inline-block;
  font-size: 0.6em;
  letter-spacing: 0.02em;
}

/* サブ見出し（プレスリリースの見出し4行：本文より一段大きい程度） */
.grandOpen__notice {
  margin: 0 0 50px;
  padding: 0 0 36px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}
.grandOpen__notice-line {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  margin: 0 0 6px;
  color: #141414;
  letter-spacing: 0.02em;
}
.grandOpen__notice-line:last-child { margin-bottom: 0; }
.grandOpen__notice strong { font-weight: 700; color: inherit; }

@media (max-width: 768px) {
  .grandOpen { padding: 60px 0 20px; }
  .grandOpen__h2 { font-size: 2.4rem; line-height: 1.4; margin-bottom: 36px; }
  .grandOpen__h2 .sub { font-size: 0.6em; display: block; margin-top: 8px; }
  .grandOpen__notice { padding-bottom: 28px; margin-bottom: 36px; }
  .grandOpen__notice-line { font-size: 1rem; line-height: 1.6; }
}


/* -----------------------------------------------------------------------
   Enjoy the experience（白背景・上品な2カラム構成）
   ----------------------------------------------------------------------- */
.enjoyExperience {
  background: #fff;
  color: #141414;
  padding: 100px 0 80px;
  position: relative;
  z-index: 5;
}
.enjoyExperience__h2 {
  text-align: center;
  margin: 0 0 60px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #141414;
}
.enjoyExperience__h2 .en { display: block; }
.enjoyExperience__h2 .ja {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #6503D3;
  margin-top: 8px;
}

/* プログラムブロック：左に画像ギャラリー、右にテキスト（交互配置） */
.programBlock {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 90px;
  padding-bottom: 70px;
  border-bottom: 1px solid #e6e6e6;
}
.programBlock:last-of-type { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.programBlock--short { grid-template-columns: 1fr 1.1fr; }
.programBlock--short .programBlock__media { order: 2; }
.programBlock--short .programBlock__text { order: 1; }

.programBlock__media { position: relative; }
.programBlock__hero {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 6px;
  cursor: zoom-in;
  transition: opacity 0.3s ease;
}
.programBlock__hero:hover { opacity: 0.9; }
.programBlock__thumbs {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.programBlock__thumbs li { margin: 0; }
.programBlock__thumbs a {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
}
.programBlock__thumbs img {
  display: block;
  width: 100%;
  height: 130px;
  object-fit: cover;
  transition: transform 0.4s ease;
  vertical-align: bottom;
}
.programBlock__thumbs a:hover img { transform: scale(1.05); }

.programBlock__text { padding-top: 8px; }
.programBlock__tag {
  display: inline-block;
  padding: 5px 16px;
  background: linear-gradient(90deg, #b56dff, #6503D3);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  border-radius: 3px;
  margin-bottom: 16px;
}
.programBlock--short .programBlock__tag {
  background: linear-gradient(90deg, #6FA3C0, #2c6e8a);
}
.programBlock__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #141414;
  margin: 0 0 14px;
}
.programBlock__subtitle {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #555;
  margin-top: 8px;
  line-height: 1.5;
}
.programBlock__catch {
  font-size: 1rem;
  color: #6503D3;
  font-weight: 600;
  margin: 14px 0 24px;
  letter-spacing: 0.03em;
  line-height: 1.6;
  padding-left: 12px;
  border-left: 3px solid #6503D3;
}
.programBlock--short .programBlock__catch {
  color: #2c6e8a;
  border-left-color: #2c6e8a;
}
.programBlock__body p {
  line-height: 1.9;
  margin: 0 0 14px;
  color: #333;
  font-size: 0.95rem;
}
.programBlock__works {
  margin-top: 18px !important;
  padding: 12px 16px;
  background: #f7f5fb;
  border-radius: 4px;
  font-size: 0.9rem !important;
  color: #333 !important;
}
.programBlock__works strong { color: #6503D3; }
.programBlock--short .programBlock__works { background: #f0f6f9; }
.programBlock--short .programBlock__works strong { color: #2c6e8a; }

@media (max-width: 900px) {
  .enjoyExperience__h2 { font-size: 3.2rem; }
  .programBlock,
  .programBlock--short {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
    padding-bottom: 50px;
  }
  .programBlock--short .programBlock__media { order: 1; }
  .programBlock--short .programBlock__text { order: 2; }
  .programBlock__hero { height: 320px; }
  .programBlock__title { font-size: 2.2rem; }
}


/* -----------------------------------------------------------------------
   FLOOR GUIDE / 館内マップ
   ----------------------------------------------------------------------- */
.floorGuide {
  background: #fff;
  color: #141414;
  padding: 100px 0;
  position: relative;
  z-index: 5;
}
.floorGuide__h2 {
  text-align: center;
  margin: 0 0 60px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #141414;
}
.floorGuide__h2 .en { display: block; }
.floorGuide__h2 .ja {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #6503D3;
  margin-top: 8px;
}

.floorGuide__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 24px;
}
.floorGuide__item--wide { grid-column: span 3; }
.floorGuide__item--wide .floorGuide__visuel img { height: 420px; }

.floorGuide__visuel {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 14px;
  cursor: pointer;
}
.floorGuide__visuel img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  vertical-align: bottom;
}
.floorGuide__item a:hover .floorGuide__visuel img { transform: scale(1.05); }

.floorGuide__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  color: #141414;
  border-bottom: 2px solid #6FA3C0;
  padding-bottom: 6px;
}
.floorGuide__title span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6503D3;
  letter-spacing: 0.04em;
}
.floorGuide__item p {
  margin: 0 0 6px;
  line-height: 1.75;
  font-size: 0.95rem;
  color: #333;
}
.floorGuide__schedule {
  margin-top: 14px !important;
  padding: 12px 16px;
  background: #f4f4f6;
  border-left: 3px solid #b56dff;
  font-size: 0.85rem !important;
  line-height: 1.7 !important;
}
.floorGuide__schedule strong { color: #6503D3; letter-spacing: 0.04em; }

@media (max-width: 1024px) {
  .floorGuide__list { grid-template-columns: repeat(2, 1fr); }
  .floorGuide__item--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .floorGuide__h2 { font-size: 3rem; }
  .floorGuide__list { grid-template-columns: 1fr; }
  .floorGuide__item--wide { grid-column: span 1; }
  .floorGuide__visuel img,
  .floorGuide__item--wide .floorGuide__visuel img { height: 200px; }
}


/* -----------------------------------------------------------------------
   Highlights セクション非表示
   （新規 Enjoy / Floor で内容を網羅したため）
   ----------------------------------------------------------------------- */
.avis__clients { display: none !important; }


/* -----------------------------------------------------------------------
   画像モーダル（共通：写真クリックで拡大）
   要素は js/img-modal.js で動的生成される
   ----------------------------------------------------------------------- */
.imgModal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;              /* 常に flex（visibility で表示制御） */
  visibility: hidden;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  cursor: zoom-out;
}
.imgModal.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.25s ease, visibility 0s;
}
.imgModal__inner {
  max-width: 92vw;
  max-height: 88vh;
  position: relative;
  text-align: center;
}
.imgModal__img {
  max-width: 92vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}
.imgModal__caption {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-top: 14px;
  font-family: "Noto Sans JP", sans-serif;
}
.imgModal__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
}
.imgModal__close:hover { color: #b56dff; }
