/* ===================================================================
   /industry/hotel/ 専用CSS
   スコープ：.hotel-page / クラス命名：hotel- プレフィックス
=================================================================== */
.hotel-page {
  --hotel-blue: #00529f;
  --hotel-blue-dark: #003f7a;
  --hotel-blue-soft: #edf5fb;
  --hotel-blue-pale: #9fc9ea;
  --hotel-forest: #27352f;
  --hotel-forest-light: #34483f;
  --hotel-ink: #20282d;
  --hotel-text: #4f5f6f;
  --hotel-muted: #6e7984;
  --hotel-stone: #f3efe8;
  --hotel-stone-deep: #e6ded2;
  --hotel-sage: #e9efeb;
  --hotel-line: #d8dedb;
  --hotel-white: #ffffff;
  --hotel-layout-wide: 1600px;
  --hotel-layout-content: 1200px;
  --hotel-layout-reading: 860px;
  overflow-x: clip;
  background: var(--hotel-white);
  color: var(--hotel-ink);
}

.hotel-page .hotel-main {
  overflow-x: clip;
  background: var(--hotel-white);
  color: var(--hotel-ink);
  font-family: var(--font-body--family);
}

.hotel-page .hotel-main *,
.hotel-page .hotel-main *::before,
.hotel-page .hotel-main *::after {
  box-sizing: border-box;
}

.hotel-page .hotel-main :is(h1, h2, h3, h4, p, li, dt, dd, summary, figcaption) {
  white-space: normal;
  word-break: normal;
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: wrap;
}

.hotel-page .hotel-main img {
  display: block;
  width: 100%;
  height: auto;
}

.hotel-page .hotel-main a:focus-visible,
.hotel-page .hotel-main summary:focus-visible {
  outline: 3px solid var(--hotel-blue-pale);
  outline-offset: 4px;
}

.hotel-page .hotel-container {
  width: min(var(--hotel-layout-content), calc(100% - 48px));
  margin-inline: auto;
}

.hotel-page .hotel-section {
  padding-block: clamp(64px, 6vw, 96px);
}

.hotel-page .hotel-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 16px;
  padding-left: 44px;
  color: var(--hotel-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hotel-page .hotel-eyebrow::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 1px;
  transform: translateY(-50%);
  background: currentColor;
  content: "";
}

.hotel-page .hotel-heading {
  margin: 0 0 24px;
  color: var(--hotel-ink);
  font-family: var(--font-heading--family);
  font-size: clamp(30px, 2.7vw, 44px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -.02em;
}

.hotel-page .hotel-main h3 {
  margin: 0;
  color: var(--hotel-ink);
  font-family: var(--font-heading--family);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}

.hotel-page .hotel-main h4 {
  margin: 0;
  color: var(--hotel-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.hotel-page .hotel-body {
  color: var(--hotel-text);
  font-size: 17px;
  line-height: 1.85;
}

.hotel-page .hotel-body p {
  margin: 0 0 14px;
}

.hotel-page .hotel-body p:last-child {
  margin-bottom: 0;
}

.hotel-page .hotel-section-header {
  width: 100%;
  max-width: none;
  margin-bottom: 48px;
}

.hotel-page .hotel-section-header--center {
  max-width: var(--hotel-layout-reading);
  margin-inline: auto;
  text-align: center;
}

.hotel-page .hotel-section-header--split {
  display: grid;
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.hotel-page .hotel-section-header--split > * {
  min-width: 0;
}

.hotel-page .hotel-section-header--split .hotel-section-header__head .hotel-heading {
  margin-bottom: 0;
}

.hotel-page .hotel-product-card__num {
  display: block;
  margin-bottom: 14px;
  color: var(--hotel-blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .15em;
}

.hotel-page .hotel-button {
  display: inline-flex;
  min-width: 0;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s, border-color .2s, color .2s;
}

.hotel-page .hotel-button > span[aria-hidden="true"],
.hotel-page .hotel-product-card__links a > span[aria-hidden="true"],
.hotel-page .hotel-link-list a > span[aria-hidden="true"] {
  flex: 0 0 auto;
}

.hotel-page .hotel-button--primary {
  border-color: #00529f;
  background: #00529f;
  color: #fff;
}

.hotel-page .hotel-button--primary:hover {
  border-color: #003f7a;
  background: #003f7a;
  color: #fff;
}

.hotel-page .hotel-button--secondary {
  border-color: #1c2539;
  background: transparent;
  color: #1c2539;
}

.hotel-page .hotel-button--secondary:hover {
  border-color: #1c2539;
  background: #1c2539;
  color: #fff;
}

.hotel-page .hotel-button--light {
  border-color: #fff;
  background: #fff;
  color: #1c2539;
}

.hotel-page .hotel-button--light:hover {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.hotel-page .hotel-button--outline-light {
  border-color: rgba(255, 255, 255, .75);
  background: transparent;
  color: #fff;
}

.hotel-page .hotel-button--outline-light:hover {
  border-color: #fff;
  background: #fff;
  color: #1c2539;
}

.hotel-page .hotel-figure {
  min-width: 0;
  margin: 0;
}

.hotel-page .hotel-figure img {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  object-fit: cover;
}

.hotel-page .hotel-figure figcaption {
  margin-top: 10px;
  color: var(--hotel-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Hero */
.hotel-page .hotel-hero {
  min-height: 720px;
  background: var(--hotel-stone);
}

.hotel-page .hotel-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  width: 100%;
  max-width: var(--hotel-layout-wide);
  min-height: 720px;
  margin-inline: auto;
}

.hotel-page .hotel-hero__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(64px, 7vw, 104px);
  padding-inline: clamp(28px, 4.5vw, 72px);
}

.hotel-page .hotel-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  color: #6e7984;
  font-size: 13px;
  line-height: 1.5;
  list-style: none;
}

.hotel-page .hotel-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: normal;
  word-break: normal;
  line-break: strict;
  overflow-wrap: break-word;
}

.hotel-page .hotel-breadcrumb li:not(:last-child)::after {
  color: #6e7984;
  content: "/";
}

.hotel-page .hotel-breadcrumb a {
  color: #6e7984;
  text-decoration: none;
}

.hotel-page .hotel-breadcrumb a:hover,
.hotel-page .hotel-breadcrumb a:focus-visible {
  color: #00529f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hotel-page .hotel-breadcrumb li[aria-current="page"] {
  color: #1c2539;
}

.hotel-page .hotel-hero__title {
  width: 100%;
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--hotel-forest);
  font-family: var(--font-heading--family);
  font-size: clamp(42px, 3.25vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.hotel-page .hotel-hero__lead {
  width: 100%;
  max-width: 650px;
}

.hotel-page .hotel-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hotel-page .hotel-hero__media {
  min-width: 0;
  min-height: 720px;
}

.hotel-page .hotel-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: 57% center;
}

/* Section 01 */
.hotel-page .hotel-opportunity {
  background: var(--hotel-white);
}

.hotel-page .hotel-opportunity__inner {
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

.hotel-page .hotel-opportunity__intro,
.hotel-page .hotel-opportunity__cards {
  min-width: 0;
}

.hotel-page .hotel-opportunity__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hotel-page .hotel-opportunity-card {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--hotel-line);
  border-radius: 16px;
  background: var(--hotel-white);
}

.hotel-page .hotel-opportunity-card::before {
  display: block;
  width: 28px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--hotel-blue);
  content: "";
}

.hotel-page .hotel-opportunity-card p {
  margin: 12px 0 0;
  color: var(--hotel-text);
  font-size: 16px;
  line-height: 1.8;
}

/* Section 02 */
.hotel-page .hotel-journey {
  background: var(--hotel-sage);
}

.hotel-page .hotel-journey__intro {
  display: grid;
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: start;
}

.hotel-page .hotel-journey__intro > * {
  min-width: 0;
}

.hotel-page .hotel-journey__media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.hotel-page .hotel-journey__media-grid .hotel-figure:first-child img {
  object-position: 50% center;
}

.hotel-page .hotel-journey__media-grid .hotel-figure:last-child img {
  object-position: 54% center;
}

.hotel-page .hotel-journey__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 28px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.hotel-page .hotel-journey-step {
  position: relative;
  min-width: 0;
  padding: 22px 0 4px;
  border-top: 1px solid var(--hotel-line);
}

.hotel-page .hotel-journey-step::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hotel-blue);
  content: "";
}

.hotel-page .hotel-journey-step p {
  margin: 8px 0 0;
  color: var(--hotel-text);
  font-size: 15px;
  line-height: 1.75;
}

/* Section 03 */
.hotel-page .hotel-options {
  background: var(--hotel-white);
}

.hotel-page .hotel-options__header {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 48px;
  text-align: left;
}

.hotel-page .hotel-compare {
  overflow: hidden;
  border: 1px solid var(--hotel-line);
  border-radius: 18px;
}

.hotel-page .hotel-compare__row {
  display: grid;
  grid-template-columns: minmax(130px, 170px) minmax(0, 1fr) minmax(0, 1fr);
}

.hotel-page .hotel-compare__row + .hotel-compare__row {
  border-top: 1px solid var(--hotel-line);
}

.hotel-page .hotel-compare__row--head {
  background: #f7f5f1;
}

.hotel-page .hotel-compare__row--head .hotel-compare__cell {
  padding: 20px 24px;
  color: var(--hotel-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.hotel-page .hotel-compare__row--head .hotel-compare__cell:first-child {
  border-left: 1px solid var(--hotel-line);
}

.hotel-page .hotel-compare__row--head .hotel-compare__axis {
  border-right: 1px solid var(--hotel-line);
  background: transparent;
}

.hotel-page .hotel-compare__axis {
  padding: 22px 20px;
  border-right: 1px solid var(--hotel-line);
  background: var(--hotel-stone);
  color: var(--hotel-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.hotel-page .hotel-compare__cell {
  padding: 22px 26px;
  border-left: 1px solid var(--hotel-line);
  background: var(--hotel-white);
  color: var(--hotel-text);
  font-size: 16px;
  line-height: 1.8;
}

.hotel-page .hotel-compare__cell p {
  margin: 0;
}

.hotel-page .hotel-compare__label {
  display: none;
}

.hotel-page .hotel-options__summary {
  margin: 28px 0 0;
  padding: 26px 30px;
  border: 1px solid var(--hotel-stone-deep);
  border-radius: 16px;
  background: var(--hotel-stone);
  color: var(--hotel-text);
  font-size: 16px;
  line-height: 1.85;
}

/* Section 04 */
.hotel-page .hotel-purpose {
  background: var(--hotel-forest);
  color: var(--hotel-white);
}

.hotel-page .hotel-purpose .hotel-eyebrow {
  color: var(--hotel-blue-pale);
}

.hotel-page .hotel-purpose .hotel-heading,
.hotel-page .hotel-purpose h3 {
  color: var(--hotel-white);
}

.hotel-page .hotel-purpose .hotel-body,
.hotel-page .hotel-purpose__summary {
  color: #dce4e1;
}

.hotel-page .hotel-purpose__top {
  display: grid;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  gap: clamp(44px, 6vw, 80px);
  align-items: center;
}

.hotel-page .hotel-purpose__intro,
.hotel-page .hotel-purpose__figure {
  min-width: 0;
}

.hotel-page .hotel-purpose__figure figcaption {
  color: rgba(255, 255, 255, .68);
}

.hotel-page .hotel-purpose__figure img {
  object-position: center;
}

.hotel-page .hotel-purpose__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.hotel-page .hotel-purpose-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-top: 2px solid var(--hotel-blue-pale);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
}

.hotel-page .hotel-purpose-card > p {
  margin: 16px 0 24px;
  color: #dce4e1;
  font-size: 15px;
  line-height: 1.8;
}

.hotel-page .hotel-purpose-card dl,
.hotel-page .hotel-purpose-card dd {
  margin: 0;
}

.hotel-page .hotel-purpose-card dl > div {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.hotel-page .hotel-purpose-card dt {
  margin-bottom: 4px;
  color: var(--hotel-blue-pale);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.hotel-page .hotel-purpose-card dd {
  color: #dce4e1;
  font-size: 14px;
  line-height: 1.7;
}

.hotel-page .hotel-purpose__summary {
  margin: 32px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  font-size: 15px;
  line-height: 1.85;
}

/* Section 05 */
.hotel-page .hotel-products {
  background: var(--hotel-stone);
}

.hotel-page .hotel-products__header {
  width: 100%;
  max-width: none;
  margin-bottom: 48px;
}

.hotel-page .hotel-products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.hotel-page .hotel-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--hotel-stone-deep);
  border-radius: 18px;
  background: var(--hotel-white);
}

.hotel-page .hotel-product-card h4 {
  margin-top: 16px;
  color: var(--hotel-forest-light);
}

.hotel-page .hotel-product-card > p {
  margin: 12px 0 22px;
  color: var(--hotel-text);
  font-size: 16px;
  line-height: 1.8;
}

.hotel-page .hotel-product-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
}

.hotel-page .hotel-product-card__links a {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid var(--hotel-blue-pale);
  border-radius: 999px;
  background: var(--hotel-blue-soft);
  color: var(--hotel-blue-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .2s, border-color .2s, color .2s;
}

.hotel-page .hotel-product-card__links a:hover {
  border-color: var(--hotel-blue);
  background: var(--hotel-blue);
  color: var(--hotel-white);
}

.hotel-page .hotel-products__note {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 3px solid var(--hotel-blue);
  background: rgba(255, 255, 255, .62);
  color: var(--hotel-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* Section 06 */
.hotel-page .hotel-start {
  background: var(--hotel-white);
}

.hotel-page .hotel-start__inner {
  display: grid;
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
  gap: clamp(44px, 6vw, 80px);
  align-items: start;
}

.hotel-page .hotel-start__intro,
.hotel-page .hotel-start__checklist {
  min-width: 0;
}

.hotel-page .hotel-start__checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hotel-page .hotel-start__checklist li {
  position: relative;
  min-width: 0;
  padding: 44px 18px 18px;
  border: 1px solid #d9e8f3;
  border-radius: 14px;
  background: var(--hotel-blue-soft);
  color: var(--hotel-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.hotel-page .hotel-start__checklist li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--hotel-blue);
  border-radius: 50%;
  content: "";
}

.hotel-page .hotel-start__callout {
  margin: 34px 0 0;
  padding: 24px 28px;
  border: 1px solid var(--hotel-blue-pale);
  border-radius: 16px;
  background: var(--hotel-blue-soft);
  color: var(--hotel-blue-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

/* Section 07 */
.hotel-page .hotel-oem-odm {
  background: var(--hotel-sage);
}

.hotel-page .hotel-oem-odm__inner {
  display: grid;
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
}

.hotel-page .hotel-oem-odm__figure,
.hotel-page .hotel-oem-odm__content {
  min-width: 0;
}

.hotel-page .hotel-oem-odm__figure img {
  object-position: center;
}

@media (min-width: 1100px) {
  .hotel-page .hotel-oem-odm__inner {
    align-items: start;
  }

  .hotel-page .hotel-oem-odm__figure {
    position: sticky;
    top: 120px;
    align-self: start;
  }
}

.hotel-page .hotel-link-list {
  display: grid;
  margin-top: 30px;
  border-bottom: 1px solid var(--hotel-line);
}

.hotel-page .hotel-link-list a {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px;
  border-top: 1px solid var(--hotel-line);
  color: var(--hotel-blue-dark);
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
}

.hotel-page .hotel-link-list a:hover {
  color: var(--hotel-blue);
}

/* Section 08 */
.hotel-page .hotel-support {
  background: var(--hotel-white);
}

.hotel-page .hotel-support__header {
  width: 100%;
  max-width: none;
  margin-bottom: 48px;
}

.hotel-page .hotel-support__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hotel-page .hotel-support-step {
  position: relative;
  min-width: 0;
  padding-top: 24px;
  border-top: 2px solid var(--hotel-blue);
}

.hotel-page .hotel-support-step > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(0, 82, 159, .18);
  font-family: var(--font-heading--family);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 700;
  line-height: 1;
}

.hotel-page .hotel-support-step p {
  margin: 14px 0 0;
  color: var(--hotel-text);
  font-size: 15px;
  line-height: 1.8;
}

.hotel-page .hotel-support__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--hotel-line);
}

.hotel-page .hotel-support__footer p {
  max-width: 760px;
  margin: 0;
  color: var(--hotel-muted);
  font-size: 14px;
  line-height: 1.8;
}

.hotel-page .hotel-support__footer .hotel-button {
  flex: 0 0 auto;
}

/* Section 09 */
.hotel-page .hotel-cases {
  background: var(--hotel-stone);
}

.hotel-page .hotel-cases__header {
  width: 100%;
  max-width: none;
  margin-bottom: 48px;
}

.hotel-page .hotel-cases__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.hotel-page .hotel-case-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--hotel-stone-deep);
  border-radius: 18px;
  background: var(--hotel-white);
}

.hotel-page .hotel-case-card::before {
  display: block;
  width: 28px;
  height: 2px;
  margin-bottom: 16px;
  background: var(--hotel-blue);
  content: "";
}

.hotel-page .hotel-case-card dl,
.hotel-page .hotel-case-card dd {
  margin: 0;
}

.hotel-page .hotel-case-card dl {
  margin-top: 22px;
}

.hotel-page .hotel-case-card dl > div {
  padding: 15px 0;
  border-top: 1px solid var(--hotel-line);
}

.hotel-page .hotel-case-card dt {
  margin-bottom: 5px;
  color: var(--hotel-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.hotel-page .hotel-case-card dd {
  color: var(--hotel-text);
  font-size: 15px;
  line-height: 1.75;
}

/* Section 10 */
.hotel-page .hotel-faq {
  background: var(--hotel-sage);
}

.hotel-page .hotel-faq__list {
  margin-top: 36px;
}

/* Final CTA */
.hotel-page .hotel-final-cta {
  background: var(--hotel-forest);
  color: var(--hotel-white);
}

.hotel-page .hotel-final-cta .hotel-eyebrow {
  color: var(--hotel-blue-pale);
}

.hotel-page .hotel-final-cta .hotel-heading {
  color: var(--hotel-white);
}

.hotel-page .hotel-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
}

.hotel-page .hotel-final-cta__content,
.hotel-page .hotel-final-cta__actions {
  min-width: 0;
}

.hotel-page .hotel-final-cta__body p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.8;
}

.hotel-page .hotel-final-cta__body p:nth-child(-n+3) {
  color: var(--hotel-white);
  font-weight: 700;
}

.hotel-page .hotel-final-cta__body p:last-child {
  margin-bottom: 0;
}

.hotel-page .hotel-final-cta__actions {
  display: flex;
  width: 100%;
  max-width: 400px;
  flex-direction: column;
  gap: 16px;
  justify-self: end;
  padding-left: 38px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.hotel-page .hotel-final-cta__actions .hotel-button {
  width: 100%;
}

/* Responsive */
@media (max-width: 1199px) {
  .hotel-page .hotel-purpose__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-page .hotel-support__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }
}

@media (max-width: 1099px) {
  .hotel-page .hotel-journey__steps,
  .hotel-page .hotel-start__checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-page .hotel-hero,
  .hotel-page .hotel-hero__inner {
    min-height: 0;
  }

  .hotel-page .hotel-hero__inner {
    grid-template-columns: 1fr;
  }

  .hotel-page .hotel-hero__content {
    width: min(var(--hotel-layout-content), calc(100% - 48px));
    margin-inline: auto;
    padding: 96px 0 48px;
  }

  .hotel-page .hotel-hero__media {
    min-height: 0;
  }

  .hotel-page .hotel-hero__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-position: 57% center;
  }

  .hotel-page .hotel-opportunity__inner,
  .hotel-page .hotel-journey__intro,
  .hotel-page .hotel-purpose__top,
  .hotel-page .hotel-start__inner,
  .hotel-page .hotel-oem-odm__inner,
  .hotel-page .hotel-final-cta__inner {
    grid-template-columns: 1fr;
  }

  .hotel-page .hotel-opportunity__inner,
  .hotel-page .hotel-journey__intro,
  .hotel-page .hotel-purpose__top,
  .hotel-page .hotel-start__inner,
  .hotel-page .hotel-oem-odm__inner {
    gap: 40px;
  }

  .hotel-page .hotel-final-cta__inner {
    gap: 34px;
  }

  .hotel-page .hotel-oem-odm__content {
    display: contents;
  }

  .hotel-page .hotel-oem-odm__content > .hotel-eyebrow {
    grid-row: 1;
    margin-bottom: -26px;
  }

  .hotel-page .hotel-oem-odm__content > .hotel-heading {
    grid-row: 2;
    margin-bottom: -16px;
  }

  .hotel-page .hotel-oem-odm__content > .hotel-body {
    grid-row: 3;
    margin-bottom: -12px;
  }

  .hotel-page .hotel-oem-odm__figure {
    position: static;
    top: auto;
    grid-row: 4;
  }

  .hotel-page .hotel-oem-odm__content > .hotel-link-list {
    grid-row: 5;
    margin-top: -6px;
  }

  .hotel-page .hotel-final-cta__actions {
    max-width: 440px;
    justify-self: start;
    padding-top: 30px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-left: 0;
  }
}

@media (max-width: 767px) {
  .hotel-page .hotel-container {
    width: min(var(--hotel-layout-content), calc(100% - 32px));
  }

  .hotel-page .hotel-section {
    padding-block: 56px;
  }

  .hotel-page .hotel-eyebrow {
    margin-bottom: 12px;
    padding-left: 30px;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: .11em;
  }

  .hotel-page .hotel-eyebrow::before {
    width: 22px;
  }

  .hotel-page .hotel-heading {
    margin-bottom: 18px;
    font-size: clamp(25px, 7vw, 28px);
    line-height: 1.38;
    letter-spacing: -.015em;
  }

  .hotel-page .hotel-body {
    font-size: 16px;
    line-height: 1.78;
  }

  .hotel-page .hotel-body p {
    margin-bottom: 12px;
  }

  .hotel-page .hotel-section-header {
    margin-bottom: 34px;
  }

  .hotel-page .hotel-section-header--center {
    text-align: left;
  }

  .hotel-page .hotel-button {
    width: 100%;
    min-height: 52px;
    gap: 8px;
    padding: 13px 18px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hotel-page .hotel-figure img {
    border-radius: 18px;
  }

  .hotel-page .hotel-hero__content {
    width: min(var(--hotel-layout-content), calc(100% - 32px));
    padding: 90px 0 42px;
  }

  .hotel-page .hotel-breadcrumb {
    gap: 4px 6px;
    margin-bottom: 20px;
    font-size: 11px;
    line-height: 1.5;
  }

  .hotel-page .hotel-hero__title {
    margin-bottom: 20px;
    font-size: clamp(27px, 8vw, 31px);
    line-height: 1.3;
    letter-spacing: -.02em;
  }

  .hotel-page .hotel-hero__actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
  }

  .hotel-page .hotel-opportunity__cards,
  .hotel-page .hotel-journey__media-grid,
  .hotel-page .hotel-purpose__cards,
  .hotel-page .hotel-products__grid,
  .hotel-page .hotel-start__checklist,
  .hotel-page .hotel-support__steps,
  .hotel-page .hotel-cases__grid {
    grid-template-columns: 1fr;
  }

  .hotel-page .hotel-opportunity__cards {
    gap: 14px;
  }

  .hotel-page .hotel-opportunity-card,
  .hotel-page .hotel-purpose-card,
  .hotel-page .hotel-product-card,
  .hotel-page .hotel-case-card {
    padding: 24px 20px;
  }

  .hotel-page .hotel-journey__media-grid {
    gap: 24px;
    margin-top: 38px;
  }

  .hotel-page .hotel-journey__steps {
    display: block;
    position: relative;
    margin-top: 36px;
    padding-left: 24px;
  }

  .hotel-page .hotel-journey__steps::before {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 3px;
    width: 1px;
    background: var(--hotel-line);
    content: "";
  }

  .hotel-page .hotel-journey-step {
    padding: 0 0 28px;
    border-top: 0;
  }

  .hotel-page .hotel-journey-step:last-child {
    padding-bottom: 0;
  }

  .hotel-page .hotel-journey-step::before {
    top: 4px;
    left: -24px;
    width: 8px;
    height: 8px;
  }

  .hotel-page .hotel-options__summary,
  .hotel-page .hotel-start__callout {
    padding: 21px 20px;
  }

  .hotel-page .hotel-purpose__cards {
    margin-top: 40px;
  }

  .hotel-page .hotel-product-card__links a {
    max-width: 100%;
  }

  .hotel-page .hotel-start__checklist {
    gap: 10px;
  }

  .hotel-page .hotel-start__checklist li {
    padding: 18px 18px 18px 50px;
  }

  .hotel-page .hotel-start__checklist li::before {
    top: 22px;
  }

  .hotel-page .hotel-link-list a {
    padding-block: 15px;
  }

  .hotel-page .hotel-support__steps {
    gap: 30px;
  }

  .hotel-page .hotel-support-step {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 0 14px;
    padding-top: 20px;
  }

  .hotel-page .hotel-support-step > span {
    grid-row: 1 / 3;
    margin: 0;
    font-size: 38px;
  }

  .hotel-page .hotel-support-step p {
    margin-top: 10px;
  }

  .hotel-page .hotel-support__footer {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .hotel-page .hotel-case-card dl {
    margin-top: 18px;
  }

  .hotel-page .hotel-faq__list {
    margin-top: 28px;
  }

  .hotel-page .hotel-section-header--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hotel-page .hotel-compare__row {
    grid-template-columns: 1fr;
  }

  .hotel-page .hotel-compare__row--head {
    display: none;
  }

  .hotel-page .hotel-compare__axis {
    border-right: 0;
    border-bottom: 1px solid var(--hotel-line);
  }

  .hotel-page .hotel-compare__cell {
    border-left: 0;
  }

  .hotel-page .hotel-compare__cell + .hotel-compare__cell {
    border-top: 1px solid var(--hotel-line);
  }

  .hotel-page .hotel-compare__label {
    display: block;
    margin: 0 0 8px;
    color: var(--hotel-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
  }

  .hotel-page .hotel-final-cta__actions {
    max-width: none;
    gap: 12px;
  }
}

@media (max-width: 375px) {
  .hotel-page .hotel-section {
    padding-block: 48px;
  }

  .hotel-page .hotel-opportunity-card,
  .hotel-page .hotel-purpose-card,
  .hotel-page .hotel-product-card,
  .hotel-page .hotel-case-card {
    padding-inline: 18px;
  }

  .hotel-page .hotel-product-card__links {
    gap: 7px;
  }

  .hotel-page .hotel-product-card__links a {
    padding-inline: 11px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hotel-page .hotel-button,
  .hotel-page .hotel-product-card__links a {
    transition: none;
  }
}

/* 共通フッターが持つ上余白をホテルページだけ解除 */
.hotel-page footer .footer-main.mt-100 {
  margin-top: 0 !important;
}
