/* Base styles */
body {
    font-family: 'M PLUS 1p', sans-serif;
    background-color: rgb(254 242 242);
    margin: 0;
    padding: 0;
}

.wrapper {
    max-width: 480px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background-image: url(bg.jpg);
    /* 画像を常に天地左右の中央に配置 */
    background-position: center center;
    /* 画像をタイル状に繰り返し表示しない */
    background-repeat: repeat;
}

/* Header */
.header {
        display: flex;
        align-items: center;
        justify-content: center;
    
}

.header img {
    width: 90%;
    /* height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); */
}

/* Links section */
.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.link-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.link-card:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3);
}

.link-content {
    display: flex;
    align-items: center;
    padding: 1rem;
}

.link-content img {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
}

.mail-icon {
    width: 3rem;
    height: 3rem;
    color: rgb(236 72 153);
}

.link-text {
    margin-left: 1rem;
    flex-grow: 1;
}

.link-title {
    font-size: 1.125rem;
    font-weight: 500;}

.footer img{
        display: block;
        text-align: center;
        width: 90%;
        margin: 20px auto 0px auto
    }
.footer p{
    text-align: center;
    margin: 10px 0;
}
.visual-line img{
    display: block;
    text-align: center;
    width: 70%;
    margin: 20px auto 0px auto
}
.copyright{

    text-align: center;
    margin: 10px 0;
}