/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本設定 */
:root {
    --primary-color: #8B7355;
    --secondary-color: #A68B5B;
    --accent-color: #F4F0E8;
    --text-color: #3D3D3D;
    --text-light: #6B6B6B;
    --white: #ffffff;
    --black: #2C2C2C;
    --gray-light: #F8F6F2;
    --gray-medium: #E8E4DD;
    --shadow: 0 4px 20px rgba(139, 115, 85, 0.15);
    --shadow-hover: 0 8px 30px rgba(139, 115, 85, 0.25);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    height: 80px;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-prefix {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.05em;
    padding-right: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.1em;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1;
}

.nav {
    margin-left: 4rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* ヒーローセクション */
.hero11 {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    transform: scale(1.02);
}

.hero-slide-active {
    opacity: 1 !important;
    z-index: 2 !important;
    transform: scale(1) !important;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* スライドショーの滑らかなアニメーション */
@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideFadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.95);
    }
}

.hero-slide.fade-in {
    animation: slideFadeIn 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-slide.fade-out {
    animation: slideFadeOut 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-border {
    position: absolute;
    inset: 32px;
    border: 2px solid rgba(139, 115, 85, 0.6);
    border-radius: 0 0 0 24px;
    pointer-events: none;
    z-index: 10;
}

.hero-content-new {
    position: absolute;
    bottom: 24px;
    left: 114px;
    color: var(--white);
    z-index: 20;
}

.hero-title-new {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.hero-highlight {
    color: var(--white);
}

.hero-description-new {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.hero-cta {
    margin-bottom: 1.5rem;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.hero-cta-button:hover {
    background: #7A6347;
    border-color: #7A6347;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-icon {
    font-size: 1.2rem;
    color: var(--white);
}

.hero-brand {
    font-family: 'AR Pゴシック体S', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    white-space: nowrap;
    margin-top: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    -webkit-text-stroke: 4.5px var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}

.scroll-indicator-new {
    position: absolute;
    bottom: 0;
    right: 32px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 20;
    animation: blink 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.875rem;
    transform: rotate(90deg);
    transform-origin: center;
}

.scroll-line {
    width: 1px;
    height: 98px;
    background: rgba(255, 255, 255, 0.6);
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero11 {
        height: 70vh;
    }
    
    .hero-border {
        inset: 16px;
    }
    
    .hero-content-new {
        bottom: 32px;
        left: 32px;
        right: 32px;
        max-width: calc(100% - 64px);
        padding: 0 1rem;
    }
    
    .hero-title-new {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        word-break: keep-all;
        overflow-wrap: break-word;
        line-height: 1.4;
    }

    .hero-highlight {
        display: inline-block;
        max-width: 100%;
        word-break: keep-all;
        overflow-wrap: break-word;
        font-size: 1.5rem;
    }
    
    .hero-description-new {
        font-size: 1rem;
        margin-bottom: 1rem;
        word-break: keep-all;
        overflow-wrap: break-word;
        line-height: 1.5;
    }

    .hero-brand {
        font-size: 3.5rem;
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: break-word;
        max-width: 100%;
        letter-spacing: 0.1em;
    }
    
    .hero-cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .cta-icon {
        font-size: 1rem;
    }
    
    .cta-phone {
        font-size: 0.8rem;
    }
    
    .scroll-indicator-new {
        right: 16px;
    }
    
    .scroll-text {
        font-size: 0.75rem;
    }
    
    .scroll-line {
        height: 82px;
    }
}

@media (max-width: 480px) {
    .hero11 {
        height: 65vh;
    }

    .hero-content-new {
        bottom: 28px;
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
        padding: 0 1rem;
    }

    .hero-title-new {
        font-size: 1.4rem;
    }

    .hero-highlight {
        font-size: 1.4rem;
    }

    .hero-description-new {
        font-size: 0.95rem;
    }
    
    .hero-brand {
        font-size: 3rem;
    }
}

/* セクション共通 */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* お知らせセクション */
.information {
    padding: 3rem 0 6rem 0;
    background: var(--accent-color);
}

.information-content {
    max-width: 1600px;
    margin: 0 auto;
    width: 98%;
}

.information-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
}

.information-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.information-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--primary-color);
    color: var(--white);
}

.information-date {
    font-size: 0.9rem;
    font-weight: 500;
}

.information-category {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.information-body {
    padding: 2rem 2.5rem;
}

.information-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.information-text {
    color: var(--text-color);
    line-height: 1.8;
}

.information-text p {
    margin-bottom: 1rem;
}

.information-text p:last-child {
    margin-bottom: 0;
}

.information-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .information {
        padding: 4rem 0;
    }
    
    .information-header {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }
    
    .information-category {
        order: -1;
    }
    
    .information-date {
        order: 1;
        text-align: left;
    }
    
    .information-body {
        padding: 1.5rem;
    }
    
    .information-title {
        font-size: 1.3rem;
    }
}
.about {
    padding: 3rem 0 6rem 0;
    background: var(--accent-color);
    margin-top: 0;
}

/* 事務所ギャラリー */
.office-gallery {
    width: 90%;
    max-width: 1400px;
    margin: 1rem auto;
}

.office-gallery .gallery-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.office-images {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    justify-items: center;
    align-items: start;
}

.office-image-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    position: relative;
}

.office-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.office-image-item .image-caption {
    padding: 1rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    background: var(--white);
}

.company-map {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: var(--white);
}

.company-map iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: none;
}

.company-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 98%;
    max-width: 1600px;
    margin: 0 auto;
}

.info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.card-header i {
    font-size: 1.2rem;
}

.card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.card-body {
    padding: 1.5rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.info-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-medium);
    gap: 1rem;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
    text-align: left;
    flex-shrink: 0;
}

.info-value {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    word-break: break-all;
    overflow-wrap: break-word;
}

.info-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-value a:hover {
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .office-gallery {
        width: 85%;
    }
    
    .office-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        justify-items: center;
    }
    
    .office-image-item {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .company-map {
        width: 100%;
        margin: 0;
    }
    
    .company-map iframe {
        height: 350px;
    }
    
    .office-gallery {
        width: 95%;
        margin: 1rem auto;
        padding: 0 1rem;
    }
    
    .office-images {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
    }
    
    .office-image-item {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1 / 1;
    }
    
    .office-image-item img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .company-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 auto;
    }
    
    .card-header {
        padding: 1.2rem;
    }
    
    /* 会社概要のカードヘッダーは一行表示 */
    .info-card .card-header {
        flex-direction: row;
        align-items: center;
    }
    
    .card-body {
        padding: 1.2rem;
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
    }
    
    .info-item {
        grid-template-columns: 120px 1fr;
        gap: 1rem;
        align-items: start;
    }
    
    .info-label {
        font-weight: 600;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: 120px;
    }
    
    .info-value {
        text-align: left;
        word-break: break-word;
        overflow-wrap: break-word;
        min-width: 0;
    }
    
    /* スマホ版のみ：郵便番号の改行後にスペースを追加 */
    .mobile-br::after {
        content: '　';
    }
    
    /* スマホ版ではPC用のスペースを非表示 */
    .pc-space {
        display: none;
    }
    
    .info-item:last-child {
        border-bottom: none;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-description {
    margin-bottom: 3rem;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    transform: rotate(0deg) scale(1);
    transition: none !important;
}

.image-container:hover {
    transform: rotate(0deg) scale(1) !important;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: none !important;
}

.about-img:hover {
    transform: none !important;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 74, 173, 0.3) 0%, rgba(255, 107, 53, 0.3) 100%);
    opacity: 0;
    transition: none !important;
}

.image-overlay:hover {
    opacity: 0 !important;
}

/* 自社物件セクション */
.services {
    padding: 4rem 0;
    background: var(--white);
}

/* 物件一覧グリッド */
.property-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

.property-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.property-card {
    background: var(--white);
    border: 2px solid var(--gray-medium);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ライトボックススタイル */
.property-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.property-lightbox.active {
    display: block;
}

.lightbox-content {
    position: relative;
    width: 95%;
    max-width: 1400px;
    margin: 2rem auto;
    background: var(--white);
    border-radius: 8px;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lightbox-close {
    position: sticky;
    top: 1rem;
    right: 1rem;
    float: right;
    z-index: 10001;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin: 1rem 1rem 0 0;
}

.lightbox-close:hover {
    background: var(--secondary-color);
    transform: scale(1.1) rotate(90deg);
}

.lightbox-close i {
    font-size: 1.5rem;
}

.lightbox-body {
    padding: 2rem;
    clear: both;
}

.lightbox-body .header,
.lightbox-body .footer,
.lightbox-body .back-button-container {
    display: none;
}

.lightbox-body .property-detail-section {
    padding-top: 0;
}

@media (max-width: 768px) {
    .lightbox-content {
        width: 100%;
        margin: 0;
        border-radius: 0;
        min-height: 100vh;
        border: none;
        box-shadow: none;
        max-width: 100%;
    }
    
    .lightbox-close {
        position: fixed;
        top: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        z-index: 10002;
    }
    
    .lightbox-body {
        padding: 0;
        padding-top: 4rem;
    }

    .property-lightbox {
        padding: 0;
    }
    
    /* ポップアップ内のカードの枠を削除 */
    .property-lightbox .property-detail-card {
        border: none;
        box-shadow: none;
    }
    
    .property-lightbox .property-detail-container {
        padding: 0 0.5rem;
        margin: 0;
    }

    .property-lightbox .property-detail-header {
        padding: 1rem 0.5rem;
    }

    .property-lightbox .property-images-section {
        padding: 0.5rem;
    }

    .property-lightbox .property-specs-horizontal {
        padding: 1rem;
    }

    .property-lightbox .property-specs-horizontal .property-specs {
        margin-right: 0;
        padding-right: 0;
    }

    .property-lightbox .property-specs-horizontal .spec-item {
        padding: 0.8rem;
        padding-right: 1rem;
    }

    .property-lightbox .property-specs-horizontal .spec-item .spec-value {
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        overflow: visible;
        text-overflow: clip;
    }

    .property-lightbox .property-overview-section {
        padding: 1rem 0.5rem;
    }

    .property-lightbox .property-features-top {
        padding: 1rem 0.5rem;
    }
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.property-card-image {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    overflow: hidden;
}

.property-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-card:hover .property-card-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.property-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.property-card-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ef131a;
}

.tax-note-small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
}

.property-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.property-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spec-tag {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--accent-color);
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    color: var(--text-color);
    border: 1px solid var(--gray-medium);
}

.spec-tag i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.property-card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-medium);
}

.property-card-location i {
    color: var(--primary-color);
}

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

@media (max-width: 768px) {
    .property-list-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .property-card-price {
        font-size: 1.6rem;
    }
    
    .property-card-title {
        font-size: 1.1rem;
    }
}

/* 物件詳細セクション */
.property-detail-section {
    padding: 6rem 0 4rem 0;
    background: var(--white);
}

/* 戻るボタン */
.back-button-container {
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--accent-color);
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid var(--gray-medium);
    transition: var(--transition);
    font-weight: 500;
}

.back-button:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateX(-4px);
}

.back-button i {
    font-size: 1rem;
}

/* 物件詳細コンテナ */
.property-detail-container {
    max-width: 100%;
    margin: 0 auto 4rem;
    width: 100%;
    padding: 0 2rem;
}

.property-detail-card {
    background: var(--white);
    border: 2px solid var(--gray-medium);
    overflow: hidden;
}

.property-detail-header {
    padding: 2rem;
}

.property-badge-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.land-badge {
    background: #2E7D32;
}

.property-title-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.property-title-row h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}

.property-price-large {
    font-size: 3rem;
    font-weight: 700;
    color: #ef131a;
    white-space: nowrap;
    text-align: right;
    flex-shrink: 0;
}

.tax-note {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

/* 画像スライダー（全幅） */
.property-slider-full-width {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}

.property-slider-full-width .property-slider-section {
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
}

/* 物件情報（横長） */
.property-specs-horizontal {
    width: 100%;
    padding: 2rem 1.5rem;
    background: #f9f9f9;
}

.property-specs-horizontal .property-specs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* スライダー */
.property-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.property-slider {
    position: relative;
    width: 100%;
}

/* メイン画像表示エリア */
.slider-main-display {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    background: var(--black);
    overflow: hidden;
    margin-bottom: 1rem;
}

.slider-main-display img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-main-display .image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    text-align: center;
    z-index: 2;
}

/* サムネイルスライダー */
.slider-main {
    position: relative;
    overflow: visible;
    padding: 0;
}

.slider-track-container {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-image {
    flex: 0 0 33.333%;
    padding: 0 0.5rem;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.slider-image:hover {
    opacity: 0.8;
}

.slider-image.active {
    opacity: 1;
}

.slider-image::before {
    content: '';
    display: block;
    padding-top: 75%;
}

.slider-image > img {
    position: absolute;
    top: 0;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0;
    width: calc(100% - 1rem);
    height: 100%;
    object-fit: cover;
    border: 2px solid transparent;
    transition: var(--transition);
}

.slider-image.active > img {
    border-color: var(--primary-color);
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 間取り画像用スタイル */
.slider-img.madori-img {
    object-fit: contain;
    background-color: var(--white);
}

/* 間取りスライドはラベル分の高さを考慮して収める */
.madori-slide .slider-img.madori-img {
    height: calc(100% - 36px);
}

.madori-slide .image-label {
    bottom: 0;
}

/* デスクトップ用レイアウト */
@media (min-width: 769px) {
    /* PC版：MVのDAISHOのフォントを太く */
    .hero-brand {
        -webkit-text-stroke: 9px var(--primary-color);
    }
    
    /* PC版：お知らせの順序を元に戻す（日付→重要） */
    .information-header {
        flex-direction: row;
    }
    
    .information-date {
        order: -1;
    }
    
    .information-category {
        order: 1;
    }
    /* PC版ではスマホ用の改行を非表示 */
    .mobile-br {
        display: none;
    }
    
    /* PC版ではスペースを表示 */
    .pc-space {
        display: inline;
    }
    .property-detail-card .property-detail-body {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    
    .property-detail-card .property-slider-section {
        flex: 1 1 auto !important;
        max-width: calc(100% - 220px) !important;
    }
    
    .property-detail-card .property-info-sidebar {
        flex: 0 0 200px !important;
        max-width: 200px !important;
        width: 200px !important;
    }
}

/* レスポンシブ対応 - スライダー */
@media (max-width: 768px) {
    .property-detail-card .property-detail-body {
        flex-direction: column !important;
        flex-wrap: wrap !important;
    }
    
    .property-detail-card .property-slider-section {
        flex: 1 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .property-detail-card .property-info-sidebar {
        flex: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    
    .property-features-top {
        padding: 1rem;
    }
    
    .property-features-top .feature-list {
        grid-template-columns: 1fr;
    }
    
    .slider-main-display {
        padding-top: 75%;
    }
    
    .slider-image {
        flex: 0 0 100%;
        padding: 0 0.5rem;
    }
    
    .slider-main-display .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-main-display .slider-btn-prev {
        left: 0.5rem;
    }
    
    .slider-main-display .slider-btn-next {
        right: 0.5rem;
    }
    
    .slider-main .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-main .slider-btn-prev {
        left: -20px;
    }
    
    .slider-main .slider-btn-next {
        right: -20px;
    }
    
    .slider-main .slider-btn i {
        font-size: 1.2rem;
    }
}

.slider-image > .image-label {
    position: absolute;
    bottom: 0;
    left: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
    text-align: center;
    z-index: 2;
}

/* メイン画像のナビゲーションボタン */
.slider-main-display .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-main-display .slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-main-display .slider-btn-prev {
    left: 1rem;
}

.slider-main-display .slider-btn-next {
    right: 1rem;
}

/* サムネイルスライダーのナビゲーションボタン */
.slider-main .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slider-main .slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.slider-main .slider-btn-prev {
    left: -25px;
}

.slider-main .slider-btn-next {
    right: -25px;
}

.slider-main .slider-btn i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.slider-btn i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.slider-counter {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    z-index: 10;
    border-radius: 20px;
}

/* サムネイル（削除：使用しない） */
.slider-thumbnails {
    display: none;
}

/* 画像拡大モーダル */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-image-container {
    position: relative;
    max-width: 100%;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-label {
    color: var(--white);
    font-size: 1.2rem;
    margin-top: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.modal-close:hover {
    background: var(--white);
    transform: scale(1.1) rotate(90deg);
}

.modal-close i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.modal-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav.modal-prev {
    left: 20px;
}

.modal-nav.modal-next {
    right: 20px;
}

.modal-nav i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 1rem;
    z-index: 10001;
}

@media (max-width: 768px) {
    .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .modal-close i {
        font-size: 1.2rem;
    }
    
    .modal-nav {
        width: 50px;
        height: 50px;
    }
    
    .modal-nav.modal-prev {
        left: 10px;
    }
    
    .modal-nav.modal-next {
        right: 10px;
    }
    
    .modal-nav i {
        font-size: 1.5rem;
    }
    
    .modal-label {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }
    
    .modal-counter {
        bottom: 10px;
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
}

/* 物件詳細情報 */
.property-detail-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-badge {
    background: var(--accent-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--gray-medium);
}

/* デフォルトは削除（横長レイアウトで上書き） */

/* 物件の特徴（タイトルと画像の間） */
.property-features-top {
    padding: 2rem 1.5rem;
    width: 100%;
}

.property-features-top .property-description {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.15);
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.property-features-top .property-description::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.property-features-top .feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    position: relative;
}

.property-features-top .feature-list li {
    margin: 0;
}

/* 物件説明 */

.property-description {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.property-description h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.property-description h4::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #a0522d 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.property-description p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.9rem;
    margin: 0;
}

.property-description .feature-text {
    color: var(--text-color);
    line-height: 2;
    font-size: 1rem;
    margin: 0;
    text-align: left;
    padding: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-list li {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
    padding-left: 3.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-list li::before {
    content: "●";
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color) 0%, #a0522d 100%);
    font-size: 1rem;
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(139, 69, 19, 0.25);
}

.feature-list li:hover {
    background: linear-gradient(135deg, #fff 0%, #fffaf5 100%);
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.2);
    border-left-color: #a0522d;
}

.feature-list li strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-block;
    margin-right: 0.5rem;
}

/* 物件画像セクション */
.property-images-section {
    padding: 2rem 1.5rem;
    width: 100%;
    margin-top: 2rem;
}

.property-images-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* 画像スライダー - モダンなデザイン */
.property-image-slider {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.property-image-slider .slider-main {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    background: #000;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.property-image-slider .slider-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.property-image-slider .slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform: scale(1.05);
}

.property-image-slider .slider-image.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.property-image-slider .slider-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-image-slider .slider-image:hover img {
    transform: translate(-50%, -50%) scale(1.02);
}

.property-image-slider .slider-image .madori-img {
    object-fit: contain;
    background: var(--gray-light);
}

.property-image-slider .slider-image .image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: var(--white);
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* ナビゲーションボタン - モダンなデザイン */
.property-image-slider .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
    opacity: 0;
    pointer-events: none;
}

.property-image-slider:hover .slider-btn {
    opacity: 1;
    pointer-events: all;
}

.property-image-slider .slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.3);
}

.property-image-slider .slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.property-image-slider .slider-btn-prev {
    left: 2rem;
}

.property-image-slider .slider-btn-next {
    right: 2rem;
}

.property-image-slider .slider-btn i {
    font-size: 1.4rem;
    font-weight: 600;
}

/* カウンター - モダンなデザイン */
.property-image-slider .slider-counter {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ドットインジケーター */
.property-image-slider .slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.property-image-slider .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.25);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    outline: none;
}

.property-image-slider .slider-dot:hover {
    background: rgba(139, 69, 19, 0.5);
    transform: scale(1.3);
}

.property-image-slider .slider-dot:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.property-image-slider .slider-dot.active {
    background: var(--primary-color);
    width: 32px;
    height: 10px;
    border-radius: 5px;
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

@media (max-width: 768px) {
    .property-image-slider .slider-main {
        border-radius: 8px;
    }
    
    .property-image-slider .slider-btn {
        width: 44px;
        height: 44px;
        opacity: 1;
        pointer-events: all;
    }
    
    .property-image-slider .slider-btn i {
        font-size: 1.1rem;
    }
    
    .property-image-slider .slider-btn-prev {
        left: 0.5rem;
    }
    
    .property-image-slider .slider-btn-next {
        right: 0.5rem;
    }
    
    .property-image-slider .slider-counter {
        top: 1rem;
        right: 1rem;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .property-image-slider .slider-image .image-label {
        padding: 1.2rem 1rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .property-image-slider .slider-dots {
        margin-top: 1rem;
        gap: 0.5rem;
    }
    
    .property-image-slider .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .property-image-slider .slider-dot.active {
        width: 24px;
        height: 8px;
    }
}

.property-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.property-image-item {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    cursor: pointer;
}

.property-image-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.property-image-item:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.property-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.property-image-item .image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.property-image-item .madori-img {
    object-fit: contain;
    background: var(--gray-light);
}

@media (max-width: 768px) {
    .property-images-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .property-images-section h4 {
        font-size: 1.3rem;
    }
}

.property-notes {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: var(--border-radius);
}

.property-notes h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.property-notes p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 0.9rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.5rem 0.6rem;
    background: var(--gray-light);
    border-radius: 4px;
}

.spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.spec-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.spec-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.2;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    line-height: 1.6;
}

.highlights-list li:last-child {
    margin-bottom: 0;
}

.highlights-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.card-header .card-features {
    margin-left: 1rem;
    flex-shrink: 0;
}

.card-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.slider-controls {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    box-shadow: var(--shadow);
}

.slider-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.slider-btn i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
}

.dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* 立地の優位性 */
.location-advantages {
    background: var(--accent-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

.location-header {
    text-align: center;
    margin-bottom: 3rem;
}

.location-header h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.location-header p {
    color: var(--text-light);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.location-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.location-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.location-info p {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.image-stack {
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stack-img {
    position: static;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 2rem;
}

.stack-img:last-child {
    margin-bottom: 0;
}

/* HOWセクション */
.how-section {
    padding: 6rem 0;
    background: var(--white);
}
/* 間取りプランセクション */
.floorplan-section {
    padding: 6rem 0;
    background: var(--accent-color);
}

.floorplan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.floorplan-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.floorplan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.floorplan-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.floorplan-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
}

.floorplan-card:hover .floorplan-img {
    transform: scale(1.05);
}

.floorplan-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-light);
}

.floorplan-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.floorplan-placeholder p {
    font-size: 1.1rem;
    margin: 0;
}

.floorplan-content {
    padding: 2rem;
}

.floorplan-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.floorplan-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.floorplan-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.floorplan-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: var(--accent-color);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: var(--text-color);
}

.floorplan-features .feature-item i {
    color: var(--primary-color);
    width: 16px;
    flex-shrink: 0;
}

.floorplan-description {
    margin-bottom: 2rem;
}

.floorplan-description p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.floorplan-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .floorplan-section {
        padding: 4rem 0;
    }
    
    .floorplan-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .floorplan-image {
        height: 250px;
    }
    
    .floorplan-content {
        padding: 1.5rem;
    }
    
    .floorplan-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .floorplan-price {
        font-size: 1.6rem;
    }
}

/* CTA */
.cta {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.cta-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(64, 64, 64, 0.5) 100%);
    z-index: 1;
}

.cta-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ボタンスタイル */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #7A6347;
    border-color: #7A6347;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-btn {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

/* お客様の声 */
.testimonials {
    padding: 6rem 0;
    background: var(--accent-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* お問い合わせセクション */
.contact {
    padding: 6rem 0;
    background: var(--accent-color);
}

.contact-simple {
    max-width: none;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

.contact-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 3rem 3.5rem;
    text-align: center;
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.contact-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.phone-number {
    margin-bottom: 2rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.phone-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
}

.phone-link i {
    font-size: 1.5rem;
}

.contact-hours {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hours-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.hours-item-business i {
    font-size: 1.5rem;
}

.hours-item-holiday i {
    font-size: 1.2rem;
}

.hours-item p {
    margin: 0.2rem 0;
    color: var(--text-color);
}

.hours-item-business strong {
    font-size: 1.8rem;
    font-weight: 700;
}

.hours-item-holiday strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-hours p {
    margin: 0.3rem 0;
    color: var(--text-color);
}

.contact-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-medium);
    width: 100%;
    text-align: left;
}

.note-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.note-icon {
    background: var(--secondary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.note-text {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-medium);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* 採用情報 */
.recruit {
    padding: 6rem 0;
    background: var(--white);
}

.recruit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.recruit-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.recruit-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.recruit-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recruit-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.recruit-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.recruit-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.recruit-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: none;
}

.recruit-image:hover {
    transform: none !important;
}

.recruit-image img {
    transform: none !important;
    transition: none !important;
}

.recruit-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* FAQ */
.faq {
    padding: 6rem 0;
    background: var(--accent-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-medium);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 1.5rem 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* フッター */
.footer {
    background: var(--text-color);
    color: var(--white);
    padding: 2rem 0 1rem;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.footer-logo-prefix {
    font-size: 0.85rem;
    color: var(--gray-medium);
    font-weight: 400;
    letter-spacing: 0.05em;
    padding-right: 10px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    margin: 0;
}

.footer-nav {
    margin-left: 4rem;
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.footer-nav-list li {
    margin: 0;
}

.footer-nav-list a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.footer-nav-list a:hover {
    color: var(--primary-color);
}

.footer-nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.footer-nav-list a:hover::after {
    width: 100%;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-contact {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 0.9rem;
    color: var(--white);
}

.contact-item span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.footer-services ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-services li {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #444;
    color: var(--gray-medium);
    font-size: 0.8rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}


/* スクロールアニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .slider-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: -40px;
    }
    
    .next-btn {
        right: -40px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
        
    .cta {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* 自社物件レスポンシブ 768px */
    .property-title-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .property-detail-body {
        grid-template-columns: 1fr;
    }

    .property-title-row h3 {
        font-size: 1.4rem;
        width: 100%;
        word-break: keep-all;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.5;
    }

    .property-price-large {
        font-size: 1.6rem;
        white-space: normal;
        text-align: left;
        width: 100%;
    }

    .slider-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }
}
    
/* レスポンシブ対応 */
@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .phone-link {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .phone-link i {
        font-size: 1rem;
    }
    
    .contact-note {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .note-header {
        align-items: center;
    }

    .note-text {
        text-align: left;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .footer-nav-list {
        gap: 2rem;
    }
    
    .footer-nav-list a {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        height: 80vh;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .location-item {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* 会社概要のカードヘッダーは一行表示 */
    .info-card .card-header {
        flex-direction: row;
        align-items: center;
    }
    
    .card-header .card-features {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .office-gallery {
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .office-images {
        gap: 1rem;
    }
    
    .office-image-item {
        max-width: 100%;
    }
    
    .recruit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .recruit-text {
        order: 2;
    }
    
    .recruit-image {
        display: none;
    }
    
    .recruit-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .recruit-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .recruit-features {
        gap: 1.5rem;
    }
    
    .recruit-feature {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 0.8rem;
    }
    
    .recruit-feature i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    /* 自社物件レスポンシブ 480px */
    .property-detail-header {
        padding: 1.5rem;
    }

    .property-title-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .property-title-row h3 {
        font-size: 1.2rem;
        width: 100%;
        word-break: keep-all;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.5;
    }

    .property-price-large {
        font-size: 1.4rem;
        white-space: normal;
        text-align: left;
        width: 100%;
    }

    .property-detail-body {
        padding: 1.5rem;
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .slider-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .slider-btn-prev {
        left: 0.5rem;
    }

    .slider-btn-next {
        right: 0.5rem;
    }

    .property-specs-horizontal .property-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .spec-item {
        padding: 0.8rem;
    }
    
    .property-slider-full-width {
        padding: 1rem;
    }
    
    .property-specs-horizontal {
        padding: 1rem;
    }

    .highlights-list li {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        padding: 0 20px;
    }
    
    .footer-logo {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .footer-logo-prefix {
        font-size: 0.9rem;
    }
    
    .footer-logo h3 {
        font-size: 1.8rem;
    }
    
    .footer-nav {
        margin-left: 0;
        width: 100%;
    }
    
    .footer-nav-list {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-nav-list a {
        font-size: 1rem;
        padding: 0.5rem 0;
        display: block;
        text-align: center;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        font-size: 0.85rem;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* お問い合わせセクション - 営業時間を一行表示 */
    .hours-item-business strong {
        font-size: 1.2rem;
        white-space: nowrap;
    }
    
    .hours-item p {
        margin: 0;
    }
    
    .hours-item-business p {
        white-space: nowrap;
    }
}

/* ========================================
   新しい物件詳細ページスタイル
======================================== */

.property-detail-new {
    padding: 6rem 0 4rem;
    background: #fff;
}

.container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 戻るリンク */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary-dark);
}

/* タイトルエリア */
.property-header-new {
    text-align: center;
    padding: 2rem 0 3rem;
    border-bottom: 2px solid #f0f0f0;
}

.badge-new {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.property-title-new {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 1rem 0;
}

.property-price-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 1rem;
}

.tax-included {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* セクションタイトル */
.section-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

/* 物件の特徴セクション */
.features-section-new {
    padding: 3rem 0;
}

.features-list-new {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.features-list-new li {
    background: #f9f9f9;
    padding: 1.2rem;
    border-left: 4px solid var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.features-list-new li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 画像ギャラリーセクション */
.gallery-section-new {
    padding: 3rem 0;
    background: #f9f9f9;
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.gallery-section-new .property-slider {
    max-width: 1000px;
    margin: 0 auto;
}

/* 物件情報セクション */
.info-section-new {
    padding: 3rem 0;
}

.info-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item-new {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-item-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-item-new i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.info-item-new div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-label-new {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}

.info-value-new {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.3;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 物件概要セクション */
.property-overview-section {
    margin-top: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.property-overview-section h4 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.overview-table {
    width: 100%;
    overflow-x: auto;
}

.overview-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.overview-table th {
    background: #f5f5f5;
    color: var(--text-color);
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    width: 20%;
    white-space: nowrap;
}

.overview-table td {
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    color: var(--text-color);
    line-height: 1.6;
}

.overview-table tr:hover {
    background: #fafafa;
}

/* ポップアップ内の物件概要のホバーアクションを無効化 */
.property-lightbox .overview-table tr:hover {
    background: transparent;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .property-title-new {
        font-size: 1.5rem;
    }
    
    .property-price-new {
        font-size: 2rem;
    }
    
    .features-list-new {
        grid-template-columns: 1fr;
    }
    
    .info-grid-new {
        grid-template-columns: 1fr;
    }
    
    .container-new {
        padding: 0 1rem;
    }
    
    .gallery-section-new {
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .property-overview-section {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }
    
    .property-overview-section h4 {
        font-size: 1.25rem;
    }
    
    .overview-table {
        font-size: 0.85rem;
    }
    
    .overview-table th,
    .overview-table td {
        padding: 0.75rem;
        display: block;
        width: 100%;
        border: none;
    }
    
    .overview-table th {
        background: transparent;
        font-weight: 700;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .overview-table td {
        padding-top: 0.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid #e0e0e0;
    }
    
    .overview-table tr {
        display: block;
        margin-bottom: 0;
        border-bottom: none;
    }
    
    .overview-table tr:last-child td {
        border-bottom: none;
    }
    
    /* ポップアップ内の物件概要も統一 */
    .property-lightbox .overview-table th,
    .property-lightbox .overview-table td {
        padding: 0.75rem;
        border: none;
    }
    
    .property-lightbox .overview-table th {
        padding-bottom: 0.75rem;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .property-lightbox .overview-table td {
        padding-top: 0.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid #e0e0e0;
    }
    
    .property-lightbox .overview-table tr {
        margin-bottom: 0;
        border-bottom: none;
    }
    
    .property-lightbox .overview-table tr:last-child td {
        border-bottom: none;
    }
    
    /* スマホ版：全てのホバー効果を無効化 */
    *:hover {
        transform: none !important;
    }
    
    .nav-list a:hover,
    .hero-cta-button:hover,
    .information-card:hover,
    .info-card:hover,
    .info-value a:hover,
    .feature-item:hover,
    .property-card:hover,
    .property-card-link:hover,
    .btn:hover,
    .phone-link:hover,
    .footer-nav-list a:hover,
    .contact-note:hover,
    .spec-item:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    .nav-list a:hover,
    .info-value a:hover,
    .footer-nav-list a:hover {
        color: inherit !important;
        text-decoration: none !important;
    }
    
    .nav-list a:hover::after,
    .footer-nav-list a:hover::after {
        width: 0 !important;
    }
    
    .hero-cta-button:hover {
        background: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
    }
    
    /* スマホ版：PC用カスタムカーソル（丸）を非表示 */
    .custom-cursor {
        display: none !important;
    }

    /* スマホ版：タップ時のハイライトを抑制（丸い表示対策） */
    a, button, .btn, .hamburger, .lightbox-close, .slider-btn, .property-card-link,
    input, textarea, select, .nav-list a, .footer-nav-list a, .phone-link {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }
}

