body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

main {
    max-width: 1200px;
    margin-top: 70px;
    padding: 100px;
    background-color: #fff;
    border-radius: 15px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    color: #333;
    margin: 0 0 30px 0;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}

.info-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 均等に配置 */
}

/* その他のスタイルは変更せずに保持 */

.info-block-link {
    display: block;
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 20px;
    flex-basis: calc(50% - 10px); /* 2つを1行に並べる */
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    margin-bottom: 20px; /* 下の行との間隔を空ける */
    text-decoration: none; /* リンクの下線を消す */
    color: #333; /* リンクのテキストカラーを設定 */
}

.info-block-link:hover {
    background-color: #e9ecef;
    transform: translateY(-5px);
}

/* メディアクエリはそのまま保持 */


.product-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-name {
    font-weight: normal;
    font-size: 18px;
    color: #333;
    text-decoration: none; /* 下線を消す */
}

@media (max-width: 992px) {
    .info-block {
        flex-basis: calc(50% - 10px);
    }
}

@media (max-width: 767px) {
    .info-row {
        flex-direction: column;
    }

    .info-block {
        flex-basis: 100%;
    }

    main {
        padding: 40px;
    }
}
