@charset "utf-8";

/* about */
.flex-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    column-gap: 40px;
    margin-top: 40px;
}

.flex-box {
    width: 45%;
}

/* 概要 */
.overview06-top {
    width: 100%;
    margin-inline: auto;
    text-align: center;
}

.overview06-top .s-bnr {
    width: 45%;
}

.arrow-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-box.sp {
    display: none;
}

.overview-arrow {
    position: relative;
    display: inline-block;
    width: 4px;
    height: 60px;
    margin: 0 24.1px;
    border-radius: 9999px;
    background-color: #83ABDB;

}

.overview-arrow::before,
.overview-arrow::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 2px);
    width: 4px;
    height: 38px;
    border-radius: 9999px;
    background-color: #83ABDB;
    transform-origin: 50% 2px;
}

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

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

/* ご相談内容 */
.check-title {
    font-size: 120%;
    text-decoration: underline;
}

/* フェーズ */
.phase-title__first {
    color: #fff;
    line-height: 150%;
    font-size: 100%;
    -webkit-clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
    background-color: #0350a3;
    position: relative;

    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phase-title {
    color: #fff;
    line-height: 150%;
    font-size: 100%;
    -webkit-clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%, 3% 50%);
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%, 3% 50%);
    background-color: #0350a3;
    position: relative;

    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phase-section {
    display: flex;
    flex-direction: column;
}

.phase-section dd {
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 769px) {

    /* about */
    .flex-wrap {
        flex-direction: column;
        row-gap: 40px;
    }

    .flex-box {
        width: 100%;
    }

    /* 概要 */
    .overview06-top .s-bnr {
        width: 100%;
    }

    .overview06-plus {
        display: inline-block;
        vertical-align: middle;
        color: #333;
        line-height: 1;
        width: 40px;
        height: 4px;
        background: currentColor;
        border-radius: 0.1em;
        position: relative;
        margin-block: 10px;
    }

    .overview06-plus::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: inherit;
        border-radius: inherit;
        transform: rotate(90deg);
    }

    .arrow-box.sp {
        display: flex;
    }

    /* フェーズ */
    .phase-section {
        width: 100%;
    }

    .phase-title__first {
        font-size: 100%;
        height: auto;
    }

    .phase-title {
        font-size: 100%;
        height: auto;
    }

}