.brand-page-main {
    padding-top: 100px;
    padding-bottom: 50px;
    background-color: #f7f7f7;
    color: #333;
}

.brand-intro {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 50px;
}

.designer-photo {
    flex-shrink: 0;
    width: 350px;
    height: 450px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.designer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-text {
    flex-grow: 1;
    max-width: 500px;
    text-align: left;
}

.brand-text h1 {
    font-size: 2rem;
    font-weight: 300;
    color: #444;
    margin-bottom: 20px;
}

.brand-text .intro-paragraph,
.brand-text .description-paragraph {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}
/* フッターのスタイル */
footer {
    background-color: #111;
    color: #f7f7f7;
    padding: 30px 20px;
    font-size: 0.8rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}