@charset "UTF-8";
/* ============================================================
  CSS変数 & ベース設定
  ============================================================ */
/* mixin */
/*  @media用 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500&family=Noto+Sans+JP:wght@300;400&display=swap");
.ttn-section *,
.ttn-section *::before,
.ttn-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ttn-section,
.slick-track {
  --ttn-bg:        #F0EDE6;
  --ttn-accent:    #2D4A3E;
  --ttn-accent2:   #3A5F51;
  --ttn-gold:      #A89070;
  --ttn-text:      #1E1E1E;
  --ttn-muted:     #5A5550;
  --ttn-overlay:   rgba(20, 32, 28, 0.46);
  --ttn-white:     #FAFAF8;
  --ttn-serif:     'Noto Serif JP', 'Yu Mincho', 'YuMincho', '游明朝', Georgia, serif;
  --ttn-sans:      'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  position: relative;
  width: 100%;
  background-color: var(--ttn-bg);
  font-family: var(--ttn-sans);
  overflow: hidden;
}

/* Google Fonts読み込み */
/* ============================================================
  全体
  ============================================================ */
.pc-only {
  display: block;
}

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

.sp-only {
  display: none;
}

@media screen and (max-width: 540px) {
  .sp-only {
    display: block;
  }
}

body {
  background: #F5F5F5;
}

#header {
  background: #F5F5F5;
}

/* ============================================================
  ビジュアルブロック（写真エリア）
  ============================================================ */
.ttn-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 860px;
  overflow: hidden;
}

.ttn-visual__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: ttn-zoom 18s ease-in-out infinite alternate;
}

@keyframes ttn-zoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

/* オーバーレイ */
.ttn-visual__overlay {
  position: absolute;
  inset: 0;
  background: var(--ttn-overlay);
}

#header_slider:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, rgba(20, 32, 28, 0.3) 60%, #F0EDE6 100%);
  z-index: 1;
}

@media (max-width: 800px) {
  #header_slider .catch {
    padding: 0;
  }
}

/* グラデーションフェード（下部テキストエリアへの接続） */
.ttn-visual__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, rgba(20, 32, 28, 0.3) 60%, var(--ttn-bg) 100%);
}

/* ============================================================
  キャッチコピーエリア（写真上に重ねる）
  ============================================================ */
.ttn-catch {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  z-index: 2;
}

/* 縦ライン装飾 */
.ttn-catch__line {
  width: 1px;
  height: 0;
  background: var(--ttn-gold);
  margin: 0 auto 40px;
  animation: ttn-line-grow 1.2s ease forwards 0.3s;
}

@keyframes ttn-line-grow {
  to {
    height: 60px;
  }
}

/* メインキャッチ */
.home {
  /* サブキャッチ（ローマ字） */
}

.home .ttn-catch__main,
.home .direction_type1 span:nth-child(1) {
  font-family: var(--ttn-serif);
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  font-weight: 300;
  color: var(--ttn-white);
  letter-spacing: 0.28em;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(28px) scale(0.95);
  animation: ttn-catch-rise 2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.9s;
  will-change: opacity, transform;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.home .direction_type1 span:nth-child(1) {
  position: relative;
}

.home .direction_type1 span:nth-child(1):before {
  position: absolute;
  content: '';
  width: 1px;
  height: 0;
  background: var(--ttn-gold);
  margin: 0 auto 40px;
  animation: ttn-line-grow 1.2s ease forwards 0.3s;
  left: 0;
  right: 0;
  top: -90px;
}

.home .ttn-catch__sub,
.home .direction_type1 span:nth-child(2) {
  font-family: var(--ttn-sans);
  font-size: clamp(0.62rem, 1.4vw, 0.8rem);
  font-weight: 300;
  color: rgba(250, 250, 248, 0.65);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin-top: 20px;
  opacity: 0;
  animation: ttn-fade-up 1.4s ease forwards 1.6s;
  transition: inherit !important;
}

@keyframes ttn-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スクロールヒント */
.ttn-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: ttn-fade-up 1s ease forwards 2.2s;
}

.ttn-scroll-hint span {
  font-family: var(--ttn-sans);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: rgba(250, 250, 248, 0.55);
  text-transform: uppercase;
}

.ttn-scroll-hint__bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(250, 250, 248, 0.5), transparent);
  animation: ttn-scroll-bar 2s ease-in-out infinite 3s;
}

@keyframes ttn-scroll-bar {
  0%, 100% {
    opacity: 0.5;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(0.6) translateY(8px);
  }
}

/* ============================================================
  浮遊キーワードアニメーション
  ============================================================ */
.ttn-keywords {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

.ttn-kw {
  position: absolute;
  font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', '游明朝', Georgia, serif;
  font-size: clamp(0.7rem, 3.6vw, 2rem);
  font-weight: 300;
  color: rgba(250, 250, 248, 0.8);
  letter-spacing: 0.2em;
  white-space: nowrap;
  pointer-events: none;
  will-change: transform, opacity;
}

/* ============================================================
  テキストセクション（写真下）
  ============================================================ */
.ttn-body {
  position: relative;
  background-color: var(--ttn-bg);
  z-index: 1;
}

.ttn-body__inner {
  max-width: 760px;
  margin: 0 auto;
}

/* セクションマーク */
.ttn-body__mark {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.ttn-body__mark.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ttn-body__mark-line {
  width: 40px;
  height: 1px;
  background: var(--ttn-gold);
}

.ttn-body__mark-text {
  font-family: var(--ttn-sans);
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  color: var(--ttn-gold);
  text-transform: uppercase;
}

/* 本文テキスト */
.ttn-body__text {
  font-family: var(--ttn-serif);
  font-size: clamp(0.9rem, 1.8vw, 1.06rem);
  font-weight: 300;
  line-height: 2.2;
  color: var(--ttn-muted);
  letter-spacing: 0.06em;
}

.ttn-body__text p,
.ttn-body__text_wrap {
  margin-bottom: 2em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.ttn-body__text p.is-visible,
.ttn-body__text_wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ttn-body__text p:last-child {
  margin-bottom: 0;
}

/* 末尾装飾 */
.ttn-body__footer {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}

.ttn-body__footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ttn-body__footer-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--ttn-gold), transparent);
}

.ttn-body__footer-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--ttn-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ttn-body__footer-icon svg {
  width: 10px;
  height: 10px;
  fill: var(--ttn-gold);
}

/* ============================================================
  レスポンシブ — スマートフォン
  ============================================================ */
@media (max-width: 767px) {
  .ttn-visual {
    height: 100svh;
    min-height: 520px;
    max-height: 760px;
  }
  .ttn-catch__main {
    font-size: clamp(2.8rem, 12vw, 4rem);
    letter-spacing: 0.22em;
  }
  .ttn-catch__sub {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
  }
  .ttn-scroll-hint {
    bottom: 32px;
  }
  .ttn-body {
    padding: 64px 28px 80px;
  }
  .ttn-body__text {
    font-size: 0.92rem;
    line-height: 2.1;
  }
  .ttn-body__mark {
    margin-bottom: 40px;
  }
  /* SP: アニメーション軽量化 */
  .ttn-kw {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .ttn-catch__main {
    font-size: 2.6rem;
  }
  .ttn-body {
    padding: 56px 7px 72px;
  }
}

/* ============================================================
   TCDテーマ用　追加
  ============================================================ */
#header_slider_wrap {
  margin: -1px -1px 0px;
}

#cb_content_1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-family: var(--ttn-serif);
  font-weight: 300;
  color: rgba(250, 250, 248, 0.65);
  padding-top: 37rem;
}

#cb_content_3 {
  padding: 0;
  background: #fff;
}

.text-center {
  text-align: center;
}

.text-on-surface {
  --tw-text-opacity: 1;
  color: #4f4444;
  font-weight: 500 !important;
  font-family: var(--ttn-serif) !important;
  margin-top: 0 !important;
}

@media (min-width: 768px) {
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.text-on-surface-variant {
  --tw-text-opacity: 1;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.uppercase {
  text-transform: uppercase;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.bg-surface-container-high {
  --tw-bg-opacity: 1;
  background-color: #eee7e3;
}

.rounded-full {
  border-radius: 0.75rem;
}

.inline-block {
  display: inline-block;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

@charset "UTF-8";
/* ============================================================
  CSS変数 & ベース設定
  ============================================================ */
/* mixin */
/*  @media用 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500&family=Noto+Sans+JP:wght@300;400&display=swap");
.ttn-section *,
.ttn-section *::before,
.ttn-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ttn-section,
.slick-track {
  --ttn-bg:        #F0EDE6;
  --ttn-accent:    #2D4A3E;
  --ttn-accent2:   #3A5F51;
  --ttn-gold:      #A89070;
  --ttn-text:      #1E1E1E;
  --ttn-muted:     #5A5550;
  --ttn-overlay:   rgba(20, 32, 28, 0.46);
  --ttn-white:     #FAFAF8;
  --ttn-serif:     'Noto Serif JP', 'Yu Mincho', 'YuMincho', '游明朝', Georgia, serif;
  --ttn-sans:      'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  position: relative;
  width: 100%;
  background-color: var(--ttn-bg);
  font-family: var(--ttn-sans);
  overflow: hidden;
}

/* Google Fonts読み込み */
/* ============================================================
  全体
  ============================================================ */
.pc-only {
  display: block;
}

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

.sp-only {
  display: none;
}

@media screen and (max-width: 540px) {
  .sp-only {
    display: block;
  }
}

body {
  background: #F5F5F5;
}

#header {
  background: #F5F5F5;
}

/* ============================================================
  ビジュアルブロック（写真エリア）
  ============================================================ */
.ttn-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 860px;
  overflow: hidden;
}

.ttn-visual__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: ttn-zoom 18s ease-in-out infinite alternate;
}

@keyframes ttn-zoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

/* オーバーレイ */
.ttn-visual__overlay {
  position: absolute;
  inset: 0;
  background: var(--ttn-overlay);
}

#header_slider:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, rgba(20, 32, 28, 0.3) 60%, #F0EDE6 100%);
  z-index: 1;
}

@media (max-width: 800px) {
  #header_slider .catch {
    padding: 0;
  }
}

/* グラデーションフェード（下部テキストエリアへの接続） */
.ttn-visual__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, rgba(20, 32, 28, 0.3) 60%, var(--ttn-bg) 100%);
}

/* ============================================================
  キャッチコピーエリア（写真上に重ねる）
  ============================================================ */
.ttn-catch {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  z-index: 2;
}

/* 縦ライン装飾 */
.ttn-catch__line {
  width: 1px;
  height: 0;
  background: var(--ttn-gold);
  margin: 0 auto 40px;
  animation: ttn-line-grow 1.2s ease forwards 0.3s;
}

@keyframes ttn-line-grow {
  to {
    height: 60px;
  }
}

/* メインキャッチ */
.home {
  /* サブキャッチ（ローマ字） */
}

.home .ttn-catch__main,
.home .direction_type1 span:nth-child(1) {
  font-family: var(--ttn-serif);
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  font-weight: 300;
  color: var(--ttn-white);
  letter-spacing: 0.28em;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(28px) scale(0.95);
  animation: ttn-catch-rise 2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.9s;
  will-change: opacity, transform;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.home .direction_type1 span:nth-child(1) {
  position: relative;
}

.home .direction_type1 span:nth-child(1):before {
  position: absolute;
  content: '';
  width: 1px;
  height: 0;
  background: var(--ttn-gold);
  margin: 0 auto 40px;
  animation: ttn-line-grow 1.2s ease forwards 0.3s;
  left: 0;
  right: 0;
  top: -90px;
}

.home .ttn-catch__sub,
.home .direction_type1 span:nth-child(2) {
  font-family: var(--ttn-sans);
  font-size: clamp(0.62rem, 1.4vw, 0.8rem);
  font-weight: 300;
  color: rgba(250, 250, 248, 0.65);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin-top: 20px;
  opacity: 0;
  animation: ttn-fade-up 1.4s ease forwards 1.6s;
  transition: inherit !important;
}

@keyframes ttn-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スクロールヒント */
.ttn-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: ttn-fade-up 1s ease forwards 2.2s;
}

.ttn-scroll-hint span {
  font-family: var(--ttn-sans);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: rgba(250, 250, 248, 0.55);
  text-transform: uppercase;
}

.ttn-scroll-hint__bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(250, 250, 248, 0.5), transparent);
  animation: ttn-scroll-bar 2s ease-in-out infinite 3s;
}

@keyframes ttn-scroll-bar {
  0%, 100% {
    opacity: 0.5;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(0.6) translateY(8px);
  }
}

/* ============================================================
  浮遊キーワードアニメーション
  ============================================================ */
.ttn-keywords {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

.ttn-kw {
  position: absolute;
  font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', '游明朝', Georgia, serif;
  font-size: clamp(0.7rem, 3.6vw, 2rem);
  font-weight: 300;
  color: rgba(250, 250, 248, 0.8);
  letter-spacing: 0.2em;
  white-space: nowrap;
  pointer-events: none;
  will-change: transform, opacity;
}

/* ============================================================
  テキストセクション（写真下）
  ============================================================ */
.ttn-body {
  position: relative;
  background-color: var(--ttn-bg);
  z-index: 1;
}

.ttn-body__inner {
  max-width: 760px;
  margin: 0 auto;
}

/* セクションマーク */
.ttn-body__mark {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.ttn-body__mark.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ttn-body__mark-line {
  width: 40px;
  height: 1px;
  background: var(--ttn-gold);
}

.ttn-body__mark-text {
  font-family: var(--ttn-sans);
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  color: var(--ttn-gold);
  text-transform: uppercase;
}

/* 本文テキスト */
.ttn-body__text {
  font-family: var(--ttn-serif);
  font-size: clamp(0.9rem, 1.8vw, 1.06rem);
  font-weight: 300;
  line-height: 2.2;
  color: var(--ttn-muted);
  letter-spacing: 0.06em;
}

.ttn-body__text p,
.ttn-body__text_wrap {
  margin-bottom: 2em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.ttn-body__text p.is-visible,
.ttn-body__text_wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ttn-body__text p:last-child {
  margin-bottom: 0;
}

/* 末尾装飾 */
.ttn-body__footer {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}

.ttn-body__footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ttn-body__footer-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--ttn-gold), transparent);
}

.ttn-body__footer-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--ttn-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ttn-body__footer-icon svg {
  width: 10px;
  height: 10px;
  fill: var(--ttn-gold);
}

/* ============================================================
  レスポンシブ — スマートフォン
  ============================================================ */
@media (max-width: 767px) {
  .ttn-visual {
    height: 100svh;
    min-height: 520px;
    max-height: 760px;
  }
  .ttn-catch__main {
    font-size: clamp(2.8rem, 12vw, 4rem);
    letter-spacing: 0.22em;
  }
  .ttn-catch__sub {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
  }
  .ttn-scroll-hint {
    bottom: 32px;
  }
  .ttn-body {
    padding: 64px 28px 80px;
  }
  .ttn-body__text {
    font-size: 0.92rem;
    line-height: 2.1;
  }
  .ttn-body__mark {
    margin-bottom: 40px;
  }
  /* SP: アニメーション軽量化 */
  .ttn-kw {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .ttn-catch__main {
    font-size: 2.6rem;
  }
  .ttn-body {
    padding: 56px 7px 72px;
  }
}

/* ============================================================
   TCDテーマ用　追加
  ============================================================ */
#header_slider_wrap {
  margin: -1px -1px 0px;
}

#cb_content_1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-family: var(--ttn-serif);
  font-weight: 300;
  color: rgba(250, 250, 248, 0.65);
  padding-top: 37rem;
}

#cb_content_3 {
  padding: 0;
  background: #F0EDE6;
}

.text-center {
  text-align: center;
}

.text-on-surface {
  --tw-text-opacity: 1;
  color: #4f4444;
  font-weight: 500 !important;
  font-family: var(--ttn-serif) !important;
  margin-top: 0 !important;
}

@media (min-width: 768px) {
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.text-on-surface-variant {
  --tw-text-opacity: 1;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.uppercase {
  text-transform: uppercase;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.bg-surface-container-high {
  --tw-bg-opacity: 1;
  background-color: #eee7e3;
}

.rounded-full {
  border-radius: 0.75rem;
}

.inline-block {
  display: inline-block;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

/* ============================================================
   CF7 物件お問い合わせフォーム
   ============================================================ */

.cf7-bukken-form {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 0 60px;
}

/* 物件名表示 */
.cf7-property-display {
    background: var(--color-accent-pale, #c8deca);
    border-left: 4px solid var(--color-accent, #7a9e85);
    padding: 16px 20px;
    margin-bottom: 36px;
    border-radius: 0 4px 4px 0;
}
.cf7-property-label {
    font-size: 12px;
    color: var(--color-text-sub, #5a6b60);
    margin: 0 0 4px;
    letter-spacing: 0.05em;
}
.cf7-property-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text, #2c3530);
    margin: 0;
}

/* 物件名 readonly フィールド */
.cf7-bukken-form input.cf7-property-name-input {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text, #2c3530);
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--color-border, #dde4df) !important;
    border-radius: 0 !important;
    padding: 4px 0 !important;
    box-shadow: none !important;
    cursor: default;
    pointer-events: none;
}

/* フィールド共通 */
.cf7-field-wrap {
    margin-bottom: 24px;
}
.cf7-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text, #2c3530);
    margin-bottom: 8px;
}
.cf7-required {
    display: inline-block;
    background: var(--color-accent, #7a9e85);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 7px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
}

/* input / textarea / select 共通 */
.cf7-bukken-form input[type="text"],
.cf7-bukken-form input[type="email"],
.cf7-bukken-form input[type="tel"],
.cf7-bukken-form input[type="date"],
.cf7-bukken-form select,
.cf7-bukken-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border, #dde4df);
    border-radius: 6px;
    font-size: 15px;
    color: var(--color-text, #2c3530);
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}
.cf7-bukken-form input[type="text"]:focus,
.cf7-bukken-form input[type="email"]:focus,
.cf7-bukken-form input[type="tel"]:focus,
.cf7-bukken-form input[type="date"]:focus,
.cf7-bukken-form select:focus,
.cf7-bukken-form textarea:focus {
    outline: none;
    border-color: var(--color-accent, #7a9e85);
    box-shadow: 0 0 0 3px var(--color-accent-pale, #c8deca);
}
.cf7-bukken-form textarea {
    height: 140px;
    resize: vertical;
}

/* セレクト */
.cf7-bukken-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a9e85' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

/* ラジオボタン */
.cf7-radio-group .wpcf7-radio {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.cf7-radio-group .wpcf7-radio .wpcf7-list-item {
    margin: 0;
}
.cf7-radio-group .wpcf7-radio .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    color: var(--color-text, #2c3530);
}
.cf7-radio-group .wpcf7-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent, #7a9e85);
    cursor: pointer;
}

/* 送信ボタン */
.cf7-field-wrap--submit {
    margin-top: 36px;
    text-align: center;
}
.cf7-submit-btn {
    display: inline-block;
    background: var(--color-accent, #7a9e85);
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 60px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0.08em;
    transition: background 0.2s, transform 0.1s;
}
.cf7-submit-btn:hover {
    background: var(--color-accent-deep, #5a7a65);
    transform: translateY(-1px);
}

/* バリデーションエラー */
.cf7-bukken-form .wpcf7-not-valid-tip {
    color: #c0392b;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}
.cf7-bukken-form .wpcf7-not-valid {
    border-color: #c0392b !important;
}
.cf7-bukken-form .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    border: none !important;
}
.cf7-bukken-form .wpcf7-mail-sent-ok {
    background: #eafaf1;
    color: #1e8449;
}
.cf7-bukken-form .wpcf7-validation-errors {
    background: #fef9e7;
    color: #9a7d0a;
}

/* SP対応 */
@media screen and (max-width: 767px) {
    .cf7-bukken-form {
        padding: 0 0 40px;
    }
    .cf7-submit-btn {
        width: 100%;
        padding: 16px 20px;
    }
}

/* ============================================================
   CF7 親テーマスタイル上書き（design-plus.css / style.css）
   .cf7-bukken-form 内に限定してスコープを絞る
   ============================================================ */

/* ラッパー */
.cf7-bukken-form .wpcf7 {
    width: 100%;
    margin: 0 !important;
    padding: 0;
    border: none;
    background: transparent;
    font-size: inherit;
}
.cf7-bukken-form .wpcf7 form {
    margin: 0;
}
.cf7-bukken-form .wpcf7 p {
    margin-bottom: 0;
    font-size: inherit;
}

/* input / textarea */
.cf7-bukken-form .wpcf7 input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]),
.cf7-bukken-form .wpcf7 textarea,
.cf7-bukken-form .wpcf7 select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border, #dde4df);
    border-radius: 6px;
    font-size: 15px;
    color: var(--color-text, #2c3530);
    background: #fff;
    line-height: 1.6;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}
.cf7-bukken-form .wpcf7 input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):focus,
.cf7-bukken-form .wpcf7 textarea:focus,
.cf7-bukken-form .wpcf7 select:focus {
    outline: none;
    border-color: var(--color-accent, #7a9e85);
    box-shadow: 0 0 0 3px var(--color-accent-pale, #c8deca);
}

/* readonly（物件名） */
.cf7-bukken-form .wpcf7 input.cf7-property-name-input[readonly] {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--color-border, #dde4df) !important;
    border-radius: 0 !important;
    padding: 4px 0 !important;
    box-shadow: none !important;
    font-size: 17px;
    font-weight: 600;
    cursor: default;
    pointer-events: none;
}

/* textarea */
.cf7-bukken-form .wpcf7 textarea {
    height: 140px;
    resize: vertical;
}

/* select */
.cf7-bukken-form .wpcf7 select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a9e85' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

/* ラジオ・チェックボックス */
.cf7-bukken-form .wpcf7 .wpcf7-list-item {
    display: inline-flex;
    align-items: center;
    margin: 0 16px 0 0;
}
.cf7-bukken-form .wpcf7 .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    color: var(--color-text, #2c3530);
}
.cf7-bukken-form .wpcf7 input[type="radio"],
.cf7-bukken-form .wpcf7 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    padding: 0;
    border: none;
    accent-color: var(--color-accent, #7a9e85);
    cursor: pointer;
}

/* 送信ボタン */
.cf7-bukken-form .wpcf7 .wpcf7-submit {
    display: inline-block;
    width: auto;
    min-width: 240px;
    height: auto;
    padding: 16px 60px;
    margin: 0 auto;
    background: var(--color-accent, #7a9e85);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    border: none !important;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.cf7-bukken-form .wpcf7 .wpcf7-submit:hover {
    background: var(--color-accent-deep, #5a7a65);
    transform: translateY(-1px);
}

/* バリデーション */
.cf7-bukken-form .wpcf7 .wpcf7-not-valid-tip {
    color: #c0392b;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}
.cf7-bukken-form .wpcf7 .wpcf7-not-valid {
    border-color: #c0392b !important;
}
.cf7-bukken-form .wpcf7 form .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    text-align: left;
    border: none !important;
}
.cf7-bukken-form .wpcf7 form.sent .wpcf7-response-output {
    background: #eafaf1;
    color: #1e8449;
}
.cf7-bukken-form .wpcf7 form.invalid .wpcf7-response-output,
.cf7-bukken-form .wpcf7 form.unaccepted .wpcf7-response-output {
    background: #fef9e7;
    color: #9a7d0a;
}

/* SP */
@media screen and (max-width: 767px) {
    .cf7-bukken-form .wpcf7 .wpcf7-submit {
        width: 100%;
        min-width: unset;
        padding: 16px 20px;
    }
}