.timeline-header {
    width: 100%;
    height: 200px;
    background-color: #b7c5ff;
    position: relative;
}

@media screen and (max-width: 768px) {
    .timeline-header {
        height: 80px;
    }
}

.timeline-header .page-title {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

.timeline-header .page-title h1 {
    color: #ffffff;
    font-size: 24px;
    text-shadow: 1px 1px 8px rgb(0, 0, 0, 0.3);
    text-align: center;
}

@media screen and (max-width: 768px) {
    .timeline-header .page-title h1 {
        font-size: 16px;
    }
}

.timeline-header .image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #ffffff;
    mix-blend-mode: multiply;
}

@media screen and (max-width: 768px) {
    .timeline-header .image {
        height: 80px;
    }
}

.timeline-header .image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center center;
    filter: blur(1px);
}

@media screen and (max-width: 768px) {
    .timeline-header .image img {
        width: 100%;
        height: 80px;
    }
}

.column2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1000px;
    margin: 0 auto;
    padding: 40px 0 100px;
}

@media screen and (max-width: 768px) {
    .column2 {
        flex-direction: column-reverse;
        padding: 20px 20px 60px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .column2 .area-article {
        width: 100%;
    }
}

.area-message {
    width: 655px;
    padding: 30px;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .area-message {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }
}

.article {
    position: relative;
    width: 655px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
    background-color: #ffffff;
    border-radius: 8px;
    color: #2e2e2e;
    box-sizing: border-box;
    box-shadow: 0 1px 10px 1px rgb(0 0 0 / 10%);
}

@media screen and (max-width: 768px) {
    .article {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }
}

.article .item .label {
    text-align: left;
}

.article .item .title h2 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .article .item .title h2 {
        font-size: 18px;
    }
}

.article .item .label-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 8px 0;
}

.article .item .date {
    font-size: 12px;
    margin: 4px 8px 4px 0;
}

.article .item .date .date-headline {
    font-weight: 500;
}

.article .item .limited span {
    padding: 2px 8px;
    border-radius: 4px;
    color: #ffffff;
    font-size: 12px;
    background-size: 10px 10px;
}

.article .item .new {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-width: 32px;
    border-style: solid;
    border-top-left-radius: 8px;
    border-color: #ff4671 transparent transparent #ff4671;
}

.article .item .new span {
    position: absolute;
    top: -18px;
    left: -28px;
    transform: rotate(-45deg);
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .article .item .new {
        border-width: 22px;
    }

    .article .item .new span {
        top: -14px;
        left: -20px;
        font-size: 10px;
    }
}

.article .item .text {
    margin: 30px 0;
    font-size: 14px;
}

.article .item .text pre {
    line-height: 1.5;
    word-break: break-all;
    word-wrap: break-word;
}

.article .item .text pre.list-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.article .item .video-label {
    margin: 10px 0;
}

.article .item .video-label span {
    padding: 0 0 1px 22px;
    border-bottom: 2px solid #5e6cef;
    color: #5e6cef;
    font-size: 14px;
    background: url(../../images/timeline/icon_movie.svg) no-repeat 2px center #ffffff;
    background-size: 16px 16px;
    font-weight: 700;
}

.area-profile-service {
    width: 310px;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .area-profile-service {
        width: 100%;
    }
}

.area-profile-service .seller-profile {
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: 0 1px 10px 1px rgb(0 0 0 / 10%);
}

@media screen and (max-width: 768px) {
    .area-profile-service .seller-profile {
        padding: 15px;
    }
}

.area-profile-service .profile-image {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

@media screen and (max-width: 768px) {
    .area-profile-service .profile-image {
        margin: 0;
        width: 56px;
        height: 56px;
    }
}

.area-profile-service .profile-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .area-profile-service .profile-image img {
        width: 56px;
        height: 56px;
    }
}

.area-profile-service .sns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0;
}

@media screen and (max-width: 768px) {
    .area-profile-service .sns {
        margin: 10px 0 0 0;
    }
}

.area-profile-service .sns .icon {
    margin: 0 5px;
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 768px) {
    .area-profile-service .sns .icon {
        margin: 0 8px 0 0;
    }
}

.area-profile-service .sns .twitter .active {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../../images/social/profile/twitter.svg);
    transition: 0.3s;
}

.area-profile-service .sns .twitter .inactive {
    display: block;
    width: 24px;
    height: 24px;
    cursor: default;
}

.area-profile-service .sns .facebook .active {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../../images/social/profile/facebook.svg);
    transition: 0.3s;
}

.area-profile-service .sns .facebook .inactive {
    display: block;
    width: 24px;
    height: 24px;
    cursor: default;
}

.area-profile-service .sns .instagram .active {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../../images/social/profile/instagram.svg);
    transition: 0.3s;
}

.area-profile-service .sns .instagram .inactive {
    display: block;
    width: 24px;
    height: 24px;
    cursor: default;
}

.area-profile-service .sns .icon a:hover .active {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .area-profile-service .seller-profile .section {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
}

.area-profile-service .seller-profile .title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .area-profile-service .seller-profile .title {
        text-align: left;
        font-size: 14px;
    }
}

.area-profile-service .seller-profile .title a {
    color: #2e2e2e;
}

.area-profile-service .seller-profile .title a:hover {
    color: #5e6cef;
}

@media screen and (max-width: 768px) {
    .area-profile-service .seller-profile .title a {
        text-decoration: underline;
    }
}

@media screen and (max-width: 768px) {
    .area-profile-service .seller-profile .profile-sp {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        margin-left: 10px;
    }
}

.area-profile-service .description {
    margin: 10px 0;
}

@media screen and (max-width: 768px) {
    .area-profile-service .description {
        display: none;
    }
}

.area-profile-service .description pre {
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .area-profile-service .link {
        display: none;
    }
}

.area-profile-service .link h3 {
    margin-top: 10px;
    font-size: 14px;
}

.area-profile-service .link i {
    color: #5f6def;
}

.area-profile-service .link .link-box {
    padding: 0 10px 0 0;
    font-size: 14px;
    word-break: break-all;
    line-height: 1.5;
}

.area-profile-service .link .link-box a {
    color: #2e2e2e;
    text-decoration: underline;
    transition: 0.3s;
}

.area-profile-service .link .link-box a:hover {
    color: #5f6def;
    text-decoration: none;
}

.area-profile-service .seller-service img {
    max-width: 100%;
    height: auto;
}

.area-profile-service .seller-profile .link-profile {
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    .area-profile-service .seller-profile .link-profile {
        display: none;
    }
}

.area-profile-service .seller-profile .link-profile a {
    width: 100%;
}

.area-profile-service .service-title {
    margin: 20px 0 10px 0;
}

.area-profile-service .service-title h3 {
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .area-profile-service .service-title h3 {
        font-size: 14px;
    }
}

.area-profile-service .seller-service {
    margin-bottom: 20px;
    box-shadow: 0 1px 10px 1px rgb(0 0 0 / 10%);
    border-radius: 8px;
}

.area-profile-service .seller-service .image {
    width: 310px;
    height: 233px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .area-profile-service .seller-service .image {
        width: auto;
        height: auto;
        overflow: hidden;
        position: relative;
        padding-top: 75%;
        border-radius: 4px 4px 0 0;
    }
}

@media screen and (max-width: 768px) {
    .area-profile-service .area-service {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .area-profile-service .seller-service {
        width: calc((100% - 16px) / 3);
        margin: 0;
    }
}

.area-profile-service .seller-service .image img {
    width: 310px;
    height: 233px;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .area-profile-service .seller-service .image img {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
}

.area-profile-service .seller-service a:hover .image img {
    transform: scale(1.1, 1.1);
    transition: 0.3s all;
    opacity: 0.8;
}

.area-profile-service .seller-service .title {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #2e2e2e;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .area-profile-service .seller-service .title {
        padding: 4px;
        max-height: 32px;
        font-size: 10px;
    }

    .area-profile-service .seller-service .title span {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}

.area-profile-service .seller-service .detail {
    padding: 0 20px 20px 20px;
    font-size: 12px;
    color: #5e6cef;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .area-profile-service .seller-service .detail {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4px;
        font-size:10px;
    }
}
