/* リセットCSS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-size: 16px;
}

.container {
    max-width: 600px; /* スマホ画面での最大幅 */
    margin: 0 auto;
    padding: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

a {
    display: block;
}

section {
    margin-bottom: 2rem;
}

.button-wrapper {
    margin: 2rem 0;
}

.info-text, .caution-wrapper {
    font-size: 0.875rem; /* 14px */
    line-height: 1.8;
}

.info-text {
    text-align: left;
    white-space: pre-wrap;
}

.caution-wrapper p {
    margin-bottom: 1rem;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 2rem 0;
}

.footer-logo img {
    max-width: 586px;
}

small {
    font-size: 0.75rem; /* 12px */
}

/* --- PC画面用のスタイル（768px以上の画面に適用） --- */
@media (min-width: 768px) {
    .container {
        max-width: 800px; /* PC画面での最大幅を800pxに設定 */
    }
}