@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.5rem;
  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: 90px 0; /* PC用の上下余白 */
  box-sizing: border-box;
  text-align: center;
}

/* 3つの要素を横並びにする親要素 */
.hero__outer-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  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: 1.2rem;
  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: 4.0rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 30px;
  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.2rem;
  margin-top: 20px;
  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(255, 150, 150, 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.4rem;
  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: 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: 0.95rem;
  }
}


/* ボトム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秒後に開始 */
}

/* スクロール連動アニメーション（2026年モダン標準仕様・修正版）
   ============================================================ */

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

/* スクロール連動アニメーション */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  /* animation を一旦外し、ブラウザ読み込み時の計算負荷を下げます */
}

/* クラスがついた瞬間にアニメーションを実行させる設定 */
.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;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50px;
  border: 2px solid #b32d34;
  box-shadow: 6px 6px 0 #b32d34;
}

.btn-shine:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #b32d34;
  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);
}