body {
    margin: 0;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.content-section {
    margin: auto;
    text-align: center;
}

.about-section {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
    margin: auto;
}

.content-section img,
.about-section img {
    width: 50%;
    height: auto;
    margin-bottom: 20px;
}

.card-2 {
    display: flex; /* Flexboxを使用してカードを横並びにする */
    justify-content: space-around; /* カードの間に均等なスペースを配置 */
}

.card {
    flex: 1; /* 各カードが利用可能なスペースを均等に使用 */
    margin: 5px; /* カードの周りにマージンを追加 */
    padding: 5px; /* カードの内側にパディングを追加 */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* カードに影を追加 */
    text-align: center;
}

h1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

h2 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

p {
    margin: 0;
    font-size: 1.2rem;
}

.adress-section h3 {
    margin-top: 20px;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: rgb(159, 129, 36);
    opacity: 1; /* ホバー時は完全に不透明 */
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .content-section img {
        width: 80%;
    }

    .card-2 a {
        font-size: 0.8rem;
    }

    h1 {
        font-size: 1.4rem;
        font-weight: bold;
        margin-bottom: 10px;
        text-align: center;
    }

    h2 {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 10px;
        text-align: center;
    }

    h3 {
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 10px;
        text-align: center;
    }

    p {
        margin: 0;
        font-size: 0.8rem;
    }

    .about-section {
        width: 80%;
        margin: 20px auto;
    }
}
