@charset "UTF-8";
.pikapika {
  color: #ff0000; /* 文字の色（赤） */
  font-weight: bold;
  font-size: 110%; /* 文字を少し大きく */
  animation: pika 1.5s infinite alternate;
}
@keyframes pika {
  0% { color: #ff0000; text-shadow: 0 0 5px #ffcccc; transform: scale(1.0); }
  100% { color: #ff6600; text-shadow: 0 0 10px #ffaa00; transform: scale(1.05); }
}
/* アフィリエイト用CVボタン（アクティブグリーンVer.） */
.cv-button-wrap {
    text-align: center;
    margin: 2.5em 0;
}
.cv-btn {
    display: inline-block;
    background: #28A745; /* アクティブグリーン */
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 4px 0 #1E7E34, 0 5px 10px rgba(0,0,0,0.2); /* 濃い緑の影 */
    transition: all 0.2s ease;
    width: 90%;
    max-width: 450px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.cv-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1E7E34, 0 3px 6px rgba(0,0,0,0.2);
    opacity: 0.95;
}
.cv-btn .micro-copy {
    display: block;
    font-size: 0.85em;
    margin-bottom: 5px;
    color: #D4EDDA; /* マイクロコピー用の薄いグリーン */
}
.cv-btn .main-text {
    display: block;
    font-size: 1.25em;
    line-height: 1.4;
}

/* 光るアニメーション（共通） */
.cv-btn.shiny::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 30px;
    height: 200px;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    animation: shiny-effect 3s infinite;
}
@keyframes shiny-effect {
    0% { left: -50px; }
    20% { left: 120%; }
    100% { left: 120%; }
}