  .marker-yellow {
    background: linear-gradient(transparent 60%, #fff3bf 60%);
    font-weight: bold;
  }
  .marker-pink {
    background: linear-gradient(transparent 60%, #ffdeeb 60%);
    font-weight: bold;
  }
.text-link-box {
  margin: 25px auto;
  text-align: center;
  padding: 5px;
}

.btn-to-top {
  display: inline-flex; /* 矢印の位置合わせのために flex に変更 */
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 340px;
  background: linear-gradient(135deg, #ff6b9b 0%, #ff3377 100%);
  color: #fff !important;
  font-weight: bold;
  padding: 14px 20px;
  border-radius: 30px;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(255, 51, 119, 0.3);
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

/* ホバー時にボタンと矢印を少し右上に浮かす効果 */
.btn-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 51, 119, 0.4);
}

.btn-to-top:hover .arrow-icon {
  transform: rotate(45deg) translate(2px, -2px);
}

/* 右矢印アイコン */
.arrow-icon {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px; /* 文字との間隔を少し広げました */
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

  .btn-to-top:active {
    transform: translateY(2px);
    box-shadow: 0 2px 6px rgba(255, 51, 119, 0.3);
  }
  .pose-description {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #333;
    margin: 12px 10px 20px 10px;
    padding: 14px 15px;
    background-color: #fbfbfb;
    border-left: 4px solid #ff6b9b;
    border-radius: 0 8px 8px 0;
  }
  
  /* CVR向上：イベント主催者向けチェックリストボックス */
  .cvr-cta-box {
    margin: 30px 10px;
    padding: 22px 18px;
    border: 2px dashed #ff6b9b;
    border-radius: 12px;
    background: #fffcfd;
  }
  .cvr-cta-title {
    font-size: 1.1rem;
    color: #ff3377;
    font-weight: bold;
    text-align: center;
    margin-bottom: 12px;
  }
  .cvr-cta-list {
    margin: 0 0 18px 0;
    padding-left: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .cvr-cta-list li {
    margin-bottom: 8px;
  }

  /* テーブル・見出し装飾 */
  .tableSt6 {
    width: 100%;
    margin: 20px auto 25px auto;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 155, 0.15);
  }
  .tableSt6 th {
    background: linear-gradient(135deg, #ff7ba5 0%, #ff5388 100%);
    color: #ffffff;
    padding: 16px 18px;
    font-size: 1.05rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.03em;
  }

  /* 導入ボックス（intro-box） */
  .content2 {
    padding: 0 10px;
  }
  .intro-box {
    background: #ffffff;
    border: 2px solid #ffe3ed;
    border-radius: 16px;
    padding: 20px 18px;
    margin: 0 auto 30px auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  }
  .intro-box p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #444444;
    margin: 0 0 14px 0;
  }
  .intro-box p:last-child {
    margin-bottom: 0;
  }

  @media screen and (max-width: 768px) {
    .tableSt6 th {
      font-size: 0.98rem;
      padding: 14px 15px;
    }
    .intro-box {
      padding: 18px 15px;
    }
    .intro-box p {
      font-size: 0.92rem;
    }
  }