    body {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 18px;
      font-weight: bold;
      line-height: 2.5;
      background: #fff;
      color: #111;
        }

    main {
      padding: 16px;
      margin: 0px auto;
      max-width: 600px;
    }

    .text2 {
      font-size: 16px;
      font-weight: 400;
    }

    .card {
        border: 2px solid #0496f8;
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
        
    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }



    h1 {
      font-size: 20px;
      text-align: center;
      position: relative;
      padding: 1rem 2rem calc(1rem + 5px);
      background: #fff100;
    }

    h1:before {
       position: absolute;
       top: -7px;
       left: -7px;
       width: 100%;
       height: 100%;
       content: '';
       border: 4px solid #000;
    }

    h2 {
      background-color: #fff100;
      text-align: center;
      font-size: 22px;
      margin: 10px;
    }

    ul {
        list-style: none;
        padding-left: 0;
        margin-left: 0;
      }


      img {
         display: block;
         max-width: 98%;
         margin: 15px auto;
       }

    .tensen {
       align-items: center;
       margin-bottom: 15px;
       padding: 10px;
       border: 1px dashed #3498db;
       border-radius: 5px;
     }

    .red{
      color: #e41700;
    }

    .blue{
      color: #0021db;
    }
    
    .highlight {
      background: #e6faff;
      padding: 0.2em 0.4em;
      border-left: 4px solid #127bf3;
      text-align: center;
    }
    .emphasis {
      color: #e41700;
      font-size: 23px;
      text-align: center;
      display: block;
    }


    .quote {
      font-style: italic;
      font-size: 23px;
      margin: 1em 0;
      text-align: center;
      color: #ff006a;
    }

        .quote2 {
          display: block;
      font-style: italic;
      font-size: 30px;
      text-align: center;
      color: #002efa;
    }


    .box {
      background: #f0f0f5;
      padding: 1em;
      margin: 1.5em 0;
      text-align: center;
    }

    .cta {
      background: #e74c3c;
      color: white;
      text-align: center;
      font-size: 20px;
      font-weight: bold;
      padding: 16px;
      border-radius: 12px;
      margin: 30px 0;
      text-decoration: none;
      display: block;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }


    .cta:hover {
      background: #c0392b;
    }


    .note {
      font-size: 14px;
      color: #777;
      text-align: center;
      margin-top: 20px;
    }

            .urgency-bar {
            background: linear-gradient(45deg, #001988, #011066);
            color: white;
            text-align: center;
            padding: 10px;
            font-weight: bold;
            animation: pulse 2s infinite;
            margin: 0px auto;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }


            .scale {
            animation: scale 2s infinite;
        }
        
        @keyframes scale {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }


        
        .cp_arrows_container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .cp_arrows {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 120px; /* 横長に */
            height: 120px;
        }

        .cp_arrow {
            position: absolute;
            width: 100px; /* 横長に */
            height: 10px;
            opacity: 0;
        }

        /* 全ての矢印セットを同じタイミングで */
        .cp_arrows .cp_arrow:first-child {
            animation: arrow-move-down 2s ease-in-out infinite;
        }
        .cp_arrows .cp_arrow:nth-child(2) {
            animation: arrow-move-down 2s 0.3s ease-in-out infinite;
        }

        /* 矢印の形状（下向き・横長） */
        .cp_arrow:before,
        .cp_arrow:after {
            position: absolute;
            content: '';
            top: 0;
            width: 43px; /* 横長に */
            height: 3px;
            background: #161616;
        }

        .cp_arrow:before {
            left: 10px;
            transform: rotate(30deg);
        }

        .cp_arrow:after {
            right: 10px;
            transform: rotate(-30deg);
        }

        /* 2番目の矢印を少し下に配置 */
        .cp_arrow:nth-child(2) {
            top: 40px;
        }

        /* 下向きアニメーション */
        @keyframes arrow-move-down {
            0% { 
                opacity: 0; 
                transform: translateY(-20px);
            }
            50% { 
                opacity: 1; 
                transform: translateY(0);
            }
            100% { 
                opacity: 0; 
                transform: translateY(20px);
            }
        }
        
        