/*
Theme Name: スカイウォーカーLP
Theme URI: https://sky-walker.co.jp/
Author: スカイウォーカー
Author URI: https://sky-walker.co.jp/
Description: 株式会社スカイウォーカーのドローンスクール専用ランディングページテーマ
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: skywalker
*/

/* Tailwind CSSのリセットスタイル */
*,
::after,
::before {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
body {
  margin: 0;
  line-height: inherit;
}
hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}
abbr:where([title]) {
  text-decoration: underline dotted;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
pre,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -.25em;
}
sup {
  top: -.5em;
}
table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}
:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}
progress {
  vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}
blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
menu,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}
[role="button"],
button {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
  height: auto;
}

/* カスタムスタイル */
:root {
  --primary: 199 89% 48%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 14% 96%;
  --secondary-foreground: 222 47% 11%;
  --background: 0 0% 100%;
  --foreground: 222 47% 11%;
  --muted: 220 14% 96%;
  --muted-foreground: 220 9% 46%;
  --accent: 220 14% 96%;
  --accent-foreground: 222 47% 11%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 210 40% 98%;
  --border: 220 13% 91%;
  --input: 220 13% 91%;
  --ring: 224 71% 45%;
  --radius: 0.5rem;

  /* テーマカラー */
  --theme-primary: #0284c7;
  --theme-primary-dark: #0369a1;
  --theme-primary-light: #38bdf8;
  --theme-secondary: #22c55e;
  --theme-secondary-dark: #16a34a;
  --theme-accent: #f97316;
  --theme-accent-dark: #ea580c;
  --theme-gray: #4b5563;
  --theme-gray-light: #9ca3af;
  --theme-gray-dark: #1f2937;
  --theme-white: #ffffff;
  --theme-black: #000000;
  --theme-background: #f9fafb;
  --theme-footer-bg: #1f2937;
  --theme-footer-text: #f3f4f6;
}

/* 共通スタイル */
body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--theme-gray-dark);
  background-color: var(--theme-background);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden; /* 横スクロールを防止 */
}

/* 見出しの中央揃え用のスタイルを追加 */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
}

/* 特定の見出しクラスの中央揃えを確保 */
.section-title,
.card-title,
.problem-card-title,
.action-alert-title,
.support-feature-title,
.contact-title {
  text-align: center !important;
}

/* WordPressの管理バーとの競合を防止 */
body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1400px;
  }
}

/* ヘッダー */
.site-header {
  position: relative; /* stickyからrelativeに変更してヘッダーの固定を解除 */
  width: 100%;
  border-bottom: 1px solid #e5e7eb;
  background-color: white;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  z-index: 50;
}

.header-container {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  position: relative;
  height: 2rem;
  width: 6rem;
}

@media (min-width: 640px) {
  .logo {
    height: 2.25rem;
    width: 6.5rem;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .header-actions {
    gap: 1rem;
  }
}

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  font-weight: 500;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  padding: 0.5rem 1rem;
}

.btn-icon {
  padding: 0.5rem;
}

.btn-primary {
  background-color: var(--theme-secondary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--theme-secondary-dark);
}

.btn-secondary {
  background-color: var(--theme-primary);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--theme-primary-dark);
}

.btn-orange {
  background-color: var(--theme-accent);
  color: white;
}

.btn-orange:hover {
  background-color: var(--theme-accent-dark);
}

/* ヒーローセクション */
.hero-section {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  overflow: hidden; /* 画像がはみ出さないように */
}

@media (min-width: 768px) {
  .hero-section {
    height: 600px;
  }
}

/* ヒーロー画像の最適化 */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(14, 165, 233, 0.1), rgba(3, 105, 161, 0.2));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ヒーローコンテンツラッパー - 中央揃えを強化 */
.hero-content-wrapper {
  width: 100%;
  max-width: 48rem; /* max-w-3xl */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ヒーロータイトルのフォントサイズを調整 */
.hero-title {
  font-size: 1.5rem; /* 24px - 以前の1.875rem(30px)から縮小 */
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 1.875rem; /* 30px - 以前の2.25rem(36px)から縮小 */
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem; /* 48px - 以前の3.75rem(60px)から縮小 */
  }
}

/* ヒーローCTAコンテナ - 中央揃えを強化 */
.hero-cta-container {
  text-align: center;
  max-width: 28rem; /* max-w-md */
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  color: white !important;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  font-weight: 700;
  color: white !important;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

/* ヒーローバッジテキスト - 中央揃えを強化 */
.hero-badge-text {
  font-size: 0.875rem;
  color: white !important;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 100%;
}

.hero-badge {
  font-weight: 700;
  background-color: var(--theme-secondary);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  border-radius: 0.25rem;
  color: white;
}

/* ヒーローハイライトテキスト - 中央揃えを強化 */
.hero-highlight-text {
  font-size: 0.875rem;
  color: white !important;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 100%;
}

.hero-highlight {
  font-weight: 700;
  color: white !important;
}

/* ヒーローボタン - 中央揃えを強化 */
.hero-button {
  background-color: var(--theme-secondary);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 100%;
  border-radius: 0.375rem;
  font-weight: 500;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
}

.hero-button:hover {
  background-color: var(--theme-secondary-dark);
}

.hero-button-icon {
  margin-right: 0.5rem;
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
}

/* ヒーローセクションのテキストを確実に白色にするための追加スタイル */
.hero-section p {
  color: white !important;
}

.hero-section span {
  color: white !important;
}

/* バッジ内のテキストは例外として扱う */
.hero-badge {
  color: white !important;
}

/* セクション共通 */
.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 640px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.section-title {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center !important;
  margin-bottom: 0.5rem;
  color: var(--theme-primary-dark);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
  }
}

.section-description {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--theme-gray);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .section-description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}

/* カード */
.card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card-header {
  padding: 1rem 1.5rem 0.5rem 1.5rem;
  text-align: center;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme-primary-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.card-heading {
  display: block !important;
  text-align: center !important;
  width: 100%;
}

@media (min-width: 640px) {
  .card-title {
    font-size: 1.125rem;
  }
}

.card-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.card-footer {
  padding: 0.5rem 1.5rem 1.5rem 1.5rem;
}

/* 問題セクション */
/* 問題セクションのタイトル */
.problem-section-title {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--theme-primary-dark);
}

@media (min-width: 640px) {
  .problem-section-title {
    font-size: 1.875rem;
    margin-bottom: 3rem;
  }
}

.problem-title-line {
  display: block;
  margin-bottom: 0.25rem;
}

.problem-title-question {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .problem-title-question {
    margin-top: 1.25rem;
  }
}

/* 問題セクションのグリッド */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* 問題カードコンテナ */
.problem-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* 問題の懸念カード */
.problem-concern-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
}

.problem-concern-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* 問題カードヘッダー */
.problem-concern-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem 0.75rem 1.5rem;
}

/* 問題アイコン */
.problem-concern-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fef3c7;
  border-radius: 50%;
  flex-shrink: 0;
}

.problem-concern-icon i {
  font-size: 1.125rem;
  color: #d97706;
}

/* 問題タイトル */
.problem-concern-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme-primary-dark);
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

@media (min-width: 640px) {
  .problem-concern-title {
    font-size: 1.125rem;
  }
}

/* 問題カードコンテンツ */
.problem-concern-content {
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.problem-concern-text {
  font-size: 0.875rem;
  color: var(--theme-gray);
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

@media (min-width: 640px) {
  .problem-concern-text {
    font-size: 1rem;
  }
}

/* 問題アラート */
.problem-alert {
  background-color: #fffbeb;
  border-left: 4px solid var(--theme-accent);
  padding: 1.5rem;
  border-radius: 0.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .problem-alert {
    padding: 2rem;
  }
}

.problem-alert-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--theme-gray-dark);
  margin: 0 0 1rem 0;
  text-align: center;
}

@media (min-width: 640px) {
  .problem-alert-text {
    font-size: 1.125rem;
  }
}

.problem-alert-highlight {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 700;
  color: var(--theme-primary-dark);
  margin: 0;
  text-align: center;
}

@media (min-width: 640px) {
  .problem-alert-highlight {
    font-size: 1.125rem;
  }
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* 問題セクションの画像コンテナのスタイル強化 */
.problem-image {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  height: 100%; /* 高さを100%に設定 */
  min-height: 300px; /* 最小高さを設定 */
  background-color: #f3f4f6; /* 画像読み込み前の背景色 */
}

.problem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

/* ホバー効果を追加（デスクトップのみ） */
@media (min-width: 1024px) {
  .problem-image:hover img {
    transform: scale(1.05);
  }
}

/* 問題カードのスタイル改善 */
.problem-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.problem-card {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  margin: 0.75rem;
  border-radius: 0.5rem;
  max-width: 28rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 640px) {
  .problem-card {
    padding: 1.5rem;
    margin: 1rem;
  }
}

/* ホバー効果を追加（デスクトップのみ） */
@media (min-width: 1024px) {
  .problem-overlay:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .problem-overlay:hover .problem-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
}

/* レスポンシブ調整のための追加スタイル */
@media (max-width: 639px) {
  .problem-image {
    min-height: 250px;
  }

  .problem-card {
    max-width: 90%;
  }
}

.problem-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--theme-primary-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .problem-card-title {
    font-size: 1.25rem;
  }
}

.problem-card-description {
  font-size: 0.875rem;
  color: var(--theme-gray-dark);
}

@media (min-width: 640px) {
  .problem-card-description {
    font-size: 1rem;
  }
}

.problem-alert {
  background-color: #fffbeb;
  border-left: 4px solid var(--theme-accent);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .problem-alert {
    padding: 1.5rem;
  }
}

/* 解決策セクション */
.solution-section {
  background-image: linear-gradient(to bottom, #f0f9ff, #ffffff);
}

/* 解決策セクションのタイトル */
.solution-section-title {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--theme-primary-dark);
}

@media (min-width: 640px) {
  .solution-section-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
}

/* 解決策セクションの説明 */
.solution-section-description {
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: var(--theme-gray);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .solution-section-description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}

/* 解決策セクションのグリッドレイアウト */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .solution-grid {
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
}

/* 解決策フィーチャーグリッド */
.solution-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .solution-features {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* 解決策フィーチャーカード */
.solution-feature-card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.solution-feature-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* 解決策フィーチャーヘッダー */
.solution-feature-header {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 解決策フィーチャーアイコン */
.solution-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--theme-primary);
  color: white;
  border-radius: 50%;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.solution-feature-icon i {
  font-size: 1.25rem;
}

/* 解決策フィーチャータイトル */
.solution-feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme-primary-dark);
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

@media (min-width: 640px) {
  .solution-feature-title {
    font-size: 1.125rem;
  }
}

/* 解決策フィーチャーコンテンツ */
.solution-feature-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  align-items: center;
}

.solution-feature-text {
  font-size: 0.875rem;
  color: var(--theme-gray);
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

@media (min-width: 640px) {
  .solution-feature-text {
    font-size: 1rem;
  }
}

/* 解決策ボックス */
.solution-box {
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .solution-box {
    padding: 2.5rem;
  }
}

/* 解決策ボックスグリッド */
.solution-box-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .solution-box-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
}

/* 解決策ボックスコンテンツ */
.solution-box-content {
  display: flex;
  flex-direction: column;
}

/* 解決策ボックスタイトル */
.solution-box-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--theme-primary-dark);
  line-height: 1.4;
  margin-bottom: 1.25rem;
  text-align: left;
}

@media (min-width: 640px) {
  .solution-box-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

/* 解決策ボックス説明 */
.solution-box-description {
  font-size: 0.875rem;
  color: var(--theme-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: left;
}

@media (min-width: 640px) {
  .solution-box-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* 解決策チェックリスト */
.solution-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* 解決策チェックアイテム */
.solution-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: #f8fafc;
  border-radius: 0.5rem;
  border-left: 3px solid var(--theme-secondary);
  transition: all 0.3s ease;
}

.solution-check-item:hover {
  background-color: #f1f5f9;
  transform: translateX(3px);
}

@media (min-width: 640px) {
  .solution-check-item {
    gap: 1rem;
    padding: 1rem;
  }
}

/* 解決策チェックアイコン */
.solution-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--theme-secondary);
  border-radius: 50%;
  flex-shrink: 0;
}

.solution-check-icon i {
  color: white;
  font-size: 0.75rem;
}

/* 解決策チェックテキスト */
.solution-check-text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--theme-gray-dark);
  margin: 0;
}

@media (min-width: 640px) {
  .solution-check-text {
    font-size: 1rem;
  }
}

/* 解決策画像 */
.solution-image {
  position: relative;
  height: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  min-height: 250px;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.solution-image:hover img {
  transform: scale(1.02);
}

.solution-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(3, 105, 161, 0.85);
  padding: 0.75rem;
}

@media (min-width: 640px) {
  .solution-image-caption {
    padding: 1rem;
  }
}

.solution-image-text {
  color: white;
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}

@media (min-width: 640px) {
  .solution-image-text {
    font-size: 1rem;
  }
}

/* 根拠セクション - 完全に再設計 */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }
}

.proof-image {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  min-height: 300px;
}

.proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.proof-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(3, 105, 161, 0.8);
  padding: 0.75rem;
}

@media (min-width: 640px) {
  .proof-image-caption {
    padding: 1rem;
  }
}

.proof-image-text {
  color: white;
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .proof-image-text {
    font-size: 1rem;
  }
}

/* 根拠コンテンツエリア */
.proof-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 640px) {
  .proof-content {
    gap: 2.5rem;
  }
}

/* 根拠セクション */
.proof-section {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.proof-section:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media (min-width: 640px) {
  .proof-section {
    padding: 2rem;
  }
}

/* 根拠セクションタイトル */
.proof-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--theme-primary-dark);
  line-height: 1.3;
}

@media (min-width: 640px) {
  .proof-section-title {
    font-size: 1.5rem;
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

/* 根拠アイコンラッパー */
.proof-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--theme-primary-light);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .proof-icon-wrapper {
    width: 3rem;
    height: 3rem;
  }
}

.proof-icon {
  color: white;
  font-size: 1.125rem;
}

@media (min-width: 640px) {
  .proof-icon {
    font-size: 1.25rem;
  }
}

/* 根拠タイトルテキスト */
.proof-title-text {
  flex: 1;
  text-align: left;
}

/* 根拠チェックリスト */
.proof-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .proof-check-list {
    gap: 1.25rem;
  }
}

/* 根拠チェックアイテム */
.proof-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: #f8fafc;
  border-radius: 0.375rem;
  border-left: 3px solid var(--theme-secondary);
  transition: all 0.3s ease;
}

.proof-check-item:hover {
  background-color: #f1f5f9;
  transform: translateX(5px);
}

@media (min-width: 640px) {
  .proof-check-item {
    gap: 1rem;
    padding: 1rem;
  }
}

/* 根拠チェックアイコンラッパー */
.proof-check-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--theme-secondary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.proof-check-icon {
  color: white;
  font-size: 0.75rem;
}

/* 根拠チェックテキスト */
.proof-check-text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--theme-gray-dark);
}

@media (min-width: 640px) {
  .proof-check-text {
    font-size: 1rem;
  }
}

.proof-support {
  background-color: #f0f9ff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .proof-support {
    padding: 2.5rem;
  }
}

/* サポートグリッド */
.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .support-grid {
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
}

/* サポートコンテンツ */
.support-content {
  display: flex;
  flex-direction: column;
}

/* サポートメインタイトル */
.support-main-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--theme-primary-dark);
  line-height: 1.4;
  margin-bottom: 1.25rem;
  text-align: left;
}

@media (min-width: 640px) {
  .support-main-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

/* サポート説明 */
.support-description {
  font-size: 0.875rem;
  color: var(--theme-gray-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: left;
}

@media (min-width: 640px) {
  .support-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* サポート機能グリッド */
.support-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .support-features {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

/* サポート機能カード */
.support-feature {
  background-color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--theme-primary);
  transition: all 0.3s ease;
}

.support-feature:hover {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  transform: translateX(2px);
}

@media (min-width: 640px) {
  .support-feature {
    padding: 1.25rem;
  }
}

/* サポート機能タイトル */
.support-feature-title {
  font-weight: 700;
  color: var(--theme-primary-dark);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  text-align: left;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .support-feature-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}

/* サポート機能説明 */
.support-feature-description {
  font-size: 0.75rem;
  color: var(--theme-gray);
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

@media (min-width: 640px) {
  .support-feature-description {
    font-size: 0.875rem;
  }
}

/* サポート画像 */
.support-image {
  position: relative;
  height: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  min-height: 200px;
}

@media (min-width: 768px) {
  .support-image {
    min-height: 250px;
  }
}

.support-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--theme-primary);
  padding: 1rem;
}

/* チーム画像コンテナ */
.team-image-container {
  margin-top: 1.5rem;
}

.team-image-wrapper {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.team-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
}

.team-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(3, 105, 161, 0.8);
  padding: 0.5rem;
}

.team-image-text {
  color: white;
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
}

/* 行動セクション - 完全に再設計 */
.action-section {
  background-image: linear-gradient(to bottom, var(--theme-primary), var(--theme-primary-dark));
  color: white;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* 行動セクションのメインタイトル */
.action-main-title {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

@media (min-width: 640px) {
  .action-main-title {
    font-size: 2.25rem;
    margin-bottom: 4rem;
  }
}

/* アラートカードコンテナ */
.action-alerts-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 4xl;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .action-alerts-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

/* アラートカード */
.action-alert-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-alert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (max-width: 767px) {
  .action-alert-card {
    padding: 1.5rem;
  }
}

/* アラートカードヘッダー */
.action-alert-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.action-alert-icon-wrapper {
  background-color: rgba(252, 211, 77, 0.2);
  border-radius: 50%;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-alert-icon {
  font-size: 1.5rem;
  color: #fcd34d;
}

.action-alert-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  margin: 0;
}

@media (min-width: 640px) {
  .action-alert-title {
    font-size: 1.375rem;
  }
}

/* アラートカードコンテンツ */
.action-alert-content {
  text-align: center;
}

.action-alert-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

@media (min-width: 640px) {
  .action-alert-text {
    font-size: 1rem;
  }
}

/* コンタクトセクション */
.action-contact-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .action-contact-section {
    padding: 1.5rem;
  }
}

/* コンタクトヘッダー */
.action-contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.action-contact-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

@media (min-width: 640px) {
  .action-contact-title {
    font-size: 2rem;
  }
}

.action-contact-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .action-contact-description {
    font-size: 1.125rem;
  }
}

/* コンタクトグリッド */
.action-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .action-contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* コンタクトカード */
.action-contact-card {
  background-color: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* コンタクトカードヘッダー */
.action-contact-card-header {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  text-align: center;
}

.action-contact-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.action-contact-icon-wrapper.primary {
  background-color: var(--theme-secondary);
}

.action-contact-icon-wrapper.secondary {
  background-color: var(--theme-primary);
}

.action-contact-icon-wrapper.orange {
  background-color: var(--theme-accent);
}

.action-contact-icon {
  font-size: 1.25rem;
  color: white;
}

.action-contact-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--theme-gray-dark);
  margin: 0;
  text-align: center;
}

@media (min-width: 640px) {
  .action-contact-card-title {
    font-size: 1.25rem;
  }
}

/* コンタクトカードコンテンツ */
.action-contact-card-content {
  padding: 0 1.5rem 1rem 1.5rem;
  text-align: center;
}

.action-contact-card-text {
  font-size: 0.875rem;
  color: var(--theme-gray);
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 640px) {
  .action-contact-card-text {
    font-size: 1rem;
  }
}

.highlight-text {
  font-weight: 700;
  color: var(--theme-secondary-dark);
}

.bold-text {
  font-weight: 700;
  color: var(--theme-gray-dark);
}

/* コンタクトカードフッター */
.action-contact-card-footer {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.action-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

@media (min-width: 640px) {
  .action-contact-button {
    font-size: 1rem;
  }
}

.action-contact-button.primary {
  background-color: var(--theme-secondary);
  color: white;
}

.action-contact-button.primary:hover {
  background-color: var(--theme-secondary-dark);
}

.action-contact-button.secondary {
  background-color: var(--theme-primary);
  color: white;
}

.action-contact-button.secondary:hover {
  background-color: var(--theme-primary-dark);
}

.action-contact-button.orange {
  background-color: var(--theme-accent);
  color: white;
}

.action-contact-button.orange:hover {
  background-color: var(--theme-accent-dark);
}

.action-contact-button-icon {
  margin-left: 0.5rem;
  font-size: 0.875rem;
}

/* フッター */
.site-footer {
  background-color: var(--theme-footer-bg);
  color: var(--theme-footer-text);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left !important;
}

.footer-logo {
  position: relative;
  height: 3rem;
  width: 8rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  filter: brightness(0) saturate(100%) invert(100%);
  transition: opacity 0.3s ease;
}

.footer-logo img:hover {
  opacity: 0.8;
}

.footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
  space-between: 0.5rem;
}

.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #d1d5db;
}

.footer-icon {
  color: #9ca3af;
  flex-shrink: 0;
}

.footer-description {
  margin-bottom: 1.5rem;
  color: #d1d5db;
  max-width: 36rem;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .footer-actions {
    flex-direction: row;
    gap: 1rem;
  }
}

.footer-copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  font-size: 0.875rem;
}

/* テキストシャドウ */
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.text-shadow-sm {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ユーティリティクラス */
.max-w-xs {
  max-width: 20rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease-in-out;
}

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

.animate-slideUp {
  animation: slideUp 0.5s ease-out;
}

/* 特定の見出しを左揃えにする */
.solution-box h3 {
  text-align: left !important;
}

/* 行動セクションのテキスト改行を確実にするための追加スタイル */
.action-text,
.action-highlight {
  text-align: center;
  width: 100%;
}

.action-text br,
.action-highlight br {
  display: block !important;
}

/* 問題セクションの注意マークアイコンの色を黄色に設定 */
.card-title .text-yellow-500 {
  color: #eab308 !important; /* より鮮やかな黄色 */
}

/* セクション見出しの色を統一 */
.section-heading {
  color: #0369a1 !important; /* --theme-primary-dark と同じ青色 */
}

/* セクションタイトルと同じ色を適用 */
.section-title,
.section-heading {
  color: #0369a1 !important;
}

/* 行動メッセージセクション */
.action-message {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.action-text {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: white;
}

@media (min-width: 640px) {
  .action-text {
    font-size: 1.375rem;
  }
}

.action-highlight {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.4;
  color: white;
}

@media (min-width: 640px) {
  .action-highlight {
    font-size: 1.75rem;
  }
}

.action-image {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  max-width: 36rem;
  margin: 0 auto 2rem;
}
