@charset "UTF-8";

/* 基本のリセット */
* {
    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;
}

.background-container {
    /* 画像のパスは実際のファイル名に合わせて変更してください */
    background-image: url('../img/comingsoon.jpg'); 
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    /* 背景を白く半透明にし、少しぼかして画像との差別化を図ります */
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px); /* 背景を少しぼかす(対応ブラウザのみ) */
    width: 100%;
    padding: 60px 20px;
    text-align: center;
}

.english-text {
    font-size: 3rem;
    font-style: italic;
    font-family: 'Georgia', serif; /* セリフ体を使用 */
    color: #333;
    margin-bottom: 20px;
}

.japanese-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.sp-only {
        display: none;
}

.footer-info {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #333;
    line-height: 1.6;
}

/* 画面の横幅が768px以下（一般的なスマホ・タブレット）の場合の設定 */
@media screen and (max-width: 768px) {
    .overlay {
        padding: 40px 15px; /* 上下の余白を少し詰める */
    }

    .english-text {
        font-size: 2rem; /* 文字サイズを小さく */
        margin-bottom: 15px;
    }

    .japanese-text {
        font-size: 1.1rem; /* 日本語も読みやすいサイズに調整 */
        line-height: 1.6;
        word-break: break-all; /* 長い単語があっても改行されるようにする */
    }

    .sp-only {
        display: block;
    }

    .footer-info {
        margin-top: 30px;
        font-size: 0.7rem; /* コピーライトを小さく */
    }
}

/* さらに小さいスマホ（480px以下）の場合の微調整 */
@media screen and (max-width: 480px) {
    .english-text {
        font-size: 1.8rem;
    }
    
    .japanese-text {
        font-size: 1rem;
    }

    .sp-only {
        display: block;
    }
}
