@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap";
@layer foundation, vendor, layout, component, project, page, utilities;
:root {
  --sans-serif:
  	"Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans",
  	"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  --serif: "Noto Serif JP", serif;
  --en-sans: "", sans-serif;
  --en-serif: "", serif;
  --base: #000;
  --base-color-1: #fcf5d4;
  --base-color-2: #ffeaab;
  --main-color: #009a6b;
  --sub-color: #9fe0a3;
  --accent-color: #ffc700;
  --blue-color: #0068b4;
  --theater-bar: 4.375rem;
}

@layer foundation {
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  dl,
  dt,
  dd,
  ol,
  ul,
  figure {
    all: unset;
    display: revert;
  }
  body {
    line-height: 1;
  }
  ol,
  ul {
    list-style: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  img {
    vertical-align: middle;
  }
}
@layer foundation {
  html {
    height: 100%;
    scroll-behavior: smooth;
  }
  body {
    min-width: 320px;
    height: 100vh;
    overflow: hidden;
    font-family: var(--sans-serif);
    line-height: 1.8;
    color: #111;
    background: var(--base);
    text-size-adjust: 100%;
  }
  @supports (height: 100svh) {
    body {
      height: 100svh;
    }
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  img,
  svg,
  iframe,
  video,
  picture {
    max-width: 100%;
  }
  img {
    height: auto;
    font-size: 12px;
    letter-spacing: 0;
  }
  a {
    word-break: break-all;
  }
  @media screen and (min-width: 768px) {
    a[href^="tel:"] {
      display: inline-block;
      color: inherit;
      text-decoration: none;
      pointer-events: none;
    }
  }
  small {
    font-size: 80%;
  }
  button,
  input[type=button],
  input[type=submit] {
    font: inherit;
    cursor: pointer;
  }
  button,
  input,
  select,
  textarea {
    font: inherit;
    color: inherit;
  }
  label {
    display: inline-block;
    cursor: pointer;
  }
}
/* ========================================
  サイト共通のヘッダー
======================================== */
@layer layout {
  .l-header__logo {
    position: fixed;
    top: 0.625rem;
    left: 1.5625rem;
    z-index: 10;
  }
  .is-mobile .l-header__logo {
    left: 0.9375rem;
  }
  .home.is-tablet .l-header__logo {
    top: calc(var(--theater-bar) + 0.625rem);
  }
  .l-header__logo img {
    width: 18rem;
  }
  .is-mobile .l-header__logo img {
    width: 10.5rem;
  }
  .is-tablet .l-header__logo img {
    width: 16.25rem;
  }
  .l-header__dev-wrap {
    position: fixed;
    right: 1.875rem;
    bottom: 8.75rem;
    z-index: 100;
    display: grid;
    gap: 0.625rem;
  }
  .is-mobile .l-header__dev-wrap {
    right: 0.9375rem;
    bottom: 4.375rem;
    gap: 0.3125rem;
  }
  .home.is-tablet .l-header__dev-wrap {
    bottom: calc(var(--theater-bar) + 7.5rem);
  }
  .l-header__dev-wrap button {
    padding: 0.2em 0.5em;
    background: #fff;
    border: 2px solid #009a6b;
    border-radius: 100vmax;
  }
  .is-mobile .l-header__dev-wrap button {
    font-size: 0.875rem;
  }
  .l-header__info-btn {
    position: fixed;
    top: 0.8125rem;
    right: 4.8125rem;
    z-index: 10;
    padding: 0;
    background: transparent;
    border: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  @media (hover: hover) {
    .l-header__info-btn {
      transition-timing-function: ease-in-out;
      transition-duration: 0.3s;
      transition-property: filter;
    }
    .l-header__info-btn:hover {
      filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6));
    }
  }
  .is-mobile .l-header__info-btn {
    top: 0.4375rem;
    right: 2.6875rem;
  }
  .home.is-tablet .l-header__info-btn {
    top: calc(var(--theater-bar) + 0.4375rem);
  }
  .l-header__info-btn img {
    width: 13.5rem;
  }
  .is-mobile .l-header__info-btn img {
    width: 7.75rem;
  }
  .is-tablet .l-header__info-btn img {
    width: 12.5rem;
  }
  .l-header__info-btn.is-hidden {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
  }
  .l-header__info {
    position: fixed;
    top: 1.5625rem;
    right: 5.1875rem;
    z-index: 20;
    display: block;
    visibility: hidden;
    width: 24.375rem;
    min-height: 12.1875rem;
    max-height: 90vh;
    padding: 1.25rem;
    pointer-events: none;
    background-color: #fff;
    border: 1px solid var(--main-color);
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .l-header__info.is-show {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
  }
  .is-mobile .l-header__info {
    top: 0.625rem;
    right: 3.75rem;
    width: 21.25rem;
    padding: 0.625rem;
  }
  .home.is-tablet .l-header__info {
    top: calc(var(--theater-bar) + 0.625rem);
  }
  .l-header__info-content .l-header__info-item {
    padding-inline: 1.25rem;
  }
  .l-header__coming-soon {
    padding-inline: 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--main-color);
    text-align: center;
  }
  .l-header__info-heading {
    padding-bottom: 0.625rem;
    padding-left: 3.75rem;
    margin-bottom: 0.9375rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--main-color);
    text-align: center;
    background: url("https://www.housing-messe.com/vr-ariake/wp-content/uploads/2026/08/deco_info_wave_1.png") no-repeat center bottom/contain;
  }
  .is-mobile .l-header__info-heading {
    margin-bottom: 0.3125rem;
    font-size: 0.875rem;
  }
  .l-header__info-item {
    display: block;
    padding-inline: 3.125rem;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
  }
  .is-mobile .l-header__info-item {
    padding-inline: 2.1875rem;
  }
  .l-header__info-item.-no-data {
    display: grid;
    place-content: center;
    min-height: 6.125rem;
    font-weight: 700;
    color: var(--main-color);
    text-align: center;
  }
  .is-mobile .l-header__info-item.-no-data {
    min-height: 8.3125rem;
  }
  @media (hover: hover) {
    .l-header__info-item:hover .l-header__info-ttl {
      text-decoration: underline;
    }
  }
  .l-header__info-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--main-color);
  }
  .is-mobile .l-header__info-name {
    font-size: 0.875rem;
  }
  .l-header__info-house-name {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--main-color);
  }
  .l-header__info-date {
    line-height: 1.2;
  }
  .is-mobile .l-header__info-date {
    font-size: 0.875rem;
  }
  .l-header__info-ttl {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.75;
  }
  .is-mobile .l-header__info-ttl {
    font-size: 0.875rem;
  }
  .l-header__info-close-btn {
    position: absolute;
    top: -0.4375rem;
    right: -0.4375rem;
    z-index: 10;
    width: 2.0625rem;
    height: 2.0625rem;
    padding: 0;
    background: #a8a8a8;
    border: none;
    border-radius: 50%;
  }
  .l-header__info-close-btn::before, .l-header__info-close-btn::after {
    position: absolute;
    inset: 0;
    width: 60%;
    height: 2px;
    margin: auto;
    content: "";
    background-color: #fff;
    border-radius: 100vmax;
  }
  .l-header__info-close-btn::before {
    transform: rotate(45deg);
  }
  .l-header__info-close-btn::after {
    transform: rotate(-45deg);
  }
  .is-mobile .l-header__info-close-btn {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.l-header__info-splide .splide__arrows .splide__arrow {
  width: 1.5rem;
  height: 1.5rem;
  background: transparent;
}
.l-header__info-splide .splide__arrows .splide__arrow:not(:disabled) {
  opacity: 1;
}
.l-header__info-splide .splide__arrows .splide__arrow--prev {
  left: 0;
}
.l-header__info-splide .splide__arrows .splide__arrow--next {
  right: 0;
}

/* ========================================
  ヘッダーのナビゲーション（グローバルナビ）
======================================== */
@layer layout {
  .l-nav.is-expanded .l-nav__body {
    visibility: visible;
    opacity: 1;
  }
  .l-nav__btn {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 4rem;
    padding: 0;
    margin: auto;
    background-color: #fff;
    border: none;
  }
  .is-mobile .l-nav__btn {
    width: 2.375rem;
    height: 2.5rem;
  }
  .is-tablet .l-nav__btn {
    width: 4.0625rem;
    height: 4.375rem;
  }
  .home.is-tablet .l-nav__btn {
    top: var(--theater-bar);
  }
  .l-nav__btn[aria-expanded=true] .l-nav__line.is-1 {
    transform: rotate(45deg);
  }
  .l-nav__btn[aria-expanded=true] .l-nav__line.is-2 {
    opacity: 0;
  }
  .l-nav__btn[aria-expanded=true] .l-nav__line.is-3 {
    transform: rotate(-45deg);
  }
  .l-nav__lines {
    position: relative;
    display: block;
    width: 50%;
    height: 20%;
  }
  .l-nav__line {
    position: absolute;
    inset-block: 0;
    display: block;
    width: 100%;
    height: 3px;
    margin-block: auto;
    background-color: #a8a8a8;
    border-radius: 100vmax;
    transition: 0.3s ease-in;
    transition-property: opacity, transform;
  }
  .is-mobile .l-nav__line {
    height: 2px;
  }
  .l-nav__line.is-1 {
    transform: translateY(-0.75rem);
  }
  .is-mobile .l-nav__line.is-1 {
    transform: translateY(-0.5rem);
  }
  .l-nav__line.is-3 {
    transform: translateY(0.75rem);
  }
  .is-mobile .l-nav__line.is-3 {
    transform: translateY(0.5rem);
  }
  .l-nav__body {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 1000;
    display: block;
    visibility: hidden;
    width: min(100%, 21.875rem);
    max-height: calc(100vh - 5rem);
    overflow: auto;
    overscroll-behavior-y: contain;
    background: #fff;
    border: 1px solid var(--main-color);
    opacity: 0;
    transition: 0.3s ease-in;
    transition-property: opacity, visibility;
  }
  @supports (height: 100svh) {
    .l-nav__body {
      max-height: calc(100svh - 5rem);
    }
  }
  .is-mobile .l-nav__body {
    top: 0.625rem;
    right: 0.625rem;
  }
  .home.is-tablet .l-nav__body {
    top: calc(var(--theater-bar) + 1.25rem);
  }
  .l-nav__list {
    display: grid;
    padding: 1.875rem 1.5625rem;
  }
  .is-mobile .l-nav__list {
    padding: 1.25rem;
  }
  .l-nav__sub-list {
    padding-left: 1em;
  }
  .l-nav__link {
    position: relative;
    display: block;
    padding-block: 0.1875rem 0.25rem;
    padding-left: 0.5em;
    font-size: 1.125rem;
    color: var(--main-color);
    text-decoration: none;
    background: transparent;
  }
  .l-nav__link::before {
    position: absolute;
    bottom: 1px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    background-image: linear-gradient(to right, var(--main-color) 50%, transparent 50%);
    background-repeat: repeat-x;
    background-size: 10px 2px;
  }
  .l-nav__link[type=button] {
    width: 100%;
    margin: 0;
    text-align: left;
    cursor: pointer;
    background: transparent;
    border: none;
  }
  .is-mobile .l-nav__link {
    font-size: 0.875rem;
  }
  @media (hover: hover) {
    .l-nav__link:hover {
      text-decoration: underline;
      text-decoration-thickness: 2px;
      text-underline-offset: 2px;
    }
  }
  .l-nav__close-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.9375rem;
    z-index: 100;
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    background-color: #a8a8a8;
    border: none;
    border-radius: 50%;
  }
  .is-mobile .l-nav__close-btn {
    width: 1.5rem;
    height: 1.5rem;
  }
  .l-nav__close-btn::before, .l-nav__close-btn::after {
    position: absolute;
    inset: 0;
    display: block;
    width: 50%;
    height: 2px;
    margin: auto;
    content: "";
    background-color: #fff;
    border-radius: 100vmax;
  }
  .l-nav__close-btn::before {
    transform: rotate(45deg);
  }
  .l-nav__close-btn::after {
    transform: rotate(-45deg);
  }
  .l-nav__accordion summary {
    position: relative;
    padding-block: 0.1875rem 0.25rem;
    padding-left: 0.5em;
    font-size: 1.125rem;
    color: var(--main-color);
    cursor: pointer;
    list-style: none;
  }
  .is-mobile .l-nav__accordion summary {
    font-size: 0.875rem;
  }
  .l-nav__accordion summary::before, .l-nav__accordion summary::after {
    position: absolute;
    display: block;
    content: "";
  }
  .l-nav__accordion summary::before {
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, var(--main-color) 50%, transparent 50%);
    background-repeat: repeat-x;
    background-size: 10px 2px;
  }
  .l-nav__accordion summary::after {
    top: calc((1lh + 0.4375rem - 0.9375rem) / 2);
    right: 0.625rem;
    width: 0.9375rem;
    aspect-ratio: 1/1;
    background-color: var(--main-color);
    clip-path: polygon(0 35%, 50% 85%, 100% 35%, 90% 25%, 50% 65%, 10% 25%);
    transition: 0.3s;
    transition-property: transform;
  }
  .l-nav__accordion summary::-webkit-details-marker {
    display: none;
  }
  .l-nav__accordion ul {
    background-color: rgba(255, 255, 0, 0.16);
  }
  .l-nav__accordion ul .l-nav__item .l-nav__link {
    padding-left: 1em;
  }
  .l-nav__accordion ul .l-nav__item:last-child .l-nav__link::before {
    display: block;
  }
  .l-nav__accordion[open] summary::after {
    transform: rotate(-180deg);
  }
}
/* ========================================
  ページ全体のレイアウト
======================================== */
@layer layout {
  .home.is-tablet .l-page {
    height: calc(100vh - var(--theater-bar) * 2);
    margin-block: var(--theater-bar);
  }
  @supports (height: 100svh) {
    .home.is-tablet .l-page {
      height: calc(100svh - var(--theater-bar) * 2);
    }
  }
}
@layer component {
  .c-btn {
    --btn-w: 26.375rem;
    --btn-h: 3.9375rem;
    --btn-padding-x: 1.25rem 3.75rem;
    --btn-padding-y: 0.625rem;
    --btn-border-width: 1px;
    --btn-border-color: var(--main-color);
    --btn-bg-color: var(--main-color);
    --btn-color: var(--base-color-1);
    --btn-hover-color: #fff;
    --btn-border-radius: 100vmax;
    --btn-focus-ring-color: rgb(50 98 145 / 25%);
    --btn-focus-ring-width: 0.25rem;
    position: relative;
    display: inline-grid;
    grid-auto-flow: column;
    gap: 0.5em;
    place-content: center;
    align-items: center;
    width: min(100%, var(--btn-w));
    height: var(--btn-h);
    padding-block: var(--btn-padding-y);
    padding-inline: var(--btn-padding-x);
    font-size: 2rem;
    font-weight: 700;
    font-feature-settings: "palt";
    line-height: 1.1;
    color: var(--btn-color);
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    background: var(--btn-bg-color);
    border: var(--btn-border-width) solid var(--btn-border-color);
    border-radius: var(--btn-border-radius);
  }
  .is-tablet .c-btn {
    font-size: 1.75rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .c-btn {
      --btn-h: 3.25rem;
      font-size: 1.625rem;
    }
  }
  .c-btn::after {
    position: absolute;
    inset-block: 0;
    right: 0.625rem;
    display: block;
    width: 2.625rem;
    height: 2.625rem;
    margin-block: auto;
    content: "";
    background: url("https://www.housing-messe.com/vr-ariake/wp-content/uploads/2026/08/icon_arrow.png") no-repeat center center/contain;
  }
  .is-mobile .c-btn::after {
    width: 1.25rem;
    height: 1.25rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .c-btn::after {
      width: 2rem;
      height: 2rem;
    }
  }
  @media (hover: hover) {
    .c-btn {
      transition-timing-function: ease-in-out;
      transition-duration: 0.3s;
      transition-property: filter;
    }
    .c-btn:hover {
      filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6));
    }
  }
  .is-mobile .c-btn {
    --btn-w: 14.375rem;
    --btn-h: 2rem;
    --btn-padding-x: 0.625rem 1.25rem;
    --btn-padding-y: 0.25em;
    font-size: 1rem;
  }
  .c-btn.-size-sm {
    --btn-w: 22.5rem;
    --btn-h: 3.25rem;
    font-size: 1.125rem;
    letter-spacing: 0.08em;
  }
  .is-mobile .c-btn.-size-sm {
    --btn-w: 16.875rem;
    --btn-h: 2rem;
    --btn-padding-x: 0.625rem 1.25rem;
    --btn-padding-y: 0.25em;
    font-size: 0.875rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .c-btn.-size-sm {
      --btn-h: 3.25rem;
      font-size: 1.125rem;
    }
  }
  .c-btn.-size-sm::after {
    width: 2rem;
    height: 2rem;
  }
  .is-mobile .c-btn.-size-sm::after {
    right: 0.3125rem;
    width: 1.25rem;
    height: 1.25rem;
  }
}
@layer component {
  .c-container, .c-container--s {
    width: 1000px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  @media screen and (max-width: 767px) {
    .c-container--full {
      padding-right: 10px;
      padding-left: 10px;
    }
  }
  .c-container--s {
    width: 900px;
  }
  @media screen and (max-width: 767px) {
    .c-container, .c-container--s {
      padding-right: 10px;
      padding-left: 10px;
    }
  }
}
@layer component {
  .c-scrollbar .simplebar-content-wrapper {
    overscroll-behavior: contain;
  }
  .c-scrollbar .simplebar-track {
    border-radius: 100vmax;
  }
  .c-scrollbar .simplebar-vertical {
    background-color: #fff7b0;
  }
  .c-scrollbar .simplebar-scrollbar {
    touch-action: none;
    background-color: #80ccb5;
    border-radius: 100vmax;
  }
  .c-scrollbar .simplebar-scrollbar::before {
    background: none !important;
  }
}
@layer project {
  .p-concept-movie {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    background: #000;
    transition: opacity 1s ease;
  }
  .p-concept-movie.is-active {
    display: block;
  }
  .p-concept-movie.is-leaving {
    opacity: 0;
  }
  .p-concept-movie__video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
  }
  .p-concept-movie__logo {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
  }
  .p-concept-movie__logo img {
    width: auto;
    height: 3.375rem;
    aspect-ratio: 2667/834;
  }
  .p-concept-movie__skip {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    padding: 0.375rem 1rem;
    font-size: 1rem;
    color: var(--main);
    letter-spacing: 0.1em;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.25rem;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
  }
  .p-concept-movie__skip:hover {
    background: rgba(255, 255, 255, 0.3);
  }
}
@layer project {
  .p-content__btn-left,
  .p-content__btn-right {
    position: fixed;
    bottom: 2.1875rem;
    z-index: 10;
    display: flex;
    gap: 1.0625rem;
    align-items: flex-end;
  }
  .is-mobile .p-content__btn-left,
  .is-mobile .p-content__btn-right {
    bottom: 0.9375rem;
    gap: 0.75rem;
  }
  .home.is-tablet .p-content__btn-left,
  .home.is-tablet .p-content__btn-right {
    bottom: calc(var(--theater-bar) + 1.25rem);
  }
  .p-content.-modelhouse .p-content__btn-left,
  .p-content.-modelhouse .p-content__btn-right {
    bottom: 1.875rem;
    gap: 1.25rem;
    align-items: flex-end;
  }
  .is-mobile .p-content.-modelhouse .p-content__btn-left,
  .is-mobile .p-content.-modelhouse .p-content__btn-right {
    bottom: 0.9375rem;
    gap: 0.625rem;
  }
  .p-content__btn-left.-column,
  .p-content__btn-right.-column {
    flex-direction: column;
    align-items: flex-start;
  }
  .is-tablet .p-content__btn-left.-column,
  .is-tablet .p-content__btn-right.-column {
    gap: 0.9375rem;
  }
  .p-content__btn-left li,
  .p-content__btn-right li {
    line-height: 1;
  }
  .p-content__btn-left a,
  .p-content__btn-right a {
    display: inline-grid;
  }
  .p-content__btn-right {
    right: 2.5rem;
  }
  .is-mobile .p-content__btn-right {
    right: 0.9375rem;
  }
  .is-tablet .p-content__btn-right {
    right: 1.5625rem;
  }
  .p-content.-home .p-content__btn-right {
    padding: 0 0.1875rem 0.1875rem 0;
  }
  .p-content__btn-left {
    left: 4.0625rem;
  }
  .is-mobile .p-content__btn-left {
    left: 0.9375rem;
  }
  .is-tablet .p-content__btn-left {
    left: 1.5625rem;
  }
  .home.is-mobile .p-content__btn-left {
    left: 2.5rem;
  }
  .home.is-tablet .p-content__btn-left {
    left: 3.75rem;
  }
  @media (hover: hover) {
    .p-content__reservation-btn,
    .p-content__event-info-btn,
    .p-content__vr-internal-btn,
    .p-content__modelhouse-info-btn,
    .p-content__vr-external-btn,
    .p-content__catalog-btn,
    .p-content__home-btn,
    .p-content__sns-btn,
    .p-content__switch-btn {
      transition-timing-function: ease-in-out;
      transition-duration: 0.3s;
      transition-property: filter;
    }
    .p-content__reservation-btn:hover,
    .p-content__event-info-btn:hover,
    .p-content__vr-internal-btn:hover,
    .p-content__modelhouse-info-btn:hover,
    .p-content__vr-external-btn:hover,
    .p-content__catalog-btn:hover,
    .p-content__home-btn:hover,
    .p-content__sns-btn:hover,
    .p-content__switch-btn:hover {
      filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6));
    }
  }
  .p-content__reservation-btn {
    margin-left: -2.3125rem;
  }
  .is-mobile .p-content__reservation-btn {
    margin-left: -1.5625rem;
  }
  .is-tablet .p-content__reservation-btn {
    margin-left: -2.5rem;
  }
  .p-content__reservation-btn img {
    width: 13.625rem;
    aspect-ratio: 234/117;
  }
  .is-mobile .p-content__reservation-btn img {
    width: 7.875rem;
  }
  .is-tablet .p-content__reservation-btn img {
    width: 12.5rem;
  }
  .p-content__event-info-btn img {
    width: 11.25rem;
  }
  .is-mobile .p-content__event-info-btn img {
    width: 6.25rem;
  }
  .is-tablet .p-content__event-info-btn img {
    width: 10rem;
  }
  .p-content__sns-btn img,
  .p-content__switch-btn img {
    width: 3.9375rem;
  }
  .is-mobile .p-content__sns-btn img,
  .is-mobile .p-content__switch-btn img {
    width: 2.125rem;
  }
  .is-tablet .p-content__sns-btn img,
  .is-tablet .p-content__switch-btn img {
    width: 3.75rem;
  }
  .p-content__switch-btn {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
  }
  .p-content__switch-btn .is-hidden {
    display: none;
  }
  .p-content__modelhouse-info-new-arrival {
    position: absolute;
    top: -0.4375rem;
    right: -0.4375rem;
    width: 1.75rem;
    height: 1.75rem;
  }
  .p-content__modelhouse-info-new-arrival.is-hidden {
    display: none;
  }
  .is-mobile .p-content__modelhouse-info-new-arrival {
    right: -0.5rem;
    width: 1.25rem;
    height: 1.25rem;
  }
  .is-tablet .p-content__modelhouse-info-new-arrival {
    right: -0.625rem;
    width: 1.875rem;
    height: 1.875rem;
  }
  .p-content__vr-internal-btn img {
    width: 7rem;
  }
  .is-mobile .p-content__vr-internal-btn img {
    width: 4.875rem;
  }
  .is-tablet .p-content__vr-internal-btn img {
    width: 6.25rem;
  }
  .p-content__modelhouse-info-btn {
    position: relative;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
  }
  .p-content__modelhouse-info-btn img {
    width: 13.5rem;
  }
  .is-mobile .p-content__modelhouse-info-btn img {
    width: 9.5rem;
  }
  .is-tablet .p-content__modelhouse-info-btn img {
    width: 12.5rem;
  }
  .p-content__modelhouse-info-btn:focus-visible {
    outline: none;
  }
  .p-content__vr-external-btn img {
    width: 15.5rem;
  }
  .is-mobile .p-content__vr-external-btn img {
    width: 9.375rem;
  }
  .is-tablet .p-content__vr-external-btn img {
    width: 13.75rem;
  }
  .p-content__catalog-btn img {
    width: 13.75rem;
  }
  .is-mobile .p-content__catalog-btn img {
    width: 8.5rem;
  }
  .is-tablet .p-content__catalog-btn img {
    width: 12.125rem;
  }
  .p-content__home-btn img {
    width: 3.75rem;
  }
  .is-mobile .p-content__home-btn img {
    width: 2.5625rem;
  }
  .is-tablet .p-content__home-btn img {
    width: 3.375rem;
  }
}
.p-content__modelhouse-main-slide {
  height: 100vh;
}
@supports (height: 100svh) {
  .p-content__modelhouse-main-slide {
    height: 100svh;
  }
}
.p-content__modelhouse-main-slide .splide__track,
.p-content__modelhouse-main-slide .splide__list,
.p-content__modelhouse-main-slide .splide__slide {
  height: 100%;
}
.p-content__modelhouse-main-slide .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@layer project {
  .p-loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200;
    display: flex;
    visibility: visible;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    opacity: 1;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  }
  @supports (height: 100svh) {
    .p-loading {
      height: 100svh;
    }
  }
  .p-loading.is-loaded {
    visibility: hidden;
    opacity: 0;
  }
  .p-loading__logo {
    width: min(100% - 2.5rem, 31.25rem);
    height: auto;
    aspect-ratio: 700/216;
  }
  @media screen and (max-width: 1023px) {
    .p-loading__logo {
      width: 21.875rem;
    }
  }
  .p-loading__logo img {
    width: 100%;
  }
}
@layer project {
  .p-tutorial {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: none;
  }
  .p-tutorial.is-active {
    display: block;
  }
  .p-tutorial__overlay {
    position: absolute;
    inset: 0;
    background: rgba(136, 136, 136, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .p-tutorial.is-show .p-tutorial__overlay {
    opacity: 1;
  }
  .p-tutorial__panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    width: min(100% - 6.25rem, 75rem);
    height: fit-content;
    max-height: 90vh;
    padding: 0.625rem 2.5rem 1.25rem;
    margin: auto;
    overflow: hidden;
    background: #fff;
    border: 4px solid var(--main-color);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .p-tutorial.is-show .p-tutorial__panel {
    opacity: 1;
    transform: scale(1);
  }
  @supports (max-height: 90svh) {
    .p-tutorial__panel {
      max-height: 90svh;
    }
  }
  .is-mobile .p-tutorial__panel {
    padding: 0.3125rem 0.9375rem 1.875rem;
    border-width: 2px;
  }
  .p-tutorial__heading {
    display: flex;
    gap: 0.3125rem;
    align-items: center;
    justify-content: center;
    padding-bottom: 0.9375rem;
    font-size: 1.875rem;
    font-weight: 700;
    font-feature-settings: "palt";
    color: var(--main-color);
    letter-spacing: 0.04em;
    background: url("https://www.housing-messe.com/vr-ariake/wp-content/uploads/2026/08/deco_tutorial_wave_1.png") no-repeat center bottom/contain;
  }
  .is-mobile .p-tutorial__heading {
    padding-bottom: 0.4375rem;
    padding-left: 1.875rem;
    font-size: 1.0625rem;
  }
  .p-tutorial__num {
    display: inline-grid;
    min-width: 1.2em;
    text-align: center;
  }
  .p-tutorial__num-item {
    visibility: hidden;
    grid-area: 1/1;
    opacity: 0;
  }
  .p-tutorial__num-item.is-active {
    visibility: visible;
    opacity: 1;
  }
  .p-tutorial__row {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 1.875rem;
    padding: 1.875rem 3.75rem 4.375rem;
  }
  .is-mobile .p-tutorial__row {
    gap: 1.25rem;
    padding: 0.9375rem 1.875rem;
  }
  .p-tutorial__img img {
    width: 100%;
  }
  .p-tutorial__content {
    margin-top: -0.375rem;
  }
  .is-mobile .p-tutorial__content {
    margin-top: 0;
  }
  .p-tutorial__catch {
    margin-bottom: 1.125rem;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--main-color);
  }
  .is-mobile .p-tutorial__catch {
    margin-bottom: 0.375rem;
    font-size: 1rem;
  }
  .p-tutorial__desc {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--blue-color);
  }
  .is-mobile .p-tutorial__desc {
    font-size: 0.75rem;
  }
  .p-tutorial__close-btn {
    position: absolute;
    right: 6.25rem;
    bottom: 1.25rem;
    width: 8.75rem;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    background: transparent;
    border: none;
  }
  .is-mobile .p-tutorial__close-btn {
    right: 3.125rem;
    bottom: 0.625rem;
    width: 4.0625rem;
  }
}
.p-tutorial__splide:not(.is-overflow) .splide__pagination {
  display: flex;
}
.p-tutorial__splide .splide__arrows .splide__arrow {
  width: 3rem;
  height: 3rem;
  background: transparent;
}
.is-mobile .p-tutorial__splide .splide__arrows .splide__arrow {
  width: 1.5rem;
  height: 1.5rem;
}
.p-tutorial__splide .splide__arrows .splide__arrow:not(:disabled) {
  opacity: 1;
}
.p-tutorial__splide .splide__arrows .splide__arrow--next {
  right: 0;
}
.p-tutorial__splide .splide__arrows .splide__arrow--prev {
  left: 0;
}
.p-tutorial__splide .splide__pagination {
  gap: 0.875rem;
}
.is-mobile .p-tutorial__splide .splide__pagination {
  bottom: -0.3125rem;
  gap: 0.1875rem;
}
.p-tutorial__splide .splide__pagination .splide__pagination__page {
  width: 0.8125rem;
  height: 0.8125rem;
  background: #b3e1d3;
}
.is-mobile .p-tutorial__splide .splide__pagination .splide__pagination__page {
  width: 0.4375rem;
  height: 0.4375rem;
}
.p-tutorial__splide .splide__pagination .splide__pagination__page.is-active {
  background: var(--main-color);
  transform: scale(1);
}

@layer project {
  .p-map {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: auto;
  }
  @supports (height: 100svh) {
    .p-map {
      height: 100svh;
    }
  }
  .home.is-tablet .p-map {
    height: calc(100vh - var(--theater-bar) * 2);
  }
  @supports (height: 100svh) {
    .home.is-tablet .p-map {
      height: calc(100svh - var(--theater-bar) * 2);
    }
  }
  .p-map.is-touch {
    overflow: hidden;
  }
  .p-map a,
  .p-map button {
    position: absolute;
    transform: translate(-50%, -50%);
  }
  .p-map a[class*=p-map__],
  .p-map button[class*=p-map__] {
    z-index: 2;
  }
  .p-map a.p-map__info,
  .p-map button.p-map__info {
    z-index: 4;
  }
  .p-map button {
    padding: 0;
    margin: 0;
    cursor: pointer;
    background-color: transparent;
    border: none;
  }
  .p-map__bg {
    position: relative;
    width: 157.5rem;
    height: 67.5rem;
    transform-origin: 0 0;
  }
  .p-map__bg video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    min-width: unset;
    max-width: initial;
    height: 100%;
    min-height: unset;
    pointer-events: none;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.4s ease;
  }
  .p-map__bg video.is-hidden {
    z-index: 0;
    opacity: 0;
  }
  .p-map__label {
    position: absolute;
    z-index: 2;
  }
  .p-map__label img {
    width: 19.75rem;
  }
  .p-map__label.-colosseum {
    top: 47.5rem;
    left: 116.0625rem;
  }
  .p-map__label.-garden {
    top: 23.75rem;
    left: 119.625rem;
  }
  .p-map__label.-small-worlds {
    top: 50.625rem;
    left: 43.125rem;
  }
  .p-map__label.-tennis-mori-station {
    top: 2.8125rem;
    left: 68.75rem;
  }
  .p-map__label.-toyosu-market {
    top: 13.3125rem;
    left: 20rem;
  }
  .p-map__info,
  .p-map__magazine {
    transform-origin: bottom right;
  }
  @media (hover: hover) {
    .p-map__info img,
    .p-map__magazine img,
    .p-map__vr img {
      transition: transform 0.3s ease-in-out;
    }
    .p-map__info:hover img,
    .p-map__magazine:hover img,
    .p-map__vr:hover img {
      transform: scale(1.1);
    }
  }
  .p-map__info {
    top: 15.625rem;
    left: 52.8125rem;
    width: 11.875rem;
    text-align: left;
  }
  .p-map__magazine {
    top: 29.6875rem;
    left: 36.25rem;
    width: 13.125rem;
    text-align: left;
  }
  .p-map__vr {
    top: 46.875rem;
    left: 98.125rem;
    display: flex;
    align-items: end;
    justify-content: end;
    width: 12.5rem;
    height: 12.5rem;
    transform-origin: bottom left;
  }
  .p-map__pin {
    display: block;
    width: 12.5rem;
    height: 13.75rem;
    text-align: center;
  }
  .p-map__pin img {
    width: 4.375rem;
  }
  .p-map__pin.-pin1 {
    top: 19.6875rem;
    left: 64.0625rem;
  }
  .p-map__pin.-pin2 {
    top: 24.375rem;
    left: 73.75rem;
  }
  .p-map__pin.-pin3 {
    top: 28.125rem;
    left: 83.25rem;
  }
  .p-map__pin.-pin4 {
    top: 32.8125rem;
    left: 92.625rem;
  }
  .p-map__pin.-pin5 {
    top: 36.375rem;
    left: 101.4375rem;
  }
  .p-map__pin.-pin6 {
    top: 31.125rem;
    left: 48.5625rem;
  }
  .p-map__pin.-pin7 {
    top: 38.3125rem;
    left: 67.3125rem;
  }
  .p-map__pin.-pin8 {
    top: 47.8125rem;
    left: 86.0625rem;
  }
  @media (hover: hover) {
    .p-map__pin:hover img {
      animation: bounce 0.3s ease-in-out;
    }
  }
  @media (width >= 1921px), (height >= 1081px) {
    .p-map__bg {
      width: max(157.5rem, max(100vw, 233.3333333333vh));
      height: max(67.5rem, max(100vh, 42.8571428571vw));
    }
    .p-map__bg video {
      width: 100%;
      min-width: unset;
      height: 100%;
      min-height: unset;
      object-fit: cover;
    }
    .p-map__label {
      width: 12.54%;
    }
    .p-map__label img {
      width: 100%;
    }
    .p-map__label.-colosseum {
      top: 70.37%;
      left: 73.69%;
    }
    .p-map__label.-garden {
      top: 35.19%;
      left: 75.95%;
    }
    .p-map__label.-small-worlds {
      top: 75%;
      left: 27.38%;
    }
    .p-map__label.-tennis-mori-station {
      top: 4.17%;
      left: 43.65%;
    }
    .p-map__label.-toyosu-market {
      top: 19.72%;
      left: 12.7%;
    }
    .p-map__info {
      top: 23.15%;
      left: 33.53%;
      width: 7.14%;
    }
    .p-map__info img {
      width: 64.76%;
      height: auto;
    }
    .p-map__magazine {
      top: 43.98%;
      left: 23.02%;
      width: 8.33%;
    }
    .p-map__magazine img {
      width: 64.76%;
      height: auto;
    }
    .p-map__vr {
      top: 69.44%;
      left: 62.3%;
      width: 7.94%;
      height: 18.52%;
    }
    .p-map__vr img {
      width: 64.76%;
      height: auto;
    }
    .p-map__pin {
      width: 7.94%;
      height: 20.37%;
    }
    .p-map__pin img {
      width: 35%;
    }
    .p-map__pin.-pin1 {
      top: 29.17%;
      left: 40.67%;
    }
    .p-map__pin.-pin2 {
      top: 36.11%;
      left: 46.83%;
    }
    .p-map__pin.-pin3 {
      top: 41.67%;
      left: 52.86%;
    }
    .p-map__pin.-pin4 {
      top: 48.61%;
      left: 58.81%;
    }
    .p-map__pin.-pin5 {
      top: 53.89%;
      left: 64.4%;
    }
    .p-map__pin.-pin6 {
      top: 46.11%;
      left: 30.83%;
    }
    .p-map__pin.-pin7 {
      top: 56.76%;
      left: 42.74%;
    }
    .p-map__pin.-pin8 {
      top: 70.83%;
      left: 54.64%;
    }
  }
  @keyframes bounce {
    0%, 100% {
      transform: translateY(-50%) scale(1);
    }
    50% {
      transform: translateY(-50%) scale(1.1);
    }
  }
}
@layer project {
  .p-not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    min-height: 37.5rem;
    padding-block: 5rem;
    text-align: center;
  }
  @supports (height: 100svh) {
    .p-not-found {
      height: 100svh;
    }
  }
  @media screen and (max-width: 767px) {
    .p-not-found {
      min-height: 53.3333333333vw;
      padding-block: 8vw;
    }
  }
  .p-not-found__ttl {
    margin-block-end: 2.5rem;
    font-size: 7.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--main-color);
  }
  @media screen and (max-width: 767px) {
    .p-not-found__ttl {
      margin-block-end: 4vw;
      font-size: 10.6666666667vw;
    }
  }
  .p-not-found__txt {
    margin-block-end: 3.75rem;
    font-size: 1.25rem;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .p-not-found__txt {
      margin-block-end: 6.6666666667vw;
      font-size: 3.7333333333vw;
      line-height: 1.7;
    }
  }
}
@layer project {
  .p-orientation {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: #fff;
    text-align: center;
    background: #595959;
  }
  .p-orientation__card {
    width: 92%;
  }
  @media (orientation: portrait) and ((pointer: coarse) or (hover: none)) {
    .p-orientation.css-only {
      display: flex;
    }
  }
  .no-scroll {
    height: 100vh;
    overflow: hidden;
    touch-action: none;
  }
  @supports (height: 100svh) {
    .no-scroll {
      height: 100svh;
    }
  }
}
@layer project {
  .p-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    padding: 0.625rem 2.5rem 1.25rem;
  }
  .is-mobile .p-info {
    padding: 0.3125rem 1.875rem 0.9375rem;
  }
  .p-info__head {
    position: relative;
    padding-bottom: 0.625rem;
    margin-bottom: 2.5rem;
    text-align: center;
  }
  .p-info__head::before {
    position: absolute;
    bottom: -0.3125rem;
    left: 1.375rem;
    z-index: 2;
    display: block;
    width: 5.625rem;
    height: auto;
    aspect-ratio: 532/313;
    content: "";
    background: url("https://www.housing-messe.com/vr-ariake/wp-content/uploads/2026/08/deco_home.png") no-repeat 0/contain;
  }
  @media (width <= 1150px) {
    body:not(.is-tablet, .is-mobile) .p-info__head::before {
      left: 0;
      width: 5rem;
    }
  }
  @media (width <= 1050px) {
    body:not(.is-tablet, .is-mobile) .p-info__head::before {
      display: none;
    }
  }
  .is-tablet .p-info__head::before {
    bottom: -0.3125rem;
    width: 5rem;
  }
  .is-mobile .p-info__head::before {
    bottom: -0.1875rem;
    width: 3.6875rem;
  }
  .p-info__head::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    background-color: var(--main-color);
    border-radius: 100vmax;
  }
  .is-mobile .p-info__head::after {
    height: 1px;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-info__head::after {
      height: 2px;
    }
  }
  .is-tablet .p-info__head {
    padding-bottom: 0.625rem;
    margin-bottom: 1.875rem;
  }
  .is-mobile .p-info__head {
    padding-bottom: 0.125rem;
    margin-bottom: 0.9375rem;
  }
  .p-info.-modelhouse .p-info__head {
    margin-bottom: 1.25rem;
  }
  .is-mobile .p-info.-modelhouse .p-info__head {
    margin-bottom: 0.9375rem;
  }
  .p-info__main-ttl {
    display: inline-block;
    padding-block: 0.3125rem 0.625rem;
    padding-left: 4.0625rem;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1;
    color: var(--main-color);
    background: url("https://www.housing-messe.com/vr-ariake/wp-content/uploads/2026/08/icon_megaphone.png") no-repeat left center/3.4375rem;
  }
  .is-tablet .p-info__main-ttl {
    padding-bottom: 0.5rem;
    padding-left: 3.75rem;
    background-size: auto 2.5rem;
  }
  .is-mobile .p-info__main-ttl {
    padding-top: 0.3125rem;
    padding-bottom: 0.625rem;
    padding-left: 2.375rem;
    font-size: 1.0625rem;
    background-size: auto 1.625rem;
  }
  .p-info__body {
    padding-inline: 0.3125rem;
  }
  .p-info__row {
    display: flex;
    gap: 3.125rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-info__row {
      gap: 1.875rem;
    }
  }
  .p-info__row .p-info__img {
    flex: 0 0 14.375rem;
  }
  .is-tablet .p-info__row .p-info__img {
    flex: 0 0 11.25rem;
  }
  .is-mobile .p-info__row .p-info__img {
    flex: 0 0 36%;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-info__row .p-info__img {
      flex: 0 0 10rem;
    }
  }
  .p-info__row .p-info__img img {
    width: 100%;
  }
  .p-info__row .p-info__content {
    flex: 1;
  }
  .p-info__row .p-info__ttl {
    margin-bottom: 0.625rem;
  }
  .p-info.-modelhouse .p-info__row + .p-info__row {
    padding-top: 3.75rem;
    margin-top: 3.75rem;
    border-top: 1px solid #ddd;
  }
  .p-info.-modelhouse .p-info__row .p-info__img {
    flex: 0 0 36%;
    order: 2;
  }
  .p-info.-modelhouse .p-info__row .p-info__content {
    flex: 1;
    order: 1;
  }
  .p-info__row + .p-info__btn-wrap {
    margin-top: 1.6875rem;
  }
  .p-info.-modelhouse .p-info__img {
    margin-top: 1.5625rem;
  }
  .p-info__section {
    padding-inline: 3rem;
    margin-top: 4.5rem;
  }
  .is-tablet .p-info__section {
    padding-inline: 1.875rem;
    margin-top: 3.125rem;
  }
  .is-mobile .p-info__section {
    padding-inline: 1.25rem;
    margin-top: 2.5rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-info__section {
      margin-top: 2.5rem;
    }
  }
  .p-info__ttl {
    margin-bottom: 1.25rem;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--main-color);
  }
  .is-tablet .p-info__ttl {
    margin-bottom: 0.9375rem;
    font-size: 2rem;
  }
  .is-mobile .p-info__ttl {
    margin-bottom: 0.625rem;
    font-size: 1.0625rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-info__ttl {
      font-size: 1.875rem;
    }
  }
  .p-info__desc {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .is-tablet .p-info__desc {
    font-size: 1.25rem;
  }
  .is-mobile .p-info__desc {
    font-size: 1rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-info__desc {
      font-size: 1.125rem;
    }
  }
  .p-info__btn-wrap {
    text-align: center;
  }
  .p-info__desc + .p-info__btn-wrap {
    margin-top: 1.25rem;
  }
  .p-info__map iframe {
    width: 100%;
  }
  .is-tablet .p-info__map iframe {
    height: 18.75rem;
  }
  .is-mobile .p-info__map iframe {
    height: 12.5rem;
  }
  .p-info__dl div + div {
    margin-top: 2.25rem;
  }
  .is-mobile .p-info__dl div + div {
    margin-top: 1.25rem;
  }
  .p-info__dl div dt {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--main-color);
  }
  .is-tablet .p-info__dl div dt {
    font-size: 1.5rem;
  }
  .is-mobile .p-info__dl div dt {
    font-size: 1.0625rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-info__dl div dt {
      font-size: 1.5rem;
    }
  }
  .p-info__dl div dd {
    font-size: 1.625rem;
    line-height: 1.5;
  }
  .is-tablet .p-info__dl div dd {
    font-size: 1.375rem;
  }
  .is-mobile .p-info__dl div dd {
    font-size: 1rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-info__dl div dd {
      font-size: 1.25rem;
    }
  }
  .p-info__map + .p-info__dl {
    margin-top: 1.875rem;
  }
  .is-mobile .p-info__map + .p-info__dl {
    margin-top: 1.25rem;
  }
  .p-info__dl.-type-b div dd {
    padding-left: 1em;
  }
  /**
   * モデルハウス情報
   */
  .p-info__modelhouse-ttl {
    margin-top: 0.4375rem;
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--main-color);
  }
  .is-tablet .p-info__modelhouse-ttl {
    font-size: 1.375rem;
  }
  .is-mobile .p-info__modelhouse-ttl {
    font-size: 1.0625rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-info__modelhouse-ttl {
      font-size: 1.5rem;
    }
  }
  .p-info__modelhouse-time {
    font-size: 1rem;
  }
  .is-mobile .p-info__modelhouse-time {
    font-size: 0.875rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-info__modelhouse-time {
      font-size: 0.875rem;
    }
  }
  .p-info__modelhouse-desc {
    margin-top: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .is-tablet .p-info__modelhouse-desc {
    font-size: 1.125rem;
  }
  .is-mobile .p-info__modelhouse-desc {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-info__modelhouse-desc {
      font-size: 1rem;
    }
  }
  .p-info__modelhouse-link-wrap {
    margin-top: 1.25rem;
  }
  .p-info__modelhouse-link {
    padding-right: 1.5em;
    font-size: 1.25rem;
    color: var(--main-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    background: url("https://www.housing-messe.com/vr-ariake/wp-content/uploads/2026/09/icon_blank.png") no-repeat right center/1em;
  }
  .is-tablet .p-info__modelhouse-link {
    font-size: 1.125rem;
  }
  .is-mobile .p-info__modelhouse-link {
    font-size: 1rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-info__modelhouse-link {
      font-size: 1rem;
    }
  }
  @media (any-hover: hover) {
    .p-info__modelhouse-link:hover {
      text-decoration: none;
    }
  }
  .p-info__loading {
    padding: 2.5rem;
    font-size: 1.25rem;
    text-align: center;
  }
  .p-info__empty {
    padding: 2.5rem;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--main-color);
    text-align: center;
  }
  .is-mobile .p-info__empty {
    padding-block: 1.25rem;
    font-size: 1rem;
  }
}
@layer project {
  .p-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
    width: 100%;
    height: 100%;
    overflow: clip;
    background: rgba(136, 136, 136, 0.5);
    opacity: 0;
    transition-duration: 0.4s;
    transition-property: opacity;
  }
  .p-modal.is-show {
    opacity: 1;
  }
  .p-modal.is-show .p-modal__content {
    margin-top: 0;
  }
  .p-modal:focus-visible {
    outline: none;
  }
  .p-modal__wrap {
    position: relative;
    inset-inline: 0;
    top: 50%;
    width: min(100% - 6.25rem, 75rem);
    height: fit-content;
    max-height: 90vh;
    margin-inline: auto;
    transform: translateY(-50%);
    transition-duration: 0.4s;
    transition-property: margin;
  }
  @supports (max-height: 90svh) {
    .p-modal__wrap {
      max-height: 90svh;
    }
  }
  .p-modal__content {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: inherit;
    background: #fff;
    border: 4px solid var(--main-color);
  }
  .is-mobile .p-modal__content {
    border-width: 2px;
  }
  .p-modal__simplebar {
    position: relative;
    box-sizing: border-box;
    flex: 1;
    min-height: 0;
    padding-right: 1.6875rem;
    margin-right: -1.6875rem;
  }
  .is-mobile .p-modal__simplebar {
    padding-right: 1.25rem;
    margin-right: -1.25rem;
  }
  .p-modal__close-btn {
    position: absolute;
    top: -1.875rem;
    right: -1.875rem;
    width: 4.25rem;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: none;
  }
  .is-mobile .p-modal__close-btn {
    top: -0.625rem;
    right: -0.625rem;
    width: 1.875rem;
  }
  @media (hover: hover) {
    .p-modal__close-btn {
      transition-timing-function: ease-in-out;
      transition-duration: 0.3s;
      transition-property: filter;
    }
    .p-modal__close-btn:hover {
      filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6));
    }
  }
}
@layer project {
  .p-modelhouse {
    --content-adjust: 11.875rem;
    position: absolute;
    top: 5.625rem;
    right: 2.5rem;
    z-index: 12;
    width: min(100%, 39.375rem);
    max-height: calc(100svh - var(--content-adjust));
    padding: 0.9375rem 3.5rem;
    background-color: #fff;
    border: 2px solid var(--main-color);
  }
  @media (768px <= width <= 1060px) {
    .p-modelhouse {
      --content-adjust: 14.375rem;
      top: 7.5rem;
    }
  }
  .is-mobile .p-modelhouse {
    --content-adjust: 1.875rem;
    top: 0.625rem;
    right: 3.125rem;
    width: min(100%, 21.875rem);
    padding: 0.5rem 1.75rem 0.9375rem;
  }
  .is-tablet .p-modelhouse {
    --content-adjust: 13.75rem;
    top: 5.625rem;
    right: 1.875rem;
    width: min(100%, 39.375rem);
    padding: 0.9375rem 3.5rem;
  }
  .p-modelhouse__content {
    max-height: calc(100svh - (var(--content-adjust) + 7.5rem));
    padding-right: 1.875rem;
    padding-bottom: 1.875rem;
    margin-right: -1.875rem;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .is-mobile .p-modelhouse__content {
    padding-right: 1.25rem;
    margin-right: -1.25rem;
  }
  .is-tablet .p-modelhouse__content {
    padding-right: 1.875rem;
    margin-right: -1.875rem;
  }
  .p-modelhouse__maker {
    margin-bottom: 1.25rem;
    font-size: 2.125rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--main-color);
  }
  .is-mobile .p-modelhouse__maker {
    margin-bottom: 0.625rem;
    font-size: 1.125rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-modelhouse__maker {
      font-size: 1.875rem;
    }
  }
  .p-modelhouse__name {
    margin-block: 0 0.4375rem;
    font-size: 1.6875rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--main-color);
  }
  .is-mobile .p-modelhouse__name {
    margin-bottom: 0.3125rem;
    font-size: 1rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-modelhouse__name {
      font-size: 1.5rem;
    }
  }
  .p-modelhouse__desc {
    font-size: 1.125rem;
    line-height: 1.75;
  }
  .is-mobile .p-modelhouse__desc {
    font-size: 0.875rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-modelhouse__desc {
      font-size: 1rem;
    }
  }
  .p-modelhouse__info-ttl {
    margin-block: 1.5625rem 0.4375rem;
    font-size: 1.6875rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--main-color);
  }
  .is-mobile .p-modelhouse__info-ttl {
    margin-block: 0.9375rem 0.3125rem;
    font-size: 1rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-modelhouse__info-ttl {
      font-size: 1.5rem;
    }
  }
  .p-modelhouse__info div {
    display: grid;
    grid-template-columns: 9em 1fr;
    gap: 2.5rem;
  }
  .is-mobile .p-modelhouse__info div {
    grid-template-columns: 7em 1fr;
    gap: 1.25rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-modelhouse__info div {
      gap: 1.25rem;
    }
  }
  .p-modelhouse__info div dt,
  .p-modelhouse__info div dd {
    font-size: 1.125rem;
    line-height: 1.75;
  }
  .is-mobile .p-modelhouse__info div dt,
  .is-mobile .p-modelhouse__info div dd {
    font-size: 0.875rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-modelhouse__info div dt,
    body:not(.is-tablet, .is-mobile) .p-modelhouse__info div dd {
      font-size: 1rem;
    }
  }
  .p-modelhouse__info div dt {
    font-weight: 700;
  }
  .p-modelhouse__maker-msg-ttl {
    margin-block: 2.375rem 0.3125rem;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--main-color);
  }
  .is-mobile .p-modelhouse__maker-msg-ttl {
    margin-block: 1.5625rem 0.3125rem;
    font-size: 1rem;
  }
  @media (width <= 1400px) {
    body:not(.is-tablet, .is-mobile) .p-modelhouse__maker-msg-ttl {
      font-size: 1rem;
    }
  }
  .p-modelhouse__btn-wrap {
    margin-top: 2.5rem;
    text-align: center;
  }
}
.p-modelhouse__img {
  margin-block: 1.5625rem 0;
}

@layer utilities {
  @media screen and (max-width: 767px) {
    .u-hidden-ltSP {
      display: none;
    }
  }
  @media screen and (max-width: 1023px) {
    .u-hidden-ltTAB {
      display: none;
    }
  }
  @media screen and (min-width: 768px) {
    .u-hidden-gtTAB {
      display: none;
    }
  }
  @media screen and (min-width: 1024px) {
    .u-hidden-gtPC {
      display: none;
    }
  }
}
@layer utilities {
  .screen-reader-text,
  .u-screen-reader {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    word-wrap: normal;
  }
}
@layer utilities {
  .u-ta-left {
    text-align: left;
  }
  .u-ta-center {
    text-align: center;
  }
  .u-ta-right {
    text-align: right;
  }
  @media screen and (max-width: 767px) {
    .u-SP-ta-left {
      text-align: left;
    }
    .u-SP-ta-center {
      text-align: center;
    }
    .u-SP-ta-right {
      text-align: right;
    }
  }
}
@layer utilities {
  .u-txt-uppercase {
    text-transform: uppercase;
  }
}
@layer utilities {
  .u-br {
    display: block;
  }
  @media screen and (min-width: 768px) {
    .u-br-pc {
      display: block;
    }
  }
  @media screen and (max-width: 767px) {
    .u-br-sp {
      display: block;
    }
  }
}