body {
    background: url('./back_buyer.png') repeat center center fixed;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%; /* Safari */
}

@media (max-width: 768px) {
    .container {
        flex-wrap: nowrap; /* スマートフォンでも折り返さない */
    }
    .profile-section,
    .content-section {
        flex: 1; /* スマートフォンでもflex値を1に設定して等幅にする */
        min-width: 0; /* 最小幅の制限を解除して幅が調整できるようにする */
    }
}

.centered {
    text-align: center;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px; /* コンテナの最大幅を設定 */
    margin: 0 auto; /* 中央揃え */
}

.profile-section {
    flex: 0.8; /* それぞれのセクションが等しい幅を持つように設定 */
    min-width: 240px; /* セクションがあまりに小さくならないように最小幅を設定 */
    margin: 10px; /* 余白を設定 */
}

.content-section {
    flex: 1.2; /* それぞれのセクションが等しい幅を持つように設定 */
    min-width: 350px; /* セクションがあまりに小さくならないように最小幅を設定 */
    margin: 10px; /* 余白を設定 */
}

.profile-image {
    width: 350px;
    height: 438px;
    margin: 10px;
}

.banner-image {
    width: 150px;
    height: 46px;
    border: 1px solid;
    margin: 5px;
}

.section-divider {
    width: 100%;
    height: 1px;
    margin-top: 20px;
}

.new-section {
    color: red;
    margin-top: 20px;
}

.no-list-style {
    list-style-type: none;
    padding: 0;
}

.left-margin {
    margin-left: 70px;
}

.contact-info {
    font-weight: bold;
    margin-top: 20px;
}

.profile-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.live-events {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
 }
 
 .live-events th, .live-events td {
    padding: 10px;
    border: 1px solid #666;
    text-align: left;
 }
 
 .live-events th {
    background-color: #f5f5f5;
 }
 
 .live-events a {
    font-weight: bold;
 }