body {
    background: #f9f9f9;
    font-family: 'Hiragino Kaku Gothic Pro', Meiryo, sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #a2252d;
}
.top {
    color: white;
    text-align: end;
    width: 90%;
    margin: 0 auto;
    max-width: 800px;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.blog-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}

.blog-meta {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 20px;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-thumbnail {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.blog-content {
    font-size: 1rem;
    color: #444;
}

.blog-content h2, .blog-content h3, .blog-content h4 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 15px;
}

.blog-content a {
    color: #0066cc;
    text-decoration: underline;
}

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

@media screen and (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 15px;
    }

    .blog-title {
        font-size: 1.5rem;
    }
}


.stripchat-section {
    background: #fff;
    text-align: center;
    color: #7b1f24;
    font-family: "Helvetica Neue", sans-serif;
  }
  
  .attention-banner {
    background: #fce8ea;
    display: inline-block;
    padding: 6px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .attention-banner .badge {
    color: #b30000;
    font-weight: bold;
    margin-right: 6px;
  }
  .note {
    font-weight: bold;
    font-size: 13.5px;
    margin-top: 8px;
  }
  
  .subtext {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.8;
    color: #6b1a1f;
  }

  .cta-button {
    position: relative;
    display: inline-block;
    background: #aa1f29;
    color: #fff;
    padding: 16px 28px;
    border-radius: 45px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.8;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
  }
  
  .shine-text {
    position: relative;
    z-index: 2;
  }
  
  .shine {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    z-index: 1;
    animation: shine-move 1s infinite;
  }
  
  @keyframes shine-move {
    0% {
      left: -75%;
    }
    100% {
      left: 125%;
    }
  }
  