/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background-color: #f7d800; /* ミサワホーム イエロー */
    color: #333;
    line-height: 1.6;
}

.teaser-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 40px;
    text-align: center;
}

/* ヘッダー（左上ロゴ） */
.header {
    text-align: left;
}

.main-logo {
    width: 90px;
    height: auto;
}

/* メインコンテンツ */
.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.visual-area {
    width: 100%;
    margin-bottom: 20px;
}

/* PC時の画像サイズ調整 */
.teaser-visual {
    max-width: 80%;
    height: auto;
}

.main-title {
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    font-family: "Hiragino Mincho ProN", "MS Mincho", serif;
}

.coming-soon {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 20px;
}

/* フッター */
.footer {
    padding-top: 40px;
}

.privacy-link {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.copyright {
    font-size: 0.8rem;
}

/* レスポンシブ対応（スマホ：768px以下） */
@media (max-width: 768px) {
    .teaser-container {
        padding: 20px;
    }

    .main-logo {
        width: 80px;
    }

    .teaser-visual {
        /* スマホ用画像(teaser_sp.png)は横幅いっぱいに表示 */
        max-width: 90%;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .coming-soon {
        font-size: 1.2rem;
    }
}