
        :root {
            --color-primary: #CC0033;
            --color-secondary: #E6DCCD;
            --color-accent: #E17300;
            --color-black: #000000;
            --color-white: #ffffff;
            --max-width: 1024px;
        }

        /* Reset CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* Layout */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 16px;
        }

        .question-header {
    display: flex;
    align-items: center;
    gap: 8px; /* 「Q」と「h3」の間隔を調整 */
    margin-bottom: 24px; /* 下部の余白を追加して間隔を広げる */
}
.btn:disabled {
    background-color: #cccccc;  /* 背景をグレーに */
    color: #666666;             /* 文字色もグレー */
    cursor: not-allowed;        /* カーソルを禁止マークに */
    opacity: 0.7;               /* 透明度を下げる */
  }
  
.voice-items {
    display: flex;
    flex-direction: column; /* 縦方向に要素を配置 */
    gap: 16px; /* 各 voice-item 間の間隔 */
}

.voice-item {
    display: flex;
    gap: 16px; /* アイコンとテキストの間隔 */
    align-items: flex-start; /* 垂直方向で上揃え */
    width: 100%; /* 幅を全体に広げる */
}


.question-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* 丸い背景の幅 */
    height: 40px; /* 丸い背景の高さ */
    background: #000000; /* 黒背景 */
    color: #ffffff; /* 白文字 */
    border-radius: 50%; /* 丸くする */
    font-size: 16px; /* テキストのサイズ */
    font-weight: bold; /* 太字 */
    text-align: center;
}

.question-header h3 {
    margin: 0; /* h3 の余白をなくす */
    font-size: 18px; /* 必要に応じて調整 */
    font-weight: normal; /* 太字は解除（必要に応じて変更） */
}

.inline-block {
    display: inline-block;
}

/* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--color-white);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .header__inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }

        .logo {
            height: 40px;
        }

        .header__buttons {
            display: flex;
            gap: 16px;
        }

        .btn {
            display: inline-block;
            padding: 8px 24px;
            background: var(--color-primary);
            color: var(--color-white);
            text-decoration: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .btn:hover {
            opacity: 0.8;
        }

        /* First View */
        .first-view {
            margin-top: 72px;
        }

        /* Second View */
        .second-view {
            background: var(--color-secondary);
            padding: 64px 0;
        }

        .second-view__heading {
            color: var(--color-accent);
            font-size: 20px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 32px;
        }

        .text-boxes {
            display: flex;
            gap: 24px;
            margin-bottom: 32px;
        }

        .text-box {
            flex: 1;
            text-align: center;
            font-size: 20px;
            font-weight: 600;
            white-space: pre-line;
            background: var(--color-white);
            padding: 24px;
            border-radius: 4px;
        }

        /* Third View */
        .third-view {
            background: var(--color-accent);
            padding: 64px 0;
            color: var(--color-white);
        }

        .third-view__text {
            font-size: 32px;
            font-weight: 600;
            text-align: center;
            white-space: pre-line;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .show-on-pc {
                display: none;
            }        
            .text-boxes {
                flex-direction: column;
            }

            .header__buttons {
                gap: 8px;
            }

            .btn {
                padding: 8px 16px;
            }
        }

        /* Fourth View */
        .service-section {
            padding: 64px 0;
        }

        .section-heading {
            color: var(--color-accent);
            font-size: 20px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 32px;
        }

        .service-intro {
            font-size: 32px;
            text-align: center;
            margin-bottom: 32px;
            white-space: pre-line;
        }

        .black-section {
            background: var(--color-black);
            color: var(--color-white);
            padding: 16px;
            margin-bottom: 16px;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 32px 0;
        }

        .lecture-content {
    display: flex;
    gap: 32px; /* 画像とテキストの間隔 */
    margin-top: 32px;
    align-items: flex-start; /* 上揃え */
}

.lecture-content img {
    flex: 0 0 30%; /* 横幅を親要素の30%に設定 */
    max-width: 30%; /* 最大横幅を30%に制限 */
    height: auto; /* アスペクト比を維持 */
}

.lecture-text {
    flex: 1; /* 残りの領域をテキストに割り当て */
}

        /* Fifth View */
        .feature-section {
            background: var(--color-secondary);
            padding: 64px 0;
        }

        .feature-boxes {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-bottom: 32px;
        }

        .feature-box {
            display: flex;
            background: var(--color-white);
        }

        .feature-point {
            background: var(--color-black);
            color: var(--color-white);
            padding: 24px;
            width: 25%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-content {
            padding: 24px;
            width: 75%;
        }

        .company-logos {
    display: grid; /* グリッドレイアウトを使用 */
    grid-template-columns: repeat(3, 1fr); /* 3列構成 */
    gap: 16px; /* 各画像間の間隔 */
    align-items: center; /* 垂直方向に中央揃え */
    justify-items: center; /* 水平方向に中央揃え */
}

.company-logos img {
    max-width: 260px; /* 最大横幅を320pxに制限 */
    width: 100%; /* 親要素の幅に合わせる */
    height: auto; /* アスペクト比を維持 */
    display: block; /* ブロック要素にする */
    margin: 0 auto; /* 画像を中央揃え */
}



        /* Pricing Table */

        .price-section {
    background-color: #E6DCCD; /* 既存の背景色 */
    padding: 64px 0; /* feature-section と同じ余白設定 */
}

        .price-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 4px;
            margin-bottom: 32px;
        }

        .price-table th {
            background: var(--color-black);
            color: var(--color-white);
            padding: 16px;
            text-align: left;
        }

        .price-table td {
            background: var(--color-white);
            padding: 24px;
        }

        .price {
            color: var(--color-accent);
            font-size: 20px;
            font-weight: 600;
        }

        .service-table {
    width: 100%; /* 横幅を100%に */
    border-collapse: collapse; /* セルの間隔をなくす */
    margin-bottom: 32px; /* テーブル下の余白を設定（必要に応じて調整） */
}

.service-table th {
    background: #000000; /* 黒背景 */
    color: #ffffff; /* 白文字 */
    padding: 16px; /* 余白を設定 */
    text-align: left; /* 左寄せ */
}

.service-table td {
    background: #ffffff; /* 白背景 */
    color: #000000; /* 通常テキストの黒 */
    padding: 16px; /* セル内の余白 */
    text-align: left; /* 左寄せ */
    border: 1px solid #e6e6e6; /* セル間のボーダー */
}

.service-table td ul {
    list-style: none; /* 元の箇条書きスタイルを無効化 */
    padding: 0; /* 左の余白を削除 */
    margin: 0; /* 上下の余白を削除 */
}

.service-table td ul li {
    position: relative; /* ドット用に相対位置を設定 */
    padding-left: 24px; /* ドットのスペースを確保 */
    margin-bottom: 8px; /* 項目間の余白 */
}

.service-table td ul li::before {
    content: "●"; /* ドットを追加 */
    color: #E17300; /* ドットの色を指定 */
    position: absolute; /* ドットをリスト項目の左側に配置 */
    left: 0; /* 左端に配置 */
    top: 50%; /* 垂直方向で中央揃え */
    transform: translateY(-50%); /* 中央揃えの補正 */
}





        /* FAQ Section */
        .flow-section,
.faq-section,
.contact-section {
    padding: 64px 0; /* feature-section と同じ余白設定 */
}

        .faq-item {
            background: var(--color-secondary);
            margin-bottom: 8px;
        }

        .faq-question {
            padding: 16px;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            width: 100%;
            text-align: left;
            border: none;
            background: none;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 16px;
        }

        .faq-answer.is-open {
            padding: 16px;
        }

        /* Voice Section */
        .voice-item {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
        }

        .voice-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .voice-content {
            flex: 1;
            border: 1px solid var(--color-accent);
            padding: 16px;
            border-radius: 8px;
        }

        .highlight {
            color: var(--color-accent);
            font-weight: 600;
        }

        /* Steps Section */
        .steps {
            /* 4カラム・ステップが同じ高さになるようにする */
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            /* 縦方向の要素を伸ばしてそろえる */
            align-items: stretch;
        }

        .step {
            /* カードを縦並びにし、伸ばせるようにする */
            display: flex;
            flex-direction: column;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: var(--color-black);
            color: var(--color-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .step-content {
            /* 高さを均等にするためにflexボックス化 */
            flex: 1;
            border: 1px solid var(--color-secondary);
            display: flex;
            flex-direction: column;
        }

        .step-header {
            background: var(--color-black);
            color: var(--color-white);
            padding: 16px;
        }

        .step-body {
            background: var(--color-secondary);
            padding: 16px;
            flex: 1; /* ステップボディの余白を伸ばす */
        }

        .center-buttons {
            text-align: center;
    margin-top: 40px; /* ボタン上部の余白を特徴セクションと同じに設定 */
    margin-bottom: 40px; /* 必要に応じて下部余白も調整 */

        }

        .contact-section p {
    text-align: center; /* テキストを中央揃え */
    margin-bottom: 20px; /* ボタンとの間隔を調整 */
}
.btn--black {
    background-color: #000000; /* 黒背景 */
    color: #ffffff; /* 白文字 */
    border: none; /* ボーダーなし */
    padding: 12px 32px; /* ボタン内の余白 */
    border-radius: 4px; /* 角を丸く */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s; /* ホバー時のスムーズなアニメーション */
}

.btn--black:hover {
    opacity: 0.8; /* ホバー時の透明度変化 */
}
.contact-section p {
    text-align: center; /* テキストを中央揃え */
    margin-bottom: 20px; /* ボタンとの間隔を調整 */
}

.company-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* ロゴ間の間隔 */
    margin-top: 20px;
}

.company-logos-container img {
    max-width: 200px; /* 画像の最大幅を制限 */
    height: auto;
    width: 100%;
}

        /* Footer */
        footer {
            background: var(--color-black);
            color: var(--color-white);
            padding: 24px 0;
            text-align: center;
        }
        /* ===== Modern Form Styles ===== */
#subscriptionForm {
    background: var(--color-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 480px;
    margin: 40px auto; /* 上下に余白を追加 */
  }
  
  #subscriptionForm .form-group {
    margin-bottom: 16px;
  }
  
  #subscriptionForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-black);
  }
  
  #subscriptionForm input[type="text"],
  #subscriptionForm input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-size: 16px;
  }
  
  #subscriptionForm input[type="text"]:focus,
  #subscriptionForm input[type="email"]:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 8px rgba(204, 0, 51, 0.3);
    outline: none;
  }
  
  /* チェックボックスのスタイル */
  #subscriptionForm .terms-group {
    display: flex;
    align-items: center;
  }
  
  #subscriptionForm input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 8px;
    vertical-align: middle;
  }
  
  #subscriptionForm .checkbox-label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
  }
  
  /* 送信ボタンのスタイル（有効時） */
  #subscriptionForm button.btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 18px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, opacity 0.3s;
  }
  
  #subscriptionForm button.btn:hover:not(:disabled) {
    background: #a30029; /* var(--color-primary)より少しダークな色 */
  }
  
  #subscriptionForm button.btn:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.7;
  }
  

        @media (max-width: 992px) {
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: 1fr;
            }

            .lecture-content {
                flex-direction: column;
            }

            .feature-box {
                flex-direction: column;
            }

            .feature-point,
            .feature-content {
                width: 100%;
            }

            .steps {
                grid-template-columns: 1fr;
            }
        }