@charset "utf-8";


/* イベント例のテーブル */
.about-table {
    width: 95%;
    margin-left: auto;
}

.about-table thead th {
    background-color: transparent;
    border: none;
    padding: 10px;
    color: #000;
}

.about-table tbody th,
.about-table tbody td {
    padding: 10px;
    border: solid 1px #656565;
}

.about-table tbody th {
    width: 20%;
    background-color: #3573b5;
    color: #fff;
    position: relative;
    padding-left: 25px;
}

.about-table__img {
    position: absolute;
    top: 50%;
    left: -20px;
    translate: 0 -50%;
    width: 40px;
    height: 40px;
    border-radius: 100vmax;
    border: 1px solid #5d5d5d;

}

.about-table__img img {
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 100vmax;

}

.about-table tbody tr td:nth-of-type(1) {
    width: 40%;
}

.about-table tbody tr td:nth-of-type(2) {
    width: 20%;
}

/* テーブル下の画像 */
.about-img__wrap {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    width: 98%;
    height: 100px;
    margin-left: auto;
}

.about-img {
    width: 25%;
}

.about-img img {
    max-width: 100%;
    height: auto;
    aspect-ratio: 190/120;
}



/* よくあるご相談内容 */
.soudan-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.soudan-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 18%;
}

/* 丸いタイトル */
.soudan-flex__title {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100vmax;
    background-color: #3573b5;
    width: 100%;
    height: auto;
    aspect-ratio: 1;

}

/* 三角形 */
.soudan-triangle__wrap {
    display: block;
    width: 2.5%;
    margin-left: 0.5%;
    position: relative;
    top: 5vw;
}

.soudan-triangle {
    display: inline-block;
    width: 90%;
    height: 45px;
    background: #656565;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

/* 吹き出し部分-２段目 */

.soudan-bubble {
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    background: #ccc;
    border-radius: 6px;
    position: relative;
}

.soudan-bubble::before {
    content: "";
    position: absolute;
    top: -1.2vw;
    left: 50%;
    translate: -50% 0;
    width: 25%;
    height: auto;
    aspect-ratio: 45/20;
    background: #ccc;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
}


/* 業務内容と船井総研の特長 */
.point-flex {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}

.point-arrow {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    width: 60px;
    position: relative;
}

.arrow {
    display: inline-block;
    width: 25px;
    height: 100%;
    background: linear-gradient(180deg, #F5F8FC 0%, #C3D9ED 100%);
    ;
    clip-path: polygon(0 92.9%, 37.8% 92.9%, 37.8% 0, 62.2% 0, 62.2% 92.9%, 100% 92.9%, 50% 100%);
}

/* 業務内容-テーブル */
.point-table {
    border-collapse: collapse;
    width: calc(100% - 60px);
}

.point-table thead th {
    background-color: #3573b5;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px;
}

.point-table tbody th,
.point-table tbody td {
    padding: 10px;
    border: solid 1px #656565;
    background-color: #fff;

}

.point-table .tbody-th {
    width: 24%;
    background: #fff;
    position: relative;
    padding-left: 45px;
}

.tbody-img {
    position: absolute;
    left: 5px;
    top: 50%;
    translate: 0 -50%;
    width: 45px;
    height: 45px;
}

.tbody-img img {
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
}

.point-table tbody tr td {
    width: 38%;
}

.point-table tbody tr td:nth-of-type(2) {
    text-align: center;
}


@media screen and (max-width: 769px) {

    /* イベント例のテーブル */
    .about-table {
        width: 100%;
        font-size: 90%;
    }

    .about-table tbody th {
        padding-left: 10px;
    }

    .about-table__img {
        position: relative;
        top: unset;
        left: 50%;
        translate: -50% 0;
        width: 35px;
        height: 35px;
    }

    .about-table__img img {
        max-width: 100%;
        height: auto;
        aspect-ratio: 1;
        border-radius: 100vmax;

    }

    .about-table tbody tr td:nth-of-type(1) {
        width: 35%;
    }

    .about-table tbody tr td:nth-of-type(2) {
        width: 25%;
    }

    /* テーブル下の画像 */
    .about-img__wrap {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
        margin-left: auto;
    }

    .about-img {
        width: 33%;
    }

    /* よくあるご相談内容 */
    .soudan-wrap {
        align-items: center;
        flex-direction: column;
        row-gap: 10px;
    }

    .soudan-flex {
        flex-direction: row;
        column-gap: 5%;
        width: 100%;
    }

    /* 丸いタイトル */
    .soudan-flex__title {
        width: 35%;
        max-width: 150px;
    }

    /* 三角形 */
    .soudan-triangle__wrap {
        display: block;
        width: 100%;
        margin-left: 0.5%;
        top: unset;
        text-align: center;
    }

    .soudan-triangle {
        display: inline-block;
        width: 63px;
        height: 15px;
        background: #656565;
        clip-path: polygon(0 0, 100% 0%, 50% 100%);
    }

    /* 吹き出し部分 */
    .soudan-bubble {
        width: 60%;
        margin-top: 0;
    }

    .soudan-bubble::before {
        width: 25px;
        height: auto;
        top: 50%;
        left: -18px;
        translate: 0 -50%;
        rotate: -90deg;
    }

    /* 業務内容と船井総研の特長 */
    .point-arrow {
        width: 40px;
    }

    .arrow {
        display: inline-block;
        width: 20px;
        height: 100%;
        right: 5px;
        clip-path: polygon(0 98.8%, 32.3% 98.8%, 32.3% 0, 67.7% 0, 67.7% 98.8%, 100% 98.8%, 50% 100%);
        position: relative;
    }

    /* テーブル */
    .point-table {
        width: calc(100% - 40px);
        font-size: 85%;
    }

    .point-table tbody th,
    .point-table tbody td {
        padding: 5px;
    }

    .point-table .tbody-th {
        width: 30%;
        padding-left: 5px;
        text-align: center;
        font-size: 90%;
    }

    .tbody-img {
        position: relative;
        left: 50%;
        top: unset;
        translate: -50% 0;
        width: 35px;
        height: 35px;
        text-align: center;
    }

    .point-table tbody tr td {
        width: 35%;
    }
    .point-table tbody tr td:nth-of-type(2) {
    text-align: left;
}

}