.article_sec01 .description {
    margin-top: 20px;
}
.category_list_block {
    width: 1000px;
    margin: 40px auto 0;
    background-color: #e9e9e9;
    padding: 40px;
}
.category_list_block .category_list_title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.category_list_block .category_list {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.category_list_block .category_list li a {
    color: #333;
}
.category_list_block .category_list li.active a {
    background-color: #333;
    color: #fff;
    padding: 0 10px;
}

@media screen and (max-width:640px) {
    .category_list_block {
        width: 100%;
        padding: 20px;
    }
    .category_list_block .category_list {
        flex-wrap: wrap;
        gap: 5px 20px;
    }
}

.article_list {
    padding: 40px 0 180px;
}
.article_list_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    max-width: 1360px;
    margin: 0 auto;
}
.article_item {
    width: calc( (100% - 90px) / 3);
}
.article_item .article_item_link {
    display: block;
    width: 100%;
    color: #1b2126;
}
.article_item .article_item_link .article_thumbnail {
    width: 100%;
    height: auto;
    aspect-ratio: 7 / 4;
    overflow: hidden;
}
.article_item .article_item_link .article_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s;
}
.article_item .article_item_link:hover .article_thumbnail img {
    transform: scale(1.04);
}
.article_item .article_item_link .article_text {
    margin-top: 20px;
}
.article_item .article_item_link .article_text .article_title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 10px;
}
.article_item .article_item_link .article_text .article_meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}
.article_item .article_item_link .article_text .article_meta .customer_name {
    width: max-content;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    background-color: #1b2126;
    padding: 0 10px;
}
.article_item .article_item_link .article_text .article_meta .category_list {
    display: flex;
    gap: 5px;
}
.article_item .article_item_link .article_text .article_meta .category_list .category_item {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    background-color: #1b2126;
    padding: 0 7px;
}
.article_item .article_item_link .article_text .article_meta .v_category_list {
    display: flex;
    gap: 5px;
}
.article_item .article_item_link .article_text .article_meta .v_category_list .v_category_item {
    font-size: 1.1rem;
    font-weight: 500;
    color: #6d6d6d;
}
.article_item .article_item_link .article_text .article_meta .date {
    font-size: 1.2rem;
    color: #6d6d6d;
    font-style: normal;
    font-weight: 500;
}

@media screen and (max-width:640px) {
    .article_list {
        padding: 40px 5% 80px;
    }
    .article_list_inner {
        flex-wrap: wrap;
    }
    .article_item {
        width: 100%;
    }
}


.modal{
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}
.modal.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.modal__bg{
    background: rgba(55,81,90,0.5);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    inset: 0;
    transform: translateZ(0);
    will-change: backdrop-filter;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all .2s;
}
.modal__content{
    background: #fff;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 1000px;
    min-height: 500px;
}
.modal__content a.js-modal-close {
    font-size: 1.8rem;
    font-weight: 300;
    display: flex;
    gap: 5px;
    align-items: center;
    color: #fff;
    position: absolute;
    top: -30px;
    right: 0;
}

.member_modal_inner {
    position: relative;
    display: flex;
}
.member_square {
    width: 500px;
    height: 500px;
    overflow: hidden;
    position: relative;
}
.work_square {
    width: 500px;
    height: 500px;
    overflow: hidden;
    position: relative;
    background-color: #adcee3;
    display: flex;
    align-items: center;
}
.member_detail_box {
    width: 500px;
    padding: 35px;
}
.member_detail_box .position {
    font-size: 1.4rem;
}
.member_detail_box .name_wrap {
    line-height: 1;
}
.member_detail_box .name {
    font-size: 2.4rem;
    font-weight: 500;
}
.member_detail_box .name_en {
    font-size: 1.4rem;
    font-weight: 300;
    margin-top: 15px;
}
.member_detail_box .snslink {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}
.member_detail_box .snslink .tk {
    width: 18px;
}
.member_detail_box .snslink .yt {
    width: 28px;
}
.member_detail_box .snslink .ig {
    width: 19px;
}
.member_detail_box .phrase {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 20px 0;
	line-height: 1.5;
}
.member_detail_box .profile_text {
    font-size: 1.3rem;
    line-height: 1.7;
    text-align: justify;
    letter-spacing: 0;
}

@media screen and (max-width:640px) {
    .modal__content {
        width: 90vw;
        min-height: unset;
    }
    .member_modal_inner {
        flex-direction: column;
    }
    .member_square {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }
    .member_square img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 0 -20px;
    }
    .work_square {
        width: 100%;
        height: auto;
        overflow: hidden;
    }
    .work_square img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .member_detail_box {
        width: 100%;
        padding: 20px 5%;
    }
    .member_detail_box .name {
        font-size: 2rem;
        font-weight: 700;
    }
    .member_detail_box .name_en {
        font-size: 1.4rem;
        letter-spacing: .1em;
        margin-top: 10px;
    }
    .member_detail_box .phrase {
        font-size: 1.6rem;
        margin: 15px 0 10px;
        line-height: 1.5;
    }
    .member_detail_box .snslink {
        margin: 10px 0 15px;
    }
    .member_detail_box .profile_text {
        font-size: 1.3rem;
    }
}

.archive_creator {
    padding: 60px 0;
}
.creator_artiles {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px auto 0;
}
.member_btn {
    display: block;
    width: calc(25% - 23px);
    position: relative;
}
.member_btn .name {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    color: #0d272f;
}
.work_artiles {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px auto 0;
}
.work_btn {
    display: block;
    width: calc(33% - 20px);
    position: relative;
}
.work_btn .name {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    color: #0d272f;
}
.blur_bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px);
}

@media screen and (max-width:640px) {
    .member_list {
        padding-bottom: 80px;
    }
    .creator_artiles {
        gap: 20px 10px;
    }
    .member_btn {
        display: block;
        width: calc(50% - 5px);
        position: relative;
    }
    .member_btn .textarea {
        padding: 15px 10px;
    }
    .member_btn .name {
        font-size: 1.4rem;
    }
    .work_artiles {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 10px;
        margin: 30px auto 0;
    }
    .work_btn {
        display: block;
        width: 100%;
        position: relative;
    }
    .work_btn .name {
        text-align: center;
        font-size: 1.6rem;
        font-weight: 500;
        color: #0d272f;
    }
}

.category-list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.category-list li a {
    display: block;
    background-color: #f6f9fa;
    min-width: 140px;
    padding: 8px 0;
    line-height: 1;
    font-size: 1.4rem;
    letter-spacing: 0;
    font-weight: 500;
    color: #37515a;
    text-align: center;
    border: solid 1px #aecad3;
    transition: all .2s;
}
.category-list li a:hover,
.category-list li.active a {
    background-color: #37515a;
    border: solid 1px #37515a;
    color: #fff;
}

.contact_btn {
    font-size: 1.5rem;
    font-weight: 500;
    color: #0d272f;
    margin-top: 10px;
    display: block;
    width: fit-content;
    margin-left: auto;
    position: relative;
}
.contact_btn::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -16px;
    transform: translateY(-50%);
    background-color: #dcf2ff;
}
.contact_btn::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -13px;
    transform: translateY(-50%);
    background-color: #5cc0ff;
}
.creator_type {
    position: absolute;
    bottom: 20px;
    left: calc(50% - 20px);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: right;
    border: solid 1px #37515a;
    width: fit-content;
    padding: 3px 10px;
    line-height: 1;
    margin-left: auto;
    background-color: #fff;
    transform: translateX(-100%);
}

@media screen and (max-width:640px) {
    .category-list li {
        width: calc(50% - 5px);
    }
    .category-list li a {
        width: 100%;
    }
    .creator_type {
        position: absolute;
        bottom: unset;
        top: 220px;
        left: unset;
        right: 10px;
        transform: unset;
    }
    .creator_type.works_type {
        top: 180px;
    }
}