@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&family=Noto+Serif+JP:wght@300;400;500&display=swap');

/* reCAPTCHA非表示 */
.grecaptcha-badge { visibility: hidden; }

/* =========================================
   Cocoonレイアウト全解除
   ========================================= */
.front-top-page #container,
.front-top-page #content,
.front-top-page #content-in,
.front-top-page .content-in,
.front-top-page #main,
.front-top-page .main,
.front-top-page article,
.front-top-page .entry-content,
.front-top-page .entry-body,
.front-top-page .wrap,
.front-top-page #wrap,
.page #container,
.page #content,
.page #content-in,
.page .content-in,
.page #main,
.page .main,
.page article,
.page .entry-content,
.page .entry-body,
.page .wrap,
.page #wrap {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
}
.front-top-page #sidebar,
.front-top-page .sidebar,
.page #sidebar,
.page .sidebar { display: none !important; }
.front-top-page .entry-title,
.page .entry-title { display: none !important; }

/* Cocoon標準フッター非表示 */
footer#footer,
.footer-container { display: none !important; }

/* =========================================
   CSS変数
   ========================================= */
:root {
    --navy:     #1a2e4a;
    --navy-dk:  #0f1e32;
    --gold:     #c5a059;
    --gold-lt:  rgba(197,160,89,0.55);
    --cream:    #faf9f6;
    --light:    #f2f1ed;
    --gray:     #8a8a8a;
    --text:     #2a2a2a;
    --muted:    #5a5a5a;
    --border:   #e0ddd6;
}

/* =========================================
   ページ全体
   ========================================= */
#box-wrap {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.8;
}
#box-wrap h1, #box-wrap h2, #box-wrap h3, #box-wrap .box-serif {
    font-family: 'Noto Serif JP', serif;
    color: #1a1a1a;
    font-weight: 400;
    border: none; background: none; padding: 0; margin: 0;
}

/* =========================================
   ヘッダー
   ========================================= */
#box-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    background: transparent !important;
    transition: background 0.45s, box-shadow 0.45s;
}
#box-header.scrolled {
    background: rgba(255,255,255,0.97) !important;
    box-shadow: 0 1px 20px rgba(0,0,0,0.08) !important;
}
.hdr-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    gap: 0;
    box-sizing: border-box;
}

/* ロゴ */
.hdr-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: auto;
}
.hdr-logo img {
    height: 38px;
    width: auto;
    display: block;
}
.hdr-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hdr-logo-en {
    font-family: 'Noto Serif JP', serif;
    font-size: 17px;
    letter-spacing: 0.14em;
    color: #fff;
    font-weight: 400;
    line-height: 1;
    transition: color 0.4s;
    white-space: nowrap;
}
.hdr-logo-ja {
    font-size: 9px;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.5);
    line-height: 1;
    transition: color 0.4s;
}
#box-header.scrolled .hdr-logo-en { color: var(--navy); }
#box-header.scrolled .hdr-logo-ja { color: var(--gray); }

/* ナビ全体 */
.hdr-nav {
    display: flex;
    align-items: center;
    gap: 0;
}
.hdr-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0; padding: 0;
    gap: 0;
}
.hdr-nav-list > li { position: relative; }

/* ナビリンク */
.hdr-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    letter-spacing: 0.06em;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 8px 14px;
    white-space: nowrap;
    transition: color 0.25s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
}
#box-header.scrolled .hdr-nav-link { color: #444; }
.hdr-nav-link:hover { color: var(--gold); }

/* ドロップダウン矢印 */
.hdr-arr {
    width: 10px; height: 10px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: transform 0.25s;
}
.hdr-has-child:hover .hdr-arr { transform: rotate(180deg); }

/* ドロップダウン — 各 li に独立配置 */
.hdr-drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    list-style: none;
    min-width: 180px;
    margin: 0; padding: 0;
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    border-top: 2px solid var(--gold);
    z-index: 200;
}
.hdr-has-child:hover .hdr-drop { display: block; }
.hdr-drop li a {
    display: block;
    padding: 13px 20px;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: #333;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    border-bottom: 0.5px solid #f0efeb;
}
.hdr-drop li:last-child a { border-bottom: none; }
.hdr-drop li a:hover { color: var(--gold); background: #faf9f6; }

/* SNSアイコン */
.hdr-sns {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
}
.hdr-sns-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.28);
    transition: color 0.25s, border-color 0.25s;
    flex-shrink: 0;
}
#box-header.scrolled .hdr-sns-icon { color: #555; border-color: rgba(0,0,0,0.15); }
.hdr-sns-icon:hover { color: var(--gold); border-color: var(--gold); }
.hdr-sns-icon svg { width: 14px; height: 14px; fill: currentColor; display: block; }

/* 電話番号 */
.hdr-tel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 14px;
    border-left: 1px solid rgba(255,255,255,0.18);
    flex-shrink: 0;
}
#box-header.scrolled .hdr-tel { border-left-color: rgba(0,0,0,0.1); }
.hdr-tel-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 17px;
    letter-spacing: 0.08em;
    color: #fff;
    font-weight: 400;
    line-height: 1.1;
    text-decoration: none;
    transition: color 0.4s;
}
#box-header.scrolled .hdr-tel-num { color: var(--navy); }
.hdr-tel-num:hover { color: var(--gold); }
.hdr-tel-label {
    font-size: 9px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    margin-top: 3px;
    transition: color 0.4s;
}
#box-header.scrolled .hdr-tel-label { color: var(--gray); }

/* お問い合わせCTAボタン */
.hdr-cta {
    display: flex;
    align-items: center;
    padding: 9px 18px;
    margin-left: 14px;
    border: 1px solid var(--gold-lt);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.hdr-cta:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ハンバーガー（SP用） */
.hdr-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px; height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 16px;
    flex-shrink: 0;
}
.hdr-burger span {
    display: block;
    width: 100%; height: 1px;
    background: #fff;
    transition: background 0.4s, transform 0.3s, opacity 0.3s;
}
#box-header.scrolled .hdr-burger span { background: var(--navy); }
.hdr-burger.hdr-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.hdr-open span:nth-child(2) { opacity: 0; }
.hdr-burger.hdr-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 固定ページでもヘッダー透明スタート */
.page #box-header { background: transparent; }

/* =========================================
   FV（ファーストビュー）
   ========================================= */
.box-hero {
    position: relative;
    height: 100vh;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: -80px;
}
.box-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.box-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15,30,50,0.42);
}
.box-slide-1 {
    background-image: url('https://box-group.net/wp-content/uploads/2026/05/AdobeStock_276321883-scaled-1.jpeg') !important;
    animation: box-s1 12s ease-in-out infinite, box-kz 24s ease-in-out infinite alternate;
    z-index: 1;
}
.box-slide-2 {
    background-image: url('https://box-group.net/wp-content/uploads/2026/05/AdobeStock_174449330-scaled-1.jpeg') !important;
    animation: box-s2 12s ease-in-out infinite, box-kz 24s ease-in-out infinite alternate;
    z-index: 0;
}
@keyframes box-s1 {
    0%   { opacity: 1; }  40% { opacity: 1; }
    50%  { opacity: 0; }  90% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes box-s2 {
    0%   { opacity: 0; }  40% { opacity: 0; }
    50%  { opacity: 1; }  90% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes box-kz {
    from { transform: scale(1); }
    to   { transform: scale(1.09); }
}
.box-hero-content,
.box-hero-text {
    position: relative;
    z-index: 10;
    padding: 80px 24px 0;
}
.box-hero-label {
    font-size: 10px;
    letter-spacing: 0.32em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 22px;
}
.box-hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 300;
    color: #fff !important;
    letter-spacing: 0.14em;
    line-height: 1.75;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.box-hero-rule {
    width: 36px; height: 1px;
    background: var(--gold);
    margin: 0 auto 20px;
}
.box-hero-sub {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #fff !important;
    line-height: 2;
    margin-bottom: 42px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
/* h1タグ直接指定（Cocoon上書き対策） */
.box-hero-text h1,
.box-hero-content h1 {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.box-hero-text p,
.box-hero-content p {
    color: #fff !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.box-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.box-btn-hero {
    border: 1px solid rgba(197,160,89,0.7);
    color: #fff !important;
    padding: 12px 22px;
    font-size: 11px;
    letter-spacing: 0.1em;
    cursor: pointer;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
    transition: all 0.3s;
    font-family: 'Noto Sans JP', sans-serif;
    text-shadow: none;
}
.box-btn-hero:hover { background: var(--gold); border-color: var(--gold); color: #fff !important; }

/* 固定ページ用HEROバナー */
.box-page-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0 60px 52px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: -80px;
}
.box-page-hero img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 10s ease;
}
.box-page-hero:hover img { transform: scale(1.0); }
.box-page-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,18,14,.75) 0%, rgba(20,18,14,.2) 60%, transparent 100%);
}
.box-page-hero-inner { position: relative; z-index: 1; }
.box-page-hero-inner .box-en {
    font-size: 11px; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold);
    display: block; margin-bottom: 10px;
}
#box-wrap .box-page-hero-inner h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(24px, 4vw, 38px);
    color: #fff; font-weight: 400;
    letter-spacing: 0.06em; line-height: 1.35;
}

/* =========================================
   ニュースバー
   ========================================= */
.box-news-bar {
    background: var(--light);
    padding: 14px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 3px solid var(--gold);
}
.box-news-tag {
    background: var(--navy);
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.15em;
    padding: 3px 10px;
    font-weight: 500;
}
.box-news-text { font-size: 12px; color: var(--muted); }

/* =========================================
   セクション共通
   ========================================= */
.box-section { padding: 72px 32px; max-width: 1100px; margin: 0 auto; }
.box-bg-light { background: var(--cream); }
.box-sec-title { text-align: center; margin-bottom: 52px; }
.box-sec-title h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px; font-weight: 400;
    color: var(--navy); letter-spacing: 0.14em; margin-bottom: 10px;
}
.box-sec-title .box-en-label {
    font-size: 10px; letter-spacing: 0.3em; color: var(--gold);
    text-transform: uppercase; display: block; margin-bottom: 16px;
}
.box-sec-title .box-rule {
    width: 28px; height: 1px; background: var(--gold);
    margin: 0 auto 14px;
}
.box-sec-title p { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

/* =========================================
   フィーチャーグリッド
   ========================================= */
.box-feat-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px; background: var(--border);
}
.box-feat-card {
    background: #fff; padding: 36px 28px;
    text-align: center; transition: background 0.3s;
}
.box-feat-card:hover { background: var(--navy); }
.box-feat-card:hover .box-feat-title,
.box-feat-card:hover .box-feat-text { color: #fff; }
.box-feat-card:hover .box-feat-num  { color: var(--gold); }
.box-feat-num {
    font-family: 'Noto Serif JP', serif; font-size: 28px;
    color: var(--border); margin-bottom: 16px; transition: color 0.3s;
}
.box-feat-title {
    font-size: 15px; font-weight: 500; color: var(--navy);
    margin-bottom: 10px; letter-spacing: 0.06em; transition: color 0.3s;
}
.box-feat-text {
    font-size: 12px; color: var(--muted); line-height: 1.9; transition: color 0.3s;
}

/* =========================================
   バナー帯
   ========================================= */
.box-banner {
    background: var(--navy);
    border: 1px solid rgba(197,160,89,0.4);
    padding: 36px 40px; text-align: center; margin-top: 48px;
}
.box-banner-gold {
    font-family: 'Noto Serif JP', serif; color: var(--gold);
    font-size: 18px; letter-spacing: 0.1em; margin-bottom: 12px;
}
.box-banner-body {
    font-size: 12px; color: rgba(255,255,255,0.65); line-height: 2; letter-spacing: 0.04em;
}
.box-banner-light { background: #fff; border-color: var(--navy); }
.box-banner-light .box-banner-title {
    font-family: 'Noto Serif JP', serif; font-size: 16px;
    color: var(--navy); letter-spacing: 0.1em; margin-bottom: 10px;
}
.box-banner-light .box-banner-body { color: var(--muted); }

/* =========================================
   物件カード
   ========================================= */
.box-sale-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.box-rent-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.box-prop-card {
    border: 1px solid var(--border);
    transition: border-color 0.35s, box-shadow 0.35s;
    overflow: hidden; background: #fff;
}
.box-prop-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(26,46,74,0.08); }
.box-prop-img {
    height: 180px; background: #d8d6cf;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: var(--gray); letter-spacing: 0.1em;
}
.box-prop-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.box-prop-body { padding: 20px 22px; }
.box-prop-tag { font-size: 9px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.box-prop-name { font-family: 'Noto Serif JP', serif; font-size: 16px; color: var(--navy); margin-bottom: 10px; font-weight: 400; }
.box-prop-price { font-size: 22px; color: var(--gold); font-family: 'Noto Serif JP', serif; margin-bottom: 10px; }
.box-prop-price span { font-size: 11px; color: var(--gray); font-family: 'Noto Sans JP', sans-serif; }
.box-prop-detail { font-size: 11px; color: var(--muted); line-height: 1.9; }

/* =========================================
   キャンペーン
   ========================================= */
.box-camp-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.box-camp-card {
    border-left: 3px solid var(--gold); padding: 24px; background: #fff;
    border-top: 1px solid var(--border); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.box-camp-title { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 10px; letter-spacing: 0.04em; }
.box-camp-text  { font-size: 12px; color: var(--muted); line-height: 1.9; }

/* =========================================
   オーナーセクション
   ========================================= */
.box-owner-wrap { background: var(--navy-dk); }
.box-owner-inner { padding: 64px 32px; max-width: 1100px; margin: 0 auto; text-align: center; }
.box-owner-inner h2 {
    font-family: 'Noto Serif JP', serif; font-size: 22px; color: #fff;
    letter-spacing: 0.14em; font-weight: 300; margin-bottom: 12px;
}
.box-owner-inner p { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; margin-bottom: 40px; line-height: 2; }
.box-owner-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; background: rgba(197,160,89,0.2);
}
.box-owner-btn {
    background: var(--navy); color: rgba(255,255,255,0.7);
    padding: 28px 16px; text-align: center; font-size: 13px; letter-spacing: 0.08em;
    cursor: pointer; transition: all 0.3s; border: none; font-family: 'Noto Sans JP', sans-serif;
}
.box-owner-btn:hover { background: var(--gold); color: #fff; }

/* =========================================
   汎用ボタン
   ========================================= */
.box-btn {
    display: inline-block; padding: 13px 32px;
    border: 1px solid var(--gold); color: var(--gold);
    font-size: 12px; letter-spacing: 2px; text-decoration: none;
    background: transparent; position: relative; overflow: hidden;
    transition: color 0.4s; z-index: 1;
}
.box-btn::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gold); transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); z-index: -1;
}
.box-btn:hover { color: #fff; text-decoration: none; }
.box-btn:hover::before { transform: scaleX(1); transform-origin: left; }

/* =========================================
   フェードイン
   ========================================= */
.box-fade {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
    transition-delay: var(--box-delay, 0s);
}
.box-fade.box-on { opacity: 1; transform: translateY(0); }
.box-d1 { --box-delay: 0.1s; }
.box-d2 { --box-delay: 0.2s; }
.box-d3 { --box-delay: 0.3s; }

/* =========================================
   フッター
   ========================================= */
#box-footer {
    background: #111820;
    color: rgba(255,255,255,0.45);
    padding: 56px 32px 0;
    font-size: 11px;
}
.box-footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.box-footer-brand {
    font-family: 'Noto Serif JP', serif; font-size: 18px;
    letter-spacing: 0.14em; color: rgba(255,255,255,0.85);
    font-weight: 300; margin: 0 0 20px;
}
.box-footer-desc { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 2.2; letter-spacing: 0.04em; margin: 0; }
.box-footer-desc a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.box-footer-desc a:hover { color: var(--gold); }
.box-footer-col-title {
    font-family: 'Noto Serif JP', serif; font-size: 11px; letter-spacing: 0.2em;
    color: rgba(255,255,255,0.6); margin: 0 0 18px;
    padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.box-footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.box-footer-links a { font-size: 11px; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.box-footer-links a:hover { color: var(--gold); }
.box-footer-bottom {
    max-width: 1100px; margin: 0 auto; padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between;
}
.box-privacy { font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.box-privacy:hover { color: var(--gold); }
.box-copyright { font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.2); margin: 0; }

/* =========================================
   固定ページ共通
   ========================================= */
.box-inner { max-width: 1100px; margin: 0 auto; padding: 0 60px; box-sizing: border-box; }
.box-service-section { padding: 88px 0; width: 100vw; margin-left: calc(50% - 50vw); box-sizing: border-box; }
.box-service-section:nth-child(even) { background: #f4f2ef; }
.box-lead { font-family: 'Noto Serif JP', serif; font-size: clamp(17px,2vw,21px); line-height: 2; color: #1a1a1a; margin-bottom: 24px; letter-spacing: 0.04em; }
.box-body { font-size: 15px; line-height: 2.1; color: #444; margin-bottom: 64px; max-width: 800px; }
.box-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 80px; }
.box-two-col.box-reverse { direction: rtl; }
.box-two-col.box-reverse > * { direction: ltr; }
.box-two-col-img { overflow: hidden; aspect-ratio: 4/3; }
.box-two-col-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; transform: scale(1.04); display: block; max-width: none; }
.box-two-col-img:hover img { transform: scale(1.0); }
.box-cta-bar { background: var(--navy); padding: 72px 60px; text-align: center; width: 100vw; margin-left: calc(50% - 50vw); box-sizing: border-box; }
.box-cta-bar p { font-family: 'Noto Serif JP', serif; font-size: clamp(15px,1.8vw,19px); color: rgba(255,255,255,.75); margin-bottom: 36px; letter-spacing: 0.06em; line-height: 2; }
.box-breadcrumb { background: #f4f2ef; padding: 14px 60px; font-size: 12px; color: #888; letter-spacing: 0.05em; width: 100vw; margin-left: calc(50% - 50vw); box-sizing: border-box; }
.box-breadcrumb a { color: #888; text-decoration: none; }
.box-breadcrumb a:hover { color: var(--gold); }
.box-breadcrumb span { margin: 0 8px; }

/* =========================================
   レスポンシブ
   ========================================= */
@media (max-width: 1100px) {
    .hdr-tel-label { display: none; }
    .hdr-nav-link { padding: 8px 10px; }
}

@media (max-width: 900px) {
    .hdr-nav { display: none; }
    .hdr-burger { display: flex; }

    .hdr-nav.hdr-open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        inset: 80px 0 0 0;
        background: rgba(255,255,255,0.98);
        padding: 24px;
        overflow-y: auto;
        z-index: 9998;
        gap: 0;
    }
    .hdr-nav.hdr-open .hdr-nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .hdr-nav.hdr-open .hdr-nav-list > li { width: 100%; }
    .hdr-nav.hdr-open .hdr-nav-link {
        color: #333; font-size: 15px;
        padding: 16px 0; width: 100%;
        border-bottom: 1px solid #eee;
        border-left: none; border-right: none; border-top: none;
    }
    .hdr-nav.hdr-open .hdr-drop {
        position: static; transform: none;
        box-shadow: none; background: #f7f7f7;
        padding: 0 0 0 16px; display: block;
        border-top: none;
    }
    .hdr-nav.hdr-open .hdr-sns { padding: 20px 0 0; }
    .hdr-nav.hdr-open .hdr-tel { align-items: flex-start; border-left: none; padding: 16px 0 0; }
    .hdr-nav.hdr-open .hdr-tel-label { display: block; }
    .hdr-nav.hdr-open .hdr-tel-num { color: var(--navy); font-size: 20px; }
    .hdr-nav.hdr-open .hdr-cta { margin-left: 0; margin-top: 20px; }
}

@media (max-width: 768px) {
    .hdr-inner { padding: 0 20px; }
    .box-section { padding: 56px 20px; }
    .box-feat-grid,
    .box-sale-grid,
    .box-camp-grid,
    .box-owner-grid { grid-template-columns: 1fr; }
    .box-rent-grid  { grid-template-columns: repeat(2,1fr); }
    .box-footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
    #box-footer { padding: 48px 24px 0; }
    .box-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .box-page-hero { padding: 0 24px 36px; height: 300px; }
    .box-breadcrumb { padding: 12px 24px; }
    .box-inner { padding: 0 24px; }
    .box-service-section { padding: 64px 0; }
    .box-two-col { grid-template-columns: 1fr; gap: 32px; }
    .box-two-col.box-reverse { direction: ltr; }
    .box-cta-bar { padding: 56px 24px; }
}

@media (max-width: 480px) {
    .box-rent-grid { grid-template-columns: 1fr; }
}

#header-container {
    display: none !important;
}

.page article,
.page .entry-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.page .date-tags {
    display: none !important;
}

.page .box-service-section {
    margin-bottom: 0 !important;
}
.page .entry-content p:empty {
    display: none !important;
}

.box-cta-bar {
    margin-bottom: 0 !important;
}

/* =========================================
   物件一覧
   ========================================= */
.box-prop-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
}
.box-prop-tab {
    padding: 10px 24px;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}
.box-prop-tab:hover { color: var(--gold); }
.box-prop-tab-active {
    color: var(--navy);
    border-bottom-color: var(--gold);
    font-weight: 500;
}
.box-prop-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.box-prop-list-item {
    border: 1px solid var(--border);
    background: #fff;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.box-prop-list-item:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(26,46,74,0.08);
}
.box-prop-list-img {
    display: block;
    height: 200px;
    overflow: hidden;
    background: var(--light);
}
.box-prop-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.box-prop-list-item:hover .box-prop-list-img img {
    transform: scale(1.04);
}
.box-prop-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--gray);
}
.box-prop-list-body {
    padding: 20px;
}
.box-prop-list-tag {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.box-prop-list-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    color: var(--navy);
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.6;
}
.box-prop-list-name a {
    color: inherit;
    text-decoration: none;
}
.box-prop-list-name a:hover { color: var(--gold); }
.box-prop-list-price {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 12px;
}
.box-prop-list-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}
.box-prop-list-detail span {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}
.box-prop-list-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--navy);
    color: var(--navy);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.box-prop-list-btn:hover {
    background: var(--navy);
    color: #fff;
}

@media (max-width: 900px) {
    .box-prop-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .box-prop-list { grid-template-columns: 1fr; }
    .box-prop-tabs { flex-wrap: wrap; }
}

/* =========================================
   ニュース一覧
   ========================================= */
.box-news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.box-news-item {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.box-news-item:first-child { border-top: 1px solid var(--border); }
.box-news-item-img {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    overflow: hidden;
    display: block;
    background: var(--light);
}
.box-news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.box-news-item:hover .box-news-item-img img { transform: scale(1.04); }
.box-news-no-img { background: var(--light); }
.box-news-item-body { flex: 1; }
.box-news-item-date {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}
.box-news-item-title {
    font-size: 14px;
    color: var(--navy);
    line-height: 1.7;
}
.box-news-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.box-news-item-title a:hover { color: var(--gold); }

@media (max-width: 480px) {
    .box-news-item { gap: 16px; }
    .box-news-item-img { width: 72px; height: 52px; }
}

/* =========================================
   未公開物件セクション
   ========================================= */
.box-unpublished {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.box-unpublished-left img {
    width: 100%;
    height: auto;
    display: block;
}
.box-unpublished-lead {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.9;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}
.box-unpublished-body {
    font-size: 13px;
    color: var(--muted);
    line-height: 2.2;
    margin-bottom: 28px;
}
.box-unpublished-banner {
    display: block;
}
.box-unpublished-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.2s;
}
.box-unpublished-banner:hover img { opacity: 0.85; }

/* 賃貸物件検索ボタン（スクロール追従・トップページのみ） */
.box-rent-float {
    display: none;
}
.front-top-page .box-rent-float {
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 1000;
    display: block;
    width: 200px;
    transition: opacity 0.2s, transform 0.2s;
}
.front-top-page .box-rent-float img {
    width: 100%;
    height: auto;
    display: block;
}
.front-top-page .box-rent-float:hover { transform: scale(1.05); }

@media (max-width: 768px) {
    .box-unpublished { grid-template-columns: 1fr; gap: 32px; }
    .front-top-page .box-rent-float { width: 120px; right: 12px; bottom: 24px; }
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
