/*
Theme Name: Wonderful Estate
Theme URI: https://wonderful-estate.com/
Description: 商業不動産向けオリジナルテーマ
Version: 1.0
Author: pirarucu
*/

/* 全体 */
body {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
}

/* ヘッダー */
header {
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

/* メインビジュアル */
.main-visual {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

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

.main-copy {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.main-copy h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.main-copy p {
    font-size: 18px;
}

/* サービス内容 */
.services {
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.service-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-item {
    width: 280px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
}

/* フッター */
footer {
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
    margin-top: 40px;
}