.elementor-kit-6{--e-global-color-primary:#ECF5F2;--e-global-color-secondary:#3C554C;--e-global-color-text:#BDE6E3;--e-global-color-accent:#FFFFFF;--e-global-typography-primary-font-family:"shelby";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"yu-gothic-pr6n";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */html {
    font-size: 62.5%;
}

/* ▼ 紙吹雪を降らせたいコンテナに付けるクラス */
.confetti-area {
  position: relative;
  overflow: hidden;
}

/* ▼ 紙吹雪の基本スタイル */
.confetti {
  position: absolute;
  top: -20px;
  width: 8px;
  height: 14px;
  border-radius: 2px;
  opacity: 0.9;
  animation: confettiFall linear infinite;
  pointer-events: none;
}

/* ▼ 色バリエーション */
.confetti:nth-child(4n+1) { background: #E99BC1; }
.confetti:nth-child(4n+2) { background: #2BB7B3; }
.confetti:nth-child(4n+3) { background: #F6AF74; }
.confetti:nth-child(4n+4) { background: #FDD35C; }

/* ▼ 落下アニメーション（ひらひら感あり） */
@keyframes confettiFall {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(100vh) translateX(20px) rotate(360deg);
    opacity: 0.8;
  }
}/* End custom CSS */