body {
  font-family: "Noto Sans JP", Inter, sans-serif;
  background: #fff;
}

h1, h2, h3, h4 { 
  font-family: 'Inter', 'Noto Sans JP', sans-serif; 
}

.radineer-blue { 
  color: #0055B8; 
}

.radineer-bg-blue { 
  background: #0055B8; 
}

.radineer-orange { 
  color: #FF7A00; 
}

.radineer-bg-orange { 
  background: #FF7A00; 
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0,41,99,0.68) 0%, rgba(0,85,184,0.54) 50%, rgba(255,122,0,0.18) 100%);
}

.section { 
  padding-top: 3.5rem; 
  padding-bottom: 3.5rem; 
}

.cta-btn {
  @apply px-10 py-4 rounded-full font-bold shadow-md transition-all duration-300;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 0.5rem;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  min-width: 200px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  z-index: -1;
  transition: transform 0.3s ease;
  border-radius: 9999px;
}

.cta-btn:hover::before {
  transform: scale(1.1);
}

a.cta-btn-main {
  background: linear-gradient(135deg, #FF7A00, #FF5A00);
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
  padding: 1rem 2rem;
  border-radius: 50px;
}

a.cta-btn-main:hover, 
a.cta-btn-main:focus { 
  background: linear-gradient(135deg, #FF5A00, #FF7A00);
  color: #fff; 
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
}

a.cta-btn-sub {
  background: #fff;
  color: #0055B8;
  border: 2px solid #0055B8;
  box-shadow: 0 6px 20px rgba(0, 85, 184, 0.1);
  padding: 1rem 2rem;
  border-radius: 50px;
}

a.cta-btn-sub:hover, 
a.cta-btn-sub:focus { 
  background: #0055B8; 
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 85, 184, 0.2);
}

/* ボタン内のアイコンアニメーション */
.cta-btn i {
  transition: transform 0.3s ease;
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.cta-btn:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* ボタンのアクティブ状態 */
.cta-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ボタングループのスタイル */
.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .cta-btn {
    width: 100%;
    max-width: 300px;
    margin: 0.5rem auto;
  }
  
  .button-group {
    flex-direction: column;
    align-items: center;
  }
}

.floating-cta {
  position: fixed;
  bottom: 22px;
  left: 0; 
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.floating-cta-inner {
  pointer-events: auto;
}

.section-bg-alt {
  background: linear-gradient(90deg,#f7faff 70%,#fff 100%);
}

.fa-badge {
  background: #0055B8;
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 0.75rem;
  font-size: 0.90rem;
  font-weight: bold;
  margin-left: 6px;
}

.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover { 
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.13); 
  transform: translateY(-2px) 
}

.testimonial-avatar {
  width: 64px; 
  height: 64px; 
  border-radius: 50%; 
  object-fit: cover;
  border: 3px solid #0055B8;
}

.icon {
  width: 3rem; 
  height: 3rem;
  color: #0055B8;
  background: #f2f8ff;
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin-bottom: 0.5em;
  font-size: 1.5rem;
}

.chart-container { 
  width: 100%; 
  max-width: 440px; 
  margin: auto; 
}

/* For PDF: Avoid extra scrolls and hidings */
.overflow-x-scroll,
.overflow-scroll,
.overflow-y-scroll { 
  overflow: visible !important;
}

/* For contrast fixes on PDF */
.pdf-bg-strong { 
  background: #f7faff !important;
}

/* Overlay */
.overlay-dark {
  background: rgba(0, 0, 0, 0.56);
  position: absolute;
  left: 0; 
  right: 0; 
  top: 0; 
  bottom: 0;
  z-index: 1;
}

.overlay-text {
  position: relative;
  z-index: 2;
}

/* Fix for PDF: ensure all is visible & no scroll */
html, 
body { 
  overflow-x: hidden !important; 
}

/* 見えにくい白文字の可読性向上 */
.cta-btn-main,
.cta-btn-main:visited {
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.18), 0 0px 1px #0055B8;
}

.cta-btn-main:hover, .cta-btn-main:focus {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.22), 0 0px 1px #FF7A00;
}

.cta-btn-sub,
.cta-btn-sub:visited {
  color: #0055B8;
  text-shadow: 0 1px 4px rgba(255,255,255,0.7);
}

.cta-btn-sub:hover, .cta-btn-sub:focus {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.22), 0 0px 1px #0055B8;
}

/* 限定特典バナーやカウントダウンの可読性向上 */
.limited-campaign-text, .limited-campaign-timer, .limited-campaign-badge {
  color: #0055B8 !important;
  background: #fff !important;
  border-radius: 0.5em;
  padding: 0.2em 0.7em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: inline-block;
}

.limited-campaign-section {
  background: linear-gradient(90deg, #f7faff 70%, #fff 100%) !important;
  color: #0055B8 !important;
}

.limited-campaign-section .text-white {
  color: #0055B8 !important;
}

.limited-campaign-section .bg-white {
  background: #fff !important;
  color: #FF7A00 !important;
}

/* 特典バナーのテキスト強調 */
.campaign-highlight {
  color: #FF7A00 !important;
  background: #fff !important;
  border-radius: 0.5em;
  padding: 0.2em 0.7em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
} 