@charset "UTF-8"
/*共通部分-------------------*/
html {
    font-size: 100%;
    height: 100%;
}
body {
    line-height: 1.7;
    color: #000;
}
img {
    max-width: 100%;
}
/*内容部分------------------*/

.cover {
    flex: 1; /* コンテンツ部分が残りのスペースを埋める */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/*AIに確認*/
.text {
    text-align: center;
    margin: 1rem;
}
.text-decoration {
    font-size: 2.5rem;
    background-color: #faf7f0;
    border-radius: 48px;
    margin: 2rem 5rem 3rem;
    padding: 2rem 3rem;
}
.text p {
    text-align: left;
}
.neko {
    text-align: right;
}
.icon {
    width: 200px;
}
.google-font {
    font-family: Pacifico
}
.copyright {
    background-color: #432;
    text-align: center;
    padding: 1rem 0;
    color: #fff;
    margin: 0;
}

@media (max-width: 959px) {
    .text {
        font-size: 1rem;
    }
    .text-decoration {
    font-size: 1rem;
    }
    .icon {
        width: 100px;
    }
}