@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

main {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  background-color: #0d1117;
  color: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

.inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-inline: 1.25rem;
  }
}

.section {
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .section {
    padding-block: 3.75rem;
  }
}

.section__label {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #FD7A23;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}

.section__lead {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .section__lead {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), var(--ripple-color, transparent) var(--ripple-size), transparent var(--ripple-size));
  transition: --ripple-size 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover {
  --ripple-size: 250%;
}
.btn--primary {
  background-color: #FD7A23;
  color: #ffffff;
  --ripple-color: #072E45;
}
.btn--outline {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: none;
  --ripple-color: rgba(255, 255, 255, 0.18);
}
.btn--dark {
  background-color: #1c2333;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  --ripple-color: rgba(255, 255, 255, 0.12);
}
.btn svg {
  flex-shrink: 0;
  width: 1.625rem;
  height: 1.625rem;
  padding: 0.3125rem;
  background-color: #ffffff;
  border-radius: 50%;
}

[role=img]:not(img) {
  background: linear-gradient(135deg, #1c2333 0%, #232d42 100%);
  position: relative;
  overflow: hidden;
}
[role=img]:not(img)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
}

.num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #FD7A23;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  flex-shrink: 0;
}

/* ===============================
   Header
================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #1c2333;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  padding-left: 4rem;
  padding-right: 2.625rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    height: 3.5rem;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__logo img {
  height: 2.25rem;
  width: auto;
}
.header__logo-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #ffffff;
  white-space: nowrap;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav-item {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #ffffff;
  transition: opacity 0.2s;
}
.header__nav-item:hover {
  opacity: 0.75;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .header__actions {
    display: none;
  }
}
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 0.3125rem;
  cursor: pointer;
  padding: 0.25rem;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger span {
  display: block;
  width: 1.375rem;
  height: 1px;
  background-color: #ffffff;
  transition: transform 0.3s, opacity 0.3s;
}
.header.is-open .header__hamburger span:nth-child(1) {
  transform: translateY(0.375rem) rotate(45deg);
}
.header.is-open .header__hamburger span:nth-child(2) {
  opacity: 0;
}
.header.is-open .header__hamburger span:nth-child(3) {
  transform: translateY(-0.375rem) rotate(-45deg);
}

.sp-menu {
  display: none;
  position: fixed;
  top: 3.5rem;
  left: 0;
  width: 100%;
  background-color: #1c2333;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 1.25rem 2rem;
  z-index: 99;
}
.sp-menu.is-open {
  display: block;
}
.sp-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  margin-bottom: 1.5rem;
}
.sp-menu__nav-item {
  padding: 0.875rem 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.sp-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sp-menu .btn {
  width: 100%;
  justify-content: center;
}

/* ===============================
   MV（メインビジュアル）
================================ */
.mv {
  position: relative;
  height: 100vh;
  min-height: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv {
    height: auto;
    min-height: 100svh;
  }
}
.mv__bg {
  position: absolute;
  inset: 0;
  background-image: url("../../img/sales/lp/hotellab-city/mv-bg.webp");
  background-size: cover;
  background-position: center;
  background-color: #c8dce8;
  z-index: 0;
}
.mv__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
}
.mv__deco {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv__deco {
    max-width: 8.75rem;
    max-height: 8.75rem;
  }
}
.mv__deco svg {
  width: 17.5rem;
  height: 17.5rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .mv__deco svg {
    width: 8.75rem;
    height: 8.75rem;
  }
}
.mv__inner {
  position: relative;
  z-index: 2;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  padding-top: 11.25rem;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    padding-inline: 1.25rem;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
    height: auto;
    display: flex;
    flex-direction: column;
  }
}
.mv__title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    text-align: center;
  }
}
.mv__title-em {
  color: inherit;
}
@media screen and (max-width: 767px) {
  .mv__title-em {
    color: #FD7A23;
  }
}
.mv__sub {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .mv__sub {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
    text-align: center;
  }
}
.mv__stats {
  position: relative;
  z-index: 2;
  max-width: 75rem;
  margin-inline: auto;
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .mv__stats {
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: space-between;
    gap: 0.875rem 0.375rem;
    margin-top: 1.5rem;
    max-width: 17.5rem;
    width: 100%;
  }
}
.mv__stat {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 0.3125rem;
  padding: 0.625rem 1rem 0.75rem;
  min-width: 8.75rem;
}
@media screen and (max-width: 767px) {
  .mv__stat {
    padding: 0.8125rem 0.6875rem;
    min-width: 0;
    flex: none;
    height: 5.0625rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
  .mv__stat:first-child {
    width: 100%;
  }
  .mv__stat:nth-child(2) {
    width: 38%;
  }
  .mv__stat:nth-child(3) {
    width: 58%;
  }
}
.mv__stat-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #000000;
  margin-bottom: 0.375rem;
}
@media screen and (max-width: 767px) {
  .mv__stat-label {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #000000;
    margin-bottom: 0.125rem;
  }
}
.mv__stat-value {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #FF6B35;
}
@media screen and (max-width: 767px) {
  .mv__stat-value {
    font-size: 2.5rem;
    display: inline;
    line-height: 1.1;
  }
}
.mv__stat-unit {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .mv__stat-unit {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    color: #000000;
  }
}
.mv__actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding-bottom: 3rem;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .mv__actions {
    position: static;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
  }
}
.mv__btn {
  width: 17.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}
.mv__btn:hover {
  transform: translateY(-0.125rem);
}
@media screen and (max-width: 767px) {
  .mv__btn {
    width: 100%;
    max-width: 20rem;
  }
}
.mv__btn-label {
  position: relative;
  z-index: 2;
  bottom: 0;
  transform: translateY(50%);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fd7a23;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.125rem 0.5rem;
  background-color: white;
  border-radius: 1.5625rem;
  border: 1px solid #fd7a23;
}
@media screen and (max-width: 767px) {
  .mv__btn-label {
    font-size: 0.625rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.06em;
  }
}
.mv__btn-text {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .mv__btn-text {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.04em;
  }
}
.mv__btn-text svg {
  width: 2rem;
  height: 2rem;
  padding: auto;
  padding: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}
.mv__btn--primary .mv__btn-text {
  background-color: #FD7A23;
  color: #ffffff;
  --ripple-color: #072E45;
}
.mv__btn .mv__btn-text {
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), var(--ripple-color, transparent) var(--ripple-size), transparent var(--ripple-size));
  transition: --ripple-size 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.mv__btn .mv__btn-text:hover {
  --ripple-size: 250%;
}
.mv__btn .mv__btn-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 3rem;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  animation: mvGlint 3.5s ease-in-out infinite;
}
.mv__btn--outline .mv__btn-text {
  color: #FD7A23;
  border: 1px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  --ripple-color: rgba(253, 122, 35, 0.18);
}
@media screen and (max-width: 767px) {
  .mv__btn--outline .mv__btn-text {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #ffffff;
  }
}
.mv__btn--outline .mv__btn-label {
  color: #fd7a23;
}

@keyframes mvGlint {
  0%, 55% {
    left: -80%;
    opacity: 1;
  }
  80% {
    left: 140%;
    opacity: 1;
  }
  80.1%, 100% {
    left: 140%;
    opacity: 0;
  }
}
/* ===============================
   お取引事例（クライアントロゴ）
================================ */
.clients {
  max-width: 100vw;
  overflow-x: hidden;
  padding: 3.5rem 0rem 5rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .clients {
    padding-block: 2.5rem 0rem;
  }
}
.clients__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .clients__inner {
    padding-inline: 1.25rem;
  }
}
.clients__label {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .clients__label {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
  }
}
.clients__note {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: #888888;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .clients__note {
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
  }
}
.clients__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-block: 2rem;
  border-top: 1px solid #e5e7eb;
}
@media screen and (max-width: 767px) {
  .clients__logos {
    gap: 1.25rem;
    padding-block: 1.5rem;
  }
}
.clients__logo img {
  height: 2rem;
  width: auto;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.clients__logo:hover img {
  opacity: 0.8;
}
.clients__logo-text {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #aaaaaa;
  white-space: nowrap;
}

/* ===============================
   実績事例カード
================================ */
.results {
  background-color: #0d1117;
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .results {
    padding-block: 3.25rem;
  }
}
.results__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .results__inner {
    padding-inline: 1.25rem;
  }
}
.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .results__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
.results__card {
  background-color: #1c2333;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  padding: 1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
}
.results__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.1875rem;
  height: 100%;
  background-color: #FD7A23;
}
.results__card-value {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0em;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .results__card-value {
    font-size: 1.375rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0em;
  }
}
.results__card-desc {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}
.results__card-detail {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.results__card-hotel {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.results__card-type {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FD7A23;
  background-color: rgba(253, 122, 35, 0.15);
  padding: 0.125rem 0.5rem;
  border-radius: 0.125rem;
}
.results__card-name {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: rgba(255, 255, 255, 0.7);
}

/* ===============================
   こんなお悩みはありませんか？
================================ */
.troubles {
  background-color: #ffffff;
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .troubles {
    padding-block: 3.5rem;
  }
}
.troubles__inner {
  max-width: 77.5rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .troubles__inner {
    padding-inline: 1.25rem;
  }
}
.troubles__head {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .troubles__head {
    margin-bottom: 2rem;
  }
}
.troubles__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0em;
  color: #313131;
}
@media screen and (max-width: 767px) {
  .troubles__title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0em;
  }
}
.troubles__title-em {
  color: #2d6cc9;
}
.troubles__stage {
  position: relative;
  padding: 3.75rem 12.5rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .troubles__stage {
    padding: 0;
  }
}
.troubles__img {
  display: block;
  width: 100%;
  max-width: 55rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .troubles__img {
    max-width: 75%;
    margin-bottom: 1.75rem;
  }
}
.troubles__list {
  position: absolute;
  inset: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .troubles__list {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.troubles__item {
  position: absolute;
  background-color: #ffffff;
  padding: 1.5rem 1.25rem;
  width: 30%;
  min-height: 10rem;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.troubles__item--tl {
  top: 0;
  left: 0;
  border-radius: 3.125rem 3.125rem 0 3.125rem;
}
.troubles__item--tc {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3.125rem 3.125rem 3.125rem 0;
}
@media screen and (max-width: 767px) {
  .troubles__item--tc {
    transform: none;
  }
}
.troubles__item--tr {
  top: 0;
  right: 0;
  border-radius: 3.125rem 3.125rem 3.125rem 0;
}
.troubles__item--bl {
  bottom: 3.75rem;
  left: 0;
  border-radius: 3.125rem 0 3.125rem 3.125rem;
}
.troubles__item--br {
  bottom: 3.75rem;
  right: 0;
  border-radius: 0 3.125rem 3.125rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .troubles__item {
    position: static;
    width: 16.625rem;
    border-radius: 3.125rem 3.125rem 0 3.125rem;
    padding: 1.25rem;
  }
  .troubles__item:nth-child(even) {
    margin-left: 5.3125rem;
    border-radius: 3.125rem 3.125rem 3.125rem 0;
  }
}
.troubles__item-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0em;
  color: #313131;
  text-align: center;
}
.troubles__item-em {
  color: #25598C;
}

/* ===============================
   ESSENCE セクション
================================ */
.essence {
  background-color: #1A2332;
  padding-block: 6.25rem;
  overflow: hidden;
  position: relative;
}
.essence::before {
  content: "ESSENCE";
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8.3333333333vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.06em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .essence {
    padding-block: 3.75rem;
  }
}
.essence__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .essence__inner {
    padding-inline: 1.25rem;
  }
}
.essence__head {
  text-align: center;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .essence__head {
    margin-bottom: 3rem;
  }
}
.essence__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .essence__title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
.essence__title-em {
  color: #FD7A23;
}
.essence__lead {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  max-width: 30rem;
  margin-inline: auto;
}
.essence__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .essence__cards {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.essence__card {
  text-align: center;
  padding-inline: 1rem;
}
.essence__card-icon {
  position: relative;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  border: 2px solid rgba(253, 122, 35, 0.6);
  background-color: rgba(253, 122, 35, 0.08);
  box-shadow: 0 0 1.5rem rgba(253, 122, 35, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
}
.essence__card-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  color: #FD7A23;
}
.essence__card-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #FD7A23;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.essence__card-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 0.875rem;
}
@media screen and (max-width: 767px) {
  .essence__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }
}
.essence__card-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
}

/* ===============================
   Stats（数字実績）
================================ */
.stats {
  background-color: #ffffff;
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .stats {
    padding-block: 3.25rem;
  }
}
.stats__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .stats__inner {
    padding-inline: 1.25rem;
  }
}
.stats__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.75rem;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .stats__head {
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
}
.stats__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #313131;
  flex: 0 0 auto;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .stats__title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    white-space: normal;
  }
}
.stats__lead {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #888888;
  max-width: 23.75rem;
  padding-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .stats__lead {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
    max-width: none;
    padding-top: 0;
    color: #313131;
  }
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 52.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .stats__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: none;
  }
}
.stats__item {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .stats__item {
    text-align: left;
    border-left: 0.0625rem solid #000;
    padding-left: 1.25rem;
  }
}
.stats__item-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.25rem;
  color: #FD7A23;
}
@media screen and (max-width: 767px) {
  .stats__item-icon {
    margin: 0 0 0.75rem;
  }
}
.stats__item-icon svg {
  width: 100%;
  height: 100%;
}
.stats__value {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0em;
  color: #FD7A23;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .stats__value {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0em;
  }
}
.stats__unit {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0em;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .stats__unit {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0em;
  }
}
.stats__value--dark {
  color: #072E45;
}
.stats__value--text {
  font-size: 2.75rem;
}
@media screen and (max-width: 767px) {
  .stats__value--text {
    font-size: 1.875rem;
  }
}
.stats__desc {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #888888;
}
@media screen and (max-width: 767px) {
  .stats__desc {
    font-size: 0.6875rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

/* ===============================
   FOUNDATION セクション
================================ */
.foundation {
  background-color: #f9fafb;
  padding-bottom: 3.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .foundation {
    padding-block: 3.75rem;
  }
}
.foundation__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  position: relative;
  z-index: 1;
  padding-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .foundation__inner {
    padding-inline: 1.25rem;
  }
}
.foundation__inner::before {
  content: "FOUNDATION";
  position: absolute;
  top: -24px;
  left: 0;
  font-size: 7.2916666667vw;
  font-weight: 900;
  color: #f3f4f6;
  letter-spacing: 0.06em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
.foundation__head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .foundation__head {
    margin-bottom: 2.25rem;
  }
}
.foundation__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #313131;
  margin-bottom: 1rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .foundation__title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
.foundation__title-em {
  color: #FD7A23;
}
.foundation__sub {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #888888;
  margin-inline: auto;
}
.foundation__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .foundation__cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.foundation__card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 1.5rem rgba(0, 0, 0, 0.06);
}
.foundation__card-img {
  position: relative;
  width: 100%;
  height: 13.75rem;
  background-color: #eaf1f7;
  overflow: hidden;
}
.foundation__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.foundation__card-badge {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  z-index: 1;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background-color: #FD7A23;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.foundation__card-body {
  padding: 1.25rem 1.5rem 1.75rem;
}
.foundation__card-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: #FD7A23;
}
.foundation__card-icon svg {
  width: 24px;
  height: 24px;
}
.foundation__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #313131;
  margin-bottom: 0.625rem;
}
.foundation__card-text {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #888888;
}

/* ===============================
   LEVERAGE（選ばれる理由）
================================ */
.leverage {
  background-color: #ffffff;
  padding-block: 6.25rem;
  position: relative;
}
.leverage::before {
  content: "LEVERAGE";
  position: absolute;
  top: -24px;
  right: -2.5rem;
  font-size: 7.2916666667vw;
  font-weight: 900;
  color: #f3f4f6;
  letter-spacing: 0.06em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .leverage {
    padding-block: 3.75rem;
  }
}
.leverage__inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .leverage__inner {
    padding-inline: 1.25rem;
  }
}
.leverage__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .leverage__head {
    margin-bottom: 2.25rem;
  }
}
.leverage__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #313131;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .leverage__title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
.leverage__title-em {
  color: #FD7A23;
}
.leverage__sub {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #888888;
  margin-inline: auto;
}
.leverage__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .leverage__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.leverage__item-img {
  width: 100%;
  height: 12.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background-color: #E8EFF2;
}
.leverage__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.leverage__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #313131;
  margin-bottom: 0.75rem;
}
.leverage__item-body {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.leverage__item-icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  color: #FD7A23;
}
.leverage__item-icon svg {
  width: 100%;
  height: 100%;
}
.leverage__item-sub {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #313131;
  margin-bottom: 0.25rem;
}
.leverage__item-text {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #888888;
}

/* ===============================
   インバウンド集客
================================ */
.inbound {
  background-color: #072E45;
  padding-block: 6.25rem;
  position: relative;
  overflow: hidden;
}
.inbound::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../img/sales/lp/hotellab-city/inbound-bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .inbound {
    padding-block: 3.75rem;
  }
}
.inbound__inner {
  max-width: 77rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .inbound__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-inline: 1.25rem;
  }
}
.inbound__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .inbound__title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0em;
    margin-bottom: 1rem;
  }
}
.inbound__title-em {
  color: #FD7A23;
}
.inbound__lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .inbound__lead {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
  }
  .inbound__lead br {
    display: none;
  }
}
.inbound__features {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .inbound__features {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.inbound__feature {
  width: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .inbound__feature {
    padding: 0.875rem;
  }
}
.inbound__feature-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #FD7A23;
  margin-bottom: 0.375rem;
}
.inbound__feature-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0em;
  color: rgba(255, 255, 255, 0.75);
}
.inbound__otas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .inbound__otas {
    gap: 0.75rem;
  }
}
.inbound__ota {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1.0625rem 1rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  color: #ffffff;
}
.inbound__ota-icon {
  color: #FD7A23;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}
.inbound__ota-icon svg {
  width: 100%;
  height: 100%;
}
.inbound__ota-name {
  flex: 1;
}
.inbound__ota-check {
  color: #FD7A23;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}
.inbound__ota-check svg {
  width: 100%;
  height: 100%;
}

/* ===============================
   導入事例カード
================================ */
.case-results {
  background-color: #ffffff;
  padding-block: 5rem 6.25rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .case-results {
    padding-block: 3rem 3.75rem;
  }
}
.case-results__watermark {
  position: absolute;
  top: 50%;
  right: -1.25rem;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 11.25rem;
  font-weight: 700;
  color: #f3f4f6;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .case-results__watermark {
    font-size: 5rem;
    right: -0.625rem;
  }
}
.case-results__inner {
  max-width: 103.3125rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .case-results__inner {
    padding-inline: 1.25rem;
  }
}
.case-results__head {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .case-results__head {
    margin-bottom: 2rem;
  }
}
.case-results__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #313131;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .case-results__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0em;
    margin-bottom: 0.75rem;
  }
}
.case-results__title-em {
  color: #FD7A23;
}
.case-results__lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #313131;
}
@media screen and (max-width: 767px) {
  .case-results__lead {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.case-results__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 17.5625rem;
  height: 3.5625rem;
  background-color: #FD7A23;
  color: #ffffff;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  box-shadow: 0 0.5rem 0.75rem rgba(0, 0, 0, 0.1), 0 1.25rem 0.75rem rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  --ripple-color: #072E45;
  background-image: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), var(--ripple-color) var(--ripple-size), transparent var(--ripple-size));
  transition: --ripple-size 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.case-results__cta-btn:hover {
  --ripple-size: 250%;
}
.case-results__cta-btn .case-results__cta-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  padding: 0.375rem;
  background-color: #ffffff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .case-results__cta-btn {
    width: 15rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
  }
}
.case-results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .case-results__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }
}
.case-results__card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}
.case-results__card-img {
  width: 100%;
  aspect-ratio: 437/255;
  overflow: hidden;
  background-color: #e5e7eb;
  flex-shrink: 0;
}
.case-results__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .case-results__card-img {
    height: 9.375rem;
  }
}
.case-results__card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .case-results__card-body {
    padding: 0.875rem 0.75rem 1rem;
  }
}
.case-results__card-tag {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .case-results__card-tag {
    gap: 0.375rem;
    margin-bottom: 0.625rem;
  }
}
.case-results__card-badge {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #FD7A23;
  background-color: rgba(253, 122, 35, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  height: 1.8125rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .case-results__card-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    padding: 0.1875rem 0.5rem;
    height: 1.375rem;
  }
}
.case-results__card-name {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #072E45;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .case-results__card-name {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
  }
}
.case-results__card-quote {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0em;
  color: #4a5565;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .case-results__card-quote {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0em;
  }
}
.case-results__grid--static {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .case-results__grid--static {
    grid-template-columns: repeat(2, 1fr);
  }
}
.case-results__swiper {
  --marquee-duration: 30s;
  overflow: hidden;
  margin-bottom: 2.5rem;
  margin-inline: -2.5rem;
}
@media screen and (max-width: 767px) {
  .case-results__swiper {
    margin-bottom: 1.75rem;
    margin-inline: -1.25rem;
  }
}
.case-results__swiper .swiper-wrapper {
  display: flex !important;
  width: max-content !important;
  transition: none !important;
  will-change: transform;
}
.case-results__swiper .swiper-slide {
  width: 30.303030303vw;
  padding-inline: 0.75rem;
  flex-shrink: 0;
  height: auto;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .case-results__swiper .swiper-slide {
    width: 43.4782608696vw;
  }
}
@media screen and (max-width: 767px) {
  .case-results__swiper .swiper-slide {
    width: 76.9230769231vw;
    padding-inline: 0.5rem;
  }
}
.case-results__swiper .swiper-slide .case-results__card {
  height: 100%;
}
.case-results__more {
  text-align: center;
}

/* ===============================
   導入事例カード
================================ */
.case-archive {
  background-color: #072E45;
  padding: 2.5rem 5rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .case-archive {
    padding: 2rem 1.25rem 2.5rem;
  }
}
.case-archive__inner {
  max-width: 110rem;
  margin-inline: auto;
}
.case-archive__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .case-archive__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.case-archive__card {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 0.5rem;
  padding: 1.5rem 1.4375rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}
.case-archive__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}
.case-archive__result {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
}
.case-archive__result.is-single-line {
  align-items: center;
}
.case-archive__result.is-single-line .case-archive__check-icon {
  margin-top: 0;
}
.case-archive__check-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 0.125rem;
}
.case-archive__headline {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0em;
  color: #313131;
}
.case-archive__headline span {
  color: #FD7A23;
  font-size: 1.375rem;
}
.case-archive__headline small {
  font-size: 1rem;
  color: #313131;
}
.case-archive__desc {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0em;
  color: #313131;
  padding-left: 1.625rem;
}
.case-archive__hotel {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.case-archive__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.case-archive__name {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #313131;
}

/* ===============================
   課題セクション
================================ */
.solution {
  background-color: #E8EFF2;
  padding: 3rem 0 5rem;
  position: relative;
}
.solution__inner {
  max-width: 87.5rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .solution__inner {
    padding-inline: 1.25rem;
  }
}
.solution__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #313131;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .solution__title {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }
}
.solution__wrap {
  display: flex;
  gap: 1.875rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .solution__wrap {
    flex-direction: column;
    align-items: center;
  }
}
.solution__card {
  background-color: #072E45;
  border-radius: 0.875rem;
  padding: 1.25rem 1.375rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  position: relative;
  flex: 1;
  opacity: 0;
  transform: translateY(3rem) scale(0.92);
  min-width: 16.25rem;
  max-width: 26.25rem;
}
@media screen and (max-width: 767px) {
  .solution__card {
    max-width: 100%;
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .solution__card {
    opacity: 1;
    transform: none;
  }
}
.solution__card::after {
  content: "";
  position: absolute;
  bottom: -1.375rem;
  left: 2.375rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.375rem 1rem 0 0;
  border-color: #072E45 transparent transparent transparent;
}
.solution__card.is-visible {
  animation: solutionCardIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.solution__card:nth-child(1) {
  animation-delay: 0s;
}
.solution__card:nth-child(2) {
  animation-delay: 0.15s;
}
.solution__card:nth-child(3) {
  animation-delay: 0.3s;
}
.solution__card-icon {
  flex-shrink: 0;
  width: 5.625rem;
  height: 5.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution__card-icon img {
  width: 5.625rem;
  height: 5.125rem;
  object-fit: contain;
}
.solution__card-text {
  flex: 1;
}
.solution__card-text h3 {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.solution__card-text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0em;
  color: #ffffff;
}
.solution__card-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.solution__card-num::before {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #FD7A23;
  border-radius: 50%;
}
.solution__arrow {
  position: absolute;
  bottom: -0.0625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 14.0625rem;
  line-height: 0;
  z-index: 1;
}
.solution__arrow svg {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes solutionCardIn {
  0% {
    opacity: 0;
    transform: translateY(3rem) scale(0.92);
  }
  65% {
    opacity: 1;
    transform: translateY(-0.5rem) scale(1.03);
  }
  82% {
    transform: translateY(0.25rem) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* ===============================
   経営者・担当者の声
================================ */
.voice {
  background-color: #ffffff;
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .voice {
    padding-block: 3.75rem;
  }
}
.voice__inner {
  max-width: 77rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .voice__inner {
    padding-inline: 1.25rem;
  }
}
.voice__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .voice__head {
    margin-bottom: 2.25rem;
  }
}
.voice__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #072E45;
}
@media screen and (max-width: 767px) {
  .voice__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
.voice__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .voice__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.voice__card {
  background-color: #f9fafb;
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .voice__card {
    padding: 1.5rem 1.25rem;
  }
}
.voice__card-person {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.voice__card-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  background-color: #e5e7eb;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.voice__card-info {
  padding-top: 0.125rem;
}
.voice__card-company {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0em;
  color: #FD7A23;
  margin-bottom: 0.25rem;
}
.voice__card-role {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #4a5565;
  margin-bottom: 0.25rem;
}
.voice__card-name {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0em;
  color: #4a5565;
}
.voice__card-quote {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0em;
  color: #364153;
}
@media screen and (max-width: 767px) {
  .voice__card-quote {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0em;
  }
}

/* ===============================
   FLOW（3ステップ）
================================ */
.flow {
  background-color: #ffffff;
  padding-block: 6.25rem;
  overflow: hidden;
  position: relative;
}
.flow::before {
  content: "FLOW";
  position: absolute;
  top: 1.25rem;
  left: 12.3125rem;
  font-size: 9.375vw;
  font-weight: 900;
  color: #f3f4f6;
  letter-spacing: 0.04em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .flow {
    padding-block: 3.75rem;
  }
}
.flow__inner {
  max-width: 77rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .flow__inner {
    padding-inline: 1.25rem;
  }
}
.flow__head {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .flow__head {
    margin-bottom: 2.5rem;
  }
}
.flow__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #072E45;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .flow__title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
    margin-bottom: 0.75rem;
  }
}
.flow__title-em {
  color: #FD7A23;
}
.flow__lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0em;
  color: #4a5565;
}
@media screen and (max-width: 767px) {
  .flow__lead {
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }
}
.flow__steps {
  display: grid;
  grid-template-columns: 1fr 2rem 1fr 2rem 1fr;
  gap: 0 0rem;
}
@media screen and (max-width: 767px) {
  .flow__steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5565;
  width: 2rem;
  height: 100%;
}
.flow__arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (max-width: 767px) {
  .flow__arrow {
    display: none;
  }
}
.flow__step {
  background-color: #ffffff;
  border: 1.5px solid #f3f4f6;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.flow__step-img {
  position: relative;
  width: 100%;
  height: 16rem;
  background-color: #f3f4f6;
  overflow: hidden;
}
.flow__step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flow__step-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 46, 69, 0.6), transparent);
  pointer-events: none;
}
.flow__step-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  width: 4rem;
  height: 4rem;
  background-color: #FD7A23;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #ffffff;
  box-shadow: 0 10px 8px rgba(0, 0, 0, 0.1), 0 4px 3px rgba(0, 0, 0, 0.1);
}
.flow__step-icon {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B35;
}
.flow__step-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}
.flow__step-body {
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .flow__step-body {
    padding: 1.5rem 1.25rem;
  }
}
.flow__step-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #072E45;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .flow__step-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }
}
.flow__step-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0em;
  color: #4a5565;
}
@media screen and (max-width: 767px) {
  .flow__step-text {
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }
}

/* ===============================
   よくあるご質問
================================ */
.faq {
  background-color: #ffffff;
  padding-block: 6rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .faq {
    padding-block: 3.75rem;
  }
}
.faq__inner {
  max-width: 65rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .faq__inner {
    padding-inline: 1.25rem;
  }
}
.faq__head {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .faq__head {
    margin-bottom: 2.5rem;
  }
}
.faq__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #072E45;
}
@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq__item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .faq__item {
    padding: 1.125rem 1rem;
  }
}
.faq__q-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.faq__prefix {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #FD7A23;
  flex-shrink: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .faq__prefix {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.02em;
  }
}
.faq__question {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #072E45;
}
@media screen and (max-width: 767px) {
  .faq__question {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.02em;
  }
}
.faq__answer {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: #4a5565;
  padding-left: 1.75rem;
}
@media screen and (max-width: 767px) {
  .faq__answer {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.02em;
    padding-left: 1.375rem;
  }
}

/* ===============================
   CTA セクション
================================ */
.cta {
  background: linear-gradient(162deg, #1a2332 0%, #253042 50%, #1a2332 100%);
  padding-block: 6.25rem;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../img/sales/lp/hotellab-city/cta-bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .cta {
    padding-block: 3.75rem;
  }
}
.cta__inner {
  max-width: 56.25rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cta__inner {
    padding-inline: 1.25rem;
  }
}
.cta__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .cta__title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
  }
}
.cta__title-em {
  color: #FD7A23;
}
.cta__lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .cta__lead {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0em;
    margin-bottom: 2.5rem;
  }
}
.cta__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .cta__actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.cta__btn--contact .mv__btn-text {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.12);
  --ripple-color: rgba(255, 255, 255, 0.18);
}
.cta__btn-label--contact {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.4);
  background-color: white;
}
.cta__btn .mv__btn-text {
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), var(--ripple-color, transparent) var(--ripple-size), transparent var(--ripple-size));
  transition: --ripple-size 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta__btn .mv__btn-text:hover {
  --ripple-size: 250%;
}
.cta__btn .mv__btn-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 3rem;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  animation: ctaGlint 3.5s ease-in-out infinite;
}

@keyframes ctaGlint {
  0%, 55% {
    left: -80%;
    opacity: 1;
  }
  80% {
    left: 140%;
    opacity: 1;
  }
  80.1%, 100% {
    left: 140%;
    opacity: 0;
  }
}
/* ===============================
   Footer
================================ */
.footer {
  background-color: #0d1117;
  padding-top: 3rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
  }
}
.footer__inner {
  max-width: 77.5rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-inline: 1.25rem;
    gap: 1.75rem;
  }
}
.footer__offices {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer__offices {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.footer__office {
  flex: 1;
  min-width: 11.25rem;
}
.footer__office-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: -0.028em;
  color: #ffffff;
}
.footer__office-addr {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: -0.028em;
  color: #ffffff;
}
.footer__mid {
  display: grid;
  grid-template-columns: 17.75rem 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 767px) {
  .footer__mid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-bottom: 1.75rem;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__logo img {
  height: 1.75rem;
  width: auto;
}
.footer__company {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: -0.011em;
  color: #ffffff;
  text-align: center;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.footer__nav-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.019em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__nav-item {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: -0.011em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer__nav-item:hover {
  color: #ffffff;
}
.footer__bottom {
  text-align: center;
  padding-bottom: 0.5rem;
}
.footer__copy {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: -0.011em;
  color: rgba(255, 255, 255, 0.6);
}

@property --ripple-size {
  syntax: "<percentage>";
  initial-value: 0%;
  inherits: false;
}
/* ===============================
   共通アニメーション
================================ */
.stats__item,
.essence__card,
.foundation__card,
.leverage__item {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.stats__item.is-visible,
.essence__card.is-visible,
.foundation__card.is-visible,
.leverage__item.is-visible {
  opacity: 1;
  transform: none;
}

.inbound__ota {
  opacity: 0;
  transform: translateX(-2.5rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.inbound__ota.is-visible {
  opacity: 1;
  transform: none;
}

.troubles__item {
  opacity: 0;
}
.troubles__item.is-visible {
  animation: bubblePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.troubles__item--tc.is-visible {
  animation-name: bubblePopTc;
}

@keyframes bubblePop {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bubblePopTc {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.4);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}
