/* ===============================
   app_install.html
   index.html
   offline.html
================================ */
body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    overflow-y: auto; /* 縦スクロールを有効に */
    overflow-x: hidden; /* 横スクロールを無効に */
    min-height: 100vh; /* ページ全体の高さ確保 */
    max-width: 100%; /* 全てのサイズが画面サイズを超えないようにする */
}

/* ロゴ用のCSS */
.Uniform_logo {
    max-width: 100%;  /* デフォルトは100%でレスポンシブ */
    height: auto;
}

/* PC（幅1200px以上）の場合は固定サイズにする */
@media (min-width: 1200px) {
    .Uniform_logo {
        max-width: 600px; /* PCでは600px固定 */
    }
}

.Uniform_logo_dash {
    max-width: 100%;  /* デフォルトは100%でレスポンシブ */
    height: auto;
}

/* PC（幅1200px以上）の場合は固定サイズにする */
@media (min-width: 1200px) {
    .Uniform_logo_dash {
        max-width: 600px; /* PCでは600px固定 */
    }
}

/* コンテナ */
.app-install__container {
    max-width: 600px;
    margin: 5px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* タイトル */
.app-install__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.app-install__description {
    font-size: 16px;
    margin-bottom: 20px;
}

/* セクション */
.app-install__section {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 6px;
    background-color: #e3f2fd;
}

.app-install__section-title {
    font-size: 20px;
    color: #007bff;
}

/* テキスト */
.app-install__text,
.offline__text {
    font-size: 14px;
    margin-bottom: 10px;
}

/* ボタン */
.app-install__button {
    display: block;
    text-align: center;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.app-install__button:hover {
    background-color: #0056b3;
}



/* スマホ対応（レスポンシブデザイン） */
@media screen and (max-width: 600px) {
    .app-install__container {
        width: 90%;
        padding: 15px;
    }

    .app-install__title {
        font-size: 20px;
    }

    .app-install__section-title {
        font-size: 18px;
    }

    .app-install__button {
        width: 100%;
    }
}
