/**
* 使用クラス一覧
**/

/*--------------------------------------
/*
 * ・ekomon
 *
 *---------------------------------------/
/*******
 * PC
 *******/
.ekomon__problems {
    background-color: var(--second-very-light-color);
    padding: 3rem 3rem 2rem;
    margin-bottom: 6rem;
    position: relative;
}
.ekomon__problems:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: -6rem;
    left: 0;
    right: 0;
    border-style: solid;
    border-color: var(--second-very-light-color) transparent transparent transparent;
    border-width: 6rem 29rem 0 29rem;
    z-index: 1;
}
.ekomon__problems_title {
    margin-bottom: 1rem;
    text-align: center;
}
.ekomon__problems_title_main {
    display: inline-block;
    font-size: var(--font-16);
    color: #222;
    line-height: 1.3;
    margin-bottom: .5rem;
}
.ekomon__problems_box {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}
.ekomon__problems_image_wrap {
    width: 30%;
    position: relative;
}
.ekomon__problems_image {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 107%;
    border-radius: 5px;
}
.ekomon__problems_image img {
    box-shadow: 0 2px 3px 1px rgb(0 0 0 / 30%);
    border-radius: 5px;
}
.ekomon__problems_list {
    background-color: #fff;
    font-size: var(--font-09);
    padding: 3rem 2% 3rem 5%;
    line-height: 1.5;
    width: 70%;
}
.ekomon__problems_list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    text-indent: -1.5rem;
}
.ekomon__problems_list li:before {
    content: "\f058";
    font-family: 'Font Awesome 5 Pro';
    color: var(--main-color);
    padding-right: 0.5rem;
    font-size: var(--font-14);
    font-weight: 900;
}
.ekomon__problems_list li span {
    color: var(--main-color);
    font-size: var(--font-14);
    font-family: 'Jun 501', sans-serif;
    background: linear-gradient(transparent 50%, var(--second-very-light-color) 0%);
    padding: 0 .2rem;
    margin: 0 .2rem;
}
.ekomon__salespoint {
    padding: 3rem 0 5rem;
    line-height: 1.25;
    /* margin-bottom: 5rem; */
}
.ekomon__salespoint_title {
    margin-bottom: 1rem;
    text-align: center;
}
.ekomon__salespoint_title_main {
    display: inline-block;
    font-size: var(--font-16);
    color: #222;
    line-height: 1.3;
    margin-bottom: .5rem;
}
.ekomon__salespoint_list {
    display: flex;
    justify-content: space-between;
}
.ekomon__salespoint_list li {
    width: 32%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 3px 1px rgb(0 0 0 / 30%);
}
.ekomon__salespoint_list li div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 1rem 0.5rem 1rem 0.3rem;
}
.ekomon__salespoint_list li div i {
    padding: 0 .8rem 0 .5rem;
    font-size: var(--font-18);
}
.ekomon__salespoint_list li div p span {
    font-family: 'Jun 501', sans-serif;
    color: var(--main-color);
    font-size: var(--font-14);
}

/*******
 * Tablet
 *******/
@media screen and (min-width: 640px) and (max-width: 1079px) {
}

/*******
 * SP
 *******/
@media (max-width: 639px) {
    .ekomon__problems {
        padding: 2rem 3%;
    }
    .ekomon__problems_box {
        flex-direction: column;
    }
    .ekomon__problems_list {
        width: 100%;
        padding: 1rem;
    }
    .ekomon__salespoint_list {
        flex-direction: column;
        row-gap: 1rem;
    }
    .ekomon__salespoint_list li {
        width: 100%;
    }
    .ekomon__problems:after {
        border-width: 6rem 11.9rem 0 11.9rem;
    }
    .ekomon__salespoint_list li div i {
        font-size: var(--font-30);
    }
}