.flow-section {
    margin-bottom: 0;
    padding: 40px 0;
    position: relative;
}

.flow-section:nth-child(odd) {
    background-color: #fff;
}

.flow-section:nth-child(even) {
    background-color: #FBFDEB;
}

/* 三角形の装飾 */
.flow-section:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 30px 0 30px;
    z-index: 1;
}

.flow-section:nth-child(odd):not(:last-child)::after {
    border-color: #fff transparent transparent transparent;
}

.flow-section:nth-child(even):not(:last-child)::after {
    border-color: #FBFDEB transparent transparent transparent;
}

.flow-section__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.flow-section__title-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.flow-section__title-icon img {
    width: 40px;
    height: 40px;
}

.flow-section__content {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.flow-section__text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.flow-section__note {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.flow-section__link {
    display: inline-block;
    color: #008000;
    text-decoration: none;
    position: relative;
    padding-right: 20px;
}

.flow-section__link::after {
    content: "→";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.flow-section__link:hover {
    text-decoration: underline;
}

.p-valueSection {
    padding: 40px 0;
    background-color: #fff;
}

.p-valueSection_inner {
    padding: 40px 0;
} 