html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  background: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =========================
   Page Base
========================= */

.dream-home {
  position: relative;
  color: #3b3e47;
  background: transparent;
  overflow: visible;
  margin-top: -100px;
  padding-top: 100px;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* 背景レイヤー */
.dream-home__bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: -100px;
  z-index: -1;
  pointer-events: none;
}

.dream-home__bg-image {
  display: block;
  width: 100%;
  height: 100%;
}

.dream-home__bg-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* 背景以外を前面へ */
.dream-home > *:not(.dream-home__bg):not(.wb-banner) {
  position: relative;
  z-index: 1;
}

.dream-section {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 60px 20px;
}

.dream-section__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.dream-section__title {
  margin: 0;
  color: #541b85;
  font-family: Noto Serif JP;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 200;
  line-height: 1.6;
}

.dream-section__lead {
  margin: 0;
  color: #3b3e47;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 2;
}

/* =========================
   Header transparent
========================= */

.g-header,
.g-header--inner,
#global-header,
#global-header .inner,
#global-header .wrap {
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

.g-header::before,
.g-header::after,
.g-header--inner::before,
.g-header--inner::after,
#global-header::before,
#global-header::after {
  display: none !important;
  background: transparent !important;
}

/* =========================
   Footer transparent
========================= */

.g-footer,
.g-footer__inner,
.g-footer__footer,
#global-footer {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border-top: none !important;
}

.g-footer::before,
.g-footer::after,
.g-footer__inner::before,
.g-footer__inner::after,
.g-footer__footer::before,
.g-footer__footer::after,
#global-footer::before,
#global-footer::after {
  display: none !important;
  background: transparent !important;
  background-color: transparent !important;
}

#global-footer,
.g-footer,
.g-footer__footer,
.g-footer__inner {
  position: relative;
  z-index: 10;
}

/* =========================
   Common : dream-head-note
========================= */

.dream-head-note__frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding: 30px 40px 60px;
}

.dream-head-note__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.dream-head-note__text {
  color: #3b3e47;
  font-size: 12px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  line-height: 2;
  text-align: left;
}

.dream-head-note__icon {
  width: 20px;
  height: 20px;
  display: block;
  animation: rotate 6s linear infinite;
}

@keyframes rotate{
  from {
    transform:rotate(0deg);
  }
  to{
    transform:rotate(360deg);
  }
}

/* =========================
   Common : Divider
========================= */

.dream-divider {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  gap: 10px;
  box-sizing: border-box;
}

.dream-divider__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  animation: rotate 6s linear infinite;
}

.dream-divider__line {
  flex: 1;
  height: 0.5px;
  background: #EA6094; /* ライン色 */
}

/* =========================
   Buttons
========================= */

.dream-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 240px;
  padding: 16px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.2s ease;
}

.dream-button--outline {
  border: 1px solid #3b3e47;
  color: #3b3e47;
  background: transparent;
}

.dream-button--outline:hover {
  opacity: 0.85;
  text-decoration: none;
}

.dream-button--primary {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  min-width: 280px;
  padding: 20px 40px;
  border-radius: 10px;
  background: linear-gradient(95deg, #f8aad5 0%, #ffc8dc 100%);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: 0.3s ease;
}

.dream-button--primary:hover {
  background: linear-gradient(95deg, #ffc8dc 0%, #f8aad5 100%);
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.dream-button__main {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 32px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.dream-button__sub {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

/* =========================
   Home Sections
========================= */
.dream-home__gallery {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.dream-home__gallery-link,
.dream-home__post-link {
  margin: 40px 0 0;
  text-align: center;
}

.dream-home__gallery-rotator {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.dream-home__closing-text p {
  margin: 0;
}

/* =========================
   Hero
========================= */
.dream-home__hero{
  max-height: 100dvh;
}

.dream-home__hero-inner {
  position: relative;
  min-height: 820px;
  margin: 0 0;
}

.dream-home__hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.dream-home__hero-cloud,
.dream-home__hero-title-image {
  position: absolute;
  display: block;
}

.dream-home__hero-cloud img,
.dream-home__hero-title-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* 雲 */
.dream-home__hero-cloud {
  top: 70px;
  left: 50%;
  width: min(92vw, 1180px);
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.92;
}

/* タイトル */
.dream-home__hero-title-image {
  top: 150px;
  left: 50%;
  width: min(64vw, 720px);
  transform: translateX(-50%);
  z-index: 3;
}

/* テキスト類 */
.dream-head-note {
  position: relative;
  z-index: 4;
}

.dream-home__hero-message {
  position: relative;
  z-index: 4;
  max-width: 720px;
  margin: 320px auto 0;
  padding: 0 20px 48px;
  color: #3b3e47;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 2.2;
}

/* =========================
   News
========================= */

.section__news {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

.dream-news__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dream-news__item + .dream-news__item {
  border-top: 1px solid rgba(59, 62, 71, 0.15);
}

.dream-news__link {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 24px 0;
  color: inherit;
  text-decoration: none;
}

.dream-news__date,
.dream-news__title {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  line-height: 2;
}

.ttl {
  margin: 0 0 48px;
  color: #541b85;
  text-align: center;
  font-family:Noto Serif JP;
  font-size: 56px;
  font-weight: 200;
  line-height: 1.6;
}

.article-index {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 760px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-index__item {
  margin: 0;
  padding: 0;
  width: 100%;
}

.article-index__anchor {
  display: block;
  color: inherit;
  text-decoration: none;
}

.article-index__head {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.article-index__meta {
  flex: 0 0 120px;
  display: block;
}

.article-index__date {
  margin: 0;
  color: #3b3e47;
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 2;
  text-align: left;
  text-decoration: none;
}

.article-index__ttl {
  flex: 1;
  margin: 0;
  color: #3b3e47;
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 2;
  text-align: left;
  text-decoration: none;
}

.article-index__anchor:hover .article-index__ttl {
  opacity: 0.8;
}

/* =========================
   Common : Project Note
========================= */

.dream-project-note {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.dream-project-note__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 60px 20px;
}

.dream-project-note__logo-image {
  width: 240px;
  height: auto;
}

.dream-project-note__logo-mark {
  width: 120px;
  height: auto;
}

.dream-project-note__logo a {
  display: inline-block;
}

.dream-project-note__logo a:hover .dream-project-note__logo-mark {
  opacity: 0.7;
}

.dream-project-note__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 0 20px 60px;
}

.dream-project-note__text {
  width: 100%;
  color: #ea6094;
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

.dream-project-note__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 20px 60px;
}

.dream-project-note__social-title {
  color: #3b3e47;
  font-size: 16px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  line-height: 2;
  text-align: center;
}

.dream-project-note__social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dream-project-note__social-icon {
  width: auto;
  height: 40px;
  display: block;
  transition: opacity .2s ease;
}

.dream-project-note__social-links a {
  display: inline-block;
}

.dream-project-note__social-links a:hover .dream-project-note__social-icon {
  opacity: 0.7;
}

/* =========================
   Gallery Link
========================= */

.dream-single__gallery-link-wrap {
  display: flex;
  justify-content: center;
}

.dream-single__gallery-link {
  display: flex;
  padding: 16px 24px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  display: inline-flex;
  min-width: 240px;
  gap:20px;
  height: 52px;
  border-radius: 26px;
  border: 1px solid #3B3E47;
  text-decoration: none;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.dream-single__gallery-link-text {
  color: #3B3E47;
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.dream-single__gallery-link:hover {
  border-color: #ea6094;
  background-color: #f7d6da;
  text-decoration: none;
}

.dream-single__gallery-link:hover .dream-single__gallery-link-text {
  color: #ea6094;
}

.dream-single__gallery-link-icon {
  width: 29px;
  height: 12px;
}

.dream-single__gallery-link-icon path {
  stroke: #3B3E47;
  transition: 0.3s ease;
}

.dream-single__gallery-link:hover .dream-single__gallery-link-icon path {
  stroke: #ea6094;
}

/* =========================
   Responsive
========================= */

@media (max-width: 767px) {
  .dream-home__bg {
    bottom: -300px;
  }

  .dream-home__hero {
    margin-top: -60px;
    padding-top: 60px;
  }

  .dream-home__hero-inner {
    min-height: 620px;
  }

  .dream-home__bg-image img {
    min-height: 620px;
  }

  .dream-home__hero-cloud {
    top: 150px;
    width: min(100vw, 560px);
  }

  .dream-home__hero-title-image {
    top: 203px;
    width: min(84vw, 360px);
  }

  .dream-head-note__frame {
    padding: 24px 20px 40px;
  }

  .dream-home__hero-message {
    padding: 0 20px 80px;
    font-size: 14px;
    line-height: 2;
  }

  .dream-section {
    padding: 40px 20px;
  }

  .dream-news__link {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .article-index__head {
    flex-direction: column;
    gap: 4px;
  }

  .article-index__meta {
    flex: 0 0 auto;
  }

  .ttl {
    margin-bottom: 32px;
    font-size: 36px;
  }

  .dream-button--primary {
    min-width: min(100%, 320px);
    padding: 18px 24px;
    align-items: center;
  }

  .dream-button__main {
    font-size: 24px;
  }

  .dream-button__sub {
    font-size: 14px;
  }

  .dream-head-note__frame {
    padding: 24px 20px 40px;
  }

  .dream-divider {
    padding: 0 20px;
  }

  .dream-rotator__viewport {
    position: relative;
  }

  #js-dream-rotator {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  #js-dream-rotator::-webkit-scrollbar {
    display: none;
  }

  #js-dream-rotator .dream-card {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
    box-sizing: border-box;
  }

  .dream-rotator__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 30px;
    height: 50px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .dream-rotator__nav--prev { 
    left: 0px;
    margin-left: -20px;
  }
  .dream-rotator__nav--next {
    right: 0px; 
    margin-right: -20px;
  }

  .dream-rotator__nav-icon {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  /* ←画像差し替え */
  .dream-rotator__nav--prev .dream-rotator__nav-icon {
    background-image: url("../../well-being-dreams/wp-content/themes/well-being-dreams/assets/img/left_btn.png");
  }

  .dream-rotator__nav--next .dream-rotator__nav-icon {
    background-image: url("../../well-being-dreams/wp-content/themes/well-being-dreams/assets/img/right_btn.png");
  }

  .dream-rotator__nav[disabled] {
  opacity: 0.3;
  pointer-events: none;
}
}

@media (min-width: 768px) {
  .dream-rotator__nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .dream-project-note__logo {
    flex-direction: column;
  }

  .dream-project-note__text {
    font-size: 13px;
  }
}

/* =====================================
   WELL-BEING FRONTIER Banner
===================================== */

.wb-banner{
  position: fixed;
  z-index: 9999;
  text-decoration: none;
  color: inherit;
}

.wb-banner__pc,
.wb-banner__icon,
.wb-banner__people {
  display: block;
}

/* =========================
   Base = SP
========================= */

.wb-banner{
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  transform: none;
  width: 100%;
}

.wb-banner__pc{
  display: none;
}

.wb-banner__sp{
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 112.42px;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 0 max(0px, env(safe-area-inset-bottom));
  background: #fff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}

.wb-banner__icon{
  width: 50px;
  height: 60px;
}

.wb-banner__text{
  min-width: 0;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  color: #3b3e47;
  white-space: nowrap;
}

.wb-banner__people{
  width: 112.42px;
  height: 60px;
}

/* =========================
   PC
========================= */
@media (min-width: 768px){

  .wb-banner{
    top: 260px;
    right: 0;
    left: auto;
    bottom: auto;
    width: auto;
    transform: translateY(-50%);
  }

  .wb-banner__pc{
    display: block;
    width: 100px;
    height: auto;
  }

  .wb-banner__sp{
    display: none;
  }
}

/* =========================
   Move to Top Button
========================= */

/* 初期状態（非表示） */
.move-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 64px;
  height: 64px;
  padding: 0;

  background: transparent;
  border: none;
  text-decoration: none;
  cursor: pointer;

  /* 非表示状態 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

/* 表示状態 */
.move-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 画像 */
.move-to-top__img {
  display: block;
  width: 100%;
  height: auto;
}

/* SP調整（下部バナー回避） */
@media (max-width: 767px) {
  .move-to-top {
    right: 16px;
    bottom: 76px; /* wb-banner回避 */
    width: 56px;
    height: 56px;
  }
}

/* =========================
   Dream Reaction Count
========================= */

.dream-stats {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dream-stats__inner {
  width: 100%;
  height: auto;
  display: flex;
  z-index: 1;
  flex-direction: column;
  align-items: stretch;
}

.dream-stats__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 80px;
  padding: 90px 40px;
}

.dream-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 40px;
}

.dream-stats__title {
  margin: 0;
  color: rgba(84, 27, 133, 1);
  align-self: stretch;
  font-family: "Noto Serif JP", serif;
  font-size: 56px;
  font-weight: 200;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
}

.dream-stats__value-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
}

.dream-stats__value {
  margin: 0;
  color: rgba(84, 27, 133, 1);
  font-family: "Noto Serif JP", serif;
  font-size: 72px;
  font-weight: 200;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.dream-stats__value_subject {
  margin: 0;
  color: rgba(84, 27, 133, 1);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.dream-stats__description {
  margin: 0;
  color: rgb(59, 62, 71);
  align-self: stretch;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 768px) {
  .dream-stats__list {
    gap: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .dream-stats__item {
    gap: 30px;
  }

  .dream-stats__title {
    font-size: 26px;
  }

  .dream-stats__value {
    font-size: 64px;
  }

  .dream-stats__description {
    font-size: 13px;
  }
}

/* =========================
   Sakura Overlay
========================= */

.dream-sakura {
  position: fixed !important;
  inset: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  pointer-events: none !important;
  overflow: hidden !important;
  z-index: 5 !important;
}

.dream-sakura__item {
  position: absolute !important;
  top: -12vh !important;
  left: 0;
  list-style: none !important;
  opacity: 0;
  will-change: transform, opacity;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
}

.dream-sakura__item img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  will-change: transform;
  animation-name: dream-sakura-sway !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  animation-direction: alternate !important;
}

/* =========================
   Keyframes
========================= */

@keyframes dream-sakura-fall-1 {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  12% {
    opacity: 0.95;
  }
  25% {
    transform: translate3d(-8vh, 30vh, 0);
    opacity: 0.95;
  }
  50% {
    transform: translate3d(-16vh, 60vh, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(-32vh, 120vh, 0);
    opacity: 0;
  }
}

@keyframes dream-sakura-fall-2 {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  12% {
    opacity: 0.95;
  }
  25% {
    transform: translate3d(-9vh, 30vh, 0);
    opacity: 0.95;
  }
  50% {
    transform: translate3d(-18vh, 60vh, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(-36vh, 120vh, 0);
    opacity: 0;
  }
}

@keyframes dream-sakura-fall-3 {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  8% {
    opacity: 0.95;
  }
  50% {
    transform: translate3d(-14vh, 50vh, 0);
    opacity: 0.95;
  }
  100% {
    transform: translate3d(-28vh, 120vh, 0);
    opacity: 0;
  }
}

@keyframes dream-sakura-fall-4 {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  8% {
    opacity: 0.95;
  }
  50% {
    transform: translate3d(-17vh, 50vh, 0);
    opacity: 0.95;
  }
  100% {
    transform: translate3d(-34vh, 120vh, 0);
    opacity: 0;
  }
}
/* =========================
   揺れアニメーション
========================= */

@keyframes dream-sakura-sway {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(16px, 0, 0) rotate(-35deg) rotateX(60deg);
  }
}

@keyframes dream-sakura-sway-reverse {
  from {
    transform: translate3d(36px, 0, 0) rotate(-20deg);
  }
  to {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

/* =========================
   Petal Settings（ランダム消失割り振り）
========================= */

.dream-sakura__item:nth-child(1)  { left: 13vw !important;  width: 29px !important; animation-name: dream-sakura-fall-3 !important; animation-duration: 8s !important; animation-delay: -2s !important; }
.dream-sakura__item:nth-child(2)  { left: 22vw !important;  width: 26px !important; animation-name: dream-sakura-fall-4 !important; animation-duration: 7s !important; animation-delay: -9s !important; }
.dream-sakura__item:nth-child(3)  { left: 43vw !important; width: 28px !important; animation-name: dream-sakura-fall-1 !important; animation-duration: 7s !important; animation-delay: -3s !important; }
.dream-sakura__item:nth-child(4)  { left: 53vw !important; width: 27px !important; animation-name: dream-sakura-fall-2 !important; animation-duration: 10s !important; animation-delay: -7s !important; }
.dream-sakura__item:nth-child(5)  { left: 81vw !important; width: 25px !important; animation-name: dream-sakura-fall-3 !important; animation-duration: 9s !important; animation-delay: -2s !important; }
.dream-sakura__item:nth-child(6)  { left: 90vw !important; width: 26px !important; animation-name: dream-sakura-fall-1 !important; animation-duration: 12s !important; animation-delay: -3s !important; }
.dream-sakura__item:nth-child(7)  { left: 14vw !important; width: 18px !important; animation-name: dream-sakura-fall-4 !important; animation-duration: 8s !important;  animation-delay: -8s !important; }
.dream-sakura__item:nth-child(8)  { left: 31vw !important; width: 19px !important; animation-name: dream-sakura-fall-3 !important; animation-duration: 9s !important; animation-delay: -1s !important; }
.dream-sakura__item:nth-child(9)  { left: 47vw !important; width: 20px !important; animation-name: dream-sakura-fall-2 !important; animation-duration: 11s !important; animation-delay: -3s !important; }
.dream-sakura__item:nth-child(10) { left: 70vw !important; width: 17px !important; animation-name: dream-sakura-fall-1 !important; animation-duration: 8s !important; animation-delay: -1s !important; }
.dream-sakura__item:nth-child(11) { left: 88vw !important; width: 16px !important; animation-name: dream-sakura-fall-4 !important; animation-duration: 7s !important; animation-delay: -3s !important; }
.dream-sakura__item:nth-child(12) { left: 94vw !important; width: 15px !important; animation-name: dream-sakura-fall-2 !important; animation-duration: 10s !important; animation-delay: -1s !important; }
.dream-sakura__item:nth-child(13) { left: 10vw !important; width: 10px !important; animation-name: dream-sakura-fall-1 !important; animation-duration: 7s !important; animation-delay: -2s !important; }
.dream-sakura__item:nth-child(14) { left: 23vw !important; width: 11px !important; animation-name: dream-sakura-fall-3 !important; animation-duration: 10s !important;  animation-delay: -3s !important; }
.dream-sakura__item:nth-child(15) { left: 35vw !important; width: 9px !important; animation-name: dream-sakura-fall-2 !important; animation-duration: 8s !important; animation-delay: -2s !important; }
.dream-sakura__item:nth-child(16) { left: 56vw !important; width: 8px !important; animation-name: dream-sakura-fall-4 !important; animation-duration: 9s !important; animation-delay: -3s !important; }
.dream-sakura__item:nth-child(17) { left: 82vw !important; width: 12px !important; animation-name: dream-sakura-fall-2 !important; animation-duration: 12s !important; animation-delay: -9s !important; }
.dream-sakura__item:nth-child(18) { left: 97vw !important; width: 13px !important; animation-name: dream-sakura-fall-3 !important; animation-duration: 7s !important; animation-delay: -7s !important; }

/* 揺れバリエーション */
.dream-sakura__item:nth-child(1) img,
.dream-sakura__item:nth-child(4) img,
.dream-sakura__item:nth-child(7) img,
.dream-sakura__item:nth-child(10) img,
.dream-sakura__item:nth-child(13) img,
.dream-sakura__item:nth-child(16) img {
  animation-duration: 2.8s !important;
}

.dream-sakura__item:nth-child(2) img,
.dream-sakura__item:nth-child(5) img,
.dream-sakura__item:nth-child(8) img,
.dream-sakura__item:nth-child(11) img,
.dream-sakura__item:nth-child(14) img,
.dream-sakura__item:nth-child(17) img {
  animation-duration: 2.5s !important;
}

.dream-sakura__item:nth-child(3) img,
.dream-sakura__item:nth-child(6) img,
.dream-sakura__item:nth-child(9) img,
.dream-sakura__item:nth-child(12) img,
.dream-sakura__item:nth-child(15) img,
.dream-sakura__item:nth-child(18) img {
  animation-duration: 2.2s !important;
}



/* SP軽量化 */
@media (max-width: 767px) {
  .dream-sakura__item:nth-child(-n+7) {
    display: none !important;
  }
}

/* 前面UI */
.wb-banner,
.move-to-top {
  z-index: 9999 !important;
}