body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #f4f4f4;
}
.container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.content {
    flex: 1;
    max-width: 600px;
    border-radius: 0 15px 15px 0;
    padding: 20px;
}
.content h1 {
    font-size: 28px;
}
.content p {
    font-size: 18px;
    margin: 10px 0;
     text-align: left;
}
.button {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    margin-top: 10px;
    padding: 10px 35px;
    background-color: #00C300;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s;
    animation: pulse 1.5s infinite;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.button:hover {
    background-color: #009B00;
}
.button .icon {
    margin-right: 20px;
    font-size: 25px;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
footer {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
}
.footer-links {
    margin-top: 10px;
    font-size: 14px;
}
.footer-links a {
    margin: 0 10px;
    color: #007BFF;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        min-height: 500px;
    }
    .image {
        margin-right: 0;
        margin-bottom: 20px;
        border-radius: 15px;
        max-height: 100%;
        width: 100%;
        object-fit: contain;
    }
    .content {
        padding: 20px;
        border-radius: 15px;
        text-align: center;
    }
}