/* 基本リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #fff;
    overflow: hidden;
}

/* 背景画像の設定 */
.maintenance-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('index.jpg') no-repeat center center/contain; /* 画像ファイル名を指定 */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* 画像を少し暗くして文字を見やすくするオーバーレイ */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* 暗さを調整 */
    z-index: 1;
}

/* 中央の白い枠線ボックス */
.content-box {
    position: relative;
    z-index: 2;
    background: rgba(108, 117, 125, 0.8); /* 画像のようなグレーの半透明 */
    padding: 60px 40px;
    border: 4px solid #fff;
    max-width: 90%;
    width: 600px;
}

/* 見出し：サイト制作中 */
h1 {
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

/* メインメッセージ */
.message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
}

/* 区切り線 */
.divider {
    width: 80px;
    height: 4px;
    background-color: #fff;
    margin: 0 auto 30px;
}

/* 補足テキスト */
.sub-text {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* スマホ対応 */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    .content-box {
        padding: 40px 20px;
    }
    .message {
        font-size: 1rem;
    }
}