@charset "UTF-8";
:root {
  --bg-pink-light: #fff5f6;   /* チラシのトーンに合わせた、清潔感のある薄いピンク */
  --accent-coral: #ff4a52;     /* より鮮やかで視認性を高めたアクセントレッド */
  --text-dark: #333;        /* コントラストを上げるため、少し暗めの濃紺グレー */
  --card-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* 影を少し強めて立体感を強調 */
  --line-color: #ff9b9b;
}

/* 全体ベース調整 */
html {
  overflow-x: hidden;
}
body {
  width: 100%;
  color: var(--text-dark);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
/* 全体のフォントを丸ゴシック体に指定。読み込めない場合の予備にsans-serifを設定 */
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

a img:hover { opacity: 0.7;}
/* 通常時：親要素（今回はpタグの白）と同じ色を適用し下線を消す */
a.link-text {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* ホバー時：色や下線の変化を起こさず状態を維持 */
a.link-text:hover {
  color: var(--accent-coral);
  text-decoration: underline;
}
a, button {
  position: relative;
  z-index: 10;
}
/* 強調したい部分のマーカー装飾 */
.highlight {
  background: linear-gradient(transparent 70%, #ffc7ca 70%);
}
/* 共通コンテナの左右余白調整 */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  box-sizing: border-box; /* パディングが幅に合算されるのを防止 */
}

/* セクションのモダンな広い上下余白 */
section {
  width: 100%;
  padding: 120px 0;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/* 共通コンポーネントのメリハリ強化 */
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
}
/* 見出しの上の線 */
.section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent-coral);
  width: 100%;
  height: 2px;
  background-color: var(--accent-coral);
}
/* 見出しの下の線 */
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-coral);
}

.section-subtitle {
  display: block;
  font-size: 1.3rem;
  color: var(--accent-coral);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.section-description {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .section-title { font-size: 1.7rem; display:block; }
  .section-description { font-size: 1rem; margin-bottom: 40px; }
}

/* アウトラインボタン */
.button--outline {
  display: inline-block;
  background-color: #fff;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
  font-size: 1.8rem;
  font-weight: bold;
  padding: 14px 36px;
  border-radius: 6px;
  transition: all 0.2s ease;
  max-width: 100%;
  box-sizing: border-box;
}
.button--outline:hover {
  background-color: var(--primary-color);
  color: #ffffff !important;
  filter: none; 
}

/* ヘッダー */
.header {
  width: 100%;
  background-color: #ffffff;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  box-sizing: border-box;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* スマホで崩れないよう折り返し許可 */
}
/* ヘッダー
   ============================================================ */
.header__logo {
  /* 大きな文字サイズ指定をリセットして干渉を防ぐ */
  font-size: 0;
  line-height: 0;
  
  /* 親要素（flex）の中央揃えを効かせるための指定 */
  display: flex;
  align-items: center;
}

/* ロゴ画像のズレとサイズを調整 */
.header__logo img {
  display: block;
  max-height: 25px;
  width: auto;
}

.header__organizer {
  font-size: 1rem;
  color: #718096;
  font-weight: 600;
}

@media (max-width: 576px) {
  .header__container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    justify-content: center;
  }
}

/* ヒーローセクション
   ============================================================ */
.hero {
  width: 100%;
  background-color: var(--bg-pink-light);
  padding: 50px 0; /* PC用の上下余白 */
  box-sizing: border-box;
  text-align: center;
}

/* 3つの要素を横並びにする親要素 */
.hero__outer-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
  box-sizing: border-box;
}

/* 中央テキストコンテナ */
.hero__container {
  flex: 0 1 640px;
  position: relative;
  z-index: 20;
  text-align: center;
}

/* 左右イラストの共通設定 */
.hero__ill-left,
.hero__ill-right {
  flex: 0 1 380px;
  min-width: 120px;
}

.hero__ill-left img,
.hero__ill-right img {
  width: 100%;
  height: auto;
  display: block;
}

/* レスポンシブ：980px以下（タブレット・スマホ）
   ------------------------------------------------------------ */
@media (max-width: 980px) {
  .hero {
    padding: 40px 0;
  }

  .hero__outer-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .hero__container {
    flex: 0 0 100%;
    order: 1;
  }
  
  .hero__ill-left {
    flex: 0 1 200px;
    order: 2;
  }
  
  .hero__ill-right {
    flex: 0 1 200px;
    order: 3;
  }
}

@media (max-width: 480px) {
  .hero__ill-left,
  .hero__ill-right {
    flex: 0 1 130px;
  }
}
/* 手書き風の赤波下線
   ============================================================ */
.wavy-underline {
  /* 下線（underline）を波線（wavy）にし、チラシに合わせた赤色（accent-coral）に指定 */
  text-decoration: underline wavy var(--line-color);
  
  /* 波の太さを調整（文字サイズに合わせて適度な太さに設定） */
  text-decoration-thickness: 3px;
  
  /* 文字と波線の隙間を少し開けて読みやすくする調整 */
  text-underline-offset: 6px; 
}
.hero__badge {
  display: inline-block;
  background-color: #ffffff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 2.0rem;
  font-weight: 800;
  margin-bottom: 15px;
  box-shadow: 0 4px 20px rgba(255, 74, 82, 0.08);
  color: var(--accent-coral);
  max-width: 100%;
  box-sizing: border-box;
}
.hero__lead {
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.hero__title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.hero__description {
  font-size: 1.25rem;
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto 30px auto;
}
.hero__meta {
  font-size: 1.3rem;
  margin-top: 0px;
  color: #718096;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero__lead { font-size: 1.1rem; }
  .hero__badge {font-size: 0.9rem;}
  .hero__title { font-size: 2.4rem; word-break: normal; overflow-wrap: anywhere; }
  .hero__description { font-size: 1.05rem; margin-bottom: 35px; }
  .sp-only { display: block; }
}
@media (min-width: 769px) {
  .sp-only { display: none; }
}

.survey-info{background-color: #f0f0f0;}
/* 主旨説明ボックス */
.survey-info__box {
  max-width: 850px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 60px 50px;
  border-radius: 16px;
  border: 2px solid var(--accent-coral);
  box-shadow: 0 5px 10px rgba(141, 141, 141, 0.5);
  box-sizing: border-box;
}
.survey-info__text {
  font-size: 1.15rem;
  line-height: 1.9;
  text-align: center;
}
.survey-info__btn {
  display: inline-block;
  background-color: var(--primary-color);
  padding: 16px 48px;
  font-weight: bold;
  font-size: 1.15rem;
  border-radius: 8px;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .survey-info__box { padding: 35px 20px; }
  .survey-info__text { font-size: 1rem; text-align: left; }
  .survey-info__btn { width: 100%; padding: 14px 20px; font-size: 1rem; }
}

.slow-gradient-section {
  width: 100%;
  min-height: 80vh; /* デモ用に高さを確保 */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  box-sizing: border-box;
  
  /* --- グラデーションの背景設定 --- */
  background: linear-gradient(-45deg, #ffd3d6, #ffebee, #e8ecef, #f5eff5);
  background-size: 400% 400%;
  animation: gradient-animation 10s ease-in-out infinite;
  box-shadow: inset 0 15px 15px -15px rgba(0, 0, 0, 0.05);
}
/* --- アニメーションの定義 --- */
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%; /* 左中 */
  }
  50% {
    background-position: 100% 50%; /* 右中 */
  }
  100% {
    background-position: 0% 50%; /* 左中に戻る */
  }
}

/* 3カラムカード配置・カラム落ち＆はみ出し対策 */
.about-list {
  background-color: #f8fafc;
}

.style-cards-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: nowrap; /* base.cssの干渉による意図しない折り返しを防止 */
}

.card {
  flex: 1;          /* 3つのカードを均等な幅に引き伸ばす */
  min-width: 0;     /* テキストのはみ出しによるカード崩れ調整 */
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(120, 120, 120, 0.3);
  box-sizing: border-box;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card__body {
  padding: 45px 35px;
  box-sizing: border-box;
}

/* タブレット・スマホ画面（画面幅992px以下）での縦並び設定 */
@media (max-width: 992px) {
  .style-cards-grid { flex-direction: column; gap: 25px; }
  .card { width: 100%; }
  .card__body { padding: 30px 20px; }
}
.card__title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 3px solid #edf2f7;
  text-align: center;
}

.card__list li {
  font-size: 1rem;
  margin-bottom: 16px;
  position: relative;
  padding-left: 22px;
  font-weight: 500;
}
.card__list li::before {
  content: "?";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: 900;
}

/* 展示会案内＆メール登録セクション
   ============================================================ */
.event-info {
  background-color: #ffffff;
}

/* 上部リード文 */
.event-info__top-lead {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  display: inline-block;
  margin: 0 0 3rem 0;
  line-height: 1.6;
}

/* 2カラムレイアウト */
.event-info__grid {
  display: flex;
  gap: 40px;
  box-sizing: border-box;
}

/* 左右のカード共通 */
.event-info__card, 
.event-info__cta {
  flex: 1;
  min-width: 0;
  padding: 55px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  box-sizing: border-box;
}
.event-info__card {
  background-color: var(--bg-pink-light);
  border: 2px solid rgba(255, 74, 82, 0.15);
}
.event-info__cta {
  background-color: #ffffff;
  border: 2px solid #edf2f7;
}

/* カード内の各パーツ */
.event-info__status {
  display: inline-block;
  background-color: var(--accent-coral);
  color: #ffffff;
  padding: 5px 14px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 4px;
  margin-bottom: 24px;
}
.event-info__card-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.4;
}
.event-info__lead {
  font-size: 1.05rem;
  color: var(--accent-coral);
  font-weight: 800;
  margin-bottom: 20px;
}
.event-info__text, 
.event-info__cta-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #4a5568;
  line-height: 1.8;
}
.event-info__cta-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* 開催詳細（定義リスト型） */
.event-info__details {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border: 2px solid rgba(255, 74, 82, 0.1);
}
.event-info__details dl {
  display: grid;
  grid-template-columns: 4em 1fr;
  gap: 12px 10px;
  font-size: 1.1rem;
  line-height: 1.5;
  align-items: center;
}
.event-info__details dt {
  font-weight: 800;
  color: var(--accent-coral);
}
.event-info__details dd {
  color: var(--text-dark);
}
.event-info__details dd strong {
  font-size: 1.1rem;
  color: #000000;
}

/* 無料バッジ */
.badge-free {
  display: inline-block;
  background-color: #f7fafc;
  color: var(--accent-coral);
  border: 1px solid var(--accent-coral);
  padding: 2px 8px;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 4px;
  margin-right: 4px;
}

/* CTA側リスト */
.event-info__cta-notes {
  font-size: 1rem;
  color: #718096;
  padding-left: 5px;
}
.event-info__cta-notes li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}
.event-info__cta-notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: var(--accent-coral);
}

/* --- レスポンシブ設定（スマホ用を1箇所に集約） --- */
@media (max-width: 768px) {
  .event-info__top-lead {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .event-info__grid {
    flex-direction: column;
    gap: 25px;
  }
  .event-info__card, 
  .event-info__cta {
    padding: 30px 20px;
  }
  .event-info__card-title {
    font-size: 1.5rem;
  }
  .event-info__details dl {
    grid-template-columns: 3em 1fr;
    font-size: 1rem;
  }
}


/* ボトムCTA */
.bottom-cta {
  width: 100%;
  background-color: var(--text-dark);
/* 70%の濃さの黒透過レイヤー（rgba）と背景画像を重ねて指定 */
  background-image: linear-gradient(rgba(30, 30, 30, 0.75), rgba(30, 30, 30, 0.75)), url('../img/hero-right.png');
  background-size: cover;          /* 画像を領域全体に隙間なくフィット */
  background-position: bottom 90% center;     /* 画像の中心を基準に表示 */
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
  padding: 110px 0;
  box-sizing: border-box;
}
.bottom-cta__title {
  font-size: 1.8rem;
  font-weight: 800;
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.bottom-cta__text {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 45px;
}
.bottom-cta__btn {
  display: inline-block;
  background-color: var(--accent-coral);
  border-color: var(--accent-coral);
  padding: 18px 54px;
  font-size: 1.35rem;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(255, 74, 82, 0.3);
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .bottom-cta { padding: 70px 0; }
  .bottom-cta__title { font-size: 1.4rem; word-break: break-all; }
  .bottom-cta__text { font-size: 1rem; margin-bottom: 30px; }
  .bottom-cta__btn { font-size: 1.1rem; padding: 14px 30px; }
}

/* フッター全体の基本設定 */
.footer {
  width: 100%;
  padding: 40px 0; /* 余白を少し詰めるとより引き締まります */
  background-color: #ffffff;
  border-top: 1px solid #edf2f7;
}

/* 左右に配置する設定 */
.footer__container {
  display: flex;
  justify-content: space-between; /* 左右に振り分け */
  align-items: center;           /* 上下中央揃え */
}

/* 左側ブロック内の微調整 */
.footer__brand-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}
.footer__logo {
  height: 40px; /* ロゴのサイズを適正化 */
  width: auto;
}
.footer__tagline {
  font-size: 1.2rem;
  color: #718096;
}
.footer__organizer {
  font-size: 1.05rem;
  font-weight: 700;
  color: #718096;
}

/* 右側：コピーライト */
.footer__copyright {
  font-size: 0.85rem;
  color: #718096;
}

/* --- レスポンシブ（スマホ用） --- */
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column; /* 縦並びにする */
    text-align: center;
    gap: 20px;
  }
  .footer__brand-box {
    flex-direction: column;
    gap: 5px;
  }
  .footer__right {
    border-top: 1px solid #edf2f7; /* 区切り線を入れる */
    padding-top: 15px;
    width: 100%;
  }
}

/* ページ読み込み時のアニメーション
   ============================================================ */

@keyframes fadeInLoad {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-load {
  opacity: 0;
  animation: fadeInLoad 1.2s ease-out forwards; /* 1.2秒かけて滑らかに再生 */
  animation-delay: 0.2s; /* ページがロードされてから0.2秒後に開始 */
}

/* スクロール連動アニメーション
   ============================================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スクロール連動アニメーション */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

/* クラスがついた瞬間にアニメーションを実行 */
.fade-up.is-visible {
  animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- キラッと光るコンバージョンボタン --- */

@keyframes shineSweep {
  0% { left: -150%; }
  30% { left: 150%; }
  100% { left: 150%; }
}

/* 1. メインボタン（共通設定） */
.btn-shine,
.btn-outline-round,
.bottom-cta__btn,
.button--outline {
  text-decoration: none !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-shine {
  gap: 12px;
  position: relative;
  overflow: hidden;
  background-color: var(--accent-coral);
  color: #ffffff;
  padding: 20px 60px;
  margin: 2rem 0;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50px;
  border: 2px solid #004d40;
  box-shadow: 6px 6px 0 #004d40;
}

.btn-shine:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #004d40;
  color: #ffffff;
  filter: brightness(110%); /* 10%明るくする */
  opacity: 1; /* 透明度変化も鮮やかさを維持 */
}

.btn-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shineSweep 3s infinite ease-in-out;
}
@media (max-width: 768px) {
.btn-shine {
  padding: 20px 20px;
  font-size: 1.5rem;
}
.survey-info__box .btn-shine {
  padding: 20px 20px;
  font-size: 1.2rem;
}
}

.event-info__btn.btn-outline-round {
  background-color: #ffffff;
  color: var(--accent-coral);
  border: 3px solid var(--accent-coral);
  border-radius: 50px;
  width: 100%;
  padding: 16px;
  margin: 1rem 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.event-info__btn.btn-outline-round:hover {
  background-color: var(--accent-coral);
  color: #ffffff;
  box-shadow: 4px 4px 0 rgba(255, 74, 82, 0.2);
}

.bottom-cta__btn {
  background-color: var(--accent-coral);
  padding: 18px 54px;
  font-size: 1.35rem;
  font-weight: 800;
  border-radius: 50px;
  border: 2px solid #b32d34;
  box-shadow: 6px 6px 0 #b32d34;
  color: #fff;
}

.bottom-cta__btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #b32d34;
  color: #ffffff;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn-shine:hover .btn-arrow,
.btn-outline-round:hover .btn-arrow,
.bottom-cta__btn:hover .btn-arrow,
.button--outline:hover .btn-arrow {
  transform: translateX(6px);
}

/* ==========================================================================
   募集LP用：ミントグリーン・ターコイズ系カラー上書き設定（既存コードは変更せず追記）
   ========================================================================== */

/* 1行アラートのスタイル */
.alert-notice {
    background-color: #fff;
    border-bottom: 1px solid #80cbc4;
    padding: 20px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #2d3748;
}
.alert-notice span {
    background-color: #00796b;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 1rem;
    margin-right: 10px;
    vertical-align: middle;
}

/* 募集LP全体のカラー上書き */
.page-exhibitor-bosyu {
    --accent-coral: #009688;
    --primary-color: #009688;
}

/* ヒーローセクションの背景とテキスト */
.bg-mint-hero {
    background: linear-gradient(135deg, #e0f2f1 0%, #ffffff 100%);
}
.badge-mint {
    background-color: #00796b;
    color: #ffffff;
}
.title-mint {
    color: #004d40;
}
.box-hero-mint {
    box-shadow: none;
    padding: 30px;
    background-color: rgba(255,255,255,0.9);
}

/* スローグラデーション背景の上書き */
.slow-gradient-mint-section {
    background: linear-gradient(45deg, #edfbf9, #ffffff, #e6f7f4);
}
.bg-mint-light-section {
    background-color: #f0fdfa;
}

/* ボタン類の背景・ホバー強制変更 */
.page-exhibitor-bosyu .button, 
.page-exhibitor-bosyu button, 
.page-exhibitor-bosyu .btn-shine {
    background-color: #009688;
    border-color: #009688;
    color: #ffffff;
}
.page-exhibitor-bosyu .button:hover, 
.page-exhibitor-bosyu button:hover {
    background-color: #00796b;
}

/* テキスト・リンク・装飾パーツの色 */
.link-mint-bold {
    color: #00796b;
    font-weight: bold;
}
.link-mint {
    color: #009688;
}
.page-exhibitor-bosyu a.link-text:hover {
    color: #009688;
}
.subtitle-mint {
    color: #009688;
}
.card-border-mint {
    border-top: 4px solid #009688;
}
.title-dark-mint {
    border-bottom: 2px solid #009688;
    color: #004d40;
}
.title-mint-sub {
    font-size: 1.2rem;
    font-weight: 800;
    color: #009688;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* 開催概要・ブース案内の調整 */
.exhibitors-info-box dt {
    color: #009688;
}
.box-img-placeholder-mint {
    background: #e0f2f1;
    color: #004d40;
}
.box-img-placeholder-white {
    background: #ffffff;
    border: 1px solid #80cbc4;
    color: #00796b;
}
.style-booth-spec-box {
    margin-top: 40px;
    padding: 40px 50px;
}
.info-list dl {
    margin-bottom: 1.5rem;
}
.info-list dt {
    color: #009688;
    font-weight: 800;
    margin-top: 1rem;
    font-size: 1.1rem;
}
.info-list dd {
    margin-left: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.access-methods {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

/* ボトムCTAの上書き */
.bottom-cta-mint {
    background-color: #004d40;
}
.btn-mint-light {
    background-color: #00bfa5;
    border-color: #00bfa5;
}
.btn-mint-outline {
    color: #00bfa5;
    border-color: #00bfa5;
    background-color: #ffffff;
}
.btn-mint-outline:hover {
    background-color: #00bfa5;
    color: #ffffff;
}

/* お知らせバッジの点滅 */
.alert-notice span {
    animation: pulse-animation 2s infinite ease-in-out;
    display: inline-block; /* 動きをつける要素 */
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 121, 107, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 6px rgba(0, 121, 107, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 121, 107, 0);
    }
}
/* ==========================================================================
   募集セクション追加
   ========================================================================== */

/* ヒーローセクション */
.hero__container .hero-lead-align {
    text-align: left;
}

/* 開催概要 */
.exhibitors-info-box .overview-details-reset {
    margin: 0;
    border: none;
    padding: 0;
}
.overview-details-reset .overview-grid-cols {
    grid-template-columns: 7em 1fr;
}
.exhibitors-info-box .overview-meta-space {
    font-size: 1.3rem;
    margin-top: 10px;
}

/* 出展メリット */
body .about-list-bg-white {
    background-color: #ffffff;
}

/* アップデート決意表明 */
.about-list .update-section-grid {
    flex-wrap: wrap;
    gap: 30px;
}
.update-section-grid .update-section-card {
    flex: 0 0 calc(50% - 15px);
    min-width: 300px;
}

/* 会場配置図 */
.box-img-placeholder-mint .booth-image-placeholder-text {
    font-weight: bold;
}
body .booth-section-title-space {
    margin-top: 60px;
}
.event-info .booth-meta-space {
    font-size: 1.3rem;
    margin-top: 10px;
}

/* 会場へのアクセス */
.box-img-placeholder-white .access-image-placeholder-text {
    font-weight: bold;
}
.slow-gradient-mint-section .access-description-layout {
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-align: left;
}

/* ボトムCTA */
.bottom-cta-mint .bottom-title-color {
    color: #ffffff;
}
.bottom-cta-mint .bottom-meta-space {
    font-size: 1rem;
    margin-top: 15px;
}
.bottom-cta-mint .bottom-link-color {
    color: #b2dfdb;
}
.bottom-cta-mint .bottom-sponsor-divider {
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    max-width: 400px;
    margin: 0 auto;
}
.bottom-sponsor-divider .bottom-sponsor-title {
    color: #ffffff;
    margin-bottom: 10px;
}
.bottom-sponsor-divider .bottom-sponsor-btn-layout {
    margin: 0;
    width: auto;
    display: inline-flex;
    padding: 10px 30px;
    font-size: 1rem;
}

/* ==========================================================================
    追加CSS
   ========================================================================== */

/* 新着情報(お知らせ） */
news-list{
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.news-list .item {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #CCC;
  padding: 20px 20px;
}
.news-list .item:first-child {
  border-top: 1px solid #CCC;
}
.news-list .item .date{
  margin: 0;
  min-width: 120px;
  font-size: 16px;
  color: #999;
  padding: 0 20px 0 0;
}
.news-list .item .title{
  margin: 0;
  width: 100%;
}
.news-list .item .title span{
  background: #009688;
  color:#ffffff;
  margin-right:0.25em;
}

@media screen and (max-width: 768px){
.news-list .item {
  display:block;
}
.news-list .item a{
  flex-wrap: wrap;
}
.news-list .item .date{
  min-width: 100px;
}
.news-list .item .title{
  margin-top: 10px;
}
}

/* お知らせ枠 */
.box-newslist {
	position: relative;
	margin-top:1.5rem;
}
.box-newslist .box-title {
	position: absolute;
    display: inline-block;
    top: -13px;
    left: 20px;
    padding: 4px 9px;
    line-height: 1;
    font-size: 19px;
    background: #ffffff;
    border:1px solid #009688;
    color: #009688;
    font-weight: bold;
}


/* お知らせバッジの点滅 */
.news-list .item .title span {
    animation: pulse-animation 2s infinite ease-in-out;
    display: inline-block; /* 動きをつける要素 */
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 121, 107, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 6px rgba(0, 121, 107, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 121, 107, 0);
    }
}

/* 「募集要項はこちら」　余白調整 */
.toguideline {
	padding-top:1rem;
}

/* キャッチフレーズ */
.catchphrase {
	color:#069688;
}

/* 蛍光マーカーライン */
.yellowmarker {
    background:linear-gradient(transparent 60%, #ff6 60%);
}

/* 小さい文字 */
.smallletter {
	font-size:0.8em;
	font-weight:400;
}

/* 流れ */
.flow_design {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow {
  padding-left: 0;
}

.flow > li {
  list-style-type: none;
  position: relative;
  padding-left: 50px;
}

.flow > li:not(:last-child) {
  padding-bottom: 10px;
}

.flow > li .icon05 {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #009688;
  color: #fff;
  position: absolute;
  left: 0;
}

.flow > li:not(:last-child)::before {
  content: '';
  background: #c3c3c3;
  width: 4px;
  height: 100%;
  position: absolute;
  top: calc(50% - -30px);
  left: 19px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.flow > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #009688;
}

.flow > li dl dd {
  margin-left: 0;
}

/* 会場写真 */
.access-image-placeholder-text img {
	max-width:100%;
}

/* 色文字 */
.red {
	color:red;
}
.darkgreen {
	color:#004d40;
	font-weight:bold;
}

/* トークイベント */

.date-time {
	font-size:1.2rem;
	font-weight:600;
	text-align:center;
	margin-bottom:1.5em;
}
.talkevent .card__title {
	font-size:1.8rem;
	font-weight:800;
}
.talkevent .card__title span {
	font-size:0.8em;
	font-weight:400;
}

/* タイムテーブル */

.seminar {
border-collapse: collapse;
width: 100%;
max-width: 700px;
}
.seminar th, .seminar td {
border-bottom: 2px solid #c1c7c6;
padding: 0.5em;
}
.seminar th {
border-bottom: 2px solid #009688;
font-weight: bold;
text-align: center;
width: 20%;
min-width: 10em;
}
.seminar td.intermission {
background-color:#f0fdfa;
text-align:center;
}

.seminar tr.guest {
background-color:#ffffb7;
}


/* スポンサーロゴ */
.sponsor-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

/* カラのカード */
.blank {
border:none;
box-shadow:none;
}

/* 出展者一覧
   ============================================================ */

.exhibitor-list__text, 
.event-info__cta-text {
  font-size: 1.1rem;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.8;
}

.exhibitor-list__header{
    border-bottom:3px solid #edf2f7;
    padding-bottom:16px;
    margin-bottom:20px;
    text-align:center;
}

.exhibitor-list_card__title{
    margin-bottom:6px;
    border:none;
    padding:0;
    font-size: 1.8rem;
    font-weight: 800;
    color: #4a5568;
}
.exhibitor-list__label{
    margin:0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #004d40;
}
.exhibitor-list__job{
    margin:0;
    font-size: 1.2rem;
    font-weight: 400;
    color: #4a5568;
}
.card-link {
  flex: 1;
  min-width: 0;
  display: flex;
  color: inherit;
  text-decoration: none;
}

.card-link .card {
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .card-link {
    width: 100%;
  }
}@media (max-width: 992px) {
  .card-link {
    width: 100%;
  }
}
.card-link:hover {
    text-decoration: none !important;
}
/* 出展者一覧だけ3列・自動折り返し */
.exhibitors-list .style-cards-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}

/* 出展者カードだけ3列 */
.exhibitors-list .card-link {
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: 0;
  display: flex;
  color: inherit;
  text-decoration: none;
}

.exhibitors-list .card-link .card {
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .exhibitors-list .style-cards-grid {
    flex-direction: row;
    gap: 25px;
  }

  .exhibitors-list .card-link {
    flex: 0 0 calc((100% - 25px) / 2);
  }
}

@media (max-width: 768px) {
  .exhibitors-list .card-link {
    flex: 0 0 100%;
  }
}
/* こんなこと、ご相談くださいリスト */
.exhibitor-list__services{
    list-style:none;
    margin:8px 0 0;
    padding:0;
}

.exhibitor-list__services li{
    position:relative;
    padding-left:1em;
    margin-bottom:6px;
}

.exhibitor-list__services li{
    position: relative;
    padding-left: 1.25em;
    margin-bottom: 6px;
}

.exhibitor-list__services li::before{
    content: "●";
    position: absolute;
    left: 0;
    top: 0.05em;
    color: #0b6b5b;
    font-size: 0.9em;
}

.nodisp {display:none;}

/* ============================================================
   スポンサー一覧
   PC：4列／タブレット：3列／スマホ：2列
   ============================================================ */

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

/* ロゴ1社分 */
.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 120px;
  padding: 18px;

  background-color: #ffffff;
  border: 1px solid #dbe7e5;
  border-radius: 8px;

  color: inherit;
  text-decoration: none;
  overflow: hidden;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

/* ロゴ画像 */
.sponsor-item img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 180px;
  object-fit: contain;
}

/* リンク時の控えめなホバー */
.sponsor-item:hover {
  text-decoration: none;
  border-color: #80cbc4;
  box-shadow: 0 4px 12px rgba(0, 77, 64, 0.1);
  transform: translateY(-2px);
}

/* タブレット：3列 */
@media (max-width: 992px) {
  .sponsor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .sponsor-item {
    height: 110px;
    padding: 16px;
  }
}

/* スマホ：2列 */
@media (max-width: 768px) {
  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .sponsor-item {
    height: 90px;
    padding: 12px;
    border-radius: 6px;
  }
}

/* 開催概要　予約不要・入場無料 */
.kakomi {
	background-color:#009688;
	padding:0.2em;
	color:#ffffff;
	letter-spacing:0.1em;
}

/* ========================================
   固定ヘッダー
======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: rgba(255, 255, 255, 0.96);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 左上のサイト名 */
.header__logo {
  display: block;
  position: relative;
  z-index: 1002;
}

.header__logo-link {
  display: block;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}

/* 右側のメニューボタン */
.header__nav-wrapper {
  position: relative;
  z-index: 1002;
}

/* 固定ヘッダーの高さ分、本文を下げる */
body {
  padding-top: 72px;
}

/* スマートフォン */
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }

  body {
    padding-top: 60px;
  }
  
  .header__logo-link {
    font-size: 15px;
  }
}

.header__cta-btn {
	font-size:1.2rem;
	letter-spacing:0.1em;
}

/* ========================================
   トップへ戻るボタン
======================================== */

.to-top {
  position: fixed !important;

  /* 上・右・下・左の位置指定を一度リセット */
  inset: auto 20px 20px auto !important;
  left: auto !important;
  right: 20px !important;
  top: auto !important;
  bottom: 20px !important;

  inset-inline-start: auto !important;
  inset-inline-end: 20px !important;

  margin: 0 !important;
  z-index: 99999 !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  width: 54px;
  height: 54px;
  padding: 0;

  border-radius: 50%;
  background: #36bfa6 !important;
  color: #fff !important;

  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;

	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .3s, visibility .3s, transform .3s;
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .to-top {
    inset: auto 14px 14px auto !important;
    right: 14px !important;
    bottom: 14px !important;
    inset-inline-end: 14px !important;

    width: 46px;
    height: 46px;
    font-size: 24px;
  }
}

/* スポンサーカード */
.sponsor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  min-height: 170px;
  height: auto;
  padding: 18px;

  background-color: #ffffff;
  border: 1px solid #dbe7e5;
  border-radius: 8px;

  color: inherit;
  text-decoration: none;
  overflow: hidden;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

/* ロゴ */
.sponsor-item img {
  display: block;
  width: 100%;
  height: 80px;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 12px;
}

/* 会社名と説明文 */
.sponsor-item__text {
  width: 100%;
  text-align: center;
}

.sponsor-item__name {
  margin: 0 0 5px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}

.sponsor-item__description {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: #687575;
}

/* スマホ */
@media (max-width: 768px) {
  .sponsor-item {
    min-height: 150px;
    padding: 12px 8px;
  }

  .sponsor-item img {
    height: 65px;
    margin-bottom: 10px;
  }

  .sponsor-item__name {
    font-size: 0.85rem;
  }

  .sponsor-item__description {
    font-size: 0.75rem;
  }
}

/* お困りごとリスト */
.issue-list{
    list-style:none;
    margin:0;
    padding:0;
}

.issue-list li{
    position:relative;
    padding:0 0 0 30px;
    margin-bottom:14px;
    line-height:1.7;
    font-size:1.05rem;
}

.issue-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:0.55em;

    width:10px;
    height:10px;

    border-radius:50%;
    background:#009688;
}

.issue-list li.other{
	margin-top:25px;
    font-weight:700;
    top: 0.9em;
    transform: translateY(-50%);
}

.back-home{
    padding: 40px 0 60px;
    text-align: center;
}
/* =========================
   右側固定ページ内ナビ
========================= */

.fixed-page-nav {
  position: fixed;
  right: 0;
  top: 48%;
  transform: translateY(-50%);
  z-index: 1000;

  display: flex;
  flex-direction: column;

  border-radius: 14px 0 0 14px;
  overflow: hidden;

  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}

.fixed-page-nav__item {
  width: 40px;
  min-height: 100px;
  padding: 3px 2px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-decoration: none;

  /* 文字を縦に並べる */
  writing-mode: vertical-rl;

  transition:
    width 0.2s ease,
    filter 0.2s ease;
}

.fixed-page-nav__item:hover {
  color: #fff;
  filter: brightness(1.08);
}

.fixed-page-nav__item--overview {
  background: #e85b78;
}

.fixed-page-nav__item--exhibitors {
  background: #7357a5;
}

.fixed-page-nav__icon {
  display: inline-block;
  font-size: 8px;
  writing-mode: horizontal-tb;
}

/* 固定ヘッダーがある場合、リンク先が隠れないようにする */
#overview,
#exhibitors {
  scroll-margin-top: 100px;
}

/* スマホ */
@media (max-width: 767px) {
  .fixed-page-nav {
    top: 52%;
    border-radius: 10px 0 0 10px;
  }

  .fixed-page-nav__item {
    width: 36px;
    min-height: 90px;
    padding: 2px;

    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.08em;

    writing-mode: vertical-rl;
    text-orientation: upright;
  }
  .fixed-page-nav__item:hover {
     filter: brightness(1.08);
  }

}

/* ============================================================
   出展者カード：文字選択・コピーを可能にする
   ============================================================ */

.exhibitors-list .card-link,
.exhibitors-list .card-link * {
  -webkit-user-select: text;
  user-select: text;
}

/* リンクのドラッグ動作より文字選択を優先 */
.exhibitors-list .card-link {
  -webkit-user-drag: none;
}

/* 画像などを誤ってドラッグしない */
.exhibitors-list .card-link img {
  -webkit-user-drag: none;
  user-select: none;
}