/* ============================================
   Section 20: 仮想通貨って怖そうと思う方へ
   （旧統合版から下半分のスタイルを削除）
   ============================================ */

.reassure {
  position: relative;
  background: linear-gradient(180deg, #0F1A30 0%, #1A2744 50%, #0F1A30 100%);
  padding: 80px 20px 80px;
  overflow: hidden;
}

/* 上下のグラデライン区切り */
.reassure::before,
.reassure::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
  opacity: 0.4;
}
.reassure::before { top: 0; }
.reassure::after { bottom: 0; }

/* ============================================
   背景の浮遊ドット
   ============================================ */
.reassure__bg-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.reassure__dot {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: reassureFloat 8s ease-in-out infinite;
}
.reassure__dot--1 {
  width: 14px; height: 14px;
  background: var(--color-yellow);
  top: 8%; left: 7%;
  box-shadow: 0 0 20px rgba(255, 199, 0, 0.6);
}
.reassure__dot--2 {
  width: 10px; height: 10px;
  background: var(--color-blue-3);
  top: 18%; right: 9%;
  animation-delay: -2s;
  box-shadow: 0 0 16px rgba(91, 164, 217, 0.6);
}
.reassure__dot--3 {
  width: 16px; height: 16px;
  background: var(--color-yellow);
  bottom: 22%; left: 10%;
  animation-delay: -4s;
  box-shadow: 0 0 22px rgba(255, 199, 0, 0.5);
}
.reassure__dot--4 {
  width: 8px; height: 8px;
  background: var(--color-blue-2);
  bottom: 12%; right: 14%;
  animation-delay: -1s;
  box-shadow: 0 0 14px rgba(184, 216, 242, 0.6);
}
.reassure__dot--5 {
  width: 12px; height: 12px;
  background: var(--color-gold);
  top: 50%; left: 4%;
  animation-delay: -5s;
  box-shadow: 0 0 18px rgba(227, 184, 90, 0.6);
}
.reassure__dot--6 {
  width: 10px; height: 10px;
  background: var(--color-yellow-light);
  top: 45%; right: 5%;
  animation-delay: -3s;
  box-shadow: 0 0 16px rgba(255, 225, 56, 0.6);
}

@keyframes reassureFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(10px); }
}

/* ============================================
   背景のキラキラ星
   ============================================ */
.reassure__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.reassure__star {
  position: absolute;
  color: var(--color-gold-light);
  font-size: 18px;
  opacity: 0;
  animation: reassureStarTwinkle 3s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(242, 216, 148, 0.8);
}
.reassure__star--1 { top: 6%;  left: 22%; animation-delay: 0s; }
.reassure__star--2 { top: 30%; right: 24%; animation-delay: 0.8s; font-size: 14px; }
.reassure__star--3 { bottom: 32%; left: 26%; animation-delay: 1.6s; font-size: 22px; }
.reassure__star--4 { bottom: 10%; right: 28%; animation-delay: 2.4s; }
.reassure__star--5 { top: 60%; left: 50%; animation-delay: 1.2s; font-size: 12px; }

@keyframes reassureStarTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* ============================================
   インナー
   ============================================ */
.reassure__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 2;
}

/* ============================================
   上半分（怖くない）
   ============================================ */
.reassure__top {
  text-align: center;
  margin-bottom: 60px;
}

/* 警告ストライプ + 打ち消し */
.reassure__warning-wrap {
  position: relative;
  width: 240px;
  height: 60px;
  margin: 0 auto 30px;
}

.reassure__warning-stripe {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    #FFC700 0px,
    #FFC700 12px,
    #1A2744 12px,
    #1A2744 24px
  );
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  opacity: 0.55;
}

.reassure__warning-cancel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 26, 48, 0.9);
  border: 3px solid var(--color-coral);
  border-radius: 50%;
  z-index: 2;
}

.reassure__warning-icon {
  font-size: 26px;
  filter: grayscale(0.3);
  opacity: 0.8;
}

.reassure__warning-slash {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 4px;
  background: var(--color-coral);
  border-radius: 2px;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 0 12px rgba(232, 131, 92, 0.7);
}

/* 引用バッジ */
.reassure__quote-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 30px;
  font-family: var(--font-jp);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-white);
}

.reassure__quote-mark {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-gold-light);
  line-height: 0;
  position: relative;
  top: 6px;
}

.reassure__quote-sub {
  margin: 12px 0 30px;
  font-size: 14px;
  color: var(--color-blue-2);
  font-weight: 600;
}

/* メインメッセージ */
.reassure__message {
  margin-top: 30px;
}

.reassure__message-line {
  margin: 0 0 8px;
  font-family: var(--font-jp);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.reassure__highlight {
  color: var(--color-blue-2);
  padding: 0 4px;
}

.reassure__highlight-yellow {
  color: var(--color-yellow);
  font-weight: 800;
  background: linear-gradient(transparent 65%, rgba(255, 199, 0, 0.25) 65%);
  padding: 0 2px;
}

/* ============================================
   区切り装飾
   ============================================ */
.reassure__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 40px auto 50px;
  max-width: 320px;
}

.reassure__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
}

.reassure__divider-diamond {
  color: var(--color-gold);
  font-size: 14px;
  text-shadow: 0 0 12px rgba(227, 184, 90, 0.8);
  animation: reassureDiamondSpin 4s linear infinite;
}

@keyframes reassureDiamondSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================
   下部：つなぎ文
   ============================================ */
.reassure__bottom {
  text-align: center;
}

.reassure__lead {
  margin: 0 0 8px;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-blue-2);
}

.reassure__hellip {
  letter-spacing: 0.1em;
  color: var(--color-gold-light);
}

.reassure__lead-title {
  margin: 0 0 8px;
  font-family: var(--font-jp);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.4;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.reassure__lead-sub {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-blue-2);
}

/* ============================================
   PC（768px以上）
   ============================================ */
@media (min-width: 768px) {

  .reassure {
    padding: 110px 40px 100px;
  }

  /* 上半分 */
  .reassure__top {
    margin-bottom: 80px;
  }

  .reassure__warning-wrap {
    width: 320px;
    height: 76px;
    margin-bottom: 40px;
  }

  .reassure__warning-cancel {
    width: 72px;
    height: 72px;
  }

  .reassure__warning-icon {
    font-size: 32px;
  }

  .reassure__warning-slash {
    width: 90px;
    height: 5px;
  }

  .reassure__quote-badge {
    font-size: 22px;
    padding: 14px 32px;
  }

  .reassure__quote-mark {
    font-size: 36px;
    top: 8px;
  }

  .reassure__quote-sub {
    font-size: 16px;
    margin: 16px 0 40px;
  }

  .reassure__message-line {
    font-size: 26px;
    margin-bottom: 12px;
  }

  /* 区切り */
  .reassure__divider {
    margin: 60px auto 70px;
    max-width: 480px;
  }
  .reassure__divider-diamond {
    font-size: 18px;
  }

  /* 下部 */
  .reassure__lead {
    font-size: 19px;
  }

  .reassure__lead-title {
    font-size: 34px;
    margin-bottom: 12px;
  }

  .reassure__lead-sub {
    font-size: 17px;
  }
}