.mv {
    background-image: url(../images/top.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 550px;
    margin: -45px 0 45px;
    position: relative;
    width: 100%;
}
.mv::after {
    background: rgb(255 255 255 / 50%);
    content: "";
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}
.mv-inner {
    background: none;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
}
.mv-inner::after {
    display: none;
}
.mv-ttl h1 {
    color: var(--cr-male);
    font-size: 62px;
    font-weight: 700;
    line-height: 1.8em;
    text-shadow: -4px -4px 4px #fff, 4px 4px 4px #fff,-4px 4px 4px #fff, 4px -4px 4px #fff,  -8px -8px 8px #fff, 8px 8px 8px #fff, -10px -10px 15px #fff, 10px 10px 15px #fff;
}
.mv-btn {
    margin: 25px auto 0;
}
.mv-btn__item {
    height: 50px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 300px;
}
.mv-btn__item a {
    background: #fff;
    border: 1px solid var(--cr-male);
    border-radius: 50px;
    color: var(--cr-male);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    height: 100%;
    transition-duration: .3s;
    width: 100%;
}
.mv-btn__item a:hover {
    background: var(--cr-male);
    color: #fff;
}
@media screen and (max-width: 968px) {
    .mv {
        margin: 0 0 35px;
    }
    .mv-ttl h1 {
        font-size: 48px;
    }
}
@media screen and (max-width: 768px) {
    .mv {
        height: 260px;
    }
    .mv-ttl h1 {
        font-size: 32px;
    }
}
@media screen and (max-width: 468px) {
    .mv-ttl h1 {
        font-size: 23px;
    }
}

/* topblock */
.topblock {
    padding: 0 0 85px;
}
.topblock-head {
    margin: 0 0 45px;
    padding: 0 0 20px;
    position: relative;
    text-align: center;
}
.topblock-head::after {
    background: #153963;
    content: "";
    display: block;
    height: 3px;
    margin: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100px;
}
.topblock-head h2 {
    color: #153963;
    font-size: 32px;
    font-weight: 700;
}
@media screen and (max-width: 968px) {
    .topblock {
        padding: 0 0 50px;
    }
    .topblock-head::after {
        width: 80px;
    }
    .topblock-head h2 {
        font-size: 28px;
    }
}
@media screen and (max-width: 768px) {
    .topblock {
        padding: 0 0 45px;
    }
    .topblock-head::after {
        width: 60px;
    }
    .topblock-head h2 {
        font-size: 26px;
    }
}
.topblock-text {
    font-size: 14px;
    font-weight: 300;
    margin: 0 0 35px;
}
.topblock-text.b {
    margin: 35px 0 0;
}
.topblock-text.b15 {
    margin: 15px 0 0;
}
@media screen and (max-width: 968px) {
    .topblock-text {
        margin: 0 0 25px;
    }
    .topblock-text.b {
        margin: 25px 0 0;
    }
}

/* flow */
.flow {
    background: var(--cr-male-bg);
    margin: 0 0 65px;
    padding: 85px 0;
}
.flow-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.flow-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #333;
    height: 100%;
    position: relative;
}
.flow-card:not(:last-child)::after {
    border-style: solid;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 18px solid #f50038;
    border-right: 0;
    content: "";
    display: block;
    height: 0;
    margin: auto;
    position: absolute;
    right: -16px;
    top: 0;
    bottom: 0;
    width: 0;
    z-index: 1;
}
.flow-card__step {
    background: #f1f1f1;
    border-radius: 10px 10px 0 0;
    padding: 8px 0;
    text-align: center;
}
.flow-card__step p {
    color: var(--cr-male);
    font-family: var(--ft-poppin);
    font-size: 16px;
    font-weight: 600;
}
.flow-card__step p span {
    color: var(--cr-male);
    font-family: var(--ft-poppin);
    font-size: 150%;
    font-weight: 600;
    margin-left: 2px;
}
.flow-card__image {
    line-height: 0;
    padding: 8px 0 0;
    text-align: center;
}
.flow-card__text {
    border-radius: 0 0 10px 10px;
    padding: 8px 12px;
}
.flow-card__ttl {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 8px;
    text-align: center;
}
.flow-card__txt {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5em;
}
@media screen and (max-width: 968px) {
    .flow {
        margin: 0 0 50px;
        padding: 50px 0;
    }
    .flow-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .flow-card:nth-child(3)::after {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .flow {
        margin: 0 0 45px;
        padding: 45px 0;
    }
    .flow-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .flow-card:nth-child(3)::after {
        display: block;
    }
    .flow-card:not(:last-child)::after {
        border-style: solid;
        border-right: 8px solid transparent;
        border-left: 8px solid transparent;
        border-top: 18px solid #f50038;
        top: inherit;
        right: 0;
        left: 0;
        bottom: -32px;
    }
}

/* ranking */
.ranking-tab__head {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    margin: 0 0 35px;
}
.ranking-tab__btn {
    background: #ccc;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    height: 50px;
    width: 200px;
}
.ranking-tab__btn.active {
    background: var(--cr-male);
    color: #fff;
}
.ranking-tab__panel {
    display: none;
}
.ranking-tab__panel.show {
    display: block;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .ranking-tab__head {
        gap: 5px;
        margin: 0 0 25px;
    }
    .ranking-tab__btn {
        font-size: 16px;
        width: 31%;
    }
}

/* category */
.category {
    background: var(--cr-male-bg);
    margin: 0 0 65px;
    padding: 85px 0;
}
.category-btns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.category-btn {
    height: 50px;
}
.category-btn a {
    background: #fff;
    border-radius: 10px;
    color: var(--cr-male);
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 2px 5px rgb(0 0 0 / 10%));
    font-size: 18px;
    font-weight: 700;
    height: 100%;
    text-align: center;
    width: 100%;
}
@media screen and (max-width: 968px) {
    .category {
        margin: 0 0 50px;
        padding: 50px 0;
    }
    .topblock-text {
        margin: 0 0 25px;
    }
    .category-btns {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .category {
        margin: 0 0 45px;
        padding: 45px 0;
    }
}

/* news */
.news-item {
    border-bottom: 1px dashed #ccc;
    padding: 15px 5px;
}
.news-item a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.news-item__date {
    font-family: var(--ft-poppin);
    font-size: 14px;
    font-weight: 400;
    margin-right: 15px;
    position: relative;
    top: 2px;
    width: 85px;
}
.news-item__ttl {
    font-size: 16px;
    width: calc(100% - 100px);
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .news-item__date {
        margin: 0 0 5px;
        top: 0;
        width: 100%;
    }
    .news-item__ttl {
        width: 100%;
    }
}

/* reason */
.reason-items {
    display: grid;
    gap: 35px;
}
.reason-item {
    background: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    filter: drop-shadow(0 2px 5px rgb(0 0 0 / 10%));
}
.reason-item:nth-child(even) {
    flex-direction: row-reverse;
}
.reason-item dt {
    padding: 10px;
    text-align: center;
    width: 250px;
}
.reason-item__image {
    line-height: 0;
    margin: 0 0 8px;
}
.reason-item dt p {
    font-size: 18px;
    font-weight: 700;
}
.reason-item dd {
    padding: 25px;
    width: calc(100% - 275px);
}
.reason-item dd p {
    font-size: 14px;
    line-height: 1.8em;
}
.reason-item dd p.t {
    margin-bottom: 15px;
}
.reason-item dd p.b {
    margin-top: 15px;
}
.reason-item dd ul {
    display: grid;
    gap: 10px;
}
.reason-item dd ul li p {
    font-size: 14px;
    font-weight: 400;
    padding-left: 20px;
}
.reason-item dd ul li span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    width: max-content;
}
.reason-item dd ul li span.maker {
    display: inline;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .reason-item dt {
        margin: 0 auto;
        padding: 0;
        width: 180px;
    }
    .reason-item dt p {
        font-size: 16px;
    }
    .reason-item dd {
        padding: 20px;
        width: 100%;
    }
}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}