.sectionFlow{
    background-color: #777777;
    position: relative;
}

.sectionFlowFrame{
    background-color: #eeeeee;
    border-radius: 8rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.sectionFlowFrame.delighter {
    transition: all 0.25s linear;
    transform: translateX(-100%);
    opacity: 0;
}
.sectionFlowFrame.delighter.started {
    transform: none;
    opacity: 1;
}
.sectionFlowFrame.delighter.ended {
    transform: translateX(-100%);
    opacity: 0;
}

.flowGroup{
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flowItem{
    position: relative;
    width: 22%;
    height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2vh 1vw;
    background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);
    background-size: 800% 400%;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.flowItemNo{
    width: 7.0rem;
    height: 7.0rem;
    line-height: 7.0rem;
    text-align: center;
    margin: 0 auto;
    background-color: #eeeeee;
    border-radius: 50%;
    font-size: 2.0rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.flowItemTitle{
    font-size: 1.0rem;
    margin-top: 5vh;
    margin-bottom: 5vh;
    letter-spacing: 0.15rem;
    background-color: #2AA8DA;
    padding: 2vh 2.5%;
    width: 85%;
    text-align: center;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.flowItemBody{
    width: 90%;
    margin: 0 auto;
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
    line-height: 1.5rem;
}

.iconArrow{
    font-size: 1.5rem;
    margin: 1.5rem;
}

.daikei{
    position: absolute;
    width: 10vh;
    border-top: solid 20px #2AA8DA;
    border-left:solid 20px transparent;
    border-right:solid 20px transparent;
    transform: translate(0,-50%);
    top: 50%;
    animation: flash 3s linear infinite;
    border-radius: 5px;
}

.daikeiLeft{
    transform: rotate(270deg);
    left: -1vw;
}

.daikeiRight{
    transform: rotate(90deg);
    right: -1vw;
}

@keyframes flash {
	0%,
	100% {
		opacity: 1;
	}

	25% {
		opacity: 0;
	}
}


/* ============================================================

    SP対応

============================================================ */
/* @media screen and (max-width: 768px){ */
@media screen and (max-width: 1279px){
    .sectionFlow{
        height: fit-content;
        padding-top: 1vh;
        padding-bottom: 1vh;
    }

    .sectionFlowFrame{
        border-radius: 4rem;
    }

    .flowGroup{
        margin-top: 5vh;
        margin-bottom: 10vh;
        flex-direction: column;
    }

    .flowItem{
        width: 70%;
        height: 35rem;
    }

    .iconArrow{
        transform: rotate(90deg);
    }

    .daikei{
        top: 25vh;
    }

    .daikeiLeft{
        left: -7vw;
    }
    
    .daikeiRight{
        right: -7vw;
    }
}