@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;500;600;700;900&display=swap');

body {
  background-color: #F9F8F6;
  /* var(--color-tea-paper) */
  color: #1A2F23;
  /* var(--color-tea-ink) */
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.letter-spacing-wide {
  letter-spacing: 0.4em;
}

.letter-spacing-widest {
  letter-spacing: 0.8em;
}

/* Scroll Fade-In transition styles matching behavior */
.fade-in-initial {
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
  transition: opacity 1.2s cubic-bezier(0.21, 0.45, 0.32, 0.9), transform 1.2s cubic-bezier(0.21, 0.45, 0.32, 0.9);
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle continuous pulse anim for special action buttons */
@keyframes pulseSubtle {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.015);
  }
}

.animate-pulse-subtle {
  animation: pulseSubtle 3s infinite ease-in-out;
}

/* ヘッダー・フッター共用背景（ブラック） */
.back-color--bk {
  background-color: #000000;
  color: #ffffff;
}

/* ヘッダー領域 */
.ly-header {
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 中央揃え */
}

.header__img img {
  height: 24px;
  /* 指定ロゴサイズ */
  width: auto;
}

/* フッター領域 */
.footer__container {
  padding: 4rem 2rem;
}

.footer-flex {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* 中央寄せ */
  gap: 2rem;
}

/* フッター内・サービスロゴ(rose) */
.footer-img {
  height: 60px;
  /* 視認性を最適化したサイズ */
  width: auto;
  opacity: 0.8;
}

/* フッター内・企業ロゴ */
.footer-company-logo img {
  height: 28px;
  width: auto;
}

/* コピーライト */
.footer-copylight {
  font-size: 0.7rem;
  opacity: 0.5;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* レスポンシブ用（タブレット・PCサイズでの間隔調整） */
@media (min-width: 768px) {
  .footer-flex {
    gap: 2.5rem;
  }
}