        /* すべての要素にbox-sizing: border-boxを適用 */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        /* 全体のフォントスタイルと色調 */
        body {
            font-family: 'Lato', sans-serif;
            background-color: #fcf9e16d;
            color: #555;
            margin: 0;
            padding: 20px 200px 0px 200px;
            line-height: 1.6;
            flex-direction: column;
            display: flex;
            min-height: 100vh;
        }

        /* フォーム全体のスタイル */
        form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(218, 217, 216, 0.758);
        }

        /* 確認画面のスタイル */
        #confirm-section {
            max-width: 600px;
            width: 100%;
            margin: 0 auto;
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(218, 217, 216, 0.758);
            margin-top: 20px;
        }

        .header-image {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .header-img {
            width: 400px;
            /* 横幅を400pxに設定 */
            height: auto;
            /* 高さを自動調整 */
            margin-top: 10px;
            margin-bottom: 20px;
        }

        .header-text {
            position: absolute;
            top: 0%;
            /* 中央より少し上に調整 */
            left: 50%;
            transform: translate(-50%, -50%);
            color: rgb(83, 21, 54);
            /* テキストの色 */
            font-size: 12px;
            /* テキストの大きさ */
        }

        /* 見出しをスクリーンリーダーにのみ表示する */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        /* Q&Aセクション全体のスタイル */
        .qa-section {
            max-width: 800px;
            margin: 40px auto 0;
            padding: 5px 20px 20px;
            background-color: #f9f9f9;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .qa-title {
            font-size: 1.5em;
            text-align: center;
            color: #444;
            margin-bottom: 30px;
            border-bottom: 2px solid #ddd;
            padding-bottom: 10px;
        }

        /* 各Q&Aアイテムのスタイル */
        .qa-item {
            margin-bottom: 20px;
        }

        .qa-question {
            display: block;
            font-size: 1em;
            font-weight: bold;
            color: #333;
            background-color: #f5d7ae1e;
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .qa-question:hover {
            background-color: #f5d7ae4a;
        }

        /* 各Q&Aの回答部分のスタイル */
        .qa-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding-left: 20px;
            background-color: #fff;
            border-left: 3px solid #ff7300;
            margin-top: 5px;
        }

        .qa-answer p {
            margin: 10px 0;
            font-size: 1em;
            color: #555;
        }

        /* チェックボックスを使って、質問をクリックしたときに回答を表示 */
        .qa-toggle {
            display: none;
        }

        .qa-toggle:checked+.qa-question+.qa-answer {
            max-height: 300px;
            /* 必要に応じて変更 */
        }

        /* 見出し（h2）のスタイル */
        h2 {
            font-size: 1.5em;
            color: #444;
            margin-bottom: 0px;
            margin-left: auto;
            margin-right: auto;
        }

        /* 見出し（h3）のスタイル */
        h3 {
            font-size: 1.2em;
            margin: 20px 0;
        }

        /* app-titleのスタイル */
        .app-title {
            padding: 10px 20px;
            border: 3px solid #cf3404ba;
            border-radius: 15px;
            background-color: #f9f9f9;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
            font-size: 2em;
            color: #cf3404ba;
            font-weight: bold;
            margin-left: auto;
            margin-right: auto;
            display: block;
            /* ブロック要素に変更 */
            width: fit-content;
            /* コンテンツ幅に合わせる */
            text-align: center;
            /* テキスト自体を中央揃え */
        }

        /* 最下段のapp-titleスタイル */
        .app-title-clickable {
            transition: transform 0.2s ease, background-color 0.3s ease; /* スムーズなエフェクト */
        }
        
        .app-title-clickable:hover {
            background-color: #f1e4e4; /* 淡い背景色に変更 */
            transform: translateY(-2px); /* 少し浮き上がる */
            box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.15); /* 影を少し強調 */
        }

        /* サンプル曲のコンテナ */
        .song-container {
            max-width: 600px;
            width: 100%;
            margin: 20px auto;
            /* 上下マージンを調整 */
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 15px;
            /* 角を丸くする */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            /* 影を追加 */
            text-align: center;
            /* コンテンツを中央寄せ */
        }

        .song-container audio {
            width: 100%;
            /* オーディオプレイヤーをコンテナの幅に合わせる */
            margin-top: 15px;
            /* 上に余白を追加 */
        }

        .song-container button {
            margin: 10px auto;
            /* ボタンを中央揃え */
        }

        .song-container .lyrics {
            margin-top: 20px;
            background-color: #fff;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .song-container .app-title {
            font-size: 1.5em;
            color: #333;
            margin-bottom: 20px;
            font-weight: bold;
        }

        #form-section {
            margin-top: 20px;
        }

        /* audioプレイヤーの中央揃え */
        audio {
            align-self: center;
            margin: 20px 0;
        }

        /* ボタンを中央揃え */
        button {
            display: block;
            /* ボタンをブロック要素にする */
            margin: 10px auto;
            /* 上下にマージン、左右は自動で中央揃え */
            max-width: 300px;
            /* ボタンの最大横幅を300pxに設定 */
            width: 100%;
            /* 横幅を親要素に合わせる */
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
            border: none;
            transition: background-color 0.3s;
        }

        /* ボタンのスタイル */
        .play-button {
            background-color: #007BFF;
            /* ブルー */
            color: white;
            transition: background-color 0.3s;
            /* スムーズな色の変化 */
        }

        /* 再生ボタンのホバー時の色 (より淡い青) */
        .play-button:hover {
            background-color: #3399ffbc;
            /* 淡いブルー */
        }

        .play-button.stop {
            background-color: #FF0000;
            /* 赤 */
        }

        /* 停止ボタンのホバー時の色 (より淡い赤) */
        .play-button.stop:hover {
            background-color: #ec4141dc;
            /* 淡い赤 */
        }

        .lyrics-button {
            background-color: #28A745;
            /* 緑 */
            color: white;
            transition: background-color 0.3s;
            /* スムーズな色の変化 */
        }

        /* 歌詞ボタンのホバー時の色 (より淡い緑) */
        .lyrics-button:hover {
            background-color: #5ec75ee6;
            /* 淡い緑 */
        }

        .lyrics-button.close {
            background-color: #FFC107;
            /* 黄色 */
        }

        /* 歌詞を閉じるボタンのホバー時の色 (より淡い黄色) */
        .lyrics-button.close:hover {
            background-color: #ffde67e6;
            /* 淡い黄色 */
        }

        /* ダウンロードボタンのスタイル */
        .download-button {
            /* 既存のスタイル */
            background-color: #5a6268;
            color: white;
            border: none;
            padding: 10px 20px;
            margin: 10px auto;
            /* 左右のマージンを自動に */
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s;
            /* 色の変化をスムーズに */
        }

        /* ホバー時のスタイル */
        .download-button:hover {
            background-color: #aaaeb3;
            /* ホバー時に濃いグレーに変更 */
        }

        /* 歌詞表示部分のスタイル */
        .lyrics {
            display: none;
            background-color: #fff;
            padding: 10px 80px 10px 80px;
            border-radius: 5px;
            margin: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* その他のテーマ曲のリスト */
        .theme-song-list {
            text-align: center;
            /* 全体を中央寄せ */
        }

        .left-align-list {
            display: inline-block;
            /* 要素全体を中央寄せ */
            text-align: left;
            /* リスト自体は左揃え */
        }

        .theme-song-list h3 {
            margin-top: 30px;
            font-size: 1.2em;
            color: #333;
        }

        .theme-song-list ul {
            list-style: none;
            padding-left: 0;
        }

        .theme-song-list ul li {
            font-size: 1em;
            color: #666;
            padding: 5px 0;
            border-bottom: 1px solid #ddd;
        }

        .theme-song-list ul li:last-child {
            border-bottom: none;
        }

        /* 入力フィールドのスタイルと余白 */
        input[type="text"],
        textarea {
            width: calc(100% - 30px);
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1em;
            margin-top: 8px;
            transition: border 0.3s ease;
            width: 100%;
        }

        input[type="text"]:focus,
        textarea:focus {
            border-color: #a0d8ef;
            outline: none;
            box-shadow: 0 0 5px rgba(160, 216, 239, 0.5);
        }

        textarea {
            height: 80px;
        }

        /* 確認ボタンのスタイル */
        #confirm-button {
            display: inline-block;
            background-color: #f7ac16ba;
            color: white;
            padding: 12px 55px;
            border: none;
            border-radius: 25px;
            font-size: 1.3em;
            font-weight: bold;
            cursor: pointer;
            margin-top: 15px;
            transition: background-color 0.3s ease;
        }

        #confirm-button:hover {
            background-color: #e79d09;
        }

        /* ボタンのコンテナ */
        .button-container {
            display: flex;
            gap: 15px;
            /* ボタン間のスペースを15pxに設定 */
            justify-content: center;
            /* ボタンを中央寄せにする場合 */
        }

        /* 戻るボタンのスタイル */
        #back-button {
            background-color: #ffcccb;
            color: white;
            padding: 12px 55px;
            border: none;
            border-radius: 25px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            margin-top: 15px;
            transition: background-color 0.3s ease;
            width: auto;
            /* 横幅を自動調整 */
            display: inline-block;
            /* インラインブロック要素に設定 */
            box-sizing: border-box;
            /* パディングとボーダーを含めてサイズを計算 */
        }

        #back-button:hover {
            background-color: #ff9999;
            /* 戻るボタンのホバー時の色 */
        }

        /* 決済ページへボタンのスタイル */
        #payment-button {
            background-color: #f7ac16ba;
            color: white;
            padding: 12px 55px;
            border: none;
            border-radius: 25px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            margin-top: 15px;
            transition: background-color 0.3s ease;
            width: auto;
            /* 横幅を自動調整 */
            display: inline-block;
            /* インラインブロック要素に設定 */
            box-sizing: border-box;
            /* パディングとボーダーを含めてサイズを計算 */
        }

        #payment-button:hover {
            background-color: #e79d09;
            /* 決済ボタンのホバー時の色 */
        }

        /* 点滅アニメーションの定義 */
        @keyframes blink {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        /* ボタンの点滅スタイル */
        .blinking {
            animation: blink 1s infinite;
        }

        /* ボタンを無効化したときのスタイル */
        .disabled-button {
            cursor: not-allowed;
            opacity: 0.6;
        }

        /* チェックボックスのカード形式スタイル */
        .checkbox-card {
            border: 2px solid #ddd;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: background-color 0.3s ease, border-color 0.3s ease;
        }

        .checkbox-card:hover {
            background-color: #f0f8ff;
            border-color: #a0d8ef;
        }

        /* 選択されたチェックボックスのスタイル */
        .checkbox-card input[type="checkbox"]:checked+span {
            background-color: #a0d8ef;
            border-radius: 5px;
            padding: 5px 10px;
            color: white;
        }

        .big-text {
            font-size: 1.3em;
        }

        /* 小さいテキストのスタイル */
        .small-text {
            font-size: 0.8em;
        }

        .small-t {
            color: red;
            font-size: 12px;
        }

        .c-red {
            color: red;
            font-weight: bold;
        }

        a {
            color: var(--link-text-color);
        }

        a:hover {
            color: blue;
            /* マウスオーバー時の色を青（または希望の色）に設定 */
            text-decoration: none;
        }

        .no-underline {
            text-decoration: none;
            /* 下線を消去 */
        }

        .center-text {
            text-align: center;
        }

        .top1 {
            display: block;
            margin-top: 10px;
        }

        .top6 {
            display: block;
            margin-top: 60px;
        }

        /* 合計金額のスタイル */
        #total {
            font-size: 1.5em;
            color: #3cb7e8;
        }

        ul {
            list-style-type: none;
            padding: 0;
        }

        ul li {
            font-size: 1.1em;
            color: #555;
            padding: 5px 0;
        }

        /* トースト通知のスタイル */
        .toast {
            opacity: 0;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 25px;
            padding: 15px;
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 16px;
            transition: opacity 0.5s ease, transform 0.5s ease;
            z-index: 10;
        }

        .toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(-10px);
        }

        /* ラベルに余白を追加するクラス */
        .label-margin {
            margin-top: 20px;
            display: block;
            /* 必要なら追加 */
        }

        /* ラジオボタンやcheckbox-card内のラベルはマージンを追加しない */
        .no-margin label,
        .checkbox-card label {
            margin-top: 0;
        }

        /* ラインのスタイル */
        .line-wrapper {
            position: relative;
            display: block;
            margin-top: 30px;
            margin-bottom: 50px;
        }

        .line-wrapper::before {
            content: "";
            position: absolute;
            top: -10px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(to right, #e8913a5b, #fff);
        }

        .sns-links {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .sns-icon {
            width: 40px;
            height: 40px;
            transition: transform 0.3s, opacity 0.3s;
            margin: 0 7.5px; 
        }       
        
        .sns-icon:hover {
            transform: scale(1.2); /* ホバー時の拡大 */
            opacity: 0.8; /* ホバー時の透明度調整 */
        }

        /* フッタースタイル */
        footer {
            text-align: center;
            /* フッター内のテキストを中央寄せにする */
            padding: 50px 0 5px 0;
            /* 内側の余白調整 */
        }

        footer ul {
            list-style: none;
            /* リストのスタイルをなしにする */
            padding: 0;
            /* パディングをリセットする */
            display: inline-block;
            /* リストをインラインブロックとして表示 */
            margin: 0;
            /* マージンをリセットする */
        }

        footer ul li {
            display: inline;
            /* リストアイテムを横並びに表示 */
            margin-right: 15px;
            /* リストアイテム間の間隔 */
        }

        footer ul li a {
            font-size: 13px;
        }

        footer p,
        footer p a {
            font-size: 15px;
        }

        /* 追尾型広告のスタイル */
        .order-banner {
            position: fixed;
            bottom: -150px;
            /* 初期状態では画面外に非表示 */
            right: 20px;
            width: 130px;
            display: block;
            /* JavaScriptで制御するため、初期状態はblockに */
            cursor: pointer;
            transition: bottom 0.5s ease;
            /* アニメーション */
        }

        .order-banner img {
            width: 100%;
            height: 100%;
        }

        @media (max-width: 768px) {

            /* 全体のフォントスタイルと色調 */
            body {
                padding: 25px 20px 0px 20px;
            }

            main {
                width: 100%;
                margin: 0 auto;
                padding: 0 15px;
                box-sizing: border-box;
            }

            .header-img {
                width: 300px;
                /* 横幅を300pxに設定 */
                height: auto;
                /* 高さを自動調整 */
                margin-top: 10px;
                margin-bottom: 20px;
            }

            /* 歌詞表示部分のスタイル */
            .lyrics {
                padding: 10px 20px;
                margin: 20px 0px;
                font-size: 14px;
            }

            /* app-titleのスタイル */
            .app-title {
                font-size: 1.1em;
            }

            /* 見出し（h3）のスタイル */
            h3 {
                font-size: 1em;
            }

            /* 確認ボタンのスタイル */
            #confirm-button {
                padding: 12px 25px;
                width: 60%;
            }

            /* 戻るボタンのスタイル */
            #back-button {
                padding: 12px 25px;
            }

            /* 決済ページへボタンのスタイル */
            #payment-button {
                padding: 12px 25px;
            }

            /* フッタースタイル */
            footer {
                padding: 35px 0px 2px 0px;
                /* 上下のパディングを設定 */
            }

            footer ul li a {
                font-size: 12px;
                /* リンクの文字サイズを12pxに設定 */
            }

            footer p,
            footer p a {
                font-size: 12px;
                margin-top: 10px;
                /* 上のマージンを10pxに設定 */
            }
        }