/* ===================================
   Global Fixes & Header
   =================================== */

body, #wrapper {
  overflow-x: hidden !important;
  max-width: 100%;
}

.header .lSide,
.header .rSide {
  z-index: 10001; /* 常に前面に */
  opacity: 1 !important;
  visibility: visible !important;
}

/* PC版: メニューが開いたらボタンを消す */
@media screen and (min-width: 813px) {
  .header .rSide .navBtn.open {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* スマホ版: メニューが開いてもボタン（X）を表示し続ける */
@media screen and (max-width: 812px) {
  .header .rSide .navBtn.open {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10002 !important;
  }
}

.header .rSide .navBtn {
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* ===================================
   Splash Screen
   =================================== */

.clinicSplash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.clinicSplash.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.clinicSplash__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.clinicSplash__text {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 60px;
  height: auto;
}

.clinicSplash__line {
  writing-mode: vertical-rl;
  text-orientation: upright;
  height: auto;
  display: flex;
  align-items: center;
  overflow: visible;
}

.clinicSplash__word {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #2c5f7c;
  opacity: 0;
  filter: brightness(100%);
  transition: filter 0.8s ease;
  animation: fadeInGlow 1.5s ease-out forwards;
}

.clinicSplash__line:nth-child(1) .clinicSplash__word { animation-delay: 0.3s; }
.clinicSplash__line:nth-child(2) .clinicSplash__word { animation-delay: 0.8s; }
.clinicSplash__line:nth-child(3) .clinicSplash__word { animation-delay: 1.3s; }

@keyframes fadeInGlow {
  0% { opacity: 0; filter: brightness(300%); }
  50% { opacity: 0.8; filter: brightness(200%); }
  100% { opacity: 1; filter: brightness(100%); }
}

@media screen and (max-width: 812px) {
  .clinicSplash__text { gap: 40px; }
  .clinicSplash__word { font-size: 2rem; letter-spacing: 0.25em; }
}

@media screen and (max-width: 480px) {
  .clinicSplash__text { gap: 30px; }
  .clinicSplash__word { font-size: 1.6rem; letter-spacing: 0.2em; }
}

/* ===================================
   Hero Section - Refined Hybrid (2:8 Split)
   =================================== */

.clinicHero {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.clinicHero__inner {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

/*
   Left Side: White space (20%)
   ----------------------------------- */
.clinicHero__side {
  width: 30%;
  height: 100%;
  background: #fff;
  position: relative;
  border-right: 1px solid rgba(0,0,0,0.03);
}

/*
   Side Visual Image
   ----------------------------------- */
.clinicHero__sideVisual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66%;
  max-width: none;
  opacity: 0;
  animation: fadeInSideVisual 1.2s ease 4.2s forwards;
  pointer-events: none;
  z-index: 30; /* Set above the overlap card (z-index: 20) */
}

.clinicHero__sideVisual img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fadeInSideVisual {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/*
   Right Side: Visual (80%)
   ----------------------------------- */
.clinicHero__visual {
  width: 70%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.clinicHero__slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.heroSwiper {
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.heroSwiper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.heroSwiper .slide-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Responsive Image Switching */
.slide-img-pc {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: block;
}

.slide-img-sp {
  display: none;
}

/* ===================================
   Mobile Layout (max-width: 812px)
   =================================== */

@media screen and (max-width: 812px) {
  .slide-img-pc {
    display: none;
  }

  .slide-img-sp {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
  }
}


.heroSwiper .swiper-slide-active .slide-img {
  transform: scale(1);
}

.clinicHero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  z-index: 2;
}

/*
   Overlap Card (Minimal, 8:2 Overlap)
   ----------------------------------- */
.clinicHero__card {
  position: absolute;
  top: 50%;
  left: 33.5%; /* Shifted right from 25% to avoid overlap */
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 350px;
  aspect-ratio: 1 / 1;
  max-width: 90vw;
  animation: fadeUpCard 1s ease 4s forwards;
  opacity: 0;
}

.cardInner {
  background-image: url(../images/sakura_backgraund.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: transparent;
}

/* No decorative top line requested */

.tagline {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: #2c5f7c;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  transition: color 0.5s ease;
}

/* SubTitle (English below) */
.subTitle.en {
  font-size: 0.85rem; /* 小さく */
  letter-spacing: 0.1em;
  color: #2c5f7c;
  font-family: 'Poppins', sans-serif; /* 他の要素と同じスタイル (Poppins) */
  font-weight: 300;
  text-transform: none; /* 大文字強制を解除 */
  margin-bottom: 0;
  margin-top: 20px;
  display: block;
  transition: color 0.5s ease;
}

/* MainTitle (Japanese now) */
.mainTitle.jp {
  font-family: 'Noto Sans JP', sans-serif; /* 日本語フォント */
  font-weight: 700;
  font-size: 2.2rem; /* 大きく調整 (日本語なのでバランス見て調整) */
  line-height: 1.6;
  color: #2c5f7c;
  margin-bottom: 0;
  transition: color 0.5s ease;
}



@keyframes fadeUpCard {
  from { opacity: 0; transform: translate(-50%, -45%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

/*
   Scroll Indicator (Left Sidebar)
   ----------------------------------- */
.clinicHero__scroll {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  z-index: 10;
  padding-bottom: 0;
  opacity: 0;
  animation: fadeIn 1s ease 5s forwards;
}

.clinicHero__scroll .txt {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: #aaa;
  writing-mode: vertical-rl;
  white-space: nowrap;
  margin-bottom: 15px;
}

.clinicHero__scroll .line {
  width: 1px;
  height: 60px;
  background: #eee;
  position: relative;
  overflow: hidden;
}

.clinicHero__scroll .line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #888;
  animation: scrollAnim 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollAnim {
  0% { transform: translateY(-101%); }
  100% { transform: translateY(100%); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ===================================
   New Message Section (Redesigned)
   =================================== */

.clinicMessage {
  padding: 99.9px 0;
  background: #fbfbfb;
  position: relative;
}

.container--narrow {
  max-width: 1000px;
}

.clinicMessage__content {
  text-align: center;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* スクロールアニメーション連動 (is-hidden が付与されている間は非表示) */
.clinicMessage.is-hidden .clinicMessage__content {
  opacity: 0;
  transform: translateY(30px);
}

.clinicMessage__eng {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #a0a0a0;
  margin-bottom: 30px;
  display: block;
  text-transform: uppercase;
}

.clinicMessage__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
  color: #2c5f7c;
  margin-bottom: 50px;
  letter-spacing: 0.1em;
  font-family: 'Noto Sans JP', sans-serif;
}

.clinicMessage__text {
  font-size: 1.05rem;
  line-height: 2.4;
  color: #555;
  letter-spacing: 0.05em;
  font-family: "Yu Mincho", "YuMincho", serif;
}

/* ===================================
   New Message Section - Responsive
   =================================== */

@media screen and (max-width: 812px) {
  .clinicMessage {
    padding: 60px 0 80px;
  }

  .clinicMessage__eng {
    font-size: 0.75rem;
    margin-bottom: 20px;
  }

  .clinicMessage__title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .clinicMessage__text {
    font-size: 0.95rem;
    line-height: 2.2;
    text-align: left;
    display: inline-block;
  }
}

@media screen and (max-width: 480px) {
  .clinicMessage {
    padding: 50px 0 60px;
  }

  .clinicMessage__title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .clinicMessage__text {
    font-size: 0.9rem;
    line-height: 2;
  }
}





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

@media screen and (max-width: 1024px) {
  .clinicHero__side { width: 100px; }
  .clinicHero__visual { width: calc(100% - 100px); }

  .clinicHero__card {
    left: 100px;
    transform: translate(-50%, -50%);
    width: 400px;
  }
}

@media screen and (max-width: 812px) {
  /* Mobile: Stacked */
  .clinicHero { height: 60dvh; min-height: 350px; }
  .clinicHero__inner { flex-direction: column-reverse; }

  .clinicHero__side { display: none; }

  .clinicHero__visual {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  /* Mobile Card: Hidden (moved to clinicHeroMobile section) */
  .clinicHero__card {
    display: none;
  }

  .cardInner {
    background-image: url(../images/sakura_backgraund.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    border-radius: 50%;
    /* backdrop-filter and blurred background removed in favor of image */
  }

  .mainTitle { font-size: 2.4rem; }

}

@media screen and (max-width: 480px) {
  .clinicHero__visual { height: 100%; }
  .clinicHero__card { bottom: 30px; }
  .mainTitle { font-size: 2.2rem; }
}

/* ===================================
   Mobile Hero Message Section (SP only)
   =================================== */

.clinicHeroMobile {
  display: none; /* PC表示では非表示 */
}

@media screen and (max-width: 812px) {
  /* PC用のヒーローカードを非表示 */
  .clinicHero__card {
    display: none;
  }

  /* ヒーローの高さを調整 */
  .clinicHero {
    height: 60dvh;
    min-height: 350px;
  }

  /* モバイル専用セクションを表示 */
  .clinicHeroMobile {
    display: block;
    background: #FAF8F3;
    padding: 40px 20px 50px;
    position: relative;
  }

  .clinicHeroMobile__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
  }

  .clinicHeroMobile__image {
    width: 75%;
    max-width: 220px;
    position: relative;
    z-index: 1;
    margin-bottom: -60px; /* カードと重ねる */
  }

  .clinicHeroMobile__image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .clinicHeroMobile__card {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
  }

  .clinicHeroMobile__cardInner {
    background-image: url(../images/sakura_backgraund.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .clinicHeroMobile__cardInner .tagline {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: #2c5f7c;
    margin-bottom: 12px;
    transition: color 0.5s ease;
  }

  .clinicHeroMobile__cardInner .mainTitle.jp {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #2c5f7c;
    margin-bottom: 10px;
    transition: color 0.5s ease;
  }

  .clinicHeroMobile__cardInner .subTitle.en {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #2c5f7c;
    transition: color 0.5s ease;
  }
}

@media screen and (max-width: 480px) {
  .clinicHeroMobile {
    padding: 30px 15px 40px;
  }

  .clinicHeroMobile__inner {
    max-width: 280px;
  }

  .clinicHeroMobile__image {
    width: 70%;
    max-width: 180px;
    margin-bottom: -50px;
  }

  .clinicHeroMobile__cardInner {
    width: 240px;
    height: 240px;
    padding: 15px;
  }

  .clinicHeroMobile__cardInner .mainTitle.jp {
    font-size: 1.15rem;
  }
}

/* ===================================
   Clinic Greeting Section & Others (Restored)
   =================================== */

.clinicGreeting {
  padding: 80px 0 80px;
  background: #FAF8F3;
}

.clinicGreeting__container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.clinicGreeting__image {
  flex: 0 0 45%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.clinicGreeting__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.clinicGreeting__image:hover img {
  transform: scale(1.05);
}

.clinicGreeting__content {
  flex: 1;
}

.clinicGreeting__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2c5f7c;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 15px;
  width: fit-content;
}

.clinicGreeting__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #2c5f7c;
}

.clinicGreeting__text {
  font-size: 1rem;
  line-height: 2;
  color: #333;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

.clinicGreeting__signature {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: right;
  color: #555;
}

.clinicGreeting__link {
  margin-top: 30px;
  text-align: right;
}

.clinicGreeting__link a {
  font-size: 1.1rem;
  display: inline-block;
  padding-right: 2rem;
  position: relative;
  letter-spacing: 0.1em;
  color: #313131;
}

.clinicGreeting__link a:before, .clinicGreeting__link a:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1px;
  background: #313131;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -0.5px;
  transition: all .3s ease;
}

.clinicGreeting__link a:after {
  transform: rotate(90deg);
}

.clinicGreeting__link a:hover:before {
  width: 0.61538rem;
  transform-origin: right center;
  right: 0.38462rem;
  transform: rotate(-315deg);
}

.clinicGreeting__link a:hover:after {
  width: 0.61538rem;
  transform-origin: right center;
  right: 0.38462rem;
  transform: rotate(-45deg);
}

@media screen and (max-width: 812px) {
  .clinicGreeting { padding: 60px 0; }
  .clinicGreeting__container { flex-direction: column; gap: 40px; }
  .clinicGreeting__image { flex: 0 0 auto; width: 100%; }
  .clinicGreeting__title { font-size: 2rem; }
  .clinicGreeting__text { font-size: 0.95rem; }
}

@media screen and (max-width: 480px) {
  .clinicGreeting__title { font-size: 1.8rem; }
}

/* Feature Area & Point Styles */
.featureArea .heading .visual {
  overflow: hidden;
  opacity: 1;
  transition: opacity 1.2s ease;
}

.featureArea .heading .visual img {
  transform: scale3d(1, 1, 1);
  transition: transform 2.5s ease-out;
}

.featureArea .heading .visual.is-hidden {
  opacity: 0;
}

.featureArea .heading .visual.is-hidden img {
  transform: scale3d(1.2, 1.2, 1);
}

.featureArea .heading__content {
  position: relative;
  margin-top: 40px;
  width: 100%;
}

.featureArea .heading .visual {
  width: calc(100% - 100px);
}

.featureArea .heading__verticalText {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-30px);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.6;
  color: #2c5f8d;
  white-space: nowrap;
  z-index: 2;
}

.featureArea .heading__verticalText p {
  margin: 0;
}

@media screen and (max-width: 812px) {
  .featureArea .heading__content { margin-top: 30px; }
  .featureArea .heading .visual { width: calc(100% - 70px); }
  .featureArea .heading__verticalText {
    font-size: 2rem;
    letter-spacing: 0.25em;
    transform: translateY(-50%) translateX(-20px);
  }
}

@media screen and (max-width: 480px) {
  .featureArea .heading .visual { width: calc(100% - 60px); }
  .featureArea .heading__verticalText {
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    transform: translateY(-50%) translateX(-15px);
  }
}

.pointSect .column .hdg03 .fig .t {
  font-size: 1.05rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  padding-bottom: 0.5rem !important;
  color: #666 !important;
}

.pointSect .column .hdg03 .fig .n {
  font-size: 3.8rem !important;
  font-weight: 700 !important;
  font-family: 'Lora', 'Georgia', serif !important;
  color: #2c5f8d !important;
  line-height: 1 !important;
  margin-left: 0.6rem !important;
}

@media screen and (min-width: 813px) {
  .pointSect .column .hdg03 .fig .t {
    font-size: 1.45rem !important;
    padding-bottom: 0.6rem !important;
  }

  .pointSect .column .hdg03 .fig .n {
    font-size: 5.2rem !important;
    margin-left: 0.8rem !important;
    top: 0.35rem !important;
  }
}

/* 桜のアニメーション */
.sakura-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.sakura {
  position: absolute;
  top: -40px;
  background-color: #ffdbed;
  border-radius: 100% 0 100% 100%;
  width: 35px; /* さらに拡大 */
  height: 35px; /* さらに拡大 */
  opacity: 0.8;
  animation: fall linear infinite;
}

/* 花びらの切れ込みを表現するための擬似要素 */
.sakura::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #ffdbed;
  border-radius: 100% 0 100% 100%;
  transform: rotate(-10deg);
}

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0.2;
  }
}

/* 個別の花びらにランダム感を与える (30個分) */
.sakura:nth-child(1) { left: 5%; animation-duration: 7s; animation-delay: 0s; }
.sakura:nth-child(2) { left: 15%; animation-duration: 10s; animation-delay: -2s; width: 30px; height: 30px; }
.sakura:nth-child(3) { left: 25%; animation-duration: 8s; animation-delay: -4s; }
.sakura:nth-child(4) { left: 35%; animation-duration: 12s; animation-delay: -1s; width: 25px; height: 25px; }
.sakura:nth-child(5) { left: 45%; animation-duration: 9s; animation-delay: -3s; }
.sakura:nth-child(6) { left: 55%; animation-duration: 11s; animation-delay: -5s; width: 32px; height: 32px; }
.sakura:nth-child(7) { left: 65%; animation-duration: 13s; animation-delay: -2.5s; width: 34px; height: 34px; }
.sakura:nth-child(8) { left: 75%; animation-duration: 7.5s; animation-delay: -6s; width: 28px; height: 28px; }
.sakura:nth-child(9) { left: 85%; animation-duration: 10.5s; animation-delay: -1.5s; }
.sakura:nth-child(10) { left: 95%; animation-duration: 8.5s; animation-delay: -4.5s; }
.sakura:nth-child(11) { left: 10%; animation-duration: 9.5s; animation-delay: -8s; width: 22px; height: 22px; }
.sakura:nth-child(12) { left: 20%; animation-duration: 7.2s; animation-delay: -3.5s; width: 31px; height: 31px; }
.sakura:nth-child(13) { left: 30%; animation-duration: 11.5s; animation-delay: -5.5s; }
.sakura:nth-child(14) { left: 40%; animation-duration: 8.8s; animation-delay: -2.2s; width: 26px; height: 26px; }
.sakura:nth-child(15) { left: 50%; animation-duration: 10.2s; animation-delay: -7.1s; }
.sakura:nth-child(16) { left: 60%; animation-duration: 12.5s; animation-delay: -4.8s; width: 29px; height: 29px; }
.sakura:nth-child(17) { left: 70%; animation-duration: 8.1s; animation-delay: -1.3s; width: 33px; height: 33px; }
.sakura:nth-child(18) { left: 80%; animation-duration: 10.8s; animation-delay: -3.2s; }
.sakura:nth-child(19) { left: 90%; animation-duration: 7.9s; animation-delay: -5.9s; width: 27px; height: 27px; }
.sakura:nth-child(20) { left: 2%; animation-duration: 11.2s; animation-delay: -2.7s; }
.sakura:nth-child(21) { left: 12%; animation-duration: 8.4s; animation-delay: -4.1s; width: 23px; height: 23px; }
.sakura:nth-child(22) { left: 22%; animation-duration: 12.8s; animation-delay: -6.4s; }
.sakura:nth-child(23) { left: 32%; animation-duration: 9.2s; animation-delay: -1.8s; width: 30px; height: 30px; }
.sakura:nth-child(24) { left: 42%; animation-duration: 7.6s; animation-delay: -3.9s; }
.sakura:nth-child(25) { left: 52%; animation-duration: 10.4s; animation-delay: -5.2s; width: 25px; height: 25px; }
.sakura:nth-child(26) { left: 62%; animation-duration: 11.8s; animation-delay: -7.5s; }
.sakura:nth-child(27) { left: 72%; animation-duration: 8.6s; animation-delay: -2.3s; width: 32px; height: 32px; }
.sakura:nth-child(28) { left: 82%; animation-duration: 13.2s; animation-delay: -4.6s; }
.sakura:nth-child(29) { left: 92%; animation-duration: 9.8s; animation-delay: -1.1s; width: 28px; height: 28px; }
.sakura:nth-child(30) { left: 18%; animation-duration: 7.4s; animation-delay: -6.2s; }


/* ===================================
   Footer Mobile Adjustments
   =================================== */

@media screen and (max-width: 812px) {
  /* ロゴ：横中央寄せ */
  .footer .lyt .logo {
    margin: 0 auto;
    text-align: center;
  }

  /* column：ブロック中央寄せ、テキスト左寄せ */
  .footer .lyt .column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer .lyt .column .catch,
  .footer .lyt .column .text {
    text-align: left;
  }

  /* copy：横中央寄せ */
  .footer .copy {
    text-align: center;
  }

  .footer .copy p {
    text-align: center;
  }
}

