@charset "UTF-8";

.info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 24px;
    margin-top: 56px;
}

.info_post {
}

.info_post_link {
    display: block;
}

.info_post_img {
    overflow: hidden;
}

.info_post_img > img {
    display: block;
    width: 100%;
    transition: transform 0.6s;
    object-fit: cover;
    aspect-ratio: 388 / 265;
}

.info_post_link:hover .info_post_img > img {
    transform: scale(1.1);
    transition: transform 0.2s;
}

.info_post_cnt {
    margin-top: 12px;
}

.info_post_meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info_post_cat {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
    background: var(--c-blue-light);
    color: var(--c-white);
    font-weight: 500;
    font-size: 13px;
}

.info_post_cat.-works {
    background: var(--c-orange);
}

.info_post_date {
    font-size: 16px;
}

.info_post_ttl {
    margin-top: 8px;
    font-weight: 550;
    font-size: 20px;
    line-height: 1.4;
}

.info_post_ttl > span {
    background: linear-gradient(#333333, #333333) 0 100% / 0 1px no-repeat;
    transition: background 0.3s;
}

.info_post_link:hover .info_post_ttl > span {
    background-size: 100% 1px;
}

.post {
    max-width: var(--inner-small-width);
    margin-inline: auto;
    padding-bottom: 80px;
}

.post_hd {
    padding-bottom: 12px;
    border-bottom: 2px solid var(--c-border);
}

.post_meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post_cat {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
    background: var(--c-blue-light);
    color: var(--c-white);
    font-weight: 500;
    font-size: 13px;
}

.post_cat.-works {
    background: var(--c-orange);
}

.post_date {
    font-size: 16px;
}

.post_ttl {
    margin-top: 8px;
    font-weight: 550;
    font-size: 32px;
    line-height: 1.4;
}

.post_body {
}

.post_body p {
    margin: 2em 0;
}

.post_ft {
    position: relative;
    /* display: flex; */
    /* justify-content: space-between; */
    /* gap: 48px; */
    margin-top: 56px;
    text-align: center;
}

.post_ft_arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    transition: transform 0.3s var(--ease);
}

.post_ft_arrow.-prev {
    left: 0;
}

.post_ft_arrow.-next {
    right: 0;
}

.post_ft_arrow.-prev:hover {
    transform: translateX(-4px);
}

.post_ft_arrow.-next:hover {
    transform: translateX(4px);
}

.post_ft_arrow.-prev::before {
    content: "";
    display: inline-block;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    width: 5px;
    height: 7px;
    background: var(--c-base);
}

.post_ft_arrow.-next::after {
    content: "";
    display: inline-block;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    width: 5px;
    height: 7px;
    background: var(--c-base);
}

.post_ft_list {
    display: inline-block;
    position: relative;
}

.post_ft_list::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--c-base);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s var(--ease);
}

.post_ft_list:hover::before {
    transform: scaleX(1);
}

@media screen and (max-width: 1251.98px) {
    .info {
    }

    .info_post {
    }

    .info_post_link {
    }

    .info_post_img {
    }

    .info_post_img > img {
    }

    .info_post_link:hover .info_post_img > img {
    }

    .info_post_cnt {
    }

    .info_post_meta {
    }

    .info_post_cat {
        font-size: 12px;
    }

    .info_post_cat.-works {
    }

    .info_post_date {
        font-size: 14px;
    }

    .info_post_ttl {
        font-size: 17px;
    }

    .info_post_ttl > span {
    }

    .info_post_link:hover .info_post_ttl > span {
    }

    .post {
        padding-bottom: 60px;
    }

    .post_hd {
    }

    .post_meta {
    }

    .post_cat {
        font-size: 12px;
    }

    .post_cat.-works {
    }

    .post_date {
        font-size: 15px;
    }

    .post_ttl {
        font-size: 24px;
    }

    .post_body {
    }

    .post_body p {
    }

    .post_ft {
    }

    .post_ft_arrow {
    }

    .post_ft_arrow.-prev:hover {
    }

    .post_ft_arrow.-next:hover {
    }

    .post_ft_arrow.-prev::before {
    }

    .post_ft_arrow.-next::after {
    }

    .post_ft_list {
    }

    .post_ft_list::before {
    }

    .post_ft_list:hover::before {
    }
}

@media screen and (max-width: 767.98px) {
    .info {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
        margin-top: -10px;
    }

    .info_post {
    }

    .info_post_link {
    }

    .info_post_img {
    }

    .info_post_img > img {
    }

    .info_post_link:hover .info_post_img > img {
    }

    .info_post_cnt {
    }

    .info_post_meta {
        gap: 8px;
    }

    .info_post_cat {
    }

    .info_post_cat.-works {
    }

    .info_post_date {
        font-size: 13px;
    }

    .info_post_ttl {
        font-size: 15px;
    }

    .info_post_ttl > span {
    }

    .info_post_link:hover .info_post_ttl > span {
    }

    .post {
    }

    .post_hd {
    }

    .post_meta {
    }

    .post_cat {
    }

    .post_cat.-works {
    }

    .post_date {
    }

    .post_ttl {
        font-size: 20px;
    }

    .post_body {
    }

    .post_body p {
    }

    .post_ft {
        margin-top: 40px;
    }

    .post_ft_arrow {
    }

    .post_ft_arrow.-prev:hover {
    }

    .post_ft_arrow.-next:hover {
    }

    .post_ft_arrow.-prev::before {
    }

    .post_ft_arrow.-next::after {
    }

    .post_ft_list {
    }

    .post_ft_list::before {
    }

    .post_ft_list:hover::before {
    }
}
