.hero-section {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    max-height: 650px;
    margin-bottom: 3rem;
}

/* アスペクト比設定 */
.hero-section[data-height="aspect-design"] {
    aspect-ratio: 1200 / 650;
}

.hero-section[data-height="aspect-16-9"] {
    aspect-ratio: 16 / 9;
}

.hero-section[data-height="aspect-21-9"] {
    aspect-ratio: 21 / 9;
}

.hero-section[data-height="aspect-4-3"] {
    aspect-ratio: 4 / 3;
}

.hero-section[data-height="aspect-1-1"] {
    aspect-ratio: 1 / 1;
}

.hero-section__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
}

/* 水平位置 */
.hero-section--align-left .hero-section__inner {
    justify-content: flex-start;
}

.hero-section--align-center .hero-section__inner {
    justify-content: center;
}

.hero-section--align-right .hero-section__inner {
    justify-content: flex-end;
}

/* 垂直位置 */
.hero-section--vertical-top {
    align-items: flex-start;
}

.hero-section--vertical-center {
    align-items: center;
}

.hero-section--vertical-bottom {
    align-items: flex-end;
}

/* テキストスタイル */
.hero-section__text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: bold;
    /* line-height: 1; */
    max-width: 800px;
    text-align: center;
    /* font-family: "Noto Serif JP"; */
}

.hero-section--text-white .hero-section__text {
    color: #ffffff;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

.hero-section--text-black .hero-section__text {
    color: #000000;
    /* text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5); */
}

/* レスポンシブ */
@media screen and (max-width: 767px) {
    /* スマホ用アスペクト比 */
    .hero-section[data-height="aspect-design"] {
        aspect-ratio: 750 / 550;
    }
    
    .hero-section__inner {
        padding: 30px 15px;
    }
    
    .hero-section__text {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }
}
