/* 全体制御 */
html {
    font-family: 'Noto Sans JP', serif;
    font-size: 62.5%;
    line-height: 1.6;
    height: 100%;
    word-break: break-word;
    color: var(--color-text);
    background-color: var(--color-bg-base);
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    font-weight: 500;
    font-size: 1.6rem;
    color: #222222;
}

*,
*::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: var(--color-text);
    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%;
}

/* 管理バー制御 */
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;
}

/* 追加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: 90%;
    height: 90vh;
    background: url("/wp-content/uploads/2025/05/Rectangle-481.png") no-repeat center center;
    background-size: cover;
    z-index: 1;
    border-radius: 0 0 0 10px;
}

/*---------------------------------
    メインコンテンツ
  ----------------------------------*/
.main-visual__content {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding-left: 5vw;
}

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

.main-visual__subtitle {
    font-size: 2rem;
    line-height: 1.8;
    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: #222222;
    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: #222222;
    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: linear-gradient(160deg, #e95513 0%, #e50012 100%);
    z-index: 3;
    padding: 23px 0;
    border-radius: 4px 0 0 4px;
}

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

/* 日付のデザイン */
.main-visual__date {
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1.4rem;
}

/* お知らせのデザイン */
.main-visual__category {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-visual__category {
    display: inline-block;
    background-color: #fff;
    color: #222222;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    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: #222222;
}

.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(229, 0, 18, 0.2);
    transition: all 0.3s;
}

.property-tabs__item:hover {
    background-color: rgba(229, 0, 18, 0.4);
}

/*------------------------------
    タブコンテンツ
  ------------------------------*/
.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: #222222;
    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: linear-gradient(135deg, #E95513, #E50012);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid #E50012;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.front-property-card__category {
    display: inline-block;
    background-color: #fff;
    background: linear-gradient(135deg, #E95513, #E50012);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid #E50012;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    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: 20px;
}

.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;
}

.price-value {
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E95513, #E50012);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

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

.property-card__info span {
    font-size: 1.3rem;
    color: #222222;
    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-radius: 50%;
    border: 1px solid #E50012;
}

.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 #E50012;
    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;
    transition: all 0.3s ease;
}

.card02 .slide:hover {
    opacity: 0.8;
}

/* タブ・プロパティセクション用（既存のスタイル例） */
.property-section {
    background-color: #fff;
    margin-top: 160px;
}

.property-section__title {
    display: inline-block;
    font-size: 9.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E95513, #E50012);
    -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: #e53935;
    border-top: 2px solid #e53935;
    background-color: #F9F9F9;
}

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

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

.front-property-section__more a {
    background-color: #fff;
    border: 1px solid #e53935;
    color: #e53935;
    padding: 16px 26px;
    border-radius: 60px;
    font-weight: 700;
    transition: 0.3s;
    width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.front-property-section__more a:hover {
    background: linear-gradient(135deg, #E95513, #E50012);
    color: #fff;
}

.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;
    border-radius: 4px 0 0 4px;
}

.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: linear-gradient(135deg, #E95513, #E50012);
    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: 524px;
}

/* 右下に配置する建物写真 */
.company-section__image-wrap {
    width: 46%;
    max-width: 500px;
    position: absolute;
    right: 0;
    bottom: -30%;
    z-index: -1;
}

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

/* ボタン */
.company-section__btn {
    border: 1px solid #fff;
    color: #fff;
    padding: 16px 26px;
    border-radius: 60px;
    font-weight: 700;
    transition: 0.3s;
    width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.company-section__btn:hover {
    background-color: #fff;
    color: #E50012;
}

/* Newsセクション全体 */
.news-section {
    margin-top: 200px;
}

.news-section__inner {
    display: flex;
    gap: 100px;
}

/* 左カラム（タイトル・説明・ボタン） */
.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: linear-gradient(135deg, #E95513, #E50012);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.news-section__more {
    background-color: rgb(255, 255, 255);
    color: rgb(229, 57, 53);
    font-weight: 700;
    width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(229, 57, 53);
    border-image: initial;
    padding: 16px 26px;
    border-radius: 60px;
    transition: 0.3s;
}

.news-section__more:hover {
    background: linear-gradient(135deg, #E95513, #E50012);
    color: #fff;
}

/* ボタン内の矢印 */
.news-section__arrow {
    margin-left: 0.5rem;
    font-weight: 400;
    font-size: 1.6rem;
}

/* 右カラム（投稿一覧） */
.news-section__right {
    flex: 1;
}

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

/* 投稿一覧 */
.news-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 投稿アイテム */
.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;
}

/* カテゴリ */
.news-list__category {
    display: inline-block;
    border: 1px solid #E50012;
    color: #E50012;
    font-size: 1.4rem;
    padding: 4px 32px;
    border-radius: 50px;
    white-space: nowrap;
}

/* テキスト（タイトルor抜粋） */
.news-list__text {
    font-size: 1.4rem;
    color: #222222;
    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/02/Group-354.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: #222222;
    padding: 3.2rem 1rem;
    border-radius: 4px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.contact-section__box-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E95513, #E50012);
    -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: #fff;
    color: #222222;
    padding-top: 80px;
    padding-bottom: 80px;
    border-top: 1px solid #eee;
}

.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;
}

/* ロゴ（仮） */
.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: #222222;
}

/* 右カラム */
.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;
}

.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: 3px;
    background-color: #e50012;
}

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

.footer__property-list a {
    color: #6C6C6C;
    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;
}

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

/* 下部コピーライト */
.footer__bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    font-size: 1.4rem;
    color: #949494;
}

/* レスポンシブ例 */
@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 a {
    display: flex;
    gap: 24px;
    align-items: center;
}

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

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

.menu-contact-text::after {
    content: "";
    display: block;
    width: 38px;
    height: 38px;
    background-image: url("/wp-content/uploads/2025/02/Group-351.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.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 {
    width: 200px;
}

/* ------------------------------
ハンバーガーボタン
------------------------------ */
.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: #E50012;
    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: 50%;
    height: 100%;
    display: flex;
	flex-direction: column;
	overflow: auto;
    transform: translateX(200%);
    transition: transform 0.5s ease;
    z-index: 2000;
}

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

/* 左: 白背景 */
.menu-left {
    width: 100%;
    background: #fff;
    padding: 11rem 4rem;
}

/* 右: オレンジグラデーション */
.menu-right {
    width: 100%;
    background: linear-gradient(160deg, #e95513, #E50012);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.header-cta a {
    background: linear-gradient(160deg, #e95513 0%, #e50012 100%);
    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 #E50012;
}

.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: #222222;
}


.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: #222222;
    padding-top: 140px;
}

.property-archive__title {
    font-size: 9.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E95513, #E50012);
    -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-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;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
}

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

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

.property-card__contact-btn {
    background: linear-gradient(135deg, #E95513, #E50012);
    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: #222222;
    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 #E50012;
    padding: 11px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
}

.property-archive__sidebar button:hover {
    background: linear-gradient(135deg, #E95513, #E50012);
    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 20px;
    border-radius: 0 0 4px 0;
}

.on-sale {
    background: #E95513;
}

.contract-completed {
    background: #E50012;
}

.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;
    gap: 10px;
}

.property-detail-sub-title h2::before {
    content: "";
    display: block;
    width: 6px;
    height: 30px;
    background: linear-gradient(135deg, #E95513, #E50012);
}

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

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


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

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

.surrounding-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.surrounding-item {
    flex: 1;
}

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

.image-container img {
    height: 240px;
    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;
    border-radius: 0 0 0 8px;
}

.page-common_bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
}

.company_bg {
    background: url("/wp-content/uploads/2025/02/24873331_m.jpg") no-repeat center center / cover;
}

.page-common-head_en h2 {
    display: inline-block;
    font-size: 9.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E95513, #E50012);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.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 #E50012;
    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 {
    margin-top: 80px;
    font-size: 16px;
    color: #222;
}

/* 行（.form-row）ごとに下余白をつける */
.wpcf7 form .form-row {
    margin-bottom: 30px;
    display: flex;
}

/* ラベル（見出し）を上に配置 */
.form-label {
    width: 20%;
    display: inline-block;
    font-weight: bold;
    color: #222;
}

.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: linear-gradient(160deg, #e95513 0%, #e50012 100%);
    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/02/27878217_m.jpg") no-repeat center center / cover;
}

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

.page-contact-tel {
    margin-top: 50px;
    border: 1px solid #E50012;
    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 #222;
    padding-bottom: 30px;
}

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

.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 button {
    display: inline-block;
    background-color: #222;
    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: #222;
    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: #e50012;
    font-weight: 700;
}

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

.footer__logo img {
    width: 180px;
}

.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: linear-gradient(160deg, #e95513 0%, #e50012 100%);
    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;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 60px;
    border-bottom: 1px solid #E50012;
    padding-bottom: 28px;
}

.property-detail-type-badge {
    display: inline-block;
    padding: 6px 16px;
    font-weight: bold;
    font-size: 1.4rem;
    border-radius: 4px;
    background: linear-gradient(135deg, #E95513, #E50012);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid #E50012;
}

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

/* 左右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-info-area {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

/* 価格表示 */
.property-detail-price {
    font-size: 18px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    border: 1px solid #DADADA;
    height: 54px;
}

.property-detail-price-label {
    font-weight: bold;
    width: 20%;
    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 {
    background: linear-gradient(135deg, #E95513, #E50012);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.4rem;
    font-weight: bold;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

/* 物件情報のリスト */
.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: linear-gradient(135deg, #E95513, #E50012);
    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-button {
    background: linear-gradient(135deg, #E95513, #E50012);
    color: #fff;
    padding: 17px 20px;
    border-radius: 50px;
    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: 408px;
    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 #E50012;
    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 #E50012;
    border-width: 2px 2px 0 0;
}

@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) {
	
	.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 {
        display: block;
        margin-top: 36px;
    }

    .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);
    }

    .company-section__image-wrap {}

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

    .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;
    }

    .surrounding-info {
        gap: 24px;
    }

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

    .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;
    }

    .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%;
        height: 20%;
    }

    .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 {
        width: 100%;
        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 {
        width: 140px;
    }

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

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

    .site-header {
        height: auto;
    }


}