@charset "UTF-8";
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2A5FAB;
  background: #EAF0FF;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.3;
  color: #2C3E50;
  margin: 0 0 16px;
}

.section-subtext {
  font-size: 15px;
  color: #6B7C8F;
  line-height: 1.8;
  margin: 0;
}

.hero {
  padding: 72px 0 80px;
  background: linear-gradient(160deg, #EAF0FF 0%, #F0F4FF 50%, #fff 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #1D4480;
  background: #C8D8F5;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero__badge .dot {
  width: 8px;
  height: 8px;
  background: #2A5FAB;
  border-radius: 50%;
  animation: pulse-p 2s infinite;
}
.hero__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.25;
  color: #2C3E50;
  margin: 0 0 20px;
}
.hero__title em {
  color: #2A5FAB;
  font-style: normal;
}
.hero__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #4A5568;
  margin: 0 0 28px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6B7C8F;
}
.hero .trust-icon {
  font-size: 16px;
}
.hero__visual {
  position: relative;
  height: 360px;
}
@media (max-width: 900px) {
  .hero__visual {
    height: 260px;
  }
}
.hero__card-stack {
  position: relative;
  height: 100%;
}
.hero__main-card {
  position: absolute;
  top: 20px;
  left: 0;
  width: 280px;
  background: #fff;
  border: 1px solid #E2EDE9;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.hero__main-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.hero__main-card .avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #EAF0FF, #4A7FD4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.hero__main-card .name {
  font-size: 13px;
  font-weight: 700;
}
.hero__main-card .role {
  font-size: 11px;
  color: #9BABB8;
}
.hero__main-card .card-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.hero__main-card .card-tags span {
  font-size: 11px;
  background: #EAF0FF;
  color: #1D4480;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.hero__float-card {
  position: absolute;
  background: #fff;
  border: 1px solid #E2EDE9;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.hero__float-card--pharmacist {
  bottom: 60px;
  right: 0;
  text-align: center;
  min-width: 120px;
}
.hero__float-card .float-icon {
  font-size: 20px;
  margin-bottom: 4px;
}
.hero__float-card .float-label {
  font-size: 10px;
  color: #9BABB8;
}
.hero__float-card .float-value {
  font-size: 22px;
  font-weight: 900;
  color: #2A5FAB;
}
.hero__float-card--match {
  top: 0;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}
.hero__float-card .match-dot {
  width: 8px;
  height: 8px;
  background: #28a745;
  border-radius: 50%;
}

@keyframes pulse-p {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}
.stats-bar {
  background: #2A5FAB;
  padding: 28px 0;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 600px) {
  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stats-bar__item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.stats-bar__item:last-child {
  border-right: none;
}
.stats-bar .stat-number {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stats-bar .stat-number span:last-child {
  font-size: 16px;
}
.stats-bar .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.features {
  padding: 80px 0;
}
.features__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}
.features__card {
  background: #fff;
  border: 1px solid #E2EDE9;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.features__card .feature-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.features__card .feature-tag {
  font-size: 11px;
  font-weight: 700;
  color: #2A5FAB;
  background: #EAF0FF;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.features__card .feature-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
}
.features__card .feature-desc {
  font-size: 13px;
  color: #6B7C8F;
  margin: 0 0 14px;
}
.features__card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features__card .feature-list li {
  font-size: 13px;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
  color: #4A5568;
}
.features__card .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2A5FAB;
  font-weight: 700;
}

.how {
  padding: 80px 0;
  background: #F4F7F6;
}
.how__header {
  text-align: center;
  margin-bottom: 36px;
}
.how__steps {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.how__steps.active {
  display: grid;
}
@media (max-width: 768px) {
  .how__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
.how__step {
  text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E2EDE9;
}
.how .step-num {
  margin-bottom: 12px;
}
.how .step-icon {
  font-size: 32px;
}
.how .step-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}
.how .step-desc {
  font-size: 13px;
  color: #6B7C8F;
}

.pricing {
  padding: 80px 0;
}
.pricing__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 768px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
}
.pricing__card {
  background: #fff;
  border: 2px solid #E2EDE9;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
}
.pricing__card--featured {
  border-color: #2A5FAB;
  box-shadow: 0 8px 32px rgba(42, 95, 171, 0.15);
}
.pricing__card .plan-name {
  font-size: 14px;
  font-weight: 800;
  color: #2A5FAB;
  margin-bottom: 12px;
}
.pricing__card .plan-price {
  font-size: 40px;
  font-weight: 900;
  color: #2C3E50;
}
.pricing__card .plan-price .yen {
  font-size: 20px;
}
.pricing__card .plan-period {
  font-size: 13px;
  color: #9BABB8;
  margin-bottom: 16px;
}
.pricing__card .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}
.pricing__card .plan-features li {
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid #F0F4F3;
}
.pricing__card .plan-features li .check {
  color: #2A5FAB;
  font-weight: 700;
  margin-right: 6px;
}
.pricing__card .btn {
  width: 100%;
  justify-content: center;
}
.pricing__card .btn--primary {
  background: #2A5FAB;
  border-color: #2A5FAB;
}
.pricing__card .btn--primary:hover {
  background: #1D4480;
}
.pricing__card .btn--outline {
  color: #2A5FAB;
  border-color: #2A5FAB;
}
.pricing__card .btn--outline:hover {
  background: #EAF0FF;
}

.faq {
  padding: 80px 0;
  background: #F4F7F6;
}
.faq__header {
  text-align: center;
  margin-bottom: 48px;
}
.faq__grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  background: #fff;
  border: 1px solid #E2EDE9;
  border-radius: 12px;
  overflow: hidden;
}
.faq__q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
}
.faq .q-icon {
  width: 28px;
  height: 28px;
  background: #2A5FAB;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.faq .q-text {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
}
.faq .q-arrow {
  font-size: 14px;
  color: #9BABB8;
  transition: transform 0.3s;
}
.faq .faq__item.is-open .q-arrow {
  transform: rotate(180deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq .a-inner {
  padding: 0 20px 18px 60px;
  font-size: 14px;
  color: #6B7C8F;
  line-height: 1.8;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2A5FAB, #1D4480);
  color: #fff;
  text-align: center;
}
.cta-section .section-label {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.cta-section .section-heading {
  color: #fff;
}
.cta-section .section-subtext {
  color: rgba(255, 255, 255, 0.8);
}
.cta-section__inner {
  max-width: 640px;
  margin: 0 auto;
}
.cta-section__btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.cta-section__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}/*# sourceMappingURL=top-pharmacy.css.map */