@charset "UTF-8";
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
/* Color
============================================= */
/* Size
============================================= */
/* Font Family
============================================= */
/* Break Point
============================================= */
/* ========== Base ========== */
:root {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
  color: #333;
  background: #fff;
}

a {
  background-color: #fff;
}

.container {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  max-width: 75rem;
  margin: 0 auto;
}
@media (max-width: 1244px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

/* ========== Scroll Reveal ========== */
html.js-scroll-reveal-pending section:not(.hero):not(.site-footer):not(.scroll-reveal--skip):not([class$=-hero]),
html.js-scroll-reveal-pending article:not(.scroll-reveal--skip) {
  opacity: 0;
  transform: translateY(2.5rem);
}
html.js-scroll-reveal-pending .hero section,
html.js-scroll-reveal-pending .hero article,
html.js-scroll-reveal-pending [class$=-hero] section,
html.js-scroll-reveal-pending [class$=-hero] article,
html.js-scroll-reveal-pending .site-footer section,
html.js-scroll-reveal-pending .site-footer article {
  opacity: 1;
  transform: none;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(2.5rem);
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  html.js-scroll-reveal-pending section,
  html.js-scroll-reveal-pending article {
    opacity: 1;
    transform: none;
  }
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ========== Comment Rich Text（施工事例・物件詳細） ========== */
.work-page__comment-body.rich,
.property-page__comment-body.rich {
  font-size: 1rem;
  font-weight: 300;
}
@media (max-width: 767px) {
  .work-page__comment-body.rich,
  .property-page__comment-body.rich {
    font-size: 0.9375rem;
  }
}
.work-page__comment-body.rich ul,
.work-page__comment-body.rich ol,
.property-page__comment-body.rich ul,
.property-page__comment-body.rich ol {
  margin: 0 0 1.2em;
  padding: 0;
  list-style: none;
}
.work-page__comment-body.rich li,
.property-page__comment-body.rich li {
  position: relative;
  padding-left: 1.3em;
}
.work-page__comment-body.rich li + li,
.property-page__comment-body.rich li + li {
  margin-top: 0.45em;
}
.work-page__comment-body.rich ul > li::before,
.property-page__comment-body.rich ul > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.work-page__comment-body.rich ol,
.property-page__comment-body.rich ol {
  counter-reset: comment-ol;
}
.work-page__comment-body.rich ol > li,
.property-page__comment-body.rich ol > li {
  counter-increment: comment-ol;
}
.work-page__comment-body.rich ol > li::before,
.property-page__comment-body.rich ol > li::before {
  content: counter(comment-ol) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.work-page__comment-body.rich table,
.property-page__comment-body.rich table {
  width: 100%;
  margin: 0 0 1.2em;
  border-collapse: collapse;
  font-size: inherit;
}
.work-page__comment-body.rich th,
.work-page__comment-body.rich td,
.property-page__comment-body.rich th,
.property-page__comment-body.rich td {
  padding: 0.75rem 1rem;
  border: 1px solid #000;
  vertical-align: top;
  text-align: left;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.work-page__comment-body.rich th,
.work-page__comment-body.rich td:first-child,
.property-page__comment-body.rich th,
.property-page__comment-body.rich td:first-child {
  font-weight: 500;
}
.work-page__comment-body.rich thead th,
.property-page__comment-body.rich thead th {
  background: #f7f7f7;
}

/* ========== Article Rich Text（ブログ・お知らせ本文） ========== */
/* ========== ヘッダーセクション ========== */
/* ----- コンテナ ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.is-scrolled {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
}
@media (min-width: 1220px) {
  .site-header.is-scrolled .nav-list li a,
  .site-header.is-scrolled .nav-list li a::before {
    color: #fff;
  }
  .site-header.is-scrolled .header-nav {
    height: 3.75rem;
  }
  .site-header.is-scrolled .header-icon {
    max-width: 4.5rem;
    border-radius: 50%;
    background: transparent;
    border: 0.0625rem solid #fff;
    margin: 0;
    box-sizing: border-box;
  }
  .site-header.is-scrolled .header-icon.icon-mail,
  .site-header.is-scrolled .header-icon.icon-home {
    margin: 0 0.625rem;
  }
  .site-header.is-scrolled .header-icons {
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
  }
}
.site-header--logo-swap {
  background-color: transparent;
  transition: background-color 0.45s ease, box-shadow 0.45s ease, backdrop-filter 0.45s ease, -webkit-backdrop-filter 0.45s ease;
}
.site-header--logo-swap.is-scrolled {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
}

.header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ----- ロゴ ----- */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem;
  width: auto;
  max-height: 6.25rem;
  aspect-ratio: 1/1;
  background-color: transparent;
  transition: all 0.3s ease;
}
.logo img {
  width: 90%;
  object-fit: contain;
  transition: all 0.3s ease;
}
.logo--swap .logo__images {
  position: relative;
  display: inline-block;
  line-height: 0;
}
.logo--swap .logo__img--default {
  transition: opacity 0.3s ease;
}
.logo--swap .logo__img {
  transition: opacity 0.3s ease;
}
.logo--swap .logo__img--scrolled {
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.site-header.is-scrolled .logo.logo--swap .logo__img--default {
  opacity: 0;
}
.site-header.is-scrolled .logo.logo--swap .logo__img--scrolled {
  opacity: 1;
}

.site-header--logo-swap .header-inner {
  align-items: center;
  /* min-height: size(100); */
}
.site-header--logo-swap .logo.logo--swap {
  position: relative;
  z-index: 1;
  justify-content: flex-start;
  width: auto;
  max-width: none;
  min-width: 0;
  aspect-ratio: auto;
  padding: clamp(12px, 1.0416666667vw, 20px) 1.25rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .site-header--logo-swap .logo.logo--swap {
    padding: 12px 1rem;
  }
}
.site-header--logo-swap .logo.logo--swap .logo__images {
  display: inline-block;
  width: 15rem;
  max-width: 100%;
}
.site-header--logo-swap .logo.logo--swap img,
.site-header--logo-swap .logo.logo--swap .logo__img {
  display: block;
  width: 15rem;
  max-width: 100%;
  height: auto;
  padding: 0;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .logo--swap .logo__img {
    transition: none;
  }
  .site-header--logo-swap {
    transition: none;
  }
}
/* ----- ナビゲーション ----- */
.header-nav {
  position: absolute;
  top: 50%;
  right: calc(12.5rem + 20px);
  display: flex;
  align-items: stretch;
  height: 6.25rem;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  margin-bottom: 0;
  align-items: stretch;
}

.nav-list li {
  display: flex;
  align-items: stretch;
}

.nav-list li a {
  font-size: 1.125rem;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background-color: transparent;
  white-space: nowrap;
  transition: color 0.3s ease;
  text-decoration: none;
}
@media (max-width: 1599px) {
  .nav-list li a {
    font-size: 1rem;
  }
}
@media (max-width: 1399px) {
  .nav-list li a {
    font-size: 0.9375rem;
  }
}
@media (max-width: 1199px) {
  .nav-list li a {
    font-size: 0.875rem;
  }
}
.nav-list li a.current {
  position: relative;
}
.nav-list li a.current::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.25rem;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0;
}

.nav-list li a::before {
  content: "▶";
  color: #fff;
  margin-right: 0.4375rem;
  transition: color 0.3s ease;
}

/* ----- 右上アイコン ----- */
.header-icons {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: stretch;
}
@media (min-width: 1220px) {
  .header-icons {
    transition: top 0.3s ease, transform 0.3s ease;
  }
}

.header-icon {
  width: 6.25rem;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: transparent;
}
.header-icon img {
  width: 2.5rem;
  height: auto;
  transition: all 0.3s ease;
}
@media (min-width: 1220px) {
  .header-icon {
    box-sizing: border-box;
    border: 0.0625rem solid transparent;
    border-radius: 0;
    margin: 0;
    transition: all 0.3s ease;
  }
}
@media (max-width: 767px) {
  .header-icon {
    width: 3.75rem;
    height: 3.75rem;
  }
}
@media (max-width: 575px) {
  .header-icon {
    width: 3.125rem;
    height: 3.125rem;
  }
}

.icon-mail {
  background-color: #baada5;
}

.icon-home {
  background-color: #000;
}

/* ----- モバイル用メニューボタン ----- */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 5rem;
  height: 5rem;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
@media (max-width: 1219px) {
  .menu-btn {
    display: flex;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
.menu-btn span {
  display: block;
  width: 2.25rem;
  height: 1px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.menu-btn span:nth-child(1) {
  top: calc(50% - 10px);
}
.menu-btn span:nth-child(3) {
  top: calc(50% + 10px);
}
.menu-btn.is-open span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-btn.is-open span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
@media (max-width: 575px) {
  .menu-btn {
    width: 3.75rem;
    height: 3.75rem;
  }
}

@media (max-width: 1219px) {
  .site-header .header-menu.is-open ~ .menu-btn.is-open span {
    background: #fff;
  }
}
/* ----- ドロワーメニュー（モバイル） ----- */
.header-menu {
  display: contents;
}
@media (max-width: 1219px) {
  .header-menu {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: fixed;
    top: 0;
    right: 0;
    width: 20rem;
    height: 100vh;
    background: #000;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 6.25rem 1.5rem 1.5rem;
    z-index: 99;
    overflow-y: auto;
  }
  .header-menu.is-open {
    transform: translateX(0);
  }
  .header-menu .header-nav {
    position: static;
    top: auto;
    height: auto;
    margin: 0;
    transform: none;
    display: block;
  }
  .header-menu .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .header-menu .nav-list li a {
    color: #fff;
    font-size: 1rem;
  }
  .header-menu .nav-list li a::before {
    color: #fff;
  }
  .header-menu .header-icons {
    position: static;
    gap: 0.5rem;
  }
}

.site-header.is-scrolled .logo {
  max-height: 5rem;
}
@media (min-width: 1220px) {
  .site-header.is-scrolled .header-nav {
    height: 5rem;
    right: calc(10rem + 20px);
  }
  .site-header.is-scrolled .header-nav .nav-list li a.current::after {
    background: #fff;
  }
  .site-header.is-scrolled .header-icon {
    max-width: 3.4375rem;
  }
  .site-header.is-scrolled .header-icon img {
    height: 1.125rem;
    width: auto;
  }
}
@media (max-width: 575px) {
  .site-header.is-scrolled .logo {
    max-height: 3.75rem;
  }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 29;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0.5px, transparent 1px);
  background-size: 5px 5px;
  pointer-events: none;
}

.hero-image__slides {
  position: absolute;
  inset: 0;
  --hero-ken-burn-duration: 12s;
}

.hero-image__slide {
  position: absolute;
  inset: 0;
  opacity: 1;
}
.hero-image__slide img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  top: 0;
  transform: scale(1);
  transform-origin: center top;
}
.hero-image__slide.is-ken-burn img {
  animation: hero-slide-ken-burns var(--hero-ken-burn-duration) linear forwards;
}

@keyframes hero-slide-ken-burns {
  from {
    top: 0;
    transform: scale(1);
  }
  to {
    top: -20%;
    transform: scale(1.1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-image__slide:nth-child(2), .hero-image__slide:nth-child(3) {
    opacity: 0;
  }
  .hero-image__slide img {
    top: 0;
    transform: scale(1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.75rem;
}
@media (max-width: 991px) {
  .hero-overlay {
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .hero-overlay {
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: 575px) {
  .hero-overlay {
    gap: 1.5rem;
  }
}

.hero-text {
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 3rem;
  color: #fff;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 991px) {
  .hero-text {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .hero-text {
    font-size: 2.25rem;
  }
}
@media (max-width: 575px) {
  .hero-text {
    font-size: 1.875rem;
    padding: 0.625rem;
  }
}

.hero-logo {
  margin: 0;
  font: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.hero-logo img {
  width: 17.5rem;
  height: auto;
  display: block;
}
@media (max-width: 991px) {
  .hero-logo img {
    width: 15rem;
  }
}
@media (max-width: 767px) {
  .hero-logo img {
    width: 12.5rem;
  }
}
@media (max-width: 575px) {
  .hero-logo img {
    width: 11.25rem;
  }
}

/* ========== Index Page ========== */
.page-index .site-header:not(.is-scrolled) .logo {
  background-color: #fff;
}
.page-index .logo.logo--swap .logo__images {
  position: relative;
  display: inline-block;
  line-height: 0;
}
.page-index .logo.logo--swap .logo__img--scrolled {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.page-index .bottom-banners {
  border-top: none;
}

/* ========== Section common ========== */
.section-title {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  margin: 0 0 2.5rem;
  color: #251e1c;
}

.section-title--cross {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-items: baseline;
  column-gap: 0.4em;
  text-align: center;
  line-height: 1;
}
.section-title--cross .section-title__left {
  justify-self: end;
}
.section-title--cross .section-title__cross {
  justify-self: center;
  letter-spacing: 0;
}
.section-title--cross .section-title__right {
  justify-self: start;
}
@media (max-width: 767px) {
  .section-title--cross {
    font-size: 2.25rem;
  }
}
@media (max-width: 575px) {
  .section-title--cross {
    grid-template-columns: 1fr;
    justify-content: stretch;
    row-gap: 0;
    line-height: 1.1;
  }
  .section-title--cross .section-title__left,
  .section-title--cross .section-title__cross,
  .section-title--cross .section-title__right {
    justify-self: center;
  }
}

.more-link {
  font-size: 0.8125rem;
  color: #251e1c;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.more-link:hover {
  color: #1f5b8a;
}

/* ========== Concept ========== */
.concept {
  padding: 6.875rem 0 7.5rem;
  background: #fff;
  overflow-x: clip;
}

.concept-head {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 3.75rem;
  text-align: center;
}
@media (max-width: 1199px) {
  .concept-head {
    margin-bottom: 0;
  }
}

.concept-text {
  line-height: 2;
  text-align: center;
  font-size: 1.4375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding-left: 2em;
  color: #000;
}
@media (max-width: 1199px) {
  .concept-text {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .concept-text {
    font-size: 1.0625rem;
  }
}
@media (max-width: 575px) {
  .concept-text {
    padding-left: 0;
    padding: 0.625rem;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 399px) {
  .sp-only {
    display: block;
  }
}

/* ========== Concept Detail ========== */
.concept-detail {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6.875rem;
  overflow-x: clip;
  /* ----- Feature Banner variants ----- */
}
.concept-detail .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.concept-detail .image-container {
  flex: 0 1 50%;
  position: relative;
  z-index: 2;
}
.concept-detail .image-container::before {
  position: absolute;
  top: -12.8125rem;
  right: 0;
  width: 50vw;
  content: "";
  display: inline-block;
  height: 267px;
  background: url("../images/index/index_1.png") no-repeat center/cover;
}
.concept-detail .text-container {
  position: relative;
  z-index: 1;
  flex: 0 1 50%;
  margin-right: auto;
  margin-left: auto;
  height: 17.125rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.concept-detail .text-container::before {
  content: "";
  display: inline-block;
  width: 70vw;
  height: 274px;
  background: #f7f7f7;
  position: absolute;
  top: 0;
  left: -12vw;
}
.concept-detail .text-container > p {
  position: relative;
  z-index: 2;
  font-size: 1.25rem;
  line-height: 2.4;
  color: #000;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .concept-detail .text-container > p {
    font-size: 1.125rem;
    padding-left: 0;
  }
}
@media (max-width: 1089px) {
  .concept-detail .text-container > p {
    font-size: 1rem;
  }
}
.concept-detail .text-container.reverse {
  height: 20.6875rem;
  justify-content: flex-start;
}
@media (min-width: 1245px) {
  .concept-detail .text-container.reverse > p {
    margin-right: 0;
  }
}
@media (max-width: 1089px) {
  .concept-detail .text-container.reverse > p {
    font-size: 1rem;
  }
}
.concept-detail.reverse .container {
  flex-direction: row-reverse;
}
.concept-detail.reverse .image-container::before {
  width: 65vw;
  right: auto;
  left: -4vw;
  background: url("../images/index/index_2.png") no-repeat center/cover;
}
@media (max-width: 1599px) {
  .concept-detail.reverse .image-container::before {
    left: -8vw;
  }
}
.concept-detail.reverse .text-container::before {
  right: -10vw;
  left: auto;
  height: 20.6875rem;
}
@media (max-width: 991px) {
  .concept-detail.reverse .text-container::before {
    right: 0;
  }
}
.concept-detail.order-house, .concept-detail.concept-house {
  margin-bottom: 10rem;
}
.concept-detail.asset {
  margin-bottom: 0;
}
.concept-detail.order-house .image-container::before {
  right: 2vw;
  top: -125px;
  height: 29.25rem;
  background: url("../images/index/mirai_order_house_1.png") no-repeat center/cover;
}
@media (min-width: 1090px) {
  .concept-detail.order-house .image-container::before {
    width: 35vw;
    min-width: 700px;
  }
}
.concept-detail.order-house .text-container {
  height: 31rem;
  justify-content: flex-start;
}
.concept-detail.order-house .text-container::before {
  background: #ba934d;
  height: 31rem;
}
.concept-detail.concept-house .image-container::before {
  left: 2.5vw;
  top: -125px;
  height: 29.25rem;
  background: url("../images/index/mirai_order_house_2.png") no-repeat center/cover;
}
@media (min-width: 1090px) {
  .concept-detail.concept-house .image-container::before {
    width: 37vw;
    min-width: 700px;
  }
}
.concept-detail.concept-house .text-container {
  height: 31rem;
  justify-content: flex-end;
}
.concept-detail.concept-house .text-container::before {
  background: #bcaf53;
  height: 31rem;
  left: auto;
  right: -12.5vw;
}
@media (max-width: 991px) {
  .concept-detail.concept-house .text-container::before {
    right: 0;
  }
}
.concept-detail.concept-house .text-container::after {
  left: auto;
  right: -10vw;
  background-image: url("../images/index/mirai_house_digital_2.svg");
  background-position: left 500%;
  background-size: 90% 90%;
}
.concept-detail.concept-house .text-content .btn-white {
  align-self: flex-end;
}
.concept-detail.asset .image-container::before {
  right: 2.7vw;
  top: -125px;
  height: 29.25rem;
  background: url("../images/index/mirai_order_house_3.png") no-repeat center/cover;
}
@media (min-width: 1090px) {
  .concept-detail.asset .image-container::before {
    width: 36vw;
    min-width: 700px;
  }
}
.concept-detail.asset .text-container {
  height: 31rem;
  justify-content: flex-start;
}
.concept-detail.asset .text-container::before {
  background: #c6c5a7;
  height: 31rem;
}
.concept-detail.asset .text-container::after {
  background-image: url("../images/index/mirai_house_digital_3.svg");
  background-position: 110% 110%;
}
.concept-detail .text-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  color: #545252;
}
.concept-detail .text-content h3 {
  color: #fff;
  font-size: 3.9375rem;
  margin: 0;
  letter-spacing: 0.05em;
  font-family: "helvetica-neue-lt-pro", Helvetica, Arial, sans-serif;
  font-weight: 200;
  line-height: 1.1;
}
.concept-detail .text-content p {
  color: #fff;
  font-size: 2.125rem;
  margin: 0 0 5rem;
  font-weight: 400;
}
.concept-detail .text-content .btn-white {
  position: relative;
  display: inline-block;
  align-self: flex-start;
  padding: 0.5625rem 2rem 0.75rem;
  background: #fff;
  color: #333333;
  width: 100%;
  max-width: 16.25rem;
  height: 3.5rem;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.08em;
  border-radius: 0.125rem;
  transition: opacity 0.2s;
}
.concept-detail .text-content .btn-white::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.concept-detail .text-content .btn-white:hover {
  opacity: 0.85;
}
@media (max-width: 991px) {
  .concept-detail {
    margin-bottom: 5rem;
  }
  .concept-detail .image-container {
    height: 13.75rem;
  }
  .concept-detail .image-container::before {
    position: static;
    top: -7.5rem;
    width: 100%;
    height: 100%;
  }
  .concept-detail .text-container {
    height: 18.75rem;
    padding: 1.25rem;
  }
  .concept-detail .text-container::before {
    width: 100%;
    left: 0;
    height: 18.75rem;
  }
  .concept-detail .text-container.reverse {
    height: 18.75rem;
  }
  .concept-detail.reverse .image-container::before {
    width: 48vw;
    left: 0;
  }
  .concept-detail.reverse .text-container::before {
    height: 18.75rem;
  }
  .concept-detail.order-house, .concept-detail.concept-house {
    margin-bottom: 7.5rem;
  }
  .concept-detail.order-house .image-container::before, .concept-detail.concept-house .image-container::before, .concept-detail.asset .image-container::before {
    top: -5rem;
    right: 0;
    left: 0;
    width: 100%;
    height: 22.5rem;
  }
  .concept-detail.order-house .text-container, .concept-detail.concept-house .text-container, .concept-detail.asset .text-container {
    height: 23.75rem;
  }
  .concept-detail.order-house .text-container::before, .concept-detail.concept-house .text-container::before, .concept-detail.asset .text-container::before {
    height: 23.75rem;
  }
  .concept-detail .text-content h3 {
    font-size: 3rem;
  }
  .concept-detail .text-content p {
    font-size: 1.75rem;
    margin-bottom: 3.125rem;
  }
}
@media (max-width: 767px) {
  .concept-detail {
    margin-bottom: 3.75rem;
  }
  .concept-detail .container {
    flex-direction: column;
    align-items: stretch;
  }
  .concept-detail.reverse .container {
    flex-direction: column;
  }
  .concept-detail .image-container {
    flex: none;
    width: 100%;
  }
  .concept-detail .image-container::before {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
  }
  .concept-detail .text-container {
    flex: none;
    width: 100%;
    height: auto;
    min-height: 12.5rem;
    justify-content: center;
    padding: 1.875rem 1.25rem;
    box-sizing: border-box;
  }
  .concept-detail .text-container::before {
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
  }
  .concept-detail .text-container > p {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
  .concept-detail .text-container.reverse {
    height: auto;
    min-height: 12.5rem;
    justify-content: center;
  }
  .concept-detail.reverse .image-container::before {
    width: 100%;
    left: 0;
    right: 0;
  }
  .concept-detail.reverse .text-container::before {
    left: 0;
    right: 0;
    height: 100%;
  }
  .concept-detail.order-house, .concept-detail.concept-house {
    margin-bottom: 5rem;
  }
  .concept-detail.order-house .image-container::before, .concept-detail.concept-house .image-container::before, .concept-detail.asset .image-container::before {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 13.75rem;
  }
  .concept-detail.order-house .text-container, .concept-detail.concept-house .text-container, .concept-detail.asset .text-container {
    height: auto;
    min-height: 17.5rem;
    justify-content: center;
    padding: 2.5rem 1.5rem;
  }
  .concept-detail.order-house .text-container::before, .concept-detail.concept-house .text-container::before, .concept-detail.asset .text-container::before {
    width: 100%;
    left: 0;
    right: 0;
    height: 100%;
  }
  .concept-detail.order-house .text-container::after, .concept-detail.concept-house .text-container::after, .concept-detail.asset .text-container::after {
    left: 0;
    right: 0;
    width: 100%;
    background-position: center bottom;
  }
  .concept-detail .text-content {
    width: 100%;
  }
  .concept-detail .text-content h3 {
    font-size: 2.25rem;
  }
  .concept-detail .text-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
  .concept-detail .text-content .btn-white {
    max-width: none;
    font-size: 1.125rem;
    height: 3rem;
  }
  .concept-detail.concept-house .text-content .btn-white {
    align-self: flex-start;
  }
}

/* ========== Feature Banners (背景貫通) ========== */
.feature-banners {
  padding-bottom: 10rem;
  background-color: #fff;
  background-image: repeating-linear-gradient(45deg, transparent 0, transparent 0.1875rem, #fff 0.1875rem, #fff 0.375rem), repeating-linear-gradient(135deg, transparent 0, transparent 0.3125rem, rgba(0, 0, 0, 0.12) 0.3125rem, rgba(0, 0, 0, 0.12) 0.375rem);
  overflow-x: clip;
}
.feature-banners .text-container::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: -10vw;
  width: 60vw;
  background: url("../images/index/mirai_house_digital.svg") no-repeat center 90%/39.5833333333vw 13.9583333333vw;
  overflow: hidden;
  pointer-events: none;
}
.feature-banners .concept-detail:nth-of-type(odd) .text-content {
  padding-left: 1.25rem;
}
.feature-banners .concept-detail:nth-of-type(even) .text-content {
  padding-right: 1.25rem;
}
@media (max-width: 767px) {
  .feature-banners {
    padding-bottom: 6.25rem;
  }
  .feature-banners .concept-detail.order-house .text-container::after {
    left: 0;
    right: 0;
    width: 100%;
    background-size: 47.5rem 16.75rem;
    background-position: center bottom;
  }
  .feature-banners .concept-detail.concept-house .text-container::after {
    left: 0;
    right: 0;
    width: 100%;
    background-size: 56.25rem 20rem;
    background-position: center bottom;
  }
  .feature-banners .concept-detail.asset .text-container::after {
    left: 0;
    right: 0;
    width: 100%;
    background-size: 47.5rem 16.75rem;
    background-position: center bottom;
  }
}

/* ========== Property（物件情報） ========== */
.property {
  padding: 0 0 120px;
  background: #fff;
  overflow-x: clip;
}
.property > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
}
.property > .container .more-link {
  font-size: 1.25rem;
  text-decoration: none;
}
@media (max-width: 767px) {
  .property {
    padding: 3.75rem 0;
  }
}

.property__head,
.works-showcase__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}

.property__head .section-title,
.works-showcase__head .section-title {
  text-align: left;
  margin: 0;
  font-size: 2.125rem;
}

.property__rule {
  margin: 0 0 28px;
  border: 0;
  border-top: 1px solid #000;
  opacity: 1;
}

.property__grid {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.875rem;
  margin-right: 0;
  margin-left: 0;
}
@media (min-width: 768px) {
  .property__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .property__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .property__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.property__grid > [class*=col-] {
  width: auto;
  max-width: none;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}

.property__card {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 21.25rem;
  min-width: 0;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: #fff;
  color: #545252;
  text-decoration: none;
  transition: opacity 0.2s;
}
.property__card.card {
  flex: none;
}
.property__card:hover {
  opacity: 0.85;
  color: #545252;
}

.property__body.card-body {
  flex: 0 0 auto;
  padding: 14px 0 0;
}

.property__img {
  width: 100%;
  height: 12.8125rem;
  overflow: hidden;
  background: #eee;
}
.property__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property__body {
  box-sizing: border-box;
  width: 100%;
  height: 8.4375rem;
  overflow: hidden;
}

.property__tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  height: 1.375rem;
  overflow: hidden;
}

.property__tag {
  display: inline-flex;
  align-items: center;
  padding: 0 0.9375rem 2px;
  font-size: 1rem;
  text-align: center;
  border: 1px solid #333333;
  color: #333333;
  background: #fff;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.property__tag--new {
  border-color: #871f30;
  color: #871f30;
}

.property__divider {
  margin: 13px 0 8px;
  border: 0;
  border-top: 1px dotted #b8b4b3;
  opacity: 1;
}

.property__title {
  margin: 0;
  overflow: hidden;
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-word;
}

.property__date {
  display: block;
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #333333;
}

/* ========== Works Showcase（施工事例カルーセル） ========== */
.works-showcase {
  padding: 120px 0 150px;
  background: #fff;
  overflow-x: clip;
}
.works-showcase > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
}
.works-showcase > .container .more-link {
  font-size: 1.25rem;
  text-decoration: none;
}
@media (max-width: 767px) {
  .works-showcase {
    padding: 1.875rem 0 1.875rem;
  }
}

.works-showcase__rule {
  margin: 0 0 1.875rem;
  border: 0;
  border-top: 1px solid #000;
  opacity: 1;
}

.works-showcase__carousel-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  --works-showcase-track-width: 15rem;
  padding-right: max(2.25rem, (100% - var(--works-showcase-track-width)) / 2);
  padding-left: max(2.25rem, (100% - var(--works-showcase-track-width)) / 2);
  overflow: hidden;
}
@media (min-width: 576px) {
  .works-showcase__carousel-wrap {
    --works-showcase-track-width: 31.25rem;
  }
}
@media (min-width: 768px) {
  .works-showcase__carousel-wrap {
    --works-showcase-track-width: 47.5rem;
  }
}
@media (min-width: 1090px) {
  .works-showcase__carousel-wrap {
    --works-showcase-track-width: 63.75rem;
  }
}

.works-showcase__carousel {
  width: var(--works-showcase-track-width);
  max-width: 100%;
  min-width: 0;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}

.works-showcase__viewport {
  overflow: hidden;
  width: 100%;
}

.works-showcase__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  margin: 0;
  will-change: transform;
}
.works-showcase__track > .works-showcase__col {
  display: flex;
  flex: 0 0 15rem;
  flex-direction: column;
  width: 15rem;
  max-width: 15rem;
  min-width: 0;
  padding: 0;
}
.works-showcase__track .works-showcase__card {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: auto;
}
.works-showcase__track .works-showcase__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: auto;
  overflow: visible;
}
.works-showcase__track .works-showcase__tags,
.works-showcase__track .works-showcase__divider,
.works-showcase__track .works-showcase__date {
  flex-shrink: 0;
}
.works-showcase__track .works-showcase__title {
  flex: 0 0 auto;
  box-sizing: border-box;
}

.works-showcase__carousel--centered .works-showcase__track {
  justify-content: center;
}

.works-showcase__row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1.25rem;
  margin: 0 auto;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
.works-showcase__row > [class*=col-] {
  display: flex;
  flex: 0 0 15rem;
  flex-direction: column;
  width: 15rem;
  max-width: 15rem;
  min-width: 0;
  padding: 0;
}
.works-showcase__row .works-showcase__card {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: auto;
}
.works-showcase__row .works-showcase__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: auto;
  overflow: visible;
}
.works-showcase__row .works-showcase__tags,
.works-showcase__row .works-showcase__divider,
.works-showcase__row .works-showcase__date {
  flex-shrink: 0;
}
.works-showcase__row .works-showcase__title {
  flex: 0 0 auto;
  box-sizing: border-box;
}

.works-showcase__nav {
  position: absolute;
  top: 38%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(120, 120, 120, 0.55);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s;
}
.works-showcase__nav:hover {
  background: rgba(90, 90, 90, 0.7);
}
.works-showcase__nav:disabled, .works-showcase__nav--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.works-showcase__nav:disabled:hover, .works-showcase__nav--disabled:hover {
  background: rgba(120, 120, 120, 0.55);
}
.works-showcase__nav--prev {
  left: 0;
}
.works-showcase__nav--next {
  right: 0;
}

.works-showcase__nav-icon {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.works-showcase__nav--prev .works-showcase__nav-icon {
  margin-right: -0.25rem;
  transform: rotate(-135deg);
}

.works-showcase__nav--next .works-showcase__nav-icon {
  margin-left: -0.25rem;
}

.works-showcase__card {
  display: block;
  width: 100%;
  max-width: none;
  height: 37.8125rem;
  min-width: 0;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: #fff;
  color: #545252;
  text-decoration: none;
  transition: opacity 0.2s;
}
.works-showcase__card.card {
  flex: none;
}
.works-showcase__card:hover {
  opacity: 0.85;
  color: #545252;
}

.works-showcase__body.card-body {
  flex: 0 0 auto;
  padding: 0.75rem 0 0;
}

.works-showcase__img {
  width: 100%;
  height: 24.375rem;
  overflow: hidden;
}
.works-showcase__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-showcase__body {
  box-sizing: border-box;
  width: 100%;
  height: 13.4375rem;
  overflow: hidden;
}

.works-showcase__tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  height: 1.625rem;
  overflow: hidden;
}

.works-showcase__tag {
  display: inline-block;
  padding: 0 0.9375rem;
  font-size: 1rem;
  text-align: center;
  border: 1px solid #333333;
  color: #333333;
  background: #fff;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.works-showcase__tag--new {
  border-color: #871f30;
  color: #871f30;
}

.works-showcase__divider {
  margin: 10px 0 8px;
  border: 0;
  border-top: 1px dotted #b8b4b3;
  opacity: 1;
}

.works-showcase__title {
  margin: 0;
  overflow: hidden;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #303030;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  word-break: break-word;
}

.works-showcase__date {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #303030;
}

/* ========== News List (info) ========== */
.info {
  padding: 6.875rem 0;
  background: #f7f7f7;
}
@media (max-width: 767px) {
  .info {
    padding: 1.875rem 0 1.875rem;
    margin-top: 2.5rem;
  }
}

.info__title {
  margin: 0 0 1.25rem;
  font-size: 2.25rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
  color: #545252;
}

.info-list-wrap {
  position: relative;
  height: 28.75rem;
}

.info-list {
  max-height: 29.25rem;
  overflow-y: scroll;
  background: #f7f7f7;
  border-bottom: 1px solid #251e1c;
}

.info-list__items {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f7f7f7;
}

.info-list__item {
  border-bottom: 1px solid #251e1c;
}
.info-list__item:last-child {
  border-bottom: none;
}

.info-list__link {
  display: flex;
  align-items: stretch;
  min-height: 78px;
  padding: 0 0.9375rem;
  color: #545252;
  text-decoration: none;
  background: #f7f7f7;
  transition: opacity 0.2s;
}
.info-list__link:hover {
  opacity: 0.7;
}

.info-list__meta {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 0.75rem;
  flex: 0 0 10.1875rem;
  padding: 1.125rem 0;
}

.info-list__date {
  font-size: 1.03125rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: #251e1c;
}

.info-list__badge {
  display: inline-block;
  padding: 2px 0.625rem 3px;
  background: #fd9401;
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
}

.info-list__divider {
  flex: 0 0 1px;
  align-self: stretch;
  width: 1px;
  margin: 7px 1.5rem 7px 0.9375rem;
  border: none;
  background: repeating-linear-gradient(to bottom, #000 0, #000 0.125rem, transparent 0.1875rem, transparent 0.25rem);
}

.info-list__text {
  flex: 1 1 auto;
  align-self: center;
  padding: 15px 0;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #251e1c;
}

@media (max-width: 767px) {
  .info-list__item {
    text-align: left;
  }
  .info-list__link {
    flex-direction: column;
    align-items: flex-start;
  }
  .info-list__divider {
    display: none;
  }
  .info-list__meta {
    align-self: flex-start;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    padding: 1.125rem 0 0;
    text-align: left;
  }
  .info-list__text {
    align-self: flex-start;
    flex: 0 0 auto;
    width: 100%;
    padding: 0 0 1.125rem;
    text-align: left;
  }
}
.info__btn-wrap {
  margin-top: 2.5rem;
  text-align: center;
}

.info__btn,
.historyback__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.25rem;
  background: #fff;
  border: 1px solid #000;
  color: #333333;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s;
  width: 100%;
  max-width: 16.25rem;
  height: 3.5rem;
  box-sizing: border-box;
}
.info__btn::before,
.historyback__btn::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 50%;
  width: 0.5625rem;
  height: 0.5625rem;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: translateY(-50%) rotate(45deg);
}
.info__btn:hover,
.historyback__btn:hover {
  opacity: 0.7;
}

.historyback__btn {
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .historyback__btn {
    font-size: 1.125rem;
  }
}
@media (max-width: 575px) {
  .historyback__btn {
    font-size: 1rem;
  }
}

/* ========== Bottom Banners ========== */
.bottom-banners {
  padding: 6.75rem 0;
  background: #fff;
  border-top: 1px solid #000;
}
@media (max-width: 991px) {
  .bottom-banners {
    padding: 5rem 0;
  }
}
@media (max-width: 767px) {
  .bottom-banners {
    padding: 3.75rem 0;
  }
}
@media (max-width: 575px) {
  .bottom-banners {
    padding: 3.125rem 0;
  }
}

.contact-cta {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 201px;
}
@media (max-width: 991px) {
  .contact-cta {
    flex-direction: column;
    height: auto;
    max-width: 37.5rem;
    margin: 0 auto;
  }
}
.contact-cta .text-container {
  flex: 6 1 0;
  min-width: 0;
  height: 201px;
  min-height: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.1875rem 3rem;
  background: #f3f3f1;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .contact-cta .text-container {
    padding: 1.75rem 2.25rem;
  }
}
@media (max-width: 991px) {
  .contact-cta .text-container {
    flex: none;
    order: 2;
    width: 100%;
    height: 201px;
    padding: 1.75rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .contact-cta .text-container {
    padding: 1.5rem 1.25rem;
  }
}
@media (max-width: 575px) {
  .contact-cta .text-container {
    padding: 1.25rem 1rem;
  }
}
.contact-cta .image-container {
  flex: 4 0 0;
  flex-shrink: 0;
  align-self: stretch;
  position: relative;
  max-width: 25rem;
  height: 201px;
  min-height: 201px;
  overflow: hidden;
}
.contact-cta .image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/index/mirai_contact_2.png") center/cover no-repeat;
}
@media (max-width: 991px) {
  .contact-cta .image-container {
    flex: none;
    order: 1;
    width: 100%;
    max-width: none;
    height: 201px;
  }
}

.contact-cta__text {
  width: 100%;
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  font-weight: 400;
  max-width: 34.625rem;
  margin: 0 0 1rem;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #000;
}
@media (max-width: 1199px) {
  .contact-cta__text {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .contact-cta__text {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

.contact-cta__btn {
  position: relative;
  display: block;
  width: 100%;
  max-width: 34.625rem;
  box-sizing: border-box;
  padding: 0.75rem 2.5rem 0.75rem 3.25rem;
  background: #c8162b;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.2s;
  text-align: center;
}
.contact-cta__btn::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.contact-cta__btn:hover {
  opacity: 0.85;
}
@media (max-width: 767px) {
  .contact-cta__btn {
    padding: 0.875rem 1.75rem 0.875rem 2.5rem;
    font-size: 1rem;
  }
  .contact-cta__btn::before {
    left: 1.125rem;
  }
}
@media (max-width: 575px) {
  .contact-cta__btn {
    padding: 0.75rem 1.5rem 0.75rem 2.25rem;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
  }
  .contact-cta__btn::before {
    left: 0.875rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}

/* ========== Footer ========== */
.site-footer {
  position: relative;
  background: #1e1e1e;
  color: #fff;
  padding-top: 3.75rem;
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.site-footer__inner {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ----- Scroll Top ----- */
.scroll-top {
  position: absolute;
  bottom: 10rem;
  right: 13vw;
  width: 4rem;
  height: 4rem;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #999999;
  text-decoration: none;
  z-index: 2;
  transition: opacity 0.2s;
}
.scroll-top::before {
  content: "";
  position: absolute;
  top: 58%;
  left: 50%;
  width: 1.5625rem;
  height: 1.5625rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.scroll-top:hover {
  opacity: 0.7;
}

/* ----- Footer Grid ----- */
.footer-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.875rem;
  padding-bottom: 3.75rem;
}

.footer-col {
  border-right: 1px solid #fff;
}
.footer-col:last-child {
  border-right: none;
}
@media (max-width: 991px) {
  .footer-col:last-child {
    flex: 0 1 calc((100% - 3.75rem) / 3);
  }
}
.footer-col--top {
  padding-right: 1.875rem;
  padding-left: 0.5rem;
}
.footer-col--arch {
  padding-right: 1.875rem;
}
.footer-col--realestate {
  padding-right: 1.875rem;
}
@media (max-width: 991px) {
  .footer-col--realestate {
    flex: 0 1 calc((100% - 3.75rem) / 3);
  }
}

.footer-col-title {
  display: block;
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #fff;
  background-color: transparent;
  text-decoration: none;
}

.footer-arch-groups {
  display: flex;
  gap: 2.5rem;
}

.footer-group + .footer-group {
  margin-left: 0;
}

.footer-group-title {
  margin: 0 0 0.625rem;
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
}

.footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-link-list li {
  margin-bottom: 0.375rem;
}
.footer-link-list a {
  position: relative;
  display: inline-block;
  padding-left: 0.875rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #fff;
  background-color: transparent;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-link-list a::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
}
.footer-link-list a:hover {
  opacity: 0.7;
}

/* ----- Footer Info (logo / address / contact) ----- */
.footer-info {
  text-align: center;
  padding: 1.25rem 0 2.5rem;
}

.footer-logo {
  margin: 0 0 2.5rem;
}
.footer-logo img {
  margin: 0 auto;
  width: 15rem;
  max-width: 100%;
  height: auto;
}

.footer-address {
  margin: 0 0 0.8125rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.footer-contact {
  margin: 0 0 0.625rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.footer-contact span + span {
  margin-left: 1.25rem;
}

.footer-meta {
  list-style: none;
  margin: 0 0 2.375rem;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1.75rem;
}
.footer-meta li a {
  background-color: transparent;
  position: relative;
  padding-left: 0.875rem;
  font-size: 0.75rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-meta li a::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
}
.footer-meta li a:hover {
  opacity: 0.7;
}

.footer-sns {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
.footer-sns li a {
  background-color: transparent;
  display: inline-block;
  color: #fff;
  transition: opacity 0.2s;
}
.footer-sns li a img {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}
.footer-sns li a:hover {
  opacity: 0.7;
}

/* ----- Footer Bottom ----- */
.footer-bottom {
  border-top: 1px solid #fff;
  padding: 2.1875rem 0;
  text-align: center;
  background-color: #303030;
}

.copyright {
  margin: 0;
  font-size: 0.75rem;
  color: #fff;
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
  .works-showcase__carousel-wrap {
    padding-right: max(2.5rem, (100% - var(--works-showcase-track-width)) / 2);
    padding-left: max(2.5rem, (100% - var(--works-showcase-track-width)) / 2);
  }
  .works-showcase__nav {
    width: 2.5rem;
    height: 2.5rem;
  }
  .footer-grid {
    flex-wrap: wrap;
  }
  .footer-col {
    border-right: none;
    padding: 0 1rem;
  }
  .footer-arch-groups {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  .scroll-top {
    top: 1.25rem;
    right: 1.25rem;
    width: 3rem;
    height: 3rem;
  }
  .pc-only {
    display: none;
  }
}
@media (max-width: 575px) {
  .concept {
    padding: 3.125rem 0;
  }
  .pc-only-2 {
    display: none;
  }
  .works-showcase__carousel-wrap {
    padding-right: max(2.25rem, (100% - var(--works-showcase-track-width)) / 2);
    padding-left: max(2.25rem, (100% - var(--works-showcase-track-width)) / 2);
  }
  .works-showcase__nav {
    top: 32%;
    width: 2.25rem;
    height: 2.25rem;
  }
  .footer-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact span + span {
    display: block;
    margin-left: 0;
  }
  .footer-meta {
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }
}
/* ========== Order House Page ========== */
body:not(.page-index) .site-header {
  border-bottom: none;
}
body:not(.page-index) .site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #bebebe;
  z-index: 102;
  pointer-events: none;
}
body:not(.page-index) .header-inner {
  position: relative;
  z-index: 1;
}
body:not(.page-index) .site-header:not(.is-scrolled) .menu-btn span {
  background: #000;
}
@media (min-width: 1220px) {
  body:not(.page-index) .site-header:not(.is-scrolled) .nav-list li a,
  body:not(.page-index) .site-header:not(.is-scrolled) .nav-list li a::before {
    color: #000;
  }
  body:not(.page-index) .site-header:not(.is-scrolled) .header-icon,
  body:not(.page-index) .site-header:not(.is-scrolled) .header-icon.icon-mail,
  body:not(.page-index) .site-header:not(.is-scrolled) .header-icon.icon-home {
    width: 6.25rem;
    aspect-ratio: 1/1;
  }
}
body:not(.page-index) .site-header.is-scrolled .menu-btn span {
  background: #fff;
}
body:not(.page-index) .logo {
  position: relative;
  z-index: 1;
  justify-content: flex-start;
  width: auto;
  height: 6.25rem;
  aspect-ratio: auto;
  padding: 0;
}
body:not(.page-index) .logo img {
  display: block;
  width: auto;
  height: clamp(60px, 5.2083333333vw, 100px);
  padding: clamp(12px, 1.0416666667vw, 20px) 1.25rem;
  max-width: none;
  object-fit: contain;
}
@media (max-width: 1219px) {
  body:not(.page-index) .logo {
    height: 5rem;
  }
  body:not(.page-index) .logo img {
    height: 5rem;
    width: auto;
  }
}
@media (max-width: 767px) {
  body:not(.page-index) .logo {
    height: 3.75rem;
    padding: 0.625rem 1.25rem;
  }
  body:not(.page-index) .logo img {
    height: 100%;
    width: auto;
    max-height: 2.5rem !important;
  }
}

.page-contact .bottom-banners,
.page-contact .site-footer .scroll-top,
.page-contact .site-footer__inner {
  display: none;
}
.page-contact .site-footer {
  padding: 0;
}

.order-house-hero {
  margin-top: var(--site-header-height, 100px);
  padding: 0;
  background-color: #fff;
  background-image: url("../images/order_house/mirai_order_digital.svg");
  background-repeat: no-repeat;
  background-position: right 9vw center;
  background-size: min(64.375rem, 0.5364583333 * 100vw) auto;
}
@media (max-width: 1399px) {
  .order-house-hero {
    background-position: right 9vw 58%;
    background-size: clamp(340px, 70vw, 920px) auto;
  }
}
@media (max-width: 991px) {
  .order-house-hero {
    background-position: right 9vw 100%;
    background-size: clamp(280px, 108%, 640px) auto;
  }
}
@media (max-width: 767px) {
  .order-house-hero {
    padding: 48px 0;
    background-position: calc(100% - 3vw) 100%;
    background-size: min(92vw, 480px) auto;
  }
}

.order-house-hero__inner,
.concept-house-hero__inner,
.asset-utilization-hero__inner {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  min-width: 0;
  position: relative;
  min-height: 480px;
}
@media (max-width: 991px) {
  .order-house-hero__inner,
  .concept-house-hero__inner,
  .asset-utilization-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    min-height: clamp(300px, 52vw, 400px);
  }
}
@media (max-width: 767px) {
  .order-house-hero__inner,
  .concept-house-hero__inner,
  .asset-utilization-hero__inner {
    min-height: auto;
  }
}

.order-house-hero__content,
.concept-house-hero__content,
.asset-utilization-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  position: relative;
  z-index: 1;
  align-self: stretch;
  text-align: left;
}

.order-house-hero__label,
.concept-house-hero__label,
.asset-utilization-hero__label,
.real-estate-hero__label {
  display: inline-block;
  margin: 0 0 5px;
  padding: 6px 1.25rem;
  background: repeating-conic-gradient(#f3eee7 0% 25%, #fff 0% 50%) 50%/4px 4px;
  color: #000;
  font-size: 1.5625rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.real-estate-hero__label {
  background: repeating-conic-gradient(#e8eded 0% 25%, #fff 0% 50%) 50%/4px 4px;
}

.order-house-hero__breadcrumb,
.concept-house-hero__breadcrumb,
.asset-utilization-hero__breadcrumb {
  margin: 0;
}

.order-house-hero__title,
.concept-house-hero__title,
.asset-utilization-hero__title,
.real-estate-hero__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
  color: #231815;
}
@media (max-width: 991px) {
  .order-house-hero__title,
  .concept-house-hero__title,
  .asset-utilization-hero__title,
  .real-estate-hero__title {
    font-size: 3.5rem;
  }
}
@media (max-width: 767px) {
  .order-house-hero__title,
  .concept-house-hero__title,
  .asset-utilization-hero__title,
  .real-estate-hero__title {
    font-size: 2.75rem;
  }
}

.order-house-hero__breadcrumb-list,
.concept-house-hero__breadcrumb-list,
.asset-utilization-hero__breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: #000;
}

.order-house-hero__breadcrumb-home,
.concept-house-hero__breadcrumb-home,
.asset-utilization-hero__breadcrumb-home {
  display: flex;
  align-items: center;
  padding: 4px;
  background: transparent;
}
.order-house-hero__breadcrumb-home img,
.concept-house-hero__breadcrumb-home img,
.asset-utilization-hero__breadcrumb-home img {
  display: block;
  width: 1.125rem;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(32%) sepia(5%) saturate(626%) hue-rotate(314deg) brightness(96%) contrast(88%);
}
.order-house-hero__breadcrumb-home:hover,
.concept-house-hero__breadcrumb-home:hover,
.asset-utilization-hero__breadcrumb-home:hover {
  opacity: 0.7;
}

.order-house-hero__breadcrumb-current,
.concept-house-hero__breadcrumb-current,
.asset-utilization-hero__breadcrumb-current {
  letter-spacing: 0.05em;
}

.order-house-intro {
  overflow-x: clip;
}
.order-house-intro .container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  position: relative;
  --intro-text-ratio: 0.74;
}
@media (max-width: 1089px) {
  .order-house-intro .container {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .order-house-intro .container {
    --intro-text-ratio: 0.68;
  }
}
@media (max-width: 767px) {
  .order-house-intro .container {
    --intro-text-ratio: 1;
  }
}
.order-house-intro .image-container {
  flex: 0 0 25%;
  position: relative;
  z-index: 2;
  min-width: 0;
  align-self: stretch;
  overflow: visible;
}
.order-house-intro .image-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  background: url("../images/order_house/mirai_order.png") no-repeat center/cover;
}
.order-house-intro .text-container {
  position: relative;
  flex: 0 0 75%;
  width: 75%;
  max-width: 75%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #000;
  color: #fff;
}
.order-house-intro .text-container::before {
  content: "";
  position: absolute;
  top: -11px;
  right: 0;
  width: calc(50vw + 100% / (2 * var(--intro-text-ratio, 0.74)));
  height: 11px;
  background: #ad966c;
  z-index: 4;
  pointer-events: none;
}
@media (max-width: 767px) {
  .order-house-intro .text-container::before {
    left: 0;
    width: 100%;
  }
}
.order-house-intro .order-house-intro__content {
  width: 100%;
  padding: 0 3.5rem;
}
@media (max-width: 1399px) {
  .order-house-intro {
    margin-bottom: 100px;
  }
  .order-house-intro .order-house-intro__content {
    padding: 0 3rem;
  }
}
@media (max-width: 991px) {
  .order-house-intro {
    margin-bottom: 80px;
  }
  .order-house-intro .image-container {
    flex: 0 0 32%;
  }
  .order-house-intro .text-container {
    flex: 0 0 68%;
    width: 68%;
    max-width: 68%;
  }
  .order-house-intro .order-house-intro__content {
    padding: 0 2.5rem;
  }
}
@media (max-width: 767px) {
  .order-house-intro {
    margin-bottom: 60px;
  }
  .order-house-intro .container {
    flex-direction: column;
    justify-content: flex-start;
  }
  .order-house-intro .image-container {
    flex: none;
    width: 100%;
    min-height: 220px;
  }
  .order-house-intro .image-container::before {
    left: 0;
    right: 0;
    width: 100%;
  }
  .order-house-intro .text-container {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
  .order-house-intro .order-house-intro__content {
    padding: 0 1.5rem;
  }
}
@media (max-width: 575px) {
  .order-house-intro {
    margin-bottom: 48px;
  }
  .order-house-intro .image-container {
    min-height: 200px;
  }
  .order-house-intro .order-house-intro__content {
    padding: 0 1.25rem;
  }
}

.order-house-intro__row {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  padding: 2.5rem 0;
  gap: 0;
  border-bottom: 2px solid #fff;
}
.order-house-intro__row:last-child {
  border-bottom: none;
}
@media (max-width: 991px) {
  .order-house-intro__row {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .order-house-intro__row {
    gap: 12px;
    padding: 20px 0;
  }
  .order-house-intro__row:first-child {
    padding-bottom: 20px;
  }
}

.order-house-intro__main {
  flex: 0 0 40%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
@media (max-width: 991px) {
  .order-house-intro__main {
    flex: 0 0 38%;
  }
}
@media (max-width: 767px) {
  .order-house-intro__main {
    flex: none;
    width: 100%;
  }
}

.order-house-intro__body {
  flex: 0 0 60%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
@media (max-width: 991px) {
  .order-house-intro__body {
    flex: 0 0 62%;
  }
}
@media (max-width: 767px) {
  .order-house-intro__body {
    flex: none;
    width: 100%;
  }
}

.order-house-intro__heading,
.order-house-intro__lead,
.order-house-intro__title,
.order-house-intro__text {
  font-variant-east-asian: proportional-width;
  font-feature-settings: "palt", "pwid";
}

.order-house-intro__heading {
  margin: 0 0 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.8125rem;
  font-weight: 300;
  line-height: 1;
  text-align: left;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  color: #fff;
}
@media (max-width: 1399px) {
  .order-house-intro__heading {
    margin-bottom: 20px;
    font-size: 3.25rem;
  }
}
@media (max-width: 991px) {
  .order-house-intro__heading {
    margin-bottom: 18px;
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .order-house-intro__heading {
    margin-bottom: 14px;
    font-size: 2.25rem;
    line-height: 1;
  }
}
@media (max-width: 575px) {
  .order-house-intro__heading {
    margin-bottom: 12px;
    font-size: 1.875rem;
  }
}

.order-house-intro__lead {
  margin: 0;
  margin-top: auto;
  font-size: 1.5625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  white-space: nowrap;
}
@media (max-width: 1399px) {
  .order-house-intro__lead {
    font-size: 1.375rem;
    letter-spacing: 0.08em;
  }
}
@media (max-width: 991px) {
  .order-house-intro__lead {
    font-size: 1.25rem;
    white-space: normal;
    line-height: 1.55;
  }
}
@media (max-width: 767px) {
  .order-house-intro__lead {
    margin-top: 0;
    letter-spacing: 0.06em;
    line-height: 1.65;
  }
}
@media (max-width: 575px) {
  .order-house-intro__lead {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}

.order-house-intro__title {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
}
@media (max-width: 1399px) {
  .order-house-intro__title {
    margin-bottom: 10px;
    font-size: 1.375rem;
  }
}
@media (max-width: 991px) {
  .order-house-intro__title {
    font-size: 1.3125rem;
    margin-bottom: 10px;
    letter-spacing: 0.07em;
  }
}
@media (max-width: 767px) {
  .order-house-intro__title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
    line-height: 1.55;
  }
}
@media (max-width: 575px) {
  .order-house-intro__title {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
}

.order-house-intro__text {
  margin: 0;
  margin-top: auto;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #fff;
}
@media (max-width: 1399px) {
  .order-house-intro__text {
    font-size: 0.9375rem;
    line-height: 1.85;
  }
}
@media (max-width: 991px) {
  .order-house-intro__text {
    margin-top: 0.625rem;
  }
}
@media (max-width: 767px) {
  .order-house-intro__text {
    line-height: 1.8;
  }
}
@media (max-width: 575px) {
  .order-house-intro__text {
    line-height: 1.75;
    letter-spacing: 0.03em;
  }
}

/* ========== Order House Methods（工法・基礎） ========== */
.order-house-methods {
  padding: 140px 0 100px;
  background: #fff;
}
.order-house-methods .container {
  max-width: 75rem;
}
@media (max-width: 991px) {
  .order-house-methods {
    padding: 80px 0 80px;
  }
}
@media (max-width: 767px) {
  .order-house-methods {
    padding: 48px 0 64px;
  }
}
@media (max-width: 575px) {
  .order-house-methods {
    padding: 40px 0 48px;
  }
}

.order-house-methods__block {
  margin-bottom: 120px;
}
.order-house-methods__block:last-child {
  margin-bottom: 0;
}

.order-house-methods__catch,
.order-house-methods__label,
.order-house-methods__text,
.order-house-methods__list,
.order-house-methods__step-label {
  font-variant-east-asian: proportional-width;
  font-feature-settings: "palt", "pwid";
}

.order-house-methods__catch {
  margin: 0 0 20px;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #ad966c;
}
@media (max-width: 767px) {
  .order-house-methods__catch {
    font-size: 1.375rem;
    margin-bottom: 24px;
  }
}

.order-house-methods__body {
  display: flex;
  align-items: stretch;
  gap: 3.75rem;
}
@media (max-width: 991px) {
  .order-house-methods__body {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 28px;
  }
}

.order-house-methods__content {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
@media (max-width: 991px) {
  .order-house-methods__content {
    flex: none;
    width: 100%;
    height: auto;
    display: block;
  }
}

.order-house-methods__label {
  flex-shrink: 0;
  width: 100%;
  display: inline-block;
  margin: 0 0 12px;
  padding: 10px 1.0625rem;
  background: #ad966c;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media (max-width: 991px) {
  .order-house-methods__label {
    margin-bottom: 20px;
  }
}

.order-house-methods__text {
  flex-shrink: 0;
  margin: 0 0 17px;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #000;
}
@media (max-width: 991px) {
  .order-house-methods__text {
    margin-bottom: 20px;
  }
}

.order-house-methods__list {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.order-house-methods__list li {
  position: relative;
  padding-left: 1.2em;
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-size: 1.75rem;
  color: #ad966c;
}
.order-house-methods__list li::before {
  content: "○";
  position: absolute;
  left: 0;
  color: #ad966c;
}
.order-house-methods__list li + li {
  margin-top: 4px;
}
@media (max-width: 991px) {
  .order-house-methods__list {
    flex: none;
  }
  .order-house-methods__list li {
    font-size: 1.75rem;
    line-height: 1.8;
  }
  .order-house-methods__list li + li {
    margin-top: 8px;
  }
}

.order-house-methods__media {
  flex: 1 1 50%;
  min-width: 0;
  height: 100%;
  display: flex;
}
@media (max-width: 991px) {
  .order-house-methods__media {
    max-width: 100%;
    height: auto;
  }
  .order-house-methods__media:not(.order-house-methods__media--cols-2) img {
    height: auto;
  }
}
.order-house-methods__media:not(.order-house-methods__media--cols-2) img {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* background: color(gray-l); */
}

.order-house-methods__media--cols-2 {
  gap: 1.75rem;
}
.order-house-methods__media--cols-2 img {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  width: auto;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .order-house-methods__media--cols-2 img {
    width: 100%;
    height: auto;
  }
}

/* 追記 */
@media (min-width: 768px) {
  .order-house-methods__media--cols-2-60-40 img:first-child {
    flex: 6 1 0;
  }
  .order-house-methods__media--cols-2-60-40 img:last-child {
    flex: 4 1 0;
  }
  .order-house-methods__media--cols-2-60-40 img {
    object-fit: contain;
  }
}

.order-house-methods__aside {
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 1.5rem;
  min-width: 0;
}
@media (max-width: 991px) {
  .order-house-methods__aside {
    flex: none;
    width: 100%;
    height: auto;
    flex-direction: column;
  }
}

.order-house-methods__steps {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-house-methods__step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.order-house-methods__step + .order-house-methods__step {
  margin-top: 20px;
}

.order-house-methods__step-icon {
  flex: 0 0 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 56px;
  border: 1px solid #ad966c;
  border-radius: 50%;
}
.order-house-methods__step-icon img {
  display: block;
  width: 2rem;
  height: 32px;
  object-fit: contain;
  background: transparent;
}

.order-house-methods__step-label {
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: #ad966c;
  font-weight: 500;
  white-space: nowrap;
  margin: 0;
}
@media (max-width: 991px) {
  .order-house-methods__step-label {
    white-space: normal;
  }
}

.order-house-methods__step-label .big {
  line-height: 1.6;
  display: block;
}

.order-house-methods__step-label .small {
  font-size: 0.875rem;
  line-height: 1;
  display: block;
}

/* ========== Order House Flow（家づくりの流れ） ========== */
.order-house-flow {
  padding: 140px 0 0;
  background: #fff;
}
.order-house-flow .container {
  max-width: 75rem;
  --bs-gutter-x: 0;
}
@media (max-width: 1399px) {
  .order-house-flow {
    padding: 100px 0 88px;
  }
}
@media (max-width: 991px) {
  .order-house-flow {
    padding: 80px 0 80px;
  }
}
@media (max-width: 767px) {
  .order-house-flow {
    padding: 48px 0 64px;
  }
}
@media (max-width: 575px) {
  .order-house-flow {
    padding: 40px 0 48px;
  }
}

.order-house-flow__title,
.order-house-flow__name-en,
.order-house-flow__name-ja,
.order-house-flow__desc {
  font-variant-east-asian: proportional-width;
  font-feature-settings: "palt", "pwid";
}

.order-house-flow__title {
  margin: 0 0 32.5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: left;
  color: #231815;
}
@media (max-width: 1399px) {
  .order-house-flow__title {
    margin-bottom: 28px;
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .order-house-flow__title {
    margin-bottom: 24px;
    font-size: 1.875rem;
  }
}
@media (max-width: 767px) {
  .order-house-flow__title {
    margin-bottom: 20px;
    font-size: 1.75rem;
  }
}
@media (max-width: 575px) {
  .order-house-flow__title {
    font-size: 1.5rem;
  }
}

.order-house-flow__rule {
  margin: 0 0 30px;
  border: 0;
  border-top: 1px solid #000;
  opacity: 1;
}
@media (max-width: 767px) {
  .order-house-flow__rule {
    margin-bottom: 28px;
  }
}
@media (max-width: 575px) {
  .order-house-flow__rule {
    margin-bottom: 24px;
  }
}

.order-house-flow__rows {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  width: 100%;
}
@media (max-width: 575px) {
  .order-house-flow__rows {
    gap: 16px;
  }
}

.order-house-flow__row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: stretch;
  gap: 0.875rem;
}
@media (max-width: 1399px) {
  .order-house-flow__row {
    gap: 0.625rem;
  }
}
@media (max-width: 1199px) {
  .order-house-flow__row {
    gap: 0.5rem;
  }
}
@media (max-width: 991px) {
  .order-house-flow__row {
    flex-direction: column;
    gap: 14px;
  }
  .order-house-flow__row:first-child::after {
    content: "";
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    border-top: 3px solid #baad54;
    border-right: 3px solid #baad54;
    transform: translateX(-2px) translateY(-2px) rotate(135deg);
    align-self: center;
  }
}
@media (max-width: 575px) {
  .order-house-flow__row {
    gap: 12px;
  }
  .order-house-flow__row:first-child::after {
    content: "";
    display: block;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 3px solid #baad54;
    border-right: 3px solid #baad54;
    transform: translateX(-2px) translateY(-2px) rotate(135deg);
  }
}

.order-house-flow__card {
  --flow-num-width: 3.25rem;
  --flow-meta-gap: 1.875rem;
  --flow-icon-size: 4.4375rem;
  --flow-icon-padding: 11px;
  display: flex;
  flex: 0 1 21.8125rem;
  flex-direction: column;
  max-width: 21.8125rem;
  padding: 21px 1.4375rem 12px;
  background: #f5f3f0;
}
@media (max-width: 1399px) {
  .order-house-flow__card {
    height: auto;
    min-height: 137px;
    padding: 17px 1.125rem 10px;
    --flow-meta-gap: 1.25rem;
    --flow-icon-size: 4rem;
    --flow-icon-padding: 10px;
  }
}
@media (max-width: 1199px) {
  .order-house-flow__card {
    padding: 16px 0.875rem 12px;
    --flow-meta-gap: 1rem;
    --flow-icon-size: 3.5rem;
    --flow-icon-padding: 8px;
  }
}
@media (max-width: 991px) {
  .order-house-flow__card {
    flex: none;
    max-width: 43.75rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    min-height: 0;
    padding: 18px 1.25rem 14px;
    --flow-meta-gap: 1rem;
    --flow-icon-size: 3.75rem;
    --flow-icon-padding: 9px;
  }
}
@media (max-width: 767px) {
  .order-house-flow__card {
    max-width: 31.25rem;
    padding: 16px 1.125rem 14px;
    --flow-num-width: 2.75rem;
    --flow-meta-gap: 0.75rem;
    --flow-icon-size: 3.5rem;
    --flow-icon-padding: 8px;
  }
}
@media (max-width: 575px) {
  .order-house-flow__card {
    padding: 14px 1rem 12px;
    --flow-num-width: 2.5rem;
    --flow-meta-gap: 0.625rem;
    --flow-icon-size: 3.25rem;
    --flow-icon-padding: 7px;
  }
}

.order-house-flow__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  min-width: 0;
}
@media (max-width: 1199px) {
  .order-house-flow__card-head {
    flex-wrap: wrap;
    row-gap: 8px;
  }
}
@media (max-width: 991px) {
  .order-house-flow__card-head {
    flex-wrap: nowrap;
    gap: 0.75rem;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .order-house-flow__card-head {
    gap: 0.75rem;
  }
}
@media (max-width: 575px) {
  .order-house-flow__card-head {
    gap: 0.625rem;
  }
}

.order-house-flow__card-meta {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: var(--flow-meta-gap);
  min-width: 0;
}
@media (max-width: 1199px) {
  .order-house-flow__card-meta {
    flex: 1 1 calc(100% - var(--flow-icon-size) - 0.625rem);
    max-width: calc(100% - var(--flow-icon-size) - 0.625rem);
  }
}
@media (max-width: 991px) {
  .order-house-flow__card-meta {
    flex: 1 1 auto;
    max-width: none;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .order-house-flow__card-meta {
    align-items: flex-start;
  }
}

.order-house-flow__num {
  flex: 0 0 var(--flow-num-width);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #ef8200;
}
@media (max-width: 1399px) {
  .order-house-flow__num {
    font-size: 4rem;
  }
}
@media (max-width: 1199px) {
  .order-house-flow__num {
    font-size: 3.5rem;
  }
}
@media (max-width: 767px) {
  .order-house-flow__num {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .order-house-flow__num {
    font-size: 2.5rem;
  }
}

.order-house-flow__names {
  flex: 1 1 auto;
  min-width: 0;
}

.order-house-flow__name-en {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.0625rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #231815;
}
@media (max-width: 1399px) {
  .order-house-flow__name-en {
    font-size: 1.75rem;
  }
}
@media (max-width: 1199px) {
  .order-house-flow__name-en {
    font-size: 1.5rem;
    line-height: 1.15;
  }
}
@media (max-width: 991px) {
  .order-house-flow__name-en {
    font-size: 1.625rem;
  }
}
@media (max-width: 767px) {
  .order-house-flow__name-en {
    font-size: 1.375rem;
  }
}
@media (max-width: 575px) {
  .order-house-flow__name-en {
    font-size: 1.25rem;
    letter-spacing: 0.01em;
  }
}

.order-house-flow__name-ja {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #231815;
}
@media (max-width: 1399px) {
  .order-house-flow__name-ja {
    font-size: 1rem;
  }
}
@media (max-width: 575px) {
  .order-house-flow__name-ja {
    letter-spacing: 0.05em;
  }
}

.order-house-flow__icon {
  flex: 0 0 var(--flow-icon-size);
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: var(--flow-icon-size);
  height: var(--flow-icon-size);
  margin-left: auto;
  padding: var(--flow-icon-padding);
  overflow: hidden;
  border: 1px solid #baad54;
  border-radius: 50%;
}
.order-house-flow__icon img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.order-house-flow__desc {
  margin: 13px 0 0;
  font-size: 0.9375rem;
  font-family: kozuka-gothic-pr6n, sans-serif;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #000;
}
@media (max-width: 1399px) {
  .order-house-flow__desc {
    font-size: 1rem;
    margin-top: 10px;
  }
}
@media (max-width: 991px) {
  .order-house-flow__desc {
    margin-top: 10px;
    padding-left: calc(var(--flow-num-width) + var(--flow-meta-gap));
  }
}
@media (max-width: 767px) {
  .order-house-flow__desc {
    margin-top: 10px;
    line-height: 1.5;
  }
}
@media (max-width: 575px) {
  .order-house-flow__desc {
    margin-top: 8px;
    font-size: 0.875rem;
    line-height: 1.55;
  }
}

.order-house-flow__arrow {
  flex: 0 0 auto;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #baad54;
}
.order-house-flow__arrow::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-top: 4px solid #baad54;
  border-right: 4px solid #baad54;
  transform: translateX(-2px) translateY(0px) rotate(45deg);
}
@media (max-width: 991px) {
  .order-house-flow__arrow::before {
    transform: translateX(-2px) translateY(-2px) rotate(135deg);
  }
}
@media (max-width: 575px) {
  .order-house-flow__arrow {
    width: 1.75rem;
    height: 1.75rem;
  }
  .order-house-flow__arrow::before {
    content: "";
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    border-top: 4px solid #baad54;
    border-right: 4px solid #baad54;
    transform: translateX(-2px) translateY(-2px) rotate(135deg);
  }
}

@media (max-width: 991px) {
  .order-house-methods__body {
    gap: 24px;
  }
  .order-house-methods__media--cols-2 {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .order-house-hero__label,
  .concept-house-hero__label,
  .asset-utilization-hero__label,
  .real-estate-hero__label {
    font-size: 0.8125rem;
  }
  .order-house-hero__breadcrumb-list,
  .concept-house-hero__breadcrumb-list,
  .asset-utilization-hero__breadcrumb-list,
  .real-estate-hero__breadcrumb-list {
    margin-top: 20px;
    font-size: 0.75rem;
  }
  .order-house-methods__block {
    margin-bottom: 56px;
  }
  .order-house-methods__catch {
    font-size: 1.375rem;
    line-height: 1.6;
  }
  .order-house-methods__label {
    font-size: 1.125rem;
    padding: 12px 0.875rem;
  }
  .order-house-methods__text {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  .order-house-methods__list li {
    font-size: 1.375rem;
    line-height: 1.6;
  }
  .order-house-methods__media--cols-2 {
    flex-direction: column;
    gap: 16px;
  }
  .order-house-methods__media--cols-2 img {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
  .order-house-methods__aside {
    gap: 20px;
  }
  .page-order-house .logo img,
  .page-concept-house .logo img,
  .page-asset-utilization .logo img,
  .page-contact .logo img {
    height: 72px;
    padding: 12px 1rem;
  }
}
@media (max-width: 575px) {
  .order-house-hero__title,
  .concept-house-hero__title,
  .asset-utilization-hero__title,
  .real-estate-hero__title {
    font-size: 2.25rem;
  }
  .order-house-methods__catch {
    font-size: 1.25rem;
  }
  .order-house-methods__list li {
    font-size: 1.125rem;
  }
}
/* ========== Concept House Page ========== */
.concept-house-hero {
  margin-top: var(--site-header-height, 100px);
  padding: 0;
  background-color: #fff;
  background-image: url("../images/concept_house/concept_house_top.svg");
  background-repeat: no-repeat;
  background-position: right 9vw center;
  background-size: min(77.5625rem, 0.6463541667 * 100vw) auto;
  background-position: 100% center;
}
@media (max-width: 1399px) {
  .concept-house-hero {
    background-position: right 9vw 58%;
    background-size: clamp(340px, 70vw, 920px) auto;
  }
}
@media (max-width: 991px) {
  .concept-house-hero {
    background-position: right 9vw 100%;
    background-size: clamp(280px, 108%, 640px) auto;
  }
}
@media (max-width: 767px) {
  .concept-house-hero {
    padding: 48px 0;
    background-position: calc(100% - 3vw) 100%;
    background-size: min(92vw, 480px) auto;
  }
}
@media (max-width: 1399px) {
  .concept-house-hero {
    background-position: calc(100% - 4vw) 80%;
  }
}
@media (max-width: 991px) {
  .concept-house-hero {
    background-position: calc(100% - 4vw) 100%;
  }
}
@media (max-width: 767px) {
  .concept-house-hero {
    background-position: calc(100% + 20vw) 100%;
  }
}

.concept-house-intro {
  position: relative;
  z-index: 2;
  overflow-x: clip;
  width: 100%;
}
.concept-house-intro .container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  min-height: 600px;
  height: 600px;
}
.concept-house-intro .text-container {
  position: relative;
  z-index: 1;
  flex: 0 0 48%;
  width: 48%;
  max-width: 48%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.concept-house-intro .image-container {
  flex: 0 0 52%;
  position: relative;
  z-index: 2;
  min-width: 0;
  align-self: stretch;
  overflow: visible;
}
.concept-house-intro .image-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  left: 0;
  background: url("../images/concept_house/concept_house_1.png") no-repeat center/cover;
}
.concept-house-intro .image-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  left: 0;
  height: 8px;
  background: #ad966c;
  z-index: 3;
  pointer-events: none;
}
.concept-house-intro .concept-house-intro__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 2.5rem 0 0.5rem;
}
.concept-house-intro .concept-house-intro__title {
  margin: 0 0 50px;
  font-size: 2.5625rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #231815;
}
.concept-house-intro .concept-house-intro__title-line {
  display: block;
  line-height: 1;
}
.concept-house-intro .concept-house-intro__title-line:first-child {
  margin-bottom: 30px;
}
.concept-house-intro .concept-house-intro__text {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #231815;
}
@media (max-width: 1399px) {
  .concept-house-intro .container {
    min-height: 560px;
    height: auto;
  }
  .concept-house-intro .concept-house-intro__content {
    padding: 0 2.25rem 0 0.5rem;
  }
  .concept-house-intro .concept-house-intro__title {
    font-size: 2.25rem;
    margin-bottom: 40px;
  }
  .concept-house-intro .concept-house-intro__title-line:first-child {
    margin-bottom: 24px;
  }
  .concept-house-intro .concept-house-intro__text {
    font-size: 1.125rem;
  }
}
@media (max-width: 991px) {
  .concept-house-intro .container {
    min-height: 0;
    height: auto;
  }
  .concept-house-intro .concept-house-intro__content {
    padding: 2rem 2rem 2rem 0;
  }
  .concept-house-intro .concept-house-intro__title {
    font-size: 1.75rem;
    margin-bottom: 32px;
  }
  .concept-house-intro .concept-house-intro__title-line:first-child {
    margin-bottom: 20px;
  }
  .concept-house-intro .concept-house-intro__text {
    font-size: 1rem;
    line-height: 1.85;
  }
}
@media (max-width: 767px) {
  .concept-house-intro .container {
    flex-direction: column;
    min-height: 0;
    height: auto;
  }
  .concept-house-intro .text-container {
    flex: none;
    order: 2;
    width: 100%;
    max-width: 100%;
  }
  .concept-house-intro .image-container {
    flex: none;
    order: 1;
    width: 100%;
    min-height: 280px;
  }
  .concept-house-intro .image-container::before {
    right: 0;
  }
  .concept-house-intro .image-container::after {
    top: auto;
    right: 0;
    bottom: 0;
  }
  .concept-house-intro .concept-house-intro__content {
    padding: 2rem 1.5rem 1.5rem;
  }
  .concept-house-intro .concept-house-intro__title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  .concept-house-intro .concept-house-intro__title-line {
    display: inline;
  }
  .concept-house-intro .concept-house-intro__title-line:first-child {
    margin-bottom: 0;
  }
  .concept-house-intro .concept-house-intro__text {
    font-size: 0.9375rem;
    line-height: 1.85;
  }
  .concept-house-intro .concept-house-intro__text br {
    display: none;
  }
}
@media (max-width: 575px) {
  .concept-house-intro .image-container {
    min-height: 220px;
  }
  .concept-house-intro .concept-house-intro__content {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .concept-house-intro .concept-house-intro__title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  .concept-house-intro .concept-house-intro__title-line:first-child {
    margin-bottom: 12px;
  }
  .concept-house-intro .concept-house-intro__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.concept-house-intro + .concept-house-identity {
  margin-top: -100px;
  padding-top: 220px;
}

.concept-house-identity {
  position: relative;
  z-index: 1;
  padding: 87.5px 0;
  background: #f3f2ec;
}
.concept-house-identity .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}
.concept-house-identity .text-container {
  flex: 0 0 25%;
  width: 25%;
  max-width: 25%;
  position: relative;
}
.concept-house-identity .text-container::before {
  content: "Identity 1";
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.25rem;
  height: 11.25rem;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #f3f2ec;
  font-size: 1.625rem;
  font-weight: 500;
  color: #231815;
}
.concept-house-identity .text-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 11.25rem;
  height: 11.25rem;
  border-radius: 50%;
  background: conic-gradient(from 90deg, #baad7c 0deg 90deg, transparent 90deg 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 100%);
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 100%);
  pointer-events: none;
}
.concept-house-identity--2 .text-container::before {
  content: "Identity 2";
}
.concept-house-identity--3 .text-container::before {
  content: "Identity 3";
}
.concept-house-identity--3 {
  padding-bottom: 195px;
  margin-bottom: 100px;
}
.concept-house-identity .image-container {
  flex: 0 0 75%;
  width: 75%;
  max-width: 75%;
  position: relative;
}
.concept-house-identity .concept-house-identity__image {
  display: block;
  width: 100%;
  height: auto;
}
.concept-house-identity .concept-house-identity__panel {
  position: absolute;
  left: -6.75rem;
  bottom: -45px;
  z-index: 1;
  width: 100%;
  max-width: 51.3125rem;
  padding: 20px 1.875rem 30px;
  background: rgba(20, 15, 5, 0.82);
  color: #fff;
}
@media (max-width: 767px) {
  .concept-house-identity .concept-house-identity__panel {
    left: 0;
    background: rgb(20, 15, 5);
    position: static;
  }
}
.concept-house-identity .concept-house-identity__heading {
  margin: 0 0 1rem;
  font-size: 2.3125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
}
.concept-house-identity .concept-house-identity__text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.1em;
}
@media (max-width: 991px) {
  .concept-house-identity {
    padding: 64px 0;
  }
  .concept-house-intro + .concept-house-identity {
    margin-top: 0;
    padding-top: 100px;
  }
  .concept-house-identity .text-container::before {
    width: 8.125rem;
    height: 8.125rem;
    font-size: 1rem;
  }
  .concept-house-identity .text-container::after {
    width: 8.125rem;
    height: 8.125rem;
  }
  .concept-house-identity .concept-house-identity__heading {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  .concept-house-identity .concept-house-identity__text {
    font-size: 0.8125rem;
    line-height: 1.85;
  }
  .concept-house-identity .concept-house-identity__panel {
    padding: 1.25rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .concept-house-identity {
    padding: 40px 0 0;
  }
  .concept-house-intro + .concept-house-identity {
    padding-top: 40px;
  }
  .concept-house-identity .container {
    flex-direction: column;
    gap: 32px;
  }
  .concept-house-identity .text-container {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
  .concept-house-identity .text-container::before {
    margin: 0 auto;
  }
  .concept-house-identity .text-container::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .concept-house-identity .image-container {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
  .concept-house-identity--3 {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

/* ========== Asset Utilization Page ========== */
.asset-utilization-hero {
  margin-top: var(--site-header-height, 100px);
  padding: 0;
  background-color: #fff;
  background-image: url("../images/asset_utilization/mirai_asset_top.svg");
  background-repeat: no-repeat;
  background-position: right 9vw center;
  background-size: min(76.6875rem, 0.6390625 * 100vw) auto;
  background-position: calc(100% - 6vw) center;
}
@media (max-width: 1399px) {
  .asset-utilization-hero {
    background-position: right 9vw 58%;
    background-size: clamp(340px, 70vw, 920px) auto;
  }
}
@media (max-width: 991px) {
  .asset-utilization-hero {
    background-position: right 9vw 100%;
    background-size: clamp(280px, 108%, 640px) auto;
  }
}
@media (max-width: 767px) {
  .asset-utilization-hero {
    padding: 48px 0;
    background-position: calc(100% - 3vw) 100%;
    background-size: min(92vw, 480px) auto;
  }
}
@media (max-width: 1399px) {
  .asset-utilization-hero {
    background-position: calc(100% - 4vw) 58%;
  }
}
@media (max-width: 991px) {
  .asset-utilization-hero {
    background-position: calc(100% - 4vw) 100%;
  }
}
@media (max-width: 767px) {
  .asset-utilization-hero {
    background-position: calc(100% + 2vw) 100%;
  }
}

.asset-utilization-hero__title-line {
  display: block;
  line-height: 1.1;
}

.asset-utilization-intro {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  padding: 100px 0 174px;
}
.asset-utilization-intro::before {
  content: "";
  position: absolute;
  top: 0;
  right: 13vw;
  z-index: 2;
  width: 100vw;
  height: 8px;
  background: #c6c5a7;
  pointer-events: none;
}
.asset-utilization-intro::after {
  content: "";
  position: absolute;
  top: 0;
  right: 13vw;
  z-index: 0;
  width: 100vw;
  height: 100%;
  background: #f3f2ec;
  pointer-events: none;
}
.asset-utilization-intro .container {
  position: relative;
  z-index: 1;
}

.asset-utilization-intro__head {
  max-width: 56.25rem;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
}

.asset-utilization-intro__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 56.25rem;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-align: start;
  margin: 0;
  padding-left: 0;
  font-weight: 400;
  white-space: nowrap;
}

.asset-utilization-intro__text-line {
  display: block;
  line-height: 1.7;
}

.asset-utilization-categories {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 5.3125rem;
}

.asset-utilization-category {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 13.8125rem;
  height: 221px;
  border-radius: 50%;
  background: #fff;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.asset-utilization-category::after {
  content: "";
  position: absolute;
  bottom: 35px;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border-right: 3px solid #231815;
  border-bottom: 3px solid #231815;
  transform: translateX(-50%) rotate(45deg);
  pointer-events: none;
}
.asset-utilization-category:hover {
  opacity: 0.75;
}

.asset-utilization-category__en {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 100;
  line-height: 1.1;
  text-align: center;
  color: #8b894a;
  margin-bottom: 0.4375rem;
}

.asset-utilization-category__ja {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  color: #231815;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .asset-utilization-category__en,
  .asset-utilization-category__ja {
    transform: translateY(-6px);
  }
}
@media (max-width: 1399px) {
  .asset-utilization-intro {
    padding: 70px 0 100px;
  }
  .asset-utilization-intro .asset-utilization-intro__text {
    gap: 1.25rem;
  }
  .asset-utilization-intro .asset-utilization-categories {
    gap: 2.5rem;
  }
  .asset-utilization-intro .asset-utilization-category {
    width: 11.25rem;
    height: 11.25rem;
  }
  .asset-utilization-intro .asset-utilization-category::after {
    bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .asset-utilization-intro {
    padding: 60px 0 100px;
  }
  .asset-utilization-intro::before, .asset-utilization-intro::after {
    right: 0;
  }
  .asset-utilization-intro .asset-utilization-intro__head {
    margin-bottom: 3rem;
  }
  .asset-utilization-intro .asset-utilization-intro__text {
    gap: 0.5rem;
  }
  .asset-utilization-intro .asset-utilization-categories {
    gap: 2rem;
  }
  .asset-utilization-intro .asset-utilization-category {
    width: 10rem;
    height: 10rem;
    padding: 1.5rem;
  }
  .asset-utilization-intro .asset-utilization-category::after {
    bottom: 1.25rem;
  }
}
@media (max-width: 767px) {
  .asset-utilization-intro {
    padding: 3rem 0 2.5rem;
  }
  .asset-utilization-intro::before, .asset-utilization-intro::after {
    right: 0;
  }
  .asset-utilization-intro .asset-utilization-intro__head {
    margin-bottom: 2rem;
  }
  .asset-utilization-intro .asset-utilization-intro__text {
    gap: 0.875rem;
  }
  .asset-utilization-intro .asset-utilization-categories {
    align-items: center;
    gap: 1.5rem;
  }
}
@media (max-width: 575px) {
  .asset-utilization-intro {
    padding: 2.5rem 0 2rem;
  }
  .asset-utilization-intro::before, .asset-utilization-intro::after {
    right: 0;
  }
  .asset-utilization-intro .asset-utilization-intro__head {
    margin-bottom: 1.5rem;
  }
  .asset-utilization-intro .asset-utilization-intro__text {
    gap: 0.75rem;
  }
  .asset-utilization-intro .asset-utilization-categories {
    display: grid;
    grid-template-columns: repeat(2, 8.75rem);
    column-gap: 1.25rem;
    row-gap: 0;
    justify-content: center;
    justify-items: center;
  }
  .asset-utilization-intro .asset-utilization-categories .asset-utilization-category[href="#exterior"] {
    grid-column: 1/-1;
    justify-self: center;
  }
  .asset-utilization-intro .asset-utilization-category {
    width: 8.75rem;
    height: 8.75rem;
    padding: 1.25rem;
  }
  .asset-utilization-intro .asset-utilization-category::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.asset-utilization-service {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  padding: 0 0 7.5rem;
}
.asset-utilization-service#reform {
  padding-bottom: 165px;
}
.asset-utilization-service__detail {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  overflow-x: clip;
}
.asset-utilization-service__detail .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.asset-utilization-service__detail--reverse .container {
  flex-direction: row-reverse;
}
.asset-utilization-service__image {
  flex: 0 1 50%;
  position: relative;
  z-index: 0;
}
.asset-utilization-service__image::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}
.asset-utilization-service__text-wrap {
  position: relative;
  z-index: 1;
  flex: 0 1 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.asset-utilization-service__text-wrap::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 60vw;
}
.asset-utilization-service__content {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (max-width: 1199px) {
  .asset-utilization-service__content {
    padding-left: 0;
  }
}
.asset-utilization-service__heading {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 1rem;
  margin: 0 0 1.5rem;
  color: #fff;
}
.asset-utilization-service__heading-ja {
  font-size: 2.4375rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.12em;
}
.asset-utilization-service__heading-en {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.21875rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.asset-utilization-service__text {
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #fff;
}
.asset-utilization-service__detail--asset .asset-utilization-service__image {
  height: 401px;
}
.asset-utilization-service__detail--asset .asset-utilization-service__image::before {
  top: -50px;
  right: -5vw;
  width: 55vw;
  height: 401px;
  background-image: url("../images/asset_utilization/asset_utilization_1.jpg");
}
.asset-utilization-service__detail--asset .asset-utilization-service__text-wrap {
  height: 401px;
}
.asset-utilization-service__detail--asset .asset-utilization-service__text-wrap::before {
  left: -5vw;
  background: #b2b189;
  height: 401px;
}
.asset-utilization-service__detail--asset .asset-utilization-service__text {
  max-width: 34.625rem;
}
.asset-utilization-service__detail--reform .asset-utilization-service__image {
  height: 401px;
}
.asset-utilization-service__detail--reform .asset-utilization-service__image::before {
  top: 50px;
  left: -5vw;
  right: auto;
  width: 100vw;
  height: 401px;
  background-image: url("../images/asset_utilization/asset_utilization_2.png");
}
.asset-utilization-service__detail--reform .asset-utilization-service__text-wrap {
  height: 401px;
  justify-content: flex-end;
}
.asset-utilization-service__detail--reform .asset-utilization-service__text-wrap::before {
  right: -5vw;
  left: auto;
  background: #b2b189;
  height: 401px;
}
.asset-utilization-service__detail--reform .asset-utilization-service__content {
  width: auto;
  max-width: 100%;
  margin-left: auto;
  padding-left: 2em;
}
.asset-utilization-service__detail--exterior .asset-utilization-service__image {
  height: 401px;
}
.asset-utilization-service__detail--exterior .asset-utilization-service__image::before {
  top: 35px;
  right: -5vw;
  width: 100vw;
  height: 401px;
  background-image: url("../images/asset_utilization/asset_utilization_3.png");
}
.asset-utilization-service__detail--exterior .asset-utilization-service__text-wrap {
  height: 401px;
}
.asset-utilization-service__detail--exterior .asset-utilization-service__text-wrap::before {
  left: -5vw;
  background: #b2b189;
  height: 401px;
}
.asset-utilization-service__detail--exterior .asset-utilization-service__text {
  max-width: 25rem;
  letter-spacing: 0.06em;
}
@media (max-width: 1399px) {
  .asset-utilization-service .asset-utilization-service__heading-ja {
    font-size: 1.75rem;
  }
}
@media (max-width: 1199px) {
  .asset-utilization-service .asset-utilization-service__detail--reform .asset-utilization-service__content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .asset-utilization-service {
    padding-bottom: 100px;
  }
  .asset-utilization-service .asset-utilization-service__detail--asset .asset-utilization-service__image::before {
    top: 0;
    right: -5vw;
    left: auto;
    width: 100vw;
    height: 401px;
  }
  .asset-utilization-service .asset-utilization-service__detail--asset .asset-utilization-service__text-wrap::before {
    left: -5vw;
    right: auto;
  }
  .asset-utilization-service .asset-utilization-service__detail--exterior .asset-utilization-service__image::before {
    top: 0;
    left: auto;
    width: 100vw;
    height: 401px;
  }
  .asset-utilization-service .asset-utilization-service__detail--exterior .asset-utilization-service__text-wrap::before {
    left: -5vw;
    right: auto;
  }
  .asset-utilization-service .asset-utilization-service__detail--reform .asset-utilization-service__image::before {
    top: 0;
    left: -5vw;
    right: auto;
    width: 100vw;
    height: 401px;
  }
  .asset-utilization-service .asset-utilization-service__detail--reform .asset-utilization-service__text-wrap {
    justify-content: flex-end;
  }
  .asset-utilization-service .asset-utilization-service__detail--reform .asset-utilization-service__text-wrap::before {
    right: -5vw;
    left: auto;
  }
  .asset-utilization-service .asset-utilization-service__heading-ja {
    font-size: 1.875rem;
  }
  .asset-utilization-service .asset-utilization-service__heading-en {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .asset-utilization-service {
    padding: 20px 0 80px;
  }
  .asset-utilization-service .asset-utilization-service__detail .container {
    display: block;
  }
  .asset-utilization-service .asset-utilization-service__detail--asset .asset-utilization-service__image,
  .asset-utilization-service .asset-utilization-service__detail--exterior .asset-utilization-service__image,
  .asset-utilization-service .asset-utilization-service__detail--reform .asset-utilization-service__image {
    height: 210px;
    min-height: 0;
  }
  .asset-utilization-service .asset-utilization-service__text-wrap {
    width: 100%;
    height: auto;
    min-height: 0;
    justify-content: center;
    padding: 40px 1.5rem;
    box-sizing: border-box;
  }
  .asset-utilization-service .asset-utilization-service__text-wrap::before {
    width: 100%;
    height: 100%;
    top: 0;
  }
  .asset-utilization-service .asset-utilization-service__detail--asset .asset-utilization-service__text-wrap,
  .asset-utilization-service .asset-utilization-service__detail--exterior .asset-utilization-service__text-wrap,
  .asset-utilization-service .asset-utilization-service__detail--reform .asset-utilization-service__text-wrap {
    height: auto;
    padding: 30px 1.25rem 40px;
  }
  .asset-utilization-service .asset-utilization-service__detail--asset .asset-utilization-service__image::before,
  .asset-utilization-service .asset-utilization-service__detail--exterior .asset-utilization-service__image::before {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 210px;
  }
  .asset-utilization-service .asset-utilization-service__detail--asset .asset-utilization-service__text-wrap::before,
  .asset-utilization-service .asset-utilization-service__detail--exterior .asset-utilization-service__text-wrap::before {
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
  }
  .asset-utilization-service .asset-utilization-service__detail--asset .asset-utilization-service__text,
  .asset-utilization-service .asset-utilization-service__detail--exterior .asset-utilization-service__text {
    max-width: none;
  }
  .asset-utilization-service .asset-utilization-service__detail--reform .asset-utilization-service__image::before {
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 210px;
  }
  .asset-utilization-service .asset-utilization-service__detail--reform .asset-utilization-service__text-wrap {
    justify-content: center;
  }
  .asset-utilization-service .asset-utilization-service__detail--reform .asset-utilization-service__text-wrap::before {
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
  }
  .asset-utilization-service .asset-utilization-service__detail--reform .asset-utilization-service__content {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }
  .asset-utilization-service .asset-utilization-service__content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .asset-utilization-service .asset-utilization-service__heading {
    margin-bottom: 1.25rem;
  }
  .asset-utilization-service .asset-utilization-service__heading-ja {
    font-size: 1.375rem;
  }
  .asset-utilization-service .asset-utilization-service__heading-en {
    font-size: 1rem;
  }
  .asset-utilization-service .asset-utilization-service__text {
    font-size: 0.875rem;
    line-height: 1.85;
  }
  .asset-utilization-service .asset-utilization-service__text br {
    display: none;
  }
}
@media (max-width: 575px) {
  .asset-utilization-service {
    padding: 20px 0 0;
  }
  .asset-utilization-service#reform {
    padding-bottom: 0;
  }
  .asset-utilization-service .asset-utilization-service__image {
    min-height: 220px;
  }
  .asset-utilization-service .asset-utilization-service__image::before {
    height: 220px;
  }
  .asset-utilization-service .asset-utilization-service__text-wrap {
    min-height: 240px;
    padding: 32px 1.25rem;
  }
  .asset-utilization-service .asset-utilization-service__heading-ja {
    font-size: 1.25rem;
  }
  .asset-utilization-service .asset-utilization-service__text {
    font-size: 0.8125rem;
    line-height: 1.85;
  }
}

@media (max-width: 1399px) {
  .asset-utilization-intro__text {
    font-size: 1.125rem;
  }
}
@media (max-width: 1089px) {
  .asset-utilization-intro__text {
    font-size: 1rem;
    letter-spacing: 0.02em;
    white-space: normal;
  }
}
@media (max-width: 991px) {
  .asset-utilization-category__en {
    font-size: 1.25rem;
  }
  .asset-utilization-category__ja {
    font-size: 0.8125rem;
  }
}
@media (max-width: 767px) {
  .asset-utilization-hero__title {
    font-size: 2.5rem;
  }
}
.asset-utilization-land-use {
  padding: 0 0 150px;
}
.asset-utilization-land-use__title {
  margin: 0 0 10px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #000;
}
.asset-utilization-land-use__lead {
  margin: 0 0 30px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.12em;
  color: #000;
}
.asset-utilization-land-use__points {
  list-style: none;
  margin: 0 0 82px;
  padding: 30px 34px 33px;
  border: 1px solid #77752f;
  background: #fff;
}
.asset-utilization-land-use__points-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9375rem;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #77752f;
}
.asset-utilization-land-use__points-item::before {
  content: "";
  flex: 0 0 auto;
  width: 0.3125rem;
  height: 0.3125rem;
  margin-top: calc((1.75em - 0.3125rem) / 2);
  border-radius: 50%;
  background: #77752f;
}
.asset-utilization-land-use__points-item + .asset-utilization-land-use__points-item {
  margin-top: 0.75rem;
}
.asset-utilization-land-use__example {
  padding: 35px 2.5rem 50px;
  background: #f3f2ec;
}
.asset-utilization-land-use__example-label {
  margin: 0 0 24px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #000;
}
.asset-utilization-land-use__example-card {
  margin: 0 auto 3.4375rem;
  padding: 10px 0.625rem 40px;
  background: #fff;
  /** border: 1px solid color(wood-pale-d); **/
}
.asset-utilization-land-use__example-cols {
  display: flex;
  align-items: stretch;
}
.asset-utilization-land-use__example-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.asset-utilization-land-use__example-col:first-child {
  position: relative;
  padding-right: 1.25rem;
}
.asset-utilization-land-use__example-col:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: calc(100% + 30px);
  border-right: 1.5px dotted #000;
}
.asset-utilization-land-use__example-col:last-child {
  padding-left: 1.25rem;
}
.asset-utilization-land-use__example-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 63px;
  margin: 0 0 40px;
  background: #b2b189;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #fff;
}
.asset-utilization-land-use__example-formula {
  align-self: flex-start;
  width: 100%;
  padding-left: 1.5625rem;
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: left;
  color: #000;
  margin-bottom: 1.875rem;
}
.asset-utilization-land-use__example-result {
  margin: 0 0.9375rem 0 0;
  align-self: flex-end;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #000;
}
.asset-utilization-land-use__example-amount {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #ef8200;
}
.asset-utilization-land-use__example-calc {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem 3.125rem;
  margin: 0 0 32px;
  color: #231815;
}
.asset-utilization-land-use__example-calc-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 3.125rem 2.5rem;
}
.asset-utilization-land-use__example-calc-term {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.asset-utilization-land-use__example-calc-label {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.asset-utilization-land-use__example-calc-value {
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.asset-utilization-land-use__example-calc-unit {
  font-size: 1.375rem;
  font-weight: inherit;
  letter-spacing: inherit;
}
.asset-utilization-land-use__example-calc-op {
  align-self: center;
  font-size: 2.5rem;
  font-weight: 400;
}
.asset-utilization-land-use__example-calc-result-row {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem 4.375rem;
}
.asset-utilization-land-use__example-calc-result {
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.asset-utilization-land-use__example-yield {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  width: fit-content;
  margin: 0 auto 38px;
  padding-bottom: 20px;
  font-weight: 500;
  color: #ef8200;
}
.asset-utilization-land-use__example-yield::before, .asset-utilization-land-use__example-yield::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #ef8200;
}
.asset-utilization-land-use__example-yield::after {
  bottom: 0;
}
.asset-utilization-land-use__example-yield::before {
  bottom: 6px;
}
.asset-utilization-land-use__example-yield-label {
  font-size: 2.8125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
.asset-utilization-land-use__example-yield-value {
  font-size: 4.1875rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.asset-utilization-land-use__notes {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.asset-utilization-land-use__notes-item {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #000;
}
.asset-utilization-land-use__notes-footer {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #000;
}
@media (max-width: 1199px) {
  .asset-utilization-land-use__example-calc {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-bottom: 24px;
  }
  .asset-utilization-land-use__example-calc-row {
    gap: 0.5rem 0.75rem;
    justify-content: flex-start;
  }
  .asset-utilization-land-use__example-calc-term {
    align-items: flex-start;
    text-align: left;
  }
  .asset-utilization-land-use__example-calc-result-row {
    align-self: flex-end;
    justify-content: flex-end;
  }
  .asset-utilization-land-use__example-calc-result {
    align-self: center;
  }
}
@media (max-width: 991px) {
  .asset-utilization-land-use {
    padding: 64px 0 100px;
  }
  .asset-utilization-land-use__title {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }
  .asset-utilization-land-use__lead {
    margin-bottom: 40px;
    font-size: 0.9375rem;
  }
  .asset-utilization-land-use__points {
    margin-bottom: 48px;
    padding: 40px 32px;
  }
  .asset-utilization-land-use__points-item {
    font-size: 1rem;
  }
  .asset-utilization-land-use__example {
    padding: 32px 24px 40px;
  }
  .asset-utilization-land-use__example-card {
    padding: 40px 24px 32px;
  }
  .asset-utilization-land-use__example-amount {
    font-size: 1.875rem;
  }
  .asset-utilization-land-use__example-yield-value {
    font-size: 2.75rem;
  }
  .asset-utilization-land-use__example-calc {
    gap: 0.625rem 1.25rem;
  }
  .asset-utilization-land-use__example-calc-label {
    font-size: 1.125rem;
  }
  .asset-utilization-land-use__example-calc-value, .asset-utilization-land-use__example-calc-result {
    font-size: 1.625rem;
  }
  .asset-utilization-land-use__example-calc-op {
    font-size: 2.75rem;
  }
  .asset-utilization-land-use__example-calc-result-row {
    gap: 0.75rem 3.5rem;
  }
  .asset-utilization-land-use__notes-item {
    line-height: 1.85;
  }
  .asset-utilization-land-use__notes-footer {
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .asset-utilization-land-use {
    padding: 48px 0 80px;
  }
  .asset-utilization-land-use__title {
    font-size: 1.375rem;
    margin-bottom: 24px;
  }
  .asset-utilization-land-use__lead {
    margin-bottom: 32px;
    font-size: 0.875rem;
    line-height: 1.85;
  }
  .asset-utilization-land-use__points {
    margin-bottom: 40px;
    padding: 32px 20px;
  }
  .asset-utilization-land-use__points-item {
    font-size: 0.875rem;
  }
  .asset-utilization-land-use__example {
    padding: 28px 16px 32px;
  }
  .asset-utilization-land-use__example-card {
    padding: 32px 16px 28px;
  }
  .asset-utilization-land-use__example-cols {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
  }
  .asset-utilization-land-use__example-col:first-child {
    padding-right: 0;
    padding-bottom: 32px;
    border-bottom: 1px dotted #b2b189;
  }
  .asset-utilization-land-use__example-col:first-child::after {
    display: none;
  }
  .asset-utilization-land-use__example-col:last-child {
    padding-left: 0;
  }
  .asset-utilization-land-use__example-amount {
    font-size: 1.625rem;
  }
  .asset-utilization-land-use__example-calc-label {
    font-size: 0.875rem;
  }
  .asset-utilization-land-use__example-calc-value, .asset-utilization-land-use__example-calc-result {
    font-size: 1.25rem;
  }
  .asset-utilization-land-use__example-calc-op {
    font-size: 2rem;
  }
  .asset-utilization-land-use__example-calc-result-row {
    gap: 0.625rem 2.5rem;
  }
  .asset-utilization-land-use__example-yield-label {
    font-size: 1.25rem;
  }
  .asset-utilization-land-use__example-yield-value {
    font-size: 2.25rem;
  }
  .asset-utilization-land-use__notes-item {
    line-height: 1.8;
  }
  .asset-utilization-land-use__notes-item + .asset-utilization-land-use__notes-item {
    margin-top: 12px;
  }
  .asset-utilization-land-use__notes-footer {
    line-height: 1.65;
  }
}
@media (max-width: 575px) {
  .asset-utilization-land-use {
    padding: 2.5rem 0 4rem;
  }
  .asset-utilization-land-use__title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .asset-utilization-land-use__lead {
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
  }
  .asset-utilization-land-use__points {
    margin-bottom: 2rem;
    padding: 1.5rem 1rem;
  }
  .asset-utilization-land-use__points-item {
    font-size: 0.8125rem;
  }
  .asset-utilization-land-use__example {
    padding: 1.5rem 0.75rem 1.75rem;
  }
  .asset-utilization-land-use__example-badge {
    font-size: 1.125rem;
    height: auto;
    min-height: 3rem;
    padding: 0.5rem 0.75rem;
  }
  .asset-utilization-land-use__example-formula {
    font-size: 1.125rem;
  }
  .asset-utilization-land-use__example-result {
    font-size: 1.5rem;
  }
  .asset-utilization-land-use__example-amount {
    font-size: 1.375rem;
  }
  .asset-utilization-land-use__example-calc-label {
    font-size: 0.75rem;
  }
  .asset-utilization-land-use__example-calc-value, .asset-utilization-land-use__example-calc-result {
    font-size: 1rem;
  }
  .asset-utilization-land-use__example-calc-op {
    font-size: 1.5rem;
  }
  .asset-utilization-land-use__example-calc-result-row {
    gap: 0.5rem 1.75rem;
  }
  .asset-utilization-land-use__example-yield-label {
    font-size: 1.125rem;
  }
  .asset-utilization-land-use__example-yield-value {
    font-size: 1.875rem;
  }
  .asset-utilization-land-use__notes-item {
    line-height: 1.3;
  }
  .asset-utilization-land-use__notes-footer {
    line-height: 1.3;
  }
}

@media (max-width: 575px) {
  .asset-utilization-hero__title {
    font-size: 2rem;
  }
  .asset-utilization-intro__text {
    font-size: 0.875rem;
  }
  .asset-utilization-category__en {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
  }
  .asset-utilization-category__ja {
    font-size: 0.75rem;
  }
}
.asset-utilization-reform-examples,
.asset-utilization-maintenance-examples {
  padding: 0 0 120px;
  background: #fff;
}
.asset-utilization-reform-examples__inner,
.asset-utilization-maintenance-examples__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}
.asset-utilization-reform-examples__head,
.asset-utilization-maintenance-examples__head {
  display: flex;
  align-items: stretch;
  gap: 1.75rem;
}
.asset-utilization-reform-examples__bar,
.asset-utilization-maintenance-examples__bar {
  flex: 0 0 4px;
  background: #231815;
}
.asset-utilization-reform-examples__title-wrap,
.asset-utilization-maintenance-examples__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 20px 0;
}
.asset-utilization-reform-examples__title,
.asset-utilization-maintenance-examples__title {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #000;
}
.asset-utilization-reform-examples__subtitle,
.asset-utilization-maintenance-examples__subtitle {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  color: #939393;
}
.asset-utilization-reform-examples__grid,
.asset-utilization-maintenance-examples__grid {
  display: grid;
  flex: 0 0 auto;
  width: max-content;
  max-width: 100%;
  grid-template-columns: repeat(3, 17.5rem);
  gap: 1.5625rem 0.9375rem;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.asset-utilization-reform-examples__item,
.asset-utilization-maintenance-examples__item {
  margin: 0;
  min-width: 0;
  max-width: 17.5rem;
}
.asset-utilization-reform-examples__label,
.asset-utilization-maintenance-examples__label {
  margin: 0;
  padding: 10px 12px;
  background: #000;
  font-size: 1rem;
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: left;
  color: #fff;
}
.asset-utilization-reform-examples__img,
.asset-utilization-maintenance-examples__img {
  overflow: hidden;
}
.asset-utilization-reform-examples__img img,
.asset-utilization-maintenance-examples__img img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .asset-utilization-reform-examples__inner,
  .asset-utilization-maintenance-examples__inner {
    gap: 1.5rem;
    min-width: 0;
  }
  .asset-utilization-reform-examples__head,
  .asset-utilization-maintenance-examples__head {
    flex: 0 0 auto;
  }
  .asset-utilization-reform-examples__grid,
  .asset-utilization-maintenance-examples__grid {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
  }
  .asset-utilization-reform-examples__item,
  .asset-utilization-maintenance-examples__item {
    max-width: none;
  }
}
@media (max-width: 991px) {
  .asset-utilization-reform-examples,
  .asset-utilization-maintenance-examples {
    padding: 64px 0 100px;
  }
  .asset-utilization-reform-examples__inner,
  .asset-utilization-maintenance-examples__inner {
    gap: 2rem;
  }
  .asset-utilization-reform-examples__head,
  .asset-utilization-maintenance-examples__head {
    flex: 0 0 11.25rem;
  }
  .asset-utilization-reform-examples__title,
  .asset-utilization-maintenance-examples__title {
    font-size: 1.5rem;
  }
  .asset-utilization-reform-examples__grid,
  .asset-utilization-maintenance-examples__grid {
    gap: 1.25rem 1rem;
  }
  .asset-utilization-reform-examples__label,
  .asset-utilization-maintenance-examples__label {
    font-size: 0.8125rem;
    padding: 8px 10px;
  }
}
@media (max-width: 767px) {
  .asset-utilization-reform-examples,
  .asset-utilization-maintenance-examples {
    padding: 48px 0 80px;
  }
  .asset-utilization-reform-examples__inner,
  .asset-utilization-maintenance-examples__inner {
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
  }
  .asset-utilization-reform-examples__head,
  .asset-utilization-maintenance-examples__head {
    flex: none;
    width: 100%;
  }
  .asset-utilization-reform-examples__title,
  .asset-utilization-maintenance-examples__title {
    font-size: 1.375rem;
  }
  .asset-utilization-reform-examples__grid,
  .asset-utilization-maintenance-examples__grid {
    margin-left: 0;
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
  }
  .asset-utilization-reform-examples__item,
  .asset-utilization-maintenance-examples__item {
    max-width: none;
  }
}
@media (max-width: 575px) {
  .asset-utilization-reform-examples,
  .asset-utilization-maintenance-examples {
    padding: 40px 0 30px;
  }
  .asset-utilization-reform-examples__title,
  .asset-utilization-maintenance-examples__title {
    font-size: 1.25rem;
  }
  .asset-utilization-reform-examples__subtitle,
  .asset-utilization-maintenance-examples__subtitle {
    font-size: 0.75rem;
  }
  .asset-utilization-reform-examples__grid,
  .asset-utilization-maintenance-examples__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ========== Contact Page — Form ========== */
.contact-form {
  margin-top: var(--site-header-height, 100px);
  padding: 60px 0 100px;
  background: #fff;
  color: #000;
}
.contact-form__title {
  margin: 0 0 130px;
  font-size: 2.5625rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}
.contact-form__steps {
  display: flex;
  align-items: stretch;
  gap: 6px;
  max-width: 45.625rem;
  margin: 0 auto 40px;
  padding: 0;
  list-style: none;
}
.contact-form__step {
  position: relative;
  flex: 1;
  min-height: 64px;
  margin: 0;
  color: #9a9a9a;
}
.contact-form__step--active {
  color: #231815;
}
.contact-form__step-shape {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.contact-form__step-path {
  fill: #f2f2f2;
  stroke: none;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.contact-form__step--active .contact-form__step-path {
  fill: #fff;
  stroke: #000;
}
.contact-form__step-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1px 1fr;
  align-items: center;
  height: 67px;
  padding: 0 1.25rem 0 1rem;
}
.contact-form__step:first-child .contact-form__step-inner {
  padding-left: 1.25rem;
}
.contact-form__step:last-child .contact-form__step-inner {
  padding-right: 1.5rem;
}
.contact-form__step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  padding: 8px 0.75rem 8px 0;
  text-align: center;
}
.contact-form__step-word {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
.contact-form__step-num {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}
.contact-form__step-divider {
  align-self: stretch;
  width: 1px;
  margin: 10px 0;
  background: #000;
  opacity: 0.2;
}
.contact-form__step--active .contact-form__step-divider {
  opacity: 1;
}
.contact-form__step-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
}
.contact-form__form {
  max-width: 56.25rem;
  margin: 0 auto;
}
.contact-form__panel {
  margin-bottom: 0;
  padding: 58px 3.125rem 75px;
  background: #f2f2f2;
}
.contact-form__field + .contact-form__field {
  margin-top: 69px;
}
.contact-form__label-row {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 15px;
}
.contact-form__label-row p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
  width: 100%;
}
.contact-form__label {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.contact-form__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 22px;
  padding: 2px 0.75rem 3px;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
}
.contact-form__badge--required {
  font-size: 1rem;
  background: #ad0028;
}
.contact-form__badge--optional {
  font-size: 1rem;
  background: #729fc7;
}
.contact-form__radio-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem 2.5rem;
  margin: 0;
  padding: 0;
  border: 0;
}
.contact-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  margin: 0;
  cursor: pointer;
}
.contact-form__radio input {
  flex: 0 0 auto;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  accent-color: #231815;
}
.contact-form__radio-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.contact-form__input, .contact-form__textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 12px 1rem;
  border: 1px solid #d5d5d5;
  border-radius: 0;
  background: #fff;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #231815;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: #b8b8b8;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: 2px solid #4fb0ef;
  outline-offset: 0;
}
.contact-form__textarea {
  min-height: 200px;
  resize: vertical;
}
.contact-form__note {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #000;
}
.contact-form__privacy {
  max-width: 43.75rem;
  margin: 48px auto 85px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
.contact-form__privacy-link {
  color: #0051b1;
  text-decoration: underline;
  background-color: transparent;
}
.contact-form__privacy-link:hover {
  opacity: 0.8;
}
.contact-form__agree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin: 0 0 55px;
  cursor: pointer;
}
.contact-form__agree-input {
  flex: 0 0 auto;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  accent-color: #231815;
}
.contact-form__agree-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.contact-form__submit-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.contact-form__submit-wrap > p {
  position: relative;
  flex: 0 1 17.5rem;
  width: 100%;
  max-width: 17.5rem;
  margin: 0;
}
.contact-form__submit-wrap > p:has(.wpcf7-submit)::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  z-index: 2;
}
.contact-form__submit {
  position: relative;
  display: block;
  width: 100%;
  max-width: 17.5rem;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 1.125rem 2.5rem 1.125rem 3.25rem;
  border: none;
  background: #000;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form__submit::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  z-index: 2;
}
.contact-form__submit:hover {
  opacity: 0.85;
}
.contact-form__submit--secondary {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}
.contact-form__submit--secondary::before {
  border-color: #000;
  transform: translateY(-50%) rotate(-135deg);
}
.contact-form__submit--link {
  display: block;
  text-decoration: none;
}
.contact-form__submit--link.contact-form__submit--secondary {
  display: block;
  width: 100%;
  max-width: none;
  text-align: center;
}
.contact-form__body {
  max-width: 56.25rem;
  margin: 0 auto;
}
.contact-form__stage[hidden] {
  display: none !important;
}
.contact-form__notice {
  margin: 0;
  padding: 1.5rem;
  background: #f2f2f2;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.contact-form__confirm-list {
  margin: 0 0 3rem;
}
.contact-form__confirm-field + .contact-form__confirm-field {
  margin-top: 69px;
}
.contact-form__confirm-field .contact-form__badge {
  display: none;
}
.contact-form__confirm-value {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 12px 1rem;
  border: none;
  border-radius: 0;
  background: #fff;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #231815;
  white-space: pre-wrap;
  word-break: break-word;
}
.contact-form__confirm-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 36.25rem;
  margin: 0 auto;
}
.contact-form__result {
  margin: 0 0 3rem;
}
.contact-form__result--success .contact-form__result-message {
  color: #0f5132;
  background-color: #d1e7dd;
  border: 1px solid #badbcc;
}
.contact-form__result--error .contact-form__result-message {
  color: #842029;
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
}
.contact-form__result-message {
  margin: 0;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.contact-form__complete-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 17.5rem;
  margin: 0 auto;
}
.contact-form__agree-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin: 0 0 55px;
}
.contact-form__agree-wrap p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
}
.contact-form .wpcf7 {
  max-width: none;
  margin: 0;
}
.contact-form .wpcf7 form {
  margin: 0;
}
.contact-form .wpcf7 p {
  margin: 0;
}
.contact-form .wpcf7 p.contact-form__note {
  margin: 0 0 12px;
}
.contact-form .wpcf7 p.contact-form__privacy {
  max-width: 43.75rem;
  margin: 48px auto 85px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
.contact-form .wpcf7 br {
  display: none;
}
.contact-form .wpcf7 .contact-form__panel .contact-form__field + .contact-form__field {
  margin-top: 69px;
}
.contact-form .wpcf7 .contact-form__field > p + p {
  margin-top: 0;
}
.contact-form .wpcf7 .contact-form__field .contact-form__note + p {
  margin-top: 0;
}
.contact-form .wpcf7 .wpcf7-form-control-wrap {
  display: block;
}
.contact-form .wpcf7 .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: #e83428;
}
.contact-form .wpcf7 .wpcf7-response-output {
  display: none !important;
}
.contact-form .wpcf7 .wpcf7-spinner {
  display: none;
}
.contact-form .wpcf7 .wpcf7-radio,
.contact-form .wpcf7 .contact-form__radio-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem 2.5rem;
  margin: 0;
  padding: 0;
  border: 0;
}
.contact-form .wpcf7 .wpcf7-list-item {
  margin: 0;
}
.contact-form .wpcf7 .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  margin: 0;
  cursor: pointer;
}
.contact-form .wpcf7 .wpcf7-list-item input[type=radio] {
  flex: 0 0 auto;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  accent-color: #231815;
}
.contact-form .wpcf7 .wpcf7-list-item-label {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.contact-form .wpcf7 .wpcf7-acceptance {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.contact-form .wpcf7 .wpcf7-acceptance label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0;
  cursor: pointer;
}
.contact-form .wpcf7 .wpcf7-acceptance input[type=checkbox] {
  flex: 0 0 auto;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  accent-color: #231815;
}
.contact-form .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.contact-form .wpcf7 input.wpcf7-submit.contact-form__submit {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 17.5rem;
  margin: 0 auto;
}
.contact-form .wpcf7 input.wpcf7-submit.contact-form__submit::before {
  display: none;
}
@media (max-width: 767px) {
  .contact-form {
    padding: 48px 0 80px;
  }
  .contact-form__title {
    margin-bottom: 28px;
    font-size: 1.625rem;
  }
  .contact-form__steps {
    margin-bottom: 32px;
  }
  .contact-form__step {
    min-height: 56px;
  }
  .contact-form__step-inner {
    min-height: 56px;
    padding: 0 0.875rem 0 0.75rem;
  }
  .contact-form__step:first-child .contact-form__step-inner {
    padding-left: 0.875rem;
  }
  .contact-form__step:last-child .contact-form__step-inner {
    padding-right: 1rem;
  }
  .contact-form__step-num-wrap {
    min-width: 3rem;
    padding: 6px 0.5rem;
  }
  .contact-form__step-word {
    font-size: 0.625rem;
  }
  .contact-form__step-num {
    font-size: 1.5rem;
  }
  .contact-form__step-text {
    font-size: 1.125rem;
  }
  .contact-form__panel {
    padding: 32px 1.5rem 36px;
  }
  .contact-form__field + .contact-form__field {
    margin-top: 24px;
  }
  .contact-form .wpcf7 .contact-form__panel .contact-form__field + .contact-form__field {
    margin-top: 24px;
  }
  .contact-form__confirm-field + .contact-form__confirm-field {
    margin-top: 24px;
  }
  .contact-form__radio-group,
  .contact-form .wpcf7 .wpcf7-radio,
  .contact-form .wpcf7 .contact-form__radio-group {
    gap: 0.625rem 1.5rem;
  }
  .contact-form__radio-text,
  .contact-form .wpcf7 .wpcf7-list-item-label {
    font-size: 0.875rem;
  }
  .contact-form__privacy {
    font-size: 0.8125rem;
    text-align: left;
  }
  .contact-form .wpcf7 p.contact-form__privacy {
    font-size: 0.8125rem;
    text-align: left;
  }
  .contact-form__submit {
    padding: 0.875rem 1.75rem 0.875rem 2.5rem;
    font-size: 1rem;
  }
  .contact-form__submit::before {
    left: 1.125rem;
    width: 0.5rem;
    height: 0.5rem;
  }
  .contact-form__submit-wrap > p:has(.wpcf7-submit)::before {
    left: 1.125rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media (max-width: 575px) {
  .contact-form {
    padding: 40px 0 64px;
  }
  .contact-form__title {
    font-size: 1.375rem;
  }
  .contact-form__step {
    min-height: 48px;
  }
  .contact-form__step-inner {
    min-height: 48px;
    padding: 0 0.625rem 0 0.5rem;
  }
  .contact-form__step:first-child .contact-form__step-inner {
    padding-left: 0.625rem;
  }
  .contact-form__step:last-child .contact-form__step-inner {
    padding-right: 0.75rem;
  }
  .contact-form__step-num-wrap {
    min-width: 2.5rem;
    padding: 4px 0.375rem;
  }
  .contact-form__step-word {
    font-size: 0.5625rem;
  }
  .contact-form__step-num {
    font-size: 1.25rem;
  }
  .contact-form__step-divider {
    margin: 6px 0;
  }
  .contact-form__step-text {
    font-size: 0.875rem;
    letter-spacing: 0.06em;
  }
  .contact-form__panel {
    padding: 24px 1rem 28px;
  }
  .contact-form__label {
    font-size: 0.875rem;
  }
  .contact-form__radio-group,
  .contact-form .wpcf7 .wpcf7-radio,
  .contact-form .wpcf7 .contact-form__radio-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
  .contact-form__input, .contact-form__textarea {
    font-size: 0.875rem;
  }
  .contact-form__textarea {
    min-height: 160px;
  }
  .contact-form__agree, .contact-form__agree-wrap {
    justify-content: flex-start;
  }
  .contact-form__agree p, .contact-form__agree-wrap p {
    justify-content: flex-start;
  }
  .contact-form__confirm-field + .contact-form__confirm-field {
    margin-top: 24px;
  }
  .contact-form__confirm-actions {
    grid-template-columns: 1fr;
  }
  .contact-form__submit {
    padding: 0.75rem 1.5rem 0.75rem 2.25rem;
    font-size: 0.875rem;
  }
  .contact-form__submit::before {
    left: 0.875rem;
    width: 0.4375rem;
    height: 0.4375rem;
  }
  .contact-form__submit-wrap > p:has(.wpcf7-submit)::before {
    left: 0.875rem;
    width: 0.4375rem;
    height: 0.4375rem;
  }
  .contact-form .wpcf7 .contact-form__panel .contact-form__field + .contact-form__field {
    margin-top: 24px;
  }
  .contact-form .wpcf7 .wpcf7-list-item-label {
    font-size: 0.875rem;
  }
}

/* ========== Works List Page（施工事例一覧） ========== */
.page-works .works-list,
.page-work .works-list {
  margin-top: var(--site-header-height, 100px);
  padding: 48px 0 120px;
  background: #fff;
  overflow-x: clip;
}
.page-works .works-list > .container,
.page-work .works-list > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
  margin-top: 10px;
}
.page-works .works-list__breadcrumb,
.page-work .works-list__breadcrumb {
  margin: 0 0 85px;
  padding: 0;
}
.page-works .works-list__breadcrumb-list,
.page-work .works-list__breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1;
  color: #000;
}
.page-works .works-list__breadcrumb-item,
.page-work .works-list__breadcrumb-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}
.page-works .works-list__breadcrumb-home,
.page-work .works-list__breadcrumb-home {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 4px;
  border: none;
  background: transparent;
  text-decoration: none;
}
.page-works .works-list__breadcrumb-home img,
.page-work .works-list__breadcrumb-home img {
  display: block;
  width: 1.125rem;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(32%) sepia(5%) saturate(626%) hue-rotate(314deg) brightness(96%) contrast(88%);
}
.page-works .works-list__breadcrumb-home:hover,
.page-work .works-list__breadcrumb-home:hover {
  opacity: 0.7;
}
.page-works .works-list__breadcrumb-current,
.page-work .works-list__breadcrumb-current {
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.page-works .works-list__head,
.page-work .works-list__head {
  display: flex;
  align-items: stretch;
  gap: 1.75rem;
  margin-bottom: 48px;
}
.page-works .works-list__bar,
.page-work .works-list__bar {
  flex: 0 0 4px;
  background: #000;
}
.page-works .works-list__title-wrap,
.page-work .works-list__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 10px 0;
}
.page-works .works-list__title,
.page-work .works-list__title {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #000;
}
.page-works .works-list__subtitle,
.page-work .works-list__subtitle {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #939393;
}
.page-works .works-list__grid,
.page-work .works-list__grid {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 50px 1.125rem;
  max-width: 63.75rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-works .works-list__grid,
  .page-work .works-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .page-works .works-list__grid,
  .page-work .works-list__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .page-works .works-list__grid,
  .page-work .works-list__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.page-works .works-list__grid > [class*=col-],
.page-work .works-list__grid > [class*=col-] {
  width: auto;
  max-width: none;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}
.page-works .works-list__col--hidden,
.page-work .works-list__col--hidden {
  display: none;
}
.page-works .works-list__more-wrap,
.page-work .works-list__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .page-works .works-list__more-wrap,
  .page-work .works-list__more-wrap {
    margin-top: 40px;
  }
}
.page-works .works-list__more-btn,
.page-work .works-list__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 16.25rem;
  height: 3.8125rem;
  padding: 0.875rem 2rem;
  border: 1px solid #bebebe;
  background: #fff;
  color: #545252;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.page-works .works-list__more-btn:hover,
.page-work .works-list__more-btn:hover {
  opacity: 0.85;
}
.page-works .works-list__more-icon,
.page-work .works-list__more-icon {
  display: block;
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.125rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}
@media (max-width: 991px) {
  .page-works .works-list__title,
  .page-work .works-list__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .page-works .works-list,
  .page-work .works-list {
    padding: 32px 0 80px;
  }
  .page-works .works-list__breadcrumb,
  .page-work .works-list__breadcrumb {
    margin-bottom: 32px;
  }
  .page-works .works-list__breadcrumb-list,
  .page-work .works-list__breadcrumb-list {
    font-size: 0.75rem;
  }
  .page-works .works-list__head,
  .page-work .works-list__head {
    width: 100%;
    margin-bottom: 40px;
  }
  .page-works .works-list__title,
  .page-work .works-list__title {
    font-size: 1.375rem;
  }
}
@media (max-width: 575px) {
  .page-works .works-list__title,
  .page-work .works-list__title {
    font-size: 1.25rem;
  }
  .page-works .works-list__subtitle,
  .page-work .works-list__subtitle {
    font-size: 0.75rem;
  }
}

/* ========== Work Page（施工事例詳細） ========== */
.work-page {
  margin-top: var(--site-header-height, 100px);
  padding: 48px 0 120px;
  background: #fff;
  overflow-x: clip;
}
.work-page > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
}
.work-page__breadcrumb {
  margin: 0 0 40px;
  padding: 0;
}
.work-page__breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  line-height: 1;
  color: #545252;
}
.work-page__breadcrumb-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}
.work-page__breadcrumb-home {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 4px;
  border: none;
  background: transparent;
  text-decoration: none;
}
.work-page__breadcrumb-home img {
  display: block;
  width: 1.125rem;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(32%) sepia(5%) saturate(626%) hue-rotate(314deg) brightness(96%) contrast(88%);
}
.work-page__breadcrumb-home:hover {
  opacity: 0.7;
}
.work-page__breadcrumb-link {
  color: #545252;
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.work-page__breadcrumb-link:hover {
  opacity: 0.7;
}
.work-page__breadcrumb-current {
  letter-spacing: 0.05em;
}
.work-page__head-section > .container {
  padding: 0;
}
.work-page__head {
  display: flex;
  align-items: stretch;
  gap: 1.75rem;
  margin: 0;
}
.work-page__label {
  flex: 0 0 auto;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 6.25rem;
  min-height: 6.25rem;
  margin: 0;
  padding: 16px 2.5rem;
  background: #303030;
  color: #fff;
  font-size: 2.0625rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
}
.work-page__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  min-width: 0;
  margin-bottom: 45px;
}
.work-page__tag {
  display: inline-block;
  margin: 0;
  padding: 0 0.9375rem;
  border: 1px solid #231815;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #231815;
  background: #fff;
}
.work-page__title {
  margin: 0;
  font-size: 2.0625rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #1e1e1e;
}
.work-page__hero {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  width: 100%;
  margin-bottom: 100px;
}
.work-page__hero .container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  min-height: 614px;
}
.work-page__hero .container::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  left: calc(50% - 50vw);
  background: url("../images/work_page/work_page_top.png") no-repeat center/cover;
  z-index: 0;
}
.work-page__hero .container--has-mv::before {
  background-image: var(--work-page-mv);
}
.work-page__hero .text-container {
  position: relative;
  z-index: 1;
  flex: 0 0 40%;
  align-self: flex-end;
  width: 40%;
  max-width: 40%;
  height: 514px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: visible;
  color: #fff;
}
.work-page__hero .image-container {
  position: relative;
  z-index: 1;
  flex: 0 0 60%;
  min-width: 0;
  align-self: stretch;
}
.work-page__hero-text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  align-self: stretch;
  width: 100%;
  margin-left: 0;
}
.work-page__hero-text::before {
  content: "";
  position: absolute;
  top: 0;
  right: 5vw;
  bottom: 0;
  left: calc(50% - 50vw);
  background: rgba(20, 15, 5, 0.8);
  z-index: -1;
}
.work-page__hero-text p {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 20.1875rem;
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.18em;
}
.work-page__gallery {
  margin-bottom: 145px;
}
.work-page__gallery > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
}
.work-page__gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5625rem;
}
.work-page__gallery-item {
  margin: 0;
  min-width: 0;
}
.work-page__gallery-trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}
.work-page__gallery-trigger:hover {
  opacity: 0.85;
}
.work-page__gallery-img {
  display: block;
  width: 100%;
  height: auto;
}
.work-page__lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.88);
  cursor: zoom-out;
}
.work-page__lightbox[hidden] {
  display: none;
}
.work-page__lightbox-img {
  display: block;
  flex: 1 1 auto;
  max-width: calc(100% - 7.5rem);
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}
.work-page__lightbox-btn {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(120, 120, 120, 0.55);
  cursor: pointer;
  transition: background 0.2s;
}
.work-page__lightbox-btn:hover {
  background: rgba(90, 90, 90, 0.7);
}
.work-page__lightbox-btn-icon {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.work-page__lightbox-btn--prev .work-page__lightbox-btn-icon {
  margin-right: -0.25rem;
  transform: rotate(-135deg);
}
.work-page__lightbox-btn--next .work-page__lightbox-btn-icon {
  margin-left: -0.25rem;
}
.work-page__movie {
  margin-bottom: 48px;
}
.work-page__movie > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
}
.work-page__movie-inner {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
.work-page__movie-head {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  gap: 1.75rem;
  min-width: 10rem;
}
.work-page__movie-bar {
  flex: 0 0 4px;
  background: #231815;
}
.work-page__movie-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}
.work-page__movie-title {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #000;
  white-space: nowrap;
}
.work-page__movie-subtitle {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #939393;
}
.work-page__movie-grid {
  flex: 0 1 auto;
  width: 100%;
  max-width: 55.625rem;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5.1875rem;
}
.work-page__movie-item {
  margin: 0;
  min-width: 0;
}
.work-page__movie-img {
  display: block;
  width: 100%;
  height: 390px;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.work-page__movie-trigger {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.work-page__movie-trigger:hover {
  opacity: 0.85;
}
.work-page__movie-trigger .work-page__movie-img {
  pointer-events: none;
}
.work-page__movie-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.work-page__movie-play::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.125rem 0 1.125rem 1.75rem;
  border-color: transparent transparent transparent #fff;
  margin-left: 0.25rem;
}
.work-page__movie-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.88);
}
.work-page__movie-lightbox[hidden] {
  display: none;
}
.work-page__movie-lightbox-video {
  display: block;
  flex: 1 1 auto;
  max-width: calc(100% - 7.5rem);
  max-height: 100%;
  width: auto;
  height: auto;
}
.work-page__movie-caption {
  margin: 0.875rem 0 0;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  color: #303030;
}
.work-page__movie-rule {
  margin: 1rem 0 0;
  border: 0;
  border-top: 1px dotted #b8b4b3;
  opacity: 1;
}
.work-page__overview, .work-page__comment {
  margin-bottom: 48px;
}
.work-page__overview > .container, .work-page__comment > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
}
.work-page__overview-inner, .work-page__comment-inner {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
.work-page__overview-head, .work-page__comment-head {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  gap: 1.75rem;
  min-width: 10rem;
  padding-top: 0.75rem;
}
.work-page__overview-bar, .work-page__comment-bar {
  flex: 0 0 4px;
  background: #231815;
}
.work-page__overview-title-wrap, .work-page__comment-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}
.work-page__overview-title, .work-page__comment-title {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #000;
  white-space: nowrap;
}
.work-page__overview-subtitle, .work-page__comment-subtitle {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #939393;
}
.work-page__overview-content, .work-page__comment-content {
  flex: 1;
  min-width: 0;
}
.work-page__comment-body {
  width: 100%;
  max-width: 55.625rem;
  margin: 0 0 0 auto;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #000;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.work-page__comment-body > :first-child {
  margin-top: 0;
}
.work-page__comment-body > :last-child {
  margin-bottom: 0;
}
.work-page__comment-body p {
  margin: 0 0 1em;
}
.work-page__comment-body a {
  color: inherit;
  text-decoration: underline;
}
.work-page__comment-body strong {
  font-weight: 700;
}
.work-page__comment-body img {
  max-width: 100%;
  height: auto;
}
.work-page__overview-list {
  width: 100%;
  max-width: 55.625rem;
  margin: 0 0 0 auto;
}
.work-page__overview-row {
  display: grid;
  grid-template-columns: 12.5rem minmax(0, 1fr);
  height: 7.5rem;
  border-top: 1px solid #000;
}
.work-page__overview-row:has(.work-page__overview-desc--stack) {
  height: auto;
  min-height: 7.5rem;
}
.work-page__overview-row:last-child {
  border-bottom: 1px solid #000;
}
.work-page__overview-term {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 20px 2.5rem 20px 0;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: #231815;
  text-align: left;
}
.work-page__overview-desc {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 20px 1.5rem 20px 5.9375rem;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #000;
}
.work-page__overview-desc::before {
  margin: 10px 0;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: repeating-linear-gradient(to bottom, #000 0, #000 0.1875rem, transparent 0.1875rem, transparent 0.4375rem);
}
.work-page__overview-note {
  margin: 130px 0 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
  color: #231815;
}
.work-page__article {
  max-width: 56.25rem;
  margin: 0 auto;
}
.work-page__back {
  margin: 48px 0 0;
  text-align: center;
}
.work-page__back-link {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #231815;
  text-decoration: none;
}
.work-page__back-link:hover {
  opacity: 0.7;
}
@media (max-width: 1399px) {
  .work-page {
    padding: 40px 0 100px;
  }
  .work-page__title {
    font-size: 1.875rem;
  }
  .work-page__hero {
    margin-bottom: 80px;
  }
  .work-page__hero .container {
    min-height: 560px;
  }
  .work-page__hero .text-container {
    height: auto;
    min-height: 460px;
  }
  .work-page__gallery {
    margin-bottom: 120px;
  }
  .work-page__overview-note {
    margin-top: 100px;
    font-size: 1.375rem;
  }
}
@media (max-width: 1244px) {
  .work-page__title {
    font-size: 1.75rem;
    line-height: 1.35;
  }
  .work-page__hero .container {
    min-height: 0;
  }
  .work-page__hero .text-container {
    flex: 0 0 45%;
    width: 45%;
    max-width: 45%;
    height: auto;
    min-height: 420px;
    justify-content: center;
  }
  .work-page__hero .image-container {
    flex: 0 0 55%;
  }
  .work-page__hero-text {
    justify-content: center;
  }
  .work-page__hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .work-page__movie-grid {
    gap: 3.125rem;
  }
}
@media (max-width: 991px) {
  .work-page__label {
    min-width: 5.5rem;
    min-height: 5.5rem;
    padding: 32px 2rem;
    font-size: 1.75rem;
  }
  .work-page__title {
    font-size: 1.375rem;
    line-height: 1.35;
  }
  .work-page__title-wrap {
    margin-bottom: 32px;
  }
  .work-page__hero {
    margin-bottom: 70px;
  }
  .work-page__hero .container {
    min-height: 0;
  }
  .work-page__hero .text-container {
    flex: 0 0 48%;
    width: 48%;
    max-width: 48%;
    min-height: 380px;
  }
  .work-page__hero .image-container {
    flex: 0 0 52%;
  }
  .work-page__hero-text p {
    max-width: 17.5rem;
    font-size: 0.875rem;
  }
  .work-page__gallery-grid {
    gap: 1.125rem;
  }
  .work-page__movie-grid {
    max-width: 100%;
    gap: 2rem;
  }
  .work-page__movie-img {
    height: 320px;
  }
  .work-page__overview-inner, .work-page__comment-inner {
    gap: 2rem;
  }
  .work-page__overview-list {
    margin-left: 0;
    max-width: none;
  }
  .work-page__comment-body {
    margin-left: 0;
    max-width: none;
  }
  .work-page__overview-term, .work-page__overview-desc {
    font-size: 1.125rem;
  }
  .work-page__overview-note {
    margin-top: 80px;
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .work-page {
    padding: 32px 0 80px;
  }
  .work-page__breadcrumb {
    margin-bottom: 32px;
  }
  .work-page__breadcrumb-list {
    flex-wrap: wrap;
    font-size: 0.75rem;
  }
  .work-page__breadcrumb-current {
    white-space: normal;
  }
  .work-page__head {
    align-items: stretch;
    gap: 1rem;
    padding-left: 0;
  }
  .work-page__label {
    min-width: 5.5rem;
    min-height: 5.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }
  .work-page__title-wrap {
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 15px;
  }
  .work-page__title {
    line-height: 1.4;
  }
  .work-page__hero {
    margin-bottom: 40px;
  }
  .work-page__hero .container {
    flex-direction: column;
    min-height: 0;
  }
  .work-page__hero .text-container {
    flex: none;
    order: 2;
    align-self: auto;
    width: 100%;
    max-width: none;
    min-height: 0;
    height: auto;
    justify-content: center;
    overflow: visible;
  }
  .work-page__hero .container::before {
    left: 0;
    right: 0;
  }
  .work-page__hero .image-container {
    flex: none;
    order: 1;
    width: 100%;
    min-height: 280px;
  }
  .work-page__hero-text {
    justify-content: center;
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding: 2rem 1.5rem 1.5rem;
  }
  .work-page__hero-text::before {
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    background: #303030;
  }
  .work-page__hero-text p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9375rem;
    line-height: 1.85;
    letter-spacing: 0.08em;
  }
  .work-page__gallery {
    margin-bottom: 40px;
  }
  .work-page__gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .work-page__movie {
    margin-bottom: 40px;
  }
  .work-page__movie-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .work-page__movie-head {
    min-width: 0;
  }
  .work-page__movie-title {
    font-size: 1.375rem;
    white-space: normal;
  }
  .work-page__movie-grid {
    margin-left: 0;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .work-page__movie-img {
    height: auto;
    aspect-ratio: 3/4;
  }
  .work-page__overview, .work-page__comment {
    margin-bottom: 40px;
  }
  .work-page__overview > .container, .work-page__comment > .container {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .work-page__overview-inner, .work-page__comment-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .work-page__overview-head, .work-page__comment-head {
    align-self: flex-start;
    padding-top: 0;
    min-width: 0;
  }
  .work-page__overview-title, .work-page__comment-title {
    font-size: 1.375rem;
    white-space: normal;
  }
  .work-page__overview-content, .work-page__comment-content {
    width: 100%;
  }
  .work-page__comment-body {
    max-width: none;
    margin: 0 auto;
    font-size: 1rem;
  }
  .work-page__overview-list {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
  .work-page__overview-row {
    grid-template-columns: 7rem minmax(0, 1fr);
    height: auto;
    min-height: 6.25rem;
  }
  .work-page__overview-term {
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
    text-align: center;
  }
  .work-page__overview-desc {
    padding: 0.75rem 0.625rem;
    font-size: 1rem;
    text-align: center;
    align-items: center;
  }
  .work-page__overview-desc--stack {
    align-items: center;
  }
  .work-page__overview-note {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    text-align: center;
  }
  .work-page__overview-note br {
    display: none;
  }
  .work-page__back {
    margin-top: 40px;
  }
  .work-page__lightbox {
    padding: 1rem;
  }
  .work-page__movie-lightbox {
    gap: 0.75rem;
    padding: 1rem;
  }
  .work-page__movie-lightbox-video {
    max-width: calc(100% - 5.5rem);
  }
}
@media (max-width: 575px) {
  .work-page {
    padding: 24px 0 64px;
  }
  .work-page__breadcrumb {
    margin-bottom: 24px;
  }
  .work-page__label {
    padding: 0.875rem 1.125rem;
    font-size: 0.875rem;
  }
  .work-page__title {
    font-size: 1.25rem;
    line-height: 1.45;
  }
  .work-page__hero {
    margin-bottom: 32px;
  }
  .work-page__hero .image-container {
    min-height: 220px;
  }
  .work-page__hero-text {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .work-page__hero-text p {
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .work-page__gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.625rem;
  }
  .work-page__movie-inner {
    gap: 1.5rem;
  }
  .work-page__movie-title {
    font-size: 1.125rem;
  }
  .work-page__movie-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .work-page__movie-caption {
    font-size: 1rem;
  }
  .work-page__overview-title, .work-page__comment-title {
    font-size: 1.125rem;
  }
  .work-page__comment-body {
    font-size: 0.9375rem;
  }
  .work-page__overview-row {
    grid-template-columns: 6.25rem minmax(0, 1fr);
    min-height: 5.625rem;
  }
  .work-page__overview-term {
    padding: 0.625rem 0.375rem;
    font-size: 0.9375rem;
  }
  .work-page__overview-desc {
    padding: 0.625rem 0.5rem;
    font-size: 0.9375rem;
  }
  .work-page__overview-note {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.75;
  }
  .work-page__back {
    margin-top: 32px;
  }
  .work-page__back-link {
    font-size: 0.875rem;
  }
  .work-page__lightbox {
    gap: 0.75rem;
    padding: 1rem;
  }
  .work-page__lightbox-img {
    max-width: calc(100% - 5.5rem);
  }
  .work-page__lightbox-btn {
    width: 2.25rem;
    height: 2.25rem;
  }
}
@media (max-width: 399px) {
  .work-page__title {
    font-size: 1.125rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
  .work-page__hero .container::before {
    background-position: 70% center;
  }
  .work-page__hero .text-container {
    margin-top: 100px;
  }
}

/* ========== Property List Page（物件情報一覧） ========== */
.page-property-list .property-list {
  margin-top: var(--site-header-height, 100px);
  padding: 48px 0 120px;
  background: #fff;
  overflow-x: clip;
}
.page-property-list .property-list > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
  margin-top: 10px;
}
.page-property-list .property-list__breadcrumb {
  margin: 0 0 85px;
  padding: 0;
}
.page-property-list .property-list__breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1;
  color: #000;
}
.page-property-list .property-list__breadcrumb-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}
.page-property-list .property-list__breadcrumb-home {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 4px;
  border: none;
  background: transparent;
  text-decoration: none;
}
.page-property-list .property-list__breadcrumb-home img {
  display: block;
  width: 1.125rem;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(32%) sepia(5%) saturate(626%) hue-rotate(314deg) brightness(96%) contrast(88%);
}
.page-property-list .property-list__breadcrumb-home:hover {
  opacity: 0.7;
}
.page-property-list .property-list__breadcrumb-current {
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.page-property-list .property-list__head {
  display: flex;
  align-items: stretch;
  gap: 1.75rem;
  margin-bottom: 48px;
}
.page-property-list .property-list__bar {
  flex: 0 0 4px;
  background: #231815;
}
.page-property-list .property-list__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}
.page-property-list .property-list__title {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #000;
}
.page-property-list .property-list__subtitle {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #c9caca;
}
.page-property-list .property-list__grid {
  margin-bottom: 0;
}
.page-property-list .property-list .property__card {
  height: auto;
}
.page-property-list .property-list .property__body {
  height: auto;
  overflow: visible;
}
.page-property-list .property-list .property__title {
  display: block;
  overflow: hidden;
  -webkit-line-clamp: unset;
}
.page-property-list .property-list__intro {
  margin: 0;
  overflow: hidden;
  font-size: 0.875rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #000;
  word-break: break-word;
}
.page-property-list .property-list__col--hidden {
  display: none;
}
.page-property-list .property-list__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .page-property-list .property-list__more-wrap {
    margin-top: 40px;
  }
}
.page-property-list .property-list__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 16.25rem;
  height: 3.8125rem;
  padding: 0.875rem 2rem;
  border: 1px solid #bebebe;
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.page-property-list .property-list__more-btn:hover {
  opacity: 0.85;
}
.page-property-list .property-list__more-icon {
  display: block;
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.125rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}
@media (max-width: 991px) {
  .page-property-list .property-list__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .page-property-list .property-list {
    padding: 32px 0 80px;
  }
  .page-property-list .property-list__breadcrumb {
    margin-bottom: 32px;
  }
  .page-property-list .property-list__breadcrumb-list {
    font-size: 0.75rem;
  }
  .page-property-list .property-list__head {
    width: 100%;
    margin-bottom: 40px;
  }
  .page-property-list .property-list__title {
    font-size: 1.375rem;
  }
}
@media (max-width: 575px) {
  .page-property-list .property-list__title {
    font-size: 1.25rem;
  }
  .page-property-list .property-list__subtitle {
    font-size: 0.75rem;
  }
}

.property-page {
  margin-top: var(--site-header-height, 100px);
  padding: 48px 0 120px;
  background: #fff;
  overflow-x: clip;
}
.property-page > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
  margin-top: 10px;
}
.property-page__breadcrumb {
  margin: 0 0 40px;
  padding: 0;
}
.property-page__breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  line-height: 1;
  color: #545252;
}
.property-page__breadcrumb-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}
.property-page__breadcrumb-home {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 4px;
  border: none;
  background: transparent;
  text-decoration: none;
}
.property-page__breadcrumb-home img {
  display: block;
  width: 1.125rem;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(32%) sepia(5%) saturate(626%) hue-rotate(314deg) brightness(96%) contrast(88%);
}
.property-page__breadcrumb-home:hover {
  opacity: 0.7;
}
.property-page__breadcrumb-link {
  color: #545252;
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.property-page__breadcrumb-link:hover {
  opacity: 0.7;
}
.property-page__breadcrumb-current {
  letter-spacing: 0.05em;
}
.property-page__head-section {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .property-page__head-section > .container {
    padding: 0;
  }
}
.property-page__head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0 0 0;
  padding-bottom: calc(65px + 6.5rem);
}
.property-page__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  min-width: 0;
}
.property-page__tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.property-page__tag {
  display: inline-block;
  padding: 0 0.9375rem;
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
  border: 1px solid #303030;
  color: #303030;
  background: #fff;
  line-height: 1.6;
}
.property-page__tag--new {
  border-color: #912831;
  color: #912831;
}
.property-page__title {
  margin: 20px 0 0;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #000;
}
.property-page__label {
  position: absolute;
  z-index: 1;
  left: 4vw;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 16.125rem;
  height: 6.5rem;
  margin: 0;
  padding: 0;
  background: #433f37;
  color: #fff;
  font-size: 1.9375rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-align: center;
}
.property-page__hero {
  position: relative;
  z-index: 1;
  margin-top: -67px;
  margin-bottom: 60px;
  overflow-x: clip;
}
.property-page__hero .container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0;
  width: 100%;
  max-width: 75rem;
  min-width: 0;
  min-height: 37.5rem;
  padding: 0 0 5rem;
}
.property-page__hero .text-container {
  position: absolute;
  left: 50%;
  bottom: 5rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 51.25rem;
  transform: translateX(-50%);
  pointer-events: none;
}
.property-page__hero .image-container {
  position: relative;
  z-index: 1;
  flex: 0 0 56.25rem;
  width: 56.25rem;
  max-width: 56.25rem;
  min-width: 0;
  align-self: stretch;
}
.property-page__hero .image-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56.25rem;
  background: url("../images/index/property_1.jpg") no-repeat center/cover;
}
.property-page__hero .image-container--has-mv::before {
  background-image: var(--property-page-mv);
}
.property-page__hero-text {
  position: relative;
  margin: 0;
  padding: 25px 1.875rem 60px;
  transform: translateY(50%);
  pointer-events: auto;
}
.property-page__hero-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(67, 63, 55, 0.82);
  z-index: -1;
}
.property-page__hero-text p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #fff;
  word-break: break-word;
}
.property-page__movie {
  margin-bottom: 48px;
}
.property-page__movie > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
}
.property-page__movie-inner {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
.property-page__movie-head {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  gap: 1.125rem;
  min-width: 10rem;
}
.property-page__movie-bar {
  flex: 0 0 4px;
  background: #231815;
}
.property-page__movie-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 10px 0;
}
.property-page__movie-title {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.12em;
  color: #000;
  white-space: nowrap;
}
.property-page__movie-subtitle {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #c9caca;
}
.property-page__movie-grid {
  flex: 0 1 auto;
  width: 100%;
  max-width: 55.625rem;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5.1875rem;
}
.property-page__movie-item {
  margin: 0;
  min-width: 0;
}
.property-page__movie-img {
  display: block;
  width: 100%;
  height: 390px;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.property-page__movie-trigger {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.property-page__movie-trigger:hover {
  opacity: 0.85;
}
.property-page__movie-trigger .property-page__movie-img {
  pointer-events: none;
}
.property-page__movie-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.property-page__movie-play::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.125rem 0 1.125rem 1.75rem;
  border-color: transparent transparent transparent #fff;
  margin-left: 0.25rem;
}
.property-page__movie-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.88);
}
.property-page__movie-lightbox[hidden] {
  display: none;
}
.property-page__movie-lightbox-video {
  display: block;
  flex: 1 1 auto;
  max-width: calc(100% - 7.5rem);
  max-height: 100%;
  width: auto;
  height: auto;
}
.property-page__movie-caption {
  margin: 0.875rem 0 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  color: #303030;
}
.property-page__movie-rule {
  margin: 1rem 0 0;
  border: 0;
  border-top: 1px dotted #b8b4b3;
  opacity: 1;
}
@media (max-width: 1244px) {
  .property-page__movie-grid {
    gap: 3.125rem;
  }
}
@media (max-width: 991px) {
  .property-page__head {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1.75rem;
    margin: 0;
    padding-bottom: 0;
  }
  .property-page__label {
    position: static;
    left: auto;
    bottom: auto;
    flex: 0 0 auto;
    align-self: stretch;
    width: auto;
    height: auto;
    min-width: 5.5rem;
    min-height: 5.5rem;
    padding: 32px 2rem;
    background: #303030;
    font-size: 1.75rem;
  }
  .property-page__title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.75rem;
    min-width: 0;
    margin-bottom: 32px;
  }
  .property-page__tag {
    margin: 0;
    padding: 0 0.5rem;
    border: 1px solid #231815;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: #231815;
  }
  .property-page__tag--new {
    border-color: #c8162b;
    color: #c8162b;
  }
  .property-page__title {
    margin: 0;
    font-size: 1.375rem;
    line-height: 1.35;
  }
  .property-page__hero {
    margin-top: 0;
    margin-bottom: 3.125rem;
  }
  .property-page__hero .container {
    min-height: 0;
    padding-bottom: 3.75rem;
  }
  .property-page__hero .text-container {
    max-width: 90%;
  }
  .property-page__hero .image-container {
    flex: none;
    width: 100%;
    min-height: 25rem;
    max-width: none;
  }
  .property-page__hero .image-container::before {
    left: 0;
    width: 100%;
  }
  .property-page__hero-text {
    padding: 1.5rem 1.25rem 2.5rem;
  }
  .property-page__slider {
    margin-bottom: 5rem;
  }
  .property-page__slider-controls {
    margin-bottom: 2rem;
  }
  .property-page__movie-grid {
    max-width: 100%;
    gap: 2rem;
  }
  .property-page__movie-img {
    height: 320px;
  }
  .property-page__overview-inner, .property-page__comment-inner {
    gap: 2rem;
  }
  .property-page__overview-list {
    margin-left: 0;
    max-width: none;
  }
  .property-page__comment-body {
    margin-left: 0;
    max-width: none;
  }
  .property-page__overview-row {
    grid-template-columns: 10rem minmax(0, 1fr);
  }
  .property-page__overview-term, .property-page__overview-desc {
    font-size: 1.125rem;
  }
  .property-page__overview-desc {
    padding-left: 3rem;
  }
  .property-page__overview-note {
    margin-top: 80px;
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .property-page {
    padding: 32px 0 80px;
  }
  .property-page__breadcrumb {
    margin-bottom: 32px;
  }
  .property-page__breadcrumb-list {
    flex-wrap: wrap;
    font-size: 0.75rem;
  }
  .property-page__breadcrumb-current {
    white-space: normal;
    word-break: break-word;
  }
  .property-page__head {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
    margin: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
  .property-page__label {
    position: static;
    left: auto;
    bottom: auto;
    flex: 0 0 auto;
    align-self: stretch;
    width: auto;
    height: auto;
    min-width: 5.5rem;
    min-height: 5.5rem;
    padding: 0.75rem 1.25rem;
    background: #303030;
    font-size: 1rem;
  }
  .property-page__title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    min-width: 0;
    margin-bottom: 15px;
  }
  .property-page__tag {
    margin: 0;
    padding: 0 0.5rem;
    border: 1px solid #231815;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: #231815;
  }
  .property-page__tag--new {
    border-color: #c8162b;
    color: #c8162b;
  }
  .property-page__title {
    margin: 0;
    font-size: 1.375rem;
    line-height: 1.4;
    word-break: break-word;
  }
  .property-page__hero {
    margin-top: 0;
    margin-bottom: 60px;
  }
  .property-page__hero .container {
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
    padding-bottom: 0;
  }
  .property-page__hero .text-container {
    position: static;
    left: auto;
    bottom: auto;
    order: 2;
    width: 100%;
    max-width: none;
    transform: none;
    pointer-events: auto;
  }
  .property-page__hero .image-container {
    flex: none;
    order: 1;
    width: 100%;
    max-width: none;
    min-height: 17.5rem;
    aspect-ratio: 3/2;
  }
  .property-page__hero .image-container::before {
    left: 0;
    width: 100%;
  }
  .property-page__hero-text {
    width: 100%;
    max-width: none;
    padding: 1.5rem 1.25rem;
    transform: none;
  }
  .property-page__hero-text p {
    font-size: 0.875rem;
    line-height: 1.9;
  }
  .property-page__slider {
    margin-bottom: 5rem;
  }
  .property-page__slider-controls {
    margin-bottom: 2rem;
    gap: 1.5rem;
  }
  .property-page__movie {
    margin-bottom: 2.5rem;
  }
  .property-page__movie-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .property-page__movie-head {
    min-width: 0;
  }
  .property-page__movie-title {
    font-size: 1.375rem;
    white-space: normal;
  }
  .property-page__movie-grid {
    margin-left: 0;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .property-page__movie-img {
    height: auto;
    aspect-ratio: 3/4;
  }
  .property-page__overview, .property-page__comment {
    margin-bottom: 2.5rem;
  }
  .property-page__overview > .container, .property-page__comment > .container {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .property-page__overview-inner, .property-page__comment-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .property-page__overview-head, .property-page__comment-head {
    align-self: flex-start;
    padding-top: 0;
    min-width: 0;
  }
  .property-page__overview-title, .property-page__comment-title {
    font-size: 1.375rem;
    white-space: normal;
  }
  .property-page__overview-content, .property-page__comment-content {
    width: 100%;
  }
  .property-page__comment-body {
    max-width: none;
    margin: 0 auto;
    font-size: 1rem;
  }
  .property-page__overview-list {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
  .property-page__overview-row {
    grid-template-columns: 7rem minmax(0, 1fr);
    height: auto;
    min-height: 6.25rem;
  }
  .property-page__overview-term {
    min-width: 0;
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
    text-align: center;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .property-page__overview-desc {
    min-width: 0;
    padding: 0.75rem 0.625rem;
    font-size: 1rem;
    text-align: left;
    align-items: flex-start;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .property-page__overview-note {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    text-align: center;
    word-break: break-word;
  }
  .property-page__overview-note br {
    display: none;
  }
}
.property-page__slider {
  margin-bottom: 9.375rem;
}
.property-page__slider > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
  padding: 0;
}
.property-page__slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 50px;
}
.property-page__slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(120, 120, 120, 0.55);
  cursor: pointer;
  transition: background 0.2s;
}
.property-page__slider-btn:hover {
  background: rgba(90, 90, 90, 0.7);
}
.property-page__slider-btn--disabled, .property-page__slider-btn:disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.property-page__slider-btn--disabled:hover, .property-page__slider-btn:disabled:hover {
  background: rgba(120, 120, 120, 0.55);
}
.property-page__slider-btn-icon {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.property-page__slider-btn--prev .property-page__slider-btn-icon {
  margin-right: -0.25rem;
  transform: rotate(-135deg);
}
.property-page__slider-btn--next .property-page__slider-btn-icon {
  margin-left: -0.25rem;
}
.property-page__slider-viewport {
  --slider-visible: 8;
  --slider-gap: 0.75rem;
  overflow: hidden;
  width: 100%;
}
.property-page__slider-track {
  display: flex;
  gap: var(--slider-gap);
  will-change: transform;
}
.property-page__slider--centered .property-page__slider-track {
  justify-content: center;
}
.property-page__slider-slide {
  flex: 0 0 calc((100% - var(--slider-gap) * (var(--slider-visible) - 1)) / var(--slider-visible));
  min-width: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eee;
}
.property-page__slider-trigger {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}
.property-page__slider-trigger:hover {
  opacity: 0.85;
}
.property-page__slider-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.property-page__lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.88);
  cursor: zoom-out;
}
.property-page__lightbox[hidden] {
  display: none;
}
.property-page__lightbox-img {
  display: block;
  flex: 1 1 auto;
  max-width: calc(100% - 7.5rem);
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}
.property-page__lightbox-btn {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(120, 120, 120, 0.55);
  cursor: pointer;
  transition: background 0.2s;
}
.property-page__lightbox-btn:hover {
  background: rgba(90, 90, 90, 0.7);
}
.property-page__lightbox-btn-icon {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.property-page__lightbox-btn--prev .property-page__lightbox-btn-icon {
  margin-right: -0.25rem;
  transform: rotate(-135deg);
}
.property-page__lightbox-btn--next .property-page__lightbox-btn-icon {
  margin-left: -0.25rem;
}
.property-page__overview, .property-page__comment {
  margin-bottom: 48px;
}
.property-page__overview > .container, .property-page__comment > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
}
.property-page__overview-inner, .property-page__comment-inner {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
.property-page__overview-head, .property-page__comment-head {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  gap: 1.75rem;
  min-width: 10rem;
  padding-top: 0.75rem;
}
.property-page__overview-bar, .property-page__comment-bar {
  flex: 0 0 4px;
  background: #231815;
}
.property-page__overview-title-wrap, .property-page__comment-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}
.property-page__overview-title, .property-page__comment-title {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #000;
  white-space: nowrap;
}
.property-page__overview-subtitle, .property-page__comment-subtitle {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #c9caca;
}
.property-page__overview-content, .property-page__comment-content {
  flex: 1;
  min-width: 0;
}
.property-page__comment-body {
  width: 100%;
  max-width: 55.625rem;
  margin: 0 0 0 auto;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #000;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.property-page__comment-body > :first-child {
  margin-top: 0;
}
.property-page__comment-body > :last-child {
  margin-bottom: 0;
}
.property-page__comment-body p {
  margin: 0 0 1em;
}
.property-page__comment-body a {
  color: inherit;
  text-decoration: underline;
}
.property-page__comment-body strong {
  font-weight: 700;
}
.property-page__comment-body img {
  max-width: 100%;
  height: auto;
}
.property-page__overview-list {
  width: 100%;
  max-width: 55.625rem;
  margin: 0 0 0 auto;
}
.property-page__overview-row {
  display: grid;
  grid-template-columns: 12.5rem minmax(0, 1fr);
  height: auto;
  min-height: 7.5rem;
  border-top: 1px solid #000;
}
.property-page__overview-row:last-child {
  border-bottom: 1px solid #000;
}
.property-page__overview-term {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  margin: 0;
  padding: 20px 2.5rem 20px 0;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: #000;
  text-align: left;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.property-page__overview-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  margin: 0;
  padding: 20px 1.5rem 20px 5.9375rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #000;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.property-page__overview-note {
  margin: 130px 0 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
  color: #231815;
}
@media (max-width: 575px) {
  .property-page {
    padding: 24px 0 64px;
  }
  .property-page__breadcrumb {
    margin-bottom: 24px;
  }
  .property-page__breadcrumb-list {
    flex-wrap: wrap;
    font-size: 0.75rem;
  }
  .property-page__breadcrumb-current {
    white-space: normal;
    word-break: break-word;
  }
  .property-page__label {
    padding: 0.875rem 1.125rem;
    font-size: 0.875rem;
  }
  .property-page__tags {
    flex-wrap: wrap;
  }
  .property-page__title {
    font-size: 1.25rem;
    line-height: 1.45;
  }
  .property-page__hero {
    margin-top: 0;
    margin-bottom: 2rem;
  }
  .property-page__hero .container {
    padding-bottom: 0;
  }
  .property-page__hero .text-container {
    position: static;
    transform: none;
  }
  .property-page__hero .image-container {
    min-height: 220px;
  }
  .property-page__hero-text {
    width: 100%;
    padding: 1.5rem 1.25rem 1.25rem;
    transform: none;
  }
  .property-page__hero-text p {
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .property-page__slider {
    margin-bottom: 3rem;
  }
  .property-page__slider-controls {
    margin-bottom: 1.25rem;
    gap: 1.25rem;
  }
  .property-page__lightbox {
    gap: 0.75rem;
    padding: 1rem;
  }
  .property-page__lightbox-img {
    max-width: calc(100% - 5.5rem);
  }
  .property-page__movie-lightbox {
    gap: 0.75rem;
    padding: 1rem;
  }
  .property-page__movie-lightbox-video {
    max-width: calc(100% - 5.5rem);
  }
  .property-page__lightbox-btn {
    width: 2.25rem;
    height: 2.25rem;
  }
  .property-page__movie-inner {
    gap: 1.5rem;
  }
  .property-page__movie-title {
    font-size: 1.125rem;
  }
  .property-page__movie-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .property-page__movie-caption {
    font-size: 1rem;
  }
  .property-page__overview, .property-page__comment {
    margin-bottom: 2rem;
  }
  .property-page__overview-title, .property-page__comment-title {
    font-size: 1.125rem;
  }
  .property-page__comment-body {
    font-size: 0.9375rem;
  }
  .property-page__overview-row {
    grid-template-columns: 6.25rem minmax(0, 1fr);
    min-height: 5.625rem;
  }
  .property-page__overview-term {
    min-width: 0;
    padding: 0.625rem 0.375rem;
    font-size: 0.9375rem;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .property-page__overview-desc {
    min-width: 0;
    padding: 0.625rem 0.5rem;
    border-left: 1px dotted #b8b4b3;
    border-top: 0;
    font-size: 0.9375rem;
    text-align: left;
    align-items: flex-start;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .property-page__overview-note {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.75;
    word-break: break-word;
  }
}

/* ========== News List Page（NEWS一覧） ========== */
.page-news-list .news-list {
  margin-top: var(--site-header-height, 100px);
  padding: 30px 0 120px;
  background: #fff;
  overflow-x: clip;
}
.page-news-list .news-list > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
}
.page-news-list .news-list__breadcrumb {
  margin: 0 0 85px;
  padding: 0;
}
.page-news-list .news-list__breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1;
  color: #231815;
}
.page-news-list .news-list__breadcrumb-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}
.page-news-list .news-list__breadcrumb-home {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 4px;
  border: none;
  background: transparent;
  text-decoration: none;
}
.page-news-list .news-list__breadcrumb-home img {
  display: block;
  width: 1.125rem;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(32%) sepia(5%) saturate(626%) hue-rotate(314deg) brightness(96%) contrast(88%);
}
.page-news-list .news-list__breadcrumb-home:hover {
  opacity: 0.7;
}
.page-news-list .news-list__breadcrumb-current {
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.page-news-list .news-list__title {
  margin: 0 0 140px;
  font-size: 2.5625rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-align: center;
  color: #000;
}
.page-news-list .news-list__items {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #000;
}
.page-news-list .news-list__item {
  border-bottom: 1px solid #000;
}
.page-news-list .news-list__item--hidden, .page-news-list .news-list__item[hidden] {
  display: none;
}
.page-news-list .news-list__link {
  display: flex;
  align-items: flex-start;
  gap: 2.1875rem;
  padding: 42px 0 48px;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.page-news-list .news-list__link:hover {
  opacity: 0.85;
}
.page-news-list .news-list__thumb {
  flex: 0 0 18.75rem;
  width: 18.75rem;
  height: 9.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #bebebe;
}
.page-news-list .news-list__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news-list .news-list__thumb-img--logo {
  object-fit: contain;
  padding: 1.25rem;
}
.page-news-list .news-list__body {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 0.25rem;
}
.page-news-list .news-list__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 0.875rem;
}
.page-news-list .news-list__date {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
}
.page-news-list .news-list__badge {
  display: inline-block;
  padding: 0.0625rem 0.9375rem 0.1875rem;
  border: 1px solid #912831;
  background: #fff;
  color: #912831;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}
.page-news-list .news-list__item-title {
  margin: 0 0 0.375rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #000;
  word-break: break-word;
}
.page-news-list .news-list__excerpt {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: #000;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.page-news-list .news-list__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 5rem;
}
.page-news-list .news-list__pager-back, .page-news-list .news-list__pager-next {
  padding: 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: #231815;
  cursor: pointer;
  transition: opacity 0.2s;
}
.page-news-list .news-list__pager-back:hover:not(:disabled), .page-news-list .news-list__pager-next:hover:not(:disabled) {
  opacity: 0.7;
}
.page-news-list .news-list__pager-list {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-news-list .news-list__pager-list > li:has(> .news-list__pager-ellipsis) {
  display: flex;
  align-items: center;
  align-self: flex-end;
  height: 5rem;
}
.page-news-list .news-list__pager-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 5rem;
  height: 5rem;
  padding: 0 0.375rem;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #000;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.2s;
}
.page-news-list .news-list__pager-num:hover:not(.is-current) {
  opacity: 0.7;
}
.page-news-list .news-list__pager-num.is-current {
  background: #f0f0f0;
  cursor: default;
}
.page-news-list .news-list__pager-ellipsis {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
  transform: translateY(0.25rem);
}
@media (max-width: 991px) {
  .page-news-list .news-list__pager {
    margin-top: 3.75rem;
  }
  .page-news-list .news-list__pager-list {
    gap: 1.75rem;
  }
  .page-news-list .news-list__pager-list > li:has(> .news-list__pager-ellipsis) {
    height: 4rem;
  }
  .page-news-list .news-list__pager-num {
    min-width: 4rem;
    height: 4rem;
  }
}
@media (max-width: 767px) {
  .page-news-list .news-list {
    padding: 32px 0 80px;
  }
  .page-news-list .news-list__breadcrumb {
    margin-bottom: 32px;
  }
  .page-news-list .news-list__breadcrumb-list {
    flex-wrap: wrap;
    font-size: 0.75rem;
  }
  .page-news-list .news-list__title {
    margin-bottom: 2.5rem;
    font-size: 1.75rem;
  }
  .page-news-list .news-list__link {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.75rem 0;
  }
  .page-news-list .news-list__thumb {
    flex: 0 0 auto;
    width: 100%;
    height: 12.5rem;
  }
  .page-news-list .news-list__body {
    padding-top: 0;
    width: 100%;
  }
  .page-news-list .news-list__pager {
    gap: 1rem;
    margin-top: 3rem;
  }
  .page-news-list .news-list__pager-back, .page-news-list .news-list__pager-next {
    font-size: 1rem;
  }
  .page-news-list .news-list__pager-list {
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }
  .page-news-list .news-list__pager-list > li:has(> .news-list__pager-ellipsis) {
    height: 3rem;
  }
  .page-news-list .news-list__pager-num {
    min-width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
  .page-news-list .news-list__pager-ellipsis {
    font-size: 1rem;
    transform: translateY(0.1875rem);
  }
}
@media (max-width: 575px) {
  .page-news-list .news-list__title {
    font-size: 1.5rem;
    letter-spacing: 0.16em;
  }
  .page-news-list .news-list__link {
    padding: 1.5rem 0;
  }
  .page-news-list .news-list__item-title {
    font-size: 1rem;
  }
  .page-news-list .news-list__excerpt {
    font-size: 0.8125rem;
  }
  .page-news-list .news-list__pager {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem 0.75rem;
    margin-top: 2.5rem;
  }
  .page-news-list .news-list__pager-list {
    grid-column: 1/-1;
    grid-row: 1;
    gap: 0.5rem;
  }
  .page-news-list .news-list__pager-list > li:has(> .news-list__pager-ellipsis) {
    height: 2.5rem;
  }
  .page-news-list .news-list__pager-back {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    font-size: 0.875rem;
  }
  .page-news-list .news-list__pager-next {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    font-size: 0.875rem;
  }
  .page-news-list .news-list__pager-num {
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.25rem;
    font-size: 0.875rem;
  }
  .page-news-list .news-list__pager-ellipsis {
    font-size: 0.875rem;
    transform: translateY(0.125rem);
  }
}

/* ========== Blog List Page（BLOG一覧） ========== */
.page-blog-list .blog-list {
  margin-top: 0;
  padding: 0 0 170px;
}
.page-blog-list .blog-list__mv {
  position: relative;
  width: 100%;
  margin-top: var(--site-header-height, 100px);
  min-height: 26.875rem;
  overflow: hidden;
  background: #f0f0f0 url("../images/blog/blog_top.png") center/cover no-repeat;
}
.page-blog-list .blog-list__mv::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1.2px, transparent 1.2px);
  background-size: 5px 5px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-blog-list .blog-list__mv {
    min-height: 17.5rem;
  }
}
.page-blog-list .blog-list__mv-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26.875rem;
}
@media (max-width: 767px) {
  .page-blog-list .blog-list__mv-inner {
    min-height: 17.5rem;
  }
}
.page-blog-list .blog-list__mv-title {
  margin: 0;
  font-size: 2.5625rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #000;
  text-align: center;
}
@media (max-width: 991px) {
  .page-blog-list .blog-list__mv-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .page-blog-list .blog-list__mv-title {
    font-size: 1.75rem;
    letter-spacing: 0.12em;
  }
}
@media (max-width: 575px) {
  .page-blog-list .blog-list__mv-title {
    font-size: 1.5rem;
  }
}
.page-blog-list .blog-list > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
  margin-top: 0;
  overflow: visible;
}
.page-blog-list .blog-list__breadcrumb {
  margin: 1.75rem 0 0;
  padding: 0;
}
.page-blog-list .blog-list__breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1;
  color: #231815;
}
.page-blog-list .blog-list__breadcrumb-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}
.page-blog-list .blog-list__breadcrumb-home {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 4px;
  border: none;
  background: transparent;
  text-decoration: none;
}
.page-blog-list .blog-list__breadcrumb-home img {
  display: block;
  width: 1.125rem;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(32%) sepia(5%) saturate(626%) hue-rotate(314deg) brightness(96%) contrast(88%);
}
.page-blog-list .blog-list__breadcrumb-home:hover {
  opacity: 0.7;
}
.page-blog-list .blog-list__breadcrumb-current {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-blog-list .blog-list__articles {
  margin-top: 130px;
  overflow-x: clip;
}
.page-blog-list .blog-list__article-container {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 101.25rem;
  min-width: 0;
  min-height: 30rem;
}
.page-blog-list .blog-list__article-content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  right: 0;
  padding: 42px 0 48px 3.75rem;
}
.page-blog-list .blog-list__article-title {
  margin: 0 0 40px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.2em;
  color: #000;
}
.page-blog-list .blog-list__article-excerpt {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  word-break: break-word;
}
.page-blog-list .blog-list__sentinel {
  width: 100%;
  height: 1px;
}
.page-blog-list .blog-list__loading {
  margin: 2.5rem 0 0;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: center;
  color: #939393;
}
.page-blog-list .blog-list__article-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 60px;
  margin-top: 2rem;
  padding: 15px 1.25rem;
  border: none;
  background: #fff;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #303030;
  text-decoration: none;
  transition: opacity 0.2s;
}
.page-blog-list .blog-list__article-btn:hover {
  opacity: 0.7;
}
.page-blog-list .blog-list__article-btn-icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 0.625rem;
  height: 0.625rem;
  transform: translateY(-50%);
}
.page-blog-list .blog-list__article-btn-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #231815;
  border-right: 1px solid #231815;
  transform: translateY(-50%) rotate(45deg);
}
.page-blog-list .blog-list__article:not(:last-child) {
  margin-bottom: 160px;
}
.page-blog-list .blog-list__article .text-container {
  position: relative;
  z-index: 2;
  flex: 0 0 50%;
  display: flex;
  min-width: 0;
  min-height: 500px;
}
.page-blog-list .blog-list__article .text-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 53.75rem;
  background: #f0f0f0;
  z-index: 0;
}
.page-blog-list .blog-list__article .image-container {
  z-index: 1;
  flex: 1;
  min-width: 0;
  min-height: 20rem;
}
.page-blog-list .blog-list__article .image-container::before {
  content: "";
  position: absolute;
  top: -4.5rem;
  right: 0;
  width: 51%;
  height: 500px;
  background: var(--blog-list-thumb, url("../images/sample.jpg")) no-repeat center/cover;
}
@media (max-width: 1399px) {
  .page-blog-list .blog-list__article-content {
    padding: 42px 0 48px 2.5rem;
  }
  .page-blog-list .blog-list__article .text-container::before {
    width: 45rem;
  }
}
@media (max-width: 1199px) {
  .page-blog-list .blog-list__articles {
    margin-top: 6.25rem;
  }
  .page-blog-list .blog-list__article-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .page-blog-list .blog-list__article-title {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    letter-spacing: 0.16em;
  }
  .page-blog-list .blog-list__article-content {
    padding: 2.25rem 0 2.5rem 2rem;
  }
  .page-blog-list .blog-list__article .text-container {
    flex: 0 0 45%;
    z-index: 1;
  }
  .page-blog-list .blog-list__article .image-container {
    z-index: 2;
  }
  .page-blog-list .blog-list__article .image-container::before {
    margin-left: 0.9375rem;
    right: auto;
  }
}
@media (max-width: 991px) {
  .page-blog-list .blog-list {
    padding: 0 0 6.25rem;
  }
  .page-blog-list .blog-list__articles {
    margin-top: 5rem;
  }
  .page-blog-list .blog-list__article-container {
    flex-direction: column;
    min-height: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .page-blog-list .blog-list__article-content {
    padding: 2.5rem 1.5rem;
  }
  .page-blog-list .blog-list__article:not(:last-child) {
    margin-bottom: 6.25rem;
  }
  .page-blog-list .blog-list__article .text-container {
    flex: none;
    order: 2;
    width: 100%;
    min-height: 0;
  }
  .page-blog-list .blog-list__article .text-container::before {
    width: 100%;
  }
  .page-blog-list .blog-list__article .image-container {
    position: relative;
    order: 1;
    width: 100%;
    min-height: 17.5rem;
  }
  .page-blog-list .blog-list__article .image-container::before {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .page-blog-list .blog-list {
    padding: 0 0 80px;
  }
  .page-blog-list .blog-list__breadcrumb-list {
    font-size: 0.75rem;
  }
  .page-blog-list .blog-list__articles {
    margin-top: 3.75rem;
  }
  .page-blog-list .blog-list__article-container {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .page-blog-list .blog-list__article-title {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
  }
  .page-blog-list .blog-list__article-excerpt {
    font-size: 0.875rem;
  }
  .page-blog-list .blog-list__article-content {
    padding: 2rem 1.25rem;
  }
  .page-blog-list .blog-list__article-btn {
    width: 100%;
    max-width: 16.25rem;
    height: 3.25rem;
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
  .page-blog-list .blog-list__article:not(:last-child) {
    margin-bottom: 5rem;
  }
  .page-blog-list .blog-list__article .image-container {
    min-height: 13.75rem;
  }
}
@media (max-width: 575px) {
  .page-blog-list .blog-list__articles {
    margin-top: 3rem;
  }
  .page-blog-list .blog-list__article-title {
    font-size: 1.125rem;
  }
  .page-blog-list .blog-list__article-excerpt {
    font-size: 0.8125rem;
  }
  .page-blog-list .blog-list__article-content {
    padding: 1.75rem 1rem;
  }
  .page-blog-list .blog-list__article-btn {
    max-width: none;
    height: 3rem;
    font-size: 1rem;
  }
  .page-blog-list .blog-list__article:not(:last-child) {
    margin-bottom: 3.75rem;
  }
  .page-blog-list .blog-list__article .image-container {
    min-height: 12.5rem;
  }
}

/* ========== Blog Page（BLOG詳細） ========== */
.page-blog-page .blog-page {
  margin-top: var(--site-header-height, 100px);
  padding: 48px 0 150px;
  background: #fff;
  overflow-x: clip;
}
.page-blog-page .blog-page > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
}
.page-blog-page .blog-page__breadcrumb {
  margin: 0 0 85px;
  padding: 0;
}
.page-blog-page .blog-page__breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1;
  color: #231815;
}
.page-blog-page .blog-page__breadcrumb-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}
.page-blog-page .blog-page__breadcrumb-home {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 4px;
  border: none;
  background: transparent;
  text-decoration: none;
}
.page-blog-page .blog-page__breadcrumb-home img {
  display: block;
  width: 1.125rem;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(32%) sepia(5%) saturate(626%) hue-rotate(314deg) brightness(96%) contrast(88%);
}
.page-blog-page .blog-page__breadcrumb-home:hover {
  opacity: 0.7;
}
.page-blog-page .blog-page__breadcrumb-link {
  color: #231815;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.page-blog-page .blog-page__breadcrumb-link:hover {
  opacity: 0.7;
}
.page-blog-page .blog-page__breadcrumb-current {
  letter-spacing: 0.05em;
  word-break: break-word;
}
.page-blog-page .blog-page__article {
  max-width: 75rem;
  margin: 0 auto;
}
.page-blog-page .blog-page__head {
  margin-bottom: 95px;
  text-align: center;
}
.page-blog-page .blog-page__title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.2em;
  color: #000;
  word-break: break-word;
}
.page-blog-page .blog-page__title-br-sm {
  display: none;
}
@media (max-width: 575px) {
  .page-blog-page .blog-page__title-br-sm {
    display: block;
  }
}
.page-blog-page .blog-page__figure {
  width: 56.25rem;
  max-width: 100%;
  margin: 0 auto 65px;
}
.page-blog-page .blog-page__img {
  display: block;
  width: 100%;
  height: auto;
}
.page-blog-page .blog-page__body {
  text-align: left;
  font-feature-settings: "halt" 1;
  text-spacing-trim: space-all;
  text-autospace: no-autospace;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #000;
  word-break: break-word;
  overflow-wrap: anywhere;
}
@media (max-width: 767px) {
  .page-blog-page .blog-page__body {
    font-size: 0.9375rem;
  }
}
.page-blog-page .blog-page__body > *:first-child {
  margin-top: 0;
}
.page-blog-page .blog-page__body > *:last-child {
  margin-bottom: 0;
}
.page-blog-page .blog-page__body p {
  margin: 0 0 1.5em;
}
.page-blog-page .blog-page__body p:last-child {
  margin-bottom: 0;
}
.page-blog-page .blog-page__body h2 {
  margin: 2.5em 0 1em;
  padding: 0.875rem 1.25rem;
  background-color: #f0f0f0;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #000;
}
.page-blog-page .blog-page__body h2:first-child {
  margin-top: 0;
}
.page-blog-page .blog-page__body h3 {
  position: relative;
  margin: 2em 0 0.75em;
  padding-left: 1.5em;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #000;
}
.page-blog-page .blog-page__body h3::before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #000;
}
.page-blog-page .blog-page__body h3:first-child {
  margin-top: 0;
}
.page-blog-page .blog-page__body h4 {
  margin: 1.75em 0 0.65em;
  padding-bottom: 0.35em;
  border-bottom: 1px solid #d3d3d3;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #000;
}
.page-blog-page .blog-page__body h4:first-child {
  margin-top: 0;
}
.page-blog-page .blog-page__body h5,
.page-blog-page .blog-page__body h6 {
  margin: 1.5em 0 0.5em;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #1e1e1e;
}
.page-blog-page .blog-page__body h5:first-child,
.page-blog-page .blog-page__body h6:first-child {
  margin-top: 0;
}
.page-blog-page .blog-page__body a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.page-blog-page .blog-page__body a:hover {
  opacity: 0.65;
}
.page-blog-page .blog-page__body strong,
.page-blog-page .blog-page__body b {
  font-weight: 500;
}
.page-blog-page .blog-page__body em,
.page-blog-page .blog-page__body i {
  font-style: italic;
}
.page-blog-page .blog-page__body ul,
.page-blog-page .blog-page__body ol {
  margin: 0 0 1.5em;
  padding: 0;
  list-style: none;
}
.page-blog-page .blog-page__body li {
  position: relative;
  padding-left: 1.3em;
}
.page-blog-page .blog-page__body li + li {
  margin-top: 0.45em;
}
.page-blog-page .blog-page__body ul > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
}
.page-blog-page .blog-page__body ol {
  counter-reset: article-ol;
}
.page-blog-page .blog-page__body ol > li {
  counter-increment: article-ol;
}
.page-blog-page .blog-page__body ol > li::before {
  content: counter(article-ol) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
}
.page-blog-page .blog-page__body ul ul,
.page-blog-page .blog-page__body ul ol,
.page-blog-page .blog-page__body ol ul,
.page-blog-page .blog-page__body ol ol {
  margin: 0.45em 0 0;
}
.page-blog-page .blog-page__body blockquote {
  margin: 0 0 1.5em;
  padding: 1rem 1.25rem;
  border-left: 0.1875rem solid #000;
  background-color: #f7f7f7;
  color: #1e1e1e;
}
.page-blog-page .blog-page__body blockquote p {
  margin: 0;
}
.page-blog-page .blog-page__body blockquote p + p {
  margin-top: 0.75em;
}
.page-blog-page .blog-page__body blockquote cite {
  display: block;
  margin-top: 0.75em;
  font-size: 0.875rem;
  font-style: normal;
  color: #939393;
}
.page-blog-page .blog-page__body table {
  width: 100%;
  margin: 0 0 1.5em;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.page-blog-page .blog-page__body th,
.page-blog-page .blog-page__body td {
  padding: 0.75rem 1rem;
  border: 1px solid #bebebe;
  vertical-align: top;
  text-align: left;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.page-blog-page .blog-page__body th {
  background-color: #f0f0f0;
  font-weight: 500;
}
.page-blog-page .blog-page__body thead th {
  background-color: #ececec;
}
.page-blog-page .blog-page__body figure {
  margin: 0 0 1.5em;
}
.page-blog-page .blog-page__body img {
  display: block;
  max-width: 100%;
  height: auto;
}
.page-blog-page .blog-page__body figcaption {
  margin-top: 0.5em;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #939393;
  text-align: center;
}
.page-blog-page .blog-page__body hr {
  margin: 2em 0;
  border: 0;
  border-top: 1px solid #d3d3d3;
}
.page-blog-page .blog-page__body pre {
  margin: 0 0 1.5em;
  padding: 1rem;
  overflow-x: auto;
  background-color: #f7f7f7;
  border: 1px solid #ececec;
  font-size: 0.875rem;
  line-height: 1.7;
}
.page-blog-page .blog-page__body code {
  padding: 0.1em 0.35em;
  background-color: #f0f0f0;
  font-size: 0.9em;
}
.page-blog-page .blog-page__body pre code {
  padding: 0;
  background: transparent;
}
.page-blog-page .blog-page__body dl {
  margin: 0 0 1.5em;
}
.page-blog-page .blog-page__body dt {
  margin-bottom: 0.35em;
  font-weight: 500;
}
.page-blog-page .blog-page__body dd {
  margin: 0 0 0.75em;
  padding-left: 1em;
  color: #1e1e1e;
}
.page-blog-page .blog-page__body dd:last-child {
  margin-bottom: 0;
}
.page-blog-page .blog-page__heading {
  margin: 0 0 20px;
  padding: 1rem 1.25rem;
  background: #f0f0f0;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: #000;
}
.page-blog-page .blog-page__subheading {
  margin: 65px 0 20px;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #000;
}
.page-blog-page .blog-page__subheading:first-of-type {
  margin-top: 30px;
}
.page-blog-page .blog-page__article-nav {
  margin: 90px 0 0;
}
.page-blog-page .blog-page__article-nav > .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  width: 100%;
  max-width: 75rem;
  min-width: 0;
}
.page-blog-page .blog-page__article-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 7.5rem;
  padding: 1.25rem 2.5rem;
  background: #f0f0f0;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s;
}
.page-blog-page .blog-page__article-nav-item:hover {
  opacity: 0.85;
}
.page-blog-page .blog-page__article-nav-item--prev {
  justify-content: flex-start;
}
.page-blog-page .blog-page__article-nav-item--prev .blog-page__article-nav-icon::before {
  margin-right: -0.4375rem;
  transform: rotate(-135deg);
}
.page-blog-page .blog-page__article-nav-item--next {
  justify-content: flex-end;
  text-align: right;
}
.page-blog-page .blog-page__article-nav-item--next .blog-page__article-nav-icon::before {
  margin-left: -0.4375rem;
  transform: rotate(45deg);
}
.page-blog-page .blog-page__article-nav-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 36px;
  border-radius: 50%;
  background: #999999;
}
.page-blog-page .blog-page__article-nav-icon::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.page-blog-page .blog-page__article-nav-text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  word-break: break-word;
  text-align: center;
}
@media (max-width: 767px) {
  .page-blog-page .blog-page {
    padding: 32px 0 80px;
  }
  .page-blog-page .blog-page__breadcrumb {
    margin-bottom: 32px;
  }
  .page-blog-page .blog-page__breadcrumb-list {
    font-size: 0.75rem;
  }
  .page-blog-page .blog-page__head {
    margin-bottom: 2rem;
  }
  .page-blog-page .blog-page__title {
    font-size: 1.25rem;
    letter-spacing: 0.12em;
  }
  .page-blog-page .blog-page__figure {
    margin-bottom: 2rem;
  }
  .page-blog-page .blog-page__body p {
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .page-blog-page .blog-page__heading {
    margin: 2rem 0 1.25rem;
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
  .page-blog-page .blog-page__subheading {
    margin: 2rem 0 0.75rem;
    font-size: 0.9375rem;
  }
  .page-blog-page .blog-page__subheading:first-of-type {
    margin-top: 1.5rem;
  }
  .page-blog-page .blog-page__article-nav {
    margin-top: 3rem;
  }
  .page-blog-page .blog-page__article-nav > .container {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
  .page-blog-page .blog-page__article-nav-item {
    min-height: 4.5rem;
    padding: 1rem 1.25rem;
  }
  .page-blog-page .blog-page__article-nav-text {
    font-size: 0.8125rem;
  }
}
@media (max-width: 575px) {
  .page-blog-page .blog-page__title {
    font-size: 1.125rem;
  }
  .page-blog-page .blog-page__article-nav-item {
    gap: 0.75rem;
  }
}

/* ========== News Page（NEWS詳細） ========== */
.page-news-page .news-page {
  margin-top: var(--site-header-height, 100px);
  padding: 1.875rem 0 9.375rem;
  background: #f0f0f0;
  overflow-x: clip;
}
.page-news-page .news-page > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
}
.page-news-page .news-page__breadcrumb {
  margin: 0 0 90px;
  padding: 0;
}
.page-news-page .news-page__breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1;
  color: #231815;
}
.page-news-page .news-page__breadcrumb-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
  background: transparent;
}
.page-news-page .news-page__breadcrumb-home {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 4px;
  border: none;
  background: transparent;
  text-decoration: none;
}
.page-news-page .news-page__breadcrumb-home img {
  display: block;
  width: 1.125rem;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(32%) sepia(5%) saturate(626%) hue-rotate(314deg) brightness(96%) contrast(88%);
}
.page-news-page .news-page__breadcrumb-home:hover {
  opacity: 0.7;
}
.page-news-page .news-page__breadcrumb-link {
  color: #231815;
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
  background: transparent;
}
.page-news-page .news-page__breadcrumb-link:hover {
  opacity: 0.7;
}
.page-news-page .news-page__breadcrumb-current {
  letter-spacing: 0.05em;
  word-break: break-word;
}
.page-news-page .news-page__article {
  max-width: 56.25rem;
  margin: 0 auto;
}
.page-news-page .news-page__head {
  margin-bottom: 110px;
  text-align: center;
}
.page-news-page .news-page__meta {
  margin: 0 0 20px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #231815;
}
.page-news-page .news-page__meta-label {
  letter-spacing: 0.12em;
}
.page-news-page .news-page__title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #000;
  word-break: break-word;
}
.page-news-page .news-page__figure {
  margin: 0 0 50px;
}
.page-news-page .news-page__img {
  display: block;
  width: 100%;
  height: auto;
}
.page-news-page .news-page__body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #000;
  word-break: break-word;
  overflow-wrap: anywhere;
}
@media (max-width: 767px) {
  .page-news-page .news-page__body {
    font-size: 0.9375rem;
  }
}
.page-news-page .news-page__body > *:first-child {
  margin-top: 0;
}
.page-news-page .news-page__body > *:last-child {
  margin-bottom: 0;
}
.page-news-page .news-page__body p {
  margin: 0 0 1.5em;
}
.page-news-page .news-page__body p:last-child {
  margin-bottom: 0;
}
.page-news-page .news-page__body h2 {
  margin: 2.5em 0 1em;
  padding: 0.875rem 1.25rem;
  background-color: #f0f0f0;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #000;
}
.page-news-page .news-page__body h2:first-child {
  margin-top: 0;
}
.page-news-page .news-page__body h3 {
  position: relative;
  margin: 2em 0 0.75em;
  padding-left: 1.5em;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #000;
}
.page-news-page .news-page__body h3::before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #000;
}
.page-news-page .news-page__body h3:first-child {
  margin-top: 0;
}
.page-news-page .news-page__body h4 {
  margin: 1.75em 0 0.65em;
  padding-bottom: 0.35em;
  border-bottom: 1px solid #d3d3d3;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #000;
}
.page-news-page .news-page__body h4:first-child {
  margin-top: 0;
}
.page-news-page .news-page__body h5,
.page-news-page .news-page__body h6 {
  margin: 1.5em 0 0.5em;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #1e1e1e;
}
.page-news-page .news-page__body h5:first-child,
.page-news-page .news-page__body h6:first-child {
  margin-top: 0;
}
.page-news-page .news-page__body a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.page-news-page .news-page__body a:hover {
  opacity: 0.65;
}
.page-news-page .news-page__body strong,
.page-news-page .news-page__body b {
  font-weight: 500;
}
.page-news-page .news-page__body em,
.page-news-page .news-page__body i {
  font-style: italic;
}
.page-news-page .news-page__body ul,
.page-news-page .news-page__body ol {
  margin: 0 0 1.5em;
  padding: 0;
  list-style: none;
}
.page-news-page .news-page__body li {
  position: relative;
  padding-left: 1.3em;
}
.page-news-page .news-page__body li + li {
  margin-top: 0.45em;
}
.page-news-page .news-page__body ul > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
}
.page-news-page .news-page__body ol {
  counter-reset: article-ol;
}
.page-news-page .news-page__body ol > li {
  counter-increment: article-ol;
}
.page-news-page .news-page__body ol > li::before {
  content: counter(article-ol) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
}
.page-news-page .news-page__body ul ul,
.page-news-page .news-page__body ul ol,
.page-news-page .news-page__body ol ul,
.page-news-page .news-page__body ol ol {
  margin: 0.45em 0 0;
}
.page-news-page .news-page__body blockquote {
  margin: 0 0 1.5em;
  padding: 1rem 1.25rem;
  border-left: 0.1875rem solid #000;
  background-color: #f7f7f7;
  color: #1e1e1e;
}
.page-news-page .news-page__body blockquote p {
  margin: 0;
}
.page-news-page .news-page__body blockquote p + p {
  margin-top: 0.75em;
}
.page-news-page .news-page__body blockquote cite {
  display: block;
  margin-top: 0.75em;
  font-size: 0.875rem;
  font-style: normal;
  color: #939393;
}
.page-news-page .news-page__body table {
  width: 100%;
  margin: 0 0 1.5em;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.page-news-page .news-page__body th,
.page-news-page .news-page__body td {
  padding: 0.75rem 1rem;
  border: 1px solid #bebebe;
  vertical-align: top;
  text-align: left;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.page-news-page .news-page__body th {
  background-color: #f0f0f0;
  font-weight: 500;
}
.page-news-page .news-page__body thead th {
  background-color: #ececec;
}
.page-news-page .news-page__body figure {
  margin: 0 0 1.5em;
}
.page-news-page .news-page__body img {
  display: block;
  max-width: 100%;
  height: auto;
}
.page-news-page .news-page__body figcaption {
  margin-top: 0.5em;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #939393;
  text-align: center;
}
.page-news-page .news-page__body hr {
  margin: 2em 0;
  border: 0;
  border-top: 1px solid #d3d3d3;
}
.page-news-page .news-page__body pre {
  margin: 0 0 1.5em;
  padding: 1rem;
  overflow-x: auto;
  background-color: #f7f7f7;
  border: 1px solid #ececec;
  font-size: 0.875rem;
  line-height: 1.7;
}
.page-news-page .news-page__body code {
  padding: 0.1em 0.35em;
  background-color: #f0f0f0;
  font-size: 0.9em;
}
.page-news-page .news-page__body pre code {
  padding: 0;
  background: transparent;
}
.page-news-page .news-page__body dl {
  margin: 0 0 1.5em;
}
.page-news-page .news-page__body dt {
  margin-bottom: 0.35em;
  font-weight: 500;
}
.page-news-page .news-page__body dd {
  margin: 0 0 0.75em;
  padding-left: 1em;
  color: #1e1e1e;
}
.page-news-page .news-page__body dd:last-child {
  margin-bottom: 0;
}
.page-news-page .news-page__body h2 {
  background-color: #fff;
}
.page-news-page .news-page__article-nav {
  margin: 90px 0 0;
}
.page-news-page .news-page__article-nav > .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  width: 100%;
  max-width: 75rem;
  min-width: 0;
}
.page-news-page .news-page__article-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 7.5rem;
  padding: 1.25rem 2.5rem;
  background: #fff;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s;
}
.page-news-page .news-page__article-nav-item:hover {
  opacity: 0.85;
}
.page-news-page .news-page__article-nav-item--prev {
  justify-content: flex-start;
}
.page-news-page .news-page__article-nav-item--prev .news-page__article-nav-icon::before {
  margin-right: -0.4375rem;
  transform: rotate(-135deg);
}
.page-news-page .news-page__article-nav-item--next {
  justify-content: flex-end;
  text-align: right;
}
.page-news-page .news-page__article-nav-item--next .news-page__article-nav-icon::before {
  margin-left: -0.4375rem;
  transform: rotate(45deg);
}
.page-news-page .news-page__article-nav-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 36px;
  border-radius: 50%;
  background: #999999;
}
.page-news-page .news-page__article-nav-icon::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.page-news-page .news-page__article-nav-text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  word-break: break-word;
  text-align: center;
}
@media (max-width: 767px) {
  .page-news-page .news-page {
    padding: 32px 0 80px;
  }
  .page-news-page .news-page__breadcrumb {
    margin-bottom: 32px;
  }
  .page-news-page .news-page__breadcrumb-list {
    font-size: 0.75rem;
  }
  .page-news-page .news-page__head {
    margin-bottom: 2rem;
  }
  .page-news-page .news-page__meta {
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
  }
  .page-news-page .news-page__title {
    font-size: 1.375rem;
    line-height: 1.45;
  }
  .page-news-page .news-page__figure {
    margin-bottom: 2rem;
  }
  .page-news-page .news-page__body p {
    font-size: 0.875rem;
    line-height: 1.9;
  }
  .page-news-page .news-page__article-nav {
    margin-top: 3rem;
  }
  .page-news-page .news-page__article-nav > .container {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
  .page-news-page .news-page__article-nav-item {
    min-height: 4.5rem;
    padding: 1rem 1.25rem;
  }
  .page-news-page .news-page__article-nav-text {
    font-size: 0.8125rem;
  }
}
@media (max-width: 575px) {
  .page-news-page .news-page__title {
    font-size: 1.25rem;
  }
  .page-news-page .news-page__article-nav-item {
    gap: 0.75rem;
    padding: 0.875rem 1rem;
  }
  .page-news-page .news-page__article-nav-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* ========== Recruit Page（求人情報） ========== */
.page-recruit .bottom-banners {
  border-top: none;
}
.page-recruit .recruit {
  overflow-x: clip;
  padding-bottom: 0;
}
.page-recruit .recruit__mv {
  position: relative;
  width: 100%;
  margin-top: var(--site-header-height, 100px);
  min-height: 31.25rem;
  overflow: hidden;
  background: #f0f0f0 url("../images/recruit/recruit_top.png") center/cover no-repeat;
}
.page-recruit .recruit__mv::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1.2px, transparent 1.2px);
  background-size: 5px 5px;
  pointer-events: none;
}
.page-recruit .recruit__mv-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26.875rem;
}
.page-recruit .recruit__mv-title {
  margin: 0;
  font-size: 2.5625rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #000;
  text-align: center;
}
@media (max-width: 991px) {
  .page-recruit .recruit__mv-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .page-recruit .recruit__mv-title {
    font-size: 1.75rem;
    letter-spacing: 0.12em;
  }
}
@media (max-width: 575px) {
  .page-recruit .recruit__mv-title {
    font-size: 1.5rem;
  }
}
.page-recruit .recruit > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
  overflow: visible;
}
.page-recruit .recruit__breadcrumb {
  margin: 1.75rem 0 0;
  padding: 0;
}
.page-recruit .recruit__breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1;
  color: #000;
}
.page-recruit .recruit__breadcrumb-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}
.page-recruit .recruit__breadcrumb-home {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 4px;
  border: none;
  background: transparent;
  text-decoration: none;
}
.page-recruit .recruit__breadcrumb-home img {
  display: block;
  width: 1.125rem;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(32%) sepia(5%) saturate(626%) hue-rotate(314deg) brightness(96%) contrast(88%);
}
.page-recruit .recruit__breadcrumb-home:hover {
  opacity: 0.7;
}
.page-recruit .recruit__breadcrumb-current {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-recruit .recruit__section {
  margin-top: 130px;
}
.page-recruit .recruit__section:nth-of-type(2) .image-container {
  background-image: url("../images/recruit/recruit_1.png");
}
.page-recruit .recruit__section:nth-of-type(3) .image-container {
  background-image: url("../images/recruit/recruit_2.png");
}
.page-recruit .recruit__section-inner {
  display: grid;
  grid-template-columns: calc(max(0px, (100vw - 75rem) / 2) + 12.5rem) minmax(0, 1fr);
  align-items: start;
}
.page-recruit .recruit__section-head {
  width: 100%;
  min-width: 0;
  overflow: visible;
}
.page-recruit .recruit__section-head > .container {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
  max-width: 75rem;
  min-width: 0;
  margin: 0 auto;
  padding-left: max(0px, (100vw - 75rem) / 2);
}
.page-recruit .recruit__section-bar {
  flex: 0 0 5px;
  background: #000;
}
.page-recruit .recruit__section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  min-width: 0;
  padding: 0.25rem 0 0.375rem;
  overflow: visible;
}
.page-recruit .recruit__section-title {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.2em;
  color: #000;
  white-space: nowrap;
}
.page-recruit .recruit__section-subtitle {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #939393;
  white-space: nowrap;
}
.page-recruit .recruit__section-body {
  min-width: 0;
  padding-left: 3.4375rem;
  display: flex;
  align-items: stretch;
}
.page-recruit .recruit__section-body .text-container {
  flex: 0 0 44%;
  display: flex;
  min-width: 0;
  min-height: 472px;
  padding: 50px 3.125rem 80px 3.75rem;
  background: #f0f0f0;
}
.page-recruit .recruit__section-body .image-container {
  flex: 1;
  min-width: 0;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}
.page-recruit .recruit__section-content {
  width: 100%;
  min-width: 0;
}
.page-recruit .recruit__section-heading {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #000;
}
.page-recruit .recruit__section-text p {
  margin: 0 0 1.125rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.14em;
  color: #000;
  word-break: break-word;
}
.page-recruit .recruit__section-text p:last-child {
  margin-bottom: 0;
}
.page-recruit .recruit__section--overview .recruit__section-head {
  margin-bottom: 60px;
}
.page-recruit .recruit__section--overview .recruit__section-head > .container {
  padding-left: 0;
}
.page-recruit .recruit__section--overview .recruit__section-body--overview {
  width: 100%;
  padding-left: 0;
}
.page-recruit .recruit__overview-list {
  --recruit-overview-term-width: 12.5rem;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.page-recruit .recruit__overview-list::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--recruit-overview-term-width);
  border-left: 1px solid #939393;
  pointer-events: none;
}
.page-recruit .recruit__overview-item {
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 0;
}
.page-recruit .recruit__overview-item::before, .page-recruit .recruit__overview-item:last-child::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  height: 0;
  border-top: 1px solid #939393;
}
.page-recruit .recruit__overview-item::before {
  top: 0;
}
.page-recruit .recruit__overview-item:last-child::after {
  bottom: 0;
}
.page-recruit .recruit__overview-term {
  flex: 0 0 var(--recruit-overview-term-width);
  display: flex;
  padding: 2.25rem 0 2.25rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #000;
}
.page-recruit .recruit__overview-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  min-width: 0;
  padding: 2.25rem 0 2.25rem 3.75rem;
}
.page-recruit .recruit__overview-desc p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: #000;
}
.page-recruit .recruit__overview-desc p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .page-recruit .recruit__section-inner {
    grid-template-columns: calc(1.5rem + 12.5rem) minmax(0, 1fr);
  }
  .page-recruit .recruit__section-head > .container {
    padding-left: 1.5rem;
  }
}
@media (max-width: 1089px) {
  .page-recruit .recruit__section-inner {
    display: block;
  }
  .page-recruit .recruit__section-head {
    margin-bottom: 60px;
  }
  .page-recruit .recruit__section--overview .recruit__section-head > .container {
    padding-left: 1.5rem;
  }
  .page-recruit .recruit__section-body {
    padding-left: 0;
  }
  .page-recruit .recruit__section:nth-of-type(2) .image-container {
    background-position: 42% center;
  }
  .page-recruit .recruit__section:nth-of-type(3) .image-container {
    background-position: 70% center;
  }
}
@media (max-width: 991px) {
  .page-recruit .recruit__section {
    margin-top: 80px;
  }
  .page-recruit .recruit__section-head > .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .page-recruit .recruit__section-title {
    font-size: 1.5rem;
  }
  .page-recruit .recruit__section-body {
    flex-direction: column;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .page-recruit .recruit__section-body .text-container,
  .page-recruit .recruit__section-body .image-container {
    flex: none;
    width: 100%;
  }
  .page-recruit .recruit__section-body .text-container {
    order: 2;
    min-height: 0;
  }
  .page-recruit .recruit__section-body .image-container {
    order: 1;
    min-height: 17.5rem;
    background-size: cover;
    background-position: center;
  }
  .page-recruit .recruit__section:nth-of-type(3) .image-container {
    background-size: 100% auto;
    background-position: center 20%;
  }
  .page-recruit .recruit__section--overview .recruit__section-head {
    margin-bottom: 40px;
  }
  .page-recruit .recruit__overview-list {
    --recruit-overview-term-width: 10rem;
  }
  .page-recruit .recruit__overview-term {
    padding: 32px 0.5rem 32px 0.75rem;
    font-size: 1rem;
  }
  .page-recruit .recruit__overview-desc {
    padding: 2rem 0.75rem 2rem 2rem;
  }
  .page-recruit .recruit__overview-desc p {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .page-recruit .recruit__mv {
    min-height: 13.75rem;
  }
  .page-recruit .recruit__mv-inner {
    min-height: 13.75rem;
  }
  .page-recruit .recruit__breadcrumb {
    margin-top: 1.25rem;
  }
  .page-recruit .recruit__breadcrumb-list {
    font-size: 0.75rem;
  }
  .page-recruit .recruit__section {
    margin-top: 2.5rem;
  }
  .page-recruit .recruit__section-head {
    margin-bottom: 30px;
  }
  .page-recruit .recruit__section-head > .container {
    gap: 1rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .page-recruit .recruit__section-title {
    font-size: 1.375rem;
  }
  .page-recruit .recruit__section-subtitle {
    white-space: normal;
  }
  .page-recruit .recruit__section-body {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .page-recruit .recruit__section-body .text-container {
    min-height: 0;
    padding: 1.75rem 1.5rem;
  }
  .page-recruit .recruit__section-body .image-container {
    min-height: 13.75rem;
  }
  .page-recruit .recruit__section-heading {
    font-size: 1rem;
  }
  .page-recruit .recruit__section-text p {
    font-size: 0.8125rem;
    line-height: 1.8;
  }
  .page-recruit .recruit__section--overview .recruit__section-head {
    margin-bottom: 2rem;
  }
  .page-recruit .recruit__section--overview .recruit__section-head > .container {
    padding-left: 0.625rem;
  }
  .page-recruit .recruit__overview-list {
    --recruit-overview-term-width: 7rem;
  }
  .page-recruit .recruit__overview-term {
    padding: 1.5rem 0.5rem 1.5rem 0.625rem;
    font-size: 0.9375rem;
  }
  .page-recruit .recruit__overview-desc {
    padding: 1.5rem 0.625rem 1.5rem 1.25rem;
  }
  .page-recruit .recruit__overview-desc p {
    font-size: 0.875rem;
    letter-spacing: 0.06em;
  }
}
@media (max-width: 575px) {
  .page-recruit .recruit__section-title {
    font-size: 1.25rem;
  }
  .page-recruit .recruit__section-subtitle {
    font-size: 0.75rem;
  }
  .page-recruit .recruit__section-body .text-container {
    padding: 1.5rem 1.25rem;
  }
  .page-recruit .recruit__section-body .image-container {
    min-height: 11.25rem;
  }
  .page-recruit .recruit__overview-list {
    --recruit-overview-term-width: 5.5rem;
  }
  .page-recruit .recruit__overview-term {
    padding: 1.25rem 0.25rem 1.25rem 0.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
  }
  .page-recruit .recruit__overview-desc {
    padding: 1.25rem 0.5rem 1.25rem 1rem;
  }
  .page-recruit .recruit__overview-desc p {
    font-size: 0.8125rem;
  }
}

.page-company .company__section {
  margin-bottom: 150px;
}
.page-company .company {
  margin-top: var(--site-header-height, 100px);
  padding: 30px 0 0;
  background: #fff;
  overflow-x: clip;
}
.page-company .company > .container {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1199px) {
  .page-company .company > .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 767px) {
  .page-company .company > .container {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}
@media (max-width: 767px) {
  .page-company .company {
    padding: 32px 0 80px;
  }
}
.page-company .company__breadcrumb {
  margin: 0 0 150px;
  padding: 0;
}
.page-company .company__breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1;
  color: #231815;
}
.page-company .company__breadcrumb-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}
.page-company .company__breadcrumb-home {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 4px;
  border: none;
  background: transparent;
  text-decoration: none;
}
.page-company .company__breadcrumb-home img {
  display: block;
  width: 1.125rem;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(32%) sepia(5%) saturate(626%) hue-rotate(314deg) brightness(96%) contrast(88%);
}
.page-company .company__breadcrumb-home:hover {
  opacity: 0.7;
}
.page-company .company__breadcrumb-current {
  letter-spacing: 0.05em;
}
.page-company .company__title {
  margin: 0 0 60px;
  font-size: 2.5625rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-align: center;
  color: #000;
}
.page-company .company__section + .page-company .company__section {
  margin-top: 140px;
}
.page-company .company__section-title {
  margin: 0 0 60px;
  font-size: 2.5625rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  color: #000;
}
.page-company .company__content {
  margin: 0 auto;
}
.page-company .company__content p {
  margin: 0 0 30px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: 0;
  color: #000;
  word-break: break-word;
}
.page-company .company__content p:last-child {
  margin-bottom: 0;
}
.page-company .company__signature {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.page-company .company__signature-role {
  flex: 0 0 auto;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.page-company .company__signature-name {
  display: block;
  flex: 0 0 auto;
  width: 11.875rem;
  height: auto;
  aspect-ratio: 190.15/40.75;
  max-width: 100%;
}
.page-company .company__section--profile {
  margin-top: 0;
}
.page-company .company__profile-head {
  margin-bottom: 50px;
}
.page-company .company__profile-head > .container {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
  max-width: 75rem;
  min-width: 0;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .page-company .company__profile-head > .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 767px) {
  .page-company .company__profile-head > .container {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}
.page-company .company__profile-bar {
  flex: 0 0 6px;
  background: #231815;
}
.page-company .company__profile-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  min-width: 0;
  padding: 3px 0 6px;
}
.page-company .company__profile-title {
  margin: 0;
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.25em;
  color: #000;
}
.page-company .company__profile-subtitle {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.4;
  color: #939393;
}
.page-company .company__profile-body > .container {
  width: 100%;
  max-width: 75rem;
  min-width: 0;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.page-company .company__profile-list {
  --company-profile-term-width: 12.5rem;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.page-company .company__profile-list::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--company-profile-term-width);
  border-left: 1px solid #939393;
  pointer-events: none;
}
.page-company .company__profile-item {
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 0;
}
.page-company .company__profile-item::before, .page-company .company__profile-item:last-child::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  height: 0;
  border-top: 1px solid #939393;
}
.page-company .company__profile-item::before {
  top: 0;
}
.page-company .company__profile-item:last-child::after {
  bottom: 0;
}
.page-company .company__profile-term {
  flex: 0 0 var(--company-profile-term-width);
  display: flex;
  margin: 0;
  padding: 2.25rem 0 2.25rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #231815;
}
.page-company .company__profile-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  min-width: 0;
  padding: 2.25rem 0 2.25rem 3.75rem;
}
.page-company .company__profile-desc p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: #000;
}
.page-company .company__profile-desc p:last-child {
  margin-bottom: 0;
}
.page-company .company__profile-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-company .company__profile-detail-item {
  position: relative;
  margin: 0;
  padding: 0 0 0 1.2em;
  list-style: none;
}
.page-company .company__profile-detail-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.125rem;
  line-height: 1.9;
  color: #231815;
}
.page-company .company__profile-detail-item + .page-company .company__profile-detail-item {
  margin-top: 1rem;
}
.page-company .company__profile-detail-title {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: #231815;
}
.page-company .company__profile-detail-text {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: #231815;
}
.page-company .company__profile-detail-text + .page-company .company__profile-detail-text {
  margin-top: 0;
}
.page-company .company__profile-detail-text--contact span + span {
  margin-left: 1.5rem;
}
@media (max-width: 575px) {
  .page-company .company__profile-detail-text--contact span {
    display: block;
  }
  .page-company .company__profile-detail-text--contact span + span {
    margin-left: 0;
  }
}
.page-company .company__profile-link {
  color: #0051b1;
  text-decoration: underline;
}
.page-company .company__profile-link:hover {
  opacity: 0.7;
}
.page-company .company__profile-br-sm {
  display: none;
}
@media (max-width: 575px) {
  .page-company .company__profile-br-sm {
    display: block;
  }
}
.page-company .company__section--access {
  margin-top: 0;
  margin-bottom: 0;
}
.page-company .company__access-head {
  margin-bottom: 48px;
}
.page-company .company__access-map {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.page-company .company__access-map-iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}
@media (max-width: 767px) {
  .page-company .company__breadcrumb {
    margin-bottom: 80px;
  }
  .page-company .company__breadcrumb-list {
    font-size: 0.75rem;
  }
  .page-company .company__title {
    margin-bottom: 20px;
    font-size: 1.75rem;
    letter-spacing: 0.14em;
  }
  .page-company .company__section {
    margin-bottom: 40px;
  }
  .page-company .company__section + .page-company .company__section {
    margin-top: 72px;
  }
  .page-company .company__section-title {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
  .page-company .company__content p {
    margin-bottom: 24px;
    font-size: 0.875rem;
    line-height: 1.85;
  }
  .page-company .company__signature {
    margin-top: 48px;
  }
  .page-company .company__signature-name {
    width: 10rem;
  }
  .page-company .company__profile-head {
    margin-bottom: 40px;
  }
  .page-company .company__profile-head > .container {
    gap: 1rem;
  }
  .page-company .company__profile-title {
    font-size: 1.375rem;
  }
  .page-company .company__profile-subtitle {
    font-size: 1rem;
  }
  .page-company .company__profile-body > .container {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .page-company .company__profile-list {
    --company-profile-term-width: 10rem;
  }
  .page-company .company__profile-term {
    padding: 32px 0.5rem 32px 0.75rem;
    font-size: 1rem;
  }
  .page-company .company__profile-desc {
    padding: 2rem 0.75rem 2rem 2rem;
  }
  .page-company .company__profile-desc p {
    font-size: 1rem;
  }
  .page-company .company__profile-detail-item::before {
    font-size: 1rem;
  }
  .page-company .company__profile-detail-item + .page-company .company__profile-detail-item {
    margin-top: 0.75rem;
  }
  .page-company .company__profile-detail-title, .page-company .company__profile-detail-text {
    font-size: 1rem;
  }
  .page-company .company__access-head {
    margin-bottom: 32px;
  }
  .page-company .company__access-head > .container {
    gap: 1rem;
  }
  .page-company .company__access-map-iframe {
    height: 360px;
  }
}
@media (max-width: 575px) {
  .page-company .company__title {
    font-size: 1.5rem;
  }
  .page-company .company__section-title {
    font-size: 1.25rem;
  }
  .page-company .company__signature-name {
    width: 8.75rem;
  }
  .page-company .company__profile-list {
    --company-profile-term-width: 7.5rem;
  }
  .page-company .company__profile-item {
    flex-direction: column;
  }
  .page-company .company__profile-list::after {
    display: none;
  }
  .page-company .company__profile-term {
    padding: 24px 0.75rem 12px;
    flex: 0 0 auto;
  }
  .page-company .company__profile-desc {
    padding: 0 0.75rem 24px;
  }
  .page-company .company__access-map-iframe {
    height: 280px;
  }
}

/* ========== Real Estate Page ========== */
@media (max-width: 767px) {
  .page-real-estate .logo img {
    height: 72px;
    padding: 12px 1rem;
  }
}
.page-real-estate .real-estate-hero {
  margin-top: var(--site-header-height, 100px);
  padding: 0;
  background-color: #fff;
  background-image: url("../images/real_estate/real_estate_top.svg");
  background-repeat: no-repeat;
  background-position: right 9vw center;
  background-size: min(76.6875rem, 0.6390625 * 100vw) auto;
  background-position: calc(100% - 6vw) center;
}
@media (max-width: 1399px) {
  .page-real-estate .real-estate-hero {
    background-position: right 9vw 58%;
    background-size: clamp(340px, 70vw, 920px) auto;
  }
}
@media (max-width: 991px) {
  .page-real-estate .real-estate-hero {
    background-position: right 9vw 100%;
    background-size: clamp(280px, 108%, 640px) auto;
  }
}
@media (max-width: 767px) {
  .page-real-estate .real-estate-hero {
    padding: 48px 0;
    background-position: calc(100% - 3vw) 100%;
    background-size: min(92vw, 480px) auto;
  }
}
@media (max-width: 1399px) {
  .page-real-estate .real-estate-hero {
    background-position: calc(100% - 4vw) 58%;
  }
}
@media (max-width: 991px) {
  .page-real-estate .real-estate-hero {
    background-position: calc(100% - 4vw) 100%;
  }
}
@media (max-width: 767px) {
  .page-real-estate .real-estate-hero {
    background-position: calc(100% + 2vw) 100%;
  }
}
.page-real-estate .real-estate-hero__inner {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  min-width: 0;
  position: relative;
  min-height: 430px;
  margin-bottom: 60px;
}
.page-real-estate .real-estate-hero__inner .container {
  display: flex;
  align-items: stretch;
  min-height: inherit;
}
@media (max-width: 991px) {
  .page-real-estate .real-estate-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    min-height: clamp(300px, 52vw, 400px);
  }
}
@media (max-width: 767px) {
  .page-real-estate .real-estate-hero__inner {
    min-height: auto;
    margin-bottom: 0;
  }
}
.page-real-estate .real-estate-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  position: relative;
  z-index: 1;
  align-self: stretch;
  text-align: left;
}
.page-real-estate .real-estate-hero__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #000;
}
.page-real-estate .real-estate-hero__breadcrumb {
  margin: 0;
}
.page-real-estate .real-estate-hero__breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  font-weight: 400;
  color: #000;
}
@media (max-width: 767px) {
  .page-real-estate .real-estate-hero__breadcrumb-list {
    margin-top: 20px;
    font-size: 0.75rem;
  }
}
.page-real-estate .real-estate-hero__breadcrumb-home {
  display: flex;
  align-items: center;
  padding: 4px;
  background: transparent;
}
.page-real-estate .real-estate-hero__breadcrumb-home img {
  display: block;
  width: 1.125rem;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(32%) sepia(5%) saturate(626%) hue-rotate(314deg) brightness(96%) contrast(88%);
}
.page-real-estate .real-estate-hero__breadcrumb-home:hover {
  opacity: 0.7;
}
.page-real-estate .real-estate-hero__breadcrumb-current {
  letter-spacing: 0.05em;
}
.page-real-estate .real-estate-intro {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  padding: 0;
  height: 810px;
}
@media (max-width: 1399px) {
  .page-real-estate .real-estate-intro {
    height: 55vw;
  }
}
@media (max-width: 991px) {
  .page-real-estate .real-estate-intro {
    height: auto;
    padding-bottom: 50px;
  }
}
.page-real-estate .real-estate-intro::before {
  content: "";
  position: absolute;
  top: 0;
  right: 14vw;
  z-index: 2;
  width: 100vw;
  height: 8px;
  background: #d3d3d3;
  pointer-events: none;
}
.page-real-estate .real-estate-intro::after {
  content: "";
  position: absolute;
  top: 0;
  right: 14vw;
  z-index: 0;
  width: 100vw;
  height: 100%;
  background: #e8eded;
  pointer-events: none;
}
.page-real-estate .real-estate-intro__head {
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
  padding-top: 65px;
}
.page-real-estate .real-estate-intro__head .container {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 9.375rem;
}
.page-real-estate .real-estate-intro__title {
  flex: 0 0 auto;
  margin: 0;
  font-size: 2.5625rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #000;
}
.page-real-estate .real-estate-intro__title-line {
  display: block;
  line-height: 1;
}
.page-real-estate .real-estate-intro__title-line:first-child {
  margin-bottom: 20px;
}
.page-real-estate .real-estate-intro__text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0 0 0 auto;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.02em;
  color: #000;
}
@media (max-width: 1799px) {
  .page-real-estate .real-estate-intro::before, .page-real-estate .real-estate-intro::after {
    right: 0;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__head {
    padding-top: 3.25rem;
    margin-bottom: 3rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__head .container {
    gap: 3.75rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__title {
    font-size: 2.4375rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__title-line:first-child {
    margin-bottom: 1.125rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__text {
    font-size: 1.1875rem;
    line-height: 1.85;
    letter-spacing: 0.04em;
  }
}
@media (max-width: 1399px) {
  .page-real-estate .real-estate-intro .real-estate-intro__head {
    padding-top: 3rem;
    margin-bottom: 2.5rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__head .container {
    gap: 5rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__title {
    font-size: 2.25rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__title-line:first-child {
    margin-bottom: 1.25rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__text {
    font-size: 1.125rem;
    line-height: 1.85;
  }
}
@media (max-width: 991px) {
  .page-real-estate .real-estate-intro::before, .page-real-estate .real-estate-intro::after {
    right: 0;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__head {
    padding-top: 2.5rem;
    margin-bottom: 2rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__head .container {
    gap: 2.5rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__title {
    font-size: 1.75rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__title-line:first-child {
    margin-bottom: 1rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__text {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .page-real-estate .real-estate-intro .real-estate-intro__head {
    padding-top: 2rem;
    margin-bottom: 1.5rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__head .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__title {
    font-size: 1.5rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__title-line {
    display: inline;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__title-line:first-child {
    margin-bottom: 0;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__text {
    max-width: none;
    margin-left: 0;
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}
@media (max-width: 575px) {
  .page-real-estate .real-estate-intro .real-estate-intro__head {
    padding-top: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__head .container {
    gap: 1rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__title {
    font-size: 1.25rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__title-line:first-child {
    margin-bottom: 0.5rem;
  }
  .page-real-estate .real-estate-intro .real-estate-intro__text {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}
.page-real-estate .real-estate-categories {
  position: relative;
  z-index: 1;
}
.page-real-estate .real-estate-categories .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 1.875rem;
}
@media (max-width: 991px) {
  .page-real-estate .real-estate-categories .container {
    flex-wrap: wrap;
  }
}
.page-real-estate .real-estate-category {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 1 25%;
  aspect-ratio: 5/4;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.page-real-estate .real-estate-category::after {
  content: "";
  position: absolute;
  bottom: 38px;
  left: 50%;
  width: 0.9375rem;
  height: 0.9375rem;
  border-right: 4px solid #231815;
  border-bottom: 4px solid #231815;
  transform: translateX(-50%) rotate(45deg);
  pointer-events: none;
}
.page-real-estate .real-estate-category:hover {
  opacity: 0.75;
}
.page-real-estate .real-estate-category__en {
  white-space: nowrap;
  position: absolute;
  top: calc(50% - 1.125rem - 0.25rem);
  left: 50%;
  transform: translate(-50%, -100%);
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.875rem;
  font-weight: 100;
  line-height: 1.1;
  text-align: center;
  color: #284a4a;
}
.page-real-estate .real-estate-category__ja {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  color: #231815;
  white-space: nowrap;
}
@media (max-width: 1244px) {
  .page-real-estate .real-estate-category::after {
    bottom: 2rem;
    width: 0.8125rem;
    height: 0.8125rem;
  }
  .page-real-estate .real-estate-category__en {
    font-size: 1.75rem;
  }
  .page-real-estate .real-estate-category__ja {
    font-size: 1.5rem;
  }
}
@media (max-width: 991px) {
  .page-real-estate .real-estate-category {
    aspect-ratio: auto;
    flex: 0 1 calc((100% - 1.875rem) / 2);
    padding: 1.25rem 0 2.5rem;
  }
  .page-real-estate .real-estate-category::after {
    bottom: 1.125rem;
  }
  .page-real-estate .real-estate-category__en {
    font-size: 1.5rem;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
  .page-real-estate .real-estate-category__ja {
    font-size: 1.375rem;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
}
@media (max-width: 767px) {
  .page-real-estate .real-estate-category__en {
    font-size: 1.375rem;
  }
  .page-real-estate .real-estate-category__ja {
    font-size: 1.25rem;
  }
}
@media (max-width: 575px) {
  .page-real-estate .real-estate-category::after {
    border-right-width: 2px;
    border-bottom-width: 2px;
  }
  .page-real-estate .real-estate-category__en {
    font-size: 1.25rem;
  }
  .page-real-estate .real-estate-category__ja {
    font-size: 1.125rem;
  }
}
.page-real-estate .real-estate-service {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  padding: 0 0 7.5rem;
}
.page-real-estate .real-estate-service#transaction {
  margin-top: -260px;
}
@media (max-width: 1399px) {
  .page-real-estate .real-estate-service#transaction {
    margin-top: -15vw;
  }
}
@media (max-width: 991px) {
  .page-real-estate .real-estate-service#transaction {
    margin-top: 60px;
  }
}
.page-real-estate .real-estate-service__detail {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  overflow-x: clip;
}
.page-real-estate .real-estate-service__detail .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 498px;
}
.page-real-estate .real-estate-service .image-container {
  flex: 0 1 50%;
  position: relative;
  z-index: 0;
  min-width: 0;
  align-self: stretch;
}
.page-real-estate .real-estate-service .image-container::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.page-real-estate .real-estate-service .text-container {
  position: relative;
  z-index: 1;
  flex: 0 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.page-real-estate .real-estate-service .text-container::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 60vw;
}
.page-real-estate .real-estate-service__content {
  position: relative;
  z-index: 1;
  text-align: left;
}
.page-real-estate .real-estate-service__heading {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 1rem;
  margin: 0 0 30px;
  color: #000;
}
.page-real-estate .real-estate-service__heading-ja {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
.page-real-estate .real-estate-service__heading-en {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.21875rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #000;
}
.page-real-estate .real-estate-service__lead {
  margin: 0 0 20px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #000;
}
.page-real-estate .real-estate-service__concerns {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-real-estate .real-estate-service__concerns-item {
  position: relative;
  padding-left: 1em;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #000;
}
.page-real-estate .real-estate-service__concerns-item::before {
  content: "・";
  position: absolute;
  left: 0;
}
.page-real-estate .real-estate-service__concerns-item + .real-estate-service__concerns-item {
  margin-top: 0.75rem;
}
.page-real-estate .real-estate-service__detail--transaction .image-container::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/real_estate/real_estate_1.png");
}
.page-real-estate .real-estate-service__detail--transaction .text-container::before {
  left: 0;
  right: calc(50% - 50vw);
  width: auto;
  background: #f6f6f6;
  height: 498px;
}
.page-real-estate .real-estate-service__detail--transaction .real-estate-service__content {
  max-width: 28.125rem;
}
.page-real-estate .real-estate-service__detail--lease {
  background: #e8eded;
}
.page-real-estate .real-estate-service__detail--lease .container {
  flex-direction: row-reverse;
}
.page-real-estate .real-estate-service__detail--lease .image-container::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/real_estate/real_estate_5.png");
}
.page-real-estate .real-estate-service__detail--lease .text-container {
  justify-content: flex-start;
  padding: 0 7.1875rem 0 2.8125rem;
  box-sizing: border-box;
}
.page-real-estate .real-estate-service__detail--lease .text-container::before {
  right: 0;
  left: calc(50% - 50vw);
  width: auto;
  background: #f6f6f6;
  height: 498px;
}
.page-real-estate .real-estate-service__detail--lease .real-estate-service__content {
  max-width: 32.5rem;
  min-width: 0;
  white-space: normal;
}
.page-real-estate .real-estate-service__detail--lease .real-estate-service__lead {
  white-space: normal;
  letter-spacing: 0.08em;
}
.page-real-estate .real-estate-service__detail--management {
  background: #e8eded;
}
.page-real-estate .real-estate-service__detail--management .image-container::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/real_estate/real_estate_3.png");
}
.page-real-estate .real-estate-service__detail--management .text-container {
  justify-content: flex-start;
  padding: 0 2.8125rem 0 7.1875rem;
  box-sizing: border-box;
}
.page-real-estate .real-estate-service__detail--management .text-container::before {
  left: 0;
  right: calc(50% - 50vw);
  width: auto;
  background: #f6f6f6;
  height: 498px;
}
.page-real-estate .real-estate-service__detail--management .real-estate-service__content {
  max-width: 32.5rem;
}
.page-real-estate .real-estate-service__detail--management .real-estate-service__lead:last-of-type {
  margin-bottom: 0;
}
.page-real-estate .real-estate-service__detail--land-utilization {
  background: #e8eded;
}
.page-real-estate .real-estate-service__detail--land-utilization .container {
  flex-direction: row-reverse;
}
.page-real-estate .real-estate-service__detail--land-utilization .image-container::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/real_estate/real_estate_4.png");
}
.page-real-estate .real-estate-service__detail--land-utilization .text-container {
  justify-content: flex-start;
  padding: 0 7.1875rem 0 2.8125rem;
  box-sizing: border-box;
}
.page-real-estate .real-estate-service__detail--land-utilization .text-container::before {
  right: 0;
  left: calc(50% - 50vw);
  width: auto;
  background: #f6f6f6;
  height: 498px;
}
.page-real-estate .real-estate-service__detail--land-utilization .real-estate-service__content {
  max-width: 32.5rem;
  min-width: 0;
}
.page-real-estate .real-estate-service__detail--land-utilization .real-estate-service__lead:last-of-type {
  margin-bottom: 0;
  white-space: normal;
}
@media (max-width: 1089px) {
  .page-real-estate .real-estate-service__detail--lease, .page-real-estate .real-estate-service__detail--management, .page-real-estate .real-estate-service__detail--land-utilization {
    background: none;
  }
}
@media (max-width: 1399px) {
  .page-real-estate .real-estate-service .real-estate-service__heading-ja {
    font-size: 1.75rem;
  }
}
@media (max-width: 991px) {
  .page-real-estate .real-estate-service {
    padding-bottom: 0;
  }
  .page-real-estate .real-estate-service__detail .container {
    height: 401px;
    align-items: stretch;
  }
  .page-real-estate .real-estate-service .image-container {
    min-height: 0;
  }
  .page-real-estate .real-estate-service .text-container {
    min-height: 0;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--transaction .container {
    display: block;
    height: auto;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--transaction .image-container {
    height: 300px;
    min-height: 0;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--transaction .image-container::before {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 300px;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--transaction .text-container {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 30px 1.25rem 40px;
    box-sizing: border-box;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--transaction .text-container::before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--transaction .real-estate-service__content {
    width: 100%;
    max-width: none;
    padding: 0;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--lease .container {
    flex-direction: row-reverse;
    height: 360px;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--lease .image-container {
    height: 360px;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--lease .text-container {
    height: 360px;
    padding: 0 2.8125rem;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--lease .text-container::before {
    height: 360px;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--lease .image-container::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--management .image-container {
    height: 401px;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--management .text-container {
    height: 401px;
    padding: 0 2.8125rem;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--management .text-container::before {
    height: 401px;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--management .image-container::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--land-utilization .container {
    flex-direction: row-reverse;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--land-utilization .image-container {
    height: 401px;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--land-utilization .text-container {
    height: 401px;
    padding: 0 2.8125rem;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--land-utilization .text-container::before {
    height: 401px;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--land-utilization .image-container::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .page-real-estate .real-estate-service .real-estate-service__heading-ja {
    font-size: 1.875rem;
  }
  .page-real-estate .real-estate-service .real-estate-service__heading-en {
    font-size: 1.25rem;
  }
  .page-real-estate .real-estate-service .real-estate-service__lead,
  .page-real-estate .real-estate-service .real-estate-service__concerns-item {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .page-real-estate .real-estate-service {
    padding: 20px 0 80px;
  }
  .page-real-estate .real-estate-service__detail .container {
    display: block;
  }
  .page-real-estate .real-estate-service .image-container {
    height: 210px;
    min-height: 0;
  }
  .page-real-estate .real-estate-service .image-container::before {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 210px;
  }
  .page-real-estate .real-estate-service .text-container {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 30px 1.25rem 40px;
    box-sizing: border-box;
  }
  .page-real-estate .real-estate-service .text-container::before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
  }
  .page-real-estate .real-estate-service .real-estate-service__content {
    width: 100%;
    max-width: none;
  }
  .page-real-estate .real-estate-service .real-estate-service__heading {
    margin-bottom: 1.25rem;
  }
  .page-real-estate .real-estate-service .real-estate-service__heading-ja {
    font-size: 1.375rem;
  }
  .page-real-estate .real-estate-service .real-estate-service__heading-en {
    font-size: 1rem;
  }
  .page-real-estate .real-estate-service .real-estate-service__lead,
  .page-real-estate .real-estate-service .real-estate-service__concerns-item {
    font-size: 0.875rem;
    line-height: 1.85;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--lease .container,
  .page-real-estate .real-estate-service .real-estate-service__detail--management .container,
  .page-real-estate .real-estate-service .real-estate-service__detail--land-utilization .container {
    display: block;
    height: auto;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--lease .image-container,
  .page-real-estate .real-estate-service .real-estate-service__detail--management .image-container,
  .page-real-estate .real-estate-service .real-estate-service__detail--land-utilization .image-container {
    height: 210px;
    min-height: 0;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--lease .image-container::before,
  .page-real-estate .real-estate-service .real-estate-service__detail--management .image-container::before,
  .page-real-estate .real-estate-service .real-estate-service__detail--land-utilization .image-container::before {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 210px;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--lease .text-container,
  .page-real-estate .real-estate-service .real-estate-service__detail--management .text-container,
  .page-real-estate .real-estate-service .real-estate-service__detail--land-utilization .text-container {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 30px 1.25rem 20px;
    box-sizing: border-box;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--lease .text-container::before,
  .page-real-estate .real-estate-service .real-estate-service__detail--management .text-container::before,
  .page-real-estate .real-estate-service .real-estate-service__detail--land-utilization .text-container::before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
  }
  .page-real-estate .real-estate-service .real-estate-service__detail--lease .real-estate-service__content,
  .page-real-estate .real-estate-service .real-estate-service__detail--management .real-estate-service__content,
  .page-real-estate .real-estate-service .real-estate-service__detail--land-utilization .real-estate-service__content {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 575px) {
  .page-real-estate .real-estate-service {
    padding: 20px 0 0;
  }
  .page-real-estate .real-estate-service .image-container {
    min-height: 220px;
  }
  .page-real-estate .real-estate-service .image-container::before {
    height: 220px;
  }
  .page-real-estate .real-estate-service .text-container {
    min-height: 240px;
    padding: 32px 1.25rem;
  }
  .page-real-estate .real-estate-service .real-estate-service__heading-ja {
    font-size: 1.25rem;
  }
  .page-real-estate .real-estate-service .real-estate-service__heading-en {
    font-size: 1rem;
  }
  .page-real-estate .real-estate-service .real-estate-service__lead,
  .page-real-estate .real-estate-service .real-estate-service__concerns-item {
    font-size: 0.8125rem;
    line-height: 1.85;
  }
}
.page-real-estate .real-estate-flow {
  background: #fff;
  margin-bottom: 130px;
}
.page-real-estate .real-estate-flow .container {
  max-width: 75rem;
}
.page-real-estate .real-estate-flow__title {
  margin: 0 0 32px;
  font-size: 2.125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: left;
  color: #231815;
}
.page-real-estate .real-estate-flow__rule {
  margin: 0 0 40px;
  height: 0;
  border-top: 1px solid #000;
}
.page-real-estate .real-estate-flow__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(5, auto);
  column-gap: 5.9375rem;
}
@media (max-width: 1089px) {
  .page-real-estate .real-estate-flow__grid {
    column-gap: 2.5rem;
  }
}
.page-real-estate .real-estate-flow__col {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1/-1;
  min-width: 0;
}
.page-real-estate .real-estate-flow__card {
  height: 100%;
  border: 1px solid #d3d3d3;
  background: #fff;
}
.page-real-estate .real-estate-flow__card-inner {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  height: 100%;
  padding: 30px 1.5625rem;
}
.page-real-estate .real-estate-flow__step {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3.25rem;
}
.page-real-estate .real-estate-flow__step-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ef8200;
}
.page-real-estate .real-estate-flow__step-num {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.4375rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #ef8200;
}
.page-real-estate .real-estate-flow__body {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0 2.1875rem 0 1.25rem;
}
.page-real-estate .real-estate-flow__card-title {
  margin: 0 0 20px;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #000;
}
.page-real-estate .real-estate-flow__card-desc {
  margin: 0;
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.08em;
  color: #000;
}
.page-real-estate .real-estate-flow__icon {
  flex: 0 0 4.4375rem;
  align-self: flex-end;
  display: grid;
  place-items: center;
  width: 4.4375rem;
  height: 4.4375rem;
  margin-top: auto;
  margin-left: auto;
  padding: 11px;
  border: 1px solid #cbd3d3;
  border-radius: 50%;
  background: #fff;
}
.page-real-estate .real-estate-flow__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.page-real-estate .real-estate-flow__icon img[src*=real_estate_icon_6] {
  width: 75%;
  height: 75%;
  transform: translateY(-3px);
}
.page-real-estate .real-estate-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 18px;
}
.page-real-estate .real-estate-flow__arrow::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 20px;
  border-right: 5px solid #d3d3d3;
  border-bottom: 5px solid #d3d3d3;
  transform: rotate(45deg);
}
.page-real-estate .real-estate-flow__arrow--between-cols {
  display: none;
}
.page-real-estate .real-estate-flow__closing {
  margin: 90px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  text-align: center;
  color: #231815;
}
@media (max-width: 991px) {
  .page-real-estate .real-estate-flow__closing {
    margin-top: 60px;
  }
}
.page-real-estate .real-estate-flow__cta {
  margin-top: 60px;
  text-align: center;
}
.page-real-estate .real-estate-flow__cta-text {
  margin: 0 0 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #231815;
}
.page-real-estate .real-estate-flow__cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 37.5rem;
  width: 100%;
  height: 80px;
  padding: 1.125rem 3rem;
  border-radius: 999px;
  background: #ef8200;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.3s;
}
.page-real-estate .real-estate-flow__cta-btn:hover {
  opacity: 0.85;
}
.page-real-estate .real-estate-flow__cta-btn-icon {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  width: 0.9375rem;
  height: 0.9375rem;
  transform: translateY(-50%);
}
.page-real-estate .real-estate-flow__cta-btn-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
@media (max-width: 991px) {
  .page-real-estate .real-estate-flow {
    padding: 80px 0 100px;
    margin-bottom: 0;
  }
  .page-real-estate .real-estate-flow__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    column-gap: 1.5rem;
  }
  .page-real-estate .real-estate-flow__col {
    display: flex;
    flex-direction: column;
    grid-row: auto;
    grid-template-rows: none;
  }
  .page-real-estate .real-estate-flow__card {
    height: auto;
  }
  .page-real-estate .real-estate-flow__card-inner {
    gap: 1rem;
    height: auto;
    padding: 20px 1.25rem 18px;
  }
  .page-real-estate .real-estate-flow__step-num {
    font-size: 3rem;
  }
  .page-real-estate .real-estate-flow__icon {
    flex: 0 0 4rem;
    width: 4rem;
    height: 4rem;
    margin-left: 0;
    padding: 10px;
  }
  .page-real-estate .real-estate-flow__arrow--between-cols {
    display: flex;
  }
}
@media (max-width: 767px) {
  .page-real-estate .real-estate-flow {
    padding: 48px 0 80px;
  }
  .page-real-estate .real-estate-flow__title {
    margin-bottom: 24px;
    font-size: 1.75rem;
  }
  .page-real-estate .real-estate-flow__rule {
    margin-bottom: 28px;
  }
  .page-real-estate .real-estate-flow__card-inner {
    gap: 0.75rem;
    padding: 18px 1rem 16px;
  }
  .page-real-estate .real-estate-flow__step {
    min-width: 2.75rem;
  }
  .page-real-estate .real-estate-flow__step-label {
    font-size: 0.75rem;
  }
  .page-real-estate .real-estate-flow__step-num {
    font-size: 2.75rem;
  }
  .page-real-estate .real-estate-flow__body {
    margin: 0 0.75rem 0 1rem;
  }
  .page-real-estate .real-estate-flow__card-title {
    margin-bottom: 16px;
    font-size: 1.25rem;
    line-height: 1.35;
  }
  .page-real-estate .real-estate-flow__card-desc {
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .page-real-estate .real-estate-flow__icon {
    flex: 0 0 3.5rem;
    width: 3.5rem;
    height: 3.5rem;
    margin-left: auto;
    padding: 8px;
  }
  .page-real-estate .real-estate-flow__arrow {
    padding: 16px 0;
  }
  .page-real-estate .real-estate-flow__closing {
    margin-top: 56px;
    font-size: 1.25rem;
  }
  .page-real-estate .real-estate-flow__cta {
    margin-top: 56px;
  }
  .page-real-estate .real-estate-flow__cta-text {
    margin-bottom: 32px;
    font-size: 1.25rem;
  }
  .page-real-estate .real-estate-flow__cta-btn {
    min-width: 20rem;
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
  }
  .page-real-estate .real-estate-flow__cta-btn-icon {
    right: 1.75rem;
  }
}
@media (max-width: 575px) {
  .page-real-estate .real-estate-flow {
    padding: 40px 0 64px;
  }
  .page-real-estate .real-estate-flow__title {
    font-size: 1.5rem;
  }
  .page-real-estate .real-estate-flow__card-inner {
    gap: 0.625rem;
    padding: 16px 1rem 14px;
  }
  .page-real-estate .real-estate-flow__step-num {
    font-size: 2.5rem;
  }
  .page-real-estate .real-estate-flow__card-title {
    margin-bottom: 12px;
    font-size: 1.125rem;
  }
  .page-real-estate .real-estate-flow__card-desc {
    font-size: 0.8125rem;
  }
  .page-real-estate .real-estate-flow__icon {
    flex: 0 0 3.25rem;
    width: 3.25rem;
    height: 3.25rem;
  }
  .page-real-estate .real-estate-flow__arrow {
    padding: 12px 0;
  }
  .page-real-estate .real-estate-flow__closing {
    margin-top: 40px;
    font-size: 1.125rem;
    line-height: 1.75;
  }
  .page-real-estate .real-estate-flow__cta {
    margin-top: 40px;
  }
  .page-real-estate .real-estate-flow__cta-text {
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.75;
  }
  .page-real-estate .real-estate-flow__cta-btn {
    min-width: 0;
    width: 100%;
    max-width: 20rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
  .page-real-estate .real-estate-flow__cta-btn-icon {
    right: 1.25rem;
  }
}
.page-real-estate .real-estate-support {
  padding: 0 0 150px;
  background: #fff;
}
.page-real-estate .real-estate-support .container {
  max-width: 75rem;
}
@media (max-width: 991px) {
  .page-real-estate .real-estate-support .container {
    margin-top: 40px;
  }
}
.page-real-estate .real-estate-support__title {
  margin: 0 0 32px;
  font-size: 2.1875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: left;
  color: #000;
}
.page-real-estate .real-estate-support__rule {
  margin: 0 0 35px;
  height: 0;
  border-top: 1px solid #000;
}
.page-real-estate .real-estate-support__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 10.625rem;
  grid-template-rows: repeat(4, auto);
  column-gap: 2.5rem;
  row-gap: 40px;
}
.page-real-estate .real-estate-support__row {
  grid-column: 1;
  display: grid;
  grid-template-columns: minmax(200px, 44%) minmax(0, 1fr);
  column-gap: 0;
  max-height: 151px;
}
.page-real-estate .real-estate-support__problem {
  display: flex;
  align-items: center;
  padding: 20px 1rem 20px 2.1875rem;
  background: #a7b7b7;
  clip-path: polygon(0 0, calc(100% - 36px - 15px) 0, calc(100% - 15px) 100%, 0 100%);
}
@media (max-width: 1089px) {
  .page-real-estate .real-estate-support__problem {
    padding: 16px 0.625rem 16px 0.875rem;
  }
}
@media (max-width: 767px) {
  .page-real-estate .real-estate-support__problem {
    padding: 12px 0.5rem 12px 0.625rem;
    clip-path: none;
  }
}
.page-real-estate .real-estate-support__problem-text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.15em;
  text-align: center;
  color: #fff;
}
@media (max-width: 1089px) {
  .page-real-estate .real-estate-support__problem-text {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .page-real-estate .real-estate-support__problem-text {
    font-size: 1.125rem;
  }
}
.page-real-estate .real-estate-support__solution {
  display: flex;
  flex-direction: column;
  margin-left: calc(-1 * 36px);
  padding: 20px 2.25rem 20px 4.375rem;
  background: #f6f6f6;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 36px 100%);
}
.page-real-estate .real-estate-support__solution-title {
  margin: 0 0 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #2d5d62;
}
.page-real-estate .real-estate-support__solution-desc {
  margin: 0;
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.15em;
  color: #000;
}
.page-real-estate .real-estate-support__figure {
  grid-column: 2;
  grid-row: 1/3;
  align-self: start;
  justify-self: end;
  width: 10.625rem;
  margin: 0;
}
.page-real-estate .real-estate-support__figure img {
  display: block;
  width: 100%;
  height: auto;
  padding-right: 0.9375rem;
}
.page-real-estate .real-estate-support__closing {
  margin: 65px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  text-align: center;
  color: #231815;
}
@media (max-width: 991px) {
  .page-real-estate .real-estate-support__inner {
    grid-template-columns: minmax(0, 1fr) 8.75rem;
    column-gap: 1rem;
  }
  .page-real-estate .real-estate-support__figure {
    width: 8.75rem;
  }
  .page-real-estate .real-estate-support__problem-text {
    font-size: 1rem;
  }
  .page-real-estate .real-estate-support__solution-title {
    font-size: 1.125rem;
  }
  .page-real-estate .real-estate-support__solution-desc {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .page-real-estate .real-estate-support {
    padding-bottom: 80px;
  }
  .page-real-estate .real-estate-support__title {
    margin-bottom: 24px;
    font-size: 1.75rem;
  }
  .page-real-estate .real-estate-support__rule {
    margin-bottom: 28px;
  }
  .page-real-estate .real-estate-support__inner {
    display: block;
  }
  .page-real-estate .real-estate-support__figure {
    display: none;
  }
  .page-real-estate .real-estate-support__row {
    grid-template-columns: 1fr;
    row-gap: 0;
    max-height: none;
    min-height: 0;
  }
  .page-real-estate .real-estate-support__row:not(:first-child) {
    margin-top: 16px;
  }
  .page-real-estate .real-estate-support__solution {
    margin-left: 0;
    clip-path: none;
    padding: 16px 1rem 20px;
  }
  .page-real-estate .real-estate-support__closing {
    margin-top: 56px;
    font-size: 1.25rem;
  }
}
@media (max-width: 575px) {
  .page-real-estate .real-estate-support {
    padding-bottom: 64px;
  }
  .page-real-estate .real-estate-support__title {
    font-size: 1.5rem;
  }
  .page-real-estate .real-estate-support__problem-text {
    font-size: 0.875rem;
  }
  .page-real-estate .real-estate-support__solution-title {
    font-size: 1rem;
  }
  .page-real-estate .real-estate-support__solution-desc {
    font-size: 0.8125rem;
    line-height: 1.8;
  }
  .page-real-estate .real-estate-support__closing {
    margin-top: 40px;
    font-size: 1.125rem;
    line-height: 1.75;
  }
}
.page-real-estate .real-estate-land-about {
  padding: 0 0 150px;
  background: #fff;
}
.page-real-estate .real-estate-land-about .container {
  max-width: 75rem;
}
@media (max-width: 991px) {
  .page-real-estate .real-estate-land-about .container {
    margin-top: 40px;
  }
}
.page-real-estate .real-estate-land-about__title {
  margin: 0 0 30px;
  font-size: 2.125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: left;
  color: #000;
}
.page-real-estate .real-estate-land-about__rule {
  margin: 0 0 45px;
  height: 0;
  border-top: 1px solid #000;
}
.page-real-estate .real-estate-land-about__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 3.125rem;
  padding-left: 1.25rem;
}
.page-real-estate .real-estate-land-about__list {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-real-estate .real-estate-land-about__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 16.875rem;
  aspect-ratio: 1;
  margin: 0;
  padding: 1.25rem 2.8125rem;
  border-radius: 50%;
  background: #f6f6f6;
  text-align: center;
}
.page-real-estate .real-estate-land-about__item-title {
  flex: 1 1 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  padding-bottom: calc(16px / 2);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #2d5d62;
  white-space: nowrap;
}
.page-real-estate .real-estate-land-about__item-desc {
  flex: 1 1 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  padding-top: calc(16px / 2);
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: #231815;
}
.page-real-estate .real-estate-land-about__figure {
  flex-shrink: 0;
  align-self: center;
  width: 5.875rem;
  margin: 0;
}
.page-real-estate .real-estate-land-about__figure img {
  display: block;
  width: 100%;
  height: auto;
}
.page-real-estate .real-estate-land-about__closing {
  text-align: center;
}
.page-real-estate .real-estate-land-about__closing-text {
  margin: 0 0 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #000;
}
.page-real-estate .real-estate-land-about__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 16.25rem;
  height: 3.8125rem;
  padding: 0.875rem 1.25rem;
  border: 1px solid #231815;
  background: #fff;
  color: #231815;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.page-real-estate .real-estate-land-about__btn:hover {
  opacity: 0.85;
}
.page-real-estate .real-estate-land-about__btn-icon {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  width: 0.625rem;
  height: 0.625rem;
  transform: translateY(-50%);
}
.page-real-estate .real-estate-land-about__btn-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 1089px) {
  .page-real-estate .real-estate-land-about__inner {
    box-sizing: border-box;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .page-real-estate .real-estate-land-about__figure {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-self: stretch;
    width: auto;
  }
  .page-real-estate .real-estate-land-about__figure img {
    display: block;
    width: 5.875rem;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .page-real-estate .real-estate-land-about__inner {
    justify-content: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .page-real-estate .real-estate-land-about__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 3.125rem;
  }
  .page-real-estate .real-estate-land-about__figure img {
    width: 5rem;
  }
  .page-real-estate .real-estate-land-about__item-title {
    font-size: 1.125rem;
  }
  .page-real-estate .real-estate-land-about__item-desc {
    font-size: 0.875rem;
  }
  .page-real-estate .real-estate-land-about__closing-text {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .page-real-estate .real-estate-land-about {
    padding-bottom: 80px;
  }
  .page-real-estate .real-estate-land-about__title {
    margin-bottom: 24px;
    font-size: 1.75rem;
  }
  .page-real-estate .real-estate-land-about__rule {
    margin-bottom: 28px;
  }
  .page-real-estate .real-estate-land-about__inner {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .page-real-estate .real-estate-land-about__item {
    max-width: 17.5rem;
  }
  .page-real-estate .real-estate-land-about__item:nth-child(3) {
    margin-left: auto;
    margin-right: auto;
  }
  .page-real-estate .real-estate-land-about__figure img {
    width: 5rem;
  }
  .page-real-estate .real-estate-land-about__closing {
    margin-top: 56px;
  }
  .page-real-estate .real-estate-land-about__closing-text {
    margin-bottom: 32px;
    font-size: 1.125rem;
  }
}
@media (max-width: 575px) {
  .page-real-estate .real-estate-land-about {
    padding-bottom: 64px;
  }
  .page-real-estate .real-estate-land-about__title {
    font-size: 1.5rem;
  }
  .page-real-estate .real-estate-land-about__item {
    max-width: 15rem;
    padding: 1.25rem 1rem;
  }
  .page-real-estate .real-estate-land-about__item:nth-child(3) {
    margin-left: auto;
    margin-right: auto;
  }
  .page-real-estate .real-estate-land-about__item-title {
    font-size: 1rem;
  }
  .page-real-estate .real-estate-land-about__item-desc {
    font-size: 0.8125rem;
    line-height: 1.8;
  }
  .page-real-estate .real-estate-land-about__closing {
    margin-top: 40px;
  }
  .page-real-estate .real-estate-land-about__closing-text {
    font-size: 1rem;
    line-height: 1.75;
  }
}

#sp-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}
#sp-cta.is-scrolled {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}
@media (min-width: 768px) {
  #sp-cta {
    display: none;
  }
}
#sp-cta .flex {
  display: flex;
}
#sp-cta .flex .contact,
#sp-cta .flex .tel {
  width: 50%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  text-decoration: none;
}
#sp-cta .flex .contact i,
#sp-cta .flex .tel i {
  font-size: 1.5rem;
  color: #fff;
}
#sp-cta .flex .contact {
  background: #baada5;
}
#sp-cta .flex .tel {
  background: #fd9401;
}

/*# sourceMappingURL=style.css.map */
