/* =========================================
   Reset & Base Styles
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0F3A68;
  /* Navy - Reliability */
  --primary-light: #1D5B9E;
  --accent: #E83D6D;
  /* Pink - Spring/Sakura */
  --accent-dark: #C42651;
  --accent-light: #FF85A5;
  --accent-yellow-one: #fbff00;
  --accent-yellow: #f5f236;
  --bg-light: #F8F9FA;
  --bg-pink: #FFF8FA;
  /* Soft Sakura BG */
  --text-main: #333333;
  --text-muted: #666666;
  --white: #FFFFFF;

  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 30px rgba(232, 61, 109, 0.15);
  /* Pink tinted shadow for accent */
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* ------------------------------- */

/* --- Loading Animation --- */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Soft Pink Spring Gradient */
  background: linear-gradient(135deg, #FFF5F8 0%, #FFDEE9 100%);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.sakura-loader {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.petal-loader {
  position: absolute;
  width: 35px;
  height: 50px;
  background: var(--accent-light);
  /* Sakura Petal Shape with Notch */
  clip-path: polygon(50% 15%, 80% 0%, 100% 20%, 100% 100%, 50% 90%, 0% 100%, 0% 20%, 20% 0%);
  transform-origin: bottom center;
  opacity: 0;
  filter: drop-shadow(0 0 5px rgba(232, 61, 109, 0.3));
}

.p1 { --rot: 0deg; animation: bloom-petal 3s ease-in-out infinite; }
.p2 { --rot: 72deg; animation: bloom-petal 3s ease-in-out infinite 0.2s; }
.p3 { --rot: 144deg; animation: bloom-petal 3s ease-in-out infinite 0.4s; }
.p4 { --rot: 216deg; animation: bloom-petal 3s ease-in-out infinite 0.6s; }
.p5 { --rot: 288deg; animation: bloom-petal 3s ease-in-out infinite 0.8s; }

@keyframes bloom-petal {
  0% {
    transform: rotate(var(--rot)) translateY(0) scale(0);
    opacity: 0;
  }
  20%, 80% {
    transform: rotate(var(--rot)) translateY(-20px) scale(1);
    opacity: 1;
  }
  100% {
    transform: rotate(var(--rot)) translateY(-40px) scale(0.8);
    opacity: 0;
  }
}

.loader-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 2px;
}

.loader-text p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 4px;
  margin-top: 5px;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* --- Cherry Blossom Animation (Background) --- */
.sakura-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  /* Behind content but above some backgrounds if needed */
  overflow: hidden;
}

.petal {
  position: absolute;
  background-color: #ffc0cb;
  /* Pink */
  border-radius: 150% 0 150% 0;
  opacity: 0.8;
  transform-origin: center;
  animation: fall linear infinite;
}

@keyframes fall {
  0% {
    top: -10%;
    transform: translateX(0) rotate(0deg);
  }

  100% {
    top: 110%;
    transform: translateX(100px) rotate(720deg);
  }
}

/* ------------------------------- */

body {
  font-family: 'Zen Kaku Gothic New', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   Typography
   ========================================= */
.text-accent {
  color: var(--accent);
}

.text-blue {
  color: var(--primary);
}

.text-orange {
  color: #F59E0B;
}

.text-white {
  color: var(--white) !important;
}

.text-pink-light {
  color: var(--accent-light);
}

.text-center {
  text-align: center;
}

/* =========================================
   Layout & Components
   ========================================= */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-narrow {
  max-width: 800px;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  gap: 8px;
  cursor: pointer;
}

.btn-large {
  font-size: 1.1rem;
  padding: 16px 32px;
}

.btn-xlarge {
  font-size: 1.25rem;
  padding: 20px 48px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-one));
  color: #0F3A68;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(232, 61, 109, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

.btn-shadow {
  box-shadow: var(--shadow-md);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
}

.badge-primary {
  background: var(--primary);
  color: var(--white);
}

.badge-accent {
  background: var(--white);
  color: var(--accent);
  border: 2px solid var(--accent);
}

/* Backgrounds */
.bg-navy {
  position: relative;
  background-color: var(--primary);
  overflow: hidden;
  z-index: 1;
}

.bg-navy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./img/sakura_navy.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  /* Very faint and elegant */
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: soft-light;
  /* Enhances the 'stylish' look */
}

.bg-light-pink {
  background: linear-gradient(180deg, var(--bg-pink) 0%, var(--white) 100%);
}

.bg-gradient {
  background: linear-gradient(135deg, #fce4ec 0%, #ffffff 100%);
}

.bg-pattern {
  position: relative;
  background: linear-gradient(180deg, var(--bg-pink) 0%, var(--white) 100%);
}

.bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Subtle dot pattern */
  background-image: radial-gradient(#E83D6D 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.05;
  pointer-events: none;
}

/* =========================================
   Header
   ========================================= */
.header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-header-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 2px solid var(--accent-light);
  color: var(--accent);
  background: var(--bg-pink);
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.btn-header-link:hover {
  background: var(--accent-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-header-link::before {
  content: '\f059'; /* FontAwesome question icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.company-name {
  color: var(--text-muted);
}

.company-name img {
  height: 48px;
  width: auto;
  display: block;
}

.service-name {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  letter-spacing: 1px;
}

.color-k {
  color: #e53935;
}

/* Red */
.color-i {
  color: #8e24aa;
}

/* Purple */
.color-s1 {
  color: #8bc34a;
}

/* Light Green */
.color-s2 {
  color: #fb8c00;
}

/* Orange */
.color-w {
  color: #1e88e5;
}

/* Blue */
.color-e {
  color: #fdd835;
}

/* Yellow */
.color-b {
  color: #26a69a;
}

/* Blue-green */

.qr-code {
  display: block;
  margin: 0 auto 15px;
  width: 100px;
  /* Setting a fixed but responsive width */
}

@media (max-width: 768px) {
  .logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}

/* =========================================
   Campaign Hero (FV) Redesign
   ========================================= */
.campaign-fv {
  position: relative;
  min-height: 650px;
  background: linear-gradient(135deg, #FFF5F8 0%, #FFFFFF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 10;
  padding: 40px 20px;
}

.hero-layer-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-sup {
  font-size: 1.2rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.hero-brand-logo {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  transform: rotate(-3deg) translateY(-5px);
  display: inline-block;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 var(--white);
}

.hero-title-campaign {
  line-height: 1;
  margin-bottom: 30px;
}

.hero-title-campaign .main-text {
  font-size: 8rem;
  font-weight: 900;
  letter-spacing: -2px;
  font-family: 'Zen Kaku Gothic New', sans-serif;

  /* Gradient */
  background: linear-gradient(to bottom, #FF6B00 20%, #E83D6D 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Thick Stroke and Shadow layers */
  filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.15));
  position: relative;
}

.hero-title-campaign .main-text span {
  font-size: 11rem;
  /* "無料" part larger */
  vertical-align: bottom;
}

.hero-title-campaign .sub-text {
  font-size: 3.5rem;
  font-weight: 900;
  display: block;
  margin-top: -10px;
  background: linear-gradient(to bottom, #FF6B00 20%, #E83D6D 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 12px;
}

.hero-info-row {
  margin-bottom: 30px;
}

.countdown-label {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 #fff;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.timer-unit {
  background: linear-gradient(135deg, #333 0%, #111 100%);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 12px;
  min-width: 85px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.timer-unit:hover {
  transform: translateY(-5px);
}

.timer-unit span {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.timer-unit small {
  font-size: 0.75rem;
  opacity: 0.9;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.timer-finished {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  background: var(--white);
  padding: 10px 30px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
}

.hero-cta-fv {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Model Positioning */
.hero-model-side {
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 400px;
  z-index: 20;
}

.model-img {
  width: 100%;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Limited Badge */
.hero-badge-limited {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%) rotate(10deg);
  z-index: 25;
}

.badge-circle {
  width: 160px;
  height: 160px;
  background: var(--accent);
  border: 8px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(232, 61, 109, 0.4);
}

.badge-circle .label {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: -5px;
}

.badge-circle .count {
  font-size: 4rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.badge-circle .count small {
  font-size: 1.5rem;
}

@media (max-width: 992px) {
  .hero-title-campaign .main-text {
    font-size: 5rem;
  }

  .hero-title-campaign .main-text span {
    font-size: 7rem;
  }

  .hero-model-side {
    width: 300px;
    bottom: -20px;
  }

  .badge-circle {
    width: 120px;
    height: 120px;
  }

  .badge-circle .count {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .campaign-fv {
    min-height: 80vh;
  }

  .hero-model-side {
    position: relative;
    left: 0;
    bottom: 0;
    width: 250px;
    margin: 0 auto;
  }

  .hero-badge-limited {
    top: auto;
    bottom: 10%;
    right: 5%;
    transform: rotate(0);
  }

  .hero-title-campaign .main-text {
    font-size: 3.5rem;
  }

  .hero-title-campaign .main-text span {
    font-size: 4.5rem;
  }

  .hero-title-campaign .sub-text {
    font-size: 2rem;
    letter-spacing: 5px;
  }

  .date-pill {
    font-size: 1rem;
    padding: 8px 20px;
  }
}

/* =========================================
   Sections Core
   ========================================= */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.title-en {
  display: block;
  font-family: 'Montserrat', sans-serif;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-desc {
    font-size: 1rem;
  }
}

/* =========================================
   Benefits Section
   ========================================= */
.benefits {
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform 0.3s ease;
  border-top: 5px solid var(--primary);
  text-align: center;
}

.benefit-card:nth-child(even) {
  border-top-color: var(--accent);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--text-muted);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--bg-light);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.price-box {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.price-old {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 5px;
}

.price-new {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.gift-box {
  background: linear-gradient(135deg, #FFF9EB, #FFF);
  border: 1px solid #FDE68A;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.gift-item {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 5px;
}

.gift-amount {
  font-size: 2.2rem;
  font-weight: 900;
}

.gift-amount span {
  font-size: 1.2rem;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: left;
}

.center-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Value Prop Section
   ========================================= */
.value-prop {
  padding: 80px 0;
  background: var(--white);
}

.value-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border-left: 5px solid var(--primary);
  transition: background 0.3s;
}

.feature-item:hover {
  background: #F0F4F8;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary);
}

.feature-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
}

/* =========================================
   Application Steps Section
   ========================================= */
.application-steps {
  padding: 80px 0;
}

.steps-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.step-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  position: relative;
}

.step-card.highlighted {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.step-card.highlighted .step-label {
  color: var(--accent);
}

.step-card.highlighted .step-icon {
  color: var(--accent);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #A0C0E0;
}

.step-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: #A0C0E0;
  margin-bottom: 5px;
}

.step-title {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.step-content p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.step-card.highlighted .step-content p {
  color: var(--text-muted);
  opacity: 1;
}

.step-arrow {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
}

@media (max-width: 900px) {
  .steps-container {
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
  }

  .step-arrow {
    transform: rotate(90deg);
    justify-content: center;
    padding: 10px 0;
  }

  .step-card.highlighted {
    transform: scale(1);
  }
}

/* =========================================
   Final CTA
   ========================================= */
.cta-bottom {
  padding: 80px 0;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--primary);
}

.cta-desc {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.cta-desc strong {
  color: var(--accent);
  font-size: 1.3rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-sub {
  font-size: 1rem;
  padding: 12px 30px;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background: #ffffff;
  color: #0F3A68;
  padding: 40px 0 20px;
  text-align: center;
}

.footer-info {
  margin-bottom: 20px;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-address,
.footer-tel {
  color: #0F3A68;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.footer-copyright {
  color: #0F3A68;
  font-size: 0.8rem;
  border-top: 1px solid #0F3A68;
  padding-top: 20px;
  margin-top: 20px;
}

/* =========================================
   Animations
   ========================================= */
.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  animation: shine 4s infinite linear;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }

  10% {
    transform: translateX(100%) rotate(30deg);
  }

  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

.heartbeat {
  animation: heartbeat 2s infinite ease-in-out;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(1.05);
  }

  20% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.05);
  }

  40% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}