:root {
  --page-background: #f5f2ec;
  --surface: #fffefc;
  --text-main: #242421;
  --text-sub: #706d66;
  --border: #ded9d0;
  --card: #eeeae3;
  --button: #292925;
  --accent: #8a765c;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page-background);
}

body {
  margin: 0;
  background: var(--page-background);
  color: var(--text-main);
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Yu Gothic",
    sans-serif;
}

button,
input {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.app {
  width: 100%;
  max-width: 600px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--surface);
  box-shadow: 0 0 40px rgba(25, 23, 19, 0.05);
}

.hero {
  padding: 54px 28px 38px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.brand-name {
  margin: 0 0 18px;
  color: var(--accent);
  font-family:
    "Yu Gothic",
    "Hiragino Kaku Gothic ProN",
    sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.hero h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.hero-label {
  margin: 14px 0 0;
  color: var(--text-main);
  font-size: 15px;
}

.hero-description {
  max-width: 390px;
  margin: 18px auto 0;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.9;
}

.guide-section,
.conversation-section {
  padding: 32px 22px;
}

.guide-section {
  border-bottom: 1px solid var(--border);
}

.section-heading {
  margin-bottom: 18px;
}

.section-caption {
  margin: 0 0 8px;
  color: var(--accent);
  font-family:
    Arial,
    sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.section-heading h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

.quick-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quick-question {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.1s ease;
}

.quick-question:hover {
  border-color: var(--accent);
  background: #faf8f4;
}

.quick-question:active {
  transform: scale(0.98);
}

.quick-question:disabled {
  cursor: default;
  opacity: 0.5;
}

.quick-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  margin-right: 11px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 10px;
}

.quick-label {
  font-size: 14px;
}

.conversation-section {
  padding-bottom: 20px;
}

.chat-area {
  min-height: 180px;
  max-height: 430px;
  padding: 20px 0 0;
  overflow-y: auto;
}

.message-row {
  margin-bottom: 22px;
}

.message-meta {
  margin: 0 0 7px 3px;
  color: var(--text-sub);
  font-family:
    "Yu Gothic",
    sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.message {
  width: fit-content;
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 4px;
  font-family:
    "Yu Gothic",
    "Hiragino Kaku Gothic ProN",
    sans-serif;
  font-size: 14px;
  line-height: 1.75;
  white-space: pre-wrap;
}

.bot-message {
  background: var(--card);
  color: var(--text-main);
}

.user-message {
  margin-left: auto;
  background: var(--button);
  color: #fff;
}

.input-area {
  position: sticky;
  bottom: 0;
  z-index: 10;
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  background: rgba(255, 254, 252, 0.96);
  backdrop-filter: blur(8px);
}

.input-area input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #fff;
  color: var(--text-main);
  font-family:
    "Yu Gothic",
    sans-serif;
  font-size: 14px;
  outline: none;
}

.input-area input:focus {
  border-color: var(--accent);
}

.input-area button {
  min-width: 76px;
  padding: 12px 18px;
  border: 0;
  border-radius: 3px;
  background: var(--button);
  color: #fff;
  font-family:
    "Yu Gothic",
    sans-serif;
  font-size: 13px;
  cursor: pointer;
}

.input-area button:hover {
  opacity: 0.88;
}

.footer {
  padding: 25px 20px 32px;
  color: var(--text-sub);
  text-align: center;
}

.language-button {
  padding: 6px 10px;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-decoration: underline;
  cursor: pointer;
}

.footer p {
  margin: 18px 0 0;
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.24em;
}

@media (max-width: 420px) {
  .hero {
    padding: 44px 22px 31px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .guide-section,
  .conversation-section {
    padding-right: 17px;
    padding-left: 17px;
  }

  .quick-question {
    min-height: 64px;
    padding: 12px;
  }

  .quick-icon {
    width: 27px;
    height: 27px;
    margin-right: 8px;
  }

  .quick-label {
    font-size: 13px;
  }
}
.language-selector {
  position: relative;
  display: inline-block;
}

.language-menu {
  position: absolute;
  right: 50%;
  bottom: 36px;
  z-index: 30;
  width: 150px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(25, 23, 19, 0.12);
  transform: translateX(50%);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  display: block;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  background: transparent;
  color: var(--text-main);
  font-family:
    "Yu Gothic",
    sans-serif;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover {
  background: var(--card);
}
/* Sprint 1.4 Phase 1 — Production Ready */
.facility-badge {
  display: inline-flex;
  margin: 12px 0 0;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-sub);
  font-size: 12px;
  letter-spacing: .08em;
}

.quick-menu-eight {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quick-menu-eight .quick-question {
  min-height: 82px;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
}

.quick-menu-eight .quick-icon {
  font-size: 11px;
  opacity: .65;
}

.quick-menu-eight .quick-label {
  font-size: 15px;
  line-height: 1.4;
}

.free-question-hint {
  margin: 16px 0 0;
  padding: 13px 15px;
  border-top: 1px solid var(--border);
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.7;
}

.free-question-hint::before {
  content: "↗";
  margin-right: 8px;
}

.popular-guides {
  margin: 0 0 16px;
  padding: 16px;
  border: 1px solid var(--border);
  background: #faf9f6;
}

.popular-guides > p {
  margin: 0 0 10px;
  color: var(--text-sub);
  font-size: 11px;
  letter-spacing: .12em;
}

.popular-guide-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-question.compact {
  min-height: auto;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--surface);
  font-size: 12px;
}

.loading-message {
  color: var(--text-sub);
}

.loading-message::after {
  content: "";
  display: inline-block;
  width: 1.2em;
  animation: aufu-dots 1.2s steps(4, end) infinite;
}

@keyframes aufu-dots {
  0% { content: ""; }
  25% { content: "."; }
  50% { content: ".."; }
  75%, 100% { content: "..."; }
}

.emergency-message {
  border: 1px solid #b74b45;
  background: #fff8f7;
  color: #742b27;
  white-space: pre-line;
}

.emergency-message::before {
  content: "緊急対応";
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.emergency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.emergency-actions a {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid #b74b45;
  color: #742b27;
  text-decoration: none;
  font-size: 13px;
}

@media (min-width: 640px) {
  .quick-menu-eight { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .quick-menu-eight .quick-question { min-height: 100px; }
}

/* Sprint 1.4.1 — Guest mobile UI refinement (stay page only) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.stay-ui {
  background: #efefef;
  color: #111;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

.stay-ui .stay-app {
  max-width: 720px;
  background: #fff;
}

.stay-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  padding: max(20px, env(safe-area-inset-top)) 30px 20px;
  background: #050505;
}

.stay-logo {
  display: block;
  width: 132px;
  height: auto;
}

.stay-top-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
}

.stay-language-selector {
  position: relative;
}

.stay-language-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
}

.stay-language-menu {
  right: 0;
  bottom: auto;
  top: calc(100% + 8px);
  width: 140px;
  transform: none;
}

.stay-menu-mark {
  font-size: 35px;
  font-weight: 300;
  line-height: 1;
}

.stay-intro {
  padding: 48px 24px 42px;
  text-align: center;
}

.stay-intro h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(32px, 7vw, 48px);
  font-weight: 400;
  letter-spacing: .08em;
}

.stay-intro p {
  margin: 24px 0 0;
  font-size: clamp(15px, 3.6vw, 20px);
  line-height: 1.75;
}

.stay-guide-section {
  padding: 0 30px 28px;
  border-bottom: 0;
}

.stay-section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 23px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .06em;
}

.stay-section-line {
  height: 2px;
  flex: 1;
  background: #111;
}

.stay-guide-section > h2 {
  margin: 0 0 24px;
  font-size: clamp(22px, 5vw, 31px);
  line-height: 1.4;
}

.stay-quick-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stay-quick-question {
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr) 24px;
  align-items: center;
  width: 100%;
  min-height: 70px;
  padding: 10px 18px;
  border: 0;
  border-radius: 7px;
  background: #050505;
  color: #fff;
  text-align: left;
  box-shadow: none;
}

.stay-quick-question:hover {
  border-color: transparent;
  background: #1b1b1b;
}

.stay-quick-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 27px;
  line-height: 1;
}

.stay-quick-text {
  min-width: 0;
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.stay-quick-number {
  font-variant-numeric: tabular-nums;
}

.stay-quick-arrow {
  justify-self: end;
  font-family: Arial, sans-serif;
  font-size: 39px;
  font-weight: 200;
  line-height: 1;
}

.stay-conversation-section {
  padding: 0 30px max(28px, env(safe-area-inset-bottom));
}

.stay-chat-heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px 14px;
  padding-top: 20px;
  border-top: 1px solid #dedede;
}

.stay-chat-heading h2,
.stay-chat-heading p {
  margin: 0;
}

.stay-chat-heading h2 {
  font-size: clamp(20px, 4.8vw, 27px);
}

.stay-chat-heading p {
  color: #333;
  font-size: clamp(12px, 3vw, 15px);
}

.stay-chat-area {
  min-height: 0;
  max-height: 400px;
  padding-top: 16px;
}

.stay-chat-area:empty {
  display: none;
}

.stay-input-area {
  position: static;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 7px 7px 7px 21px;
  border: 1px solid #d4d4d4;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0,0,0,.04);
  backdrop-filter: none;
}

.stay-input-area input {
  padding: 13px 0;
  border: 0;
  background: transparent;
  font-size: clamp(15px, 3.8vw, 19px);
}

.stay-input-area input:focus {
  border-color: transparent;
}

.stay-input-area button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  background: #050505;
  font-size: 23px;
}

.stay-emergency-note {
  margin: 17px 0 0;
  color: #777;
  font-size: clamp(11px, 2.9vw, 14px);
  text-align: center;
}

@media (max-width: 520px) {
  .stay-topbar {
    min-height: 92px;
    padding: max(15px, env(safe-area-inset-top)) 20px 15px;
  }

  .stay-logo {
    width: 112px;
  }

  .stay-top-actions {
    gap: 15px;
  }

  .stay-language-button {
    font-size: 13px;
  }

  .stay-menu-mark {
    font-size: 29px;
  }

  .stay-intro {
    padding: 34px 18px 35px;
  }

  .stay-intro p {
    margin-top: 18px;
  }

  .stay-guide-section,
  .stay-conversation-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .stay-section-label {
    gap: 13px;
    margin-bottom: 16px;
    font-size: 15px;
  }

  .stay-guide-section > h2 {
    margin-bottom: 18px;
  }

  .stay-quick-question {
    grid-template-columns: 44px minmax(0, 1fr) 18px;
    min-height: 58px;
    padding: 8px 13px;
    border-radius: 5px;
  }

  .stay-quick-symbol {
    font-size: 22px;
  }

  .stay-quick-arrow {
    font-size: 31px;
  }

  .stay-chat-heading {
    gap: 3px 8px;
    padding-top: 18px;
  }

  .stay-input-area {
    margin-top: 13px;
    padding-left: 17px;
  }

  .stay-input-area button {
    min-width: 48px;
    width: 48px;
    height: 48px;
  }
}

/* Sprint 1.4.2 — Guest Experience Polish */
body.stay-ui,
.stay-ui button,
.stay-ui input {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Meiryo", sans-serif;
}

.stay-intro h1,
.stay-section-label,
.stay-guide-section > h2,
.stay-quick-text,
.stay-chat-heading h2,
.stay-chat-heading p,
.stay-emergency-note {
  font-family: inherit;
}

.stay-intro h1 {
  font-weight: 600;
  letter-spacing: .035em;
}

.stay-section-label {
  font-weight: 700;
  letter-spacing: .045em;
}

.stay-guide-section > h2,
.stay-chat-heading h2 {
  font-weight: 700;
}

.stay-quick-symbol {
  width: 38px;
  height: 38px;
  font-family: inherit;
}

.stay-quick-symbol img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.stay-quick-text {
  font-weight: 600;
  letter-spacing: 0;
}

.stay-quick-arrow {
  font-family: Arial, sans-serif;
}

@media (max-width: 520px) {
  .stay-quick-symbol {
    width: 31px;
    height: 31px;
  }

  .stay-quick-symbol img {
    width: 30px;
    height: 30px;
  }
}

/* AUFU AI CONCIERGE DESIGN START */

/*
 * AUFU Concierge
 * AI Concierge visual identity
 */

:root {
  --aufu-gold: #b68a50;
  --aufu-stamp: #df221b;
  --aufu-black: #050505;
}


/* ---------------------------------------------------------
   アプリ全体
--------------------------------------------------------- */

body.stay-ui {
  padding: 10px 0 0;
  background: #f2f2f2;
}

.stay-ui .stay-app {
  overflow: hidden;
  max-width: 720px;
  border-radius: 20px 20px 0 0;
  background: #fff;
}


/* ---------------------------------------------------------
   ヘッダー
--------------------------------------------------------- */

.stay-topbar {
  min-height: 108px;
  padding: max(20px, env(safe-area-inset-top)) 28px 20px;
  background: var(--aufu-black);
}

.stay-logo {
  width: 144px;
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
}

.stay-language-button {
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}


/* ---------------------------------------------------------
   AI Concierge タイトル
--------------------------------------------------------- */

.stay-intro {
  padding: 46px 28px 39px;
  text-align: center;
}

.ai-concierge-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ai-concierge-title-row {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
}

.stay-intro .ai-concierge-title h1 {
  margin: 0;
  color: #050505;
  font-family:
    "Bodoni 72",
    "Bodoni MT",
    "Didot",
    "Times New Roman",
    "Yu Mincho",
    serif;
  font-size: clamp(48px, 9vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}

.jsh-stamp {
  position: absolute;
  top: -12px;
  right: -54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border: 2px solid var(--aufu-stamp);
  border-radius: 6px;
  color: var(--aufu-stamp);
  background: #fff;
  font-family:
    Arial,
    "Helvetica Neue",
    sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  transform: rotate(1.5deg);
}

.ai-concierge-accent {
  display: block;
  width: 184px;
  height: 2px;
  margin-top: 23px;
  background: var(--aufu-gold);
}


/* ---------------------------------------------------------
   施設名
--------------------------------------------------------- */

.stay-intro .facility-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 246px;
  margin: 20px 0 0;
  padding: 10px 24px;
  border: 1px solid rgba(182, 138, 80, .65);
  border-radius: 999px;
  color: var(--aufu-gold);
  background: #fff;
  font-family:
    Arial,
    "Yu Gothic",
    sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .055em;
}

.stay-intro > p:not(.facility-badge) {
  max-width: 590px;
  margin: 24px auto 0;
  color: #24211e;
  font-family:
    "Times New Roman",
    "Yu Mincho",
    serif;
  font-size: clamp(15px, 2.8vw, 19px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
}


/* ---------------------------------------------------------
   QUICK GUIDE
--------------------------------------------------------- */

.stay-guide-section {
  padding: 0 38px 30px;
}

.stay-section-label {
  gap: 23px;
  margin-bottom: 21px;
  color: #0b0b0b;
  font-family:
    Arial,
    "Helvetica Neue",
    sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .055em;
}

.stay-section-line {
  height: 1.5px;
  background: #191919;
}

.stay-guide-section > h2 {
  margin: 0 0 20px;
  color: #0b0b0b;
  font-size: clamp(22px, 4.7vw, 30px);
  font-weight: 700;
  letter-spacing: .02em;
}


/* ---------------------------------------------------------
   クイックガイドボタン
--------------------------------------------------------- */

.stay-quick-menu {
  gap: 5px;
}

.stay-quick-question {
  grid-template-columns: 57px minmax(0, 1fr) 24px;
  min-height: 69px;
  padding: 10px 18px;
  border-radius: 7px;
  background: var(--aufu-black);
}

.stay-quick-question:hover {
  background: #181818;
}

.stay-quick-question:focus-visible {
  outline: 3px solid rgba(182, 138, 80, .45);
  outline-offset: 2px;
}

.stay-quick-symbol {
  width: 40px;
  height: 40px;
  color: #fff;
}

.stay-quick-symbol img,
.checkin-icon {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.stay-quick-text {
  color: #fff;
  font-size: clamp(16px, 3.6vw, 21px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.stay-quick-number {
  display: inline-block;
  margin-right: .12em;
  font-variant-numeric: tabular-nums;
}

.stay-quick-arrow {
  color: #fff;
  font-size: 37px;
  font-weight: 200;
}


/* ---------------------------------------------------------
   チャット
--------------------------------------------------------- */

.stay-conversation-section {
  padding: 6px 38px max(30px, env(safe-area-inset-bottom));
}

.stay-chat-heading {
  padding-top: 24px;
}

.stay-chat-heading h2 {
  font-size: clamp(21px, 4.5vw, 27px);
}

.stay-input-area {
  border-color: #d5d0c9;
}

.stay-input-area:focus-within {
  border-color: var(--aufu-gold);
  box-shadow: 0 0 0 3px rgba(182, 138, 80, .12);
}


/* ---------------------------------------------------------
   スマートフォン
--------------------------------------------------------- */

@media (max-width: 520px) {
  body.stay-ui {
    padding-top: 0;
  }

  .stay-ui .stay-app {
    border-radius: 0;
  }

  .stay-topbar {
    min-height: 94px;
    padding:
      max(17px, env(safe-area-inset-top))
      20px
      17px;
  }

  .stay-logo {
    width: 126px;
    max-height: 57px;
  }

  .stay-language-button {
    font-size: 14px;
  }

  .stay-intro {
    padding: 38px 18px 32px;
  }

  .stay-intro .ai-concierge-title h1 {
    font-size: clamp(42px, 12vw, 57px);
  }

  .jsh-stamp {
    top: -12px;
    right: -38px;
    width: 36px;
    height: 36px;
    border-width: 2px;
    border-radius: 5px;
    font-size: 14px;
  }

  .ai-concierge-accent {
    width: 154px;
    margin-top: 19px;
  }

  .stay-intro .facility-badge {
    min-width: 0;
    margin-top: 18px;
    padding: 9px 20px;
    font-size: 15px;
  }

  .stay-intro > p:not(.facility-badge) {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
  }

  .stay-guide-section,
  .stay-conversation-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .stay-section-label {
    gap: 15px;
    margin-bottom: 17px;
    font-size: 15px;
  }

  .stay-guide-section > h2 {
    margin-bottom: 17px;
    font-size: 23px;
  }

  .stay-quick-question {
    grid-template-columns: 45px minmax(0, 1fr) 18px;
    min-height: 59px;
    padding: 8px 13px;
    border-radius: 6px;
  }

  .stay-quick-symbol {
    width: 33px;
    height: 33px;
  }

  .stay-quick-symbol img,
  .checkin-icon {
    width: 32px;
    height: 32px;
  }

  .stay-quick-text {
    font-size: clamp(15px, 4.15vw, 18px);
  }

  .stay-quick-arrow {
    font-size: 31px;
  }
}


/* ---------------------------------------------------------
   画面幅が非常に狭い端末
--------------------------------------------------------- */

@media (max-width: 370px) {
  .stay-intro .ai-concierge-title h1 {
    font-size: 39px;
  }

  .jsh-stamp {
    right: -31px;
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .stay-guide-section,
  .stay-conversation-section {
    padding-right: 15px;
    padding-left: 15px;
  }

  .stay-quick-question {
    grid-template-columns: 40px minmax(0, 1fr) 16px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .stay-quick-text {
    font-size: 14px;
  }
}

/* AUFU AI CONCIERGE DESIGN END */
