/*
================================================================================
PRODUCT TEMPLATE STYLESHEET - Bootstrap 5
================================================================================
このファイルについて (About this file):
- 製品ページ専用のスタイルシートです
- Bootstrap 5をベースにしています
- 色やデザインをカスタマイズできます

重要な注意事項 (IMPORTANT):
- ../../scripts/style_bs5.css (会社共通CSS) は変更しないでください
  DO NOT modify ../../scripts/style_bs5.css (Global company CSS)
- このファイルのみを編集してください
  Only edit THIS file for product-specific styling
================================================================================
*/

/* ===================================================================
   COLOR SCHEME - ブランドカラー設定
   ================================================================== */
/*
   【重要】ここで製品のブランドカラーを変更できます
   【IMPORTANT】Change your product brand colors HERE

   使い方 (How to use):
   1. 下記の色コードを変更してください
      Change the color codes below
   2. すべてのページに自動的に反映されます
      Changes will apply to all pages automatically

   推奨ツール (Recommended tools):
   - Adobe Color: https://color.adobe.com/
   - Coolors: https://coolors.co/
*/

:root {
  /* メインカラー (Primary Color) */
  --brand-primary: #0A88B4;

  /* セカンダリカラー (Secondary Color) */
  --brand-secondary: #334873;

  /* アイコンカラー (Icon Color) */
  --brand-icon: #0A88B4;

  /* ダークカラー (Dark Color) */
  --brand-dark: #0E2841;

  /* フッター・ヘッダー背景カラー (Footer Background)*/
  --brand-light-bg: #ffffff;

  /* CTAセクション背景 (CTA Section Background) */
  --brand-cta-bg: #ffffff;

  /* テキストカラー (Text Color) */
  --brand-text: #334873;
}

/* サイト共通のアイコン色クラス */
.icon-brand {
  color: var(--brand-icon) !important;
}

/* ===================================================================
   1. GENERAL STYLES - 全体の基本スタイル
   =================================================================== */
/*
   ページ全体のフォント、行間、背景色などを定義します
   Defines overall fonts, line heights, and background colors
*/

body {
  background-color: #f8f9fa;       /* 変更しないでください (Do not change) */
  font-family: sans-serif;
  line-height: 1.6;
}

p {
   line-height: 22px;
}

li {
   line-height: 150%;
}

/* ===================================================================
   2. PRODUCT HEADER - 製品ナビゲーションバー
   =================================================================== */
/*
   product-header.inc で使用されるスタイルです
   Styles used by product-header.inc

   カスタマイズ方法 (How to customize):
   - background-color: ヘッダーの背景色
   - border-bottom: 下部のボーダー色と太さ
*/

.prodnavbar {
  background-color: var(--brand-light-bg);
  border-bottom: 4px solid #44B3E1;   /* フォールバック */
  border-image: linear-gradient(135deg,
      #44B3E1 0%,
      #298dcf 100%) 1;
  margin-bottom: 0;
  margin-top: 3px;
}

/* ナビゲーションリンクの文字色 (Navigation link text color) */
.prodnavbar .nav-link {
  color: var(--brand-text) !important;
}

/* ホバー時の文字色 (Hover state text color) */
.prodnavbar .nav-link:hover,
.prodnavbar .nav-link:focus {
  color: var(--brand-icon) !important;
}

/* お問い合わせボタン */
.prodnavbar .contact-btn {
  display: inline-block;
  padding: 0.5rem 1.1rem !important;
  background-color: var(--brand-secondary);   
  color: #ffffff !important;                 
  border-radius: 999px;     /* 丸み */
  text-decoration: none;
  /* ゆっくり浮き上がる用 */
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

/* ホバー：浮き上がる */
.prodnavbar .contact-btn:hover,
.prodnavbar .contact-btn:focus {
  background-color: var(--brand-icon);       
  color: #ffffff !important;
  transform: translateY(-3px);               /* 上に浮く */
  box-shadow: 0 8px 18px rgba(68, 179, 225, 0.4);   /* 影で浮遊感 */
}

/* ===================================================================
   3. PRODUCT FOOTER - 製品フッター
   =================================================================== */
/*
   製品フッター（product-footer.inc または widefooter.inc）のスタイルは
   ../../scripts/style_bs5.css で定義されています。
   Product footer styles are defined in ../../scripts/style_bs5.css

   デフォルトの配色 (Default colors):
   - 背景色: 薄緑 (#a7f0bfd3)
   - リンク色: 青系 (#23527c)

   製品固有の配色が必要な場合 (For product-specific colors):
   このファイル (product-style.css) で footer.product クラスをオーバーライドできます。
   You can override the footer.product class in this file (product-style.css).
*/
/* ===================================================================
   4. SECTIONS - セクション共通スタイル
   =================================================================== */
/*
   各ページで使用されるセクションのスタイルです
   Styles for sections used across pages

   使い方 (How to use):
   HTMLで <div class="section-wrapper"> を使用すると、
   自動的に適切な余白と背景色が適用されます
*/

.section-wrapper {
  padding: 60px 0;                /* 上下の余白 (Top/bottom padding) */
}

/* 奇数セクション */
.section-wrapper-white {
    background-color: #ffffff;
}

/* 偶数セクション */
.section-wrapper-gray {
    background-color: #f7f8fa;
}

/* セクション内のカード (Cards within sections) */
.section-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

/* セクション内のカード (Cards within sections) */
.cta-title {
  color: var(--brand-primary);
}

.cta-text {
  color: var(--brand-text);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 350;
  max-width: 1300px;
}

/* 商標 */
sup {
  font-size: 1.15em;        
  vertical-align: baseline; 
  position: relative;
  top: -0.2em;             /* 少しだけ上げる（数値で微調整） */
  line-height: 0;
}

/* ===================================================================
   5. TYPOGRAPHY - 見出しとテキスト
   =================================================================== */
/*
   見出し(h1, h2, h3)とテキストのスタイルです
   Heading and text styles
*/

h1, h2, h3 {
  color: var(--brand-dark);       /* 見出しの色 (Heading color) */
  font-weight: bold;
}

/* セクションタイトル (Section title) */
.section-title {
    color: var(--brand-text);
}

/* サブセクションタイトル (Subsection title) */
.subsection-title {
    color: var(--brand-text);
    margin-top: 10px;
    margin-bottom: 10px;
}

.section-text {
    color: var(--brand-text);
    line-height: 1.4;
    font-size: 1.1rem;
}

/* ===================================================================
   6. BUTTONS - ボタンスタイル
   =================================================================== */
/*
   ボタンのスタイルです
   Button styles

   使い方 (How to use):
   <a href="#" class="btn btn-primary">ボタンテキスト</a>

   種類 (Types):
   - btn-primary: メインボタン (Primary button)
   - btn-outline-primary: 枠線ボタン (Outline button)
*/

/* index.html のヒーローセクションボタン専用 */
.hero-hex-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 350px;
    height: 56px;
    padding: 0 36px;
    position: relative;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    margin: 0 2.5rem 1rem; /* ← 左右1.25rem・下1rem の余白を追加 */

    /* 六角形 */
    clip-path: polygon(
    30px 0,
    calc(100% - 30px) 0,
    100% 50%,
    calc(100% - 30px) 100%,
    30px 100%,
    0 50%
);
}

.hero-hex-btn-primary {
    background: var(--brand-text);
    color: #ffffff;
    box-shadow:
        inset 0 0 0 2px var(--brand-text);
}

.hero-hex-btn-primary:hover {
    background: var(--brand-primary);
    box-shadow:
        inset 0 0 0 2px var(--brand-primary);
    color: var(--brand-cta-bg);
}

.hero-hex-btn-secondary {
    background: #ffffff;
    color: var(--brand-text);
}

.hero-hex-btn-secondary:hover {
    background: var(--brand-primary);
    color: #ffffff;

    box-shadow:
        inset 0 0 0 2px var(--brand-primary);
}

/* 白背景セクションボタン専用 */
.hero-hex-btn-dark {
    background: var(--brand-primary);
    color: #ffffff;
}

.hero-hex-btn-dark:hover {
    background: var(--brand-text);
    color: #ffffff;

    box-shadow:
        inset 0 0 0 2px var(--brand-text);
}

.section-btn-secondary {
    background: var(--brand-primary);
    color: #ffffff;
    font-size: 1.1rem;
}

.section-btn-secondary:hover {
    background: var(--brand-text);
    color: #ffffff;
    box-shadow:
        inset 0 0 0 2px var(--brand-text);
}

.section-btn-primary {
    background: var(--brand-text);
    color: #ffffff;
    font-size: 1.1rem;
    box-shadow:
        inset 0 0 0 2px var(--brand-text);
}

.section-btn-primary:hover {
    background: var(--brand-icon);
    box-shadow:
        inset 0 0 0 2px var(--brand-icon);
    color: #ffffff;
}

@media (max-width: 767px) {
  .contact-cta .hero-hex-btn {
    min-width: auto;
    width: 100%;
    max-width: 320px;

    display: flex;              /* ブロック化＋中身も中央 */
    margin-left: auto;          /* 左右autoで中央へ */
    margin-right: auto;
  }
}

/* ===================================================================
   7. HERO SECTION - ヒーローセクション(トップの大きな画像エリア)
   =================================================================== */
/*
   トップページの最初の大きな画像・テキストエリアです
   Large image/text area at the top of the homepage

   カスタマイズ方法 (How to customize):
   - background-image: 背景画像のパス
   - background-color: 背景色(画像がない場合)
*/

.hero-section {
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  background-color: #44B3E1;  /* フォールバック背景色 */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(68, 179, 225, 0.85) 0%, rgba(28, 119, 186, 0.75) 100%);
}

.hero-title {
  font-weight: 600;
  color: #ffffff;
}

.hero-subtitle {
  max-width: 850px;
  color: #ffffff;
  font-weight: 600;
}

.hero-text {
  max-width: 900px;
  opacity: 0.95;
  color: var(--brand-cta-bg);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
}

.hero-text a {
  font-weight: 700;
  color: var(--brand-cta-bg);
  transition: all 0.3s ease;
}

.hero-text a:hover {
color: var(--brand-text);
}

.hero-logo {
  max-width: 400px;
  width: 100%;
}

.hero-button-wrap {
  margin: 1.5rem 0;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 35px;
  padding: 0 32px;
  background-color: #f8f9fafb;
  border: 4px solid var(--brand-text);
  border-radius: 999px;
  color: var(--brand-icon);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

/* ===================================================================
   8. FEATURE CARDS - 機能カード
   =================================================================== */
/*
   製品の機能や特徴を表示するカードです
   Cards for displaying product features

   使い方 (How to use):
   <div class="feature-item">
     <i class="feature-icon fas fa-check"></i>
     <div class="feature-content">
       <strong>機能名</strong>
       <p>機能の説明</p>
     </div>
   </div>
*/

/* プラン一覧カード */
.feature-item {
  color: var(--brand-text);
  border: 2px solid var(--brand-primary);
  border-radius: 56px;
  padding: 2rem 2rem 2rem;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px); /* 少し浮き上がる */
  box-shadow: 0 10px 16px -8px rgba(68, 179, 225, 0.6); /* 下端にうっすらシャドー */
}

/* B. 共通製品カード (.feature-item) の子孫セレクター定義 */
.feature-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.feature-item .card-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.feature-item ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.feature-item li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.list-checked li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-left: 0.5rem;
  position: relative;
  list-style: none;
  color: var(--brand-text);
}

.list-checked li i {
  color: var(--brand-primary);
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.list-checked li span {
  display: inline-block;
}

/* プランカードの背景 */
.plan-business {
  background-color: #f7f8fa;
  border: 2px solid var(--brand-text);
}

.plan-standard .card-title {
  color: var(--brand-primary);
}

/* プランカード2枚の横幅調整 */
.plan-card-row {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* プランカード下の注意書き */
.value-note a {
  font-weight: 700;
  color: var(--brand-text);
  transition: all 0.3s ease;
}

.value-note a:hover {
color: var(--brand-icon);
}

/* ===================================================================
   9. SPACING ADJUSTMENTS - 余白調整
   =================================================================== */
/*
   ページ全体の余白を調整します
   Adjusts spacing across the page

   注意 (Note):
   余白が広すぎる/狭すぎる場合は、ここの値を変更してください
   If spacing is too wide/narrow, change values here
*/

.container > .row {
    margin-bottom: 0;  /* 行の下余白 (Row bottom margin) */
}

/* ===================================================================
   10. FAQ SECTION - よくある質問セクション
   =================================================================== */
/*
   FAQページで使用されるスタイルです
   Styles used on FAQ page
*/
.accordion-question {
  display: inline;
  flex: 1;
  line-height: 1.6;
}

/* アコーディオン全体の枠線を無効化（個別に付けるため） */
#faq.accordion {
  --bs-accordion-border-color: transparent;
}

/* 各質問ボックスを切り離す */
#faq .accordion-item {
  margin-bottom: 1rem;
  border: 2px solid var(--brand-primary);      
  border-radius: 12px;
  overflow: hidden;               /* 角丸をボタンにも適用 */
  background: transparent;
}

#faq .accordion-item:last-child {
  margin-bottom: 0;
}

/* 質問ボタン */
#faq .accordion-button {
  color: var(--brand-text);
  font-weight: 600;
  background: #ffffff;
  box-shadow: none;               /* Bootstrap既定の枠線影を除去 */
}

/* 展開時の質問部分の背景を水色に */
#faq .accordion-button:not(.collapsed) {
  color: var(--brand-text);
  background: #DCEEFF;            
  box-shadow: none;
}

/* フォーカス時の枠線・影を除去 */
#faq .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

/* 矢印アイコンを水色に */
#faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2344B3E1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* 展開時の矢印も水色を維持（回転のみ） */
#faq .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2344B3E1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* 回答本文 */
#faq .accordion-body {
  color: var(--brand-text);
  background: #ffffff;
}

/* 回答内リンク */
#faq .accordion-body a {
  font-weight: 700;
  color: var(--brand-text);
  transition: all 0.3s ease;
}

#faq .accordion-body a:hover {
  color: var(--brand-icon);
}

/* ===================================================================
   12. RESPONSIVE DESIGN - レスポンシブデザイン
   =================================================================== */
/*
   スマートフォン・タブレット対応
   Mobile and tablet responsiveness

   注意 (Note):
   画面サイズに応じて自動的にレイアウトが変わります
   Layout automatically adjusts based on screen size
*/

/* タブレット以上 (Tablet and above) */
@media (min-width: 768px) {
  .footer-item {
    text-align: center;
  }
}

/* スマートフォン (Mobile) */
@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0;
  }

  .feature-item {
    flex-direction: column;
  }

  .feature-icon {
    margin-bottom: 1rem;
  }
}

/* ===================================================================
   13. CUSTOM PAGE STYLES - ページ個別・インライン移管スタイル
   =================================================================== */
/*
   HTMLファイル内のインラインスタイル (style="...") をすべて排除し、
   CSS側で一元管理できるように定義したクラスです。
*/

/* ヒーローセクション調整 */
.hero-section {
  padding: 4rem 0 !important; /* パディングを統一 */
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

/* trial.html 内のステップバッジ */
.step-badge {
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* trial.html 内のプログレスバー */
.step-progress {
  height: 10px;
}

.step-progress-1 {
  width: 33%;
}

.step-progress-2 {
  width: 66%;
}

.step-progress-3 {
  width: 100%;
}

/* contact.html 内のオフィス地図ボーダー */
.office-map {
  border: 0;
}

/* アイコンの色を一括で統一 */
.feature-icon,
.card-body .fas,
.tab-pane .fas,
.feature-item .fas {
  color: var(--brand-icon) !important;
}

/* =====================================
   トップページ Challenge Cards
   ===================================== */

.challenge-card {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 1.5rem 1.75rem;
    background: transparent;
    border: 2px solid #D06021;
    border-radius: 18px;

    transition: transform 0.2s ease-out,
            background-color 0.35s ease;
}

.challenge-card:hover {
    background-color: #FCF2EC;              /* ごく薄い朱色の背景 */
    transform: translateY(-5px) !important;           /* 少し浮き上がる */
}

.challenge-icon {
    flex: 0 0 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.challenge-icon i {
    font-size: 2.6rem;
    color: #D06021;
}

.challenge-content {
    flex: 0 0 80%;
}

.challenge-title {
    margin-bottom: 0.5rem;
    color: var(--brand-text);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
}

.challenge-text {
    margin: 0;
    color: var(--brand-text);
    font-size: 1rem;
    line-height: 1.7;
}

/* =====================================
   トップページ Value Section
   ===================================== */
.value-box {
    max-width: 950px;
    padding: 2.25rem 3rem 2rem;
    border: 2px solid var(--brand-primary);
    border-radius: 56px;
    background: transparent;
}

.value-lead {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    color: var(--brand-text);
    font-size: 1rem;
    line-height: 1.8;
}

/* カード全体 */
.value-card-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 1.75rem;
    margin-bottom: 2.25rem;
}

/* 小カード */
.value-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    height: 58px;
    padding: 0 1.25rem;
    border: 2px solid var(--brand-primary);
    border-radius: 8px;
    color: var(--brand-text);
    background: #DCEAF7;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;

    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 14px -8px rgba(68, 179, 225, 0.7);
}

/* 長めテキスト用 */
.value-card-wide {
    min-width: 380px;
}

/* アイコン */
.value-icon {
    margin-right: 0.75rem;
    font-size: 1.9rem;
    flex-shrink: 0;
}

/* 下段テキスト */
.value-bottom p {
    margin-bottom: 0.25rem;
    color: var(--brand-text);
    font-size: 1rem;
    line-height: 1.7;
}

.value-emphasis {
    font-weight: 700;
}

/* 枠外注意書き */
.value-note {
    margin-top: 1.5rem;
    margin-bottom: 0;
    color: var(--brand-text);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===================================================================
   NEWS SECTION - 最新情報
   =================================================================== */
.news-section {
position: relative;
}

/* リスト */
.news-list {
  position: relative; /* 最下線マークの基準 */
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 各ニュース行（記事を足すたびに自動で区切り線が付く） */
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  position: relative;
  padding: 1.75rem 1rem;
  border-top: 1px solid rgba(28, 79, 126, 0.25);
}

.news-item:last-child {
  border-bottom: 1px solid rgba(28, 79, 126, 0.25);
}

/* 各行「上側」の線の両端マーク */
.news-item::before,
.news-item::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  background: var(--brand-icon);
  opacity: 0.6;
  transform: rotate(45deg); 
}

.news-item::before { left: 0; }
.news-item::after { right: 0; }

/* ★最下部の線の両端マーク（最後の行の下線用） */
.news-list::before,
.news-list::after {
content: "";
position: absolute;
bottom: -4px;
width: 8px;
height: 8px;
background: var(--brand-icon);
opacity: 0.6;
transform: rotate(45deg);
}

.news-list::before { left: 0; }
.news-list::after { right: 0; }

/* 日付 */
.news-date {
  flex-shrink: 0;
  min-width: 96px;
  color: var(--brand-icon);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding-top: 0.1rem;
}

/* 本文 */
.news-text {
  flex: 1;
  color: var(--brand-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

/* 本文内リンク */
.news-text a {
  color: var(--brand-text);
  font-weight: 700;
  transition: all 0.3s ease;
}

.news-text a:hover {
  color: var(--brand-icon);
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 767px) {
.news-item {
flex-direction: column;
gap: 0.4rem;
}

.news-date {
min-width: auto;
}
}

/* ===================================================================
   PRODUCT HERO - product.html ヒーロー
   =================================================================== */

/* 左テキストエリア */
.product-hero-text {
  padding-right: 1rem;
  max-width: 450px;
}

/* 小見出し（上） */
.product-hero-lead {
  margin-bottom: 1rem;
  color: var(--brand-dark);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.8;
}

/* メインタイトル */
.product-hero-title {
  margin-bottom: 5rem;
  color: var(--brand-primary);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* 小見出し（下） */
.product-hero-sub {
  margin-bottom: 0;
  color: var(--brand-dark);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.8;
}

/* 右画像 */
.product-hero-image {
  text-align: center;
}

.product-hero-image img {
  max-width: 90%;
  height: auto;
}

/* ===== レスポンシブ ===== */
@media (max-width: 991px) {
  .product-hero-text {
    padding-right: 0;
    margin: 0 auto 2.5rem; /* ← 左右autoで箱を中央へ */
    text-align: center;
  }

  .product-hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .product-hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* ===================================================================
   product.html の「外に預けない」セクション
   ================================================================== */

/* テキストは左寄せのまま */
.product-description .section-title,
.product-description .product-description-text {
  text-align: left;
}

/* ブロック全体を中央に置き、横幅を制限 */
.product-description .col-md-12 {
  max-width: 1200px;
  margin-left: auto;    /* ← 左右autoで中央寄せ */
  margin-right: auto;
}

.product-description-text {
    color: var(--brand-text);
    line-height: 1.6;
    font-size: 1.2rem;
}

/* ===================================================================
   OVERVIEW SECTION - 製品概要（大きな水色カード）
   =================================================================== */

/* 外側の大きな水色カード */
.overview-card {
  max-width: 950px;
  margin: 0 auto;
  padding: 3rem 3.5rem;
  background: var(--brand-primary);   
  border-radius: 40px;
  border-color: #A6CAEC;
  color: #ffffff;
}

/* 製品名バッジ */
.overview-badge {
  display: inline-block;
  padding: 0.55rem 1.75rem;
  margin-bottom: 1.75rem;
  border: 3px solid #D1D1D1;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
}

/* 説明文 */
.overview-lead {
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 810px;
}

.overview-lead:last-of-type {
  margin-bottom: 0;
}

/* 見出し */
.overview-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  margin: 2.75rem 0 1.75rem;
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 700;
}

/* ひし形マーク（見出し両端） */
.overview-heading::before,
.overview-heading::after {
  content: "";
  width: 15px;
  height: 15px;
  border: 3px solid var(--brand-secondary);
  background-color: #CB0906;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* 6枚カードのグリッド（2列×3行） */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* 各カード */
.overview-item {
  background: #DCEAF7;
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  color: var(--brand-text);
}

/* カード上段：アイコン＋小見出し */
.overview-item-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-weight: 790;
}

.overview-item-head i {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.overview-item-head strong {
  color: var(--brand-text);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}

/* カード説明文 */
.overview-item p {
  margin: 0;
  color: var(--brand-text);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* 注意書き */
.overview-note {
  margin: 2.5rem 0 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== レスポンシブ ===== */
@media (max-width: 767px) {
  .overview-card {
    padding: 2rem 1.5rem;
    border-radius: 28px;
  }

  .overview-grid {
    grid-template-columns: 1fr;   /* スマホは1列 */
  }
}

/* ===================================================================
   product.html 「会議データの活用を AI PC 内で完結」セクション
   =================================================================== */

/* カード：薄い水色枠の角丸 */
.flow-card {
  padding: 2.5rem 3rem;

  background: #ffffff;
  border: 2px solid var(--brand-primary);
  border-radius: 28px;
}

/* ---------- 上段：フロー図 ---------- */
.flow-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.flow-step {
  color: var(--brand-text);
  font-size: 1.3rem;
  font-weight: 700;
}

.flow-arrow {
  font-size: 1.3rem;
}

/* ---------- ひし形マーク3組 ---------- */
.flow-list {
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--brand-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.flow-list li:last-child {
  margin-bottom: 0;
}

/* ひし形マーク */
.flow-list li::before {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 0.5rem;
  background: var(--brand-primary);
  transform: rotate(45deg);
}

/* ---------- 太字小見出し ---------- */
.flow-subhead {
  margin-bottom: 0.75rem;
  color: var(--brand-text);
  font-size: 1.25rem;
  font-weight: 600;
}

/* ---------- テキスト ---------- */
.flow-text {
  margin: 0;
  color: var(--brand-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== レスポンシブ ===== */
@media (max-width: 767px) {
  .flow-card {
    padding: 1.75rem 1.5rem;
  }

  .flow-steps {
    gap: 0.6rem;
  }

  .flow-step {
    font-size: 1rem;
  }
}

/* ===================================================================
   product.html 「さまざまなビジネスシーンで活用できます」
   =================================================================== */

/* 説明文 */
.usecase-lead {
  max-width: 890px;
  margin: 0 auto 3rem;
  color: var(--brand-text);
  font-size: 1rem;
  line-height: 1.9;
}

/* カードグリッド（6列 → 実質3列） */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1050px;
  margin: 0 auto;
  /* ★ グリッド全体の外枠線は付けない */
}

/* 各カード：全周に線を持つ */
.usecase-item {
  grid-column: span 2;
  padding: 1.5rem 1.75rem;
  background-color: var(--brand-cta-bg);
  border: 2px solid var(--brand-primary);   /* ★ 四辺すべてに線 */
  text-align: left;

  margin-right: -2px; /* 右隣との線を重ねる */
  margin-bottom: -2px; /* 下との線を重ねる */
}

/* 下段を中央寄せ */
.usecase-item:nth-child(4) {
  grid-column: 2 / span 2;
}
.usecase-item:nth-child(5) {
  grid-column: 4 / span 2;
}

/* 説明文（通常テキストで統一） */
.usecase-item p {
  margin: 0;
  color: var(--brand-text);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
}

/* 上段：ひし形アイコン＋見出し */
.usecase-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

/* ひし形アイコン */
.usecase-head i {
  color: var(--brand-primary);   
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* 見出し（太字で統一） */
.usecase-head strong {
  color: var(--brand-text);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}

/* タブレット以下：いきなり1列に */
@media (max-width: 991px) {
  .usecase-grid {
    grid-template-columns: 1fr;   /* 2列を飛ばして1列 */
    max-width: 420px;
  }

  .usecase-item {
    grid-column: auto !important;   /* PC用の位置指定を解除 */
    margin-right: 0;                /* 1列なので重なり不要 */
  }

  .usecase-item:nth-child(4),
  .usecase-item:nth-child(5) {
    grid-column: auto !important;
  }
}

/* ===================================================================
   product.html 「無料評価版で業務ワークフローを体験」セクション
   =================================================================== */

/* チェックマーク＋小見出し */
.trial-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
  color: var(--brand-text);
  font-size: 1.2rem;
}

.trial-check i {
  color: var(--brand-primary);
  font-size: 1.6rem;
}

/* 説明文 */
.trial-lead {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--brand-text);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* 番号付きリスト（中央配置） */
.trial-steps {
  width: fit-content;
  margin: 0 auto 3.5rem;
  padding-left: 1.5rem;
  color: var(--brand-text);
  font-size: 1.05rem;
  line-height: 2;
}

.trial-steps li {
  padding-left: 0.25rem;
  margin-bottom: 0.5rem;
}

/* ---------- カード ---------- */
.trial-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  background: #f7f8fa;
  border: 2px solid var(--brand-primary);
  border-radius: 28px;
  text-align: left;   /* カード内は左寄せ統一 */
  margin-bottom: 4rem;
}

/* カード内の見出し */
.trial-card-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: var(--brand-dark);
  font-size: 1.7rem;
  font-weight: 700;
}

.trial-card-heading:not(:first-child) {
  margin-top: 2.5rem;
}

/* ひし形マーク（見出し両端） */
.trial-card-heading::before,
.trial-card-heading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 3px solid var(--brand-secondary);
  background-color: #CB0906;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* カード内リスト */
.trial-card-list {
  margin: 0;
  padding-left: 1.25rem;
  list-style: none;
}

.trial-card-list li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
  color: var(--brand-text);
  font-size: 1rem;
  line-height: 1.7;
}

/* ハイフン風のマーカー */
.trial-card-list li::before {
  content: "-";
  position: absolute;
  left: -0.75rem;
  color: var(--brand-text);
}

.trial-card-list li:last-child {
  margin-bottom: 0;
}

/* ===== レスポンシブ ===== */
@media (max-width: 767px) {
  .trial-card {
    padding: 1.75rem 1.5rem;
  }
}

/* ===================================================================
   pricing.html 「プラン」セクション
   =================================================================== */

.pricing-plan .section-title {
  color: var(--brand-secondary);
  font-size: 2.8rem;
}

/* ---------- ひし形マーク＋説明 3組 ---------- */
.plan-points {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 3.5rem;
  padding: 0;
  list-style: none;
}

.plan-points li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--brand-text);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ひし形マーク */
.plan-points li::before {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 0.45rem;
  margin-right: 0.9rem; /* ← ひし形と説明文の間隔はここだけで調整 */
  background: var(--brand-primary);
  transform: rotate(45deg);
}

.plan-points a {
  color: var(--brand-text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.plan-points a:hover {
  color: var(--brand-icon);
}

.plan-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;      /* 2枚の高さを揃える */
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

/* カード本体 */
.plan-card {
  flex: 1 1 380px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  background: #f7f8fa;
  border: 2px solid var(--brand-primary);
  border-radius: 16px;
  overflow: hidden;          /* ヘッダーの角丸を効かせる */

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
transform: translateY(-5px); /* 少し浮き上がる */
box-shadow: 0 10px 16px -8px rgba(68, 179, 225, 0.6); /* 下端にうっすらシャドー */
}

/* ---------- 濃紺ヘッダー ---------- */
.plan-card-header {
  padding: 1.25rem 1.5rem;
  background: var(--brand-icon);   
  text-align: center;
}

.plan-card-name {
  margin: 0;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.plan-card-business {
  border: 2px solid var(--brand-text);
}

/* Business ヘッダー */
.plan-card-business .plan-card-header {
  background: var(--brand-text);   
}

/* ---------- 白ボディ ---------- */
.plan-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;                   /* 高さを揃えたときボタンを下端に */
  padding: 2rem 2rem 1.75rem;
  text-align: left;          /* カード内は左寄せ統一 */
}

/* 参考価格 */
.plan-card-price {
  margin: 0 0 1.75rem;
  color: var(--brand-text);
  font-size: 1.2rem;
  font-weight: 700;
}

/* チェックリスト */
.plan-check-list {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.plan-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  color: var(--brand-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.plan-check-list li:last-child {
  margin-bottom: 0;
}

.plan-check-list i {
  color: var(--brand-primary);   
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.plan-footnote {
  max-width: 1150px;      /* ブロックの横幅を制限 */
  margin: 3rem auto 0;   /* ← 左右autoでブロックを中央配置 */
  color: var(--brand-text);
  font-size: 0.9rem;
  line-height: 1.8;
  text-align: left;      /* 中の文字は左寄せ */
}

/* ===== レスポンシブ ===== */
@media (max-width: 767px) {
  .plan-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ===================================================================
   pricing.html 「ご利用にあたって」セクション
   =================================================================== */

/* カード：薄い水色枠・大きめ角丸 */
.notes-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.75rem 3rem;
  border: 2px solid var(--brand-primary);
  border-radius: 36px;
  background-color: var(--brand-cta-bg);
}

/* リスト */
.notes-list {
  max-width: 830px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.notes-list a {
  color: var(--brand-text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notes-list a:hover {
  color: var(--brand-icon);
}

/* 各項目：ひし形＋説明文（左寄せ） */
.notes-list li {
  position: relative;
  padding-left: 2.25rem;   /* ひし形＋間隔ぶんの余白 */
  margin-bottom: 1.5rem;
  color: var(--brand-text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.notes-list li:last-child {
  margin-bottom: 0;
}

/* ひし形マーク */
.notes-list li::before,
.notes-list .news-list::after {
  content: "";
  position: absolute;
  flex-shrink: 0;
  left: 0;
  top: 0.45rem;
  width: 15px;
  height: 15px;
  border: 3px solid var(--brand-secondary);
  background-color: #CB0906;   
  transform: rotate(45deg);
}

/* ===== レスポンシブ ===== */
@media (max-width: 767px) {
  .notes-card {
    padding: 2rem 1.5rem;
    border-radius: 24px;
  }

  .notes-list li {
    font-size: 1rem;
  }
}

/* ===================================================================
   contact.html
   ================================================================== */

.contact-lead {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-text);
  font-size: 1.1rem;
  text-align: center; /* ← 折り返し時も各行を中央に */
}

/* 「お問い合わせ方法」セクション */
/* カード：薄い水色枠・大きめ角丸 */
.method-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 3.5rem;
  background: #ffffff;
  border: 2px solid var(--brand-primary);
  border-radius: 36px;
  text-align: left;   /* カード内は左寄せ統一 */
}

/* 手順（番号付き） */
.method-steps {
  margin: 0;
  padding-left: 1.4rem;
  color: var(--brand-text);
  font-size: 1.05rem;
  line-height: 1.9;
}

.method-steps li {
  padding-left: 0.25rem;
}

/* 区切り線 */
.method-divider {
  height: 2px;
  margin: 1.75rem 0 2rem;
  background: var(--brand-secondary);
  border: 0;
  opacity: 1;
}

/* 小見出し */
.method-subhead {
  margin-bottom: 1.5rem;
  color: var(--brand-text);
  font-size: 1.2rem;
  font-weight: 700;
}

/* 本文 */
.method-text {
  margin-bottom: 1.25rem;
  color: var(--brand-text);
  font-size: 1rem;
  line-height: 1.9;
}

.method-text:last-of-type {
  margin-bottom: 4rem;
}

/* テキストリンク（中央） */
.method-link {
  margin: 3rem 0 0;
  text-align: center;   /* リンクだけ中央 */
}

.method-link a {
  color: var(--brand-text);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: all 0.3s ease;
}

.method-link a:hover {
  color: var(--brand-icon);
}

/* ===== レスポンシブ ===== */
@media (max-width: 767px) {
  .method-card {
    padding: 2rem 1.5rem;
    border-radius: 24px;
  }
}

/* ===================================================================
   無料評価版ダウンロードページ: dl.html
   ================================================================== */

.hero-section .dl-hero .lead {
  color: var(--brand-light-bg);
}

/* ダウンロード手順（縦タイムライン） */
.dl-steps {
  max-width: 1100px;
  margin: 0 auto;
}

.dl-step {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

/* ステップをつなぐ縦線 */
.dl-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: #C7E1F5;
}

.dl-step-num {
  flex-shrink: 0;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-primary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
}

.dl-step-title {
  margin-bottom: 0.5rem;
  color: var(--brand-text);
  font-size: 1.15rem;
  font-weight: 700;
}

.dl-step-body p {
  margin: 0;
  color: var(--brand-text);
  line-height: 1.7;
}

/* ダウンロード手順：説明文下の画像 */
.dl-step-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
  border: 1px solid #D8E2EC;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* STEP内の説明文 */
.dl-step-text {
  margin: 0;
  color: var(--brand-text);
  line-height: 1.7;
}

/* STEP内のボタン */
.dl-step-btn-wrap {
  margin-top: 2.5rem;   
  text-align: center;
}

/* STEP内の箇条書き */
.dl-step-body ul {
  color: var(--brand-text);
}

.dl-step-body ul li {
  color: var(--brand-text);
}

/* STEP内の表 */
.info-table {
  width: 100%;
  border-collapse: collapse;   /* 線を1本に */
  border-radius: 12px;
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.info-table th,
.info-table td {
  border: 1px solid #d1e2f3;   /* 薄いグレーの罫線 */
  padding: 0.5rem 0.9rem;
  text-align: left;
  vertical-align: middle;
}

/* 左列（ラベル） */
.info-table th {
  width: 140px;                /* ラベル列の幅を固定 */
  background: #F5F5F5;         /* 薄いグレー背景 */
  font-weight: 400;           /* 太字にしない */
  color: var(--brand-text);
  white-space: nowrap;        /* ラベルを折り返さない */
}

/* 右列（内容） */
.info-table td {
  background: #ffffff;
  color: var(--brand-text);
}

/* 評価版のご利用条件 */
.dl-notes-card {
  max-width: 480px;
  margin: 0 auto;
  padding: 2.75rem 3rem;
}

/* ④ 動作環境（スペック表） */
.dl-spec {
  max-width: 720px;
  margin: 0 auto;
}

.dl-spec-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;

  padding: 1rem 1rem;
  border-bottom: 1px solid #D8E2EC;
}

.dl-spec-row:first-child {
  border-top: 1px solid #D8E2EC;
}

.dl-spec-label {
  flex: 0 0 190px;
  color: var(--brand-secondary);
  font-weight: 700;
}

.dl-spec-value {
  flex: 1;
  color: var(--brand-text);
  line-height: 1.6;
}

/* ⑤ 利用規約・ポリシー */
.dl-policy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* カード本体（縦構成に変更） */
.dl-policy-item {
  flex: 1 1 380px;
  max-width: 430px;
  display: block;              /* ← 以前のinline-flexから変更 */
  padding: 1.75rem 2rem;
  background: #ffffff;
  border: 2px solid var(--brand-primary);
  border-radius: 16px;
  text-align: left;
  text-decoration: none;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dl-policy-item:hover {
  transform: translateY(-5px); /* 少し浮き上がる */
  box-shadow: 0 10px 16px -8px rgba(68, 179, 225, 0.6); /* 下端にうっすらシャドー */
}

/* 上段：アイコン＋見出し（横並び） */
.dl-policy-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.dl-policy-head i {
  color: var(--brand-icon);
  font-size: 2rem;
  flex-shrink: 0;
}

.dl-policy-title {
  margin: 0;
  color: var(--brand-text);
  font-size: 1.15rem;
  font-weight: 700;
}

/* 説明文 */
.dl-policy-text {
  margin: 0 0 1.25rem;
  color: var(--brand-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* リンク（外部アイコン付き） */
.dl-policy-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-secondary);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dl-policy-link i {
  font-size: 0.85rem;
}

.dl-policy-link:hover {
  color: var(--brand-icon);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* レスポンシブ */
@media (max-width: 767px) {
  .dl-policy-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* お問い合わせ */
.dl-support-text {
  color: var(--brand-text);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* レスポンシブ */
@media (max-width: 767px) {
  .dl-spec-row {
    flex-direction: column;
    gap: 0.3rem;
  }
  .dl-spec-label {
    flex: none;
  }
  .dl-policy-item {
    min-width: 100%;
  }
}

/* ===================================================================
   END OF STYLESHEET
   ================================================================== */
/*
   カスタマイズのヒント (Customization Tips):

   1. 色を変更する場合
      When changing colors:
      → 一番上の「COLOR SCHEME」セクションを編集してください
         Edit the "COLOR SCHEME" section at the top

   2. ボタンの角丸を変更する場合
      When changing button corner radius:
      → 上記「BUTTON CUSTOMIZATION」セクションの border-radius の値を変更してください
         (例: 0 で完全な四角、 8px や 20px で丸みのあるボタンになります)

   3. 余白を調整する場合
      When adjusting spacing:
      → 「SPACING ADJUSTMENTS」セクションを編集してください
         Edit the "SPACING ADJUSTMENTS" section

   4. 新しいスタイルを追加する場合
      When adding new styles:
      → このファイルの最後に追加してください
         Add them at the end of this file
      → コメントで説明を必ず書いてください
         Always add comments explaining the purpose

   参考資料 (References):
   - Bootstrap 5 Documentation: https://getbootstrap.com/docs/5.0/
   - CSS Variables: https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties

   質問がある場合は、開発チームに相談してください
   If you have questions, consult with the development team
*/
