figure.row {
    display: none;
}

.column .category {
    display: flex;
    align-items: center;
    background-color: #E0ECF1;
    font-size: 2.4rem;
    justify-content: space-between;
}

.column .category>a {
    margin-right: 2rem;
    font-size: 1.4rem;
    white-space: nowrap;
}

.yoshin-top-nav {
    display: grid;
    grid-template-rows: auto auto;
    gap: 8px;
    justify-content: space-between;
}

.yoshin-top-nav h1 {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
}

.yoshin-top-nav-prev {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    width: 100px;

}

.yoshin-top-nav-next {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    width: 100px;
}

.comics .sentenceBlock.sentenceBlock-blur {
    position: relative;
    height: min(50vh, 350px);
    min-height: 600px;
    overflow: hidden;
}

.comics .sentenceBlock.sentenceBlock-blur::after {
    content: "";
    display: block;
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, transparent, #fff);
}

.comics .sentenceBlock.sentenceBlock-blur p>span {
    filter: blur(6px);
}

.yoshin-dl-blk {
    position: absolute;
    width: 100%;
    top: 200px;
    z-index: 3;
}

.yoshin-dl-blk.yoshin-dl-blk_kihon {
    margin-top: 64px;
    position: relative;
    top: 0;
}

.yoshin-dl-blk .yoshin-dl-blk_inner {
    display: flex;
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    padding: min(5.1vw, 3.2rem) min(4.1vw, 3.2rem);
    background-color: #CAEEFB;
    border: solid 3px #333333;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    align-items: center;
}

.yoshin-dl-blk .yoshin-dl-blk_inner h3 {
    margin-bottom: 1.6rem;
    font-size: min(4.615vw, 2.4rem);
}

.yoshin-dl-blk .yoshin-dl-blk_inner p {
    width: 100%;
    font-size: min(3.6vw, 1.6rem);
}

.yoshin-dl-blk .yoshin-dl-blk_inner .btn_above {
    margin-bottom: 0.5rem;
    font-size: min(3vw, 1.6rem);
    text-align: center;
}

.yoshin-dl-blk .yoshin-dl-blk_inner a {
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    background-color: #1643B6;
    border-radius: 25px;
    color: #fff;
    justify-content: center;
    align-items: center;
}

.yoshin-dl-blk .yoshin-dl-blk_inner a:hover {
    background-color: #00A1B9;
    text-decoration: none;
    transition: .3s ease-in-out;
}

@media (min-width: 737px) {
    .yoshin-top-nav {
        display: flex;
        justify-content: space-evenly;
        align-items: baseline;
    }

    .yoshin-top-nav.yoshin-top-nav_compliance {
        align-items: center;
        flex-direction: column;
    }

    .comics h1.title {
        width: min-content;
        margin: 0 0 6rem 0;
        white-space: nowrap;
    }

    .column .category strong {
        width: 450px;
        margin: 0 0 0 auto;
    }

    .column .category>a {
        display: block;
        width: 650px;
        margin-right: auto;
    }

    .comics .sentenceBlock.sentenceBlock-blur {
        min-height: 500px;
    }

    .yoshin-dl-blk {
        top: 150px;
    }

    .yoshin-top-nav_compliance .yoshin-top-nav-prev {
        margin-left: 50px;
        margin-right: auto;
    }
}