@charset "UTF-8";
/*------------------------------
 common
------------------------------*/
html.is-fixed {
  height: 100%;
  overflow: hidden;
  scrollbar-gutter: stable !important;
}

button {
  color: #333 !important;
}

.z-index-9 {
  z-index: 9;
}

.z-index-99 {
  z-index: 99;
}

.z-index-999 {
  z-index: 999;
}

.link-hover {
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.link-disabled {
  pointer-events: none;
}

.text-mb-0 > * {
  margin-bottom: 0;
}

.text-ellipsis-1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-ellipsis-2,
.text-ellipsis-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-ellipsis-2 {
  -webkit-line-clamp: 2;
}

.text-ellipsis-3 {
  -webkit-line-clamp: 3;
}

.scrollbar-disabled {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-disabled::-webkit-scrollbar {
  display: none;
}

.icon-external-link {
  object-fit: contain;
  width: 1em;
}

.external-links-dark,
.external-links-white {
  position: relative;
  padding-left: 1.5em;
}

.external-links-dark::after,
.external-links-white::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: -0.5em;
  width: 1em;
  height: 1em;
  transform: translateY(-55%);
}

.external-links-dark::after {
  background-image: url("../images/common/external_links.svg");
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.external-links-white::after {
  background-image: url("../images/common/external_links_white.svg");
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.link-button-more {
  position: relative;
  border: 1px solid #1c1c1c;
  border-radius: 100vmax;
  max-width: 254px;
  width: 100%;
  text-align: center;
  padding-block: 15px;
}

.link-button-more::before {
  position: absolute;
  content: "";
  border-right: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
  width: 0.5em;
  height: 0.5em;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(-45deg);
}

.white.link-button-more,
.white.link-button-more::before {
  border-color: #fff;
}

.single-content-container,
.single-user-interview-container {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.single-content-container mark {
  padding: 0 !important;
}

.single-content-container p {
  margin-bottom: 1rem !important;
}

.single-content-container h1 {
  font-size: 48px;
  font-weight: bold;
  padding-top: 50px;
  margin-bottom: 30px;
}

.single-content-container h2 {
  font-size: 26px;
  font-weight: bold;
  border-bottom: 2px solid #333333;
  padding-top: 50px;
  padding-bottom: 8px;
  margin-bottom: 30px;
}

.single-content-container h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  padding-top: 24px;
  margin-bottom: 32px;
}

.single-content-container h4 {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  padding-top: 1.25em;
  margin-bottom: 1.75em;
}

.single-content-container h5 {
  font-size: 14px;
  font-weight: bold;
  line-height: 2;
  padding-top: 1.5em;
  margin-bottom: 1.5em;
}

.single-content-container h6 {
  font-size: 12px;
  font-weight: bold;
  line-height: 2;
  padding-top: 1.5em;
  margin-bottom: 1em;
}

.single-content-container figure {
  margin-bottom: 30px;
}

.single-content-container ul,
.single-content-container ol {
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  margin-bottom: 35px;
}

.single-content-container ul li {
  list-style-type: disc !important;
}

.single-content-container ol li {
  list-style-type: decimal !important;
}

.single-user-interview-container h2 {
  position: relative;
  font-size: 20px !important;
  letter-spacing: 0.1em;
  font-family: "FOT-筑紫ゴシック Pro B", "TsukuGoPro-B", sans-serif;
  line-height: 1.75;
  padding-top: 2em;
  margin-bottom: 30px !important;
}

.single-user-interview-container h2::before {
  position: absolute;
  content: "Q";
  height: 100%;
  font-family: "FOT-筑紫ゴシック Pro B", "TsukuGoPro-B", sans-serif;
  line-height: 1.75;
  font-size: 20px !important;
  top: 0;
  left: 0;
  /* transform: translateY(-50%); */
}

.single-user-interview-container p {
  font-size: 16px !important;
  line-height: 1.875em;
  margin-bottom: 50px !important;
}

.single-user-interview-container figure {
  margin-bottom: 32px;
}

.single-user-interview-container figure img {
  width: 100% !important;
}

@media (any-hover: hover) {
  .link-hover:hover {
    opacity: 0.6;
  }

  .hover-pointer:hover {
    cursor: pointer;
  }
}

@media screen and (min-width: 992px) {
  a[href^="tel:"] {
    pointer-events: none;
  }

  .text-lg-nowrap {
    white-space: nowrap;
  }

  .text-ellipsis-lg-1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .text-ellipsis-lg-2 {
    -webkit-line-clamp: 2;
  }

  .text-ellipsis-lg-3 {
    -webkit-line-clamp: 3;
  }

  .single-content-container h2 {
    font-size: 32px;
  }

  .single-content-container h3 {
    font-size: 22px;
  }

  .single-user-interview-container h2 {
    padding-left: 2em;
    padding-top: 0;
  }

  .single-user-interview-container h2,
  .single-user-interview-container h2::before {
    line-height: 1.5;
  }

  .single-user-interview-container h2::before {
    height: 100%;
    top: 0;
    left: 0;
  }
}

/*------------------------------
 privacy-policy
------------------------------*/
#privacyPolicy ul,
#privacyPolicy ul li {
  list-style-type: disc !important;
}

#privacyPolicy ol,
#privacyPolicy ol li {
  list-style-type: decimal !important;
}

#privacyPolicy ol {
  padding-left: 1.25rem !important;
}

#privacyPolicy ol li ol {
  padding-left: 2rem !important;
}

/*------------------------------
 common
------------------------------*/

.common-pb {
  padding-bottom: 37px;
}

.common-px {
  padding-right: 24px;
  padding-left: 24px;
}

.gap-y-32 {
  gap: 0 32px;
}

.gap-y-56 {
  gap: 0 56px;
}

@media screen and (min-width: 992px) {
  .common-pb {
    padding-bottom: 70px;
  }

  .common-px {
    padding-right: 12px;
    padding-left: 12px;
  }

  .gap-y-lg-56 {
    gap: 0 56px;
  }
}

/*------------------------------
 パーツ
------------------------------*/

.common-btn {
  display: flex;
  align-items: center;
  width: 184.4px;
  height: 74.7px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  padding-left: 24px;
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.common-btn::before {
  content: "";
  width: 8.63px;
  height: 6.92px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
}

.--orange.common-btn {
  background-image: url("../images/top/common_btn_frame_or.svg");
}

.--orange.common-btn::before {
  background-image: url("../images/top/arrow_or.svg");
}

.--white.common-btn {
  background-image: url("../images/top/common_btn_frame_wh.svg");
}

.--white.common-btn::before {
  background-image: url("../images/top/arrow_wh.svg");
}

.--voice-white.common-btn {
  background-image: url("../images/voice/voice_btn.svg");
  color: var(--main-orange);
}

.--voice-white.common-btn::before {
  background-image: url("../images/top/arrow_or.svg");
}

.--orange-fill.common-btn {
  background-image: url("../images/about/common_btn_fill_or.svg");
}

.--orange-fill.common-btn::before {
  background-image: url("../images/top/arrow_wh.svg");
}

.common-link {
  display: inline-flex;
  align-items: center;
  gap: 0 14px;
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.common-link::after {
  content: "";
  width: 8.63px;
  height: 6.92px;
  background-image: url("../images/top/arrow_or.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.common-link:hover {
  opacity: 0.6;
}

.common-link-wh::after {
  background-image: url("../images/top/arrow_wh.svg");
}

@media (any-hover: hover) {
  .--orange.common-btn:hover {
    opacity: 0.6;
  }
  .--voice-white.common-btn:hover {
    opacity: 0.6;
  }
}

/*------------------------------
 アニメーション
------------------------------*/

.reveal-item {
  opacity: 0;
  transition-property:
    opacity,
    transform,
    filter,
    -webkit-filter;
  transition-duration: var(--dur, 0.8s);
  transition-timing-function: var(--ease, cubic-bezier(0.25, 0.25, 0.75, 0.75));
  transition-delay: calc(var(--delay, 0.2s) + (var(--stagger, 0.2s) * var(--i, 0)));
  will-change:
    opacity,
    transform,
    filter,
    -webkit-filter;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.reveal-item.is-in {
  opacity: 1;
  transform: none;
  filter: none;
  -webkit-filter: none;
}

/* ブラー＋フェード */
.reveal-blur {
  filter: blur(var(--blur, 0.3em));
  -webkit-filter: blur(var(--blur, 0.3em));
}

/* スライドアップ+フェード */
.reveal-up {
  transform: translateY(var(--up, 1rem));
}

/* ポップ+フェード */
.reveal-pop {
  transform: scale(var(--pop-from, 0.92));
}

/* フェード単体 */
.reveal-fade {
  transform: none;
}

/*------------------------------
 TOP
------------------------------*/

.top-bg {
  background-color: #f1f1f1;
}

/* FV */
.top-fv {
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 710px;
}

@supports (height: 100dvh) {
  .top-fv {
    height: 100dvh;
  }
}

.top-fv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.top-fv-bg picture,
.top-fv-bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.top-fv-bg img {
  object-fit: cover;
  object-position: center bottom;
  border-bottom: 1px solid #f1f1f1;
}

.top-fv .fv-item {
  position: absolute;
  opacity: 0;
  transition:
    transform 1.6s ease-out,
    opacity 1.6s ease-out;
  will-change: transform, opacity;
  z-index: 1;
}

.top-fv .fv-item picture,
.top-fv .fv-item img {
  display: block;
  width: 100%;
  height: auto;
}

.top-fv .fv-item-tl {
  top: -1px;
  left: 0;
  width: 36.6%;
  transform: translateX(-120%);
}

.top-fv .fv-item-tr {
  top: -1px;
  right: 0;
  width: 23.8%;
  transform: translateX(120%);
}

.top-fv .fv-item-bl {
  bottom: -1px;
  left: 0;
  width: 60.2%;
  transform: translateX(-120%);
}

.top-fv .fv-item-br {
  bottom: -1px;
  right: -1px;
  width: 48.7%;
  transform: translateX(120%);
}

.top-fv.is-animated .fv-item {
  opacity: 1;
}

.top-fv.is-animated .fv-item-tl,
.top-fv.is-animated .fv-item-tr,
.top-fv.is-animated .fv-item-bl,
.top-fv.is-animated .fv-item-br {
  transform: translateX(0);
}

/* タイトル */
.top-fv-content {
  position: absolute;
  top: 12.64%;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: min(22.31vw, 87px);
  max-width: calc(100% - 32px);
  pointer-events: none;
}

.top-fv-title {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
}

.top-fv-title picture {
  display: block;
  width: 100%;
  height: 100%;
}

.top-fv-title img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

@media screen and (min-width: 768px) {
  .top-fv {
    height: 100vh;
    margin-top: 0;
    max-height: unset;
  }

  @supports (height: 100dvh) {
    .top-fv {
      height: 100dvh;
    }
  }
  .top-fv .fv-item-tl {
    top: 0;
    left: 0;
    width: 31.4%;
    transform: translateX(-120%);
  }
}

@media screen and (min-width: 992px) {
  .top-fv {
    height: 100vh;
    margin-top: 0;
    min-height: 1000px;
  }

  .top-fv .fv-item-tl {
    top: 0;
    left: 0;
    width: 36.4%;
    transform: translateX(-120%);
  }

  .top-fv .fv-item-tr {
    top: 0;
    right: 0;
    width: 23.6%;
    transform: translateX(120%);
  }

  .top-fv .fv-item-bl {
    bottom: -1px;
    left: 0;
    width: 59.7%;
    transform: translateX(-120%);
  }

  .top-fv .fv-item-br {
    bottom: -1px;
    right: -1px;
    width: 48.6%;
    transform: translateX(120%);
  }

  .top-fv-content {
    top: 20.66%;
    bottom: 24px;
    width: min(10.9vw, 157px);
  }
}

/*msg*/

.top-msg-ttl img {
  max-width: 126px;
}

@media screen and (min-width: 992px) {
  .top-msg-ttl img {
    max-width: 180px;
  }
}

/*SV*/

.top-sv {
  margin-bottom: 160px;
}

.top-sv-wrapper {
  width: 100%;
}

.top-sv-inner {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 351 / 838;
}

.top-sv-inner figure {
  position: absolute;
  display: block;
}

.top-sv-image01 {
  top: calc(0 / 838 * 100%);
  left: calc(9 / 351 * 100%);
  width: calc(216 / 351 * 100%);
  height: calc(243 / 838 * 100%);
}

.top-sv-image02 {
  top: calc(267 / 838 * 100%);
  right: calc(0 / 351 * 100%);
  width: calc(239 / 351 * 100%);
  height: calc(159 / 838 * 100%);
}

.top-sv-image03 {
  top: calc(353 / 838 * 100%);
  left: calc(0 / 351 * 100%);
  width: calc(139 / 351 * 100%);
  height: calc(139 / 838 * 100%);
}

.top-sv-image04 {
  bottom: calc(118 / 838 * 100%);
  left: calc(80 / 351 * 100%);
  width: calc(136 / 351 * 100%);
  height: calc(204 / 838 * 100%);
}

.top-sv-image05 {
  bottom: calc(0 / 838 * 100%);
  right: calc(0 / 351 * 100%);
  width: calc(164 / 351 * 100%);
  height: calc(164 / 838 * 100%);
}

@media screen and (min-width: 992px) {
  .top-sv {
    margin-bottom: 360px;
  }

  .top-sv-wrapper {
    padding-right: 100px;
  }

  .top-sv-inner {
    aspect-ratio: 648 / 1502;
  }

  .top-sv-image01 {
    top: calc(0 / 1502 * 100%);
    left: calc(15 / 648 * 100%);
    width: calc(371 / 648 * 100%);
    height: calc(417 / 1502 * 100%);
  }

  .top-sv-image02 {
    top: calc(537 / 1502 * 100%);
    right: calc(45 / 648 * 100%);
    width: calc(410 / 648 * 100%);
    height: calc(273 / 1502 * 100%);
  }

  .top-sv-image03 {
    top: calc(722 / 1502 * 100%);
    left: calc(0 / 648 * 100%);
    width: calc(200 / 648 * 100%);
    height: calc(200 / 1502 * 100%);
  }

  .top-sv-image04 {
    bottom: calc(121 / 1502 * 100%);
    left: calc(148 / 648 * 100%);
    width: calc(234 / 648 * 100%);
    height: calc(350 / 1502 * 100%);
  }

  .top-sv-image05 {
    bottom: calc(0 / 1502 * 100%);
    right: calc(0 / 648 * 100%);
    width: calc(282 / 648 * 100%);
    height: calc(282 / 1502 * 100%);
  }
}

/*WORKS*/

.vertical-copy .v-line {
  height: 142px;
}

.vertical-copy .v-line > span {
  display: block;
  line-height: 1;
}

.top-works-trim-picture {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}

.top-works-trim-picture img {
  max-width: none;
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.top-works-01-picture {
  position: relative;
  z-index: 2;
}

.top-works-01-picture img {
  width: 105.9%;
}

.top-works-01-desc {
  position: relative;
  z-index: 1;
  margin-top: -95px;
}

.top-works-01-path {
  max-width: 308px;
  width: 100%;
}

.top-works-01-desc {
  background-image: url(../images/top/top_works_01_desc.svg);
  background-position: center bottom;
  background-size: 117%;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 390 / 297;
  padding-top: 33%;
}

.top-works-02-picture {
  position: relative;
  z-index: 1;
}

.top-works-02-picture img {
  width: 154.4%;
}

.top-works-02-desc {
  position: relative;
  z-index: 2;
  margin-top: -84px;
}

.top-works-02-path {
  max-width: 173px;
  width: 100%;
}

.top-works-02-desc {
  background-image: url(../images/top/top_works_02_desc_sp.svg);
  background-position: 36% bottom;
  background-size: 119%;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 390 / 262;
  padding-top: 14%;
}

@media screen and (min-width: 576px) {
  .top-works-01-desc {
    background-position: center;
    background-size: cover;
    width: 457px;
    aspect-ratio: 457 / 297;
    padding-top: 128px;
    padding-left: 32px;
    margin-left: auto;
  }

  .top-works-02-desc {
    margin-top: -184px;
  }

  .top-works-02-desc {
    background-image: url(../images/top/top_works_02_desc_sp.svg);
    background-position: 36% bottom;
    background-size: cover;
    width: 468px;
    aspect-ratio: 468 / 262;
    padding-top: 60px;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .top-works-01-picture {
    position: relative;
    z-index: 1;
    width: 61.9vw;
  }

  .top-works-01-picture img {
    width: 76.4vw;
    left: -24%;
    transform: unset;
  }

  .top-works-01-desc {
    position: absolute;
    bottom: -17%;
    right: unset;
    left: 38%;
    z-index: 2;
    margin-top: 0;
  }

  .top-works-02-picture {
    position: relative;
    z-index: 1;
    width: 75.1vw;
    margin-left: auto;
  }

  .top-works-02-picture img {
    width: 91.67vw;
    left: unset;
    right: 0;
    transform: unset;
  }

  .top-works-02-desc {
    position: absolute;
    bottom: 4%;
    right: 42%;
    margin-top: 0;
  }
}

@media screen and (min-width: 992px) {
  .vertical-copy .v-line {
    height: 196px;
  }

  .top-works-01-desc {
    background-position: center;
    background-size: cover;
    width: 575px;
    padding-top: 140px;
    padding-left: 126px;
    margin-left: 0;
  }

  .top-works-02-path {
    max-width: 391px;
    width: 100%;
  }

  .top-works-02-desc {
    background-image: url(../images/top/top_works_02_desc_pc.svg);
    background-position: center;
    background-size: cover;
    width: 695px;
    aspect-ratio: 695 / 375;
    padding-top: 97px;
    padding-left: 118px;
    margin-right: 0;
    bottom: 2%;
    right: 40%;
  }
}

/*STAFF*/

.image-steam {
  position: relative;
}

.image-steam::before,
.image-steam::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-blend-mode: screen;
  aspect-ratio: 1086 / 593;
  max-height: 200px;
  height: 100%;
  z-index: 0;
}

.image-steam::before {
  background-image: url("../images/top/top_staff_steam_top.png"), url("../images/top/image_bg_orange.jpg");
  top: 0;
  right: 0;
}

.image-steam::after {
  background-image: url("../images/top/top_staff_steam_bottom.png"), url("../images/top/image_bg_orange.jpg");
  bottom: -1px;
  left: 0;
}

.top-staff-swiper-wrapper {
  padding-bottom: 200px;
  max-width: 344px;
}

.top-staff-img {
  display: block;
  padding-bottom: 220px;
}

.top-staff-desc {
  width: 66.7%;
  bottom: calc(27% + 180px);
  left: 0;
  transform: translateY(100%);
}

.top-staff-swiper-prev,
.top-staff-swiper-next {
  width: 52px;
  height: 52px;
  border-radius: 50rem;
  border: 1px solid #fff;
  position: absolute;
  top: 27%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.top-staff-swiper-prev {
  left: -15px;
}

.top-staff-swiper-next {
  right: -15px;
}

.swiper-button-next,
.swiper-button-prev {
  ::slotted(svg),
  svg {
    display: none !important;
  }
}

.top-staff-swiper-prev::after,
.top-staff-swiper-next::after {
  content: "";
  width: 8.63px;
  height: 6.92px;
  background-image: url("../images/top/arrow_wh.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.top-staff-swiper-prev::after {
  transform: scaleX(-1);
}

.top-staff-swiper-wrapper .swiper-button-disabled,
.top-event-swiper-container .swiper-button-disabled {
  opacity: 0 !important;
  visibility: hidden !important;
}

@media (any-hover: hover) {
  .top-staff-swiper-prev:hover,
  .top-staff-swiper-next:hover {
    opacity: 0.6;
  }
}

.top-staff-instagram {
  display: flex;
  position: absolute;
  bottom: 116px;
  right: 0;
  transform: translateY(100%);
  width: 25px;
  height: 25px;
}

.top-staff-instagram img {
  width: 25px;
  height: 25px;
}

@media screen and (min-width: 992px) {
  .top-staff-instagram {
    bottom: 112px;
    width: 50px;
    height: 50px;
  }

  .top-staff-instagram img {
    width: 50px;
    height: 50px;
  }
}

/* EVENT */
.top-event-slide img {
  aspect-ratio: 345 / 193;
}

.top-event-swiper-prev,
.top-event-swiper-next {
  width: 52px;
  height: 52px;
  border-radius: 50rem;
  border: 1px solid #222;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.top-event-swiper-prev {
  top: unset;
  bottom: -60px !important;
  left: 0 !important;
}

.top-event-swiper-next {
  top: unset;
  bottom: -60px !important;
  right: 0 !important;
}

.top-event-swiper-prev::after,
.top-event-swiper-next::after {
  content: "";
  width: 8.63px;
  height: 6.92px;
  background-image: url("../images/top/arrow_bl.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.top-event-swiper-prev::after {
  transform: scaleX(-1);
}

.top-event-swiper-pagination {
  bottom: -48px !important;
}

.top-event-swiper-container .swiper-pagination-bullet {
  background-color: #848484 !important;
  margin-inline: 8px !important;
  opacity: 1 !important;
}

.top-event-swiper-container .swiper-pagination-bullet-active {
  background-color: #fff !important;
}

.showroom-logo {
  width: 100%;
}

.image-showroom-shift {
  position: absolute;
  bottom: 150px;
  left: 0;
}

@media screen and (min-width: 390px) {
  .top-staff-img {
    padding-bottom: 140px;
  }

  .top-staff-desc {
    width: 66.7%;
    bottom: calc(27% + 105px);
  }
}

@media screen and (min-width: 992px) {
  .image-steam::before,
  .image-steam::after {
    max-height: 55svh;
  }
  .top-staff-swiper-wrapper {
    padding-bottom: 390px;
    max-width: 938px;
  }

  .top-staff-desc {
    width: 46.2%;
    bottom: calc(27% + 104px);
  }

  .top-staff-swiper-prev,
  .top-staff-swiper-next {
    top: 25%;
  }

  .top-staff-swiper-prev {
    left: -20px;
    transform: translateX(-100%);
  }

  .top-staff-swiper-next {
    right: -20px;
    transform: translateX(100%);
  }

  .top-event-swiper .top-event-slide {
    transform: scale(0.9);
    transition: 0.7s;
  }

  .top-event-slide.swiper-slide-active {
    transform: scale(1);
    z-index: 1;
  }

  .top-event-slide img {
    aspect-ratio: 699 / 393;
  }

  .top-event-swiper-prev {
    top: 50% !important;
    left: 23% !important;
    bottom: unset !important;
  }

  .top-event-swiper-next {
    top: 50% !important;
    right: 23% !important;
    bottom: unset !important;
  }

  .top-event-swiper-pagination {
    bottom: -32px !important;
  }

  .showroom-logo {
    max-width: 220px;
  }

  .image-showroom-shift {
    bottom: 68px;
    left: -21%;
  }
}

@media (hover: hover) {
}

/*------------------------------
 ABOUT
------------------------------*/

/*FV*/

.breadcrumb-bl li:not(:first-of-type)::before {
  border-right: 0.094em solid #222;
  border-bottom: 0.094em solid #222;
}

.breadcrumb-bl li > * {
  color: #222 !important;
  font-weight: 500;
}

.about-fv {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 60px);
  /*max-height: 710px;*/
  margin-top: 60px;
}

.about-msg-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}

.about-msg-ttl img {
  max-width: 126px;
}

@media screen and (min-width: 992px) {
  .about-msg-ttl img {
    max-width: 180px;
  }
}

@supports (height: 100dvh) {
  .about-fv {
    height: calc(100dvh - 60px);
  }
}

.about-fv .fv-item {
  position: absolute;
  opacity: 0;
  transition:
    transform 1.6s ease-out,
    opacity 1.6s ease-out;
  will-change: transform, opacity;
}

.about-fv .fv-item img {
  display: block;
  width: 100%;
  height: auto;
}

.about-fv .fv-item-tl {
  top: 0;
  left: 0;
  width: 34.1%;
  transform: translateX(-120%);
}

.about-fv .fv-item-cl {
  top: 40%;
  left: 0;
  width: 9.8%;
  transform: translateX(-120%);
}

.about-fv .fv-item-tr {
  top: 0;
  right: 0;
  width: 56.5%;
  transform: translateX(120%);
}

.about-fv .fv-item-bl {
  bottom: 0;
  left: 0;
  width: 38.3%;
  transform: translateX(-120%);
}

.about-fv .fv-item-br {
  bottom: 2.7%;
  right: 0;
  width: 31.4%;
  transform: translateX(120%);
}

.about-fv.is-animated .fv-item {
  opacity: 1;
}

.about-fv.is-animated .fv-item-tl,
.about-fv.is-animated .fv-item-cl,
.about-fv.is-animated .fv-item-tr,
.about-fv.is-animated .fv-item-bl,
.about-fv.is-animated .fv-item-br {
  transform: translateX(0);
}

@media screen and (min-width: 768px) {
  .about-fv {
    height: 100vh;
    margin-top: 0;
    max-height: unset;
  }

  @supports (height: 100dvh) {
    .about-fv {
      height: 100dvh;
    }
  }
}

@media screen and (min-width: 992px) {
  .about-fv {
    height: 100vh;
    margin-top: 0;
  }

  .about-fv .fv-item-tl {
    width: 33.5%;
    transform: translateX(-120%);
  }

  .about-fv .fv-item-cl {
    width: 12%;
    transform: translateX(-120%);
  }

  .about-fv .fv-item-tr {
    width: 55.4%;
    transform: translateX(120%);
  }

  .about-fv .fv-item-bl {
    width: 36.7%;
    transform: translateX(-120%);
  }

  .about-fv .fv-item-br {
    bottom: 2.7%;
    right: 0;
    width: 36.4%;
    transform: translateX(120%);
  }
}

@media screen and (min-width: 1200px) {
  .about-fv {
    width: 100%;
    height: 71.53vw;
  }
}

/*SV*/

.about-sv-wrapper {
  width: 100%;
  max-width: 460px;
}

.about-sv-inner {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 390 / 1336;
}

.about-sv-inner figure {
  position: absolute;
  display: block;
}

.about-sv-image01 {
  top: calc(162 / 1336 * 100%);
  left: calc(-34 / 390 * 100%);
  width: calc(461 / 390 * 100%);
  height: calc(345 / 1336 * 100%);
}

.about-sv-image02 {
  top: calc(0 / 1336 * 100%);
  left: calc(68.8 / 390 * 100%);
  width: calc(42.8 / 390 * 100%);
  height: calc(182.9 / 1336 * 100%);
}

.about-sv-image03 {
  top: calc(579.3 / 1336 * 100%);
  right: calc(-25 / 390 * 100%);
  width: calc(330 / 390 * 100%);
  height: calc(304.4 / 1336 * 100%);
}

.about-sv-image04 {
  top: calc(471.1 / 1336 * 100%);
  right: calc(69.7 / 390 * 100%);
  width: calc(42.4 / 390 * 100%);
  height: calc(193.7 / 1336 * 100%);
}

.about-sv-image05 {
  bottom: calc(0 / 1336 * 100%);
  left: calc(-5 / 390 * 100%);
  width: calc(402 / 390 * 100%);
  height: calc(276.6 / 1336 * 100%);
}

.about-sv-image06 {
  bottom: calc(253 / 1336 * 100%);
  left: calc(73.1 / 390 * 100%);
  width: calc(43.5 / 390 * 100%);
  height: calc(163 / 1336 * 100%);
}

@media screen and (min-width: 992px) {
  .about-sv-wrapper {
    width: 86.1vw;
    max-width: unset;
  }

  .about-sv-inner {
    aspect-ratio: 1240 / 1200;
  }

  .about-sv-inner figure {
    position: absolute;
    display: block;
  }

  .about-sv-image01 {
    top: calc(0 / 1200 * 100%);
    left: calc(0 / 1240 * 100%);
    width: calc(801 / 1240 * 100%);
    height: calc(600 / 1200 * 100%);
  }

  .about-sv-image02 {
    top: calc(0 / 1200 * 100%);
    left: calc(44.8 / 1240 * 100%);
    width: calc(42.8 / 1240 * 100%);
    height: calc(182.9 / 1200 * 100%);
  }

  .about-sv-image03 {
    top: calc(418 / 1200 * 100%);
    right: calc(0 / 1240 * 100%);
    width: calc(541.2 / 1240 * 100%);
    height: calc(499.2 / 1200 * 100%);
  }

  .about-sv-image04 {
    top: calc(382.8 / 1200 * 100%);
    right: calc(20.9 / 1240 * 100%);
    width: calc(42.4 / 1240 * 100%);
    height: calc(193.7 / 1200 * 100%);
  }

  .about-sv-image05 {
    bottom: calc(0 / 1200 * 100%);
    left: calc(24 / 1240 * 100%);
    width: calc(659.4 / 1240 * 100%);
    height: calc(453.6 / 1200 * 100%);
  }

  .about-sv-image06 {
    bottom: calc(331.1 / 1200 * 100%);
    left: calc(44.1 / 1240 * 100%);
    width: calc(43.5 / 1240 * 100%);
    height: calc(163 / 1200 * 100%);
  }
}

/* 暖簾 overlay */

.noren-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.noren-overlay-bg,
.noren-overlay-stage,
.noren-overlay-layer {
  position: absolute;
  inset: 0;
}

.noren-overlay-bg {
  z-index: 1;
  background-color: #f1f1f1;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.noren-overlay-stage {
  z-index: 2;
}

.noren-overlay-layer {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  background-color: #f1f1f1;
  transition:
    opacity 0.2s linear,
    transform 0.2s linear;
  transform-origin: center center;
}

.noren-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.noren-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.noren-overlay.is-done .noren-overlay-bg {
  opacity: 0;
}

/*!* POINT *!*/
.noren-trigger {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.noren-trigger.is-visible {
  opacity: 1;
  visibility: visible;
}

.about-point-section {
  margin-bottom: 100px;
}

.about-point-l-img img {
  width: 76%;
  aspect-ratio: 296 / 197;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.about-point-r-img img {
  width: 76%;
  aspect-ratio: 296 / 197;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

@media screen and (min-width: 992px) {
  .about-point-section {
    margin-bottom: 240px;
  }

  .about-point-l-img img {
    width: 100%;
    aspect-ratio: 296 / 197;
    border-top-right-radius: 180px;
    border-bottom-right-radius: 180px;
  }

  .about-point-r-img img {
    width: 100%;
    border-top-left-radius: 180px;
    border-bottom-left-radius: 180px;
  }

  .about-point-r-txt {
    padding-left: 40px !important;
  }
}

@media screen and (min-width: 1200px) {
  .about-point-r-txt {
    padding-left: 70px !important;
  }
}

/*ロゴコンセプト*/

.about-logo-concept {
  margin-bottom: 165px;
}

.about-logo-concept-img {
  max-width: 208px;
}

.about-flow-content {
  position: relative;
}

.about-flow-03 {
  position: relative;
  z-index: 2;
}

.about-flow-04 {
  position: relative;
  z-index: 1;
}

.about-flow-content > * {
  position: relative;
  z-index: 6;
}

.about-flow-01::before {
  content: "";
  background-image: url("../images/about/about_flow_bg01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 437px;
  width: 112vw;
  height: auto;
  aspect-ratio: 437 / 225;
  position: absolute;
  bottom: -17px;
  left: -128px;
  z-index: 1;
}

.about-flow-02::before {
  content: "";
  background-image: url("../images/about/about_flow_bg01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 437px;
  width: 112vw;
  height: auto;
  aspect-ratio: 437 / 225;
  position: absolute;
  top: -34px;
  right: -176px;
  z-index: 1;
}

.about-flow-03::before {
  content: "";
  background-image: url("../images/about/about_flow_bg01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 437px;
  width: 112vw;
  height: auto;
  aspect-ratio: 437 / 225;
  position: absolute;
  top: -78px;
  left: -122px;
  transform: scaleY(-1);
  transform-origin: center;
  z-index: 1;
}

.about-flow-04::before {
  content: "";
  background-image: url("../images/about/about_flow_bg01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 437px;
  width: 112vw;
  height: auto;
  aspect-ratio: 437 / 225;
  position: absolute;
  top: -59px;
  right: -147px;
  transform: scaleX(-1);
  transform-origin: center;
  z-index: 1;
}

.about-contact-wrapper {
  position: relative;
  padding-bottom: 280px;
}

.about-contact-wrapper::before {
  content: "";
  background-image: url("../images/about/about_flow_bg03.svg");
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 260px;
  width: 66.7vw;
  height: auto;
  aspect-ratio: 260 / 196;
  position: absolute;
  bottom: -16px;
  left: -66px;
  transform: translateY(-50%);
  z-index: 0;
}

.about-contact-wrapper::after {
  content: "";
  background-image: url("../images/about/about_flow_bg04.svg");
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 213px;
  width: 51.6vw;
  height: auto;
  aspect-ratio: 213 / 193;
  position: absolute;
  bottom: -7px;
  right: -40px;
  transform: translateY(-50%);
  z-index: 0;
}

.about-contact-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 67vw;
  max-width: 261px;
  aspect-ratio: 1 / 1;
  border-radius: 50rem;
  background-color: var(--main-orange);
  padding-top: 33.3%;
  position: relative;
  z-index: 2;
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.about-contact-main > span:first-of-type {
  padding-bottom: 7.6%;
}

.about-contact-main:hover{
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .about-flow-content::before {
    max-width: 437px;
  }

  .about-contact-wrapper::before {
    max-width: unset;
    width: 38.3vw;
    bottom: unset;
    top: 18%;
    left: -1px;
    transform: translateY(0);
  }

  .about-contact-wrapper::after {
    max-width: unset;
    width: 31.38vw;
    bottom: unset;
    top: 15%;
    right: -1px;
    transform: translateY(0);
  }
}

@media screen and (min-width: 992px) {
  .about-logo-concept {
    margin-bottom: 350px;
  }

  .about-logo-concept-img {
    max-width: 243px;
  }

  .about-flow-01::before {
    width: 55.6vw;
    bottom: -15%;
    left: -30%;
  }

  .about-flow-02::before {
    width: 55.6vw;
    top: -64%;
    right: -38%;
  }

  .about-flow-03::before {
    width: 55.6vw;
    top: -77%;
    left: -35%;
  }

  .about-flow-04::before {
    width: 55.6vw;
    top: -60%;
    right: -37%;
  }

  .about-contact-main {
    max-width: 345px;
    width: 345px;
    padding-top: 33.6%;
  }

  .about-contact-main > span:first-of-type {
    padding-bottom: 13.9%;
  }
}

@media screen and (min-width: 1200px) {
  .about-flow-content::before {
    max-width: 801px;
  }

  .about-flow-01::before {
    width: 55.6vw;
    bottom: -15%;
    left: unset;
    right: 51%;
  }

  .about-flow-02::before {
    width: 55.6vw;
    top: -64%;
    right: unset;
    left: 26%;
  }

  .about-flow-03::before {
    width: 55.6vw;
    top: -77%;
    left: unset;
    right: 57%;
  }

  .about-flow-04::before {
    width: 55.6vw;
    top: -60%;
    right: unset;
    left: 9%;
  }
}

/*------------------------------
 ムスの魅力
------------------------------*/

/* FV暖簾 */
html.is-must-opening,
body.is-must-opening {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
}

.must-noren-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f5f5f5;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity .6s ease, visibility 0s linear .6s;
}

.must-noren-overlay.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.must-noren-overlay-bg {
  position: absolute;
  inset: 0;
  background: #f5f5f5;
}

.must-noren-overlay-stage {
  position: absolute;
  inset: 0;
  transform: scale(1);
  transform-origin: center center;
}

/*.must-noren-overlay-stage.is-step-1 {*/
/*  transform: scale(1.2);*/
/*}*/

/*.must-noren-overlay-stage.is-step-2 {*/
/*  transform: scale(1.4);*/
/*}*/

/*.must-noren-overlay-stage.is-step-3 {*/
/*  transform: scale(1.6);*/
/*}*/

.must-noren-overlay-stage picture {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
  background-color: #F1F1F1;
}

.must-noren-overlay-stage picture.is-current {
  opacity: 1;
  z-index: 2;
}

.must-noren-overlay-stage picture.is-leaving {
  opacity: 0;
  z-index: 3;
}

.must-noren-overlay-layer {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.must-fv-wrap {
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease;
}

.must-fv-wrap.is-show {
  opacity: 1;
  visibility: visible;
}


/* 01 */

.must-01-wrapper{
  padding-top: 200px;
}

.must-01-wrapper::before {
  content: "";
  width: 421px;
  height: 239px;
  background-image: url("../images/appeal-must/must_steam01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 30px;
  right: 155px;
  z-index: -1;
}

.must-first-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.must-ttl-num {
  display: block;
  margin-bottom: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 64px;
  letter-spacing: 0.25em;
  line-height: 1;
  color: var(--main-orange);
}

.vertical-rl {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: inline-block;
}

.must-01-staff img{
  width: 100%;
}

.must-01-staff-desc{
  position: relative;
  z-index: 2;
  margin-top: -62px;
  margin-bottom: 100px;
}

.must-01-staff-desc::before{
  content: "";
  width: 560px;
  height: 308px;
  background-image: url(../images/appeal-must/must_steam02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -47px;
  left: -170px;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .must-01-wrapper{
    padding-top: 220px;
  }

  .must-01-wrapper::before {
    content: "";
    width: 52.6vw;
    height: auto;
    aspect-ratio: 757 / 430;
    bottom: 30px;
    right: unset;
    left: -125px;
  }
}

@media screen and (min-width: 992px) {
  .must-ttl-num {
    font-size: 80px;
    letter-spacing: 0.3em;
  }

  .must-01-staff img{
    width: 27.4vw;
  }

  .must-01-staff-desc{
    margin-top: -10px;
    margin-bottom: 0;
  }

  .must-01-staff-desc::before{
    width: 801px;
    height: 441px;
    top: -101px;
    left: -238px;
    z-index: -1;
  }
}

@media screen and (min-width: 1400px) {
  .must-first-title {
    padding-left: 7.6vw;
  }
}


/* 02 */

#must-appeal02,
#must-appeal03 {
  scroll-margin-top: 73px;
}

@media screen and (min-width: 768px) {
  #must-appeal02,
  #must-appeal03 {
    scroll-margin-top: 130px;
  }
}

.must-02-image img{
  width: 100%;
}

.must-02-image::before{
  content: "";
  width: 499px;
  height: 258px;
  background-image: url(../images/appeal-must/must_steam02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -138px;
  right: -250px;
}

.must-02-txt::before{
  content: "";
  width: 383px;
  height: 224px;
  background-image: url(../images/appeal-must/must_steam01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -72px;
  left: -151px;
  z-index: -1;
}

@media screen and (min-width: 992px) {
  .must-02-lg-desc{
    padding-top: 280px;
  }

  .must-02-txt::before{
    width: 546px;
    height: 320px;
    top: -116px;
    left: -273px;
  }
}

@media screen and (min-width: 1200px) {
  .must-02-image{
    width: 27.4vw;
  }


  .must-02-image::before{
    width: 801px;
    height: 441px;
    bottom: -253px;
    right: -493px;
  }
}


/* 03 */

.must-03-logo{
  width: fit-content;
}

.must-03-logo img{
  width: 100%;
  max-width: 213px;
}

.must-03-logo::before{
  content: "";
  width: 419px;
  height: 117px;
  background-image: url(../images/appeal-must/must_steam03.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -76px;
  right: -247px;
  z-index: -1;
}

.must-03-image-wrapper {
  width: 529px;
}

.must-03-image-inner {
  position: relative;
  width: 529px;
  margin-inline: auto;
  aspect-ratio: 529 / 546;
}

.must-03-image-inner figure {
  position: absolute;
  display: block;
}

.must-03-image01 {
  top: calc(0 / 546 * 100%);
  right: calc(54 / 529 * 100%);
  width: calc(339 / 529 * 100%);
  height: calc(248 / 546 * 100%);
  z-index: 2;
}

.must-03-image02 {
  top: calc(150 / 546 * 100%);
  left: calc(0 / 529 * 100%);
  width: calc(322 / 529 * 100%);
  height: calc(189 / 546 * 100%);
  z-index: 1;
}

.must-03-image03 {
  bottom: calc(0 / 546 * 100%);
  right: calc(0 / 529 * 100%);
  width: calc(279 / 529 * 100%);
  height: calc(263 / 546 * 100%);
  z-index: 2;
}


@media screen and (min-width: 992px) {
  .must-03-logo img{
    width: 20.8vw;
    max-width: 299px;
  }

  .must-03-logo::before{
    width: 546px;
    height: 231px;
    bottom: -141px;
    right: -397px;
  }

  .must-03-image-wrapper {
    width: 55.8vw;
    max-width: unset;
  }

  .must-03-image-inner {
    width: 55.8vw;
    aspect-ratio: 801 / 1281;
  }

  .must-03-image-inner figure {
    position: absolute;
    display: block;
  }

  .must-03-image01 {
    top: calc(0 / 1281 * 100%);
    right: calc(0 / 801 * 100%);
    width: calc(712 / 801 * 100%);
    height: calc(542 / 1281 * 100%);
  }

  .must-03-image02 {
    top: calc(438 / 1281 * 100%);
    left: calc(0 / 801 * 100%);
    width: calc(546 / 801 * 100%);
    height: calc(320 / 1281 * 100%);
  }

  .must-03-image03 {
    bottom: calc(0 / 1281 * 100%);
    right: calc(76 / 801 * 100%);
    width: calc(636 / 801 * 100%);
    height: calc(599 / 1281 * 100%);
  }
}

/*住宅熱波師*/

.must-neppashi-logo{
  max-width: 343px;
}

.loop-neppashi-gallery {
  overflow: hidden;
  width: 100%;
}

.loop-neppashi-track {
  display: flex;
  width: max-content;
  animation: loop-slide 28s linear infinite;
  will-change: transform;
}

.loop-neppashi-list {
  display: flex;
  align-items: center;
  gap: 17.5px;
  margin: 0 17.5px 0 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
}

.loop-neppashi-item {
  flex-shrink: 0;
}

.loop-neppashi-item img {
  display: block;
  object-fit: cover;
  aspect-ratio: 272 / 153;
  height: 120px;
}


@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% / 2));
  }
}


@media (min-width: 992px) {
  .must-neppashi-logo{
    max-width: 602px;
  }

  .loop-neppashi-track {
    animation: loop-slide 36s linear infinite;
  }

  .loop-neppashi-list {
    gap: 30px;
    margin: 0 30px 0 0;
  }

  .loop-neppashi-item img {
    height: 153px;
  }

}


/*暖簾OFF（＋JSコメントアウト）*/
/*#mustNorenOverlay {*/
/*  display: none;*/
/*}*/

/*#mustFvWrap {*/
/*  opacity: 1;*/
/*  visibility: visible;*/
/*}*/

/*------------------------------
 (showroom)
------------------------------*/

.cta-button-box .cta-button-form {
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
}

.is-active.cta-button-box .cta-button-form {
  opacity: 0;
  visibility: hidden;
}

.image-showroom-fv {
  border-bottom-left-radius: 120px;
}

.showroom-logo-harvia-wrapper {
  position: absolute;
  top: -85px;
  left: calc(100% - (100px + 12px));
}

.showroom-logo-harvia {
  width: 100px;
  height: 100px;
}

.image-showroom-about {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.image-showroom-lineup {
  border-radius: 10px;
}

.sticky-lineup {
  height: 500vh;
}

.sticky-container {
  position: sticky;
  top: 0;
  height: 100svh;
  padding-top: 110px;
}

.sticky-container .image-showroom-lineup-text {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.sticky-container:first-of-type {
  z-index: 10;
}

.is-active.sticky-container .image-showroom-lineup-text {
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
}

.sticky-container:nth-of-type(2) {
  z-index: 11;
}

.sticky-container:nth-of-type(2) .image-showroom-lineup {
  transform: rotate(-2deg);
}

.sticky-container:nth-of-type(3) {
  z-index: 12;
}

.sticky-container:nth-of-type(3) .image-showroom-lineup {
  transform: rotate(1.7deg);
}

.sticky-container:nth-of-type(4) {
  z-index: 13;
}

.sticky-container:nth-of-type(4) .image-showroom-lineup {
  transform: rotate(-0.72deg);
}

.sticky-image-box {
  height: 47vh;
  aspect-ratio: 289 / 434;
}

.showroom-facility-box {
  width: auto;
}

.showroom-facility-image {
  max-width: calc(100vw - 48px);
}

.showroom-works-01-picture,
.showroom-works-02-picture {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 827 / 551;
}

.showroom-works-picture-odd {
  padding-left: 24px;
  margin-left: auto;
}

.showroom-works-picture-even {
  padding-right: 24px;
  margin-right: auto;
}

.showroom-works-image-odd {
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  aspect-ratio: 369 / 290;
  object-fit: cover;
  object-position: right center;
}

.showroom-works-image-even {
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  aspect-ratio: 369 / 290;
  object-fit: cover;
  object-position: right center;
}

.showroom-works-01-desc {
  position: relative;
  z-index: 1;
  margin-top: -38px;
  background-image: url(../images/showroom/showroom_detail_desc_01_sp.svg?20260413_#2157);
  background-position: center bottom;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 393 / 290;
  padding-top: 14%;
}

.showroom-works-02-desc {
  position: relative;
  z-index: 2;
  margin-top: -50px;
  background-image: url(../images/showroom/showroom_detail_desc_02_sp.svg?20260413_#2157);
  background-position: 36% bottom;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 374 / 257;
  padding-top: 18%;
  transform: translateX(-24px);
}

.showroom-works-03-desc {
  position: relative;
  z-index: 1;
  margin-top: -50px;
  background-image: url(../images/showroom/showroom_detail_desc_03_sp.svg?20260413_#2157);
  background-position: center;
  background-size: 106%;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 403 / 268;
  padding-top: 14%;
}

.effect-steam-top,
.effect-steam-bottom {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition:
    transform 1.6s ease-out,
    opacity 1.6s ease-out;
  will-change: transform, opacity;
}

.effect-steam-top {
  top: 20%;
  right: 0;
  aspect-ratio: 580 / 422;
  max-width: 50vw;
  transform: translateX(40vw);
}

.effect-steam-bottom {
  bottom: 1%;
  left: 0;
  aspect-ratio: 443 / 281;
  max-width: 70vw;
  transform: translateX(-30vw);
}

.is-animated.showroom-movie-box .effect-steam-top,
.is-animated.showroom-movie-box .effect-steam-bottom {
  opacity: 1;
  transform: translateX(0);
}

.movie-container iframe {
  position: relative;
  aspect-ratio: 16 / 9;
  z-index: 99;
}

.map-container iframe {
  width: 100%;
  aspect-ratio: 345 / 345;
}

.icon-access {
  object-fit: contain;
  width: 24px;
  height: 24px;
}

.cta-button-form {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

@media (min-width: 768px) {
  .showroom-works-picture-odd,
  .showroom-works-picture-even {
    width: 76.4vw;
    left: -24%;
    transform: unset;
  }

  .showroom-works-01-desc,
  .showroom-works-03-desc {
    position: absolute;
    bottom: -17%;
    right: unset;
    left: 0;
    z-index: 2;
    background-image: url(../images/showroom/showroom_detail_desc_01_pc.svg);
    background-size: 100%;
    width: 65vw;
    aspect-ratio: 393 / 290;
    padding-top: 20%;
    margin-top: 0;
  }

  .showroom-works-02-desc {
    position: absolute;
    bottom: -17%;
    right: 0;
    left: unset;
    background-image: url(../images/showroom/showroom_detail_desc_02_pc.svg);
    width: 65vw;
    padding-top: 15%;
  }

  .showroom-works-03-desc {
    bottom: -30%;
    padding-top: 16%;
  }
}

@media screen and (min-width: 992px) {
  .showroom-title-detail {
    position: absolute;
    top: -16em;
    left: calc((100vw / 12) + 12px);
  }

  .showroom-logo-harvia-wrapper {
    top: -150px;
    left: 0;
    padding-left: 0;
  }

  .image-showroom-fv {
    border-bottom-left-radius: 300px;
  }

  .sticky-lineup {
    height: 500vh;
  }

  .sticky-container {
    height: 100vh;
  }

  .showroom-works-01-picture,
  .showroom-works-02-picture {
    width: 60vw;
  }

  .showroom-works-01-desc,
  .showroom-works-03-desc {
    position: absolute;
    bottom: -30%;
    right: 0;
    left: 0;
    z-index: 1;
    margin-top: -95px;
    background-image: url(../images/showroom/showroom_detail_desc_01_pc.svg);
    background-position: center;
    background-size: cover;
    width: 623px;
    aspect-ratio: 623 / 354;
    padding-top: 90px;
    padding-left: 100px;
    margin-left: 0;
  }

  .showroom-works-02-desc {
    position: absolute;
    z-index: 2;
    margin-top: -84px;
    background-image: url(../images/showroom/showroom_detail_desc_02_pc.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 633px;
    aspect-ratio: 633 / 382;
    padding-top: 100px;
    padding-left: 150px;
  }

  .showroom-works-03-desc {
    padding-top: 120px;
  }

  .showroom-works-picture-odd {
    text-align: right;
    width: 100%;
  }

  .showroom-works-picture-even {
    width: 100%;
  }

  .showroom-works-image-odd {
    border-top-left-radius: 180px;
    border-bottom-left-radius: 180px;
    aspect-ratio: 827 / 551;
  }

  .showroom-works-image-even {
    border-top-right-radius: 180px;
    border-bottom-right-radius: 180px;
    aspect-ratio: 827 / 551;
  }

  .effect-steam-top {
    top: -12%;
    right: 0;
    aspect-ratio: 580 / 422;
    max-width: 40vw;
    transform: translateX(40vw);
  }

  .effect-steam-bottom {
    bottom: 8%;
    left: 0;
    aspect-ratio: 443 / 281;
    max-width: 30vw;
    transform: translateX(-30vw);
  }

  .map-container iframe {
    aspect-ratio: 698 / 486;
  }
}

@media screen and (min-width: 1200px) {
  .showroom-title-detail {
    top: -7em;
  }

  .sticky-container {
    padding-top: calc((100svh - 60%) / 2);
  }

  .sticky-image-box {
    height: calc(100vh - 200px);
    aspect-ratio: 517 / 777;
  }

  .showroom-works-image-odd {
    max-width: calc(100% - 613px);
  }

  .showroom-works-image-even {
    max-width: calc(100% - 613px);
  }

  .showroom-works-01-desc,
  .showroom-works-03-desc {
    right: calc(60vw - (623px / 2));
    left: unset;
  }

  .showroom-works-02-desc {
    left: calc(60vw - (570px / 2));
  }
}

@media (hover: hover) {
}

/*------------------------------
 WORKS
------------------------------*/
.image-works-body {
  border-radius: 50px;
  aspect-ratio: 300 / 300;
  object-fit: cover;
}

/*------------------------------
 NEWS ARCHIVE
------------------------------*/

.news-archive-section .breadcrumb {
  position: static;
}

.news-archive-section .breadcrumb li > * {
  color: #222 !important;
}

.news-archive-section .breadcrumb li:not(:first-of-type)::before {
  border-color: #222;
}

.news-archive-heading {
  padding: 0 24px;
}

/* 見出し */
.news-archive-label {
  color: #222;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.3em;
}

.news-archive-title {
  font-size: 32px;
  letter-spacing: 0.3em;
  line-height: 1.3;
  font-weight: 700;
}

/* 一覧 */

.news-archive-link {
  gap: 0 24px;
}

/* サムネイル */
.news-archive-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #d9d9d9;
}

.news-archive-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-archive-thumb-placeholder {
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
}

/* 本文エリア */
.news-archive-body {
  padding-top: 16px;
}

.news-archive-date {
  color: #000;
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.3em;
}

.news-archive-excerpt {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: #000;
  margin-bottom: 8px;
}

.news-archive-pagination {
  flex-wrap: wrap;
  gap: 20px !important;
}

.news-archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5em;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #8F8F8F !important;
  border: none;
  background: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.news-archive-pagination .page-numbers.current {
  color: #222 !important;
  font-weight: 500;
}

.news-archive-pagination .page-numbers.prev,
.news-archive-pagination .page-numbers.next {
  font-size: 0;
  color: transparent !important;
  width: 8.63px;
  height: 6.92px;
  background-image: url("../images/top/arrow_or.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.news-archive-pagination .page-numbers.prev {
  transform: rotate(180deg);
}

@media (any-hover: hover) {
  .news-archive-pagination a.page-numbers:hover {
    opacity: 0.6;
  }
}

.news-archive-pagination {
  padding-bottom: 220px;
}

.common-link.news-link {
  color: #222;
  font-weight: 500;
}

.news-archive-list {
  display: grid;
  gap: 40px;
  padding: 0 42px;
}

.news-archive-list:last-child {
  padding-bottom: 220px;
}

@media screen and (min-width: 992px) {
  .news-archive-heading {
    padding: 0;
  }

  .news-archive-list {
    max-width: 938px;
    width: 100%;
    margin: 0 auto;
    gap: 32px;
  }

  .news-archive-list:last-child {
    padding-bottom: 190px;
  }

  .news-archive-title {
    font-size: 40px;
  }

  .news-archive-link {
    gap: 0 40px;
  }

  .news-archive-thumb {
    flex-shrink: 0;
    width: 267px;
    height: 150px;
    aspect-ratio: 5 / 4;
  }

  .news-archive-body {
    flex: 1;
    min-width: 0;
    padding-top: 0;
  }

  .news-archive-date {
    margin-bottom: 12px;
  }

  .news-archive-excerpt {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .news-archive-pagination {
    gap: 28px !important;
    padding: 190px;
  }

  .news-archive-pagination .page-numbers {
    font-size: 14px;
  }

}

/*------------------------------
 VOICE
------------------------------*/
.image-voice-body {
  aspect-ratio: 393 / 471;
  object-fit: cover;
  object-position: left center;
}

.voice-desc {
  position: absolute;
  bottom: -28%;
  left: 0;
  width: 100%;
  background-image: url("../images/voice/voice_detail_desc_sp.svg");
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 423 / 238;
  padding-left: 12%;
  transform: scale(1.1);
}

.voice-title {
  width: 13em;
}

@media screen and (min-width: 992px) {
  .image-voice-body {
    border-radius: 30px;
    aspect-ratio: 1176 / 655;
  }

  .voice-desc {
    bottom: -11%;
    left: -9.5vw;
    width: 70vw;
    background-image: url("../images/voice/voice_detail_desc_pc.svg");
    aspect-ratio: 947 / 265;
    padding-left: 14%;
    transform: translateX(-3%);
  }

  .voice-title {
    width: 26em;
  }
}

@media (hover: hover) {
}

/*------------------------------
 VOICE SINGLE
------------------------------*/

/* パンくず（FVなし・暗色） */
.voice-single-section .breadcrumb {
  position: static;
}

.voice-single-section .breadcrumb li > * {
  color: #222 !important;
}

.voice-single-section .breadcrumb li:not(:first-of-type)::before {
  border-color: #222;
}

.voice-single-breadcrumb-title {
  max-width: 160px;
}

/* ---- ヒーロー ---- */
.voice-single-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0 16px;
}

.voice-single-hero-text {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.voice-single-hero-img {
  flex-shrink: 0;
  width: 42%;
  overflow: hidden;
}

.voice-single-tag {
  color: var(--main-orange);
  display: block;
}

.voice-single-client {
  color: #555;
  display: block;
}

.voice-single-title {
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #222;
}

.voice-qa-item {
  padding-top: 28px;
}

/* Q マーカー */
.voice-qa-q {
  font-size: 20px;
  line-height: 2.5;
  color: #222;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.voice-qa-a {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #000;
  font-weight: 400;
}

.voice-qa-note {
  font-size: 12px;
  line-height: 2;
  color: #000;
  font-weight: 400;
  padding-top: 16px;
}

/* Q&A 内 画像（問の直前に配置） */
.voice-qa-img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.voice-qa-img img {
  border-radius: 10px;
}

.voice-qa-img .voice-img-placeholder--wide {
  width: 100%;
}

/* ---- 施工した家の写真 ---- */
.voice-photos-heading {
  font-size: 24px;
  letter-spacing: 0.15em;
  color: #222;
}

.voice-photos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 0;
  list-style: none;
}

.voice-photo-item {
  overflow: hidden;
}

/* ---- 施工事例リンク ---- */
.voice-case-img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
}

@media (min-width: 992px) {
  .voice-case-img img {
    aspect-ratio: 16 / 9;
  }
  
  .voice-qa-img img {
    border-radius: 30px;
  }
}

.voice-case-label {
  bottom: 135px;
  left: 23px;
  color: #f1f1f1;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.3em;
}

.voice-case-badge {
  bottom: 32px;
  left: 23px;
}

.voice-related-thumb .voice-case-badge {
  bottom: 10px;
  right: 10px;
  left: auto;
}

.voice-related-thumb .voice-case-btn {
  width: 140px;
  height: 56px;
  padding-left: 18px;
  font-size: 12px;
}

.voice-related-thumb .voice-case-btn::before {
  right: 18px;
}

.voice-related-thumb img {
  object-position: left center;
}

@media screen and (min-width: 992px) {
  .voice-related-thumb .voice-case-badge {
    bottom: 14px;
    right: 14px;
  }

  .voice-related-thumb .voice-case-btn {
    width: 160px;
    height: 64px;
    font-size: 13px;
  }
}

/* ---- お客様の声一覧（関連） ---- */
.voice-related-section {
  background-color: var(--main-gray);
}

.voice-related-heading {
  font-size: 24px;
  letter-spacing: 0.2em;
  color: #222;
}

.voice-related-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 0;
  list-style: none;
}

.voice-related-link {
  color: #222 !important;
}

.voice-related-tag {
  color: var(--main-orange);
  font-size: 16px;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}

.voice-related-thumb {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
}

.voice-related-placeholder {
  width: 100%;
  height: 100%;
}

.voice-related-body {
  padding-top: 12px;
}

.voice-related-title {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.2em;
  color: #222;
}

.voice-related-meta {
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #222;
  margin-top: 6px;
}

@media (any-hover: hover) {
  .voice-related-link:hover {
    opacity: 0.7;
  }
}

/* ---- PC（992px〜） ---- */
@media screen and (min-width: 992px) {
  .voice-single-breadcrumb-title {
    max-width: 480px;
  }

  .voice-related-thumb {
    max-width: 360px;
    border-radius: 50px;
  }

  .voice-case-label {
    font-size: 40px;
    bottom: 32px;
    left: 32px;
  }

  .voice-case-badge {
   bottom: 16px;
   right: 16px;
   left: inherit;
  }

  .voice-single-body {
    max-width: 938px;
    width: 100%;
    margin-inline: auto;
  }

  /* ヒーロー */
  .voice-single-hero {
    max-width: 938px;
    width: 100%;
    margin-inline: auto;
    gap: 0 52px;
  }

  .voice-single-hero-img {
    width: 52%;
  }

  .voice-single-title {
    font-size: 1.625rem;
    letter-spacing: 0.1em;
  }

  /* Q&A */
  .voice-qa-item {
    padding-top: 80px;
  }

  .voice-qa-item:first-of-type {
    padding-top: 40px;
  }

  .voice-qa-q {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .voice-qa-a {
    font-size: 16px;
  }

  .voice-qa-img {
    margin-bottom: 32px;
  }

  /* 施工写真 */
  .voice-photos-heading {
    font-size: 1.375rem;
  }

  .voice-photos-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  /* 関連 */
  .voice-related-heading {
    font-size: 1.375rem;
  }

  .voice-related-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .voice-related-body {
    padding-top: 16px;
  }

  .voice-related-title {
    font-size: 16px;
  }
}

/*------------------------------
 イベント情報
------------------------------*/

.company-takeuchi-logo{
  width: 100%;
  max-width: 241px;
}

.company-map{
  aspect-ratio: 345 / 320;
}

.company-acetech-logo{
  width: 100%;
  max-width: 188px;
}

@media screen and (min-width: 992px) {
  .company-takeuchi-logo{
    max-width: 267px;
  }

  .company-map{
    aspect-ratio: 698 / 320;
  }

  .company-acetech-logo{
    max-width: 444px;
  }
}

@media (hover: hover) {
}

/*------------------------------
 よくある質問
------------------------------*/

.faq-row-q {
  display: grid;
  grid-template-columns: 1.5em 1fr;
  column-gap: 0.25em;
  align-items: start;
}

.faq-row-a {
  display: grid;
  grid-template-columns: 1.5em 1fr;
  column-gap: 0.9em;
  align-items: start;
}

.archive-event-thumb{
  position: relative;
}

.archive-event-thumb img{
  display: block;
  width: 100%;
  aspect-ratio: 354 / 236;
  object-fit: cover;
  border-radius: 20px;
}

.archive-event-venue {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 10px;
  align-items: start;
  margin-bottom: 6px;
}

.archive-event-venue img{
  padding-top: 5px;
}

@media screen and (min-width: 768px) {
  .archive-event-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3.75%;
    row-gap: 72px;
  }
}

@media screen and (min-width: 992px) {

  .archive-event-thumb img{
    border-radius: 30px;
  }

}

@media screen and (min-width: 1200px) {
  .archive-event-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/*イベント終了表示*/

.archive-event-items.is-ended .archive-event-thumb::before {
  content: "本イベントは終了いたしました";
  white-space: pre-line;
  font-size: 1rem;
  font-weight: bold;
  line-height: 27px;
  letter-spacing: 0.2em;
  color: #F1F1F1;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 992px) {
  .archive-event-items.is-ended .archive-event-thumb::before {
    border-radius: 30px;
  }
}

/*ページネーション*/

.pagination-list{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 36px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.pagination-list > li > * {
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
  text-decoration: none;
}

.pagination-list > li > *:hover{
  opacity: 0.6;
}

.pagination-list .prev,
.pagination-list .next {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-list .prev::before,
.pagination-list .next::before{
  content: "";
  width: 8.63px;
  height: 6.92px;
  background-image: url("../images/top/arrow_or.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.pagination-list .prev::before{
  transform: scaleX(-1);
}

.pagination-list .page-numbers,
.pagination-list .page-numbers.is-current {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
}

.pagination-list .page-numbers.is-current {
  opacity: 0.4;
  pointer-events: none;
}

.pagination-list .dots {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
}


@media (hover: hover) {
}

/*------------------------------
 イベント情報
------------------------------*/

.archive-event-thumb{
  position: relative;
}

.archive-event-thumb img{
  display: block;
  width: 100%;
  aspect-ratio: 354 / 236;
  object-fit: cover;
  border-radius: 20px;
}

.archive-event-venue {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 10px;
  align-items: start;
  margin-bottom: 6px;
}

.archive-event-venue img{
  padding-top: 5px;
}

@media screen and (min-width: 768px) {
  .archive-event-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3.75%;
    row-gap: 72px;
  }
}

@media screen and (min-width: 992px) {

  .archive-event-thumb img{
    border-radius: 30px;
  }

}

@media screen and (min-width: 1200px) {
  .archive-event-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/*イベント終了表示*/

.archive-event-items.is-ended .archive-event-thumb::before {
  content: "本イベントは終了いたしました";
  white-space: pre-line;
  font-size: 1rem;
  font-weight: bold;
  line-height: 27px;
  letter-spacing: 0.2em;
  color: #F1F1F1;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 992px) {
  .archive-event-items.is-ended .archive-event-thumb::before {
    border-radius: 30px;
  }
}

/*ページネーション*/

.pagination-list{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 36px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.pagination-list > li > * {
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
  text-decoration: none;
}

.pagination-list > li > *:hover{
  opacity: 0.6;
}

.pagination-list .prev,
.pagination-list .next {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-list .prev::before,
.pagination-list .next::before{
  content: "";
  width: 8.63px;
  height: 6.92px;
  background-image: url("../images/top/arrow_or.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.pagination-list .prev::before{
  transform: scaleX(-1);
}

.pagination-list .page-numbers,
.pagination-list .page-numbers.is-current {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
}

.pagination-list .page-numbers.is-current {
  opacity: 0.4;
  pointer-events: none;
}

.pagination-list .dots {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
}

@media (hover: hover) {
}

/*------------------------------
 会社概要
------------------------------*/

.company-takeuchi-logo{
  width: 100%;
  max-width: 241px;
}

.company-map{
  aspect-ratio: 345 / 320;
}

.company-acetech-logo{
  width: 100%;
  max-width: 188px;
}

@media screen and (min-width: 992px) {
  .company-takeuchi-logo{
    max-width: 267px;
  }

  .company-map{
    aspect-ratio: 698 / 320;
  }

  .company-acetech-logo{
    max-width: 444px;
  }
}

@media (hover: hover) {
}

/*------------------------------
 よくある質問
------------------------------*/

.faq-row-q {
  display: grid;
  grid-template-columns: 1.5em 1fr;
  column-gap: 0.25em;
  align-items: start;
}

.faq-row-a {
  display: grid;
  grid-template-columns: 1.5em 1fr;
  column-gap: 0.9em;
  align-items: start;
}

@media screen and (min-width: 992px) {
}

@media (hover: hover) {
}

/*------------------------------
 お問い合わせ
------------------------------*/

.contact-form-wrapper {
  margin-bottom: 200px;
  font-weight: 500;
  line-height: 24px;
}

.contact-form p{
  margin-bottom: 0;
}

.contact-form-label {
  position: relative;
  padding-left: 24px;
}

.contact-form-label.is-required::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--main-orange);
  margin-right: 10px;
  position: absolute;
  border-radius: 50rem;
  top: 10px;
  left: 0;
}

.contact-checks p .wpcf7-form-control-wrap .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  width: fit-content;
}

.contact-checks p .wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0;
  cursor: pointer;
  line-height: 1.2;
}

.contact-checks p .wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item label input {
  flex-shrink: 0;
}

.contact-checks input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--main-orange);
}

.contact-input,
.contact-textarea {
  width: 100%;
  border-radius: 12px;
  background: #F1F1F1 !important;
  letter-spacing: 0;
  box-sizing: border-box;
}

.contact-input {
  height: 62px;
  padding: 0 18px;
}

.contact-textarea {
  min-height: 220px;
  padding: 18px;
  resize: vertical;
}

.contact-inline p{
  display: inline-flex;
  align-items: flex-end;
  gap: 20px;
}

.contact-input-short {
  width: 100%;
  max-width: 220px;
}

.contact-input-medium {
  width: 100%;
}

.contact-address-zip p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.contact-address-zip .contact-input {
  max-width: 100%;
}

.contact-address-btn {
  width: 100%;
  max-width: 183px;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  background: var(--main-orange);
  letter-spacing: 0;
  color: #fff !important;
  cursor: pointer;
}

.contact-submit {
  border: none;
  font-size: 0.875rem !important;
  letter-spacing: 0.1em !important;
  color: #fff !important;
  background-color: transparent !important;
  cursor: pointer;
}

.wpcf7-spinner {
  display: none !important;
}


@media screen and (min-width: 576px) {
  .contact-checks p .wpcf7-form-control-wrap .wpcf7-checkbox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
    row-gap: 16px;
    width: auto;
  }

  .contact-input-medium {
    width: 67%;
  }

  .contact-address-zip p {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .contact-address-zip .contact-input {
    max-width: 220px;
  }
}

@media screen and (min-width: 992px) {
  .contact-form-wrapper {
    margin-bottom: 260px;
  }

  .contact-checks p .wpcf7-form-control-wrap .wpcf7-checkbox {
    grid-template-columns: repeat(4, max-content);
  }
}

@media (hover: hover) {
}

/*------------------------------
 ショールーム来場予約フォーム
------------------------------*/
.form-flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.form-flow-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 25px;
}

.form-flow-marker {
  position: relative;
}

.form-flow-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(1rem + 16px);
  width: 0.5px;
  height: calc(100% - 32px);
  transform: translateX(-50%);
  background: var(--main-orange);
}

.form-flow-item:last-child .form-flow-marker::after {
  display: none;
}

.form-note li {
  padding-left: 1.25em;
  text-indent: -1.25em;
}

/*booking package用*/

.reservation-form #booking-package,
.reservation-form #booking-package_inputFormPanel{
  background-color: transparent!important;
}

.reservation-form #booking-package_inputFormPanel .title_in_form{
  margin-bottom: 40px;
  position: static;
}

.reservation-form #booking-package_inputFormPanel .row {
  font-size: 1rem;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.3em;
  border: unset;
  padding: 0;
  margin-bottom: 40px;
  border-radius: 8px;
}

.reservation-form #booking-package_inputFormPanel .row .name{
  margin-bottom: 8px;
}

.reservation-form .row:has(.bookingDate) > .name,
.reservation-form .row:has(#booking_package_value_your-name) > .name,
.reservation-form .row:has(#booking_package_value_your-kana) > .name,
.reservation-form .row:has(#booking_package_value_your-age) > .name,
.reservation-form .row:has(#booking_package_value_your-tel) > .name,
.reservation-form .row:has(#booking_package_value_your-email) > .name,
.reservation-form #booking-package-address-heading,
.reservation-form .row:has(#booking_package_value_message) > .name {
  position: relative;
  padding-left: 24px;
}

.reservation-form .row:has(.bookingDate) > .name::before,
.reservation-form .row:has(#booking_package_value_your-name) > .name::before,
.reservation-form .row:has(#booking_package_value_your-kana) > .name::before,
.reservation-form .row:has(#booking_package_value_your-age) > .name::before,
.reservation-form .row:has(#booking_package_value_your-tel) > .name::before,
.reservation-form .row:has(#booking_package_value_your-email) > .name::before,
.reservation-form .row:has(#booking_package_value_message) > .name::before,
.reservation-form #booking-package-address-heading::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--main-orange);
  margin-right: 10px;
  position: absolute;
  border-radius: 50rem;
  top: 10px;
  left: 0;
}

.reservation-form #booking-package_inputFormPanel .row .value input,
.reservation-form #booking-package_inputFormPanel .row .value textarea {
  width: 100%;
  border-radius: 12px;
  background: #F1F1F1 !important;
  letter-spacing: 0;
  box-sizing: border-box;
}

.reservation-form #booking-package_inputFormPanel .row .value input {
  height: 62px;
  padding: 0 18px;
}

.reservation-form #booking-package_inputFormPanel .row .value textarea {
  min-height: 220px;
  padding: 18px;
  resize: vertical;
}

.reservation-form #booking_package_input_your-age{
  width: 100%;
  max-width: 220px;
}

.reservation-form #booking_package_input_your-age + .description{
  font-size: 24px;
  line-height: 1;
}

.reservation-form .value:has(> #booking_package_input_your-age) {
  display: inline-flex;
  align-items: flex-end;
  gap: 20px;
}

.reservation-form .bottomBarPanel{
  display: flex;
  justify-content: center;
}

.reservation-form .booking-package .book_now_button,
.reservation-form .booking-package .return_form_button {
  display: flex;
  align-items: center;
  width: 184.4px!important;
  height: 74.7px;
  background-image: url("../images/about/common_btn_fill_or.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  padding-left: 24px;
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
  border: none;
  font-size: 0.875rem !important;
  letter-spacing: 0.1em !important;
  color: #fff !important;
  background-color: transparent !important;
  cursor: pointer;
  justify-content: flex-start;
}

.reservation-form .booking-package .book_now_button::before,
.reservation-form .booking-package .return_form_button::before {
  content: "";
  width: 8.63px;
  height: 6.92px;
  background-image: url("../images/top/arrow_wh.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
}

.reservation-form #booking_package_input_zip,
.reservation-form #booking_package_input_pref,
.reservation-form #booking_package_input_city,
.reservation-form #booking_package_input_street{
  width: 100%;
}


@media screen and (min-width: 576px) {
  .reservation-form #booking_package_input_zip,
  .reservation-form #booking_package_input_pref,
  .reservation-form #booking_package_input_city,
  .reservation-form #booking_package_input_street{
    width: 67%!important;
  }
}

@media screen and (min-width: 992px) {
}

@media (hover: hover) {
}

/*------------------------------
 (name)
------------------------------*/

@media screen and (min-width: 992px) {
}

@media (hover: hover) {
}

/*------------------------------
 NEWS SINGLE
------------------------------*/

/* パンくず：記事タイトルを省略 */
.news-single-breadcrumb-title {
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-single-header {
  margin-bottom: 24px;
}

.news-single-inner {
  padding: 0 24px;
}

.news-single-section .breadcrumb {
  position: static;
}

/* 日付 */
.news-single-date {
  color: #000;
  font-weight: 500;
  margin-bottom: 8px;
}

/* タイトル */
.news-single-title {
  font-size: 24px;
  letter-spacing: 0.2em;
  line-height: 1.5;
  font-weight: 700;
}

/* 区切り線 */
.news-single-divider {
  border-color: #222;
  opacity: 1;
  margin-top: 20px;
  margin-bottom: 0;
}

/* アイキャッチ画像 */
.news-single-thumb {
  border-radius: 12px;
  margin-bottom: 24px;
  overflow: hidden;
}

.news-single-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

/* 本文 */
.news-single-body {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #000;
}

/* ナビゲーション */
.news-single-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0 12px;
  color: #222 !important;
}

.news-single-nav-link--prev::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 8.63px;
  height: 6.92px;
  background-image: url("../images/top/arrow_or.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

.news-single-nav-link--next::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 8.63px;
  height: 6.92px;
  background-image: url("../images/top/arrow_or.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (any-hover: hover) {
  .news-single-nav-link:hover {
    opacity: 0.6;
  }
}

.news-single-article {
  padding-top: 80px;
  padding-bottom: 190px;
}

@media screen and (min-width: 992px) {
  .news-single-header {
    margin-bottom: 40px;
  }

  .news-single-inner {
    padding: 0 12px;
  }

  .news-single-article {
    max-width: 938px;
    width: 100%;
    margin: 0 auto;
    padding-top: 90px;
    padding-bottom: 220px;
  }

  .news-single-breadcrumb-title {
    max-width: 300px;
  }

  .news-single-title {
    font-size: 32px;
  }

  .news-single-divider {
    margin-top: 24px;
  }

  .news-single-body {
    margin-bottom: 32px;
  }

  .news-single-nav-link {
    font-size: 1rem;
  }

  .news-single-thumb {
    border-radius: 32px;
    margin-bottom: 32px;
  }

  .news-single-nav-prev,
  .news-single-nav-next {
    min-width: 90px;
  }

  .news-single-nav-prev.is-empty,
  .news-single-nav-next.is-empty {
    visibility: hidden;
  }
}

/*------------------------------
 THANKS（お問い合わせ・ショールーム・イベント）
------------------------------*/

.thanks-section {
  position: relative;
  overflow: hidden;
}

.thanks-content-section {
  padding-top: 150px;
  padding-bottom: 190px;
}

/* 背景装飾 SVG */

/* bg01（580×422）: 右上 */
.thanks-section::before {
  content: "";
  position: absolute;
  top: 100px;
  right: 0;
  width: min(580px, 65%);
  aspect-ratio: 580 / 422;
  background-image: url("../images/contact/contact_bg01.svg");
  background-position: top right;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* bg02（443×281）: 左下 */
.thanks-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(443px, 55%);
  aspect-ratio: 443 / 281;
  background-image: url("../images/contact/contact_bg02.svg");
  background-position: bottom left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* パンくず：static・暗色（FVなし） */
.thanks-section .breadcrumb {
  position: static;
}

/* コンテンツ：背景SVGより前面 */
.thanks-content-wrapper {
  position: relative;
  z-index: 1;
}

/* 見出し */
.thanks-title {
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 700;
}

/* 404 タイトル */
.not-found-title {
  font-size: 50px;
  letter-spacing: 0.2em;
  line-height: 1;
}

.not-found-section {
  padding-top: 150px;
  padding-bottom: 300px;
}

@media screen and (min-width: 992px) {
  .not-found-title {
    font-size: 62px;
  }
  .not-found-section {
  padding-top: 160px;
  padding-bottom: 308px;
}
}

/* 本文 */
.thanks-body p {
  font-size: 0.875rem;
  line-height: 24px;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0;
}

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

@media screen and (min-width: 992px) {
  .thanks-title {
    font-size: 32px;
  }

  .thanks-body p {
    font-size: 1rem;
  }

  .thanks-content-section {
    padding-top: 160px;
    padding-bottom: 210px;
  }
}

/*------------------------------
 EVENT SINGLE
------------------------------*/

/* パンくず（FVなし・暗色） */
.event-single-section .breadcrumb {
  position: static;
}


/* イベントヘッダー */
.event-single-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #222;
}

.event-single-location-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

/* 場所 */
.event-single-location {
  color: #333;
}

.event-single-location-icon {
  width: 14px;
  height: auto;
}

.event-single-title {
  font-size: 24px;
  letter-spacing: 0.2em;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}

/* 日付・時間ラッパー */
.event-single-meta {
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 16px 0;
}

.event-single-period {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.2em;
  line-height: 30px;
  text-align: center;
}

.ev-date-unit {
  font-size: 14px;
  font-weight: 700;
}

.event-single-datetime {
  color: #222;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  font-size: 16px;
  padding-top: 8px;
}

.event-single-inner {
  padding: 0 24px;
}

/* サムネイル */
.event-single-thumbnail {
  border-radius: 12px;
  overflow: hidden;
  margin: 40px 0 0 0;
}

.event-single-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

/* セクション見出し（●付き） */
.event-section-heading {
  display: flex;
  align-items: center;
  gap: 0 8px;
  font-size: 24px;
  line-height: 1.4;
  padding-bottom: 16px;
}

.event-section-heading::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--main-orange);
}

/* 概要 本文 */
.event-single-overview {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #333;
}

/* 物件情報 レイアウト */
.event-property-layout {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  gap: 24px;
}

/* SP: テーブルを先に表示 */
.event-floorplan-col {
  order: 2;
}

.event-property-data {
  order: 1;
}

/* 間取り画像 */
.event-floorplan-wrap {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
}

.event-floorplan-figure {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}

.event-floorplan-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-floorplan-caption {
  font-size: 0.75rem;
  color: #555;
  letter-spacing: 0.05em;
}

/* 物件情報 テーブル */
.event-property-table {
  border-collapse: collapse;
}

.event-property-row {
  border-bottom: 1px solid var(--main-orange);
}

.event-property-th {
  width: 7em;
  padding: 24px 16px 16px 0;
  color: #000;
  font-weight: 500;
  white-space: nowrap;
  vertical-align: top;
}

.event-property-td {
  padding: 24px 0 16px 0;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.1em;
  vertical-align: top;
  font-weight: 400;
}

.event-detail-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
}
/* 外観・サウナ・ダイニング 画像 */
.event-detail-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* 外観・サウナ・ダイニング テキスト */
.event-detail-text {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #333;
}

/* その他のイベント情報 */
.event-related-heading {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.3em;
}

.event-related-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  margin-bottom: 72px;
}

.event-related-link {
  color: #333 !important;
}

.event-related-thumb {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
  margin: 0 auto;
}

.event-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-related-thumb-placeholder {
  width: 100%;
  height: 100%;
}

.event-related-body {
  max-width: 304px;
  width: 100%;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-related-title {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #222;
  font-weight: 700;
  margin-bottom: 2px;
}

.event-related-location {
  color: #222;
}

.event-related-location-icon {
  flex-shrink: 0;
}

.event-related-date {
  color: #222;
}

.event-single-body-section:first-child {
  padding: 24px 0 0 0;
}

.event-single-body-section {
  padding: 40px 0 0 0;
}

.event-single-point-section {
    padding: 40px 0 0 0;
}

@media (any-hover: hover) {
  .event-related-link:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 992px) {
  .event-single-inner {
    padding: 0 12px;
  }

  .event-single-header {
    max-width: 938px;
    width: 100%;
    margin: 0 auto;
  }

  .ev-date-unit {
  font-size: 16px;
  }

  .event-single-body-section {
    padding: 80px 0 0 0;
    max-width: 1176px;
    width: 100%;
    margin-inline: auto;
  }

  .event-related-section {
    max-width: 1176px;
    width: 100%;
    margin-inline: auto;
  }

  .event-single-point-section {
    padding: 80px 0 0 0;
    max-width: 1176px;
    width: 100%;
    margin-inline: auto;
  }

  .event-floorplan-figure {
    flex: 1 1 0;
    max-width: 734px;
    height: 399px;
    aspect-ratio: 734 / 399;
  }

  .event-detail-image {
    max-width: 1176px;
    height: auto;
    aspect-ratio: 1176 / 784;
  }

  .event-floorplan-wrap {
    flex-direction: row;
  }

  .event-single-point-section:first-child {
    padding: 110px 0 0 0;
  }

  .event-single-title {
    font-size: 32px;
    line-height: 50px;
    max-width: 630px;
    width: 100%;
    margin: 0 auto 24px;
  }

  .event-single-meta {
    padding: 24px 0;
  }

  .event-single-period {
    font-size: 32px;
  }

  .event-section-body-heading {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .event-single-overview,
  .event-detail-text {
    font-size: 1rem;
  }

  .event-related-thumb {
  max-width: 354px;
  width: 100%;
  height: 236px;
  aspect-ratio: 354 / 236;
  border-radius: 32px;
  overflow: hidden;
  margin: 0;
}

  /* 物件情報 PC: 横並び（左: 画像 / 右: テーブル） */
  .event-property-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }

  .event-floorplan-col {
    order: 1;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .event-property-data {
    order: 2;
    flex: 1;
  }

  .event-property-table {
    max-width: 410px;
  }

  .event-property-th {
    width: 9em;
    padding: 14px 24px 14px 0;
  }

  .event-property-td {
    padding: 14px 0;
  }

  .event-related-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 150px;
  }

  .event-related-body {
    padding-top: 14px;
  }

  .event-single-thumbnail {
    border-radius: 32px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .event-related-list-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .event-related-list {
    grid-template-columns: repeat(3, 280px);
    min-width: 900px;
  }

  /* 列幅が狭い帯域では固定高さを解除し、aspect-ratio で高さを自動算出する */
  .event-floorplan-figure {
    height: auto;
  }
}

@media screen and (min-width: 1200px) {
  .event-floorplan-col {
    flex: 0 0 auto;
    max-width: fit-content;
  }

  .event-property-data {
    flex: 0 0 auto;
    max-width: 410px;
    width: 100%;
  }
}

/*------------------------------
 WORKS GALLERY
------------------------------*/
.single-works-gallery-section {
  padding: 40px 24px 0 24px;
}

.single-works-gallery-inner {
}

.single-works-gallery-heading {
  padding: 0 16px;
  font-size: 1.5rem;
  margin-bottom: 0;
}

/* html,body に overflow-x: clip があるため、右側はビューポート外へ溢れ出す */
.single-works-gallery-overflow {
  position: relative;
  padding-bottom: 60px; /* SP: スライド下に矢印ボタンを配置するスペース */
}

/* SP は 1 枚のみ表示、PC も 1.5 枚に制限するため overflow: hidden で見切る */
.single-works-gallery-swiper {
  overflow: hidden;
}

.single-works-gallery-slide-inner {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: opacity 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.single-works-gallery-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

/* 切り抜き形状を SVG 背景で表現（SP 用） */
.single-works-gallery-slide-inner::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 142px;
  height: 48px;
  background: url("../images/works/img_work_sp.svg") no-repeat bottom right / contain;
  z-index: 0;
  pointer-events: none;
}

/* 「詳しく見る +」: SVG 背景の上に重ねる暗色テキスト */
.single-works-gallery-more {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 26px;
  padding: 0 8px 0 24px;
  color: #222;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  line-height: 2;
  display: flex;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}

@media (any-hover: hover) {
  .single-works-gallery-slide-inner:hover {
    opacity: 0.8;
  }
}

/* 矢印ボタン（top-event-swiper と同スタイル） */
/* SP: スライド下端に配置。PC では top/bottom を上書きしてスライド中央に戻す。 */
.single-works-gallery-prev,
.single-works-gallery-next {
  width: 44px;
  height: 44px;
  border-radius: 50rem;
  border: 1px solid #222;
  background: transparent;
  position: absolute;
  bottom: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0;
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.single-works-gallery-prev::after,
.single-works-gallery-next::after {
  content: "";
  width: 8.63px;
  height: 6.92px;
  background-image: url("../images/top/arrow_bl.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.single-works-gallery-prev::after {
  transform: scaleX(-1);
}

/* SP: スライド左右端に配置 */
.single-works-gallery-prev {
  left: 12px;
}

.single-works-gallery-next {
  right: 12px;
}

.single-works-gallery-prev.swiper-button-disabled,
.single-works-gallery-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

@media (any-hover: hover) {
  .single-works-gallery-prev:hover,
  .single-works-gallery-next:hover {
    opacity: 0.6;
  }
}

@media screen and (min-width: 992px) {
  /* セクション全体はフル幅。見出しだけ 1176px センタリング */
  .single-works-gallery-section {
    padding: 80px 0 0 12px;
  }

  .single-works-gallery-head {
    max-width: 1176px;
    margin-inline: auto;
  }

  .single-works-gallery-heading {
    padding: 0;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }

  /*
   * 初期表示を 1.5 枚（572 + gap 24 + 572/2 = 882px）に制限する。
   * 余白の合計 (100% - 882px) を 1440px 時の比率 434:124 = 7:2 で配分し、
   * 992px〜全域で 1.5 枚表示を保つ。
   * 1440px 時: padding-left = 434px、padding-right = 124px。
   * スライダー本体: slidesPerView: "auto" + 固定幅 572px
   */
  .single-works-gallery-overflow {
    padding-left: calc((100% - 882px) * 7 / 9);
    padding-bottom: 0; /* SP で付与した矢印スペースを解除 */
  }

  /* PC: スライド固定幅 */
  .single-works-gallery-slide {
    width: 572px;
  }

  .single-works-gallery-figure {
      border: 1px solid #f1f1f1;
  }

  /* PC: 画像固定サイズ */
  .single-works-gallery-figure img {
    width: 100%;
    height: 382px;
    object-fit: cover;
  }

  /* PC: SVG 背景を PC 用に差し替え、サイズを拡大 */
  .single-works-gallery-slide-inner::after {
    width: 181px;
    height: 45px;
    right: 0;
    background-image: url("../images/works/img_work_pc.svg");
  }

  /* PC: 「詳しく見る +」テキストを SVG に合わせて拡大 */
  .single-works-gallery-more {
    height: 35px;
    padding: 0 20px 0 36px;
    bottom: -4px;
  }

  /*
   * 矢印位置（slidesPerView: "auto"、スライド固定幅 572px、gap 24px）:
   *   pad = calc((100% - 882px) * 7 / 9)  = スライド 1 の左端
   *   prev: スライド 1 の手前側（左へさらに 30px 離す）。左端 = pad - 64
   *   next: スライド 2 寄り（右へさらに 30px 離す）。左端 = pad + 592
   *   PC はスライド中央に戻す（SP の bottom: 0 を上書き）。
   */
  .single-works-gallery-prev,
  .single-works-gallery-next {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .single-works-gallery-prev {
    left: calc((100% - 882px) * 7 / 9 - 68px);
    right: auto;
  }

  .single-works-gallery-next {
    left: calc((100% - 882px) * 7 / 9 + 596px);
    right: auto;
  }
}

/*------------------------------
 WORKS GALLERY MODAL
------------------------------*/
.single-works-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 72px 16px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.single-works-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.single-works-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(28, 28, 28, 0.4);
  cursor: pointer;
}

.single-works-modal-dialog {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 459px;
  max-height: calc(100svh - 72px);
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.single-works-modal-body {
  padding: 40px 30px;
}

.single-works-modal-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin: 0 0 20px;
  padding-left: 4px;
}

.single-works-modal-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--main-orange, #e8743a);
  border-radius: 50%;
  flex-shrink: 0;
}

.single-works-modal-figure {
  margin: 0 0 20px;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}

.single-works-modal-image {
  display: block;
  max-width: 100%;
  max-height: 616px;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.single-works-modal-desc {
  font-size: 0.875rem;
  line-height: 1.85;
  letter-spacing: 0.08em;
  color: #1c1c1c;
  margin: 0 0 28px;
}

.single-works-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  padding: 8px 24px;
  background: transparent;
  border: 0;
  color: #1c1c1c;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: opacity 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  font-family: inherit;
}

.single-works-modal-close-arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("../images/top/arrow_or.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}



@media (any-hover: hover) {
  .single-works-modal-close:hover {
    opacity: 0.6;
  }
}

@media screen and (min-width: 992px) {
  .single-works-modal {
    padding: 40px 24px;
  }

  .single-works-modal-dialog {
    max-width: 1200px;
    max-height: calc(100vh - 48px);
    border-radius: 20px;
  }

  .single-works-modal-body {
    padding: 80px 120px;
  }

  .single-works-modal-title {
    gap: 14px;
    margin-bottom: 16px;
    padding-left: 8px;
  }

  .single-works-modal-dot {
    width: 10px;
    height: 10px;
  }

  .single-works-modal-figure {
    margin-bottom: 28px;
  }

  .single-works-modal-desc {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
  }

  .single-works-modal-close {
    font-size: 1rem;
    letter-spacing: 0.25em;
    gap: 24px;
  }

  .single-works-modal-close-arrow {
    width: 12px;
    height: 12px;
  }
}

@media screen and (min-width: 1200px) {
  .single-works-modal-image {
    max-width: 935px;
    max-height: 623px;
  }
}

.single-works-modal--floorplan .single-works-modal-image {
  max-height: 1232px;
}

.single-works-modal--floorplan .single-works-modal-dialog {
  max-width: min(2400px, 96vw);
}

.single-works-modal--floorplan .single-works-modal-body {
  padding: 32px 12px;
}

.single-works-modal--floorplan .single-works-modal-figure {
  overflow-x: auto;
}

.single-works-modal--floorplan .single-works-modal-image {
  width: 200%;
  max-width: none;
}

@media screen and (min-width: 992px) {
  .single-works-modal--floorplan .single-works-modal-body {
    padding: 80px 40px;
  }

  .single-works-modal--floorplan .single-works-modal-figure {
    overflow-x: visible;
  }

  .single-works-modal--floorplan .single-works-modal-image {
    width: auto;
    max-width: 100%;
    max-height: 1232px;
  }
}

@media screen and (min-width: 1200px) {
  .single-works-modal--floorplan .single-works-modal-image {
    max-width: 1870px;
    max-height: 1246px;
  }
}

/*------------------------------
 WORKS VOICE (西村からの一言)
------------------------------*/
.single-works-voice-section {
  padding: 40px 16px;
}

.single-works-voice-inner {
  max-width: 1176px;
  margin: 0 auto;
}

.single-works-voice-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 48px 30px;
  width: 100%;
  max-width: 346px;
  min-height: 654px;
  margin: 0 auto;
  z-index: 2;
}

.single-works-voice-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-align: center;
  color: #222;
  margin: 0 0 24px;
}

.single-works-voice-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.single-works-voice-figure {
  flex-shrink: 0;
}

.single-works-voice-image {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

.single-works-voice-text {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.1em;
  color: #000;
}

/*------------------------------
 SINGLE WORKS CUSTOMER VOICE (O様からの一言)
------------------------------*/
.single-works-customer-section {
  padding: 40px 0 120px;
  position: relative;
  z-index: 2;
  overflow-x: clip;
}

.single-works-customer-section::before,
.single-works-customer-section::after {
  content: "";
  position: absolute;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

.single-works-customer-section::before {
  top: -70px;
  right: 0;
  aspect-ratio: 599 / 277;
  background-image: url("../images/works/img_works_top.svg");
  background-position: right top;
  width: 299px;
  height: 138px;
}

.single-works-customer-section::after {
  bottom: -45px;
  left: 0;
  aspect-ratio: 788 / 277;
  background-image: url("../images/works/img_works_bottom.svg");
  background-position: left bottom;
  width: 394px;
  height: 138px;
}

.single-works-customer-inner {
  position: relative;
  z-index: 2;
  max-width: 1176px;
  margin: 0 auto;
}

.single-works-customer-title {
  font-size: 24px;
  letter-spacing: 0.3em;
  color: #222;
  margin: 0 0 24px;
}

.single-works-customer-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.single-works-customer-figure {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.single-works-customer-image {
  object-fit: cover;
}

.single-works-customer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.single-works-customer-heading {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #000;
}

.single-works-customer-text {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #222;
}

.single-works-customer-btn {
  margin-top: 8px;
}

@media screen and (min-width: 992px) {
  .single-works-customer-section {
    padding: 0 0 180px;
  }

  .single-works-customer-section::before {
    top: -32%;
    width: 599px;
    height: 277px;
  }

  .single-works-customer-section::after {
    bottom: -12%;
    width: 788px;
    height: 277px;
  }

  .single-works-customer-title {
    margin-bottom: 24px;
  }

  .single-works-customer-body {
    flex-direction: row;
    align-items: flex-start;
    gap: 44px;
  }

  .single-works-customer-figure {
    flex: 0 0 470px;
    max-width: 470px;
    border-radius: 20px;
    overflow: hidden;
  }

  .single-works-customer-image {
    aspect-ratio: 470 / 313;
  }

  .single-works-customer-content {
    flex: 1 1 0;
    gap: 28px;
    padding-top: 8px;
  }

  .single-works-customer-heading {
    font-size: 24px;
    line-height: 1.6;
  }

  .single-works-customer-text {
    font-size: 16px;
    line-height: 2;
  }

  .single-works-customer-btn {
    margin-top: 12px;
  }
}

/*------------------------------
 PRIVACY POLICY
------------------------------*/
.privacy-section .breadcrumb {
  position: static;
}

.privacy-heading {
  padding-top: 40px;
}

.privacy-intro {
  line-height: 1.9;
  color: #444;
}

.privacy-item-title {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.privacy-item-body {
  line-height: 1.9;
  color: #444;
}

.privacy-list-inner {
  list-style: none;
  padding-left: 0;
}

.privacy-list-inner li {
  padding-left: 1em;
  position: relative;
  line-height: 1.9;
}

.privacy-list-inner li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.privacy-address {
  font-style: normal;
  line-height: 2;
}

/* クッキーポリシー 外部リンク */
.cookie-external-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: inherit;
}

.cookie-external-link svg {
  display: inline;
  vertical-align: -0.15em;
  margin-left: 3px;
}

/* クッキーポリシー テーブル */
.cookie-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cookie-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  line-height: 1.8;
  color: #444;
}

.cookie-th,
.cookie-td {
  border: 1px solid #000;
  padding: 12px 16px;
  vertical-align: top;
  text-align: left;
  color: #333;
  font-weight: 400;
}

.cookie-th {
  white-space: nowrap;
  width: 36%;
  vertical-align: middle;
}

.cookie-td {
  width: 64%;
}

@media (min-width: 992px) {
  .privacy-heading {
    padding-top: 60px;
  }

  .privacy-item-title {
    font-size: 1.0625rem;
  }

  .cookie-th,
  .cookie-td {
    padding: 16px 20px;
  }
}

@media (min-width: 992px) {
  .privacy-heading {
    padding-top: 60px;
  }

  .privacy-item-title {
    font-size: 1.0625rem;
  }

  .privacy-inner {
    max-width: 938px;
    width: 100%;
    margin-inline: auto;
  }
}



/*------------------------------
 SINGLE-WORKS ALIASES (autogenerated)
------------------------------*/

.single-works-image-fv {
  border-bottom-left-radius: 120px;
}

.single-works-effect-steam-top,
.single-works-effect-steam-bottom {
  position: absolute;
  opacity: 0;
  transition:
    transform 1.6s ease-out,
    opacity 1.6s ease-out;
  will-change: transform, opacity;
}

.single-works-effect-steam-top {
  top: -19%;
  right: 0;
  aspect-ratio: 580 / 422;
  max-width: 80vw;
  transform: translateX(40vw);
}

.single-works-effect-steam-bottom {
  bottom: 4%;
  left: 0;
  aspect-ratio: 443 / 281;
  max-width: 80vw;
  transform: translateX(-30vw);
}

.is-animated.single-works-showroom-movie-box .single-works-effect-steam-top,
.is-animated.single-works-showroom-movie-box .single-works-effect-steam-bottom {
  opacity: 1;
  transform: translateX(0);
}

.single-works-movie-container {
  text-align: center
}

.single-works-movie-container iframe {
  position: relative;
  aspect-ratio: 737 / 415;
  width: 100%;
  height: auto;
  z-index: 99;
}

@media screen and (min-width: 992px) {
  .single-works-image-fv {
    border-bottom-left-radius: 300px;
  }

  .single-works-voice-section {
    padding: 80px 24px;
  }

  .single-works-voice-box {
    padding: 80px 99px 80px 120px;
    max-width: 1176px;
    min-height: 448px;
  }

  .single-works-voice-title {
    text-align: left;
    margin-bottom: 40px;
  }

  .single-works-voice-body {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }

  .single-works-effect-steam-top {
    top: -20%;
    width: 580px;
    height: 422px;
  }

  .single-works-effect-steam-bottom {
    bottom: -1%;
    width: 443px;
    height: 281px;
  }
}

@media screen and (min-width: 1200px) {
  .single-works-movie-container iframe {
    aspect-ratio: 737 / 415;
    width: 737px;
    height: 415px;
  }
}

/* ---- お客様の声一覧（関連） ---- */
.single-works-voice-related-section {
  background-color: var(--main-gray);
  max-width: 1176px;
  width: 100%;
  margin-inline: auto;
}

.single-works-voice-related-heading {
  font-size: 24px;
  letter-spacing: 0.2em;
  color: #222;
  position: relative;
  z-index: 10;
}

.single-works-voice-related-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 0;
  list-style: none;
}

.single-works-voice-related-link {
  color: #222 !important;
}

.single-works-voice-related-tag {
  color: var(--main-orange);
  font-size: 16px;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}

.single-works-voice-related-thumb {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 345 / 345;
  border-radius: 50px;
  overflow: hidden;
  margin-top: 8px;
}

.single-works-voice-related-placeholder {
  width: 100%;
  height: 100%;
}

.single-works-voice-related-body {
  padding-top: 12px;
}

.single-works-voice-related-title {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.2em;
  color: #222;
}

.single-works-voice-related-meta {
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #222;
  margin-top: 6px;
}

@media (any-hover: hover) {
.single-works-voice-related-link:hover {
    opacity: 0.7;
  }
}

/* セクション見出し（●付き） */
.single-works-event-section-heading {
  display: flex;
  align-items: center;
  gap: 0 8px;
  font-size: 24px;
  line-height: 1.4;
  padding-bottom: 16px;
}

.single-works-event-section-heading::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--main-orange);
}

/* 物件情報 レイアウト */
.single-works-event-property-layout {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  gap: 24px;
}

/* SP: テーブルを先に表示 */
.single-works-event-floorplan-col {
  order: 2;
}

.single-works-event-property-data {
  order: 1;
}

.single-works-event-floorplan-figure {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}

.single-works-event-floorplan-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 物件情報 テーブル */
.single-works-event-property-table {
  border-collapse: collapse;
}

.single-works-event-property-row {
  border-bottom: 1px solid var(--main-orange);
}

.single-works-event-property-th {
  width: 7em;
  padding: 24px 16px 16px 0;
  color: #000;
  font-weight: 500;
  white-space: nowrap;
  vertical-align: top;
  font-size: 16px;
}

.single-works-event-property-td {
  padding: 24px 0 16px 0;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.1em;
  vertical-align: top;
  font-weight: 400;
  font-size: 16px;
}

.single-works-event-detail-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

/* 外観・サウナ・ダイニング 画像 */
.single-works-event-detail-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* 外観・サウナ・ダイニング テキスト */
.single-works-event-detail-text {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #333;
}

/* その他のイベント情報 */
.single-works-event-related-heading {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.3em;
}

.single-works-event-single-body-section:first-child {
  padding: 24px 0 0 0;
}

.single-works-event-single-body-section {
  padding: 40px 0 0 0;
}

.single-works-event-single-point-section {
    padding: 40px 0 0 0;
}

.single-works-event-section-body-heading {
  font-size: 24px;
}

@media screen and (min-width: 992px) {
.single-works-event-single-body-section {
    padding: 80px 0 0 0;
    max-width: 1176px;
    width: 100%;
    margin-inline: auto;
  }
.single-works-event-single-point-section {
    padding: 80px 0 0 0;
    max-width: 1176px;
    width: 100%;
    margin-inline: auto;
  }
.single-works-event-floorplan-figure {
    flex: 1 1 0;
    max-width: 734px;
    height: 399px;
    aspect-ratio: 734 / 399;
  }
.single-works-event-detail-image {
    max-width: 1176px;
    height: auto;
    aspect-ratio: 1176 / 784;
    border-radius: 20px;
  }
.single-works-event-single-point-section:first-child {
    padding: 110px 0 0 0;
  }
.single-works-event-section-body-heading {
    margin-bottom: 24px;
  }
  .single-works-event-property-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
.single-works-event-floorplan-col {
    order: 1;
    flex: 0 0 50%;
    max-width: 50%;
  }
.single-works-event-property-data {
    order: 2;
    flex: 1;
  }
.single-works-event-property-table {
    max-width: 410px;
  }
.single-works-event-property-th {
    width: 9em;
    padding: 14px 24px 14px 0;
  }
.single-works-event-property-td {
    padding: 14px 0;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
/* 列幅が狭い帯域では固定高さを解除し、aspect-ratio で高さを自動算出する */
  .single-works-event-floorplan-figure {
    height: auto;
  }
}

@media screen and (min-width: 1200px) {
.single-works-event-floorplan-col {
    flex: 0 0 auto;
    max-width: fit-content;
  }
.single-works-event-property-data {
    flex: 0 0 auto;
    max-width: 410px;
    width: 100%;
  }
}

/* SINGLE-WORKS voice-related PC overrides (manual fix for missed aliases) */
@media screen and (min-width: 992px) {
  .single-works-voice-related-thumb {
    max-width: 360px;
    width: 100%;
    height: 360px;
    aspect-ratio: 360 / 360;
  }

  .single-works-voice-related-heading {
    font-size: 1.375rem;
  }

  .single-works-voice-related-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .single-works-voice-related-body {
    padding-top: 16px;
  }

  .single-works-voice-related-title {
    font-size: 16px;
  }
}

/* SINGLE-WORKS floorplan modal trigger button */
.single-works-event-floorplan-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .single-works-event-floorplan-button:hover {
    opacity: 0.8;
  }
}

/* SINGLE-WORKS FV: テキスト（パンくず + タイトル）を画像の上にオーバーレイ */
.single-works-fv-row {
  position: relative;
}

.single-works-fv-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.single-works-fv-text a,
.single-works-fv-text h2,
.single-works-fv-text p {
  pointer-events: auto;
}

@media screen and (min-width: 992px) {
  .single-works-fv-text {
    width: 33.333%;
  }
}

/* SINGLE-WORKS gallery: ポートレート (255x382) バリアント */
.single-works-gallery-section--portrait .single-works-gallery-figure img {
  aspect-ratio: 255 / 382;
}

@media screen and (min-width: 992px) {
  .single-works-gallery-section--portrait .single-works-gallery-slide {
    width: 255px;
  }
  .single-works-gallery-section--portrait .single-works-gallery-figure img {
    width: 100%;
    height: 382px;
    aspect-ratio: 255 / 382;
    border-radius: 8px;
  }
}
