.ohtani-thanks {
  font-family: "Noto Sans JP", sans-serif;
  color: #1e293b;
  line-height: 1.8;
}

.ohtani-thanks * {
  box-sizing: border-box;
}

.ot-thanks-section {
  min-height: 80vh;
  padding: 110px 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ot-thanks-card {
  width: 100%;
  max-width: 860px;
  background: #fff;
  border-radius: 34px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(10,42,102,.12);
  animation: otFadeUp .6s ease both;
}

.ot-thanks-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a2a66, #2d7ff9);
  color: #fff;
  font-size: 46px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ot-thanks-badge {
  display: inline-block;
  color: #2d7ff9;
  font-weight: 900;
  margin-bottom: 14px;
}

.ot-thanks-card h1 {
  font-size: 44px;
  line-height: 1.35;
  color: #0a2a66;
  font-weight: 900;
  margin: 0 0 22px;
}

.ot-thanks-card p {
  color: #475569;
  font-size: 17px;
  margin: 0 0 34px;
}

.ot-thanks-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 40px 0;
}

.ot-thanks-point {
  background: #f7f9fc;
  border-radius: 18px;
  padding: 22px 16px;
  color: #0a2a66;
  font-weight: 800;
}

.ot-thanks-point span {
  display: block;
  color: #2d7ff9;
  font-size: 24px;
  margin-bottom: 6px;
}

.ot-thanks-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.ot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: .25s;
}

.ot-btn-primary {
  background: #0a2a66;
  color: #fff;
}

.ot-btn-primary:hover {
  background: #2d7ff9;
  color: #fff;
}

.ot-btn-secondary {
  border: 2px solid #0a2a66;
  color: #0a2a66;
}

.ot-btn-secondary:hover {
  background: #0a2a66;
  color: #fff;
}

@keyframes otFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .ot-thanks-section {
    padding: 72px 20px;
  }

  .ot-thanks-card {
    padding: 42px 26px;
  }

  .ot-thanks-card h1 {
    font-size: 32px;
  }

  .ot-thanks-points {
    grid-template-columns: 1fr;
  }
}