/* =========================
   Landing Hero
========================= */
.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 96px;
}

.landing-hero__bg {
  position: absolute;
  inset: auto -120px -180px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(157, 121, 59, 0.08);
  filter: blur(4px);
}
.landing-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1400px, calc(100% - 48px));
  margin: 30px auto 10px;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(56px, 6vw, 120px);
  align-items: end;
}

.landing-hero__label {
  margin: 0 0 20px;
  color: #7f948f;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
font-family:var(--font-en);
}

.landing-hero__title {
  margin: 0;
  color: #2f2a28;
  font-size: clamp(54px, 7vw, 110px);
  line-height: 1.12;
  letter-spacing: 0.04em;
  font-weight: 400;
max-width: 780px;
}

.landing-hero__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(47, 42, 40, 0.78);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 2;
  letter-spacing: 0.05em;
}


.landing-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.landing-hero__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 15px 34px;
  border-radius: 0;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease,
    border-color .35s ease;
}

.landing-hero__button::after {
  content: "→";
  margin-left: 16px;
  transition: transform .35s ease;
}

.landing-hero__button:hover {
  transform: translateY(-3px);
}

.landing-hero__button:hover::after {
  transform: translateX(6px);
}

.landing-hero__button--primary {
  background:
    linear-gradient(
      135deg,
      #23262d 0%,
      #0f1116 48%,
      #263141 100%
    );
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, .32),
    inset 0 1px 0 rgba(255, 255, 255, .10);
}

.landing-hero__button--primary:hover {
  box-shadow:
    0 26px 54px rgba(0, 0, 0, .42),
    0 0 30px rgba(80, 120, 200, .16);
}

.landing-hero__button--secondary {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.landing-hero--dark .landing-hero__button--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
}








.landing-hero__image {
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

@keyframes heroImageFloat{

  0%{
    transform:translateX(0) scale(1);
  }

  100%{
    transform:translateX(-20px) scale(1.04);
  }

}
.landing-hero__content {
  opacity: 0;
  transform: translateY(28px);
  animation: heroTextReveal 1.4s ease forwards;
}

.landing-hero__label,
.landing-hero__title,
.landing-hero__lead,
.landing-hero__buttons {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(18px);
  animation: heroSoftReveal 1.4s ease forwards;
}

.landing-hero__label { animation-delay: .15s; }
.landing-hero__title { animation-delay: .32s; }
.landing-hero__lead { animation-delay: .52s; }
.landing-hero__buttons { animation-delay: .72s; }

@keyframes heroSoftReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes heroTextReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-hero__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

.landing-hero__title--sans{
font-family:var(--font-ja);
}

.landing-hero__title--serif{
font-family:
"Times New Roman",
"Yu Mincho",
serif;
}

.landing-hero--light{
  background:
  radial-gradient(circle at 20% 30%, rgba(184,139,100,.18), transparent 35%),
  radial-gradient(circle at 80% 20%, rgba(220,190,130,.15), transparent 40%),
  linear-gradient(
    135deg,
    #faf8f5,
    #ffffff,
    #efe6d4,
    #fff7eb
  );
  background-size: 180% 180%;
  animation:
    heroGradientLight 18s ease-in-out infinite;
}

.landing-hero--dark {
background:
radial-gradient(
circle at 15% 20%,
rgba(120,160,255,.28),
transparent 40%
),

radial-gradient(
circle at 80% 80%,
rgba(40,90,180,.30),
transparent 45%
),

linear-gradient(
135deg,
#050608 0%,
#0f1728 30%,
#223a5d 60%,
#08111f 100%
);

background-size:
220% 220%,
220% 220%,
180% 180%;

animation:
heroGradientDark 12s ease-in-out infinite;
}
@keyframes heroGradientLight {

  0%{
    background-position:0% 50%;
  }

  50%{
    background-position:100% 50%;
  }

  100%{
    background-position:0% 50%;
  }

}

@keyframes heroGradientDark {
  0%{
    background-position:
      0% 50%,
      100% 50%,
      0% 50%;
  }

  50%{
    background-position:
      100% 50%,
      0% 50%,
      100% 50%;
  }

  100%{
    background-position:
      0% 50%,
      100% 50%,
      0% 50%;
  }

}

.landing-hero--dark .landing-hero__title {
  color: #fff;
}

.landing-hero--dark .landing-hero__lead {
  color: rgba(255, 255, 255, 0.78);
}

.landing-hero--dark .landing-hero__label {
  color: rgba(255, 255, 255, 0.72);
}

.landing-hero__inner {
  width: min(1400px, calc(100% - 48px));
  gap: 120px;
}

.landing-hero__content {
  max-width: 560px;
  margin-left: -20px;
}
.landing-hero__visual {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: translateX(-80px) scale(1.04);
  filter: blur(6px);

  transition:
    opacity 1.4s ease,
    transform 2s cubic-bezier(.22, 1, .36, 1),
    filter 1.4s ease;

  z-index: 1;
}

.landing-hero__visual.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  z-index: 2;
}

.landing-hero__visual.is-prev {
  opacity: 0;
  transform: translateX(120px) scale(1.03);
  filter: blur(8px);
  z-index: 1;
}
.landing-hero__visual.is-active{
    animation: heroKenBurns 4s linear forwards;
}
@keyframes heroKenBurns{

  from{
    transform:translateX(0) scale(1);
  }

  to{
    transform:translateX(-25px) scale(1.08);
  }
}
.landing-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;

  background:
    radial-gradient(
      circle,
      rgba(255,215,160,.10),
      transparent 60%
    );

  filter: blur(80px);

  animation: heroGlowMove 12s ease-in-out infinite;
}
.landing-hero--dark::before {
  background:
    radial-gradient(
      circle,
      rgba(210, 225, 255, .18),
      transparent 62%
    );

  filter: blur(70px);
  opacity: 1;
}
.landing-hero__lead--sans{
    font-family: var(--font-ja);
}

.landing-hero__lead--serif{
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
}
.landing-hero__lead--serif{
    font-family:
        "Cormorant Garamond",
        "Yu Mincho",
        serif;

    letter-spacing:.08em;
}
.landing-concept__phone {
  width: min(360px, 100%);
  aspect-ratio: 9 / 18.5;
  margin: 0 auto;
  padding: 12px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, #24272e 0%, #08090b 100%);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.landing-concept__phone-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  background: #111;
}

.landing-concept__phone-screen {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  animation: conceptPhoneScroll 14s ease-in-out infinite;
}

@keyframes conceptPhoneScroll {
  0% {
    transform: translateY(0);
  }

  18% {
    transform: translateY(0);
  }

  55% {
    transform: translateY(calc(-100% + 100% / 2.05));
  }

  78% {
    transform: translateY(calc(-100% + 100% / 2.05));
  }

  100% {
    transform: translateY(0);
  }
}
.landing-concept {
  position: relative;
  overflow: hidden;
}

.landing-concept::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: rgba(255,255,255,.55);
}
.landing-concept__inner {
  position: relative;
  z-index: 2;
}
.landing-concept--black::before {
  background: rgba(0,0,0,.35);
}

.landing-concept--white::before,
.landing-concept--white2::before {
  background: rgba(255,255,255,.72);
}



/* Mobile */
@media (max-width: 767px) {
  .landing-hero {
    padding: 84px 0 64px;
    overflow: hidden;
  }

  .landing-hero__bg {
    display: none;
  }

  .landing-hero__inner {
    width: calc(100% - 32px);
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 34px;
    align-items: stretch;
  }

  .landing-hero__content {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .landing-hero__label {
    font-size: 11px;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
    word-break: break-word;
  }

  .landing-hero__title {
    max-width: 100%;
    font-size: clamp(34px, 11vw, 50px);
    line-height: 1.16;
    letter-spacing: 0.02em;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }

  .landing-hero__lead {
    max-width: 100%;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.03em;
    overflow-wrap: anywhere;
  }

  .landing-hero__buttons {
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

  .landing-hero__button {
    width: 100%;
    min-width: 0;
  }

  .landing-hero__image {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
  }

  .landing-hero__image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    border-radius: 0;
    object-fit: cover;
  }
}

@media (min-width: 2200px) {

  .landing-hero {
    padding: 180px 0 140px;
  }

  .landing-hero__inner {
    width: min(1800px, calc(100% - 120px));
    gap: 180px;
  }

  .landing-hero__content {
    max-width: 760px;
  }

  .landing-hero__title {
    font-size: 140px;
    max-width: 1100px;
  }

  .landing-hero__lead {
    max-width: 820px;
    font-size: 22px;
  }

  .landing-hero__buttons {
    margin-top: 56px;
  }

}
/* =========================
   Landing Concept
========================= */

.landing-concept {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Background */
.landing-concept--black {
  background-image: url('https://interesting-stories.net/wp-content/uploads/2026/06/bk110-1.webp');
  color: #fff;
}

.landing-concept--white {
  background-image: url('https://interesting-stories.net/wp-content/uploads/2026/06/bk116-1.webp');
  color: #272321;
}

.landing-concept--white2 {
  background-image: url('https://interesting-stories.net/wp-content/uploads/2026/06/bk114-1.webp');
  color: #272321;
}

/* Layout */
.landing-concept__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 420px);
  gap: 80px;
  align-items: center;
}

.landing-concept__content {
  grid-column: 1;
}

/* Text */
.landing-concept__label {
  display: inline-block;
  margin: 0 0 24px;
  padding: 9px 16px 8px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  background: #111;
  border: 1px solid rgba(220, 220, 220, .55);
  border-radius: 0;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .28),
    inset 0 -1px 0 rgba(120, 120, 120, .45);
}

.landing-concept__title {
  margin: 15px 0 0;
  font-size: clamp(34px, 4vw, 72px);
  line-height: 1.24;
  letter-spacing: .06em;
  font-weight: 300;
  font-family: "Cormorant Garamond", "Yu Mincho", serif;
}

.landing-concept__text {
  grid-column: 1;
  max-width: 560px;
  margin: 0 0 0 10px;
  font-size: clamp(16px, 0.9vw, 22px);
  line-height: 2.2;
  letter-spacing: .06em;
  color: rgba(39, 35, 33, .76);
}

.landing-concept--black .landing-concept__text {
  color: rgba(255, 255, 255, .72);
}

/* Phone mockup link */
.landing-concept__phone-link {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  display: block;
  width: min(360px, 100%);
  margin: 0 auto;
  text-decoration: none;
}

.landing-concept__phone-link::after {
  content: "↗";
  position: absolute;
  top: 18px;
  right: 18px;
  color: #fff;
  font-size: 18px;
  opacity: 0;
  transition: .3s;
}

.landing-concept__phone-link:hover::after {
  opacity: 1;
}

/* Phone mockup */
.landing-concept__phone {
  width: 100%;
  aspect-ratio: 9 / 18.5;
  margin: 0 auto;
  padding: 12px;
  border-radius: 42px;
  background: linear-gradient(145deg, #24272e 0%, #08090b 100%);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255,255,255,.12);
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.landing-concept__phone-link:hover .landing-concept__phone {
  transform: translateY(-8px);
}

.landing-concept__phone-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  background: #111;
}

.landing-concept__phone-screen {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  animation: conceptPhoneScroll 14s ease-in-out infinite;
}

.landing-concept__phone-link:hover .landing-concept__phone-screen {
  filter: brightness(1.05);
}

@keyframes conceptPhoneScroll {
  0%,
  18% {
    transform: translateY(0);
  }

  55%,
  78% {
    transform: translateY(calc(-100% + 100% / 2.05));
  }

  100% {
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .landing-concept {
    padding: 84px 0;
  }

  .landing-concept__inner {
    width: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .landing-concept__phone-link {
    order: 1;
    width: min(180px, 58vw);
    margin: 0 auto;
  }

  .landing-concept__content {
    order: 2;
  }

  .landing-concept__text {
    order: 3;
    margin: 18px 0 0 10px;
    font-size: 14px;
    line-height: 2;
  }

  .landing-concept__title {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.32;
  }

  .landing-concept__phone {
    width: 100%;
    height: 340px;
    aspect-ratio: auto;
    padding: 8px;
    border-radius: 28px;
  }

  .landing-concept__phone-inner {
    height: 100%;
    border-radius: 22px;
  }

  .landing-concept__phone-screen {
    width: 100%;
    height: auto;
    min-height: 100%;
  }
}


/* =========================
   Landing Features
========================= */
.landing-features {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(
      180deg,
      #f7f3ec 0%,
      #ffffff 48%,
      #f2eee7 100%
    );
  color: #272321;
  overflow: hidden;
}

.landing-features__inner {
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
}

/* Head */
.landing-features__head {
  max-width: 1100px;
  margin: 0 auto 100px;
  text-align: center;
}

.landing-features__label,
.landing-features__compare-label {
  display: inline-block;
  margin: 0 0 22px;
  padding: 9px 16px 8px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  background: #111;
  border: 1px solid rgba(220, 220, 220, .55);
  border-radius: 0;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .28),
    inset 0 -1px 0 rgba(120, 120, 120, .45);
}

.landing-features__title {
  margin: 20px 0;
  font-size: clamp(42px, 3.2vw, 76px);
  line-height: 1.15;
  letter-spacing: .04em;
  font-weight: 300;
  font-family: "Cormorant Garamond", "Yu Mincho", serif;
}

.landing-features__lead {
  max-width: 900px;
  margin: 30px auto 0;
  font-size: clamp(15px, .9vw, 19px);
  line-height: 2.1;
  letter-spacing: .06em;
  color: rgba(39, 35, 33, .72);
}

/* Feature 2 column */
.landing-features__list {
  display: grid;
  gap: 110px;
  margin-bottom: 130px;
}

.landing-features__item {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 76px;
  align-items: center;
}

.landing-features__item.is-reverse {
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
}

.landing-features__item.is-reverse .landing-features__visual {
  order: 2;
}

.landing-features__item.is-reverse .landing-features__body {
  order: 1;
}

.landing-features__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .16),
    inset 0 1px 0 rgba(255, 255, 255, .24);

  opacity: 0;
  transform: translateX(-42px);
  animation: featureVisualIn .95s ease forwards;
}

.landing-features__item:nth-child(2) .landing-features__visual {
  animation-delay: .16s;
}

.landing-features__item:nth-child(3) .landing-features__visual {
  animation-delay: .28s;
}

@keyframes featureVisualIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.landing-features__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 42%,
      rgba(0, 0, 0, .24) 100%
    );
  pointer-events: none;
  z-index: 3;
}

.landing-features__visual-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(18px) scale(1.04);
}

.landing-features__visual-img--one {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: featureImageOne 8s ease-in-out infinite;
}

.landing-features__visual-img--two {
  opacity: 0;
  transform: translateY(18px) scale(1.04);
  animation: featureImageTwo 8s ease-in-out infinite;
}

@keyframes featureImageOne {
  0%, 45% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  55%, 90% {
    opacity: 0;
    transform: translateY(-22px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes featureImageTwo {
  0%, 45% {
    opacity: 0;
    transform: translateY(22px) scale(1.05);
  }

  55%, 90% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(22px) scale(1.05);
  }
}

.landing-features__body {
  position: relative;
  padding: 20px 0;
}

.landing-features__num {
  display: block;
  margin: 0 0 34px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .24em;
  color: rgba(39, 35, 33, .42);
}

.landing-features__card-title {
  margin: 0;
  font-size: clamp(32px, 3vw, 58px);
  line-height: 1.35;
  letter-spacing: .06em;
  font-weight: 300;
  font-family: "Cormorant Garamond", "Yu Mincho", serif;
}

.landing-features__card-text {
  max-width: 620px;
  margin: 30px 0 0;
  font-size: clamp(15px, .9vw, 19px);
  line-height: 2.15;
  letter-spacing: .05em;
  color: rgba(39, 35, 33, .68);
}

/* Compare */
.landing-features__compare {
  margin-top: 20px;
}

.landing-features__compare-head {
  margin-bottom: 34px;
}

.landing-features__compare-title {
  margin: 0;
  font-size: clamp(28px, 3vw, 50px);
  line-height: 1.32;
  letter-spacing: .06em;
  font-weight: 300;
  font-family: "Cormorant Garamond", "Yu Mincho", serif;
}

.landing-features__table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(39, 35, 33, .14);
  background: rgba(255, 255, 255, .78);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .08),
    inset 0 1px 0 rgba(255, 255, 255, .78);
}

.landing-features__table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.landing-features__table th,
.landing-features__table td {
  padding: 24px 22px;
  border-bottom: 1px solid rgba(39, 35, 33, .12);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: .04em;
}

.landing-features__table thead th {
  background: #111;
  color: #fff;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 400;
}

.landing-features__table tbody th {
  width: 120px;
  font-weight: 500;
  color: #272321;
}

.landing-features__table tbody td:nth-child(3) {
  background: rgba(247, 242, 233, .7);
  color: #1f1b19;
}

.landing-features__table tr:last-child th,
.landing-features__table tr:last-child td {
  border-bottom: none;
}

/* 4K */
@media (min-width: 2200px) {
  .landing-features {
    padding: 180px 0;
  }

  .landing-features__inner {
    width: min(1900px, calc(100% - 120px));
  }

  .landing-features__head {
    max-width: 1600px;
    margin-bottom: 140px;
  }

  .landing-features__title {
    font-size: 75px;
  }

  .landing-features__lead {
    max-width: 1200px;
    font-size: 24px;
  }

  .landing-features__list {
    gap: 150px;
    margin-bottom: 170px;
  }

  .landing-features__item {
    grid-template-columns: minmax(0, 1.18fr) minmax(520px, .82fr);
    gap: 120px;
  }

  .landing-features__item.is-reverse {
    grid-template-columns: minmax(520px, .82fr) minmax(0, 1.18fr);
  }

  .landing-features__card-title {
    font-size: 72px;
  }

  .landing-features__card-text {
    max-width: 820px;
    font-size: 24px;
  }

  .landing-features__compare-title {
    font-size: 64px;
  }

  .landing-features__table th,
  .landing-features__table td {
    padding: 34px 32px;
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .landing-features {
    padding: 65px 0;
  }

  .landing-features__inner {
    width: calc(100% - 32px);
  }

  .landing-features__head {
    margin-bottom: 56px;
  }

  .landing-features__label,
  .landing-features__compare-label {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: .22em;
  }

  .landing-features__title {
    font-size: clamp(30px, 8vw, 44px);
    line-height: 1.32;
  }

  .landing-features__lead {
    margin-top: 24px;
    font-size: 14px;
    line-height: 2;
  }

  .landing-features__list {
    gap: 58px;
    margin-bottom: 76px;
  }

  .landing-features__item,
  .landing-features__item.is-reverse {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .landing-features__item.is-reverse .landing-features__visual,
  .landing-features__item.is-reverse .landing-features__body {
    order: initial;
  }

  .landing-features__visual {
    width: 100%;
    aspect-ratio: 16 / 11;
    transform: translateY(24px);
  }

  @keyframes featureVisualIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .landing-features__body {
    padding: 0;
  }

  .landing-features__num {
    margin-bottom: 20px;
  }

  .landing-features__card-title {
    font-size: 28px;
    line-height: 1.45;
  }

  .landing-features__card-text {
    margin-top: 22px;
    font-size: 14px;
    line-height: 2;
  }

  .landing-features__compare-title {
    font-size: clamp(26px, 8vw, 38px);
  }

  /* Table to cards */
  .landing-features__table-wrap {
    overflow: visible;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .landing-features__table {
    min-width: 0;
    width: 100%;
    display: block;
  }

  .landing-features__table thead {
    display: none;
  }

  .landing-features__table tbody,
  .landing-features__table tr,
  .landing-features__table th,
  .landing-features__table td {
    display: block;
    width: 100%;
  }

  .landing-features__table tr {
    margin-bottom: 18px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(39, 35, 33, .12);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .07);
  }

  .landing-features__table tbody th {
    width: auto;
    padding: 16px 18px;
    background: #111;
    color: #fff;
    font-size: 13px;
    letter-spacing: .08em;
  }

  .landing-features__table td {
    position: relative;
    padding: 42px 18px 18px;
    font-size: 13px;
    line-height: 1.9;
  }

  .landing-features__table td::before {
    position: absolute;
    top: 14px;
    left: 18px;
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(39, 35, 33, .48);
  }

  .landing-features__table td:nth-child(2)::before {
    content: "General Theme";
  }

  .landing-features__table td:nth-child(3)::before {
    content: "VILLA TERRACE";
  }

  .landing-features__table tbody td:nth-child(3) {
    background: rgba(247, 242, 233, .9);
  }
}

/* =========================
   Landing Management
========================= */

.landing-management {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(
      180deg,
      #111 0%,
      #1a1715 52%,
      #0b0b0b 100%
    );
  color: #fff;
  overflow: hidden;
}

.landing-management__inner {
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
}

.landing-management__head {
  max-width: 1100px;
  margin: 0 auto 86px;
  text-align: center;
}

.landing-management__label {
  display: inline-block;
  margin: 0 0 22px;
  padding: 9px 16px 8px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  line-height: 1;
  color: #111;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 0;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .5);
}

.landing-management__title {
  margin: 20px 0;
  font-size: clamp(42px, 3.2vw, 76px);
  line-height: 1.15;
  letter-spacing: .04em;
  font-weight: 300;
  font-family: "Cormorant Garamond", "Yu Mincho", serif;
}

.landing-management__lead {
  max-width: 900px;
  margin: 30px auto 0;
  font-size: clamp(15px, .9vw, 19px);
  line-height: 2.1;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .72);
}

.landing-management__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.landing-management__card {
  position: relative;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .12),
      rgba(255, 255, 255, .04)
    );
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, .32),
    inset 0 1px 0 rgba(255, 255, 255, .14);
  overflow: hidden;

  opacity: 0;
  transform: translateX(-36px);
  animation: managementCardIn .9s ease forwards;
}

.landing-management__card:nth-child(1) {
  animation-delay: .05s;
}

.landing-management__card:nth-child(2) {
  animation-delay: .16s;
}

.landing-management__card:nth-child(3) {
  animation-delay: .27s;
}

.landing-management__card:nth-child(4) {
  animation-delay: .38s;
}

.landing-management__card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.landing-management__body {
  flex: 1;
}

@keyframes managementCardIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.landing-management__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #111;
}

.landing-management__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 36%,
      rgba(0, 0, 0, .42) 100%
    );
}

.landing-management__media img,
.landing-management__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.landing-management__card:hover .landing-management__media img,
.landing-management__card:hover .landing-management__video {
  transform: scale(1.06);
}

.landing-management__body {
  padding: 34px 28px 36px;
}

.landing-management__num {
  display: block;
  margin: 0 0 24px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .24em;
  color: rgba(255, 255, 255, .46);
}

.landing-management__card-title {
  margin: 0;
  font-size: clamp(20px, 1.35vw, 28px);
  line-height: 1.55;
  letter-spacing: .06em;
  font-weight: 400;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.landing-management__card-text {
  margin: 22px 0 0;
  font-size: clamp(13px, .82vw, 16px);
  line-height: 2;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .66);
}

.landing-management__card {
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.landing-management__card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, .26);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, .44),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

/* 4K */
@media (min-width: 2200px) {
  .landing-management {
    padding: 180px 0;
  }

  .landing-management__inner {
    width: min(1900px, calc(100% - 120px));
  }

  .landing-management__head {
    max-width: 1600px;
    margin-bottom: 120px;
  }

  .landing-management__title {
    font-size: 86px;
  }

  .landing-management__lead {
    max-width: 1200px;
    font-size: 24px;
  }

  .landing-management__list {
    gap: 42px;
  }

  .landing-management__body {
    padding: 48px 42px 50px;
  }

  .landing-management__card-title {
    font-size: 34px;
  }

  .landing-management__card-text {
    font-size: 19px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .landing-management {
    padding: 76px 0;
  }

  .landing-management__inner {
    width: calc(100% - 32px);
  }

  .landing-management__head {
    margin-bottom: 48px;
    text-align: left;
  }

  .landing-management__label {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: .22em;
  }

  .landing-management__title {
    font-size: clamp(30px, 8vw, 44px);
    line-height: 1.32;
  }

  .landing-management__lead {
    margin-top: 24px;
    font-size: 14px;
    line-height: 2;
  }

  .landing-management__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .landing-management__card {
    transform: translateY(24px);
  }

  @keyframes managementCardIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .landing-management__body {
    padding: 30px 24px 32px;
  }

  .landing-management__num {
    margin-bottom: 22px;
  }

  .landing-management__card-title {
    font-size: 22px;
  }

  .landing-management__card-text {
    font-size: 14px;
    line-height: 2;
  }
}

/* =========================
   Landing Docs
========================= */

.landing-docs {
  position: relative;
  padding: 120px 0;
  background: #f8f5ef;
  color: #272321;
  overflow: hidden;
}

.landing-docs__inner {
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 86px;
  align-items: center;
}

.landing-docs__label {
  display: inline-block;
  margin: 0 0 22px;
  padding: 9px 16px 8px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  background: #111;
  border: 1px solid rgba(220, 220, 220, .55);
  border-radius: 0;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .28),
    inset 0 -1px 0 rgba(120, 120, 120, .45);
}

.landing-docs__title {
  margin: 0;
  font-size: clamp(38px, 3.4vw, 72px);
  line-height: 1.2;
  letter-spacing: .05em;
  font-weight: 300;
  font-family: "Cormorant Garamond", "Yu Mincho", serif;
}

.landing-docs__lead {
  max-width: 720px;
  margin: 30px 0 0;
  font-size: clamp(15px, .9vw, 19px);
  line-height: 2.1;
  letter-spacing: .06em;
  color: rgba(39, 35, 33, .72);
}




.landing-docs__item-title {
  margin: 0;
  font-size: clamp(18px, 1.25vw, 26px);
  line-height: 1.5;
  letter-spacing: .06em;
  font-weight: 400;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.landing-docs__item-text {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: .04em;
  color: rgba(39, 35, 33, .64);
}

.landing-docs__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 42px;
  min-height: 56px;
  padding: 14px 30px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.landing-docs__button::after {
  content: "→";
  margin-left: 16px;
}

.landing-docs__button:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .22);
}

.landing-docs__preview {
  position: relative;
  padding: 18px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(39, 35, 33, .12);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .12),
    inset 0 1px 0 rgba(255, 255, 255, .78);
}

.landing-docs__preview img {
  display: block;
  width: 100%;
  height: auto;
}
.landing-docs__list {
  margin-top: 52px;
  display: grid;
  gap: 16px;
  border-top: none;
}

.landing-docs__item {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  padding: 26px 28px;
  border: 1px solid rgba(39, 35, 33, .12);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .92),
      rgba(246, 240, 230, .76)
    );
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .07),
    inset 0 1px 0 rgba(255, 255, 255, .78);
  overflow: hidden;
}

.landing-docs__item:nth-child(even) {
  background:
    linear-gradient(
      135deg,
      rgba(242, 236, 225, .9),
      rgba(255, 255, 255, .82)
    );
}

.landing-docs__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255, 255, 255, .75) 42%,
      rgba(196, 170, 120, .55) 50%,
      transparent 62%
    );
  opacity: .28;
  transform: translateX(-120%);
  transition: transform .9s ease;
  pointer-events: none;
}

.landing-docs__item:hover::before {
  transform: translateX(120%);
}

.landing-docs__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background:
    linear-gradient(
      180deg,
      rgba(176, 138, 87, .2),
      rgba(176, 138, 87, .95),
      rgba(176, 138, 87, .2)
    );
}

.landing-docs__item-num {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .12em;
  color: #fff;
  background: #111;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .2);
}

.landing-docs__item-title,
.landing-docs__item-text {
  position: relative;
  z-index: 1;
}
.landing-docs__preview--sp {
  display: none;
}

/* 4K */
@media (min-width: 2200px) {
  .landing-docs {
    padding: 180px 0;
  }

  .landing-docs__inner {
    width: min(1900px, calc(100% - 120px));
    gap: 130px;
  }

  .landing-docs__title {
    font-size: 86px;
  }

  .landing-docs__lead {
    max-width: 900px;
    font-size: 24px;
  }

  .landing-docs__item-title {
    font-size: 30px;
  }

  .landing-docs__item-text {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .landing-docs {
    padding: 76px 0;
  }

  .landing-docs__inner {
    width: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    gap: 42px;
  }

  .landing-docs__label {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: .22em;
  }

  .landing-docs__title {
    font-size: clamp(30px, 8vw, 44px);
    line-height: 1.32;
  }

  .landing-docs__lead {
    margin-top: 24px;
    font-size: 14px;
    line-height: 2;
  }

  .landing-docs__list {
    margin-top: 38px;
  }

  .landing-docs__item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }

  .landing-docs__item-title {
    font-size: 18px;
  }

  .landing-docs__item-text {
    font-size: 13px;
    line-height: 1.9;
margin: 15px 10px;
  }

  .landing-docs__button {
    width: 100%;
    margin-top: 34px;
  }

  .landing-docs__preview {
    padding: 10px;
  }


  .landing-docs__preview--pc {
    display: none;
  }

  .landing-docs__preview--sp {
    display: block;
    margin: 28px 0 30px;
  }
}


/* =========================
   Landing Pricing
========================= */
.landing-pricing {
  position: relative;
  padding: 120px 0;
    linear-gradient(
      180deg,
      #f7faff 0%,
      #eef4ff 50%,
      #f8fbff 100%
    );

  color: #272321;
  overflow: hidden;
background:
linear-gradient(
180deg,
#faf8f3 0%,
#f5f0e7 50%,
#fcfaf7 100%
);
linear-gradient(
180deg,
#f8f9fb 0%,
#eef1f7 50%,
#fafbfc 100%
);
}

.landing-pricing__inner {
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
}

.landing-pricing__head {
  max-width: 980px;
  margin: 0 auto 86px;
  text-align: center;
}

.landing-pricing__label {
  display: inline-block;
  margin: 0 0 22px;
  padding: 9px 16px 8px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  background: #111;
  border: 1px solid rgba(220, 220, 220, .55);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .28);
}

.landing-pricing__title {
  margin: 0;
  font-size: clamp(38px, 3.4vw, 72px);
  line-height: 1.2;
  letter-spacing: .05em;
  font-weight: 300;
  font-family: "Cormorant Garamond", "Yu Mincho", serif;
}

.landing-pricing__lead {
  max-width: 780px;
  margin: 30px auto 0;
  font-size: clamp(15px, .9vw, 19px);
  line-height: 2.1;
  letter-spacing: .06em;
  color: rgba(39, 35, 33, .72);
}

.landing-pricing__plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.landing-pricing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 42px 34px 36px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .92),
      rgba(247, 242, 233, .78)
    );
  border: 1px solid rgba(39, 35, 33, .13);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .08),
    inset 0 1px 0 rgba(255, 255, 255, .78);
  overflow: hidden;
}

.landing-pricing__card.is-featured {
  background:
    radial-gradient(circle at 20% 0%, rgba(120, 160, 255, .22), transparent 38%),
    linear-gradient(
      135deg,
      #050608 0%,
      #0f1728 40%,
      #223a5d 100%
    );
  color: #fff;
  transform: translateY(-18px);
  border-color: rgba(210, 225, 255, .35);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.landing-pricing__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .24);
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
}

.landing-pricing__plan-name {
  margin: 0 0 18px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(39, 35, 33, .46);
}

.landing-pricing__card.is-featured .landing-pricing__plan-name {
  color: rgba(255, 255, 255, .62);
}

.landing-pricing__plan-label {
  margin: 0;
  font-size: clamp(22px, 1.6vw, 32px);
  line-height: 1.45;
  letter-spacing: .06em;
  font-weight: 400;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.landing-pricing__price {
  margin: 26px 0 0;
  font-family: "Cormorant Garamond", "Yu Mincho", serif;
  font-size: clamp(38px, 3vw, 58px);
  line-height: 1;
  letter-spacing: .03em;
}

.landing-pricing__plan-lead {
  min-height: 64px;
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: .04em;
  color: rgba(39, 35, 33, .66);
}

.landing-pricing__card.is-featured .landing-pricing__plan-lead {
  color: rgba(255, 255, 255, .72);
}

.landing-pricing__items {
  margin: 34px 0 0;
  padding: 30px 0 0;
  list-style: none;
  border-top: 1px solid rgba(39, 35, 33, .12);
}

.landing-pricing__card.is-featured .landing-pricing__items {
  border-top-color: rgba(255, 255, 255, .18);
}

.landing-pricing__items li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .04em;
  color: rgba(39, 35, 33, .72);
}

.landing-pricing__items li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #9d793b;
  font-weight: 700;
}

.landing-pricing__card.is-featured .landing-pricing__items li {
  color: rgba(255, 255, 255, .82);
}

.landing-pricing__card.is-featured .landing-pricing__items li::before {
  color: rgba(210, 225, 255, .95);
}

.landing-pricing__note {
  margin: auto 0 0;
  padding-top: 28px;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: .04em;
  color: rgba(39, 35, 33, .56);
}

.landing-pricing__card.is-featured .landing-pricing__note {
  color: rgba(255, 255, 255, .64);
}

.landing-pricing__bottom {
  margin-top: 56px;
  text-align: center;
}

.landing-pricing__caution {
  max-width: 900px;
  margin: 0 auto 30px;

  padding: 24px 28px;

  text-align: left;

  font-size: 13px;
  line-height: 2;
  letter-spacing: .04em;

  color: rgba(39, 35, 33, .72);

  background: #f4f5f6;

  border: 1px solid rgba(39, 35, 33, .08);

  box-shadow:
    0 10px 30px rgba(0,0,0,.04),
    inset 0 1px 0 rgba(255,255,255,.8);
}

.landing-pricing__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  min-height: 58px;
  padding: 15px 38px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.landing-pricing__button::after {
  content: "→";
  margin-left: 16px;
}

.landing-pricing__button:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .22);
}

/* 4K */
@media (min-width: 2200px) {
  .landing-pricing {
    padding: 180px 0;
  }

  .landing-pricing__inner {
    width: min(1900px, calc(100% - 120px));
  }

  .landing-pricing__head {
    max-width: 1500px;
    margin-bottom: 120px;
  }

  .landing-pricing__title {
    font-size: 86px;
  }

  .landing-pricing__lead {
    max-width: 1200px;
    font-size: 24px;
  }

  .landing-pricing__plans {
    gap: 42px;
  }

  .landing-pricing__card {
    padding: 58px 50px 52px;
  }

  .landing-pricing__plan-label {
    font-size: 38px;
  }

  .landing-pricing__price {
    font-size: 72px;
  }

  .landing-pricing__items li {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .landing-pricing {
    padding: 76px 0;
  }

  .landing-pricing__inner {
    width: calc(100% - 32px);
  }

  .landing-pricing__head {
    margin-bottom: 44px;
    text-align: left;
  }

  .landing-pricing__label {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: .22em;
  }

  .landing-pricing__title {
    font-size: clamp(30px, 8vw, 44px);
    line-height: 1.32;
  }

  .landing-pricing__lead {
    margin-top: 24px;
    font-size: 14px;
    line-height: 2;
  }

  .landing-pricing__plans {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .landing-pricing__card,
  .landing-pricing__card.is-featured {
    transform: none;
    padding: 36px 26px 32px;
  }

  .landing-pricing__price {
    font-size: 46px;
  }

  .landing-pricing__plan-lead {
    min-height: auto;
  }

  .landing-pricing__items li {
    font-size: 14px;
  }

  .landing-pricing__button {
    width: 100%;
  }
}

/* =========================
   Landing Floating Purchase
========================= */
.landing-floating-purchase {
  position: fixed;
  top: clamp(100px, 7vh, 140px);
  right: clamp(20px, 2vw, 46px);
  z-index: 2000;

  display: inline-flex;
  align-items: center;
  gap: 16px;

  min-height: 58px;
  padding: 17px 30px;

  color: #fff;
  text-decoration: none;

  background:
    linear-gradient(
      135deg,
      #23262d 0%,
      #0f1116 48%,
      #263141 100%
    );

  border: 1px solid rgba(255, 255, 255, .16);

  box-shadow:
    0 18px 44px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .12);

  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .18em;
  line-height: 1;

  transition:
    transform .35s ease,
    box-shadow .35s ease;
    min-width: 220px;
}

.landing-floating-purchase:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, .36),
    0 0 28px rgba(120, 160, 255, .18);
}

.landing-floating-purchase__arrow {
  transition: transform .35s ease;
}

.landing-floating-purchase:hover .landing-floating-purchase__arrow {
  transform: translateX(5px);
}

/* 4K */
@media (min-width: 2200px) {
  .landing-floating-purchase {
    top: 150px;
    right: 60px;
    min-height: 68px;
    padding: 21px 38px;
    font-size: 15px;
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {

   .landing-floating-purchase {
    top: 82px;
    right: 0;

    width: 50px;
    min-width: 50px;
    max-width: 50px;
    min-height: auto;

    padding: 16px 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    writing-mode: vertical-rl;
    text-orientation: mixed;

    font-size: 10px;
    letter-spacing: .18em;
    line-height: 1.4;

    border-right: none;
    border-radius: 0 0 0 10px;
  }

  .landing-floating-purchase__text {
    display: inline-block;
    white-space: nowrap;
  }

  .landing-floating-purchase__arrow {
    display: inline-block;
    transform: rotate(90deg);
  }

  .landing-floating-purchase:hover {
    transform: none;
  }

  .landing-floating-purchase:hover .landing-floating-purchase__arrow {
    transform: rotate(90deg) translateX(3px);
  }
}

/* =========================
   Landing Floating Menu
========================= */

.landing-floating-menu-button {
  position: fixed;
  top: calc(clamp(100px, 7vh, 140px) + 76px);
  right: clamp(20px, 2vw, 46px);
  z-index: 2000;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  min-width: 220px;
  min-height: 58px;
  padding: 17px 30px;

  color: #111;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .96),
      rgba(245, 239, 228, .9)
    );

  border: 1px solid rgba(176, 138, 87, .72);

  box-shadow:
    0 18px 44px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .86);

  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .18em;
  line-height: 1;
  cursor: pointer;

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.landing-floating-menu-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, .24),
    0 0 28px rgba(176, 138, 87, .16);
}

.landing-floating-menu-button__icon {
  display: grid;
  gap: 5px;
  width: 20px;
}

.landing-floating-menu-button__icon span {
  display: block;
  height: 1px;
  background: #111;
}

.landing-floating-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2100;

  width: min(420px, 86vw);
  height: 100vh;
  height: 100dvh;

  padding: 86px 42px 42px;

  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .96),
      rgba(246, 240, 230, .94)
    );

  border-left: 1px solid rgba(176, 138, 87, .42);

  box-shadow:
    -24px 0 80px rgba(0, 0, 0, .22),
    inset 1px 0 0 rgba(255, 255, 255, .72);

  transform: translateX(105%);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}
.landing-floating-menu.is-open {
  transform: translateX(0);
}

.landing-floating-menu__close {
  position: absolute;
  top: 28px;
  right: 30px;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(39, 35, 33, .18);
  background: rgba(255,255,255,.55);
  color: #111;

  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.landing-floating-menu__label {
  margin: 0 0 34px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(39, 35, 33, .46);
}

.landing-floating-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.landing-floating-menu__list li {
  border-bottom: 1px solid rgba(39, 35, 33, .12);
}

.landing-floating-menu__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 20px 0;

  color: #111;
  text-decoration: none;

  font-family: "Cormorant Garamond", "Yu Mincho", serif;
  font-size: 30px;
  letter-spacing: .06em;

  transition:
    transform .3s ease,
    color .3s ease;
}



.landing-floating-menu__list a:hover {
  color: #223a5d;
  transform: translateX(6px);
}



.landing-floating-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 2050;

  background: rgba(0, 0, 0, .34);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.landing-floating-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.landing-floating-menu__list a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;

  padding: 20px 0;

  color: #111;
  text-decoration: none;

  transition:
    transform .3s ease,
    color .3s ease;
}

.landing-floating-menu__link-main {
  font-family: "Cormorant Garamond", "Yu Mincho", serif;
  font-size: 30px;
  letter-spacing: .06em;
  line-height: 1.1;
}

.landing-floating-menu__link-ja {
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(39, 35, 33, .48);
}


.landing-floating-menu__purchase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  margin-top: 38px;
  min-height: 58px;
  padding: 17px 24px;

  color: #fff;
  text-decoration: none;

  background:
    linear-gradient(
      135deg,
      #23262d 0%,
      #0f1116 48%,
      #263141 100%
    );

  border: 1px solid rgba(255, 255, 255, .16);

  box-shadow:
    0 18px 44px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .12);

  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .16em;
  line-height: 1;

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.landing-floating-menu__purchase:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, .36),
    0 0 28px rgba(120, 160, 255, .18);
}
/* 4K */
@media (min-width: 2200px) {
  .landing-floating-menu-button {
    top: 238px;
    right: 60px;
    min-width: 260px;
    min-height: 68px;
    padding: 21px 38px;
    font-size: 15px;
  }

  .landing-floating-menu {
    width: 520px;
    padding: 110px 58px 58px;
  }

  .landing-floating-menu__list a {
    font-size: 38px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .landing-floating-menu-button {
    top: 240px;
    right: 0;

    width: 50px;
    height: 50px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    writing-mode: horizontal-tb;
    text-orientation: mixed;

    background:
      linear-gradient(
        135deg,
        rgba(255, 255, 255, .96),
        rgba(245, 239, 228, .9)
      );
    border: 1px solid #000;;
    border-right: none;
    border-radius: 0 0 0 10px;
  }

  .landing-floating-menu-button__text {
    display: none;
  }

  .landing-floating-menu-button__icon {
    width: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .landing-floating-menu-button__icon span {
    display: block;
    width: 20px;
    height: 1px;
    background: #111;
  }

  .landing-floating-menu-button:hover {
    transform: none;
  }
 .landing-floating-menu {
    width: min(330px, 84vw);
    height: 100dvh;
    padding: 74px 28px 34px;
    overflow-y: auto;
  }

  .landing-floating-menu__list a {
    padding: 17px 0;
  }

  .landing-floating-menu__link-main {
    font-size: 25px;
  }

  .landing-floating-menu__link-ja {
    font-size: 11px;
  }

  .landing-floating-menu__purchase {
    margin-top: 30px;
    min-height: 54px;
    padding: 15px 20px;
    font-size: 11px;
  }
}

/* =========================
   Landing Floating Demo
========================= */

.landing-floating-demo {
  position: fixed;
  top: calc(clamp(100px, 7vh, 140px) + 152px);
  right: clamp(20px, 2vw, 46px);
  z-index: 2000;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  min-width: 220px;
  min-height: 58px;
  padding: 17px 30px;

  color: #111;
  text-decoration: none;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .96),
      rgba(238, 244, 255, .92)
    );

  border: 1px solid rgba(80, 120, 180, .55);

  box-shadow:
    0 18px 44px rgba(0, 0, 0, .16),
    inset 0 1px 0 rgba(255, 255, 255, .86);

  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .18em;
  line-height: 1;

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.landing-floating-demo:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, .22),
    0 0 28px rgba(80, 120, 200, .14);
}

.landing-floating-demo__arrow {
  transition: transform .35s ease;
}

.landing-floating-demo:hover .landing-floating-demo__arrow {
  transform: translateX(5px);
}

.landing-floating-demo__text-sp {
  display: none;
}

/* 4K */
@media (min-width: 2200px) {
  .landing-floating-demo {
    top: 326px;
    right: 60px;
    min-width: 260px;
    min-height: 68px;
    padding: 21px 38px;
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .landing-floating-demo {
    top: 298px;
    right: 0;

    width: 50px;
    min-width: 50px;
    min-height: auto;
    padding: 16px 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    writing-mode: vertical-rl;
    text-orientation: mixed;

    font-size: 10px;
    letter-spacing: .18em;

    border-right: none;
    border-radius: 0 0 0 10px;
  }

  .landing-floating-demo__text {
    display: none;
  }

  .landing-floating-demo__text-sp {
    display: inline;
  }

  .landing-floating-demo__arrow {
   display: none;
  }

  .landing-floating-demo:hover {
    transform: none;
  }

  .landing-floating-demo:hover .landing-floating-demo__arrow {
    transform: rotate(90deg) translateX(3px);
  }
}