@charset "UTF-8";

/* ==========================================================================
   ベーススタイル・テキスト装飾
   ========================================================================== */
img {
    max-width: 100%;
    height: auto;
}
span.yellow {
    background-color: #ffff55;
}
.text-red {
    color: #ff0000;
    font-weight: bold;
}
.property-price {
    color: #ff0000;
    font-size: 1.5em;
    font-weight: bold;
}

/* ==========================================================================
   アピールポイントエリア
   ========================================================================== */
.property-appeal {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    border-radius: 5px;
}
.appeal-title {
    color: #800147;
    font-size: 1.2em;
    margin-top: 0;
}
.appeal-text {
    margin-bottom: 0;
}

/* ==========================================================================
   物件概要スペック表（洗練されたモダンデザイン）
   ========================================================================== */
.property-specs {
    display: grid;
    grid-template-columns: 25% 75%;
    border-top: 2px solid #333;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    background-color: #fff;
    font-size: 0.95em;
}
.property-specs dt {
    background-color: #f4f6f9;
    padding: 15px;
    margin: 0;
    font-weight: bold;
    color: #444;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
}
.property-specs dd {
    padding: 15px;
    margin: 0;
    color: #222;
    border-bottom: 1px solid #e0e0e0;
    line-height: 1.6;
}
.property-specs dt:last-of-type,
.property-specs dd:last-of-type {
    border-bottom: none;
}
@media screen and (max-width: 600px) {
    .property-specs {
        grid-template-columns: 100%;
        border-top: 2px solid #ff6600;
    }
    .property-specs dt {
        border-right: none;
        border-bottom: none;
        padding: 10px 15px 5px;
    }
    .property-specs dd {
        padding: 5px 15px 15px;
    }
}

/* ==========================================================================
   Swiper: メイン画像スライド
   ========================================================================= */
.swiper.property-slider {
    width: 100%;
    max-width: 480px; 
    height: auto; 
    margin: 0 auto 10px; 
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background-color: #fff;
    padding: 10px;
    box-sizing: border-box;
}
.swiper.property-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper.property-slider .swiper-slide img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}
.swiper-button-next,
.swiper-button-prev {
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

/* ==========================================================================
   Swiper: サムネイル画像スライド
   ========================================================================= */
.swiper.property-thumbs {
    width: 100%;
    max-width: 480px; 
    margin: 0 auto 30px; 
    padding: 5px 0;
    box-sizing: border-box;
}
.swiper.property-thumbs .swiper-slide {
    height: 70px; 
    opacity: 0.4; 
    cursor: pointer;
    transition: opacity 0.3s;
    border-radius: 4px;
    overflow: hidden;
}
.swiper.property-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #ff6600; 
}
.swiper.property-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

@media screen and (max-width: 640px) {
    .swiper.property-slider {
        padding: 5px;
        margin-bottom: 5px;
    }
    .swiper.property-thumbs .swiper-slide {
        height: 60px; 
    }
}

/* ==========================================================================
   Googleマップ自動表示エリア
   ========================================================================== */
.google-maps {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background-color: #f0f0f0;
}

/* ==========================================================================
   注意事項・免責事項ボックス (新規追加)
   ========================================================================== */
.disclaimer-box {
    background-color: #fff4f4; /* 注意喚起の薄い赤 */
    border: 1px solid #ffcccc;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    font-size: 0.9em;
    line-height: 1.6;
    color: #444;
}
.disclaimer-box h4 {
    color: #cc0000;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1em;
    border-bottom: 1px dashed #ffcccc;
    padding-bottom: 5px;
}
.disclaimer-box ul {
    margin: 0;
    padding-left: 20px;
}
.disclaimer-box li {
    margin-bottom: 8px;
}
.disclaimer-box li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   お問い合わせボタンのリッチ化
   ========================================================================== */
.btn-contact {
    background: linear-gradient(135deg, #ff8a00, #e52e71);
    color: #fff;
    padding: 18px 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2em;
    display: block;
    text-decoration: none;
    margin: 40px auto;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(229, 46, 113, 0.3);
    transition: all 0.3s ease;
}
.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 46, 113, 0.4);
    color: #fff;
    text-decoration: none;
}
.btn-subtext {
    font-size: 0.7em;
    font-weight: normal;
}

/* ==========================================================================
   フッター
   ========================================================================== */
.footer-company-info {
    font-size: 0.9em;
    margin-bottom: 10px;
}