.hedge-area .icon {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
}

.hedge-area .icon.icon-triangle {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid #007f33;
  transform: rotate(90deg);
  margin-top: 9px;
  margin-right: 5px;
}
.hedge-area .icon.icon-speople,
.hedge-area .icon.icon-date,
.hedge-area .icon.icon-link,
.hedge-area .icon.icon-qualify,
.hedge-area .icon.icon-desc,
.hedge-area .icon.icon-stag,
.hedge-area .icon.icon-sphone {
    width: 13px;
    height: 13px;
}
.hedge-area .icon.icon-speople {
    background-image: url(../../wp-content/uploads/images/hedge/icon_people.svg);
}
.hedge-area .icon.icon-date {
    background-image: url(../../wp-content/uploads/images/hedge/icon_date.svg);
}
.hedge-area .icon.icon-link {
    background-image: url(../../wp-content/uploads/images/hedge/icon_link.svg);
}
.hedge-area .icon.icon-qualify {
    background-image: url(../../wp-content/uploads/images/hedge/icon_qualify.svg);
}
.hedge-area .icon.icon-desc {
    background-image: url(../../wp-content/uploads/images/hedge/icon_desc.svg);
}
.hedge-area .icon.icon-stag {
    background-image: url(../../wp-content/uploads/images/hedge/icon_tag.svg);
}
.hedge-area .icon.icon-sphone {
    background-image: url(../../wp-content/uploads/images/hedge/icon_phone.svg);
}

.hedge-area .sub-title-list-box {
    border-bottom: solid 1px #363636;
    padding: 15px 0 5px;
}
.hedge-area .sub-title-list-box .st-list,
.hedge-area .sub-title-list-box .st-list .st-item {
    display: flex;
}
.hedge-area .sub-title-list-box .st-list {
    flex-wrap: wrap;
    font-size: 17px;
    color: #007f33;
}

.hedge-area .sub-title-list-box .st-list .st-item {
    margin-bottom: 3px;
}
.hedge-box {
    margin-top: 20px;
}
.hedge-box .cont-list .cont-item .title {
    color: #4c4c4c;
    display: flex;
    align-items: center;
    padding-bottom: 6px;
}
.hedge-box .cont-list .cont-item .title .icon {
    margin-right: 10px;
    margin-top: -2px;
}
.hedge-box .cont-list .cont-item .desc {
    margin-left: 25px;
}
.hedge-box .cont-list .cont-item + .cont-item {
    margin-top: 25px;
}
.hedge-box .trust-list .trust-item {
    display: flex;  
    flex-wrap: wrap;  
}
.hedge-box .trust-list .trust-item + .trust-item {
    margin-top: 6px;
}
.hedge-box .trust-list .trust-item .tit {
    flex: 0 0 auto;
    position: relative;
    margin-bottom: 7px;
    font-size: 15px;
    font-weight: bold;
}
.hedge-box .trust-list .trust-item .tit::before {
    position: absolute;
    content: "";
    display: inline-block;
    background-color: #646464;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
}

.hedge-box .trust-list .trust-item .cdesc {
    flex: 0 0 auto;
    width: 100%;
}
.hedge-box .arrow-box {
    display: flex;
    align-items: center;
    margin-right: 5px;
    -webkit-animation-name: arrowAni;
    -webkit-animation-duration: 1.3s;
    -webkit-animation-iteration-count: infinite;
    animation-name: arrowAni;
    animation-duration: 1.3s;
    animation-iteration-count: infinite;
}
.hedge-box .arrow-box .arrow-t {
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 6px solid #1e73be;
    transform: rotate(90deg);
    transition: all .3s ease;
}
.hedge-box .arrow-box .arrow-r {
    display: inline-block;
    width: 6px;
    height: 2px;
    background-color: #1e73be;
    transition: all .3s ease;
}
.hedge-box .btn-link {
    display: flex;
    align-items: center;
}
.hedge-box .btn-link:hover .arrow-t {
    border-bottom: 6px solid #1ed3a5;
}
.hedge-box .btn-link:hover .arrow-r {
    background-color: #1ed3a5;
}

@-webkit-keyframes arrowAni {
    0%   {transform:translateX(0px);}
	50%  {transform:translateX(3px);}
	100% {transform:translateX(0px);}
}
@keyframes arrowAni {
    0%   {transform:translateX(0px);}
	50%  {transform:translateX(3px);}
	100% {transform:translateX(0px);}
}

@media(min-width: 767px) {
    .hedge-area .icon.icon-triangle {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 8px solid #007f33; 
        margin-top: 9px;
    }
    .hedge-area .sub-title-list-box .st-list {
        font-size: 18px;
    }
    .hedge-area .sub-title-list-box .st-list .st-item {
        margin-bottom: 10px;
        margin-right: 35px;
    }
    .hedge-box .trust-list .trust-item .tit {
        width: 97px;
        margin-bottom: 0;
        font-size: 16px;
        font-weight: normal;
    }
    .hedge-box .trust-list .trust-item .tit::before {
        width: 1px;
        height: 70%;
        right: 0;
        top: 15%;
        left: auto;
    }
    .hedge-box .trust-list .trust-item .cdesc {
        flex: 1 0 0;
        padding-left: 10px;
    }
}

