/* ==========================================================================
   single-demo-em.css — エム(M)
   トーン: キュート・フェミニン × モダン・韓国
   デザイン: 全画面ヒーロー・グリッドずらし・オーバーラップ・縦書きアクセント
             大胆なタイポ・アウトラインテキスト・スクロールフェードイン（ゆっくり）
             パララックス・ホバーズーム・大きな数字装飾・波形セクション境界
             リスト型メニュー・カード型メニュー・縦型グローバルナビ
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Noto+Sans+JP:wght@300;400&family=Noto+Serif+JP:wght@400;500&display=swap');

/* --------------------------------------------------------------------------
   ベース
   -------------------------------------------------------------------------- */

.demo-single-page {
  background: var(--demo-bg);
  color: var(--demo-primary);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

.demo-site-wrap {
  overflow-x: hidden;
}


/* --------------------------------------------------------------------------
   縦型グローバルナビ（デスクトップ固定右サイド）
   -------------------------------------------------------------------------- */

.em-sidenav {
  display: none;
}

@media (min-width: 768px) {
  .em-sidenav {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    right: 0;
    top: 40px; /* demo-bar 分 */
    bottom: 0;
    width: 68px;
    background: rgba(62, 34, 24, 0.93);
    border-left: 1px solid rgba(242, 169, 140, 0.18);
    z-index: 100;
    backdrop-filter: blur(6px);
  }

  .em-sidenav__logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--demo-accent);
    text-decoration: none;
    padding: 1.4rem 0 1.2rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(242, 169, 140, 0.12);
    width: 100%;
    text-align: center;
  }

  .em-sidenav__links {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
  }

  .em-sidenav__links a {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.55rem;
    letter-spacing: 0.28em;
    color: rgba(255, 248, 243, 0.5);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s;
  }

  .em-sidenav__links a:hover {
    color: var(--demo-accent);
  }

  .em-sidenav__reserve {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.5rem;
    letter-spacing: 0.22em;
    color: var(--demo-accent);
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid rgba(242, 169, 140, 0.35);
    padding: 0.9em 0.35em;
    margin-bottom: 1.4rem;
    transition: background 0.25s;
  }

  .em-sidenav__reserve:hover {
    background: rgba(242, 169, 140, 0.12);
  }
}


/* --------------------------------------------------------------------------
   モバイルヘッダー
   -------------------------------------------------------------------------- */

.em-header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  z-index: 90;
  transition: background 0.35s;
}

.em-header.is-scrolled {
  background: rgba(62, 34, 24, 0.95);
  backdrop-filter: blur(6px);
}

.em-header__logo {
  display: flex;
  align-items: baseline;
  gap: 0.4em;
  text-decoration: none;
}

.em-header__logo-en {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--demo-bg);
  line-height: 1;
}

.em-header__logo-ja {
  font-size: 0.65rem;
  color: rgba(255, 248, 243, 0.6);
  letter-spacing: 0.1em;
}

.em-header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.em-header__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--demo-bg);
}

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


/* --------------------------------------------------------------------------
   ヒーロー — 全画面 + パララックス
   -------------------------------------------------------------------------- */

.em-hero {
  position: relative;
  z-index: 1; /* hero + 波形がconceptセクションの上に重なるようにするため */
  min-height: 100svh;
  background-color: #2a1610;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  /* overflow: hidden を外すことで波形SVGがクリップされずに表示される */
}

@media (max-width: 767px) {
  .em-hero {
    background-attachment: scroll;
  }
}

.em-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(62, 34, 24, 0.72) 0%,
    rgba(62, 34, 24, 0.45) 60%,
    rgba(62, 34, 24, 0.25) 100%
  );
  z-index: 1;
}

.em-hero__content {
  position: relative;
  z-index: 3;
  padding: clamp(6rem, 14vw, 9rem) clamp(1.5rem, 5vw, 4rem) clamp(5rem, 10vw, 8rem);
  max-width: 640px;
}

@media (min-width: 768px) {
  .em-hero__content {
    padding-right: 96px; /* side nav 分 */
  }
}

.em-hero__label {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--demo-accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.em-hero__title {
  line-height: 1;
  margin-bottom: 1.8rem;
}

/* アウトラインテキスト */
.em-hero__title-outline {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(6rem, 22vw, 16rem);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 248, 243, 0.55);
  line-height: 0.85;
  letter-spacing: -0.03em;
  user-select: none;
}

.em-hero__title-solid {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  color: var(--demo-bg);
  letter-spacing: 0.2em;
  padding-left: 0.2em;
  margin-top: 0.4rem;
}

.em-hero__tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  color: rgba(255, 248, 243, 0.75);
  line-height: 2.1;
  margin-bottom: 2.5rem;
}

.em-hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.em-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--demo-accent);
  color: var(--demo-primary);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 0.85em 2em;
  transition: opacity 0.25s;
}

.em-hero__btn:hover {
  opacity: 0.82;
}

.em-hero__sub-link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255, 248, 243, 0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 248, 243, 0.3);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.em-hero__sub-link:hover {
  color: var(--demo-bg);
  border-color: var(--demo-bg);
}

/* 縦書きアクセント */
.em-hero__vert {
  position: absolute;
  left: 1.5rem;
  bottom: 7rem;
  z-index: 3;
}

.em-hero__vert span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: rgba(255, 248, 243, 0.4);
  text-transform: uppercase;
}

/* スクロールインジケーター */
.em-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

@media (min-width: 768px) {
  .em-hero__scroll {
    left: clamp(1.5rem, 4vw, 3rem);
    transform: none;
  }
}

.em-hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--demo-accent), transparent);
  animation: emScrollLine 1.8s ease-in-out infinite;
}

@keyframes emScrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

.em-hero__scroll-text {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  color: rgba(255, 248, 243, 0.4);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* 波形 */
.em-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
}

.em-hero__wave svg {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 80px);
}


/* --------------------------------------------------------------------------
   Concept
   -------------------------------------------------------------------------- */

.em-concept {
  position: relative;
  background: #FFF8F3;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

/* 大きな数字装飾 */

.em-concept__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

/* モバイル: テキストを先、画像を後ろに */
.em-concept__text-col {
  order: 1;
  background: rgb(255, 248, 243);
}

.em-concept__img-col {
  order: 2;
}

@media (min-width: 768px) {
  .em-concept__inner {
    grid-template-columns: 48% 52%;
    align-items: center;
    gap: 0;
  }

  /* デスクトップ: 元の順序（画像左・テキスト右）に戻す */
  .em-concept__img-col {
    order: 1;
    margin-right: -3rem;
    z-index: 0;
  }

  .em-concept__text-col {
    order: 2;
    position: relative;
    z-index: 1;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem) 5rem;
    background: rgb(255, 237, 228);
  }
}

.em-concept__img {
  width: 100%;
  padding-top: 130%;
  background-size: cover;
  background-position: center;
}

/* 縦書きアクセント */
.em-concept__vert {
  display: none;
}

@media (min-width: 768px) {
  .em-concept__vert {
    display: block;
    position: absolute;
    left: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--demo-accent);
    opacity: 0.4;
    text-transform: uppercase;
    pointer-events: none;
  }
}

.em-concept__en {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--demo-accent);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.em-concept__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.5;
  color: var(--demo-primary);
  margin-bottom: 1.4rem;
}

.em-concept__rule {
  width: 36px;
  height: 1px;
  background: var(--demo-accent);
  margin-bottom: 1.4rem;
}

.em-concept__body {
  font-size: 0.88rem;
  line-height: 2.1;
  color: #5a3e34;
  text-wrap: pretty;
}

/* 波形 */
.em-concept__wave {
  /* sectionのhorizontal paddingを打ち消して左端から右端まで波形を伸ばす */
  margin-left: calc(-1 * clamp(1.5rem, 5vw, 4rem));
  width: calc(100% + 2 * clamp(1.5rem, 5vw, 4rem));
  line-height: 0;
  margin-top: -1px;
}

.em-concept__wave svg {
  display: block;
  width: 100%;
  height: clamp(30px, 5vw, 60px);
}


/* --------------------------------------------------------------------------
   Menu Cards
   -------------------------------------------------------------------------- */

.em-menu-cards {
  background: #FFEDE4;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 4rem);
}

.em-menu-cards__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.em-menu-cards__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  gap: 1rem;
}

/* 大きな数字装飾 */
.em-menu-cards__num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(62, 34, 24, 0.1);
  line-height: 1;
  flex-shrink: 0;
}

.em-en-label {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--demo-accent);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.em-menu-cards__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--demo-primary);
  line-height: 1.3;
}

/* グリッドずらし */
.em-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .em-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 1.5rem;
  }
}

/* ホバーズーム */
.em-card {
  background: var(--demo-bg);
  border: 1px solid rgba(62, 34, 24, 0.08);
  padding: 2rem 1.6rem 1.6rem;
  position: relative;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.em-card:hover {
  transform: scale(1.025);
}

.em-card--offset {
  margin-top: 0;
}

@media (min-width: 640px) {
  .em-card--offset {
    margin-top: 3.5rem; /* グリッドずらし */
  }
}

.em-card__num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 169, 140, 0.5);
  line-height: 1;
  margin-bottom: 1rem;
}

.em-card__badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--demo-bg);
  background: var(--demo-accent);
  padding: 0.2em 0.7em;
  margin-bottom: 0.8rem;
}

.em-card__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--demo-primary);
  margin-bottom: 1.2rem;
}

.em-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(62, 34, 24, 0.08);
  padding-top: 1rem;
}

.em-card__time {
  font-size: 0.7rem;
  color: #8a6050;
  letter-spacing: 0.05em;
}

.em-card__price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--demo-accent);
  letter-spacing: 0.04em;
}

.em-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--demo-primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.25s;
}

.em-card__link:hover {
  color: var(--demo-accent);
}


/* --------------------------------------------------------------------------
   Menu List
   -------------------------------------------------------------------------- */

.em-menu-list {
  background: #FFEDE4;
  padding: clamp(1rem, 2vw, 2rem) 0 0;
  position: relative;
  overflow: hidden;
}

.em-menu-list__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem);
  background: var(--demo-bg);
}

.em-menu-list__subtitle {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(62, 34, 24, 0.12);
}

.em-menu-list__subtitle-en {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--demo-accent);
  letter-spacing: 0.05em;
}

.em-menu-list__subtitle-ja {
  font-size: 0.85rem;
  color: #8a6050;
  letter-spacing: 0.1em;
}

/* dotted leader リスト */
.em-menu-list__table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.em-menu-list__row {
  display: grid;
  grid-template-columns: 2rem 1fr auto auto;
  align-items: baseline;
  gap: 0.5rem 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(62, 34, 24, 0.08);
}

.em-menu-list__idx {
  font-family: 'DM Serif Display', serif;
  font-size: 0.85rem;
  color: var(--demo-accent);
  letter-spacing: 0.05em;
}

.em-menu-list__name {
  font-size: 1rem;
  color: var(--demo-primary);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.em-menu-list__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(62, 34, 24, 0.22);
  margin-bottom: 0.2em;
  min-width: 1rem;
}

.em-menu-list__price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--demo-accent);
  white-space: nowrap;
}

.em-menu-list__time {
  font-size: 0.78rem;
  color: #8a6050;
  white-space: nowrap;
}

.em-menu-list__note {
  font-size: 0.8rem;
  color: #8a6050;
  margin-top: 1.2rem;
  letter-spacing: 0.04em;
}

.em-menu-list__cta {
  margin-top: 2.5rem;
  text-align: right;
}

.em-menu-list__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--demo-primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.25s;
}

.em-menu-list__cta a:hover {
  color: var(--demo-accent);
}

/* 波形 */
.em-menu-list__wave {
  line-height: 0;
  margin-top: -1px;
}

.em-menu-list__wave svg {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 80px);
}


/* --------------------------------------------------------------------------
   Access
   -------------------------------------------------------------------------- */

.em-access {
  position: relative;
  background: var(--demo-primary);
  overflow: hidden;
}

/* 大きな数字装飾 */
.em-access__num {
  position: absolute;
  bottom: -0.1em;
  right: -0.04em;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(8rem, 22vw, 20rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 248, 243, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.em-access__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 420px;
}

@media (min-width: 768px) {
  .em-access__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.em-access__map-col {
  min-height: 300px;
  background: #3E2218; /* news波形のfill="#3E2218"と同じ値で揃える */
  overflow: hidden;
}

.em-access__map {
  width: 100%;
  height: 300px;
  background: #2a1610;
}

@media (min-width: 768px) {
  .em-access__map {
    height: 100%;
    min-height: 400px;
  }
}

/* ダークタイルをテーマの暖色系に近づける */
#emAccessMap .leaflet-tile-pane {
  filter: sepia(12%) brightness(1.15) saturate(0.95) contrast(0.92);
}

/* attributionを控えめに */
#emAccessMap .leaflet-control-attribution {
  background: rgba(30, 14, 8, 0.72);
  color: rgba(255, 248, 243, 0.45);
  font-size: 0.55rem;
}

#emAccessMap .leaflet-control-attribution a {
  color: rgba(242, 169, 140, 0.6);
}

/* ズームコントロール */
#emAccessMap .leaflet-control-zoom a {
  background: rgba(62, 34, 24, 0.9);
  color: rgba(255, 248, 243, 0.8);
  border-color: rgba(242, 169, 140, 0.2);
}

#emAccessMap .leaflet-control-zoom a:hover {
  background: rgba(242, 169, 140, 0.25);
  color: #FFF8F3;
}

/* カスタムピン */
.em-map-pin {
  background: none !important;
  border: none !important;
}

.em-map-pin__inner {
  width: 16px;
  height: 16px;
  background: #F2A98C;
  border: 2px solid #FFF8F3;
  border-radius: 50%;
  position: relative;
  animation: emPinPulse 2.8s ease-in-out infinite;
}

.em-map-pin__inner::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(242, 169, 140, 0.4);
  animation: emPinRing 2.8s ease-in-out infinite;
}

@keyframes emPinPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}

@keyframes emPinRing {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(2.4); }
}

/* Leafletポップアップ */
#emAccessMap .leaflet-popup-content-wrapper {
  background: #3E2218;
  color: #FFF8F3;
  border-radius: 2px;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  line-height: 1.8;
  min-width: 200px;
}

#emAccessMap .leaflet-popup-content {
  margin: 0;
  padding: 1.2rem 1.5rem;
  min-height: 60px;
}

#emAccessMap .leaflet-popup-tip {
  background: #3E2218;
}

#emAccessMap .leaflet-popup-close-button {
  color: rgba(242, 169, 140, 0.7);
}

#emAccessMap .leaflet-popup-close-button:hover {
  color: #F2A98C;
}

.em-access__map-label {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: rgba(255, 248, 243, 0.2);
  text-transform: uppercase;
}

.em-access__info-col {
  display: flex;
  align-items: center;
}

.em-access__info-inner {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  width: 100%;
}

.em-access__en {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--demo-accent);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.em-access__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--demo-bg);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.em-access__dl {
  border-top: 1px solid rgba(255, 248, 243, 0.1);
  margin-bottom: 2.5rem;
}

.em-access__row {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.5rem 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 248, 243, 0.1);
  font-size: 0.85rem;
}

.em-access__row dt {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--demo-accent);
  padding-top: 0.1em;
}

.em-access__row dd {
  color: rgba(255, 248, 243, 0.75);
  margin: 0;
  line-height: 1.8;
}

.em-access__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--demo-bg);
  text-decoration: none;
  border: 1px solid rgba(255, 248, 243, 0.3);
  padding: 0.85em 1.8em;
  transition: background 0.25s, color 0.25s;
}

.em-access__cta:hover {
  background: var(--demo-bg);
  color: var(--demo-primary);
}


/* --------------------------------------------------------------------------
   フッター
   -------------------------------------------------------------------------- */

.em-footer {
  background: #1e0e08;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
}

.em-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.em-footer__logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--demo-bg);
  opacity: 0.65;
}

.em-footer__logo small {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  margin-left: 0.5em;
  opacity: 0.6;
}

.em-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 2rem;
}

.em-footer__nav a {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: rgba(255, 248, 243, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.em-footer__nav a:hover {
  color: rgba(255, 248, 243, 0.65);
}

.em-footer__copy {
  font-size: 0.62rem;
  color: rgba(255, 248, 243, 0.22);
  letter-spacing: 0.06em;
}

.em-footer__copy span {
  display: block;
  margin-top: 0.3em;
  opacity: 0.6;
}


/* --------------------------------------------------------------------------
   Voice — 横スクロールマーキー
   -------------------------------------------------------------------------- */

.em-voice {
  background: #3E2218; /* menu-list波形のfill="#3E2218"と同じ値で揃える */
  padding-top: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  position: relative;
}

.em-voice__head {
  text-align: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.em-voice__head .em-en-label {
  color: var(--demo-accent);
}

.em-voice__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--demo-bg);
  letter-spacing: 0.06em;
}

/* マーキートラック */
.em-voice__track {
  overflow: hidden;
  width: 100%;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  cursor: default;
}

/* ホバーで一時停止 */
.em-voice__track:hover .em-voice__rail {
  animation-play-state: paused;
}

.em-voice__rail {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: emVoiceMarquee 38s linear infinite;
}

@keyframes emVoiceMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* モーションを減らす設定への配慮 */
@media (prefers-reduced-motion: reduce) {
  .em-voice__rail {
    animation: none;
  }
  .em-voice__track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.em-voice__card {
  width: 280px;
  flex-shrink: 0;
  background: rgba(255, 248, 243, 0.07);
  border: 1px solid rgba(242, 169, 140, 0.2);
  border-left: 2px solid var(--demo-accent);
  padding: 1.8rem 1.6rem;
  position: relative;
}

.em-voice__card::before {
  content: none;
}

.em-voice__text {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255, 248, 243, 0.82);
  margin-bottom: 1.2rem;
  position: relative;
}

.em-voice__attr {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--demo-accent);
  opacity: 0.7;
}

/* 波形 */
.em-voice__wave {
  line-height: 0;
  margin-top: -1px;
}

.em-voice__wave svg {
  display: block;
  width: 100%;
  height: clamp(30px, 5vw, 60px);
}


/* --------------------------------------------------------------------------
   News & Column
   -------------------------------------------------------------------------- */

.em-news {
  background: var(--demo-bg);
  position: relative;
  overflow: hidden;
}

.em-news__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem) 0;
}

.em-news__head {
  margin-bottom: 2rem;
}

.em-news__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--demo-primary);
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
}

.em-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(62, 34, 24, 0.1);
}

.em-news__item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: 0.6rem 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(62, 34, 24, 0.08);
  text-decoration: none;
}

@media (max-width: 480px) {
  .em-news__item {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
  }

  .em-news__title-text {
    grid-column: 1 / -1;
  }
}

.em-news__date {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #8a6050;
  white-space: nowrap;
  font-family: 'DM Serif Display', serif;
}

.em-news__cat {
  display: inline-block;
  width: 50px;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 0.15em 0;
  text-align: center;
  white-space: nowrap;
}

.em-news__cat--news {
  color: var(--demo-bg);
  background: var(--demo-primary);
}

.em-news__cat--column {
  color: var(--demo-primary);
  background: transparent;
  border: 1px solid rgba(62, 34, 24, 0.3);
}

.em-news__title-text {
  font-size: 0.88rem;
  color: var(--demo-primary);
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.em-news__more {
  padding: 2rem 0 clamp(3.5rem, 7vw, 6rem);
  text-align: right;
}

.em-news__more a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--demo-primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.25s;
}

.em-news__more a:hover {
  color: var(--demo-accent);
}

/* 波形 */
.em-news__wave {
  line-height: 0;
  margin-top: -1px;
}

.em-news__wave svg {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 80px);
}


/* --------------------------------------------------------------------------
   スクロールフェードイン（ゆっくり）
   -------------------------------------------------------------------------- */

.em-fade {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.0s ease-out, transform 1.0s ease-out;
}

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