.senior_flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 60px;

}

@media screen and (max-width: 767px) {
    .senior_flow {
        margin-top: 45px;
    }
}

.senior_flow_num {
    font-size: 28px;
    line-height: calc(41/28);
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #BEB193;
    font-family: "Oswald", 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "YuGothM", 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
}

@media screen and (max-width: 767px) {
    .senior_flow_num {
        font-size: 20px;
    }
}

.senior_flow_item_body {
    border: #37383C solid 3px;
    background-color: #fff;
    padding: 45px 35px;
    min-height: 220px;
    position: relative;
}

@media screen and (max-width: 767px) {
.senior_flow_item_body {
    padding: 30px 15px;
    min-height: 220px;

}

}

.senior_flow_item_body::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-top: 17px solid #37383c;
    border-bottom: 0;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
}

.senior_flow_item_body h3 {
    padding: 5px 0;
    padding-left: 23px;
    border-left: 7px solid #BEB193;
    font-size: 33px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .senior_flow_item_body h3 {
        font-size: 27px;
        padding-left: 20px;
        border-left: 5px solid #BEB193;

    }
}

.senior_flow_item_body p {
    margin-top: 20px;

}

.sceen__tittle {
    color: #D2C9B4;
    margin-top: 15px;
    font-weight: 500;
    font-size: 20px;
}



.sceen__arrow2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 12px;
    width: calc(100% - (100vw - 100%) / 2);
}

.sceen-arrow {
    width: 125px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    height: 1px;
    margin: 8.5px 0;
    border-radius: 9999px;
    background-color: #beb193;
}

@media screen and (max-width: 767px) {
    .sceen-arrow {
        width: 50px;
    }
}


.sceen-arrow.prev::before,
.sceen-arrow.prev::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    left: 0;
    width: 13px;
    height: 1px;
    border-radius: 9999px;
    background-color: #beb193;
    transform-origin: 0.5px 50%;
}

.sceen-arrow.prev::before {
    transform: rotate(45deg);
}

.sceen-arrow.prev::after {
    transform: rotate(-45deg);
}


.sceen-arrow.next::before,
.sceen-arrow.next::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 0;
    width: 13px;
    height: 1px;
    border-radius: 9999px;
    background-color: #beb193;
    transform-origin: calc(100% - 0.5px) 50%;
}

.sceen-arrow.next::before {
    transform: rotate(45deg);
}

.sceen-arrow.next::after {
    transform: rotate(-45deg);
}
