/* 全体制御 */

html {
    font-family: 'Noto Serif JP', serif;
    font-size: 62.5%;
    height: 100%;
    line-height: 1.8;
    word-break: break-word;
    color: #545454;
    background-color: var(--color-bg-base);
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    font-weight: 600;
    font-size: 1.6rem;
    color: #545454;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    border: 0;
    margin: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}

figure,
p,
a,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #545454;
    transition: all 0.3s;
}

ul,
ol {
    list-style: none;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

table {
    width: 100%;
}


p {
    line-height: 1.8;
}

/* 管理バー制御 */

body.admin-bar .header {
    top: 32px;
}

body.admin-bar .main {
    height: calc(100vh - var(--admin-bar-offset));
}


/* 管理バーが表示されている場合のモバイル用 */

@media screen and (max-width: 782px) {

    body.admin-bar #wrapper,
    body.admin-bar .header {
        margin-top: var(--admin-bar-mobile-offset);
    }
}

.container {
    max-width: 1128px;
    margin: 0 auto;
    padding: 0 14px;
}

.breadcrumb {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    font-size: 1.3rem;
}

.breadcrumb-title {
    color: #666666;
}

.swiper-navigation-icon svg {
	display: none;
}

/* 追加CSS */


/*---------------------------------
  リセットや基本フォント指定などは適宜追加
----------------------------------*/


/*---------------------------------
    メインビジュアル全体
  ----------------------------------*/

.main-visual {
    position: relative;
    width: 100%;
    min-height: 90vh;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: end;
}


/* 背景画像（必要に応じて差し替えてください） */

.main-visual__bg {
    width: 100%;
    height: 90vh;
    background: url("/wp-content/uploads/2025/07/Group-407-1.jpg") no-repeat center center;
    background-size: cover;
    z-index: 1;
}


/*---------------------------------
    メインコンテンツ
  ----------------------------------*/

.main-visual__content {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding-left: 5vw;
}

.main-visual__title {
    font-size: 5.4rem;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 26px;
}

.main-visual__subtitle {
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 700;
}


/*---------------------------------
    スクロールダウンインジケーター（線アニメーション）
  ----------------------------------*/

.scroll-indicator {
    flex: 1;
    display: flex;
    justify-content: center;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 10px;
    color: #545454;
    text-decoration: none;
    writing-mode: vertical-lr;
    transition: opacity 0.2s;
    font-size: 1.4rem;
    font-weight: 700;
}

.scroll-indicator a::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 100px;
    background: #545454;
    transform: translateX(-50%) scaleY(0);
    transform-origin: bottom;
    animation: scrollLineAnim 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}


/* 上から下に線が伸びるアニメーション */

@keyframes scrollLineAnim {
    0% {
        transform: translateX(-50%) scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: translateX(-50%) scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform: translateX(-50%) scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: translateX(-50%) scaleY(0);
        transform-origin: bottom;
    }
}


/*---------------------------------
    下部のお知らせバー
  ----------------------------------*/

.main-visual__bottom-bar {
    position: absolute;
    bottom: -5%;
    right: 0;
    width: 66%;
    background: #C7A14C;
    z-index: 3;
    padding: 23px 0;
}

.main-visual__bottom-bar-inner {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}


/* 日付のデザイン */

.main-visual__date {
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 1.4rem;
}


/* お知らせのデザイン */

.main-visual__category {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-visual__category {
    display: inline-block;
    background-color: #545454;
    color: #fff;
    font-weight: 700;
    padding: 9px 23px;
    text-decoration: none;
    font-size: 1.4rem;
}

.main-visual__notice:hover {
    opacity: 0.8;
}


/* お知らせ本文 */

.main-visual__notice {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    transition: opacity 0.2s;
}


/*---------------------------------
    レスポンシブ対応例
  ----------------------------------*/

@media screen and (max-width: 768px) {
    .main-visual {
        min-height: 80vh;
    }

    .main-visual__title {
        font-size: 3.6rem;
    }

    .main-visual__subtitle {
        font-size: 1.6rem;
    }

    .main-visual__bottom-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


/*------------------------------
  全体ベース
------------------------------*/

.property-section {
    background-color: #fff;
    color: #545454;
}

.property-section-head__inner {
    margin-bottom: 60px;
}

.property-section__subtitle {
    font-size: 1.2rem;
    color: #555;
}


/* 物件一覧へのリンク */

.property-section__more {}


/*------------------------------
    タブメニュー
  ------------------------------*/

.property-tabs {
    display: flex;
    gap: 1px;
    margin-bottom: 20px;
    list-style: none;
}

.property-tabs__item {
    position: relative;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    width: 150px;
    text-align: center;
    background-color: rgba(199, 161, 76, 0.4);
    transition: all 0.3s;
}

.property-tabs__item:hover {
    background-color: rgba(199, 161, 76, 0.8);
}


/*------------------------------
    タブコンテンツ
  ------------------------------*/

.property-tabs__contents {
    position: relative;
}

.property-tab-content {
    display: none;
}

.property-tab-content.active {
    display: block;
}


/*------------------------------
    スライダー
  ------------------------------*/

.property-slider-container {
    position: relative;
}

.property-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    margin-right: -40px;
}


/*----------------------------------
  物件カード全体
----------------------------------*/

.property-card {
    position: relative;
    background: #fff;
    border: 1px solid #DADADA;
    overflow: hidden;
    margin: 0 auto;
    text-decoration: none;
    color: #545454;
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-bottom: 30px;
}

.property-card__thumb img {
    width: 280px;
    height: 242px;
    object-fit: cover;
}

.front-property-card__thumb {
    margin-bottom: 12px;
}


/* 種別ラベル (例: 新築戸建/中古戸建など) */

.property-card__category {
    display: inline-block;
    background-color: #fff;
    background: #C7A14C;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid #C7A14C;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 6px 14px;
    margin-bottom: 14px;
}

.front-property-card__category {
    display: inline-block;
    background-color: #fff;
    background: #C7A14C;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid #C7A14C;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 6px 14px;
    margin-bottom: 14px;
}


/* タイトル (物件名) */

.property-card__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.front-property-card__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.front-property-card__address {
    font-size: 1.3rem;
    border-bottom: 1px solid #DADADA;
    padding-bottom: 16px;
    margin-bottom: 16px;
}


/* 価格 */

.property-card__price {
    font-size: 1.6rem;
    font-weight: 700;
}

.property-card__info-size {
    display: flex;
    gap: 4px;
    flex-direction: column;
}

.price-value {
    font-size: 2.4rem;
    font-weight: 700;
    background: #C7A14C;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-unit {
    font-size: 1.6rem;
    color: #545454;
    font-weight: 700;
}

.property-card__price span {
    font-size: 1.3rem;
    color: #545454;
    font-weight: 700;
}

.property-card__price span:last-child {
    font-size: 1.6rem;
    color: #545454;
    font-weight: 700;
}

.property-card__info span {
    font-size: 1.3rem;
    color: #545454;
    font-weight: 700;
}

.property-card__price,
.property-card__info {
    padding-bottom: 14px;
    padding-top: 14px;
    border-bottom: 1px solid #DADADA;
}

.property-card__price {
    padding-top: 0;
}

.property-card__area {
    display: flex;
    gap: 20px;
}

.property-card__area .property-card__info {
    width: 50%;
}

.front-property-card__madori {
    font-size: 1.4rem;
    color: #7C7C7C;
}


/* カード全体のホバー (必要なら) */

.property-slide:hover .property-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    transition: 0.3s ease;
}

.property-contents {
    display: flex;
    gap: 20px;
}


/*------------------------------
    レスポンシブ例
  ------------------------------*/

@media screen and (max-width: 768px) {
    .property-section__title {
        font-size: 1.8rem;
    }

    .property-section__subtitle {
        font-size: 1rem;
    }

    .property-slider-container {
        margin-right: -20px;
        padding-right: 20px;
    }

    .property-slider {
        margin-right: -20px;
    }
}

.post-content {
    margin-top: 24px;
}

.front-property-slider-container .swiper-wrapper {
    padding: 0 14px;
}


/* --- Swiper共通スタイル --- */

.card02 {
    overflow: hidden;
}

.card02 .swiper {
    overflow: visible;
    position: relative;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    max-width: 1128px;
    margin: 0 auto;
}

.card02 .swiper-controller {
    display: flex;
    gap: 4.6rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 6rem;
    position: relative;
}

.swiper-button-inner {
    display: flex;
    gap: 1.6rem;
}

.card02 .swiper-button-prev,
.card02 .swiper-button-next {
    flex-shrink: 0;
    margin: 0;
    width: 6rem;
    height: 6rem;
    position: inherit;
    border: 1px solid #C7A14C;
}

.card02 .swiper-button-prev::before,
.card02 .swiper-button-next::before {
    content: "";
    border-radius: 50%;
    box-shadow: var(--box-shadow);
}

.card02 .swiper-button-prev::after,
.card02 .swiper-button-next::after {
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    border: solid #C7A14C;
    border-width: 3px 3px 0 0;
}

.card02 .swiper-button-prev::after {
    margin-left: 0.4rem;
    transform: rotate(-135deg);
}

.card02 .swiper-button-next::after {
    margin-right: 0.4rem;
    transform: rotate(45deg);
}

.card02 .swiper-slide {
    width: 36%;
}

.card02 .slide {
    overflow: hidden;
}


/* タブ・プロパティセクション用（既存のスタイル例） */

.property-section {
    background-color: #fff;
    margin-top: 160px;
}

.property-section__title {
    display: inline-block;
    font-size: 9.6rem;
    font-weight: 700;
    background: #C7A14C;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.property-section__title span {
    margin-left: 10px;
    color: #ccc;
}

.property-section__subtitle {
    font-size: 1.8rem;
    color: #666666;
    font-weight: bold;
}

.property-tabs__item.active {
    color: #C7A14C;
    border-top: 2px solid #C7A14C;
    background-color: #F9F9F9;
}

.property-tab-content {
    display: none;
}

.property-tab-content.active {
    display: block;
}

.front-property-section__more a {
    border-bottom: 1px solid #C7A14C;
    color: #C7A14C;
    font-weight: 700;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.fa-arrow-right {
    font-size: 2.6rem;
}

.property-no-posts {
    margin: 20px 0;
    text-align: center;
    color: #999;
}

.property-no-posts.same-height {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    /* 投稿があるときの高さに合わせて調整 */
}

.company-section {
    position: relative;
    padding: 80px 0;
}


/* 上部の大きな画像を横幅いっぱいに */

.company-section__hero {
    width: 80%;
    position: relative;
    margin-left: auto;
    margin-right: 0;
}

.company-section__hero img {
    width: 100%;
    height: 350px;
    display: block;
}

.company-section__inner {
    padding-top: 30rem;
    padding-bottom: 11rem;
    margin-top: -20rem;
    position: relative;
}

.company-section__inner::after {
    content: "";
    display: block;
    width: 80%;
    max-width: 1128px;
    height: 100%;
    background: #C7A14C;
    position: absolute;
    top: 0;
    z-index: -2;
}


/* コンテンツ本体（見出し・本文・建物写真・ボタン） */

.company-section__container {
    position: relative;
    max-width: 1128px;
    margin: 0 auto;
    padding: 0 14px;
}


/* 見出し */

.company-section__title {
    font-size: 8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3.2rem;
}


/* 本文 */

.company-section__text {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 2.6rem;
    max-width: 536px;
}


/* 右下に配置する建物写真 */

.company-section__image-wrap {
    width: 46%;
    max-width: 500px;
    position: absolute;
    right: 0;
    bottom: -22%;
    z-index: -1;
}

.company-section__image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}


/* Newsセクション全体 */

.news-section {
    margin-top: 200px;
}

.news-section__inner {
    display: flex;
    gap: 100px;
    justify-content: space-between;
}


/* 左カラム（タイトル・説明・ボタン） */

.news-section__left {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-section__title {
    display: inline-block;
    font-size: 4.8rem;
    font-weight: 700;
    background: #C7A14C;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-section__subtitle {
    color: #666;
    font-weight: 700;
}


/* ボタン内の矢印 */

.news-section__arrow {
    margin-left: 0.5rem;
    font-weight: 400;
    font-size: 1.6rem;
}


/* 右カラム（投稿一覧） */

.news-section__right {
    flex: 1;
    max-width: 700px;
}

.news-section__left-head {
    display: flex;
    flex-direction: column;
}


/* 投稿一覧 */

.news-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}


/* 投稿アイテム */

.news-list__item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid #DADADA;
    padding-bottom: 30px;
}


/* 日付 */

.news-list__date {
    color: #666;
    font-size: 1.4rem;
    white-space: nowrap;
    width: 100px;
}


/* カテゴリ */

.news-list__category {
    display: inline-block;
    color: #fff;
    font-size: 1.4rem;
    padding: 7px 32px;
    white-space: nowrap;
    background: #595758;
}

.news-list__category a {
    color: #fff;
}

.main-visual__notice-btn {
    color: #fff;
}


/* テキスト（タイトルor抜粋） */

.news-list__text {
    font-size: 1.4rem;
    color: #545454;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
}

.news-list__no-posts {
    color: #999;
    font-size: 1.4rem;
    margin: 1rem 0;
}


/* レスポンシブ例 */

@media screen and (max-width: 768px) {
    .news-section__inner {
        flex-direction: column;
        gap: 24px;
    }

    .news-section__left {
        flex: none;
        width: 100%;
    }

    .news-section__right {
        width: 100%;
    }

    .news-list__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-list__text {
        white-space: normal;
    }
}


/* 全体リセットなどは別途 */


/* セクション全体 */

.contact-section {
    position: relative;
    width: 100%;
    color: #fff;
    background: url("/wp-content/uploads/2025/06/Group-402.jpg") no-repeat center center / cover;
    overflow: hidden;
    min-height: 500px;
    padding-top: 74px;
    margin-top: 160px;
}


/* オレンジのオーバーレイ */

.contact-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


/* コンテンツコンテナ */

.contact-section__inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}


/* 左側エリア */

.contact-section__left {}


/* タイトル・サブタイトル */

.contact-section__title {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-section__title .contact-section__subtitle {
    font-size: 1.6rem;
}

.contact-section__content {
    font-weight: 700;
}

.contact-section__line {
    width: 70px;
    height: 1px;
    background-color: #fff;
    display: inline-block;
}

.contact-section__subtitle {
    font-size: 1.4rem;
}


/* 電話番号ブロック */

.contact-section__tel-block {
    margin-top: 3.2rem;
}

.contact-section__tel {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-section__time {
    color: #fff;
}


/* 右側エリア */

.contact-section__right {
    width: 50%;
    display: flex;
    justify-content: center;
}


/* 白いボックス */

.contact-section__box {
    background-color: #fff;
    color: #545454;
    padding: 3.2rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: block;
    width: 100%;
}

.contact-section__box:hover {
    opacity: 0.8;
}

.contact-section__box-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: #C7A14C;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.4rem;
    text-align: center;
}

.contact-section__icon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.contact-section__icon-inner img {
    width: 60px;
}

.contact-section__box-text {
    line-height: 1.8;
    text-align: center;
    font-weight: 500;
}


/* レスポンシブ例 */

@media screen and (max-width: 768px) {
    .contact-section__inner {
        flex-direction: column;
        gap: 40px;
    }

    .contact-section__left,
    .contact-section__right {
        flex: 1 1 100%;
        min-width: auto;
        text-align: center;
    }

    .contact-section__box {
        margin: 0 auto;
    }
}


/* フッター全体 */

.footer {
    background-color: #595758;
    color: #545454;
    padding-top: 80px;
    padding-bottom: 80px;
}

.footer__company-name,
.footer__company-address,
.footer__contact-info {
    font-size: 1.4rem;
}

.footer__contact-info {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.footer__company-name {
    margin-bottom: 0.5rem;
}


/* インナー（左右2カラム） */

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}


/* 左カラム */

.footer__left {
    flex: 1 1 300px;
    min-width: 280px;
    color: #fff;
}


/* ロゴ（仮） */

.footer__logo {
    font-size: 2rem;
    font-weight: 700;
    color: #e53935;
    margin-bottom: 2.4rem;
}


/* 会社情報 */

.footer__company {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #545454;
}


/* 右カラム */

.footer__right {
    flex: 1 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-end;
}


/* ナビゲーション・物件リスト共通 */

.footer__nav-list,
.footer__property-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__nav-list {
    display: flex;
    gap: 30px;
}

.footer__nav-list li,
.footer__nav-property {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.footer__nav-property-list {
    position: relative;
    padding-left: 5rem;
}

.footer__nav-list li::before,
.footer__nav-property-list::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #C7A14C;
}

.footer__property-list {
    margin-top: 16px;
}

.footer__property-list a {
    color: #fff;
    font-size: 1.4rem;
}

.footer__nav-property {
    position: relative;
    font-weight: 700;
}

.footer__nav-property-list::before {
    position: absolute;
    left: 0;
    top: 10px;
}


/* リンク */

.footer__nav-list a {
    text-decoration: none;
    font-size: 1.6rem;
    transition: 0.3s;
    font-weight: 700;
    color: #fff;
}

.footer__nav-list a:hover {
    color: #C7A14C;
}


/* 下部コピーライト */

.footer__bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    font-size: 1.4rem;
    color: #fff;
}


/* レスポンシブ例 */

@media screen and (max-width: 768px) {
    .footer__inner {
        flex-direction: column;
        gap: 20px;
    }

    .footer__left,
    .footer__right {
        flex: 1 1 auto;
        min-width: auto;
    }

    .footer__right {
        justify-content: flex-start;
    }
}

.hamburger-menu-title {
    font-size: 4.8rem;
    font-weight: 700;
}

.hamburger-menu-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
}

.hamburger-nav li .hamburger-nav-list {
    display: flex;
    gap: 24px;
    align-items: center;
}

.hamburger-menu-line {
    display: block;
    width: 30px;
    height: 1px;
    background-color: #545454;
}

.menu-contact-text {
    background-color: #fff;
    color: #545454;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    font-weight: 700;
}

.contact-link img {
    border-radius: 4px 4px 0 0;
}

.site-header {
    position: fixed;
    z-index: 2001;
    height: 80px;
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding-left: 2rem;
    height: 100%;
}

.site-logo img {
    height: 60px;
}


/* ------------------------------
ハンバーガーボタン
------------------------------ */

.hamburger-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    z-index: 2100;
    gap: 10px;
    align-items: center;
    background-color: #fff;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-btn span {
    display: block;
    width: 30px;
    height: 1px;
    background: #C7A14C;
    transition: 0.4s;
}


/* ボタンがアクティブ（開く）ときのアニメーション */

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}


/* ------------------------------
オーバーレイメニュー
------------------------------ */

.menu-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: auto;
    transform: translateX(200%);
    transition: transform 0.5s ease;
    z-index: 2000;
}

.menu-overlay.open {
    transform: translateX(0%);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
}


/* 左: 白背景 */

.menu-left {
    width: 100%;
    background: #fff;
    padding: 11rem 4rem;
    overflow: auto;
}


/* 右: オレンジグラデーション */

.menu-right {
    width: 100%;
    background: #C7A14C;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.header-cta a {
    background: #C7A14C;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
}

.header-cta a:hover {
    opacity: 0.8;
}


/* ------------------------------
左側コンテンツ（WPメニュー）
------------------------------ */

.hamburger-nav-list {
    padding-bottom: 5rem;
    padding-top: 5rem;
    border-top: 1px solid #C7A14C;
}

.hamburger-property-nav-list {
    padding-bottom: 3rem;

}

.hamburger__property-list {
    display: flex;
    gap: 30px;
    color: #6C6C6C;
}


/* ------------------------------
右側コンテンツ（Contact）
------------------------------ */

.contact-title {
    font-size: 6.4rem;
    font-weight: bold;
    margin-bottom: 6rem;
    border-top: 1px solid #fff;
}

.contact-image {
    width: 250px;
    height: 150px;
    background-color: #ddd;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: #545454;
}

.header-cta-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
}

.property-archive {
    background-color: #fff;
    color: #545454;
    padding-top: 140px;
}

.property-archive__title {
    font-size: 9.6rem;
    font-weight: 700;
    background: #C7A14C;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.property-archive__title-inner {
    margin-bottom: 40px;
}

.property-archive__title-inner span {
    font-size: 1.8rem;
    color: #666;
    font-weight: 700;
}

.property-breadcrumb {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.property-breadcrumb .breadcrumb {
    padding: 0;
}

.property-archive__count {
    margin-bottom: 5rem;
}

.property-archive__content {
    display: flex;
    gap: 90px;
    align-items: flex-start;
}

.custom-number-class {
    font-size: 2rem;
    font-weight: 700;
}


/* 左メインカラム */

.property-archive__main {
    flex: 1 1 0;
}

.property-card__thumb {
    position: relative;
}

.property-card__body {
    flex: 1;
}

.property-card__info {
    font-size: 1.3rem;
}

.property-card__buttons {
    margin-top: 16px;
    display: flex;
    gap: 16px;
}

.property-card__buttons a {
    display: inline-block;
    width: 50%;
    padding: 12px 16px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.property-card__buttons a:hover {
    opacity: 0.8;
}

.property-card__detail-btn {
    background-color: #545454;
    color: #fff;
}

.property-card__contact-btn {
    background: #C7A14C;
    color: #fff;
}

.property-archive__pagination {
    margin: 20px 0;
}


/* 右サイドバー */

.property-archive__sidebar {
    width: 330px;
    flex-shrink: 0;
    border: 4px solid #DADADA;
    padding: 34px 24px;
}

.property-archive__sidebar-title {
    font-size: 1.8rem;
    font-weight: 700;
}


/* 物件検索フォームのトグルスタイル */

.property-archive__sidebar-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f5f5f5;
    transition: background-color 0.3s;
}

.property-archive__sidebar-title:hover {
    background-color: #e9e9e9;
}

.toggle-icon {
    display: inline-block;
    transition: transform 0.3s;
}

.property-archive__search-form {
    transition: all 0.3s ease-in-out;
    margin-top: 30px;
}

@media (max-width: 599px) {
    .property-archive__sidebar-title {
        margin-bottom: 0;
    }

    .property-archive__search-form {
        padding-top: 15px;
    }
}

.property-archive__sidebar form {
    display: grid;
    gap: 30px;
}

.form-group label,
fieldset {
    color: #545454;
    font-weight: 700;
}

.form-group fieldset legend {
    margin-bottom: 8px;
}

.property-archive__sidebar select,
.property-archive__sidebar input[type="checkbox"] {
    border: 1px solid #DADADA;
    padding: 12px 16px;
}

.form-group {
    display: flex;
    gap: 14px;
    flex-direction: column;
}

select,
input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    font-weight: 400;
}

fieldset label {
    font-weight: 400 !important;
}

.search-filter-btn {
    transition: all 0.3s;
}

.property-archive__sidebar button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #C7A14C;
    padding: 11px;
    cursor: pointer;
    font-weight: 700;
}

.property-archive__sidebar button:hover {
    background: #C7A14C;
    color: #fff;
}


/* レスポンシブ例 */

@media screen and (max-width: 768px) {
    .property-archive__sidebar {
        width: 100%;
    }

    .property-card {
        flex-direction: column;
    }
}


/* ステータスラベル (例: 販売中/成約済) */

.property-card__status {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 9px 26px;
}

.on-sale,
.recruitment {
    background: #C7A14C;
}

.contract-completed,
.contracted {
    background: #CA0010;
}

/* 賃貸ステータス用 */
.rent-recruitment {
    background: #C7A14C;
}

.rent-contracted {
    background: #CA0010;
}

.form-group-column {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.form-group-column label,
.form-group-flex label {
    display: flex;
    gap: 6px;
}

.form-group-flex label {
    width: calc(50% - 6px);
}

.form-group-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.property-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.6;
}

.property-table th,
.property-table td {
    border: 1px solid #ddd;
    padding: 8px 12px;
    vertical-align: middle;
}

.property-table th {
    background-color: #f7f7f7;
    font-weight: bold;
    width: 20%;
}

.property-table td {
    width: 30%;
}

.property-detail-info-section {
    margin-top: 90px;
}

.property-detail-sub-title h2 {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.property-detail-sub-title h2::before {
    content: "";
    display: block;
    width: 6px;
    height: 30px;
    background: #C7A14C;
}

.property-detail-prcoment-section {
    margin-top: 60px;
}

.property-detail-sub-title {
    margin-bottom: 20px;
}

.property-detail-prcoment p {
    line-height: 1.8;
}

.property-detail-surrounding-section {
    margin-top: 60px;
}

.surrounding-info {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.surrounding-item {
    width: calc(50% - 10px);
}

.image-container {
    width: 100%;
    overflow: hidden;
}

.image-container img {
    height: 320px;
    width: 100%;
    object-fit: cover;
    /* 画像をコンテナ内に収める（必要に応じて調整可） */
    display: block;
}

.surrounding-item p {
    margin-top: 1rem;
    font-size: 14px;
}

.page-common-visual {
    position: relative;
    padding-top: 140px;
}

.page-common_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 320px;
    z-index: -1;
}

.page-common_bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.company_bg {
    background: url("/wp-content/uploads/2025/07/Rectangle-555.jpg") no-repeat center center / cover;
}

.page-common-head_en h2 {
    display: inline-block;
    font-size: 9.6rem;
    font-weight: 700;
    color: #C7A14C
}

.page-common-head_jp {
    font-size: 1.8rem;
    font-weight: 700;
    color: #666666;
}

.page-common-section {
    margin-top: 60px;
}

.page-common-company_history-info dl {
    display: flex;
    margin-bottom: 34px;
}

.page-common-company_history-info dl dt {
    width: 20%;
    border-bottom: 1px solid #C7A14C;
    padding-bottom: 34px;
}

.page-common-company_history-info dl dd {
    flex: 1;
    border-bottom: 1px solid #DADADA;
    padding-left: 6%;
    padding-bottom: 34px;
}


/* 全体のフォーム要素に対する基本設定 */

.wpcf7 form {

    font-size: 16px;
    color: #545454;
}


/* 行（.form-row）ごとに下余白をつける */

.wpcf7 form .form-row {
    margin-bottom: 30px;
    display: flex;
}


/* ラベル（見出し）を上に配置 */

.form-label {
    width: 20%;
    display: inline-block;
    color: #545454;
}

.wpcf7-form-control-wrap {
    flex: 1;
}

.wpcf7-form-control {
    display: flex;
    gap: 14px;
}


/* 必須マークを赤色に */

.wpcf7 form .required {
    color: #E44545;
    /* 必須マークの色 */
}


/* テキスト入力、メール、電話番号の共通スタイル */

.wpcf7 form input[type="text"],
.wpcf7 form input[type="email"],
.wpcf7 form input[type="tel"],
.wpcf7 form textarea {
    width: 100%;
    /* 幅を100% */
    padding: 10px;
    /* 内側余白 */
    border-radius: 4px;
    /* 角の丸み */
    box-sizing: border-box;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background-color: #F9F9F9;
    height: 50px;
}


/* フォーカス時の枠線色 */

.wpcf7 form input[type="text"]:focus,
.wpcf7 form input[type="email"]:focus,
.wpcf7 form input[type="tel"]:focus,
.wpcf7 form textarea:focus {
    border-color: #f60;
    /* オレンジ色 */
}

.wpcf7-list-item {
    margin: 0;
}

.wpcf7-acceptance {
    display: flex;
    align-items: center;
    justify-content: center;
}

.personal-information {
    font-weight: 700;
    font-size: 1.4rem;
}


/* 備考（textarea）は高さを調整 */

.wpcf7 form textarea {
    min-height: 240px;
    resize: vertical;
    /* ユーザーが縦方向にリサイズ可能 */
}


/* 個人情報チェックボックス行 */

.form-acceptance {
    display: flex;
    align-items: center;
}

.form-acceptance input[type="checkbox"] {
    margin-right: 0.5em;
}


/* 送信ボタン */

.form-submit input[type="submit"] {
    display: inline-block;
    background: #C7A14C;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    width: 350px;
    height: 70px;
    text-align: center;
    font-weight: 700;
}

.form-submit {
    justify-content: center;
}

.wpcf7-spinner {
    display: none;
}


/* ホバー時のボタン */

.form-submit input[type="submit"]:hover {
    opacity: 0.8;
}

.contact_bg {
    background: url("/wp-content/uploads/2025/07/Rectangle-556.jpg") no-repeat center center / cover;
}

.page-conatct-message {
    text-align: center;
}

.page-contact-tel {
    margin-top: 50px;
    margin-bottom: 80px;
    border: 1px solid #C7A14C;
    padding: 4rem;
    width: 700px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.page-contact-tel-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.page-contact-tel-inner a {
    font-size: 2.4rem;
    font-weight: 700;
}

.page-contact-tel span {
    font-size: 1.4rem;
}

.single-post-container {
    padding-top: 140px;
    display: flex;
    gap: 6rem;
}

.post-main {
    flex: 1;
    min-width: 0;
}

.post-sidebar {
    flex: 0 0 320px;
}

.post-meta {
    display: flex;
    gap: 46px;
    font-size: 1.4rem;
}

.post-title {
    font-size: 3.6rem;
    font-weight: bold;
    margin-top: 28px;
    border-bottom: 1px solid #545454;
    padding-bottom: 30px;
}

.sidebar-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 3rem;
    color: #545454;
}

.latest-post-item:first-child {
    border-top: 1px solid #AEAAA7;
}

.latest-post-item {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #AEAAA7;
}

.latest-post-inner {
    display: flex;
    gap: 30px;
}

.latest-post-title {
    font-size: 1.4rem;
    margin-top: 8px;
}

.latest-post-date {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 0.2rem;
}

.latest-post-cat {
    font-size: 1.2rem;
    color: #e50012;
    margin-bottom: 0.2rem;
}

.sidebar-latest {
    margin-bottom: 3rem;
}

.sidebar-btn-wrap {
    text-align: center;
}

.sidebar-btn-wrap a {
    display: inline-block;
    background-color: #545454;
    color: #fff;
    padding: 1.5rem 6.5rem;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    transition: background-color 0.3sease;
}

.latest-post-title a {
    text-decoration: none;
    color: #545454;
    font-weight: 600;
}

.latest-post-cat a {
    text-decoration: none;
    font-weight: 600;
}

.sidebar-btn-wrap button:hover {
    background-color: #555;
}

.post-meta .post-cat {
    color: #C7A14C;
    font-weight: 700;
}

@media (max-width: 1023px) {
    .post-meta {
        gap: 32px;
    }
}

.footer__logo img {
    width: 300px;
}

.new-post-meta {
    display: flex;
    gap: 30px;
    align-items: center;
}

.error-container {
    margin-top: 60px;
}

.error-container {
    margin-top: 60px;
}

.privacypolicy-container {
    margin-top: 60px;
}

.error-content-area {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.error-home-link {
    background: #C7A14C;
    width: 350px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    font-weight: bold;
    transition: all 0.5s ease;
}

.error-home-link:hover {
    background: linear-gradient(160deg, #e50012 0%, #e95513 100%);
    transition: all 0.5s ease;
}

.policy-group h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.policy-group {
    margin-bottom: 30px;
}

.sp-news-section__more {
    display: none;
}


/* 全体の余白調整 */

.property-detail-section {
    padding-top: 12rem;
}

.property-detail-header {
    display: flex;
    gap: 14px;
    margin-bottom: 60px;
    border-bottom: 1px solid #C7A14C;
    padding-bottom: 28px;
	flex-direction: column;
	align-items: flex-start;
}

.property-detail-type-badge {
    display: inline-block;
    padding: 6px 16px;
    font-weight: bold;
    font-size: 1.4rem;
    background: #C7A14C;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid #C7A14C;
}

.property-detail-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

@media (max-width: 599px) {
    .property-detail-title {
        font-size: 16px;
    }
}


/* 左右2カラムレイアウト */

.property-detail-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    margin-bottom: 20px;
}


/* 左サイド（スライダー）：幅600pxに固定＆オーバーフローを隠す */

.property-detail-slider-area {
    flex: 0 0 670px;
    max-width: 670px;
    overflow: hidden;
}

.property-detail-main-slider .swiper-slide {
    background-color: #F9F9F9;
    text-align: center;
    display: flex;
    flex-direction: column;
    /* align-items: center;
    justify-content: center;
    min-height: 420px;
    height: 420px; */
}

.property-detail-main-slider .swiper-slide img {
    width: auto;
    height: 420px;
    max-width: 100%;
    object-fit: contain;
    background: #f9f9f9;
    display: block;
    margin: 0 auto;
}

.property-detail-thumbnail-slider .swiper-slide {
    height: 120px;
    cursor: pointer;
    overflow: hidden;
    border: none;
    transition: opacity 0.3s, border 0.3s;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-detail-thumbnail-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-detail-main-slider {
    height: auto !important;
}


/* 右サイド（物件情報）：残りの幅を使用 */

.property-detail-info-area {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}


/* 価格表示 */

.property-detail-price {
    font-size: 16px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    border: 1px solid #DADADA;
    height: 54px;
}

.property-detail-price-label {
    font-weight: bold;
    width: 34%;
    background-color: #F9F9F9;
    text-align: center;
    border-right: 1px solid #DADADA;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-detail-price-value {
    color: #C7A14C;
    font-size: 2.4rem;
    font-weight: bold;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    gap: 4px;
}


/* 物件情報のリスト */

.property-detail-specs {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.property-detail-specs-row {
    display: flex;
    margin-bottom: 26px;
    flex-direction: column;
    width: 100%;
}

.property-detail-specs-row dt {
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.property-detail-specs-row dt::after {
    content: '';
    display: inline-block;
    width: 80px;
    height: 2px;
    background: #C7A14C;
    position: absolute;
    bottom: 0;
    left: 0;
}

.property-detail-specs-row dd {
    margin: 0;
    flex: 1;
    padding-bottom: 12px;
    border-bottom: 1px solid #DADADA;
    font-size: 1.4rem;
}

.property-detail-slider-area
/* お問い合わせボタン */

.property-detail-inquiry {
    text-align: center;
    width: 100%;
}

.property-detail-inquiry {
    width: 100%;
}

.property-detail-inquiry-button {
    background: #C7A14C;
    color: #fff;
    padding: 17px 20px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: all 0.5s ease;
}

.property-detail-inquiry-button:hover {
    opacity: 0.8;
}


/* Swiper関連 */

.swiper-container {
    width: 100%;
    height: 420px;
    position: relative;
}

/* 
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #F9F9F9;
} */

.front-property-card__thumb img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}


/* サムネイル用 */

.property-detail-thumbnail-slider {
    height: 120px;
    margin-top: 24px;
}

.property-detail-thumbnail-slider .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.property-detail-thumbnail-slider .swiper-slide-thumb-active {
    opacity: 1;
}

.property-detail-specs-row:nth-child(n+3):nth-child(-n+6) {
    width: calc(50% - 10px);
    gap: 18px;
}

.property-detail-specs-row:nth-child(n+3):nth-child(-n+6) dt {
    margin-bottom: 0;
}

.property-detail-main-slider .swiper-button-next,
.property-detail-main-slider .swiper-button-prev {
    flex-shrink: 0;
    margin: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 1px solid #C7A14C;
    background-color: #fff;
}

.property-detail-main-slider .swiper-button-next::after {
    margin-right: 0.4rem;
    transform: rotate(45deg);
}

.property-detail-main-slider .swiper-button-prev::after {
    margin-left: 0.4rem;
    transform: rotate(-135deg);
}

.property-detail-main-slider .swiper-button-prev::after,
.property-detail-main-slider .swiper-button-next::after {
    width: 1rem;
    height: 1rem;
    content: "";
    border: solid #C7A14C;
    border-width: 2px 2px 0 0;
}

/* スライダーキャプション */
.slider-caption {
    /* position: absolute;
    left: 0;
    right: 0;
    bottom: 0; */
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 12px;
    font-size: 16px;
    text-align: left;
    z-index: 2;
    box-sizing: border-box;
}



@media (max-width: 1023px) {
    .menu-left {
        overflow: initial;
    }

    .menu-left,
    .menu-right {
        width: 100%;
    }

    .menu-overlay {
        flex-direction: column;
        overflow: auto;
    }

    .property-detail-inquiry {
        width: 100%;
    }

    .property-detail-slider-area {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .property-detail-content {
        flex-direction: column;
    }

    .property-archive__sidebar,
    .property-archive__main {
        width: 100%;
    }

    .property-archive__content {
        flex-direction: column-reverse;
    }

    .single-post-container {
        flex-direction: column;
    }

    .contact-section__title {
        margin-bottom: 2rem;
    }

    .contact-section__tel-block {
        margin-top: 0;
    }

    .contact-section__title {
        justify-content: center;
    }

    .contact-section__content,
    .contact-section__tel-block {
        text-align: center;
    }

    .contact-section {
        padding-bottom: 74px;
    }

    .contact-section__right {
        width: 100%;
    }

    .contact-section__inner {
        flex-direction: column;
        gap: 40px;
    }

    .main-visual__bottom-bar {
        width: 86%;
    }
}

@media (max-width: 768px) {


    .property-section {
        margin-top: 100px;
    }

    .menu-overlay {
        width: 100%;
    }

    .menu-overlay.open {
        transform: translateX(0%);
    }

    .contact-title {
        margin-bottom: 2.4rem;
    }

    .menu-right {
        padding: 7rem 4rem;
    }

    .form-label,
    .wpcf7-form-control-wrap {
        width: 100%;
    }

    .wpcf7 form .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .form-submit {
        flex-direction: row !important;
    }

    .page-contact-tel {
        width: 100%;
    }

    .property-archive__title {
        font-size: 5.6rem;
    }

    .contact-section {
        margin-top: 80px;
    }

    .page-common-head_en h2 {
        font-size: 5.6rem;
    }

    .sp-news-section__more,
    .common-view-more-inner {
        display: flex;
        margin-top: 36px;
        justify-content: center;
    }

    .pc-news-section__more {
        display: none;
    }

    .news-list__item {
        gap: 16px;
    }

    .news-section {
        margin-top: 80px;
    }

    .company-section {
        padding-bottom: 0;
    }

    .company-section__title {
        margin-bottom: 2.4rem;
    }

    .company-section__text {
        max-width: 100%;
    }

    .company-section__title {
        font-size: 3.2rem;
    }

    .company-section__inner::after {
        width: 100%;
    }

    .company-section__inner {
        padding-top: 25rem;
        padding-bottom: 10rem;
    }

    .company-section__image-wrap {
        display: none;
    }

    .company-section__hero {
        width: calc(100% - 14px);
    }

    .property-section__title {
        font-size: 3.4rem;
    }

    .main-visual__bottom-bar {
        padding: 16px 0;
    }

    .main-visual__bottom-bar-inner {
        gap: 12px;
    }
}

@media (max-width: 599px) {

    .property-table th,
    .property-table td {
        font-size: 1.2rem;
    }

    .contact-title {
        font-size: 4.4rem;
    }

    .menu-right {
        padding: 7rem 14px;
    }

    .menu-left {
        padding: 11rem 14px 6rem;
    }

    .hamburger-nav-list {
        padding-bottom: 3rem;
        padding-top: 3rem;
    }

    .hamburger-menu-subtitle {
        font-size: 1.6rem;
    }

    .hamburger-menu-title {
        font-size: 2.8rem;
    }

    .hamburger-nav li a {
        gap: 10px;
        align-items: flex-start;
        flex-direction: column;
        font-size: 1.4rem;
    }

    .hamburger-nav li span {
        flex-direction: column;
    }

    .hamburger__property-list {
        justify-content: center;
    }

    .surrounding-info {
        gap: 24px;
    }

    .surrounding-info {
        flex-direction: column;
    }

    .surrounding-item {
        width: 100%;
    }

    .image-container img {
        height: 300px;
    }

    .property-detail-info-section {
        margin-top: 60px;
    }

    .property-detail-header {
        margin-bottom: 40px;
    }

    .property-detail-section {
        padding-top: 10rem;
    }

    .property-detail-header {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .page-common-visual,
    .property-archive {
        padding-top: 100px;
    }

    .page-contact-tel {
        padding: 1.4rem;
    }

    .wpcf7-form-control {
        gap: 6px 14px;
        flex-wrap: wrap;
    }

    .wpcf7-list-item-label,
    .form-label {
        font-size: 1.4rem;
    }

    .page-contact-tel-inner {
        flex-direction: column;
        gap: 16px;
    }

    .page-common_bg {
        height: 200px;
    }

    .property-archive__title-inner span {
        font-size: 1.6rem;
    }

    .property-archive__title {
        font-size: 3.6rem;
    }

    .property-card__buttons a {
        width: 100%;
    }

    .property-card__buttons {
        flex-direction: column;
    }

    .property-card__thumb img {
        width: 100%;
    }

    .property-contents {
        flex-direction: column;
    }

    .property-archive__content {
        gap: 60px;
    }

    .page-common-head_jp {
        font-size: 1.6rem;
    }

    .page-common-head_en h2 {
        font-size: 3.6rem;
    }

    .page-common-company_history-info dl dt {
        width: 24%;
    }

    .page-common-company_history-info dl dt,
    .page-common-company_history-info dl dd {
        font-size: 1.4rem;
    }

    .contact-section__box-text {
        font-size: 1.4rem;
    }

    .contact-section__title {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 3.2rem;
    }

    /* .sp-news-section__more .news-section__more {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
    } */

    .company-section__btn {
        /*         width: 100%; */
        justify-content: center;
        gap: 16px;
    }

    .property-section-head__inner {
        margin-bottom: 40px;
    }

    .property-tabs__item {
        font-size: 1.4rem;
    }

    .front-property-section__more a {
        justify-content: center;
        gap: 16px;
    }

    .front-property-section__more {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card02 .swiper-controller {
        flex-direction: column;
        align-items: flex-start;
    }

    .scroll-indicator {
        display: none;
    }

    .main-visual__bg {
        width: 100%;
        padding: 0;
    }

    .card02 .swiper-slide {
        width: 85%;
    }

    .card02 .swiper-controller {
        margin-top: 3rem;
        gap: 2rem;
    }

    .card02 .swiper-button-prev,
    .card02 .swiper-button-next {
        width: 4.5rem;
        height: 4.5rem;
    }

    .swiper-button-inner {
        gap: 1rem;
    }

    .main-visual__title {
        font-size: 2.6rem;
    }

    .main-visual__subtitle {
        font-size: 1.4rem;
    }

    .main-visual__bottom-bar {
        width: calc(100% - 14px);
    }

    .main-visual__bg {
        border-radius: 0;
    }

    .header-cta {
        display: none;
    }

    .site-logo img {
        height: 38px;
    }

    .hamburger-btn {
        height: 60px;
        width: 60px;
    }

    .header-inner {
        padding-left: 14px;
    }

    .site-header {
        height: auto;
    }
}


/* お気に入りハートボタン */

.favorite-heart-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 6px;
    font-size: 2rem;
    transition: transform 0.2s;
}

.favorite-heart-btn i {
    font-size: 2rem;
    color: #C7A14C;
    transition: color 0.2s;
}

.favorite-heart-btn.is-favorited i {
    color: rgb(229, 0, 18);
}

.favorite-heart-btn:hover {
    transform: scale(1.15);
}


/* front-property-card, property-card で相対配置を保証 */

.front-property-card,
.property-card {
    position: relative;
}


/* お気に入り一覧グリッド */

.favorite-properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
    margin-bottom: 40px;
}

@media (max-width: 1023px) {
    .favorite-properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 599px) {
    .favorite-properties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.favorite-property-card {
    min-width: 0;
}


/* お気に入り一覧 詳細ボタン スマートデザイン */

.favorite-properties-grid .property-card__detail-btn {
    background: #fff;
    color: #C7A14C;
    border: 1.5px solid #C7A14C;
    padding: 10px 28px;
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    transition: background 0.3s, color 0.3s;
    margin: 18px auto 8px auto;
    box-shadow: none;
    letter-spacing: 0.05em;
    width: 60%;
    text-align: center;
}

.favorite-properties-grid .property-card__detail-btn:hover {
    background: #C7A14C;
    color: #fff;
    border-color: #C7A14C;
}


/* トップページ物件スライダー内 詳細ボタン デザイン統一 */

.front-property-slide .property-card__detail-btn {
    background: #fff;
    color: #C7A14C;
    border: 1.5px solid #C7A14C;
    padding: 10px 28px;
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    transition: background 0.3s, color 0.3s;
    margin: 18px auto 8px auto;
    box-shadow: none;
    letter-spacing: 0.05em;
    width: 60%;
    text-align: center;
}

.front-property-slide .property-card__detail-btn:hover {
    background: #C7A14C;
    color: #fff;
    border-color: #C7A14C;
}

/* View More 共通デザイン */
.view-more-link {
    font-weight: bold;
    color: #C7A14C;
    border-bottom: 1px solid #C7A14C;
    padding: 0 0 4px 0;
    transition: color 0.2s, border-color 0.2s;
    letter-spacing: 0.02em;
    text-decoration: none;
    gap: 18px;
}

.view-more-link .view-more-arrow {
    font-size: 2rem;
    color: #C7A14C;
    font-weight: normal;
    transition: color 0.2s, transform 0.2s;
}

.front-property-section__more a:hover .view-more-arrow {
    transform: translateX(6px);
}


/* ボタン */

.company-section__btn {
    border-bottom: 1px solid #fff;
    color: #fff;
    font-weight: 700;
    transition: 0.3s;
}

.company-section__btn .view-more-arrow {
    color: #fff;
}

.company-section__btn:hover .view-more-arrow,
.service-section__btn:hover .view-more-arrow,
.news-section__more:hover .view-more-arrow {
    transform: translateX(6px);
}

.service-section {
    margin-top: 160px;
    position: relative;
    overflow: hidden;

}

.service-section__inner {
    display: flex;
    align-items: center;
    gap: 100px;
}

.service-section__right {
    display: flex;
    position: absolute;
    width: 50%;
    top: 0;
    bottom: 0;
    right: 0;
    width: 46%;
    max-width: 800px;
}

.service-section__left {
    max-width: 50%;
}

.service-image:nth-child(odd) {
    margin-top: 60px;
}


.service-section__title {
    font-size: 8rem;
    font-weight: 700;
    color: #C7A14C;
    margin-bottom: 4px;
}

.service-section__subtitle {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.service-section__desc {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .service-section__inner {
        flex-direction: column;
        gap: 40px;
    }

    .service-section__left,
    .service-section__right {
        max-width: 100%;
    }

    .service-section__right {
        position: relative;
        width: 100%;
    }

    .service-section__title,
    .news-section__title {
        font-size: 3.2rem;
    }

    .service-section__subtitle {
        font-size: 1.8rem;
    }

    .service-section {
        margin-top: 100px;
    }

    .service-section__desc {
        margin-bottom: 0px;
    }
}

/* =============================
   会社概要（company-about-section）
   ============================= */
.company-about-section {
    margin-top: 60px;
    margin-bottom: 100px;
}

.company-about-header {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.company-about-title {
    font-size: 3.2rem;
    color: #bfa046;
    font-family: 'Noto Serif JP', serif;
    font-weight: bold;
    line-height: 1;
}

.company-about-subtitle {
    font-size: 1.4rem;
    color: #545454;
    font-weight: bold;
    line-height: 1;
}

.company-about-content {
    display: flex;
    align-items: center;
    gap: 4vw;
}

.company-about-logo {
    flex: 0 0 360px;
    text-align: center;
}

.company-about-logo img {
    margin-bottom: 2rem;
}

.company-about-description {
    flex: 1;
    font-size: 1.5rem;
    color: #545454;
    word-break: break-word;
    line-height: 1.8;
}

.service_bg {
    background: url("/wp-content/uploads/2025/07/Rectangle-555-1.jpg") no-repeat center center / cover;
}

@media screen and (max-width: 768px) {
    .company-about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .company-about-logo {
        margin-bottom: 1.5rem;
        flex: 1;
    }

    .company-about-logo img {
        margin-bottom: 0;
    }
}

.service-list-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.service-list-row {
    display: flex;
    justify-content: center;
}

.service-list-card {
    position: relative;
    width: 33.33333333333333%;
    display: flex;
    flex-direction: column;
}

.service-list-card-img {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-list-card-title {
    position: absolute;
    left: 0;
    bottom: 18px;
    width: 100%;
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: left;
    padding: 0 32px;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.service-list-card-desc {
    padding: 16px 32px 0 32px;
    font-size: 1.4rem;
    color: #545454;
    background: #fff;
    z-index: 1;
    position: relative;
}

@media (max-width: 787px) {
    .service-list-row {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .service-list-card {
        width: 100%;
    }
}

@media (max-width: 599px) {
    .service-list-card-desc {
        padding-right: 0;
        padding-left: 0;
    }

    .service-list-card-img {
        height: 300px;
    }

    .company-about-header {
        flex-direction: column;
        align-items: center;
    }
}

.service-list-card-img.img1 {
    background-image: url('/wp-content/uploads/2025/07/Rectangle-571.png');
}

.service-list-card-img.img2 {
    background-image: url('/wp-content/uploads/2025/07/Rectangle-573.jpg');
}

.service-list-card-img.img3 {
    background-image: url('/wp-content/uploads/2025/07/Rectangle-572.png');
}

.strengths-section {
    margin: 100px auto 0 auto;
    max-width: 1128px;
    padding: 0 14px;
}

.strengths-header {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 40px;
}

.strengths-title {
    font-size: 3.6rem;
    color: #C7A14C;
    font-family: 'Noto Serif JP', serif;
    font-weight: bold;
    line-height: 1;
}

.strengths-subtitle {
    font-size: 1.4rem;
    color: #545454;
    font-weight: bold;
    line-height: 1;
}

.strengths-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 58px;
}

.strengths-item {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 32px;
}

.strengths-item-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #545454;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.strengths-item-number {
    font-size: 1.8rem;
    color: #545454;
    font-family: 'Noto Serif JP', serif;
    font-weight: bold;
    margin-right: 6px;
}

.strengths-item-desc {
    font-size: 1.6rem;
    color: #545454;
    line-height: 2;
}

@media (max-width: 787px) {
    .strengths-list {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .strengths-section {
        margin-top: 60px;
    }
}

.property-detail-staff-comment-section,
.property-detail-contact-section {
    margin-top: 60px;
}

.expenses-text {
    font-size: 16px;
    color: #545454 !important;
}

@media (max-width: 600px) {
    .front-property-slider-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box;
        overflow: hidden !important;
    }

    .swiper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box;
    }

    .swiper-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 8px 0 0 !important;
        /* 右端に8pxの余白を追加 */
        box-sizing: border-box;
    }
}

@media (max-width: 599px) {
    .strengths-header {
        flex-direction: column;
        align-items: center;
    }

    .strengths-item-title {
        flex-direction: column;
    }
}

.swiper-button-next, .swiper-button-prev {
    svg {
        display: none;
    }
}
