@charset "utf-8";
/* CSS Document */

/* 注文のながれ --------------------------------------------- */
#main .flow_list {
	margin: 0 30px;
}

#main .flow_list li {
    box-sizing: border-box;
	float: left;
	margin-right: 50px;
    position: relative;
    width: 240px;
}

#main .flow_list li::after {
	content: "";
    width: 16px;
    height: 24px;
    background-color:var(--color-sub-base);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: absolute;
    top: 92px;
    right: -33px;
    z-index: 4;
}

#main .flow_list li:last-child {
	margin-right: 0;
}

#main .flow_list li:last-child::after {
	content: none;
}

#main .flow_list li dl dt {
	text-align: center;
}
#main .flow_list li dl .title {
	font-size: 20px;
	font-weight: bold;
    line-height:1em;
	letter-spacing: .12rem;
	margin: 25px 0 30px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

#main .flow_list li dl dd {
	font-size: 14px;
	line-height: 1.6;
}
#main .flow_list li dl dd .arrow_gr_b {
	margin-top: 10px;
}

.flow_list .step_num {
    display: inline-block;
    height: auto;
    line-height: 1;
    font-family: korolev,sans-serif;
	position: relative;
	color: #fff;
	position: relative;
	margin-right: 20px;
	letter-spacing: normal;
}
.flow_list .step_num::before{
    content: "STEP";
    display: block;
    font-size: 14px;
}
.flow_list .step_num::after {
    content: "";
    display: block;
    background: var(--color-main);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
}
/* /注文のながれ --------------------------------------------- */
