@charset "UTF-8";
/* media query : mobile */
@media screen and (max-width:768px) {
}
/* media query : desktop */
@media screen and (min-width:769px) {
}
/* media query : tablet */
@media screen and (min-width:769px) and (max-width:1024px){
}
/* 3.4.9 Postsnippets
--------------------------------------------------------------*/
/* postsnippets-advisor */
.postsnippet-advisor {
    background: #f6f6f6;
    border-radius: 1.25rem;
    margin-bottom: 2rem;
}
.postsnippet-advisor__img {
    display: block;
    position: relative;
    border-radius: 1.23rem;
    overflow: hidden;
    margin-bottom: 0;
}
.postsnippet-advisor__img:before {
    display: block;
    content: "";
    padding-top: 100%;
}
.postsnippet-advisor__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.postsnippet-advisor__title {
    line-height: 2;
}
.postsnippet-advisor__title:after {
    content: "";
    display: block;
    width: 2.6rem;
    height: 0.15rem;
    border-radius: 0.15rem;
    background: linear-gradient(90deg,#7f3bff 0,#3573ff 100%);
    background: -webkit-linear-gradient(0deg, #7f3bff 0,#3573ff 100%);
    margin-top: 0.5rem;
}
.postsnippet-advisor__name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    line-height: 2;
}
.postsnippet-advisor__desc {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 2;
}
/* media query : mobile */
@media screen and (max-width:768px) {
    .postsnippet-advisor {
        padding: 1.2rem 1.5rem;
    }
    .postsnippet-advisor__img {
        width: 70%;
        margin: 0 auto;
    }
    .postsnippet-advisor__title {
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
}
/* media query : desktop */
@media screen and (min-width:769px) {
    .postsnippet-advisor {
        display: flex;
        justify-content: space-between;
        padding: 1.6rem 2rem;
    }
    .postsnippet-advisor__img {
        width: 30%;
    }
    .postsnippet-advisor__text {
        width: 67%;
    }
    .postsnippet-advisor__title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}
/* postsnippet-documents */
.postsnippet-documents {
    border: 2px solid #7f3bff;
    padding: 1.6rem 2rem;
    border-radius: 1.25rem;
    margin-bottom: 4rem;
}
.postsnippet-documents__title {
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 1rem;
}
.postsnippet-documents__title:after {
    content: "";
    display: block;
    width: 2.6rem;
    height: 0.15rem;
    border-radius: 0.15rem;
    background: linear-gradient(90deg,#7f3bff 0,#3573ff 100%);
    background: -webkit-linear-gradient(0deg, #7f3bff 0,#3573ff 100%);
    margin: 0.5rem auto 1rem;
}
.postsnippet-documents__img {
    line-height: 0;
    margin-bottom: 1rem;
}
.postsnippet-documents__desc strong {
    color:#3573ff;
    font-weight: 400;
}
.postsnippet-documents__attetion {
    margin-top: 2rem;
    text-align: center;
    margin-bottom: -2rem;
}
.postsnippet-documents__attetion:before,
.postsnippet-documents__attetion:after {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: #3573ff;
}
.postsnippet-documents__attetion:before {
    transform: rotate(45deg);
}
.postsnippet-documents__attetion:after {
    transform: rotate(-45deg);
}
.postsnippet-documents__link a {
    color: #000;
    text-decoration: none;
}
.postsnippet-documents__link a:hover {
    color: #fff;
}
