/* ✅ 初期化 */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  height: 100%;
}
*, *::before, *::after {
  box-sizing: inherit;
}

/* ✅ アピールエリア全体 */
.appeal-content,
.appeal-message {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 0 1rem;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  height: auto !important;
  min-height: unset !important;
}

/* ✅ 中身ラッパー */
.custom-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 1rem 0.4rem;
  text-align: center;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

/* ✅ タイトル：黒文字＋明るい強調で見やすさ重視 */
.custom-hero-inner h1 {
  font-size: 2.6rem;                        /* 大きすぎず主張するサイズ */
  font-weight: 800;
  color: #222;                              /* 落ち着いた黒に近いグレー */
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 1.4rem;
}

/* ✅ ハイライト（黄色部分）だけ残す場合 */
.custom-hero-inner h1 .highlight {
  color: #f90;                              /* オレンジ強調 */
  background: none !important;
  -webkit-text-fill-color: initial !important;
}

/* ✅ サブテキスト：黒に近いグレーで視認性アップ */
.custom-hero-inner p {
  font-size: 1.1rem;
  color: #444;                              /* やややさしい黒系 */
  margin-bottom: 1.5rem;
  line-height: 1.9;
  text-shadow: none;                        /* 白文字で使ってた影はオフ */
}

/* ✅ オーバーレイ不要なので削除または透明化 */
.hero-section::before {
  background: none !important;
}



/* ✅ ハイライト文字 */
.highlight {
  background: linear-gradient(to right, #ff6600, #ffcc00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
  font-size: inherit; /* 見出しに揃える */
}


/* ✅ spacer */
.spacer {
  height: 0.2rem;
}

/* ✅ SNSアイコンラッパー */
.sns-icon-wrapper {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 0.6rem;
}

/* ✅ SNS説明テキスト */
.sns-caption {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
}

/* ✅ SNSアイコン共通 */
.sns-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border: 2px solid #ff6600;
  border-radius: 50%;
  background: #fff;
  color: #ff6600;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.sns-icon:hover {
  background-color: #ff6600;
  color: #fff;
}

/* ✅ note アイコン専用 */
.note-icon .note-n {
  font-family: sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}

/* ✅ CTAブロック：デザイン刷新 */
.cta-block {
  background: #fff;
  border-radius: 12px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); /* 軽めの影に */
  max-width: 440px;
  margin: 1.5rem auto 0;
  text-align: center;
}

/* ✅ CTA文言 */
.post-prompt {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.4rem;
}

.hero-button {
  display: inline-flex;                 /* 中央揃え用 */
  flex-direction: column;              /* テキストを縦積みに */
  justify-content: center;             /* 横中央 */
  align-items: center;                 /* 縦中央 */
  padding: 1.2rem 2.2rem;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 28px;
  text-decoration: none;
  line-height: 1.5;
  text-align: center;
  white-space: normal;                 /* 改行許可 */
  box-shadow: 0 6px 12px rgba(255, 102, 0, 0.3);
  min-height: 3.5rem;
  min-width: 260px;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background-color: #ff7f2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 102, 0, 0.3);
}




/* ✅ 波型SVG調整 */
.hero-wave {
  margin-bottom: -4px !important;
  padding-bottom: 0 !important;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -1px;
  margin-bottom: -2px;
}

/* ✅ 次のセクションと密着させる */
.next-section {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ✅ 改行の制御 */
.br-sp { display: none; }
.br-pc { display: inline; }


/* ✅ モバイル対応 */
@media (max-width: 768px) {
  .custom-hero-inner {
    padding: 0.8rem 1rem 0.5rem;
  }

  .custom-hero-inner h1 {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .custom-hero-inner p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .sns-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .note-n {
    font-size: 1.1rem;
  }

  .sns-caption {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .cta-block {
    padding: 1.3rem 1rem;
    margin-top: 1rem;
  }

  .hero-button {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
    line-height: 1.4;
    white-space: normal;          /* 改行許可 */
    text-align: center;
    flex-direction: column;       /* 縦並び */
    min-width: auto;              /* 最小幅解除でレスポンシブ */
  }

  .br-sp { display: inline; }
  .br-pc { display: none; }
}
