/* 全体 */
.site-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 20px rgba(40,60,95,0.08);
    border-radius: 8px;
}

/* ヘッダー */
.site-header {
    background: #283c5f;
    padding: 20px 0;
    margin-bottom: 40px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    color: #fff;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.main-nav li {
    margin: 0 25px;
}

.main-nav a {
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    transition: .3s;
    position: relative;
    font-size: 1.2em;
    letter-spacing: .1em;
}

.main-nav a:hover {
    color: #bfa17a;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #bfa17a;
    transition: .3s;
}

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

/* タイトル */
.page-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 20px 0 10px;
    color: #333;
}

/* イントロ */
.ayase-intro {
    background: #fdfbf7;
    padding: 18px 22px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(40,60,95,0.08);
    margin-bottom: 35px;
}

/* 情報 */
.info-section p {
    padding-left: 1em;
    margin: 0 0 5px;
    line-height: 1.2;
    font-size: 12pt;
    color: #5a4f43;
}

/* セクションタイトル */
.section-title {
    font-size: 1.5em;
    font-weight: bold;
    margin: 40px 0 30px;
    text-align: center;
    color: #283c5f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title::before,
.section-title::after {
    content: '';
    flex-grow: 1;
    max-width: 50px;
    height: 2px;
    background: #283c5f;
    margin: 0 15px;
}

/* 物件ブロック */
.property-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(40,60,95,0.08);
}

@media (min-width: 768px) {
    .property-section {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        max-width: 850px;
        margin: 0 auto;
        padding: 25px;
    }
}

/* 戻るボタン */
.return-link {
    text-align: center;
    margin: 50px 0 40px;
}

.return-link a {
    display: inline-block;
    padding: 10px 20px;
    background: #283c5f;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: .3s;
}

.return-link a:hover {
    background: #bfa17a;
    transform: translateY(-2px);
}

/* フッター */
.site-footer {
    background: #283c5f;
    padding: 30px 0;
    margin-top: 50px;
    border-radius: 0 0 8px 8px;
    text-align: center;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.footer-nav li {
    margin: 0 15px 10px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #bfa17a;
}
