/* about-us.css - ソニーミュージック財団 */

/*******************************
 * 私たちについてセクション
 *******************************/

/* セクション全体 */
.about-us {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* 子要素を右寄せ */
}

/* 上部写真 */
.about-us__top-image {
    width: 97.22%; /* 1400px ÷ 1440px = 97.22% */
    height: auto; /* 固定高さを削除 */
    aspect-ratio: 16/7; /* SP時と同じ比率を適用 */
    overflow: hidden;
    border-top-left-radius: 20px;
}

.about-us__top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* メインコンテンツ部分（青背景） */
.about-us__content {
    width: 97.22%; /* 1400px ÷ 1440px = 97.22% */
    display: flex;
    background-color: var(--color-dark-blue); /* ブランドブルー (#002C6C) */
    color: #ffffff; /* 白色 */
}

/* テキストコンテナ */
.about-us__text-container {
    width: 50%;
    padding: 80px 120px;
}

/* 英語タイトル (About Us) */
.about-us__subtitle {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    position: relative;
    padding-top: 20px; /* 上部にパディングを追加 */
}

/* 英語タイトル上のオレンジドット */
.about-us__subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0; /* 上部に配置 */
    width: 8px;
    height: 8px;
    background-color: #FF6600; /* オレンジ色のドット */
    border-radius: 50%;
}

/* 日本語タイトル */
.about-us__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--secondary);
}

/* 本文テキスト */
.about-us__description {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
}

/* 詳しく見るボタン */
.about-us__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

.about-us__button:hover {
    background-color: #eaeaea;
    transform: translateY(-2px);
}

/* ボタン内の矢印 */
.about-us__button-arrow {
    margin-left: 10px;
    font-weight: normal;
}

/* 右側の写真 */
.about-us__side-image {
    width: 50%;
    overflow: hidden;
}

.about-us__side-image img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    margin: 80px 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}






/* about-us-responsive.css - ソニーミュージック財団 768px以下 */

@media screen and (max-width: 768px) {
    /* セクション全体のスタイル調整 */
    .about-us {
        flex-direction: column;
    }

    /* 上部画像のサイズと比率調整 */
    .about-us__top-image {
        height: auto;
        aspect-ratio: 3/2;
    }

    .about-us__top-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* メインコンテンツ部分の幅を100%に */
    .about-us__content {
        flex-direction: column;
    }

    /* テキストコンテナの幅を100%に */
    .about-us__text-container {
        width: 100%;
        padding: 40px 20px 0;
        box-sizing: border-box;
    }

    /* 英語タイトルのサイズ調整 */
    .about-us__subtitle {
        font-size: 14px;
        margin-bottom: 8px;
    }

    /* 日本語タイトルのサイズ調整 */
    .about-us__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    /* 本文テキストのサイズ調整 */
    .about-us__description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    /* 詳しく見るボタンスタイル */
    .about-more {
        margin-bottom: 40px;
    }

    .btn.white-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 30px;
        border-radius: 30px;
        font-size: 14px;
        background-color: #ffffff;
        color: var(--color-dark-blue);
    }

    .white-btn-arrow {
        margin-left: 10px;
        stroke: var(--color-dark-blue);
    }

    /* 右側画像を下部に配置 */
    .about-us__side-image {
        width: 100%;
        margin-bottom: 40px;
        display: flex;
        justify-content: flex-end;
    }

    .about-us__side-image img {
        width: 95%;
        height: auto;
        aspect-ratio: 3/2;
        margin: 0;
        border-top-left-radius: 20px;
    }
}