/* ============================================================
   ピカピカウォッシュ — near-key-416.css
   Design DNA: template62.xml
   Primary: #18c9e1 | Text: #000 | Bg: #fff | Accent: #ddfbff
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  background: #ffffff;
}

a { color: inherit; text-decoration: none; transition: color 150ms cubic-bezier(0.65,0,0.35,1); }
a:hover { color: #18c9e1; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* === LAYOUT === */
.container {
  margin: 0 auto;
  padding: 0 12px;
  max-width: 450px;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  .container { max-width: 1440px; padding: 0 18px; }
}

/* === TYPOGRAPHY === */
h1 { font-size: 4.8rem; line-height: 5rem; letter-spacing: -0.01em; font-weight: 700; }
h2 { font-size: 3.6rem; line-height: 4rem; letter-spacing: -0.01em; font-weight: 700; }
h3 { font-size: 2.4rem; line-height: 2.8rem; font-weight: 700; }
h4 { font-size: 1.8rem; line-height: 2.2rem; font-weight: 600; }
p  { font-size: 1.6rem; line-height: 2rem; }

@media screen and (min-width: 1024px) {
  h1 { font-size: 7rem; line-height: 7rem; letter-spacing: -0.02em; }
  h2 { font-size: 5rem; line-height: 5.2rem; }
  h3 { font-size: 3.6rem; line-height: 4rem; }
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  padding: 16px 24px;
  background: #000000;
  color: #fff;
  border-radius: 12px;
  font-size: 1.6rem;
  line-height: 2rem;
  border: none;
  text-align: center;
  transition: all 150ms cubic-bezier(0.65,0,0.35,1);
  text-decoration: none;
}
.btn-primary:hover { background: #303030; color: #fff; cursor: pointer; }
.btn-primary:active { background: #8e8e8e; }

.btn-outline {
  display: inline-block;
  padding: 14px 24px;
  background: transparent;
  color: #000;
  border-radius: 12px;
  font-size: 1.6rem;
  line-height: 2rem;
  border: 1px solid #000;
  text-align: center;
  transition: all 150ms cubic-bezier(0.65,0,0.35,1);
  text-decoration: none;
}
.btn-outline:hover { background: #000; color: #fff; cursor: pointer; }
.btn-outline:active { background: #8e8e8e; border-color: #8e8e8e; color: #fff; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid #e1e1e1;
  margin-top: 8px;
}
@media screen and (min-width: 1024px) { .site-header { margin-top: 16px; } }

.header-inner {
  padding: 4px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .header-inner { padding: 7px 12px; }
}

.logo a { display: flex; align-items: center; }
.logo svg text { font-size: 18px; }

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f4f4f4;
  border: none;
  border-radius: 50%;
  font-size: 1.6rem;
  transition: background 150ms cubic-bezier(0.65,0,0.35,1);
}
.hamburger:hover { background: #e1e1e1; }
@media screen and (min-width: 1024px) { .hamburger { display: none; visibility: hidden; } }

/* === MAIN NAV === */
.main-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  -webkit-overflow-scrolling: touch;
}
.main-nav.open { display: flex; }

@media screen and (min-width: 1024px) {
  .main-nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
    gap: 0;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
  }
}

.main-nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .main-nav ul {
    flex-direction: row;
    gap: 32px;
  }
}

.main-nav ul a {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  transition: color 150ms cubic-bezier(0.65,0,0.35,1);
}
@media screen and (min-width: 1024px) {
  .main-nav ul a { font-size: 1.6rem; font-weight: 400; }
}
.main-nav ul a:hover,
.main-nav ul a.active { color: #18c9e1; }

.nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f4f4f4;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) { .nav-close { display: none; } }

/* === HERO === */
.hero {
  padding: 40px 0 0;
  background: #ddfbff;
  border-radius: 24px;
  margin: 8px 12px 64px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .hero { padding: 64px 0 0; margin: 0 18px 128px; }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    align-items: flex-end;
    gap: 0;
  }
}

.hero-content {
  padding: 0 16px 32px;
  flex: 1;
}
@media screen and (min-width: 1024px) {
  .hero-content { padding: 0 0 64px 48px; max-width: 55%; }
}

.hero-content h1 {
  margin-bottom: 195px;
  font-size: 4.8rem;
  line-height: 5rem;
}
@media screen and (min-width: 1024px) {
  .hero-content h1 { margin-bottom: 105px; font-size: 7rem; line-height: 7rem; }
}

.hero-content h1 em {
  font-style: italic;
  color: #18c9e1;
}

.hero-sub {
  margin: 16px 0 24px;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #444;
}

.hero-image {
  flex: 0 0 auto;
  align-self: flex-end;
}
.hero-image img {
  border-radius: 24px 0 0 0;
  width: 100%;
  height: 260px;
  object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .hero-image img { height: 400px; width: 560px; }
}

/* === STATS BAR === */
.stats-bar {
  padding: 32px 0;
  margin-bottom: 64px;
}
@media screen and (min-width: 1024px) {
  .stats-bar { padding: 48px 0; margin-bottom: 128px; }
}

.stats-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .stats-inner { flex-wrap: nowrap; justify-content: space-around; }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  min-width: 120px;
}
.stat-item i {
  font-size: 2.4rem;
  color: #18c9e1;
  margin-bottom: 4px;
}
.stat-num {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 3.2rem;
}
.stat-label {
  font-size: 1.3rem;
  color: #8e8e8e;
  text-align: center;
}

/* === SECTION COMMON === */
section { margin-bottom: 52px; }
@media screen and (min-width: 1024px) { section { margin-bottom: 128px; } }

.section-sub {
  margin-top: 16px;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #8e8e8e;
  max-width: 640px;
}
@media screen and (min-width: 1024px) { .section-sub { margin-top: 24px; } }

/* === SERVICES === */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .services-grid { gap: 12px; margin-top: 128px; }
}

.service-card {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 100%;
  background: #f4f4f4;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 402px;
  transition: transform 150ms cubic-bezier(0.65,0,0.35,1), box-shadow 150ms;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 2px 4px 32px rgba(0,0,0,0.12);
}
@media (min-width: 430px) { .service-card { min-height: 416px; } }
@media screen and (min-width: 1024px) {
  .service-card {
    width: calc(25% - 9px);
    flex-basis: calc(25% - 9px);
    min-height: 490px;
  }
}

.service-card.featured { background: #000; color: #fff; }

.service-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
}

.service-body h3 { font-size: 2.4rem; line-height: 2.8rem; }
.service-body p { font-size: 1.5rem; line-height: 2.2rem; color: #8e8e8e; flex-grow: 1; }
.service-card.featured .service-body p { color: rgba(255,255,255,0.6); }

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: #18c9e1;
  margin: 8px 0;
}

/* === WHY US === */
.why-us { background: #f4f4f4; border-radius: 24px; padding: 48px 24px; }
@media screen and (min-width: 1024px) { .why-us { padding: 64px 48px; } }

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .features-grid { margin-top: 48px; gap: 12px; }
}

.feature-card {
  box-sizing: border-box;
  width: 100%;
  min-height: 400px;
  padding: 40px 24px;
  background: #ffffff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .feature-card {
    width: calc(33.333333% - 8px);
    flex-basis: calc(33.333333% - 8px);
  }
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #ddfbff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #18c9e1;
  margin-bottom: 8px;
}

.feature-card h3 { font-size: 2.4rem; line-height: 2.8rem; }
.feature-card p { color: #8e8e8e; font-size: 1.5rem; line-height: 2.2rem; flex-grow: 1; }

/* === HOW IT WORKS === */
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .steps-grid {
    flex-direction: row;
    gap: 12px;
    margin-top: 48px;
    align-items: flex-start;
  }
}

.step {
  flex: 1;
  padding: 40px 24px;
  background: #f4f4f4;
  border-radius: 24px;
  min-height: 240px;
}

.step-num {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  color: #18c9e1;
  margin-bottom: 16px;
}

.step h3 { font-size: 2rem; line-height: 2.4rem; margin-bottom: 12px; }
.step p { font-size: 1.5rem; line-height: 2.2rem; color: #8e8e8e; }

/* === PRICING === */
.pricing-table {
  margin-top: 40px;
  border-radius: 24px;
  overflow: hidden;
  border: 0.5px solid #e1e1e1;
}
@media screen and (min-width: 1024px) { .pricing-table { margin-top: 48px; } }

.price-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 16px 24px;
  border-bottom: 0.5px solid #e1e1e1;
  font-size: 1.5rem;
  transition: background 100ms;
}
.price-row:hover { background: #f4f4f4; }
.price-row:last-child { border-bottom: none; }

.header-row {
  background: #000;
  color: #fff;
  font-weight: 700;
}
.header-row:hover { background: #000; }

.featured-row {
  background: #ddfbff;
  font-weight: 700;
}
.featured-row:hover { background: #c8f7fc; }

.pricing-note {
  margin-top: 16px;
  font-size: 1.4rem;
  color: #8e8e8e;
}
.pricing-note i { color: #18c9e1; margin-right: 6px; }

/* === REVIEWS === */
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .reviews-grid { flex-wrap: nowrap; margin-top: 48px; }
}

.review-card {
  flex: 1;
  min-width: 280px;
  padding: 32px 24px;
  background: #f4f4f4;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars { color: #18c9e1; font-size: 1.6rem; }
.review-card p { font-size: 1.5rem; line-height: 2.2rem; flex-grow: 1; }
.reviewer { font-size: 1.3rem; color: #8e8e8e; }

/* === CONTACT FORM === */
.contact-section {
  background: #ddfbff;
  border-radius: 24px;
  padding: 48px 24px;
  margin-left: 12px;
  margin-right: 12px;
}
@media screen and (min-width: 1024px) {
  .contact-section { padding: 64px 48px; margin-left: 18px; margin-right: 18px; }
}

.contact-form {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  max-width: 800px;
}
@media screen and (min-width: 1024px) {
  .contact-form {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
  }
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
}
.required { color: #18c9e1; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: #fff;
  border: 0.5px solid #e1e1e1;
  border-radius: 12px;
  font-size: 1.6rem;
  color: #000;
  transition: border-color 150ms cubic-bezier(0.65,0,0.35,1);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #18c9e1;
  box-shadow: 0 0 0 3px rgba(24,201,225,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #8e8e8e; }

.btn-submit {
  grid-column: 1 / -1;
  justify-self: flex-start;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
}

/* === FOOTER === */
.site-footer {
  background: #000;
  color: #fff;
  padding: 64px 0 32px;
}
@media screen and (min-width: 1024px) { .site-footer { padding: 64px 0 12px; } }

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 48px;
}
@media screen and (min-width: 1024px) {
  .footer-inner { flex-wrap: nowrap; }
}

.footer-brand { flex: 0 0 auto; width: 100%; }
@media screen and (min-width: 1024px) { .footer-brand { width: 33.333%; } }

.footer-brand address {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand address p {
  font-size: 1.4rem;
  line-height: 2rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-brand address i { color: #18c9e1; margin-top: 2px; flex-shrink: 0; }
.footer-brand address a:hover { color: #18c9e1; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.7);
  transition: background 150ms cubic-bezier(0.65,0,0.35,1);
}
.social-links a:hover { background: #18c9e1; color: #fff; }

.footer-nav { flex: 1; min-width: 160px; }
.footer-nav h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav ul a {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.7);
  transition: color 150ms cubic-bezier(0.65,0,0.35,1);
}
.footer-nav ul a:hover { color: #18c9e1; }

.footer-bottom {
  padding-top: 24px;
  border-top: 0.5px solid rgba(255,255,255,0.15);
}
.footer-bottom p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.5);
  margin: 6px 0;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 640px;
  background: #fff;
  border: 0.5px solid #e1e1e1;
  border-radius: 16px;
  box-shadow: 2px 4px 32px rgba(0,0,0,0.28);
  padding: 20px 20px 16px;
  z-index: 9999;
  display: none;
}
.cookie-banner.visible { display: block; }

.cookie-content p {
  font-size: 1.5rem;
  line-height: 2.2rem;
  color: #000;
  margin-bottom: 16px;
}
.cookie-content a { color: #18c9e1; text-decoration: underline; text-decoration-color: rgba(24,201,225,0.4); }
.cookie-actions { display: flex; gap: 12px; }

/* === INNER PAGES HERO === */
.page-hero {
  background: #ddfbff;
  border-radius: 24px;
  padding: 48px 24px;
  margin: 8px 12px 64px;
}
@media screen and (min-width: 1024px) {
  .page-hero { padding: 80px 48px; margin: 0 18px 128px; }
}

.page-hero h1 { margin-bottom: 16px; }
.page-hero p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #444;
  max-width: 640px;
}

/* === ABOUT PAGE === */
.about-section { padding: 0 0 52px; }
@media screen and (min-width: 1024px) { .about-section { padding: 0 0 128px; } }

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .about-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }
}

.about-img img {
  border-radius: 24px;
  width: 100%;
  height: 360px;
  object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .about-img { flex: 0 0 45%; }
  .about-img img { height: 480px; }
}

.about-text { flex: 1; }
.about-text h2 { margin-bottom: 20px; }
.about-text p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #444;
  margin-bottom: 16px;
}
.about-text ul {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-text ul li {
  font-size: 1.5rem;
  line-height: 2.2rem;
  padding-left: 24px;
  position: relative;
  color: #444;
}
.about-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #18c9e1;
  border-radius: 50%;
}

/* === CONTACTS PAGE === */
.contacts-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .contacts-grid {
    flex-direction: row;
    gap: 64px;
  }
}

.contacts-info { flex: 1; }
.contacts-info h3 { margin-bottom: 24px; }
.contacts-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 0.5px solid #e1e1e1;
}
.contacts-info .contact-item:last-child { border-bottom: none; }
.contacts-info .contact-item i {
  font-size: 2rem;
  color: #18c9e1;
  flex-shrink: 0;
  margin-top: 2px;
}
.contacts-info .contact-item h4 { font-size: 1.4rem; color: #8e8e8e; margin-bottom: 4px; }
.contacts-info .contact-item p,
.contacts-info .contact-item a {
  font-size: 1.6rem;
  color: #000;
  line-height: 2.2rem;
}
.contacts-info .contact-item a:hover { color: #18c9e1; }

.contacts-map { flex: 1; }
.map-placeholder {
  background: #f4f4f4;
  border-radius: 24px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: #8e8e8e;
}
.map-placeholder i { font-size: 4.8rem; color: #18c9e1; }
.map-placeholder p { font-size: 1.4rem; }

/* === POLICY PAGES === */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 0 80px;
}
.policy-content h2 {
  font-size: 2.4rem;
  line-height: 3rem;
  margin: 40px 0 16px;
}
.policy-content p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #444;
  margin-bottom: 16px;
}
.policy-content ul {
  margin: 12px 0 16px 24px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.policy-content ul li {
  font-size: 1.5rem;
  line-height: 2.2rem;
  color: #444;
}
.policy-content .last-updated {
  font-size: 1.3rem;
  color: #8e8e8e;
  margin-bottom: 32px;
}
.policy-content h1 { margin-bottom: 8px; }

/* === WORKING HOURS BOX === */
.hours-box {
  background: #f4f4f4;
  border-radius: 24px;
  padding: 32px 24px;
  margin-top: 32px;
}
.hours-box h4 { margin-bottom: 16px; font-size: 2rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 0.5px solid #e1e1e1;
  font-size: 1.5rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .open { color: #18c9e1; font-weight: 700; }

/* === FAQ === */
.faq-list { margin-top: 40px; }
.faq-item {
  border-bottom: 0.5px solid #e1e1e1;
  padding: 0;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 600;
  gap: 16px;
  transition: color 150ms;
}
.faq-question:hover { color: #18c9e1; }
.faq-question i { color: #18c9e1; flex-shrink: 0; transition: transform 150ms; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  will-change: max-height;
  transition: max-height 0.3s cubic-bezier(0.65,0,0.35,1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: 20px;
  font-size: 1.5rem;
  line-height: 2.4rem;
  color: #8e8e8e;
}

/* === SEND.PHP SUCCESS === */
.send-result {
  text-align: center;
  padding: 80px 24px;
}
.send-result i { font-size: 6.4rem; color: #18c9e1; margin-bottom: 24px; display: block; }
.send-result h1 { font-size: 3.6rem; margin-bottom: 16px; }
.send-result p { font-size: 1.6rem; color: #8e8e8e; margin-bottom: 32px; }
