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

body {
  background: #fefefe;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  color: #555;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* ローディング */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: #fefefe;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity 700ms ease;
}
#loader.loaded { opacity: 0; pointer-events: none; }
.ld-name {
  font-family: 'Cormorant Infant', serif;
  font-size: 16px; letter-spacing: 3px; color: #555;
}
.ld-dots { display: flex; gap: 6px; }
.ld-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: #849bbf;
  animation: ld-pulse 1.2s ease-in-out infinite;
}
.ld-dots span:nth-child(2) { animation-delay: .2s; }
.ld-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes ld-pulse {
  0%,100% { opacity: .3; transform: scale(0.8); }
  50%      { opacity: 1;  transform: scale(1.2); }
}

.app {
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  position: relative;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
  touch-action: none;
}

/* 背景専用レイヤー（スライドアニメーションから独立） */
.bg-layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bg-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  transition: opacity 500ms ease;
  pointer-events: none;
}

.bg-layer.active {
  opacity: 1;
}

.bg-page {
  width: 277px;
  position: relative;
  transform-origin: top center;
  flex-shrink: 0;
  pointer-events: none;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* ふわっと遷移アニメーション */
@keyframes float-in-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float-in-down {
  from { opacity: 0; transform: translateY(-32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float-out-up {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-18px); }
}
@keyframes float-out-down {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(18px); }
}


.page {
  width: 277px;
  height: 455px;
  position: relative;
  transform-origin: top center;
  overflow: hidden;
  flex-shrink: 0;
}

/* Header（スライド外・固定） */
.hdr {
  position: absolute;
  top: calc(11 / 277 * 100vw);
  left: calc(12 / 277 * 100vw);
  right: calc(8 / 277 * 100vw);
  height: calc(22 / 277 * 100vw);
  z-index: 100;
  pointer-events: none;
}
.burger { pointer-events: auto; }
.pg-num {
  position: absolute;
  top: 0; left: 0;
  line-height: 1;
  white-space: nowrap;
}
.pg-num .big { font-size: 18px; color: #555; font-weight: 400; }
.pg-num .sm  { font-size: 12px; color: #555; font-weight: 400; }

.burger {
  position: absolute;
  top: 4px; right: 0;
  width: 23px; height: 15px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.burger::before {
  content: '';
  position: absolute;
  inset: -10px -10px -10px -10px;
}
.burger span {
  display: block; height: 1.5px;
  background: #555; border-radius: 1px;
}

/* Swipe footer */
.swipe-ft {
  position: absolute;
  bottom: 17px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 1px;
  z-index: 10;
  cursor: pointer;
}
.swipe-lbl {
  font-size: 7px; letter-spacing: 1.2px;
  color: #555; font-weight: 500;
}
.swipe-icon {
  width: 22px; height: 9px;
  overflow: hidden; position: relative;
  flex-shrink: 0;
}
.swipe-icon img {
  position: absolute; bottom: 0;
  width: 22px; height: 19px;
}

/* Abs position helpers */
.abs { position: absolute; }
.fit { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.inset0 { inset: 0; }
.no-ptr { pointer-events: none; }
.over-h { overflow: hidden; }

/* 横向きフォトウォール */
#orientation-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: #fefefe;
  flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  gap: clamp(4px, 1.5vh, 10px);
  padding: clamp(6px, 1.5vh, 14px) 0;
}
@media (min-width: 480px) { #orientation-overlay { display: flex; } }

.ov-pw-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(6px, 1.5vw, 14px);
  padding: 0 clamp(8px, 2vw, 16px);
  width: 100%;
  align-items: center;
  justify-items: center;
}

.ov-pol {
  background: #fff;
  padding: clamp(4px, 0.8vw, 7px);
  padding-bottom: clamp(16px, 3.5vw, 26px);
  box-shadow: 1px 3px 10px rgba(0,0,0,.10), 0 1px 3px rgba(0,0,0,.05);
  transform: rotate(var(--rot, 0deg));
  animation: ov-pol-fall .6s cubic-bezier(.34, 1.2, .64, 1) var(--delay, 0s) both;
  width: min(20vw, 100px);
  flex-shrink: 0;
}

.ov-pol-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--ph, #dce8f0);
}

.ov-pol-cap {
  text-align: center;
  margin-top: 4px;
  font-family: 'BIZ UDMincho', serif;
  font-size: clamp(5px, 0.9vw, 8px);
  color: #aaa;
  letter-spacing: .8px;
  white-space: nowrap;
}

/* 中央カード（名前入り） */
.ov-pol-main .ov-pol-img {
  background: #dce8f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.ov-pol-main-en {
  font-family: 'Cormorant Infant', serif;
  font-size: clamp(7px, 1.2vw, 10px);
  letter-spacing: 1.5px;
  color: #5c7fad;
  text-align: center;
  line-height: 1.5;
}

.ov-pol-main-date {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(5px, 0.8vw, 7px);
  letter-spacing: 1px;
  color: #849bbf;
}

.ov-pw-back {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(8px, 1.2vw, 11px);
  letter-spacing: 1px;
  color: rgba(85, 85, 85, .35);
  animation: ov-blink 2.5s ease-in-out infinite;
}

@keyframes ov-pol-fall {
  0%   { opacity: 0; transform: translateY(-70vh) rotate(calc(var(--rot, 0deg) + 10deg)); }
  55%  { opacity: 1; }
  82%  { transform: translateY(5px) rotate(var(--rot, 0deg)); }
  100% { transform: translateY(0) rotate(var(--rot, 0deg)); opacity: 1; }
}

@keyframes ov-blink {
  0%,100% { opacity: .3; } 50% { opacity: .7; }
}

/* Page 01 */
.p01-bg-blob { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.p01-title { position: absolute; width: 260px; height: 80px; left: 50%; top: calc(50% - 140.5px); transform: translate(-50%, -50%); }
.p01-deco1 { position: absolute; width: 68px; height: 67px; left: calc(50% - 85px); top: calc(50% - 101px); transform: translate(-50%,-50%); opacity: 0.8; }
.p01-photo { position: absolute; width: 277px; height: 246px; left: calc(50% + 8.5px); top: calc(50% + 17.5px); transform: translate(-50%,-50%); object-fit: cover; }
.p01-deco2 { position: absolute; width: 67px; height: 107px; left: calc(50% - 96.5px); top: calc(50% + 99px); transform: translate(-50%,-50%); }
.p01-name  { position: absolute; left: calc(50% - 71px); top: calc(50% + 142.5px); font-size: 14px; font-weight: 500; letter-spacing: 1.4px; color: #555; white-space: nowrap; }
.p01-date  { position: absolute; left: calc(50% - 51px); top: calc(50% + 164.5px); font-size: 12px; font-weight: 500; letter-spacing: 1.2px; color: #555; white-space: nowrap; }

/* Page 02 */
.p02-bg-tr   { position: absolute; top: 0; right: 0; width: 157px; height: 135px; object-fit: cover; pointer-events: none; }
.p02-bg-bl   { position: absolute; bottom: 0; left: 0; width: 128px; height: 162px; object-fit: cover; pointer-events: none; }
.p02-bg-mr   { position: absolute; right: 0; top: calc(50% + 98px); transform: translateY(-50%); width: 34px; height: 73px; object-fit: cover; pointer-events: none; }
.p02-flower  { position: absolute; bottom: 17px; right: 1px; width: 119px; height: 119px; object-fit: cover; }
.p02-hdg-ja  { position: absolute; left: 50%; top: 80px; transform: translate(-50%,-50%); font-size: 20px; font-weight: 500; letter-spacing: 2px; color: #555; white-space: nowrap; }
.p02-hdg-en  { position: absolute; width: 80px; height: 25px; left: 50%; top: 95px; transform: translateX(-50%); }
.p02-text    { position: absolute; width: 100%; text-align: center; font-size: 10px; letter-spacing: 1px; color: #555; font-weight: 400; line-height: 2; }

/* Page 03 */
.p03-hdg-ja  { position: absolute; left: 50%; top: 61px; transform: translate(-50%,-50%); font-size: 20px; font-weight: 500; letter-spacing: 2px; color: #555; white-space: nowrap; }
.p03-hdg-en  { position: absolute; width: 60px; height: 22px; left: 50%; top: 78px; transform: translateX(-50%); }
.p03-wave    { position: absolute; width: 58px; height: 24px; left: calc(50% + 41px); top: 95px; transform: translateX(-50%); }
.p03-amp     { position: absolute; width: 34px; height: 28px; left: 50%; top: calc(50% + 40.5px); transform: translate(-50%,-50%); }
/* Kenshin */
.p03-k-name  { position: absolute; width: 87px; height: 36px; left: calc(50% + 5.5px); top: calc(50% - 76.5px); transform: translate(-50%,-50%); }
.p03-k-photo { position: absolute; width: 91px; height: 100px; left: calc(50% - 84.5px); top: calc(50% - 33.5px); transform: translate(-50%,-50%); object-fit: cover; }
.p03-k-text  { position: absolute; left: calc(50% - 38px); top: calc(50% - 23.5px); transform: translateY(-50%); font-size: 10px; letter-spacing: 1px; color: #555; line-height: 1.6; width: 168px; }
/* Asuka */
.p03-a-name  { position: absolute; width: 71px; height: 39px; left: calc(50% - 85.5px); top: calc(50% + 84px); transform: translate(-50%,-50%); }
.p03-a-photo { position: absolute; width: 89px; height: 100px; left: calc(50% + 85.5px); top: calc(50% + 115.5px); transform: translate(-50%,-50%); object-fit: cover; overflow: hidden; }
.p03-a-text  { position: absolute; left: calc(50% - 121px); top: calc(50% + 131.5px); transform: translateY(-50%); font-size: 10px; letter-spacing: 1px; color: #555; line-height: 1.6; width: 179px; }

/* Page 04 */
.p04-hdg-ja  { position: absolute; left: 50%; top: 61px; transform: translate(-50%,-50%); font-size: 20px; font-weight: 500; letter-spacing: 8px; color: #555; white-space: nowrap; }
.p04-hdg-en  { position: absolute; width: 81px; height: 27px; left: calc(50% + 0.5px); top: 74px; transform: translateX(-50%); }
.p04-clock   { position: absolute; width: 51px; height: 51px; left: calc(50% - 81px); top: 48px; transform: translateX(-50%) rotate(3deg); }
.p04-tl-line { position: absolute; width: 9px; height: 260px; left: calc(50% - 44.5px); top: calc(50% + 22.5px); transform: translate(-50%,-50%); }
.p04-times   { position: absolute; left: calc(50% - 90px); top: calc(50% + 23.5px); transform: translateY(-50%); font-size: 10px; font-weight: 700; letter-spacing: 1px; color: #555; line-height: 1.6; white-space: pre; }
.p04-labels  { position: absolute; left: calc(50% - 20px); top: calc(50% + 23.5px); transform: translateY(-50%); font-size: 10px; font-weight: 700; letter-spacing: 1px; color: #555; line-height: 1.6; white-space: pre; }
.p04-icon    { position: absolute; object-fit: cover; }

/* 進行表 現在時刻インジケーター */
.p04-tl-now {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #e8934a;
  border: 2.5px solid #fff;
  left: calc(50% - 44.5px);
  transform: translate(-50%, -50%);
  display: none;
  z-index: 5;
  animation: tl-now-pulse 1.5s ease-in-out infinite;
}
@keyframes tl-now-pulse {
  0%,100% { box-shadow: 0 0 4px rgba(232,147,74,.5); }
  50%      { box-shadow: 0 0 12px rgba(232,147,74,.95), 0 0 22px rgba(232,147,74,.35); }
}

/* Page 05 */
.p05-hdg-ja  { position: absolute; left: 50%; top: 61px; transform: translate(-50%,-50%); font-size: 20px; font-weight: 500; letter-spacing: 8px; color: #555; white-space: nowrap; }
.p05-hdg-en  { position: absolute; width: 116px; height: 28px; left: 50%; top: 75px; transform: translateX(-50%); }
.p05-icon    { position: absolute; width: 36px; height: 36px; left: calc(50% - 81px); top: 57px; transform: translateX(-50%); }
.p05-tap-icon{ position: absolute; width: 39px; height: 39px; left: calc(50% + 79.5px); top: calc(50% - 79px); transform: translate(-50%,-50%); }
.p05-desc    { position: absolute; left: 50%; top: calc(50% - 79.5px); transform: translate(-50%,-50%); text-align: center; font-size: 10px; letter-spacing: 1px; color: #555; white-space: nowrap; }
.p05-chart   { position: absolute; width: 260px; height: 146px; left: 50%; top: calc(50% + 29.5px); transform: translate(-50%,-50%); object-fit: contain; }

/* Page 06 */
.p06-hdg-ja  { position: absolute; left: 50%; top: 61px; transform: translate(-50%,-50%); font-size: 20px; font-weight: 500; letter-spacing: 2px; color: #555; white-space: nowrap; }
.p06-hdg-en  { position: absolute; width: 53px; height: 30px; left: calc(50% - 0.5px); top: 74px; transform: translateX(-50%); }
.p06-icon    { position: absolute; width: 42px; height: 42px; left: calc(50% - 90px); top: 62px; transform: translateX(-50%); }
.p06-course  { position: absolute; text-align: center; font-size: 10px; letter-spacing: 1px; color: #555; white-space: nowrap; }
.p06-en-img  { position: absolute; }

/* Page 07 */
.p07-deco-l  { position: absolute; width: 73px; height: 75px; left: 0; top: 380px; }
.p07-k-name  { position: absolute; width: 87px; height: 36px; left: 120px; top: 133px; }
.p07-k-text  { position: absolute; left: 120px; top: 200px; transform: translateY(-50%); font-size: 10px; letter-spacing: 1px; color: #555; line-height: 1.6; white-space: nowrap; }
.p07-a-name  { position: absolute; width: 71px; height: 39px; left: 29px; top: 292px; }
.p07-a-text  { position: absolute; left: 29px; top: 359px; transform: translateY(-50%); font-size: 10px; letter-spacing: 1px; color: #555; line-height: 1.6; white-space: nowrap; }

/* Page 08 */
.p08-hdg-ja  { position: absolute; left: 50%; top: 61px; transform: translate(-50%,-50%); font-size: 18px; font-weight: 500; letter-spacing: 1.8px; color: #555; white-space: nowrap; }
.p08-hdg-en  { position: absolute; width: 162px; height: 23px; left: calc(50% + 10px); top: 72px; transform: translateX(-50%); }
.p08-desc    { position: absolute; left: calc(50% - 3px); top: calc(50% - 76.5px); transform: translate(-50%,-50%); text-align: center; font-size: 10px; letter-spacing: 1px; color: #555; line-height: 20px; white-space: nowrap; }
.p08-photo   { position: absolute; width: 234px; height: 162px; left: calc(50% - 6px); top: calc(50% + 61.5px); transform: translate(-50%,-50%); object-fit: cover; }
.p08-btn     { position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); width: 225px; height: 35px; background: #5c7fad; border-radius: 29px; display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; text-decoration: none; }
.p08-btn-txt { font-size: 10px; font-weight: 700; letter-spacing: 1px; color: #fefefe; }
.p08-btn-arr { font-size: 16px; color: #fefefe; }

/* Page 09 */
.p09-thankyou{ position: absolute; width: 185px; height: 92px; left: calc(50% - 31.5px); top: calc(50% - 130.5px); transform: translate(-50%,-50%); }
.p09-text    { position: absolute; left: calc(50% - 2.5px); top: calc(50% - 44.5px); transform: translate(-50%,-50%); text-align: center; font-size: 10px; letter-spacing: 1px; color: #555; line-height: 20px; white-space: nowrap; }
.p09-flower  { position: absolute; width: 217px; height: 157px; left: calc(50% + 16.5px); top: calc(50% + 70px); transform: translate(-50%,-50%); object-fit: cover; }
.p09-footer  { position: absolute; bottom: 0; left: 15px; right: 0; }
.p09-name-en { position: absolute; bottom: 47px; left: 0; font-size: 12px; font-weight: 500; letter-spacing: 1.2px; color: #555; white-space: nowrap; }
.p09-date-en { position: absolute; bottom: 31px; left: 20px; font-size: 10px; font-weight: 500; letter-spacing: 1px; color: #555; white-space: nowrap; }
.p09-seeyou  { position: absolute; bottom: 0; right: 0; width: 92px; height: 65px; }

/* ---- ナビゲーションメニュー ---- */
.nav-menu {
  position: fixed; inset: 0; z-index: 500;
  visibility: hidden; pointer-events: none;
  background: rgba(0,0,0,0);
  transition: background 300ms ease, visibility 0s 300ms;
}
.nav-menu.open {
  visibility: visible; pointer-events: auto;
  background: rgba(0,0,0,0.28);
  transition: background 300ms ease, visibility 0s 0ms;
}
.nav-drawer {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(78vw, 280px);
  background: #fff;
  display: flex; flex-direction: column;
  padding: 20px 24px 28px;
  transform: translateX(100%);
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 28px rgba(0,0,0,.10);
}
.nav-menu.open .nav-drawer { transform: translateX(0); }
.nav-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px;
  border: none; background: none;
  font-size: 17px; color: #999; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.nav-brand {
  font-size: 10px; letter-spacing: 2.5px; color: #bbb;
  margin: 8px 0 28px; white-space: nowrap;
}
.nav-list { list-style: none; flex: 1; margin: 0; padding: 0; }
.nav-list li { border-bottom: 1px solid #f3eeea; }
.nav-item {
  display: flex; align-items: baseline; gap: 14px;
  padding: 13px 2px;
  cursor: pointer; text-decoration: none;
  transition: opacity .15s;
  -webkit-tap-highlight-color: transparent;
}
.nav-item:active { opacity: .5; }
.nav-num {
  font-size: 10px; color: #ccc; letter-spacing: 1px;
  flex-shrink: 0; width: 18px;
}
.nav-name {
  font-size: 13px; font-weight: 500;
  letter-spacing: 1.8px; color: #555;
}
.nav-item.current .nav-num { color: #5c7fad; }
.nav-item.current .nav-name { color: #5c7fad; }
.nav-date {
  font-size: 9px; letter-spacing: 1.2px; color: #ccc;
  text-align: right; margin-top: 20px;
}

/* ---- p05 chart tap trigger ---- */
.sc-trigger { cursor: pointer; transition: opacity .15s; }
.sc-trigger:active { opacity: .75; }

/* ---- 席次表モーダル ---- */
.sc-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; flex-direction: column;
  background: #fff;
  opacity: 0; pointer-events: none;
  transform: translateY(30px);
  transition: opacity 300ms ease, transform 300ms ease;
}
.sc-modal.open {
  opacity: 1; pointer-events: auto;
  transform: translateY(0);
}

/* header */
.sc-modal-header {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border-bottom: 1px solid #e8e0d8;
  flex-shrink: 0;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.sc-modal-title { display: flex; flex-direction: column; flex: 0 0 auto; }
.sc-modal-title-ja { font-size: 15px; font-weight: 500; letter-spacing: 2px; color: #555; line-height: 1; }
.sc-modal-hint { font-size: 9px; color: #999; letter-spacing: .5px; margin-top: 3px; }
.sc-search-wrap { flex: 1; }
.sc-search {
  width: 100%; height: 32px;
  border: 1px solid #d8cfc8; border-radius: 16px;
  padding: 0 12px; font-size: 16px; color: #555;
  background: #faf8f6; outline: none;
  font-family: 'BIZ UDMincho', serif;
  letter-spacing: .5px;
}
.sc-search::placeholder { color: #bbb; }
.sc-close {
  width: 32px; height: 32px; border: none; background: none;
  font-size: 18px; color: #888; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* viewport & canvas */
.sc-viewport {
  flex: 1; overflow: hidden;
  position: relative; touch-action: none;
  background: #faf8f6;
}

/* パララックス背景 */
.sc-parallax-bg {
  position: absolute;
  inset: -12%;              /* 移動の余白を確保 */
  background: url('https://www.figma.com/api/mcp/asset/4688a371-da16-43f3-bd13-c6c7e37abd8d') center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
  will-change: transform;
}

.sc-canvas {
  position: absolute;
  width: 1672px; height: 941px;
  transform-origin: 0 0;
  will-change: transform;
}

/* canvas elements */
.sc-bg-img  { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.sc-white-rect { position: absolute; left: 64px; top: 55px; width: 1546px; height: 836px; background: #fff; }
.sc-deco-l  { position: absolute; left: 10px; top: 776px; width: 123px; height: 156px; object-fit: cover; pointer-events: none; }
.sc-deco-r  { position: absolute; left: 1542px; top: 781px; width: 133px; height: 151px; object-fit: cover; pointer-events: none; }
.sc-calligraphy { position: absolute; left: 494px; top: 0; width: 688px; height: 135px; object-fit: contain; pointer-events: none; }
.sc-hdr-left { position: absolute; left: 93px; top: 100px; font-family: 'BIZ UDMincho', serif; font-size: 16px; font-weight: 700; letter-spacing: 3.5px; color: #555; line-height: 1.6; }
.sc-family   { }
.sc-hdr-title { position: absolute; left: 181px; top: 114px; font-family: 'BIZ UDMincho', serif; font-size: 16px; font-weight: 700; letter-spacing: 3.5px; color: #555; white-space: nowrap; }
.sc-hdr-name   { position: absolute; top: 141px; width: 97px; font-family: 'BIZ UDMincho', serif; font-size: 16px; font-weight: 700; letter-spacing: 3.5px; color: #555; text-align: center; }
.sc-hdr-name-l { left: 742px; }
.sc-hdr-name-r { left: 839px; }
.sc-hdr-date  { position: absolute; left: 1410px; top: 100px; font-family: 'BIZ UDMincho', serif; font-size: 16px; font-weight: 700; letter-spacing: 3.5px; color: #555; white-space: nowrap; }
.sc-main-table-box { position: absolute; left: 742px; top: 171px; width: 194px; height: 32px; border: 1px solid #555; }
.sc-footer-text { position: absolute; left: 1257px; top: 864px; width: 286px; font-family: 'BIZ UDMincho', serif; font-size: 12px; letter-spacing: 2.64px; color: #555; text-align: center; line-height: normal; }

/* tables */
.sc-table {
  position: absolute;
  width: 320px; height: 182px;
}
.sc-table-inner {
  position: relative; width: 100%; height: 100%;
  background: #fff;
  border-radius: 2px;
  transition: box-shadow .2s;
}
.sc-table.sc-found .sc-table-inner {
  box-shadow: 0 0 0 4px #f5c842, 0 4px 16px rgba(245,200,66,.45);
}
.sc-circle {
  position: absolute; left: 75px; top: 6px;
  width: 170px; height: 170px;
  object-fit: cover; pointer-events: none;
}
.sc-letter {
  position: absolute; left: 160px; top: 91px;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Infant', serif;
  font-size: 32px; font-weight: 700;
  letter-spacing: 7px; text-align: center;
  pointer-events: none;
}

/* guest columns */
.sc-col {
  position: absolute; top: 0; height: 100%;
  display: flex; flex-direction: column;
  justify-content: center; gap: 6px;
  width: 110px;
}
.sc-col-l { left: 10px; align-items: flex-start; }
.sc-col-r { left: 200px; align-items: flex-start; }
.sc-guest {
  display: flex; flex-direction: column; gap: 1px;
  line-height: 1.2;
}
.sc-rel {
  font-family: 'BIZ UDMincho', serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; color: #555;
}
.sc-name {
  font-family: 'BIZ UDMincho', serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; color: #555;
}
.sc-name.sc-match {
  background: #fff3b0;
  border-radius: 2px;
  padding: 0 2px;
}

/* 検索バナー */
.sc-search-banner {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(60,60,60,.85); color: #fff;
  padding: 8px 20px; border-radius: 20px;
  font-size: 13px; letter-spacing: .5px;
  white-space: nowrap; pointer-events: none;
  z-index: 10;
}
