body {
  font-family: 'Shippori Mincho', serif;
  overflow-x: hidden;
  width: 100%;
  background-color: #fff;
}
/* ボタンが表示される時の状態 */
#page-top.show {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto;
}
/* 非表示の時 */
#page-top {
  pointer-events: none;
  /* transitionに transform と opacity を明示的に指定して滑らかに */
  transition: transform 0.5s ease, opacity 0.5s ease, background-color 0.3s ease;
}
/* スムーススクロールを有効にする（未設定の場合） */
html {
  scroll-behavior: smooth;
}
.font-en {
  font-family: 'Cormorant', serif;
  letter-spacing: 0.1em;
}
.font-mont {
  font-family: 'Montserrat', sans-serif;
}
h1, h2, h3, h4 {
  letter-spacing: 0.15em;
  font-weight: 500;
}
/* 浮き上がりアニメーション設定 */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.title-decoration {
  display: block;
  font-family: 'Cormorant', serif;
  font-size: 0.9rem;
  color: #b39671;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}
/* ご利用の流れの数字装飾 */
.step-number {
  font-family: 'Cormorant', serif;
  font-size: 3rem;
  color: rgba(179, 150, 113, 0.2);
  line-height: 1;
  font-style: italic;
}
.nav-link {
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: #b39671;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-link:hover::after {
  width: 100%;
}
/* スクロール時のヘッダーの高さと見た目 */
header#main-header.scrolled {
  height: 4rem; /* h-16 相当 (64px) */
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #f3f4f6; /* 下線を薄く表示 */
}
/* スクロール時にロゴを少し小さくして圧迫感を減らす（任意） */
header#main-header.scrolled h1 {
  font-size: 1.25 text-xl; /* 2xl -> xl */
  letter-spacing: 0.2em;
}
.red_back {
  width: fit-content;
  padding: 5px 15px;
  font-family: 'Noto Serif JP', serif;
  font-weight: lighter;
  background: #D5000C;
  color: #fff;
}