@charset "UTF-8";
/* ==========================================================================
   株式会社菩提林（BODAIRIN）コーポレートサイト
   style.scss ルーター ＋ デザイントークン ＋ 共通基盤

   ・ブレークポイント / mixin はテンプレ既存に準拠（monitor / pc / tab / sp）
   ・旧テンプレの色・フォント変数も保持（レガシーページのパーシャルが参照するため）
   ・新デザイン（菩提林）はモックのクラス体系で自己完結 → 旧CSSと衝突しない
   ========================================================================== */
/* --------------------------------------------------------------------------
   ブレークポイント（既存準拠）
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   旧テンプレ変数（レガシーページ用・削除しないこと）
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   ★ 菩提林 デザイントークン（新デザインはこの変数群を使用）
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   mixin（既存準拠）
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   リセット ＆ ベース（新デザイン基準）
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #1A1A17;
  background: #FAF7F0;
  line-height: 1.9;
  overflow-x: hidden;
  letter-spacing: 0.04em;
}

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

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

.mincho {
  font-family: "Shippori Mincho", serif;
}

.en {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   レガシー互換ユーティリティ（旧ページが使用）
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .sp {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   ★ 共通レイアウト（新デザイン）
   -------------------------------------------------------------------------- */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px;
}
@media screen and (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
}

/* --------------------------------------------------------------------------
   ★ 共通アニメーション keyframe（落款＝ハンコ押し / バッジ / ズーム）
   instruction §7 に準拠：stamp / stampBadge を全ページ共通で定義
   -------------------------------------------------------------------------- */
@keyframes stamp {
  0% {
    opacity: 0;
    transform: scale(1.9) rotate(-8deg);
  }
  45% {
    opacity: 0.5;
    transform: scale(1.25) rotate(-3deg);
  }
  68% {
    opacity: 1;
    transform: scale(0.84) rotate(1.5deg);
    background: rgba(162, 59, 46, 0.4);
  }
  84% {
    transform: scale(1.05) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    background: rgba(162, 59, 46, 0.1);
  }
}
@keyframes stampBadge {
  0% {
    opacity: 0;
    transform: scale(1.9) rotate(-12deg);
  }
  45% {
    opacity: 0.5;
    transform: scale(1.3) rotate(-7deg);
  }
  68% {
    opacity: 1;
    transform: scale(0.86) rotate(-2deg);
  }
  84% {
    transform: scale(1.05) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(-4deg);
  }
}
@keyframes phZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
/* --------------------------------------------------------------------------
   ★ 共通スクロール演出（IntersectionObserver で .in を付与）
   -------------------------------------------------------------------------- */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 0.8, 0.24, 1);
}
.rv.in {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   @import：新デザイン → レガシー の順
   -------------------------------------------------------------------------- */
/* ==========================================================================
   _header.scss ｜ ヘッダー（共通） + SPメニュー
   ・TOP：FVに被せる透過ヘッダー → スクロールで白（.scrolled）
   ・下層：最初から白（.is-solid）
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 44px;
  transition: 0.4s;
  background: linear-gradient(to bottom, rgba(27, 67, 50, 0.55), transparent);
}
@media screen and (max-width: 640px) {
  .header {
    padding: 14px 20px;
  }
}
.header {
  /* スクロール後 / 下層：白ヘッダー */
}
.header.scrolled, .header.is-solid {
  background: rgba(250, 247, 240, 0.96);
  box-shadow: 0 1px 20px rgba(27, 67, 50, 0.08);
  padding: 12px 44px;
}
@media screen and (max-width: 640px) {
  .header.scrolled, .header.is-solid {
    padding: 10px 20px;
  }
}
.header.scrolled .h-logo-name,
.header.scrolled .h-nav a,
.header.scrolled .h-time, .header.is-solid .h-logo-name,
.header.is-solid .h-nav a,
.header.is-solid .h-time {
  color: #1A1A17;
}
.header.scrolled .h-tel, .header.is-solid .h-tel {
  color: #1B4332;
}
.header.scrolled .h-burger span, .header.is-solid .h-burger span {
  background: #1A1A17;
}

/* ----- ロゴ ----- */
.h-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.h-logo .h-logo-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-logo .h-logo-mark img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.25));
}

.h-logo-name {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: 0.4s;
}
.h-logo-name small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  opacity: 0.7;
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
}

/* ----- 右側（ナビ・連絡先・CTA） ----- */
.h-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.h-nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
}
.h-nav a {
  color: #fff;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  transition: 0.3s;
  position: relative;
  padding-bottom: 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.25;
}
.h-nav a small {
  font-family: "Cormorant Garamond", serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  opacity: 0.6;
  margin-top: 3px;
  font-weight: 400;
}
.h-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #C9A227;
  transition: 0.3s;
}
.h-nav a:hover::after, .h-nav a.active::after {
  width: 100%;
}

.h-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.4;
}
.h-contact .h-tel {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.05em;
}
.h-contact .h-time {
  color: #fff;
  font-size: 10px;
  opacity: 0.85;
}

.h-cta {
  background: #C9A227;
  color: #1B4332 !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: 0.3s;
  white-space: nowrap;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}
.h-cta small {
  font-family: "Cormorant Garamond", serif;
  font-size: 8.5px;
  letter-spacing: 0.2em;
  opacity: 0.75;
  margin-top: 2px;
}
.h-cta:hover {
  background: #1B4332;
  color: #E8D5A3 !important;
  box-shadow: 0 6px 18px rgba(27, 67, 50, 0.3);
}

/* ----- バーガー（〜1024px で表示） ----- */
.h-burger {
  display: none;
}

@media screen and (max-width: 1024px) {
  .h-nav,
  .h-contact,
  .h-cta {
    display: none;
  }
  .h-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
  }
  .h-burger span {
    width: 26px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }
}
/* ==========================================================================
   SPメニュー（深緑フルスクリーン）
   ========================================================================== */
.m-nav {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: #1B4332;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 0.8, 0.24, 1), visibility 0.5s;
}
.m-nav.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.m-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-close span {
  position: absolute;
  width: 26px;
  height: 2px;
  background: #E8D5A3;
  transition: 0.3s;
}
.m-close span:first-child {
  transform: rotate(45deg);
}
.m-close span:last-child {
  transform: rotate(-45deg);
}
.m-close:hover span {
  background: #C9A227;
}

.m-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.m-nav-inner a {
  font-family: "Shippori Mincho", serif;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 14px 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 0.8, 0.24, 1), color 0.3s;
}
.m-nav-inner a small {
  display: block;
  font-family: "Cormorant Garamond", serif;
  color: #C9A227;
  font-size: 11px;
  letter-spacing: 0.3em;
  margin-top: 4px;
  font-weight: 400;
  text-align: center;
}
.m-nav-inner a:hover {
  color: #E8D5A3;
}

.m-nav.open .m-nav-inner a {
  opacity: 1;
  transform: none;
}
.m-nav.open .m-nav-inner a:nth-child(1) {
  transition-delay: 0.12s;
}
.m-nav.open .m-nav-inner a:nth-child(2) {
  transition-delay: 0.18s;
}
.m-nav.open .m-nav-inner a:nth-child(3) {
  transition-delay: 0.24s;
}
.m-nav.open .m-nav-inner a:nth-child(4) {
  transition-delay: 0.3s;
}
.m-nav.open .m-nav-inner a:nth-child(5) {
  transition-delay: 0.36s;
}
.m-nav.open .m-nav-inner a:nth-child(6) {
  transition-delay: 0.42s;
}
.m-nav.open .m-nav-inner a:nth-child(7) {
  transition-delay: 0.48s;
}

.m-nav-foot {
  position: absolute;
  bottom: 46px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease 0.5s;
}
.m-nav-foot .m-tel {
  display: block;
  font-family: "Cormorant Garamond", serif;
  color: #E8D5A3;
  font-size: 24px;
  letter-spacing: 0.05em;
}
.m-nav-foot .m-time {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.m-nav.open .m-nav-foot {
  opacity: 1;
}

body.m-open {
  overflow: hidden;
}

/* ==========================================================================
   _footer.scss ｜ フッター（共通）＋ ページトップボタン
   ========================================================================== */
.site-footer {
  background: #1A1A17;
  color: #fff;
  padding: 78px 0 30px;
}
.site-footer .foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 1024px) {
  .site-footer .foot-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.site-footer .foot-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.site-footer .foot-logo .mark {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer .foot-logo .mark img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer .foot-logo .name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho", serif;
}
.site-footer .foot-logo .name small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  opacity: 0.6;
  font-family: "Cormorant Garamond", serif;
}
.site-footer .foot-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2;
  margin-bottom: 2px;
}
.site-footer .foot-info .lic {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 14px;
  line-height: 1.9;
}
.site-footer .foot-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.site-footer .foot-nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  transition: 0.3s;
}
.site-footer .foot-nav a::before {
  content: "—";
  color: #C9A227;
  margin-right: 10px;
  opacity: 0.5;
}
.site-footer .foot-nav a .en {
  font-size: 11px;
  opacity: 0.55;
  margin-left: 4px;
}
.site-footer .foot-nav a:hover {
  color: #C9A227;
}
.site-footer .foot-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.1em;
}

/* ----- ページトップへ戻る ----- */
.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1B4332;
  color: #E8D5A3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, background 0.3s;
}
.back-to-top:hover {
  background: #C9A227;
  color: #1B4332;
}
@media screen and (max-width: 640px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

/* ----- 動きを減らす ----- */
.no-motion * {
  animation: none !important;
  transition: none !important;
}

/* ==========================================================================
   _front-page.scss ｜ TOP（front-page.php）
   ローディング / FV / ABOUT / 森グロー / SERVICE / PROPERTY / STAY / CR / CONTACT
   ========================================================================== */
/* ====== セクション共通見出し（sec-head） ====== */
.sec-head {
  text-align: center;
  margin-bottom: 56px;
}
.sec-head .mark-tree {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: block;
  opacity: 0.95;
  animation: markIn 1.2s cubic-bezier(0.16, 0.8, 0.24, 1) both;
}
.sec-head .en {
  display: block;
  font-size: clamp(40px, 6vw, 76px);
  color: #2D5A3D;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  background: linear-gradient(100deg, #2D5A3D 40%, #E8D5A3 50%, #2D5A3D 60%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position: 100% 0;
}
.sec-head.in .en {
  animation: sheen 2.4s ease forwards 0.3s;
}
.sec-head .jp {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: #C9A227;
  position: relative;
  padding: 0 28px;
}
.sec-head .jp::before, .sec-head .jp::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: #C9A227;
}
.sec-head .jp::before {
  left: -4px;
}
.sec-head .jp::after {
  right: -4px;
}

@keyframes markIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.8);
  }
  to {
    opacity: 0.95;
    transform: none;
  }
}
@keyframes sheen {
  to {
    background-position: 0 0;
  }
}
/* ====== リビール（TOP用バリエーション） ====== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.16, 0.8, 0.24, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-slow {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.8s ease, transform 1.8s cubic-bezier(0.16, 0.8, 0.24, 1);
}
.reveal-slow.in {
  opacity: 1;
  transform: none;
}

.reveal-lines > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.4s ease, transform 1.4s cubic-bezier(0.16, 0.8, 0.24, 1);
}

.reveal-lines.in > * {
  opacity: 1;
  transform: none;
}

.reveal-lines.in > *:nth-child(2) {
  transition-delay: 0.15s;
}

.reveal-lines.in > *:nth-child(3) {
  transition-delay: 0.3s;
}

.reveal-lines.in > *:nth-child(4) {
  transition-delay: 0.45s;
}

/* 文字ごと浮き上がり（char-rise） */
.char-rise .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.4s ease, transform 1.4s cubic-bezier(0.16, 0.8, 0.24, 1);
}
.char-rise .ch.sp {
  width: 0.4em;
}

.char-rise.in .ch {
  opacity: 1;
  transform: none;
}

/* 本文段落ごとフェード（落款アイコンは除外 → stampと競合させない） */
.serv-card.reveal > *:not(.serv-icon),
.stay-feat > *:not(.stay-ico) {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.3s ease, transform 1.3s cubic-bezier(0.16, 0.8, 0.24, 1);
}

.serv-card.reveal.in > *:not(.serv-icon),
.stay-feat.in > *:not(.stay-ico) {
  opacity: 1;
  transform: none;
}

.serv-card.reveal.in > *:nth-child(2):not(.serv-icon) {
  transition-delay: 0.12s;
}

.serv-card.reveal.in > *:nth-child(3):not(.serv-icon) {
  transition-delay: 0.24s;
}

.serv-card.reveal.in > *:nth-child(4):not(.serv-icon) {
  transition-delay: 0.36s;
}

.serv-card.reveal.in > *:nth-child(5):not(.serv-icon) {
  transition-delay: 0.48s;
}

.stay-feat.in > *:nth-child(2):not(.stay-ico) {
  transition-delay: 0.12s;
}

.stay-feat.in > *:nth-child(3):not(.stay-ico) {
  transition-delay: 0.24s;
}

/* ====== LOADING ====== */
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #1B4332;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 1.4s ease 3.4s, visibility 1.4s ease 3.4s;
}
#loading.done {
  opacity: 0;
  visibility: hidden;
}

.load-logo {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: logoStamp 1.1s cubic-bezier(0.2, 1.1, 0.3, 1) forwards 0.5s;
}
.load-logo img {
  width: 84%;
  position: relative;
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.4));
}

@keyframes logoStamp {
  0% {
    opacity: 0;
    transform: scale(2.1) rotate(-9deg);
  }
  40% {
    opacity: 0.55;
    transform: scale(1.45) rotate(-4deg);
  }
  64% {
    opacity: 1;
    transform: scale(0.9) rotate(1.5deg);
  }
  82% {
    transform: scale(1.04) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
.load-name {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  position: relative;
  border: 2px solid #e0857a;
  border-radius: 8px;
  background: rgba(162, 59, 46, 0.12);
  font-family: "Shippori Mincho", serif;
  color: #e0857a;
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.18em;
  opacity: 0;
  animation: stampName 1s cubic-bezier(0.2, 1.1, 0.3, 1) forwards 1.6s;
}
.load-name::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(232, 213, 163, 0.5);
  border-radius: 5px;
}

@keyframes stampName {
  0% {
    opacity: 0;
    transform: scale(2) rotate(-8deg);
  }
  45% {
    opacity: 0.5;
    transform: scale(1.35) rotate(-3deg);
  }
  68% {
    opacity: 1;
    transform: scale(0.86) rotate(1.5deg);
  }
  84% {
    transform: scale(1.05) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
/* ====== FV（ファーストビュー） ====== */
#fv {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #1B4332;
}

.fv-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 18s ease-out infinite alternate;
  opacity: 0;
  transition: opacity 2s;
}
.fv-img.active {
  opacity: 1;
}

@keyframes kenburns {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}
.fv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27, 67, 50, 0.78) 0%, rgba(27, 67, 50, 0.35) 55%, rgba(27, 67, 50, 0.15) 100%);
}

.fv-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)'/%3E%3C/svg%3E");
}

.fv-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 44px;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .fv-inner {
    padding: 0 24px;
  }
}

.fv-eyebrow {
  color: #E8D5A3;
  font-size: 13px;
  letter-spacing: 0.5em;
  margin-bottom: 30px;
  opacity: 0;
  animation: up 1.6s ease forwards 2.9s;
  padding-left: 0.5em;
}
.fv-eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #C9A227;
  vertical-align: middle;
  margin-right: 18px;
}

.fv-title {
  font-family: "Shippori Mincho", serif;
  color: #fff;
  font-size: clamp(34px, 5.2vw, 72px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  /* キャッチは1フィールド（fv_title）に直接HTML入力：
     ・簡易版 → プレーン文＋<br>（全体がふわっとフェードイン）
     ・演出版 → 各行を <span class="ln"><i>…行…</i></span> で包む（1行ずつ下からスライド）
     ・金色強調 → <em class="accent">…</em> */
  opacity: 0;
  animation: fvFade 1.6s ease forwards 3.1s;
}
.fv-title .accent {
  color: #E8D5A3;
}
.fv-title {
  /* 行ごとスライド演出（フィールドで .ln を付けた時だけ有効） */
}
.fv-title .ln {
  display: block;
  overflow: hidden;
}
.fv-title .ln i {
  display: block;
  font-style: normal;
  transform: translateY(110%);
  animation: up2 1.9s cubic-bezier(0.16, 0.8, 0.24, 1) forwards 3.1s;
}
.fv-title .ln:nth-child(2) i {
  animation-delay: 3.5s;
}
.fv-title .ln:nth-child(3) i {
  animation-delay: 3.9s;
}

@keyframes fvFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fv-sub {
  font-family: "Cormorant Garamond", serif;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.6vw, 22px);
  font-style: italic;
  letter-spacing: 0.1em;
  margin-top: 28px;
  opacity: 0;
  animation: up 2s ease forwards 4.6s;
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes up2 {
  to {
    transform: translateY(0);
  }
}
@keyframes fadein {
  to {
    opacity: 1;
  }
}
.fv-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadein 1s ease forwards 4s;
}
.fv-scroll::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(#C9A227, transparent);
  animation: scrollline 2s ease-in-out infinite;
}

@keyframes scrollline {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.fv-dots {
  position: absolute;
  bottom: 40px;
  right: 44px;
  z-index: 4;
  display: flex;
  gap: 10px;
}
.fv-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #E8D5A3;
  cursor: pointer;
  transition: 0.3s;
}
.fv-dots span.on {
  background: #C9A227;
  border-color: #C9A227;
}

/* ====== ABOUT ====== */
#about {
  padding: 0 0 130px;
  position: relative;
  overflow: hidden;
}

.about-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .about-wrap {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 640px) {
  .about-wrap {
    padding: 0 20px;
  }
}

.about-txt {
  padding: 70px 70px 70px 0;
}
@media screen and (max-width: 1024px) {
  .about-txt {
    padding: 50px 0;
  }
}
.about-txt .label {
  color: #C9A227;
  letter-spacing: 0.4em;
  font-size: 12px;
  margin-bottom: 22px;
}
.about-txt h2 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.7;
  color: #1B4332;
  font-weight: 600;
  margin-bottom: 30px;
}
.about-txt h2 em {
  font-style: normal;
  color: #C9A227;
}
.about-txt p {
  font-size: 15px;
  color: #3D3A33;
  line-height: 2.2;
  margin-bottom: 18px;
}

.about-img {
  position: relative;
  height: 560px;
}
@media screen and (max-width: 1024px) {
  .about-img {
    height: 400px;
    margin-bottom: 50px;
  }
}
.about-img .main {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  animation: slowZoom 20s ease-in-out infinite alternate;
}
.about-img .frame {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 100%;
  height: 100%;
  border: 1px solid #C9A227;
  border-radius: 2px;
  z-index: -1;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}
.about-seal {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #1B4332;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8D5A3;
  box-shadow: 0 14px 40px rgba(27, 67, 50, 0.3);
}
.about-seal .seal-txt {
  font-size: 26px;
  letter-spacing: 0.15em;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

/* ====== 森グロー区切り ====== */
.grove {
  padding: 30px 44px 0;
  background: #FAF7F0;
  text-align: center;
  position: relative;
}

.grove-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 18px;
}
.grove-line span {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A227);
}
.grove-line span:last-child {
  background: linear-gradient(90deg, #C9A227, transparent);
}
.grove-line em {
  font-style: normal;
  color: #C9A227;
  font-size: 28px;
  line-height: 1;
}

.grove-copy {
  color: #2D5A3D;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.grove-svg {
  width: 100%;
  max-width: 1040px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.grove-svg .g-ground {
  fill: none;
  stroke: #C9A227;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
}

.grove.in .g-ground {
  animation: draw 1.4s ease forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.g-first .g-trunk {
  fill: none;
  stroke: #1B4332;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 96;
  stroke-dashoffset: 96;
}

.grove.in .g-first .g-trunk {
  animation: draw 1s cubic-bezier(0.4, 0.1, 0.3, 1) forwards 0.5s;
}

.g-first .g-canopy {
  fill: #1B4332;
  opacity: 0;
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center bottom;
}

.grove.in .g-first .g-canopy {
  animation: canopyGrow 1.1s cubic-bezier(0.3, 1.2, 0.5, 1) forwards 1.3s;
}

@keyframes canopyGrow {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.grove-svg .g-mid path {
  fill: #2D5A3D;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transform-box: fill-box;
  transform-origin: center bottom;
}

.grove.in .g-mid path {
  animation: treeRise 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.grove.in .g-mid path:nth-child(1) {
  animation-delay: 2s;
}

.grove.in .g-mid path:nth-child(2) {
  animation-delay: 2.15s;
}

.grove-svg .g-back path {
  fill: #4A7C59;
  opacity: 0;
  transform: translateY(14px) scale(0.9);
  transform-box: fill-box;
  transform-origin: center bottom;
}

.grove.in .g-back path {
  animation: treeRiseBack 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.grove.in .g-back path:nth-child(1) {
  animation-delay: 2.5s;
}

.grove.in .g-back path:nth-child(2) {
  animation-delay: 2.7s;
}

.grove.in .g-back path:nth-child(3) {
  animation-delay: 2.65s;
}

.grove.in .g-back path:nth-child(4) {
  animation-delay: 2.85s;
}

@keyframes treeRise {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes treeRiseBack {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.9);
  }
  to {
    opacity: 0.55;
    transform: none;
  }
}
/* ====== SERVICE ====== */
#service {
  padding: 120px 44px;
  background: #1B4332;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  #service {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#service .sec-head .en {
  background: linear-gradient(100deg, #E8D5A3 40%, #fff 50%, #E8D5A3 60%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
#service .sec-head .jp {
  color: #C9A227;
}

.serv-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .serv-grid {
    grid-template-columns: 1fr;
  }
}

.serv-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.25);
  padding: 48px 36px;
  transition: 0.45s;
  position: relative;
  overflow: hidden;
}
.serv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #C9A227;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.45s;
}
.serv-card:hover {
  background: rgba(201, 162, 39, 0.06);
  transform: translateY(-8px);
}
.serv-card:hover::before {
  transform: scaleX(1);
}
.serv-card .serv-num {
  color: #C9A227;
  font-size: 15px;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  display: block;
}
.serv-card h3 {
  font-family: "Shippori Mincho", serif;
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 8px;
}
.serv-card .sub {
  color: #E8D5A3;
  font-style: italic;
  font-size: 15px;
  margin-bottom: 22px;
  letter-spacing: 0.05em;
}
.serv-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  line-height: 2;
}

/* 落款アイコン（漢字一文字・印） */
.serv-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #a23b2e;
  border-radius: 6px;
  background: rgba(162, 59, 46, 0.14);
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
  color: #e0857a;
  line-height: 1;
  opacity: 0;
}
.serv-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(162, 59, 46, 0.45);
  border-radius: 3px;
}
.serv-icon span {
  position: relative;
}

.serv-card.in .serv-icon {
  animation: stamp 0.95s cubic-bezier(0.2, 1.2, 0.3, 1) forwards 0.4s;
}

.serv-grid .serv-card:nth-child(2).in .serv-icon {
  animation-delay: 0.75s;
}

.serv-grid .serv-card:nth-child(3).in .serv-icon {
  animation-delay: 1.1s;
}

/* ====== PROPERTY（物件・主役） ====== */
#property {
  padding: 130px 44px;
  background: #F4EFE3;
  position: relative;
}
@media screen and (max-width: 640px) {
  #property {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.prop-lead {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
  color: #3D3A33;
  font-size: 15px;
  line-height: 2.1;
}

.prop-tabs {
  max-width: 1240px;
  margin: 0 auto;
}

.prop-cat {
  margin-bottom: 64px;
}

.prop-cat-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.prop-cat-head h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  color: #1B4332;
  font-weight: 600;
  padding-left: 18px;
  border-left: 3px solid #C9A227;
}
.prop-cat-head .en {
  color: #C9A227;
  font-size: 15px;
  letter-spacing: 0.15em;
  font-style: italic;
}
.prop-cat-head .line {
  flex: 1;
  height: 1px;
  background: rgba(27, 67, 50, 0.12);
}
@media screen and (max-width: 768px) {
  .prop-cat-head {
    flex-wrap: wrap;
    gap: 8px 14px;
  }
  .prop-cat-head h3 {
    font-size: 19px;
    padding-left: 14px;
  }
  .prop-cat-head .en {
    font-size: 12px;
  }
  .prop-cat-head .line {
    flex-basis: 100%;
  }
}

@media screen and (max-width: 768px) {
  .prop-lead br {
    display: none;
  }
}

.prop-empty {
  grid-column: 1/-1;
  color: #3D3A33;
  font-size: 14px;
  padding: 20px 0;
}

/* TOPの物件一覧ボタン */
.prop-btn-wrap {
  text-align: center;
  margin-top: 34px;
}

.prop-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1B4332;
  color: #E8D5A3;
  padding: 14px 38px;
  font-size: 13px;
  letter-spacing: 0.15em;
  border-radius: 1px;
  transition: 0.3s;
}
.prop-cta:hover {
  background: #C9A227;
  color: #1B4332;
  gap: 20px;
}

/* ====== STAY ====== */
#stay {
  position: relative;
  padding: 130px 44px;
  background: #1B4332;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  #stay {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#stay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(27, 67, 50, 0.74), rgba(27, 67, 50, 0.88));
  z-index: 1;
}

.stay-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.14;
}

.stay-crest {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, 92vw);
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
  animation: crestBreath 12s ease-in-out infinite;
}
.stay-crest img {
  width: 100%;
  display: block;
}

@keyframes crestBreath {
  0%, 100% {
    opacity: 0.26;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.34;
    transform: translate(-50%, -50%) scale(1.03);
  }
}
.stay-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.stay-inner .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6vw, 80px);
  color: #E8D5A3;
  line-height: 1;
}
.stay-inner .jp-label {
  color: #C9A227;
  letter-spacing: 0.4em;
  font-size: 13px;
  margin: 14px 0 36px;
  display: inline-block;
}
.stay-inner h2 {
  font-family: "Shippori Mincho", serif;
  color: #fff;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 26px;
}
.stay-inner > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 2.2;
  max-width: 680px;
  margin: 0 auto 50px;
}

.stay-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 162, 39, 0.3);
  border: 1px solid rgba(201, 162, 39, 0.3);
  margin-bottom: 46px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .stay-feats {
    grid-template-columns: 1fr;
  }
}

.stay-feat {
  background: rgba(20, 50, 38, 0.78);
  backdrop-filter: blur(2px);
  padding: 36px 24px;
}
.stay-feat h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "Shippori Mincho", serif;
}
.stay-feat p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12.5px;
  line-height: 1.9;
}

.stay-ico {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #a23b2e;
  border-radius: 6px;
  background: rgba(162, 59, 46, 0.2);
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  color: #e0857a;
  line-height: 1;
  opacity: 0;
}
.stay-ico::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(162, 59, 46, 0.5);
  border-radius: 3px;
}
.stay-ico span {
  position: relative;
}

.stay-feat.in .stay-ico {
  animation: stamp 0.95s cubic-bezier(0.2, 1.2, 0.3, 1) forwards 0.35s;
}

.stay-feats .stay-feat:nth-child(2).in .stay-ico {
  animation-delay: 0.65s;
}

.stay-feats .stay-feat:nth-child(3).in .stay-ico {
  animation-delay: 0.95s;
}

.stay-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #C9A227;
  color: #1B4332;
  padding: 15px 42px;
  font-size: 13.5px;
  letter-spacing: 0.15em;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.stay-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
}
.stay-cta:hover::after {
  animation: shine 0.9s ease;
}
.stay-cta:hover {
  background: #fff;
  gap: 22px;
}

@keyframes shine {
  to {
    left: 160%;
  }
}
/* ====== COMPANY / CONTACT 分割 ====== */
#cr {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1024px) {
  #cr {
    grid-template-columns: 1fr;
  }
}
#cr {
  /* 会社概要のみ（全幅） */
}
#cr.cr--single {
  grid-template-columns: 1fr;
}

.cr-box {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cr-box .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: 0.7s;
}
.cr-box:hover .bg {
  transform: scale(1.06);
}
.cr-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.6);
  transition: 0.4s;
}
.cr-box:hover::after {
  background: rgba(27, 67, 50, 0.45);
}
.cr-box .txt {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.cr-box .txt h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 6px;
}
.cr-box .txt .en {
  font-family: "Cormorant Garamond", serif;
  color: #E8D5A3;
  font-size: 15px;
  letter-spacing: 0.2em;
}
.cr-box .txt .arrow {
  margin-top: 18px;
  display: inline-block;
  width: 44px;
  height: 44px;
  border: 1px solid #E8D5A3;
  border-radius: 50%;
  line-height: 44px;
  color: #E8D5A3;
  transition: 0.3s;
}
.cr-box:hover .txt .arrow {
  background: #C9A227;
  color: #1B4332;
  border-color: #C9A227;
}

/* ====== CONTACT ====== */
#contact {
  position: relative;
  padding: 120px 44px;
  text-align: center;
  background: #FAF7F0;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  #contact {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#contact > .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 6vw, 72px);
  color: #2D5A3D;
  line-height: 1;
}
#contact > .jp-label {
  color: #C9A227;
  letter-spacing: 0.4em;
  font-size: 13px;
  margin: 12px 0 30px;
  display: inline-block;
}
#contact p {
  color: #3D3A33;
  font-size: 15px;
  margin-bottom: 40px;
  line-height: 2;
}

.contact-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .contact-btns {
    flex-direction: column;
  }
}

.cbtn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 44px;
  font-size: 15px;
  letter-spacing: 0.1em;
  transition: 0.3s;
  border-radius: 1px;
}
.cbtn.tel {
  background: #fff;
  color: #1B4332;
  border: 1px solid #1B4332;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
}
.cbtn.tel:hover {
  background: #1B4332;
  color: #E8D5A3;
}
.cbtn.mail {
  background: #1B4332;
  color: #E8D5A3;
}
.cbtn.mail:hover {
  background: #C9A227;
  color: #1B4332;
  gap: 22px;
}

/* ==========================================================================
   _lower.scss ｜ 下層ページ共通コンポーネント
   page-hero / crumb / sec / sec-ttl / lead / intro / flist+fcard
   / sfeat / greenband / ctable / cform … を集約（各下層ページが共用）
   ========================================================================== */
/* ====== ページヒーロー ====== */
.page-hero {
  position: relative;
  height: 46vh;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #1B4332;
}
.page-hero .ph-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  animation: phZoom 18s ease-in-out infinite alternate;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(27, 67, 50, 0.55), rgba(27, 67, 50, 0.78));
}
.page-hero .ph-in {
  position: relative;
  z-index: 2;
  padding-top: 60px;
}
.page-hero .ph-crest {
  width: 64px;
  margin: 0 auto 20px;
  opacity: 0.95;
}
.page-hero h1 {
  font-family: "Shippori Mincho", serif;
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: 0.14em;
}
.page-hero .ph-en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  color: #E8D5A3;
  font-size: 14px;
  letter-spacing: 0.4em;
  margin-top: 14px;
  font-style: italic;
}

/* ====== パンくず ====== */
.crumb {
  background: #F4EFE3;
  padding: 16px 0;
  font-size: 12px;
  color: #3D3A33;
  letter-spacing: 0.06em;
}
.crumb a {
  color: #2D5A3D;
}
.crumb span {
  margin: 0 10px;
  color: #C9A227;
}

/* ====== セクション共通 ====== */
.sec {
  padding: 90px 0;
}

.sec-ttl {
  text-align: center;
  margin-bottom: 54px;
}
.sec-ttl .jp {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: #1B4332;
  letter-spacing: 0.16em;
  position: relative;
  display: inline-block;
  padding: 0 40px;
}
.sec-ttl .jp::before, .sec-ttl .jp::after {
  content: "";
  position: absolute;
  top: 55%;
  width: 26px;
  height: 1px;
  background: #C9A227;
}
.sec-ttl .jp::before {
  left: 0;
}
.sec-ttl .jp::after {
  right: 0;
}

.lead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
  color: #3D3A33;
  font-size: 15px;
  line-height: 2.1;
}
@media screen and (max-width: 768px) {
  .lead br {
    display: none;
  }
}

/* ====== イントロブロック（画像＋テキスト） ====== */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.intro-img {
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .intro-img {
    height: 300px;
  }
}
.intro-img .fr {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid #C9A227;
  z-index: -1;
}

.intro-txt h2 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(22px, 2.4vw, 30px);
  color: #1B4332;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 22px;
}
.intro-txt h2 em {
  font-style: normal;
  color: #C9A227;
}
.intro-txt p {
  font-size: 14.5px;
  color: #3D3A33;
  line-height: 2.1;
  margin-bottom: 16px;
}

/* ====== 特徴リスト（fcard）＋ 落款アイコン ====== */
.flist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .flist {
    grid-template-columns: 1fr;
  }
}

.fcard {
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.25);
  padding: 40px 30px;
  border-radius: 2px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
.fcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #C9A227;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}
.fcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(27, 67, 50, 0.1);
}
.fcard:hover::before {
  transform: scaleX(1);
}
.fcard .ico {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #a23b2e;
  border-radius: 6px;
  background: rgba(162, 59, 46, 0.1);
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  color: #a23b2e;
  line-height: 1;
  opacity: 0;
}
.fcard .ico::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(162, 59, 46, 0.4);
  border-radius: 3px;
}
.fcard .ico span {
  position: relative;
}
.fcard h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  color: #1B4332;
  font-weight: 600;
  margin-bottom: 12px;
}
.fcard p {
  font-size: 13.5px;
  color: #3D3A33;
  line-height: 1.95;
}

/* 落款スタンプ発火（.fcard.in） */
.fcard.in .ico {
  animation: stamp 0.95s cubic-bezier(0.2, 1.2, 0.3, 1) forwards 0.25s;
}

.flist .fcard:nth-child(2).in .ico {
  animation-delay: 0.55s;
}

.flist .fcard:nth-child(3).in .ico {
  animation-delay: 0.85s;
}

.flist .fcard:nth-child(4).in .ico {
  animation-delay: 0.55s;
}

.flist .fcard:nth-child(5).in .ico {
  animation-delay: 0.85s;
}

.flist .fcard:nth-child(6).in .ico {
  animation-delay: 1.15s;
}

/* ====== STAY 3サービス（sfeat / 下層 stayページ） ====== */
.sfeat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .sfeat {
    grid-template-columns: 1fr;
  }
}
.sfeat .sf {
  text-align: center;
  padding: 36px 24px;
  background: #F4EFE3;
  border-radius: 2px;
}
.sfeat .sf .ic {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #a23b2e;
  border-radius: 6px;
  background: rgba(162, 59, 46, 0.1);
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  color: #a23b2e;
  line-height: 1;
  opacity: 0;
}
.sfeat .sf .ic::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(162, 59, 46, 0.4);
  border-radius: 3px;
}
.sfeat .sf .ic span {
  position: relative;
}
.sfeat .sf h4 {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  color: #1B4332;
  margin-bottom: 10px;
}
.sfeat .sf p {
  font-size: 13px;
  color: #3D3A33;
  line-height: 1.9;
}

.sf.in .ic {
  animation: stamp 0.95s cubic-bezier(0.2, 1.2, 0.3, 1) forwards 0.25s;
}

.sfeat .sf:nth-child(2).in .ic {
  animation-delay: 0.55s;
}

.sfeat .sf:nth-child(3).in .ic {
  animation-delay: 0.85s;
}

/* ====== グリーンバンド（下層CTA帯） ====== */
.greenband {
  background: #1B4332;
  color: #fff;
  padding: 70px 0;
  text-align: center;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}
.greenband .gb-crest {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 80vw);
  transform: translate(-50%, -50%);
  opacity: 0.12;
  pointer-events: none;
}
.greenband h3 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}
.greenband p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto 28px;
}

.gb-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #C9A227;
  color: #1B4332;
  padding: 14px 38px;
  font-size: 13px;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: 0.3s;
}
.gb-cta:hover {
  background: #fff;
  gap: 20px;
}

/* ====== 会社概要テーブル（ctable） ====== */
.ctable {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid rgba(27, 67, 50, 0.12);
}
.ctable dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid rgba(27, 67, 50, 0.12);
}
@media screen and (max-width: 1024px) {
  .ctable dl {
    grid-template-columns: 1fr;
  }
}
.ctable dt {
  padding: 22px 20px;
  font-family: "Shippori Mincho", serif;
  color: #1B4332;
  font-weight: 600;
  background: #F4EFE3;
  font-size: 14px;
}
.ctable dd {
  padding: 22px 20px;
  font-size: 14px;
  color: #3D3A33;
}

/* ====== プライバシーポリシー等（.legal） ====== */
.legal {
  max-width: 840px;
  margin: 0 auto;
  color: #3D3A33;
  font-size: 14.5px;
  line-height: 2;
}
.legal .legal-lead {
  margin-bottom: 30px;
}
.legal h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  color: #1B4332;
  font-weight: 600;
  margin: 34px 0 12px;
  padding-left: 14px;
  border-left: 3px solid #C9A227;
}
.legal p {
  margin-bottom: 14px;
}
.legal ul {
  margin: 0 0 16px 1.3em;
  list-style: disc;
}
.legal ul li {
  margin-bottom: 6px;
}
.legal .legal-company {
  background: #F4EFE3;
  border: 1px solid rgba(201, 162, 39, 0.25);
  padding: 20px 24px;
  margin-top: 14px;
  border-radius: 2px;
}
.legal .legal-company p {
  margin-bottom: 4px;
}

/* ====== お問い合わせ（cform / cinfo） ====== */
.cinfo {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 54px;
  flex-wrap: wrap;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .cinfo {
    gap: 26px;
  }
}
.cinfo .ci-item .lb {
  font-size: 11px;
  color: #C9A227;
  letter-spacing: 0.2em;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}
.cinfo .ci-item .vl {
  font-size: 18px;
  color: #1B4332;
  font-weight: 600;
  margin-top: 4px;
}

.cform {
  max-width: 720px;
  margin: 0 auto;
}
.cform .frow {
  margin-bottom: 26px;
}
.cform .frow label {
  display: block;
  font-size: 13px;
  color: #1B4332;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.cform .frow label .req {
  color: #5a5a52;
  font-size: 11px;
  margin-left: 8px;
}
.cform .frow input, .cform .frow textarea, .cform .frow select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(27, 67, 50, 0.2);
  border-radius: 2px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  transition: 0.3s;
}
.cform .frow input:focus, .cform .frow textarea:focus, .cform .frow select:focus {
  outline: none;
  border-color: #C9A227;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}
.cform .frow textarea {
  min-height: 140px;
  resize: vertical;
}
.cform .fsubmit {
  text-align: center;
  margin-top: 36px;
}
.cform .fbtn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #1B4332;
  color: #E8D5A3;
  padding: 16px 54px;
  font-size: 15px;
  letter-spacing: 0.12em;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.cform .fbtn:hover {
  background: #C9A227;
  color: #1B4332;
  gap: 22px;
}

/* ==========================================================================
   _property-card.scss ｜ 物件カード（TOP / 物件情報 / アーカイブ 共用）
   .pgrid（グリッド）.pcard / .pthumb / .pstatus（落款バッジ）/ .pbody
   ※ステータスバッジは親 .pgrid に .in が付いた時にハンコ演出（stampBadge）
   ========================================================================== */
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media screen and (max-width: 1024px) {
  .pgrid {
    grid-template-columns: 1fr;
  }
}

.pcard {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.06);
  transition: 0.4s;
  cursor: pointer;
  display: block;
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(27, 67, 50, 0.14);
}
.pcard:hover .pthumb img {
  transform: scale(1.06);
}

.pthumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.pthumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
}

/* 落款ステータスバッジ */
.pstatus {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 7px 11px;
  border-radius: 4px;
  border: 1.5px solid #a23b2e;
  color: #a23b2e;
  background: rgba(250, 247, 240, 0.92);
  transform: rotate(-4deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  opacity: 0;
}
.pstatus::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid currentColor;
  border-radius: 2px;
  opacity: 0.5;
}
.pstatus.sold {
  border-color: #5a5a52;
  color: #5a5a52;
}
.pstatus.talk {
  border-color: #C9A227;
  color: #9a7d1e;
}

/* バッジのハンコ演出（親グリッドが画面内に入ったら） */
.pgrid.in .pstatus {
  animation: stampBadge 1s cubic-bezier(0.2, 1.2, 0.3, 1) forwards 0.35s;
}

.pgrid.in .pcard:nth-child(2) .pstatus {
  animation-delay: 0.65s;
}

.pgrid.in .pcard:nth-child(3) .pstatus {
  animation-delay: 0.95s;
}

.pgrid.in .pcard:nth-child(4) .pstatus {
  animation-delay: 1.25s;
}

.pgrid.in .pcard:nth-child(5) .pstatus {
  animation-delay: 1.55s;
}

.pgrid.in .pcard:nth-child(6) .pstatus {
  animation-delay: 1.85s;
}

.pbody {
  padding: 20px 22px 24px;
}
.pbody h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #1A1A17;
}

.parea {
  display: inline-block;
  background: #F2E9D0;
  color: #2D5A3D;
  font-size: 11px;
  padding: 4px 11px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.pmeta {
  font-size: 13px;
  color: #3D3A33;
}
.pmeta span {
  color: #C9A227;
  margin-right: 5px;
}

/* ==========================================================================
   _page-property.scss ｜ 不動産売買ページ固有
   レイアウトは _lower.scss（intro / flist / greenband）を使用。
   ※固有スタイルが必要になればここに追記。
   ========================================================================== */
/* ==========================================================================
   _page-listings.scss ｜ 物件情報ページ固有
   （カード・グリッドは _property-card.scss、ヒーロー等は _lower.scss）
   ========================================================================== */
/* カテゴリ見出し（中古戸建 / 中古マンション …） */
.pcat-ttl {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 50px 0 26px;
}
.pcat-ttl h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  color: #1B4332;
  font-weight: 600;
  padding-left: 16px;
  border-left: 3px solid #C9A227;
}
.pcat-ttl .ln {
  flex: 1;
  height: 1px;
  background: rgba(27, 67, 50, 0.12);
}
.pcat-ttl .pcat-more {
  flex-shrink: 0;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: #2D5A3D;
  border-bottom: 1px solid #C9A227;
  padding-bottom: 2px;
  transition: 0.3s;
}
.pcat-ttl .pcat-more:hover {
  color: #C9A227;
}

/* カテゴリ切替ナビ（子ページ） */
.pcat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}

.pcat-nav-item {
  font-family: "Shippori Mincho", serif;
  font-size: 13.5px;
  color: #1B4332;
  border: 1px solid rgba(27, 67, 50, 0.2);
  border-radius: 2px;
  padding: 9px 18px;
  transition: 0.3s;
}
.pcat-nav-item:hover {
  border-color: #C9A227;
  color: #C9A227;
}
.pcat-nav-item.is-on {
  background: #1B4332;
  color: #E8D5A3;
  border-color: #1B4332;
}

/* the_posts_pagination */
.pagination {
  margin-top: 50px;
  text-align: center;
}
.pagination .nav-links {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(27, 67, 50, 0.2);
  color: #1B4332;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  transition: 0.3s;
}
.pagination a.page-numbers:hover {
  background: #1B4332;
  color: #E8D5A3;
  border-color: #1B4332;
}
.pagination .page-numbers.current {
  background: #C9A227;
  color: #1B4332;
  border-color: #C9A227;
}
.pagination .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* ==========================================================================
   _page-stay.scss ｜ 民泊・旅ページ固有
   レイアウトは _lower.scss（intro / sfeat / greenband）を使用。
   ※固有スタイルが必要になればここに追記。
   ========================================================================== */
/* ==========================================================================
   _page-company.scss ｜ 会社概要ページ固有
   レイアウトは _lower.scss（ctable / flist / greenband）を使用。
   ※固有スタイルが必要になればここに追記。
   ========================================================================== */
/* ==========================================================================
   _page-contact.scss ｜ お問い合わせページ固有
   フォーム枠は _lower.scss（cform / cinfo）。
   mw-wp-form の出力を見本フォームに馴染ませる微調整をここで行う。
   ========================================================================== */
.cform {
  /* 実フォーム（Contact Form 7 / mw-wp-form 等）汎用：プラグイン出力にも装飾を当てる */
}
.cform input[type=text], .cform input[type=email], .cform input[type=tel], .cform input[type=url],
.cform input[type=number], .cform input[type=date], .cform input[type=search], .cform textarea, .cform select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(27, 67, 50, 0.2);
  border-radius: 2px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  transition: 0.3s;
}
.cform input[type=text]:focus, .cform input[type=email]:focus, .cform input[type=tel]:focus, .cform input[type=url]:focus,
.cform input[type=number]:focus, .cform input[type=date]:focus, .cform input[type=search]:focus, .cform textarea:focus, .cform select:focus {
  outline: none;
  border-color: #C9A227;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}
.cform textarea {
  min-height: 140px;
  resize: vertical;
}
.cform label {
  display: block;
  font-size: 13.5px;
  color: #1B4332;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.cform p {
  margin-bottom: 20px;
}
.cform input[type=submit], .cform button[type=submit], .cform .wpcf7-submit {
  display: inline-block;
  background: #1B4332;
  color: #E8D5A3;
  padding: 16px 54px;
  font-size: 15px;
  letter-spacing: 0.12em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
  width: auto;
}
.cform input[type=submit]:hover, .cform button[type=submit]:hover, .cform .wpcf7-submit:hover {
  background: #C9A227;
  color: #1B4332;
}
.cform .wpcf7-form > p:last-of-type {
  text-align: center;
  margin-top: 30px;
}
.cform .wpcf7-not-valid-tip, .cform .wpcf7-response-output {
  color: #5a5a52;
  font-size: 12.5px;
}
.cform .wpcf7-response-output {
  margin: 14px 0 0;
  border-color: rgba(27, 67, 50, 0.25);
}
.cform {
  /* 必須／任意バッジ：CF7ラベルに <span class="must">必須</span> / <span class="any">任意</span> と記述 */
}
.cform label .must,
.cform label .any {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
  border-radius: 3px;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.cform label .must {
  background: #a23b2e;
}
.cform label .any, .cform label .optional, .cform label .ninni, .cform label .nin, .cform label .free {
  background: #8a8a80;
}
.cform {
  /* JSで文字判定して付与（必須/任意が同じクラスでも色分け） */
}
.cform label .is-required {
  background: #a23b2e !important;
}
.cform label .is-optional {
  background: #8a8a80 !important;
}
.cform {
  /* Contact Form 7：入力欄を全幅・中央そろえ（インラインwrap対策）＋枠を通常色に */
}
.cform .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.cform .wpcf7-form-control:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]) {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(27, 67, 50, 0.2) !important;
  border-radius: 2px;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
}
.cform .wpcf7-form-control:focus {
  outline: none;
  border-color: #C9A227 !important;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}
.cform .wpcf7-form-control.wpcf7-not-valid {
  border-color: rgba(27, 67, 50, 0.2) !important;
}
.cform .wpcf7-checkbox .wpcf7-list-item, .cform .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.cform .wpcf7-acceptance {
  font-size: 13px;
  color: #3D3A33;
}
.cform {
  /* ★どのフォームプラグインでも入力欄の枠を必ずグレーに（赤枠を強制解除） */
}
.cform input:not([type=submit]):not([type=button]):not([type=checkbox]):not([type=radio]):not([type=image]):not([type=hidden]),
.cform textarea, .cform select {
  border: 1px solid rgba(27, 67, 50, 0.22) !important;
  background: #fff !important;
  box-shadow: none !important;
  outline: none !important;
}
.cform input:not([type=submit]):not([type=button]):focus,
.cform textarea:focus, .cform select:focus {
  border-color: #C9A227 !important;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12) !important;
}
.cform {
  /* ★CF7：入力欄を囲むラッパー（span/p）の赤い枠・余白を除去 */
}
.cform .wpcf7-form-control-wrap {
  border: 0 !important;
  padding: 0 !important;
  background: none !important;
  box-shadow: none !important;
}
.cform .wpcf7-form > p, .cform .wpcf7-form .wpcf7-list-item {
  border: 0 !important;
  background: none !important;
  box-shadow: none !important;
}
.cform {
  /* 念のためフォーム内に残る枠線色は全てグレーへ（フォーカスのみ金） */
}
.cform .wpcf7-form * {
  border-color: rgba(27, 67, 50, 0.22) !important;
}
.cform .wpcf7-form input:focus, .cform .wpcf7-form textarea:focus, .cform .wpcf7-form select:focus {
  border-color: #C9A227 !important;
}
.cform {
  /* mw-wp-form：各行 */
}
.cform .mw_wp_form p, .cform .mw_wp_form .mw-wp-form_dl, .cform .mw_wp_form dl {
  margin-bottom: 22px;
}
.cform .mw_wp_form input[type=text],
.cform .mw_wp_form input[type=email],
.cform .mw_wp_form input[type=tel],
.cform .mw_wp_form textarea,
.cform .mw_wp_form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(27, 67, 50, 0.2);
  border-radius: 2px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  transition: 0.3s;
}
.cform .mw_wp_form input[type=text]:focus,
.cform .mw_wp_form input[type=email]:focus,
.cform .mw_wp_form input[type=tel]:focus,
.cform .mw_wp_form textarea:focus,
.cform .mw_wp_form select:focus {
  outline: none;
  border-color: #C9A227;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}
.cform .mw_wp_form {
  /* 送信・確認・戻るボタン */
}
.cform .mw_wp_form input[type=submit],
.cform .mw_wp_form button[type=submit] {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #1B4332;
  color: #E8D5A3;
  padding: 16px 54px;
  font-size: 15px;
  letter-spacing: 0.12em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
}
.cform .mw_wp_form input[type=submit]:hover,
.cform .mw_wp_form button[type=submit]:hover {
  background: #C9A227;
  color: #1B4332;
}
.cform .mw_wp_form {
  /* バリデーションエラー */
}
.cform .mw_wp_form .error {
  color: #5a5a52;
  font-size: 12px;
  margin-top: 6px;
  display: block;
}
.cform {
  /* 送信ボタンの中央寄せ（mw-wp-form 用） */
}
.cform .mw_wp_form .fsubmit,
.cform .mw_wp_form-input-btn,
.cform .mw_wp_form_confirm .fsubmit {
  text-align: center;
  margin-top: 36px;
}

/* ==========================================================================
   _archive-property.scss ｜ 物件アーカイブ（戸建て / マンション一覧）固有
   カード/グリッドは _property-card.scss を使用。
   ========================================================================== */
/* エリア絞り込みフォーム */
.parchive-search {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}
.parchive-search select {
  min-width: 220px;
  padding: 12px 16px;
  border: 1px solid rgba(27, 67, 50, 0.2);
  border-radius: 2px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
}
.parchive-search select:focus {
  outline: none;
  border-color: #C9A227;
}
.parchive-search button {
  background: #1B4332;
  color: #E8D5A3;
  border: none;
  padding: 12px 32px;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 2px;
  transition: 0.3s;
}
.parchive-search button:hover {
  background: #C9A227;
  color: #1B4332;
}

/* ページネーション（wp-pagenavi） */
.pnav {
  margin-top: 50px;
  text-align: center;
}
.pnav .wp-pagenavi {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.pnav .wp-pagenavi a, .pnav .wp-pagenavi span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(27, 67, 50, 0.2);
  color: #1B4332;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  transition: 0.3s;
}
.pnav .wp-pagenavi a:hover {
  background: #1B4332;
  color: #E8D5A3;
  border-color: #1B4332;
}
.pnav .wp-pagenavi span.current {
  background: #C9A227;
  color: #1B4332;
  border-color: #C9A227;
}

/* 詳細ページの小さめヒーロー */
.page-hero--sm {
  height: 34vh;
  min-height: 260px;
}

/* ==========================================================================
   _single-property.scss ｜ 物件詳細（single-house / single-apartment）固有
   ========================================================================== */
.single-prop .sp-head {
  text-align: center;
  margin-bottom: 40px;
}
.single-prop .sp-head .sp-head-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.single-prop .sp-head .sp-estate {
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  color: #a23b2e;
  border: 1px solid #a23b2e;
  border-radius: 3px;
  padding: 3px 12px;
  letter-spacing: 0.08em;
}
.single-prop .sp-head h1 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(22px, 3vw, 34px);
  color: #1B4332;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.single-prop .sp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .single-prop .sp-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.single-prop {
  /* ----- ギャラリー ----- */
}
.single-prop .sp-gallery .sp-main {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.single-prop .sp-gallery .sp-main img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-prop .sp-gallery .sp-main {
  /* 詳細ページのバッジは静的（演出なし・固定表示） */
}
.single-prop .sp-gallery .sp-main .pstatus.is-static {
  opacity: 1;
  animation: none;
  top: 16px;
  right: 16px;
}
.single-prop .sp-gallery .sp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.single-prop .sp-gallery .sp-thumbs .sp-thumb {
  display: block;
  border-radius: 2px;
  overflow: hidden;
}
.single-prop .sp-gallery .sp-thumbs .sp-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
.single-prop .sp-gallery .sp-thumbs .sp-thumb:hover img {
  transform: scale(1.08);
}
.single-prop {
  /* ----- 詳細テーブル ----- */
}
.single-prop .sp-table {
  border-top: 1px solid rgba(27, 67, 50, 0.12);
}
.single-prop .sp-table dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  border-bottom: 1px solid rgba(27, 67, 50, 0.12);
}
.single-prop .sp-table dt {
  padding: 16px 14px;
  font-family: "Shippori Mincho", serif;
  color: #1B4332;
  font-weight: 600;
  font-size: 13.5px;
  background: #F4EFE3;
}
.single-prop .sp-table dd {
  padding: 16px 14px;
  font-size: 13.5px;
  color: #3D3A33;
  line-height: 1.8;
}
.single-prop {
  /* ----- 物件資料PDF ボタン ----- */
}
.single-prop .sp-pdf {
  text-align: center;
  margin-top: 40px;
}
.single-prop .sp-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #1B4332;
  border: 1px solid #1B4332;
  padding: 14px 40px;
  font-size: 14px;
  letter-spacing: 0.08em;
  border-radius: 1px;
  transition: 0.3s;
}
.single-prop .sp-pdf-btn i {
  color: #a23b2e;
  font-size: 18px;
  transition: 0.3s;
}
.single-prop .sp-pdf-btn:hover {
  background: #1B4332;
  color: #E8D5A3;
}
.single-prop .sp-pdf-btn:hover i {
  color: #E8D5A3;
}
.single-prop {
  /* ----- 戻る / 問い合わせ ----- */
}
.single-prop .sp-back {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.single-prop .sp-back .sp-contact {
  background: #C9A227;
  color: #1B4332;
}
.single-prop .sp-back .sp-contact:hover {
  background: #1B4332;
  color: #E8D5A3;
}

#works {
  background-color: #f1f1f1;
  padding: 8vw 0;
}
#works .works {
  width: 80%;
  margin: auto;
}
#works .works .property_contents {
  margin-bottom: 8vw;
}
#works .works .property_contents .property_headline {
  position: relative;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #works .works .property_contents .property_headline {
    margin-bottom: 8vw;
  }
}
#works .works .property_contents .property_headline h4 {
  width: 40%;
  padding: 1vw 2.5vw;
  background-color: #4F6788;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  #works .works .property_contents .property_headline h4 {
    width: 60%;
    padding: 2vw 5vw;
  }
}
#works .works .property_contents .property_headline h4::after {
  position: absolute;
  width: 0.4vw;
  height: 60%;
  background-color: #fff;
  top: 50%;
  left: 3%;
  transform: translate(0, -50%);
  content: "";
}
@media screen and (max-width: 768px) {
  #works .works .property_contents .property_headline h4::after {
    width: 1vw;
    left: 5%;
  }
}
#works .works .property_contents .property_headline h1 {
  position: absolute;
  font-family: "adobe-handwriting-ernie", sans-serif;
  color: #fff;
  font-size: 8vw;
  opacity: 0.5;
  top: 50%;
  left: 30%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #works .works .property_contents .property_headline h1 {
    font-size: 14vw;
  }
}
#works .works .property_contents .property_content {
  margin-bottom: 4vw;
}
#works .works .property_contents .property_content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}
#works .works .property_contents .property_content ul a {
  display: block;
  width: 30%;
  text-decoration: none;
  color: #333;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .property_contents .property_content ul a {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #works .works .property_contents .property_content ul a {
    width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  #works .works .property_contents .property_content ul li {
    margin-bottom: 4vw;
  }
}
#works .works .property_contents .property_content ul li .thumb {
  width: 100%;
  height: 18vw;
  margin-bottom: 2vw;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .property_contents .property_content ul li .thumb {
    height: 30vw;
  }
}
@media screen and (max-width: 768px) {
  #works .works .property_contents .property_content ul li .thumb {
    height: 60vw;
  }
}
#works .works .property_contents .property_content ul li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .works .property_contents .property_content ul li .thumb .status {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 600;
  width: 70%;
  text-align: center;
}
#works .works .property_contents .property_content ul li .outline .category {
  margin-bottom: 1vw;
}
#works .works .property_contents .property_content ul li .outline .category ul {
  justify-content: flex-start;
}
#works .works .property_contents .property_content ul li .outline .category ul li {
  width: 6vw;
  text-align: center;
  padding: 0.4vw;
  color: #fff;
  margin-right: 0.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .property_contents .property_content ul li .outline .category ul li {
    width: 12vw;
    padding: 0.8vw;
  }
}
@media screen and (max-width: 768px) {
  #works .works .property_contents .property_content ul li .outline .category ul li {
    width: 30vw;
    padding: 1.5vw 1vw;
  }
}
#works .works .property_contents .property_content ul li .outline .category ul li:first-child {
  background-color: #649BB4;
}
#works .works .property_contents .property_content ul li .outline .category ul li:nth-child(2) {
  background-color: #10C695;
}
#works .works .property_contents .property_content ul li .outline .category ul li:nth-child(3) {
  background-color: #e05a00;
}
#works .works .property_contents .property_content ul li .outline .title {
  color: #4F6788;
  font-size: 1.2vw;
  font-weight: 600;
  border-bottom: 1px solid #4F6788;
  margin-bottom: 0.6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .property_contents .property_content ul li .outline .title {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #works .works .property_contents .property_content ul li .outline .title {
    font-size: 3.6vw;
  }
}

#news {
  background-color: #f1f1f1;
  padding: 8vw 0;
}
#news .news {
  width: 80%;
  margin: auto;
}
#news .news .property_contents {
  margin-bottom: 8vw;
}
#news .news .property_contents .property_headline {
  position: relative;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #news .news .property_contents .property_headline {
    margin-bottom: 8vw;
  }
}
#news .news .property_contents .property_headline h4 {
  width: 70%;
  padding: 1vw 2.5vw;
  margin: auto;
  background-color: #4F6788;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  #news .news .property_contents .property_headline h4 {
    width: 100%;
    padding: 2vw 5vw;
  }
}
#news .news .property_contents .property_headline h4::after {
  position: absolute;
  width: 0.4vw;
  height: 60%;
  background-color: #fff;
  top: 50%;
  left: 0.5em;
  transform: translate(0, -50%);
  content: "";
}
@media screen and (max-width: 768px) {
  #news .news .property_contents .property_headline h4::after {
    width: 1vw;
    left: 0.5em;
  }
}
#news .news .property_contents .property_headline h1 {
  position: absolute;
  font-family: "adobe-handwriting-ernie", sans-serif;
  color: #fff;
  font-size: 8vw;
  opacity: 0.5;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #news .news .property_contents .property_headline h1 {
    font-size: 14vw;
  }
}
#news .news .property_contents .property_content {
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #news .news .property_contents .property_content {
    margin-bottom: 12vw;
  }
}
#news .news .property_contents .property_content ul {
  list-style: none;
  display: block !important;
}
#news .news .property_contents .property_content ul a {
  display: block;
  width: 70%;
  margin: auto;
  text-decoration: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news .property_contents .property_content ul a {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #news .news .property_contents .property_content ul a {
    width: 100%;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  #news .news .property_contents .property_content ul li {
    margin-bottom: 4vw;
  }
}
#news .news .property_contents .property_content ul li .outline .category {
  margin-bottom: 1vw;
}
#news .news .property_contents .property_content ul li .outline .category ul {
  justify-content: flex-start;
}
#news .news .property_contents .property_content ul li .outline .category ul li {
  width: 6vw;
  text-align: center;
  padding: 0.4vw;
  color: #fff;
  margin-right: 0.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news .property_contents .property_content ul li .outline .category ul li {
    width: 12vw;
    padding: 0.8vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news .property_contents .property_content ul li .outline .category ul li {
    width: 30vw;
    padding: 1.5vw 1vw;
  }
}
#news .news .property_contents .property_content ul li .outline .category ul li:first-child {
  background-color: #649BB4;
}
#news .news .property_contents .property_content ul li .outline .category ul li:nth-child(2) {
  background-color: #10C695;
}
#news .news .property_contents .property_content ul li .outline .category ul li:nth-child(3) {
  background-color: #e05a00;
}
#news .news .property_contents .property_content ul li .outline .title {
  color: #4F6788;
  font-size: 1.2vw;
  font-weight: 600;
  border-bottom: 1px solid #4F6788;
  margin-bottom: 0.6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news .property_contents .property_content ul li .outline .title {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news .property_contents .property_content ul li .outline .title {
    font-size: 3.6vw;
  }
}

.none {
  display: none !important;
}

#works_single .works .works_contents {
  background-color: #E9EDEF;
  padding: 8vw 0;
}
#works_single .works .works_contents .works_content ul {
  width: 90%;
  margin: auto;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #works_single .works .works_contents .works_content ul {
    width: 95%;
  }
}
#works_single .works .works_contents .works_content ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #works_single .works .works_contents .works_content ul li {
    flex-flow: column;
  }
}
#works_single .works .works_contents .works_content ul li .list_left {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #works_single .works .works_contents .works_content ul li .list_left {
    width: 90%;
    margin: auto;
  }
}
#works_single .works .works_contents .works_content ul li .list_left .thumb {
  width: 100%;
  height: 30vw;
  position: relative;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #works_single .works .works_contents .works_content ul li .list_left .thumb {
    height: 50vw;
  }
}
#works_single .works .works_contents .works_content ul li .list_left .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#works_single .works .works_contents .works_content ul li .list_left .thumb .status {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  text-align: center;
  color: #fff;
}
#works_single .works .works_contents .works_content ul li .list_left .images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #works_single .works .works_contents .works_content ul li .list_left .images {
    margin-bottom: 4vw;
  }
}
#works_single .works .works_contents .works_content ul li .list_left .images div {
  width: 48%;
  height: 14vw;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #works_single .works .works_contents .works_content ul li .list_left .images div {
    height: 30vw;
  }
}
#works_single .works .works_contents .works_content ul li .list_left .images div:nth-child(odd) {
  margin-right: 1vw;
}
#works_single .works .works_contents .works_content ul li .list_left .images div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#works_single .works .works_contents .works_content ul li .outline {
  width: 48%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works_single .works .works_contents .works_content ul li .outline {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #works_single .works .works_contents .works_content ul li .outline {
    width: 90%;
    margin: auto;
  }
}
#works_single .works .works_contents .works_content ul li .outline .outline_title {
  width: 100%;
}
#works_single .works .works_contents .works_content ul li .outline .outline_title .title {
  font-size: 2vw;
  margin-bottom: 2vw;
  color: #4F6788;
  border-bottom: 2px solid #4F6788;
}
@media screen and (max-width: 768px) {
  #works_single .works .works_contents .works_content ul li .outline .outline_title .title {
    font-size: 3.6vw;
  }
}
#works_single .works .works_contents .works_content ul li .outline .outline_title .category {
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #works_single .works .works_contents .works_content ul li .outline .outline_title .category {
    margin-bottom: 8vw;
  }
}
#works_single .works .works_contents .works_content ul li .outline .outline_title .category ul {
  display: flex;
  justify-content: flex-start;
  width: 100% !important;
}
#works_single .works .works_contents .works_content ul li .outline .outline_title .category ul li {
  width: 6vw;
  text-align: center;
  padding: 0.4vw;
  color: #fff;
  margin-right: 0.8vw;
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works_single .works .works_contents .works_content ul li .outline .outline_title .category ul li {
    width: 12vw;
    padding: 0.8vw;
  }
}
@media screen and (max-width: 768px) {
  #works_single .works .works_contents .works_content ul li .outline .outline_title .category ul li {
    width: 30vw;
    padding: 1.5vw 1vw;
  }
}
#works_single .works .works_contents .works_content ul li .outline .outline_title .category ul li:first-child {
  background-color: #649BB4;
}
#works_single .works .works_contents .works_content ul li .outline .outline_title .category ul li:nth-child(2) {
  background-color: #10C695;
}
#works_single .works .works_contents .works_content ul li .outline .outline_title .category ul li:nth-child(3) {
  background-color: #e05a00;
}
#works_single .works .works_contents .works_content ul li .outline .works_table {
  width: 100%;
}
#works_single .works .works_contents .works_content ul li .outline .works_table table {
  width: 100%;
}
#works_single .works .works_contents .works_content ul li .outline .works_table table tr th, #works_single .works .works_contents .works_content ul li .outline .works_table table tr td {
  padding: 1.5vw;
  font-size: 1.1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works_single .works .works_contents .works_content ul li .outline .works_table table tr th, #works_single .works .works_contents .works_content ul li .outline .works_table table tr td {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #works_single .works .works_contents .works_content ul li .outline .works_table table tr th, #works_single .works .works_contents .works_content ul li .outline .works_table table tr td {
    font-size: 3.3vw;
  }
}
#works_single .works .works_contents .works_content ul li .outline .works_table table tr th {
  background-color: #4F6788;
  color: #fff;
  font-weight: 600;
}

#news_single .news .news_contents {
  background-color: #E9EDEF;
  padding: 8vw 0;
}
#news_single .news .news_contents .news_content ul {
  width: 90%;
  margin: auto;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #news_single .news .news_contents .news_content ul {
    width: 95%;
  }
}
#news_single .news .news_contents .news_content ul li {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #news_single .news .news_contents .news_content ul li {
    flex-flow: column;
  }
}
#news_single .news .news_contents .news_content ul li .list_left {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #news_single .news .news_contents .news_content ul li .list_left {
    width: 90%;
    margin: auto;
  }
}
#news_single .news .news_contents .news_content ul li .list_left .thumb {
  width: 100%;
  height: 30vw;
  position: relative;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #news_single .news .news_contents .news_content ul li .list_left .thumb {
    height: 50vw;
  }
}
#news_single .news .news_contents .news_content ul li .list_left .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#news_single .news .news_contents .news_content ul li .list_left .thumb .status {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  text-align: center;
  color: #fff;
}
#news_single .news .news_contents .news_content ul li .list_left .images {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #news_single .news .news_contents .news_content ul li .list_left .images {
    margin-bottom: 4vw;
  }
}
#news_single .news .news_contents .news_content ul li .list_left .images div {
  width: 48%;
  height: 14vw;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #news_single .news .news_contents .news_content ul li .list_left .images div {
    height: 30vw;
  }
}
#news_single .news .news_contents .news_content ul li .list_left .images div:nth-child(odd) {
  margin-right: 1vw;
}
#news_single .news .news_contents .news_content ul li .list_left .images div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news .news_contents .news_content ul li .outline {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news .news_contents .news_content ul li .outline {
    margin: auto;
  }
}
#news_single .news .news_contents .news_content ul li .outline .outline_title {
  width: 100%;
}
#news_single .news .news_contents .news_content ul li .outline .outline_title .title {
  font-size: 2vw;
  margin-bottom: 2vw;
  color: #4F6788;
  border-bottom: 2px solid #4F6788;
}
@media screen and (max-width: 768px) {
  #news_single .news .news_contents .news_content ul li .outline .outline_title .title {
    font-size: 3.6vw;
  }
}

#recruit .recruit {
  background-color: #E9EDEF;
  padding: 4vw 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit {
    padding: 6vw 0;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit {
    padding: 12vw 0;
  }
}
#recruit .recruit .recruit_title {
  text-align: center;
  margin-bottom: 2vw;
}
#recruit .recruit .recruit_contents {
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents {
    margin-bottom: 8vw;
  }
}
#recruit .recruit .recruit_contents h4 {
  width: 60%;
  margin: auto;
  padding: 1.2vw 1.5vw;
  margin-bottom: 2vw;
  background-color: #4F6788;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents h4 {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents h4 {
    width: 95%;
  }
}
#recruit .recruit .recruit_contents table {
  width: 60%;
  margin: auto;
  border-collapse: collapse;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents table {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents table {
    width: 95%;
  }
}
#recruit .recruit .recruit_contents table tr:nth-child(even) {
  background-color: #F1F1F1;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents table tr {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
  }
}
#recruit .recruit .recruit_contents table tr th, #recruit .recruit .recruit_contents table tr td {
  padding: 1.5vw;
  font-size: 1.1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents table tr th, #recruit .recruit .recruit_contents table tr td {
    padding: 2vw;
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents table tr th, #recruit .recruit .recruit_contents table tr td {
    padding: 8vw 4vw;
    font-size: 3.3vw;
    text-align: start;
  }
}
#recruit .recruit .recruit_contents table tr th {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents table tr th {
    width: 100%;
    padding-bottom: 1.5vw;
  }
}
#recruit .recruit .recruit_contents table tr td {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents table tr td {
    width: 100%;
    padding-top: 1.5vw;
  }
}
#recruit .recruit .form_btn {
  width: 60%;
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .form_btn {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .form_btn {
    width: 95%;
  }
}
#recruit .recruit .form_btn a {
  text-decoration: none;
}
#recruit .recruit .form_btn a button {
  padding: 1.5vw 0;
  width: 100%;
  border: none;
  background-color: #4F6788;
  color: #fff;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .form_btn a button {
    padding: 2.4vw 0;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .form_btn a button {
    padding: 4vw 0;
  }
}
#recruit .recruit .form_btn a button:hover {
  background-color: #E9EDEF;
  color: #4F6788;
  border: 1px solid #4F6788;
}

@media screen and (max-width: 768px) {
  #service .service {
    overflow: hidden;
  }
}
#service .service .service_contents ul {
  list-style: none;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #service .service .service_contents ul {
    width: 95%;
  }
}
#service .service .service_contents ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8vw;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents ul li {
    margin-bottom: 10vw;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents ul li {
    margin-bottom: 14vw;
    flex-flow: column;
  }
}
#service .service .service_contents ul li:nth-child(even) {
  flex-flow: row-reverse;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents ul li:nth-child(even) {
    flex-flow: row;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents ul li:nth-child(even) {
    flex-flow: column;
  }
}
#service .service .service_contents ul li:nth-child(even) .headline_en {
  font-family: "adobe-handwriting-ernie", sans-serif;
  color: #4F6788;
  position: absolute;
  top: -10% !important;
  font-size: 5vw;
  opacity: 0.3;
  width: 150%;
  transform: rotate(10deg) !important;
  text-shadow: 0px 0px 20px #fff, 0px 0px 20px #fff, 0px 0px 20px #fff, 0px 0px 20px #fff, 0px 0px 20px #fff, 0px 0px 20px #fff, 0px 0px 20px #fff, 0px 0px 20px #fff, 0px 0px 20px #fff, 0px 0px 20px #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents ul li:nth-child(even) .headline_en {
    top: 0% !important;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents ul li:nth-child(even) .headline_en {
    position: relative;
    left: 0;
    top: 0 !important;
    transform: rotate(0deg) !important;
  }
}
#service .service .service_contents ul li:nth-child(even) .service_image {
  width: 45%;
  height: 30vw;
  position: absolute;
  top: 0;
  left: 0%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents ul li:nth-child(even) .service_image {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents ul li:nth-child(even) .service_image {
    width: 100%;
    height: 50vw;
    position: relative;
  }
}
#service .service .service_contents ul li:nth-child(even) .service_image::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 210%;
  height: 100%;
  background-color: #4F6788;
  top: 5%;
  left: -5%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents ul li:nth-child(even) .service_image::after {
    left: auto;
    right: 0;
    height: 200%;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents ul li:nth-child(even) .service_image::after {
    width: 100%;
  }
}
#service .service .service_contents ul li:nth-child(even) .service_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#service .service .service_contents ul li .service_writing {
  width: 50%;
  padding: 8vw 2vw;
  margin-top: 5vw;
  padding-bottom: 4vw;
  position: relative;
  box-shadow: 0 3px 6px rgba(51, 51, 51, 0.16);
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents ul li .service_writing {
    width: 85%;
    margin-top: 20vw;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents ul li .service_writing {
    width: 100%;
    box-shadow: none;
    margin-bottom: 4vw;
  }
}
#service .service .service_contents ul li .service_writing .headline {
  position: absolute;
  color: #fff;
  background-color: #4F6788;
  font-weight: 800;
  width: 80%;
  top: 10%;
  left: -5%;
  font-size: 2.5vw;
  padding: 1vw;
}
@media screen and (max-width: 768px) {
  #service .service .service_contents ul li .service_writing .headline {
    font-size: 5vw;
    left: 0;
  }
}
#service .service .service_contents ul li .service_writing .text {
  padding-top: 4vw;
}
@media screen and (max-width: 768px) {
  #service .service .service_contents ul li .service_writing .text {
    padding-top: 20vw;
  }
}
#service .service .service_contents ul li .service_image {
  width: 45%;
  height: 30vw;
  position: absolute;
  top: 0;
  right: 0%;
}
@media screen and (max-width: 768px) {
  #service .service .service_contents ul li .service_image {
    width: 100%;
    height: 50vw;
    position: relative;
  }
}
#service .service .service_contents ul li .service_image::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 210%;
  height: 100%;
  background-color: #4F6788;
  top: 5%;
  right: -5%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents ul li .service_image::after {
    height: 200%;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents ul li .service_image::after {
    width: 100%;
    height: 100%;
  }
}
#service .service .service_contents ul li .service_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#flow .flow .flow_contents {
  width: 90%;
  margin: auto;
}
#flow .flow .flow_contents ul {
  list-style: none;
}
#flow .flow .flow_contents ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6vw;
}
@media screen and (max-width: 768px) {
  #flow .flow .flow_contents ul li {
    flex-flow: column;
    margin-bottom: 18vw;
  }
}
#flow .flow .flow_contents ul li .flow_image {
  width: 45%;
  height: 30vw;
}
@media screen and (max-width: 768px) {
  #flow .flow .flow_contents ul li .flow_image {
    width: 80%;
    height: 40vw;
    margin: auto;
    margin-bottom: 8vw;
  }
}
#flow .flow .flow_contents ul li .flow_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#flow .flow .flow_contents ul li .flow_writing {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #flow .flow .flow_contents ul li .flow_writing {
    width: 90%;
    margin: auto;
  }
}
#flow .flow .flow_contents ul li .flow_writing .headline {
  margin-bottom: 2vw;
  border-bottom: 1px solid #4F6788;
  letter-spacing: 0.3vw;
  font-size: 1.3vw;
  font-weight: 900;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #flow .flow .flow_contents ul li .flow_writing .headline {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #flow .flow .flow_contents ul li .flow_writing .headline {
    font-size: 4vw;
  }
}
#flow .flow .flow_contents ul li .flow_writing .headline span {
  font-family: "Futura";
  color: #4F6788;
  font-size: 2.5vw;
  margin-right: 2vw;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  #flow .flow .flow_contents ul li .flow_writing .headline span {
    font-size: 6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #flow .flow .flow_contents ul li .flow_writing .headline span {
    font-size: 3.2vw;
  }
}
#flow .flow .flow_contents ul li .flow_writing .text {
  letter-spacing: 0.3vw;
  line-height: 1.8vw;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #flow .flow .flow_contents ul li .flow_writing .text {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #flow .flow .flow_contents ul li .flow_writing .text {
    font-size: 2.4vw;
    line-height: 3.2vw;
  }
}
#flow .flow .flow_contents ul li:nth-child(even) {
  flex-flow: row-reverse;
}
@media screen and (max-width: 768px) {
  #flow .flow .flow_contents ul li:nth-child(even) {
    flex-flow: column;
  }
}

#search {
  background-color: #e0e3f0;
}
#search .property {
  width: 80%;
  margin: auto;
  padding: 8vw 0;
}
#search .property .search {
  text-align: center;
  margin-bottom: 8vw;
}
#search .property .search form select {
  width: 40%;
  height: 3vw;
  border: 1px solid #f1f1f1;
  margin-right: 1vw;
}
#search .property .search form .searchCustom {
  padding: 1vw;
  width: 5vw;
  border: none;
  background-color: #4F6788;
  color: #fff;
  transition: all 0.4s;
}
#search .property .search form .searchCustom:hover {
  background-color: #fff;
  color: #4F6788;
  border: 1px solid #4F6788;
}
#search .property .contents_title {
  width: 40%;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 4vw;
}
#search .property .property_contents .property_headline {
  position: relative;
  margin-bottom: 4vw;
}
#search .property .property_contents .property_headline h4 {
  width: 40%;
  padding: 1vw 2.5vw;
  background-color: #4F6788;
  color: #fff;
  position: relative;
}
#search .property .property_contents .property_headline h4::after {
  position: absolute;
  width: 0.4vw;
  height: 60%;
  background-color: #fff;
  top: 50%;
  left: 3%;
  transform: translate(0, -50%);
  content: "";
}
#search .property .property_contents .property_headline h1 {
  position: absolute;
  font-family: "adobe-handwriting-ernie", sans-serif;
  color: #fff;
  font-size: 8vw;
  opacity: 0.5;
  top: 50%;
  left: 30%;
  transform: translate(0, -50%);
}
#search .property .property_contents .property_content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
#search .property .property_contents .property_content ul a {
  display: block;
  width: 30%;
  text-decoration: none;
  color: #333;
}
#search .property .property_contents .property_content ul li .thumb {
  width: 100%;
  height: 18vw;
  margin-bottom: 2vw;
  position: relative;
}
#search .property .property_contents .property_content ul li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#search .property .property_contents .property_content ul li .thumb .status {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 600;
  width: 70%;
  text-align: center;
}
#search .property .property_contents .property_content ul li .outline .category {
  margin-bottom: 1vw;
}
#search .property .property_contents .property_content ul li .outline .category ul {
  justify-content: flex-start;
}
#search .property .property_contents .property_content ul li .outline .category ul li {
  width: 6vw;
  text-align: center;
  padding: 0.4vw;
  color: #fff;
  margin-right: 0.8vw;
}
#search .property .property_contents .property_content ul li .outline .category ul li:first-child {
  background-color: #649BB4;
}
#search .property .property_contents .property_content ul li .outline .category ul li:nth-child(2) {
  background-color: #10C695;
}
#search .property .property_contents .property_content ul li .outline .category ul li:nth-child(3) {
  background-color: #e05a00;
}
#search .property .property_contents .property_content ul li .outline .title {
  color: #4F6788;
  font-size: 1.2vw;
  font-weight: 600;
  border-bottom: 1px solid #4F6788;
  margin-bottom: 0.6vw;
}

.wp-pagenavi {
  text-align: center;
  margin-top: 4vw;
}
.wp-pagenavi .pages {
  background-color: #4F6788;
  color: #fff;
  border: none;
  padding: 0.8vw 1.4vw;
}
.wp-pagenavi .current {
  border: 1px solid #4F6788 !important;
  color: #4F6788;
  padding: 0.8vw;
}

.policy_contents {
  width: 80%;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  .policy_contents {
    width: 90%;
  }
}
.policy_contents h2 {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .policy_contents h2 {
    font-size: 15px;
  }
}
.policy_contents p {
  font-size: 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .policy_contents p {
    font-size: 10px;
  }
}

/* --------------------------------------------------------------------------
   レガシー共通（スコープ外ページが使用：#lower / 旧タイトル / 旧ボタン）
   ※新デザインの下層は .page-hero を使うため衝突しない
   -------------------------------------------------------------------------- */
#lower .lower {
  position: relative;
}
#lower .lower .lower_main {
  background-position: center;
  background-size: cover;
  width: 80%;
  height: 30vw;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_main {
    height: 50vw;
  }
}
#lower .lower .lower_title {
  position: absolute;
  bottom: 10%;
  width: 35%;
  height: 20vw;
  padding: 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(79, 103, 136, 0.7);
  color: #fff;
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_title {
    top: 40%;
    width: 60%;
  }
}
#lower .lower .breadcrumbs {
  text-align: start;
  margin-top: 6vw;
  margin-bottom: 4vw;
  padding-left: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower .breadcrumbs {
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower .breadcrumbs {
    margin-bottom: 12vw;
  }
}
#lower .lower .breadcrumbs p a {
  color: #888;
}
#lower .lower .breadcrumbs p span {
  margin: 0 2vw;
}

/* --------------------------------------------------------------------------
   投稿入力画面のレイアウト（既存維持）
   -------------------------------------------------------------------------- */
.acf-field {
  width: 100%;
  float: none;
  clear: both;
}

.acf-field-type-settings {
  container-type: normal !important;
}

.smart-cf-meta-box-repeat-tables {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.smart-cf-meta-box-repeat-tables .smart-cf-meta-box-table {
  width: 30%;
}

/* --------------------------------------------------------------------------
   レガシー fade-in（旧 front-page 等が使用）
   -------------------------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* --------------------------------------------------------------------------
   lightbox（物件詳細ギャラリー）
   -------------------------------------------------------------------------- */
.lightbox {
  z-index: 9999999999 !important;
}
@media screen and (max-width: 768px) {
  .lightbox {
    margin-top: 10vh;
  }
}

.lightboxOverlay {
  z-index: 9999999990 !important;
}/*# sourceMappingURL=style.css.map */