
/* 全体のスタイル */
body {
color: #333;
background-color: #f9f9f9;
margin: 0;
padding: 0;
font-family: "M PLUS Rounded 1c", sans-serif;
}

.l-content {
    padding-top: 0em;
}
.container {
max-width: 800px;
margin: 20px auto;
background: #fff;
padding: 25px;
}

.l-mainContent__inner .post_content{
margin: 0px auto;
}
/* ヘッダー */
.property-header h1 {
font-size: 28px;
font-weight: 700;
margin: 0 0 10px 0;
color: #2c3e50;
display:none;
}
.property-type {
display: inline-block;
padding: 4px 12px;
border-radius: 0px;
font-size: 14px;
font-weight: 600;
color: #fff;
display:none;
}
.type-indoor { background-color: #e67e22; }
.type-outdoor { background-color: #3498db; }

/* 画像カルーセル */
.carousel {
position: relative;
overflow: hidden;
margin: 25px 0;
}
.carousel-images {
display: flex;
transition: transform 0.5s ease-in-out;
}
.carousel-images img {
width: 100%;
height: auto;
display: block;
min-width: 100%;
}
.carousel-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(0, 0, 0, 0.6);
color: #fff;
border: none;
padding: 12px;
cursor: pointer;
border-radius: 50%;
z-index: 10;
font-size: 20px;
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
}
.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }
.carousel-btn:hover { background: rgba(0, 0, 0, 0.8); }
.carousel-btn:disabled { display: none; }

/* Google Map */
#map {
height: 400px;
width: 100%;
margin: 25px 0;
border-radius: 0px;
border: 1px solid #ddd;
}

.gm-style-iw-ch {
    padding-top: 9px;
}


/* テーブル共通スタイル */
.info-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
font-size: 15px;
border-radius: 0px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.info-table th, .info-table td {
padding: 10px;
text-align: left;
border-bottom: 1px solid #eee;
}
.info-table th {
background-color: #2c3e50;
color: #fff;
font-weight: 600;
width: 30%;
min-width: 80px;
}
.info-table tr:last-child th, .info-table tr:last-child td {
border-bottom: none;
}

.post_content table {
    border: 1px solid #dcdcdc;
}

/* 空室状況テーブル */
.availability-table thead th {
background-color: #2c3e50;
color: #fff;
text-align: center;
}
.availability-table td {
text-align: center;
vertical-align: middle;
}
.availability-table tbody tr:nth-child(even) {
background-color: #f7f9fc;
}
.status-available {
display: inline-block;
padding: 5px 15px;
background-color: #2ecc71;
color: white;
border-radius: 0px;
font-weight: bold;
font-size: 13px;
}
.status-full {
color: #95a5a6;
}
.price {
font-weight: bold;
color: #e74c3c;
font-size: 1em;
}

/* 申し込みボタン */
.cta-button {
display: block;
width: 80%;
max-width: 400px;
margin: 30px auto;
padding: 18px 20px;
background: linear-gradient(45deg, #f39c12, #e67e22);
color: #fff;
text-align: center;
text-decoration: none;
font-size: 18px;
font-weight: bold;
border-radius: 50px;
box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
transition: all 0.3s ease;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(230, 126, 34, 0.5);
}
.cta-button .arrow {
margin-left: 10px;
display: inline-block;
transition: transform 0.3s;
}
.cta-button:hover .arrow {
transform: translateX(5px);
}

h2.section-title {
font-size: 22px;
color: #2c3e50;
border-bottom: 3px solid #3498db;
padding-bottom: 10px;
margin-top: 10px;
}

.post_content h2 {
    margin: 0em;
}

/* テーブルのレスポンシブ対応 */
.table-wrapper {
overflow-x: auto;
-webkit-overflow-scrolling: touch; /* iOSでのスムーズなスクロール */
margin: 25px 0;
}
.table-wrapper > .info-table {
margin: 0; /* ラッパーがマージンを持つのでテーブル本体のマージンは削除 */
}

.property-summary {
    padding: 16px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
    background-color: #f7f9fc;
    line-height: 1.6;
}
/* 物件特徴 */
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 8px;
margin: 25px 0;
padding: 10px;
background-color: #f7f9fc;
border-radius: 0px;
border: 1px solid #e9ecef;
}
.feature-item {
padding: 8px 5px;
text-align: center;
border: 1px solid #ddd;
border-radius: 0px;
font-size: 12px;
font-weight: 600;
background-color: #fff;
transition: all 0.2s ease;
}
.feature-item.active {
    background-color: orange !important;
    color: white !important;
    border-color: orange !important;
}
.feature-item.inactive {
color: #95a5a6;
border-color: #e0e0e0;
}
