/* BALADEページ */
.balade-sec-ttl {
    background-color: #32323C;
    padding: 12px 16px;
    font-size: 22px;
    color: #fff;
}
@media (min-width: 768px) {
    .balade-sec-ttl {
        font-size: 31px;
    }
}

/* STORY */
.story-cont {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 48px;
    margin-bottom: 64px;
}
.story-item {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
    container-type: inline-size;
}
.prologue-7-img {
    margin-block: 40px 40px;

}
@media screen and (min-width: 769px) {
    .story-cont {
        row-gap: 64px;
        margin-bottom: 134px;
    }
    .story-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center
    }
    .story-item-reverse {
        flex-direction: row-reverse;
    }
    .story-para {
        width: 50%;
        text-align: left;
        line-height: 1.9;
    }
    .story-img {
        width: 44%;
    }
    .prologue-7-img {
        margin-block: 78px 99px;
    }
}

/* CHARACTER */
.character-list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 40px;
    margin-bottom: 64px;
}
@media screen and (min-width: 769px) {
    .character-list {
        grid-template-columns: 1fr 1fr;
        column-gap: 34px;
        row-gap: 56px;
    }
}
/* CHARACTER ITEM */
.chara-item {
    container-type: inline-size;
    position: relative;
}
.chara-rect {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #32323C;
    box-shadow: 4px 4px 0px #32323C;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.chara-rect-txt {
    display: block;
    width: auto;
    max-width: 100%;
    height: 8cqw;
    position: absolute;
    bottom: 0;
    right: 1cqw;
    overflow: hidden;
}
.chara-rect-txt img {
    height: 100%;
    display: block;
    margin-top:  0.5cqw;
}
.chara-item-inner {
    width: 96%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 0.25fr 0.75fr;
    gap: 3cqw;
    margin-top: -5cqw;
}
.chara-ttl {
    background-color: #32323C;
    margin-bottom: 10px;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
    display: flex;
    align-items: center;
    width: fit-content;
    height: fit-content;
    padding-block: 8px;
}
.chara-ttl-label {
    color: #fff;
    padding-inline: 6px 0;
    font-size: max(12px, 3.1cqw);
}
.chara-ttl-name {
    color: #fff;
    padding-inline: 0 16px;
    font-size: min(26px, 4.4cqw);
    display: flex;
    align-items: center;
    line-height: 1;
    position: relative;
    margin-left: 8px;
    text-align: left;
}
.chara-ttl-name::before {
    content: "";
    display: block;
    width: 1px;
    height: 125%;
    position: absolute;
    top: -3px;
    left: -6px;
    transform: rotate(20deg);
    background-color: #fff;
}
.chara-desc {
    font-size: max(12px, 2.6cqw);;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 10cqw;
}
.chara-subttl {
    margin-top: 32px;
    margin-bottom: 32px;
}
.chara-subttl-en {
    width: min(100%, 600px);
    margin-inline: auto;
}
.chara-subttl-note {
    font-size: 14px;
    font-weight: 600;
    color: #FA3F4D;
}

.chara-feat {
    color: #FA3F4D;
    text-align: left;
    width: fit-content;
    margin-bottom: 16px;
}
.chara-feat-index {
    display: block;
    margin-bottom: 8px;
    font-size: min(18px, 4.5cqw);
    line-height: 1;
}
.chara-feat-cost {
    display: block;
    font-size: min(17px, 4.3cqw);
    position: relative;
    padding-inline: 0 16px;
    padding-top: 8px;
    line-height: 1;
    border-top: 1px solid #FA3F4D;  
}
.chara-feat-cost::before {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background-color: #FA3F4D;
    position: absolute;
    top: 3px;
    left: -19px;
    transform: rotate(-27deg);
}
.chara-feat-cost::after {
    content: "";
    display: block;
    width: 20px;
    height: 3px;
    background-color: #FA3F4D;
    position: absolute;
    top: 0;
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}

@media screen and (min-width: 769px) {
    .chara-ttl-name {
        margin-left: 16px;
    }
    .chara-ttl-name::before {
        left: -9px;
    }
    .chara-rect-txt {
        height: 10cqw;
    }
    .chara-rect-txt img {
        margin-top: 3.3cqw;
        height: 70%;
    }
    .chara-subttl {
        margin-top: 44px;
        margin-bottom: 64px;
    }
    .chara-subttl-note {
        font-size: 17px;
    }    
}