@charset "utf-8";

/*-----------------------------------------------------
  Variables & Reset
-------------------------------------------------------*/
:root {
  --color-primary: #0096cd;
  /* Blue */
  --color-primary-dark: #007b91;
  --color-secondary: #ff6c00;
  /* Orange */
  --color-accent: #ffd900;
  /* Yellow */
  --color-text: #333;
  --color-bg-light: #f9f9f9;
  --color-bg-yellow: #fffde8;
  --font-base: 'Noto Sans JP', "メイリオ", Meiryo, sans-serif;
}

html,
body {
  font-family: var(--font-base);
  background: #fff;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/*-----------------------------------------------------
  Utility Classes
-------------------------------------------------------*/
.text-blue {
  color: var(--color-primary) !important;
}

.text-orange {
  color: var(--color-secondary) !important;
}

.text-red {
  color: #ff000c !important;
}

.text-yellow {
  color: var(--color-accent) !important;
}

.text-green {
  color: #00b5b3 !important;
}

.bg-blue {
  background-color: var(--color-primary) !important;
}

.bg-green {
  background-color: #00b5b3 !important;
}

.bg-light-yellow {
  background-color: var(--color-bg-yellow) !important;
}

.bg-gray {
  background-color: #f4f4f4 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.shadow-md {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/*-----------------------------------------------------
  Animations
-------------------------------------------------------*/
@keyframes pulse-btn {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 108, 0, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 108, 0, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 108, 0, 0);
  }
}

.pulse-btn {
  animation: pulse-btn 2s infinite;
}

/*-----------------------------------------------------
  Buttons
-------------------------------------------------------*/
.btn-main-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, #ff9b00, #ff6000);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 96, 0, 0.4);
  border-bottom: 4px solid #cc4e00;
}

.btn-main-cta:hover {
  transform: translateY(2px);
  border-bottom: 2px solid #cc4e00;
  box-shadow: 0 2px 10px rgba(255, 96, 0, 0.3);
  color: #fff;
}

.btn-rank {
  display: inline-block;
  padding: 0.5rem 0.5rem;
  /* Reduced horizontal padding */
  font-size: 0.85rem;
  /* Slightly smaller font */
  color: #fff;
  border-radius: 20px;
  text-align: center;
  min-width: unset;
  /* Remove fixed min-width */
  width: 100%;
  max-width: 100%;
  white-space: normal;
  /* Allow text wrapping */
  line-height: 1.3;
}

@media (max-width: 480px) {
  .btn-rank {
    padding: 0.4rem 0.2rem;
    font-size: 0.75rem;
  }
}

.btn-primary-gradient {
  background: linear-gradient(to right, #ffa700, #ff6a00);
  border-bottom: 3px solid #e65c00;
}

.btn-secondary-gradient {
  background: linear-gradient(to right, #00c0f9, #0358e6);
  border-bottom: 3px solid #0041a8;
}

/*-----------------------------------------------------
  UI Components
-------------------------------------------------------*/
/* Yellow Marker */
.yellow-marker {
  background: linear-gradient(transparent 60%, rgba(255, 217, 0, 0.6) 60%);
}

/* Double Circle Emphasis */
.mark-double {
  font-weight: 900;
  /* Extra bold */
  text-shadow: 0 0 1px currentColor, 0 0 1px currentColor;
  /* Artificial stroke to thicken */
  transform: scale(1.1);
  /* Slightly larger */
}


.mark-icon {
  font-size: 2.5rem;
  font-weight: normal;
  /* Reduced from bold */
  line-height: 1;
  margin-bottom: 0.2rem;
}

.mark-icon.text-red {
  color: #ff000c;
}

/* Star Rating */
.star-rating {
  letter-spacing: 2px;
  font-size: 1.1rem;
}

/* Flow Triangle */
.flow-triangle::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--color-primary);
  margin: 1rem auto;
}