@charset "utf-8";
/* CSS Document */

/* ----------------------------------------------
   グローバルスタイル (ベースリセット)
---------------------------------------------- */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Nunito:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Grand+Hotel&family=Rampart+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mochiy+Pop+P+One&display=swap");

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  word-wrap: break-word; /* レガシーサポート */
  word-break: break-word; /* モダンブラウザ対応 */
  overflow-wrap: break-word; /* 推奨プロパティ */
  white-space: normal; /* テキストが改行可能に */
}

html {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: var(--primary-font-color);
  background-color: var(--background-color);
}

body {
  font-size: 1rem;
  line-height: 1.5;
  background-image: url("../x_imgs/common/back-photo-4.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  padding-bottom: 155px;
}

.pc-none {
  display: block;
}
.sp-none {
  display: none;
}

/* スマホ用設定 */
@media screen and (max-width: 768px) {
  body {
    background: none;
    padding-bottom: 110px;
  }
  .pc-none {
    display: none;
  }
  .sp-none {
    display: block;
  }
}

/* 全体ブロック */
.seo-btm {
  width: 95%;
  max-width: 780px;
  margin: 35px auto 20px;
  color: #000 !important;
  font-size: 90%;
  text-align: center;
  position: relative;
}

/* 本文ボックス（角丸＋影） */
.seo-btm-content {
  /* ★柔らかい2色グラデーション背景（縦方向） */
  background: linear-gradient(180deg, #fefaf4 0%, #e1eff7 100%);

  border: #d6d6d6 1px solid;
  border-radius: 14px;
  padding: 50px 22px 24px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
}

/* h2ラベル（中央に浮かせる・幅80%） */
.seo-btm h2 {
  width: 90%; /* ← ★希望の80%幅 */
  max-width: 520px; /* ← 大画面で幅が広がりすぎないよう軽く制御 */
  display: block;
  margin: 0 auto;
  background: #f8f8f8;
  border: #ccc 1px solid;
  padding: 10px 0;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  border-radius: 14px;
  position: absolute;
  top: -16px; /* ← より自然な重なり位置 */
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

/* 本文内リンク */
.seo-btm a {
  text-decoration: none;
  background: none;
  color: #0070c9;
  font-weight: 700;
}

picture {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: 0px auto;
}
/* 吹き出し本体（目立つ版） */
.speech-bubble {
  position: relative;
  display: block;
  width: 96%;
  max-width: 900px;
  margin: 24px auto 28px; /* 少し余白を大きめに */
  padding: 16px 20px;
  background: #ffffff; /* ほぼ真っ白にして背景とコントラストを付ける */
  border-radius: 18px;
  border: 3px solid #ff6fae; /* ピンク枠で存在感UP */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  font-weight: 600; /* 少しだけ太字に */
}

.speech-bubble span {
  border-bottom: #ff3399 2px dotted;
}

/* 下向きの三角（中央） */
.speech-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;

  width: 0;
  height: 0;
  border-width: 12px 12px 0 12px; /* 少し大きめの三角 */
  border-style: solid;
  border-color: #ff6fae transparent transparent transparent;
}

/* 三角の中を白で抜いて枠線と馴染ませる */
.speech-bubble::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 0;
  height: 0;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  margin-top: -3px;
}

.movie_howto {
  width: 96%;
  max-width: 800px;
  margin: 20px auto 35px;
  padding: 16px 22px;

  text-align: center;
  font-size: 0.9rem;
  line-height: 1.3;
  color: #444;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);

  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.movie_howto span {
  color: #09a5c0;
}

/* スマホ調整 */
@media (max-width: 600px) {
  .movie_howto {
    padding: 14px 16px;
    font-size: 0.8rem;
    line-height: 1.3;
  }
}

/* ----------------------------------------------
   ユーティリティクラス
---------------------------------------------- */

h1 {
  font-size: 1rem;
  margin: 5px auto 0px auto;
  padding: 10px 12px;
  width: 98%;
  max-width: 1200px;
  text-align: left;
  font-weight: normal;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;

  color: #fff;

  /* --- 青×グレーの中間色で落ち着いた帯 --- */
  background: linear-gradient(
    135deg,
    #10b0cc,
    /* 少し明るいダークブルー */ #049db8 /* グレー寄りの深い青 */
  );

  /* 立体感をつけつつ控えめ */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.3);

  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

h2 {
  font-size: 1.4rem;
  margin: 0;
  font-weight: normal;
  line-height: 1.9rem;
}

h3 {
  font-size: 1rem;
  margin: 0;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 0.8rem;
    border-radius: 0px;
    width: 100%;
    margin-bottom: -2px;
    box-shadow: 0;
    padding: 8px 6px;
  }
}

/* ----------------------------------------------
   ヘッダーフッター
---------------------------------------------- */

/* Header */
.header {
  width: 100%;
  text-align: center;
  margin: 0;
}

.header p.tel {
  margin: 0;
  font-family: "Roboto", sans-serif; /* モダンで視認性の高いフォント */
  font-size: 30px; /* 大きく目立たせる */
  font-weight: 300; /* スリムな印象 */
  text-transform: uppercase; /* すべて大文字に */
  letter-spacing: 2px; /* 文字間隔を広く */
  background: var(--primary-color);
  color: #fff;
  word-break: keep-all;
}

.header p.tel a {
  text-decoration: none;
  color: #fff;
}

.header p.salestime {
  margin: 0;
  padding: 6px 0;
  font-size: 100%;
  background: #000;
  color: #eee;
  word-break: keep-all;
}

.header img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.header__logo {
  font-size: 24px;
  font-weight: bold;
}

.header__nav {
  display: flex;
  list-style: none;
  gap: 20px;
}

.header__nav-item {
  font-size: 16px;
}

.header__nav-link {
  color: #fff;
  text-decoration: none;
}

/* Footer */
.footer {
  margin: 10px auto 0px auto;
  width: 100%;
  max-width: 1180px;
  padding: 20px 10px 15px 10px;
  font-size: 0.8rem;
  border-radius: 8px;
  text-align: center;
  color: var(--footer-font-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  background: linear-gradient(
    180deg,
    #fdf3e3 0%,
    #fbeccd 45%,
    #fdf4e4 100%
  ); /* #FBECD3ベースのベージュ系 */
}

.footer a {
  text-decoration: none;
  color: #666;
}

.footer p {
  font-size: 0.6rem;
  color: #666;
  margin: 0px auto 8px auto;
  text-align: center;
}

.footer__logo {
  font-size: 24px;
  font-weight: bold;
}

.footer__nav {
  display: flex;
  list-style: none;
  gap: 20px;
}

.footer__nav-item {
  font-size: 16px;
}

.footer__nav-link {
  color: #fff;
  text-decoration: none;
}

#dimensions {
  font-size: 0.8rem;
  color: #333;
}

.schedule_btn_wrap {
  margin: 0px auto 15px auto;
  text-align: center;
}

.schedule_btn_wrap a {
  margin: 5px;
  padding: 10px 14px;
  font-size: 0.8rem;
  background-color: #eee;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}

.schedule_btn_wrap a.ck {
  background: #0098f6;
  color: #fff;
}

.schedule_btn_wrap a:hover {
  background: #0098f6;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .header {
    margin-top: 0px;
  }

  .schedule_btn_wrap a {
    margin: 3px;
    padding: 8px;
    font-size: 0.8rem;
  }

  .footer {
    width: 90%;
    margin: 10px auto 35px auto;
  }
}

/* ----------------------------------------------
  コンテンツ ブロック別
---------------------------------------------- */

#wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0px auto 15px auto;
  padding: 0px 5px 35px 5px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;

  background-image: url("../x_imgs/common/wrapper-back.png");
  background-repeat: repeat-y;
  background-position: center;
  background-size: 100% auto;
  background-attachment: fixed; /* 背景を固定 */
}

.wrap_color {
  margin: 0px auto;
  width: 100%;
  max-width: 1280px;
  padding: 0px;
  box-sizing: border-box;
}

/*
.wrap_color.white{		background: #FFFFFF;	}
.wrap_color.gray{		background: #EEEEEE;	}
.wrap_color.pink{		background: #FDE1F3;	}
.wrap_color.l-blue{		background: #e9ecff;	}
.wrap_color.l-green{	background: #f9feef;	}
*/

.slider-pro-wrap {
  width: 96%;
  max-width: 1000px;
  margin: 0px auto;
}

.contents-header {
  width: 100%;
  max-width: 1200px;
  margin: 0px auto 15px auto;
  text-align: left;
  font-size: 1.6rem;
  padding: 4px 0px 4px 10px;
  line-height: 1.2rem;
  border-left: var(--primary-color) 10px solid;
  color: var(--primary-color);
}

.contents-header span {
  font-size: 0.6rem;
}

.contents-name {
  width: 96%;
  max-width: 1200px;
  margin: 20px auto;
  text-align: center;
}

.contents-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
}

.contents-container.wh-auto {
  width: auto;
}

.contents-container div.h-img {
  width: auto;
  max-width: 100%;
  margin: 0px auto;
}

.contents-container div.h-img img {
  width: 100%;
  margin: -7px auto 0px auto;
  max-width: 800px;
  display: block;
}

.contents__left-block,
.contents__right-block {
  box-sizing: border-box;
  width: 50%;
  margin: 0;
  padding: 0;
  vertical-align: top; /* 上詰め */
}

.contents__left-block.w100 img,
.contents__right-block.w100 img {
  width: 100%;
}

.contents__left-block.w98 img,
.contents__right-block.w98 img {
  width: 98%;
  display: block;
  margin: 0 auto 5px auto;
}

.contents__left70-block {
  box-sizing: border-box;
  width: 70%;
  padding: 10px;
  vertical-align: top; /* 上詰め */
}

.contents__right30-block {
  box-sizing: border-box;
  width: 30%;
  padding: 10px;
  vertical-align: top; /* 上詰め */
}

.contents__wp33-block {
  box-sizing: border-box;
  width: 33.3%;
  padding: 10px;
  vertical-align: top; /* 上詰め */
}

.contents__left-block ul,
.contents__right-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contents__left-block li,
.contents__right-block li {
  padding: 5px 0; /* 個別のliに影響を与えない調整 */
}

/* スマホ向けレイアウト */
@media screen and (max-width: 768px) {
  #wrapper {
    width: 100%;
    border-radius: 0px;
  }
  .contents-header {
    width: 100%;
  }

  .contents__left-block,
  .contents__right-block,
  .contents__left70-block,
  .contents__right30-block,
  .contents__wp33-block {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

/* タイトル全体 */
.pool-title2 {
  text-align: center;
  margin: 20px auto 20px;
}

/* ===== 日本語タイトル（必須フォント指定） ===== */
.pool-title2 h2 {
  margin: 0;
  font-size: 2rem;
  font-family: "Mochiy Pop P One", sans-serif;
  font-weight: 400;
  font-style: bold;
  color: #ff2e86;
  letter-spacing: -0.03em; /* ← 文字間を少し詰める */

  /* 白縁（太め） */
  -webkit-text-stroke: 1px #ffffff;

  /* ふわっと光らせる影 */
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.9);
}

/* ===== 英字タイトル ===== */
.pool-title2 p {
  margin: 3px 0 5px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;

  /* 白縁（太め） */
  -webkit-text-stroke: 0.7px #ffffff;

  /* ふわっと光らせる影 */
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.9);
}

/* ===== 飾りライン画像 ===== */
.pool-title2 .dec-line {
  display: block;
  width: 260px; /* 最大300px →好みで調整可 */
  max-width: 85%;
  margin: 0 auto;
}

/* ----------------------------------------------
  コンテンツ説明用
---------------------------------------------- */
.section-desc {
  width: 96%;
  max-width: 820px;
  margin: 10px auto 15px;
  padding: 12px 20px;

  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(5px);

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);

  color: #2a3f70;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;

  position: relative;
}

.section-desc::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 6px;

  background: linear-gradient(
    to right,
    rgba(0, 180, 255, 0),
    rgba(0, 180, 255, 0.6),
    rgba(0, 180, 255, 0)
  );

  border-radius: 3px;
}

@media screen and (max-width: 768px) {
  .section-desc {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/* ----------------------------------------------
  ページ別ブロック
---------------------------------------------- */

.img_wrap {
  margin: 0px auto;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.img_wrap img {
  width: 100%;
  max-width: 1000px;
  margin-bottom: 30px;
}

.text_wrap {
  margin: 0px auto;
  width: 100%;
  max-width: 1200px;
  text-align: left;
}

/* ----------------------------------------------
   スタッフスライド
---------------------------------------------- */

.swiper-container {
  width: 100%;
  max-width: 1200px;
}

.swiper-container .swiper-slide img {
  max-width: 100%;
  height: auto;
}

.top-newface {
  width: 100%;
  margin: 0px auto;
}

.top-newface .detail {
  padding: 4px;
  background: #fffff0;
  border: 2px solid #65d240;
  text-align: center;
}

.top-newface .detail .day {
  background: #65d240;
  padding: 8px 0;
  color: #ff0;
  font-size: 1rem;
  font-weight: bold;
}

.top-newface .detail .name {
  background: #fb4797;
  height: 35px;
  padding: 5px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
}

.top-newface .detail .age {
  padding: 5px 0;
  font-size: 1rem;
  font-weight: bold;
}

.top-newface .detail .size {
  padding: 5px 0;
  border-top: 1px dashed #bbb;
  font-size: 0.9rem;
}

@media screen and (max-width: 599px) {
  .top-newface {
    width: 100%;
  }

  .top-newface .detail {
    padding: 4px;
    font-size: 0.8rem;
  }

  .top-newface .detail .day {
    font-size: 0.7rem;
  }

  .top-newface .detail .name {
    height: 28px;
    font-size: 0.75rem;
  }

  .top-newface .detail .age {
    font-size: 0.8rem;
  }

  .top-newface .detail .size {
    font-size: 0.7rem;
  }
}

/* =========================================================
 * コンセプト：タイムライン風ステップガイド
 * wrap_color white 内専用デザイン
 * =======================================================*/

.wrap_color.white .use-guide {
  width: 95%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0px 16px 50px;
  color: #24324f;
}

.use-guide-header {
  text-align: center;
  margin-bottom: 18px;
}

.use-guide-label {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6fb3, #62c5ff);
}

.use-guide-title {
  font-size: 1.6rem;
  margin: 0 0 10px;
  letter-spacing: 0.06em;
}

.use-guide-lead {
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 720px;
}

/* ---- ステップ一覧（タイムライン） ---- */
.use-guide-steps {
  position: relative;
  margin-top: 30px;
  padding-left: 24px;
}

/* タイムラインの縦線 */
.use-guide-steps::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #62c5ff, #ff6fb3);
  opacity: 0;
}

/* 各ステップカード */
.use-step {
  position: relative;
  margin-bottom: 20px;
  padding: 16px 18px 18px 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* ステップ番号の丸 */
.use-step-num {
  position: absolute;
  left: -14px;
  top: 16px;
  transform: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; /* 文字に余裕を持たせる */
  height: 40px;
  border-radius: 50%;
  font-size: 0.6rem; /* 数字を大きくして視認性UP */
  font-weight: 800; /* 太字強めで読みやすく */
  letter-spacing: 0.02em;

  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35); /* 白文字をクッキリ */

  background: linear-gradient(135deg, #ff6fb3, #62c5ff);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9);
}

/* ステップタイトル */
.use-step-head {
  margin-bottom: 6px;
}

.use-step-title {
  font-size: 1.05rem;
  margin: 0;
}

/* ステップ本文 */
.use-step-text {
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 6px 0 0;
}

/* =============================
 * レスポンシブ
 * ===========================*/
@media (max-width: 768px) {
  .wrap_color.white .use-guide {
    padding: 10px 0px 10px;
  }

  .use-guide-title {
    font-size: 1.35rem;
  }

  .use-guide-lead {
    font-size: 0.9rem;
  }

  .use-guide-steps {
    padding-left: 20px;
  }

  .use-step {
    padding: 14px 14px 16px 40px;
  }

  .use-step-title {
    font-size: 1rem;
  }

  .use-step-text {
    font-size: 0.88rem;
  }
}

@media (min-width: 1024px) {
  .wrap_color.white .use-guide {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}

/* ============================
 * LINE 登録カード：固定位置ラッパ
 *  - 右上固定
 *  - 上から「にょきっ」とスライドイン
 * ============================ */
.line-register-card-wrap {
  position: fixed;
  right: 16px;
  top: 16px; /* ← 上部固定に変更 */
  bottom: auto; /* ← 念のためリセット */
  z-index: 200000;

  /* 初期状態：上に隠しておく＆クリック不可 */
  opacity: 0;
  transform: translateY(-20px); /* ← 上方向にオフセット */
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* スクロール後に表示（JS で .is-visible を付与） */
.line-register-card-wrap.is-visible {
  opacity: 1;
  transform: translateY(0); /* ← 下方向にスライドイン */
  pointer-events: auto;
}

/* フェードアウト時（やめる / 登録する クリック後） */
.line-register-card-wrap.is-hidden {
  opacity: 0;
  transform: translateY(-20px); /* ← 再び上に引っ込める */
  pointer-events: none;
}

/* ============================
 * LINE 登録カード（左右2カラム本体）
 * ============================ */
.line-register-card {
  max-width: 380px;
  margin: 0; /* 位置決めはラッパで行う */
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-sizing: border-box;
}

/* 左：アイコンのみ */
.line-register-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
}

.line-register-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

/* 右：テキスト＋ボタン縦配置 */
.line-register-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* タイトル（右側） */
.line-register-title {
  font-weight: 700;
  font-size: 0.95rem;
}

/* 説明文 */
.line-register-body ul {
  margin: 0;
  padding-left: 1.2em;
}

.line-register-body li {
  margin: 3px 0;
  line-height: 1.4;
}

/* ボタン行（横並び） */
.line-register-actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.line-register-btn {
  flex: 0 0 auto;
  min-width: 92px;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 5px;
  border: 1px solid #bbb;
  cursor: pointer;
  background: #f5f5f5;
  color: #333;
  text-align: center;
}

/* 登録ボタン（ピンク系） */
.line-register-btn--primary {
  background: linear-gradient(135deg, #ffd7df, #f6a3b5);
  border-color: #f090a8;
  color: #4a1b24;
  font-weight: 700;
}

/* ホバー（PCのみ） */
@media (hover: hover) and (pointer: fine) {
  .line-register-btn:hover {
    filter: brightness(1.05);
  }
}

/* スマホ幅調整：右上に置いたまま幅だけ合わせる */
@media (max-width: 480px) {
  .line-register-card-wrap {
    right: 8px;
    top: 8px;
  }
  .line-register-card {
    max-width: 92vw;
  }
}

/* =========================================================
 * イベント情報ブロック
 *  タイトル・説明文・画像の順に並ぶ
 * =======================================================*/

.event_list {
  width: 98%;
  max-width: 880px;
  margin: 10px auto;
}

.event_list .ev-title {
  font-size: 1.22rem;
  color: #fff;
  text-align: center;

  /* 余白・丸み */
  padding: 6px 18px;
  margin: 18px auto 12px;
  border-radius: 999px;

  /* 上品グラデーション */
  background: linear-gradient(to bottom, #11bddf 0%, #0daac6 100%);

  /* 細い縁取りで高級感UP */
  border: 2px solid rgba(255, 255, 255, 0.5);

  /* 内側シャドウだけで品よく（外へ影響なし） */
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.35),
    inset 0 0 10px rgba(0, 0, 0, 0.15);

  /* テキストの読みやすさを上げる “超控えめグロウ” */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.event_list .ev-msg {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #0daac6;

  width: 95%;
  margin: 12px auto;
  padding: 10px 16px;
  border-radius: 12px;

  background: #ffffff;

  /* 上質感のある「うっすら縁取り」 */
  border: 1px solid rgba(13, 170, 198, 0.25);

  /* 周囲に影響を出さない “内側だけ” の質感UP */
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.06),
    inset 0 2px 5px rgba(13, 170, 198, 0.12);

  /* 読みやすさのための文字の軽いスムース処理 */
  -webkit-font-smoothing: antialiased;
}

.event_list img {
  width: 98%;
  max-width: 800px;
  display: block;
  margin: 8px auto 16px;

  border-radius: 12px;

  /* うっすら白フレームでポスター感を出す */
  border: 2px solid rgba(255, 255, 255, 0.9);

  /* 周囲への影響を抑えたやさしいドロップシャドウ */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18), 0 0 8px rgba(255, 255, 255, 0.3);
}

/* =========================================================
 * アクセス案内ブロック
 *  - 写真＋テキストのカードを8個ほど並べる想定
 *  - SP：1列（写真 → テキスト）
 *  - PC：2列グリッドで、スカスカ感を減らす
 * =======================================================*/

/* 全体ラッパ：グリッド配置 */
.access-list {
  width: 96%;
  max-width: 1100px;
  margin: 20px auto 20px;
  display: grid;
  grid-template-columns: 1fr; /* SP：1列 */
  gap: 16px; /* カード同士の余白 */
}

/* PCは2列に */
@media (min-width: 768px) {
  .access-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
  }
}

/* 1つのカード本体 */
.access-item {
  display: flex;
  flex-direction: column; /* SP：縦積み（画像→テキスト） */
  gap: 10px;
  padding: 14px 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* PCでは画像＋テキストを横並びにしてスカスカ感を減らす */
@media (min-width: 768px) {
  .access-item {
    flex-direction: row;
    align-items: stretch;
  }
}

/* 写真ブロック（共通） */
.access-photo {
  position: relative;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #e9eef3;
}

/* --- SP（〜767px）：画像本来の縦横比をそのまま使用 --- */
@media (max-width: 767px) {
  .access-photo img {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* --- PC（768px〜）：高さ揃え用の疑似要素＋横並びレイアウト --- */
@media (min-width: 768px) {
  .access-photo {
    flex: 0 0 42%; /* カード幅の約4割を画像に */
  }

  /* 比率固定（高さを揃える） */
  .access-photo::before {
    content: "";
    display: block;
    padding-bottom: 68%;
  }

  .access-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* テキスト部分 */
.access-body {
  flex: 1;
  padding: 4px 2px 0;
}

/* 見出し */
.access-title {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}

/* 説明文（短め前提なので少し大きめ＆行間広め） */
.access-text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #555;
}

/* PCではカード内余白を少し広げて“ちゃんとした案内感”を出す */
@media (min-width: 1024px) {
  .access-item {
    padding: 16px 18px 20px;
  }

  .access-title {
    font-size: 1rem;
  }

  .access-text {
    font-size: 0.9rem;
  }
}

/* もし番号を付けたいとき用のバッジ（任意） */
.access-item[data-step] {
  position: relative;
}

.access-item[data-step]::before {
  content: attr(data-step);
  position: absolute;
  top: 8px;
  left: 10px;
  min-width: 24px;
  padding: 2px 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6fb3, #62c5ff);
  box-shadow: 0 0 0 2px #fff;
}

/* バッジと被らないようにタイトルを少し右に寄せる */
.access-item[data-step] .access-body {
  padding-left: 6px;
}
