.kv {
    width: 100%;
    position: relative;
    background-color: #fff;
    margin-top: 100px;
}
.kv::after {
    content: "";
    display: block;
    width: 100%;
    height: 300px;
    background-color: #f6f9fa;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.kv > div {
    position: relative;
    z-index: 2;
}
.kv_inner {
    position: relative;
    width: 100%;
    padding: 0 5%;
}
.kv_catch_wrap {
    text-align: center;
    padding: 50px 0;
}
.kv_catch {
    font-size: 4.2rem;
    letter-spacing: .1em;
}
.kv_encatch {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: .2em;
}
.kv_text {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: .2em;
    text-align: right;
}

#kv_slider {
    margin-top: 10px;
}
#kv_slider .creator_img {
    width: 500px;
    aspect-ratio: 4 / 3;
    box-shadow: 0px 0px 10px 0px rgba(59, 89, 98, 0.1);
    margin: 0 15px;
}
#kv_slider .creator_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.kv_headline {
    position: relative;
    z-index: 2;
    font-size: 2.4rem;
    text-align: center;
    font-weight: 500;
    line-height: 1.8;
    margin-top: 40px;
}

@media screen and (max-width:640px) {
    .kv {
        margin-top: 60px;
    }
    .kv_catch_wrap {
        padding: 40px 0;
    }
    .kv_catch {
        font-size: 5.2vw;
    }
    .kv_encatch {
        font-size: 3vw;
    }
    .kv_text {
        font-size: 2.4vw;
        text-align: center;
    }
    #kv_slider .creator_img {
        width: 320px;
        margin: 0 5px;
    }
    .kv_headline {
        width: 90vw;
        margin: 20px auto 0;
        font-size: 1.4rem;
    }
}

.section_title .title_en {
    font-size: 4.8rem;
    font-weight: 300;
    letter-spacing: .2em;
    line-height: 1;
}
.section_title .title_jp {
    font-size: 1.2rem;
    color: #5f838e;
    margin-top: 10px;
}

.more {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    font-size: 1.8rem;
    letter-spacing: .2em;
    color: #37515a;
    padding-bottom: 3px;
    border-bottom: solid 1px #37515a;
    width: fit-content;
    height: max-content;
}
.more .arrow {
    display: block;
    width: 16px;
}
.more .arrow img {
    vertical-align: baseline;
}

.top_service {
    padding: 100px 0;
    background-color: #f6f9fa;
}
.service_upper {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}
.service_text {
    max-width: 500px;
    font-size: 1.4rem;
    line-height: 1.8;
}
.service_list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.service_item {
    display: block;
    width: calc(50% - 16px);
    aspect-ratio: 2 / 1;
    overflow: hidden;
    position: relative;
}
.service_item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #37515a;
    opacity: .4;
    z-index: 2;
}
.service_item .service_image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    transition: all .3s ease;
}
.service_item .service_image img {
    transition: filter 0.4s ease;
}
.service_item:hover .service_image img {
    filter: blur(10px);
}
.service_item_inner {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.service_item_title {
    line-height: 1;
    text-align: center;
}
.service_title_en {
    font-size: 3.6rem;
    font-weight: 300;
    letter-spacing: .2em;
    color: #fff;
}
.service_title_jp {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 10px;
}
.service_txt {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 25px;
    text-align: center;
    line-height: 1.6;
}
.service_arrow {
    display: block;
    width: 22px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    transition: transform 0.3s ease;
}
.service_item:hover .service_arrow {
    transform: translate(3px, -3px);
}

@media screen and (max-width:640px) {
    .section_title {
        text-align: center;
    }
    .section_title .title_en {
        font-size: 3.2rem;
    }
    .section_title .title_jp {
        font-size: 1.2rem;
        margin-top: 0;
    }
    .top_service {
        padding: 60px 0;
    }
    .service_upper {
        padding: 20px 0;
    }
    .service_text {
        width: 100%;
    }
    .service_upper .more {
        display: none;
    }
    .service_list {
        gap: 15px;
    }
    .service_item {
        width: 100%;
    }
    .service_title_en {
        font-size: 2.8rem;
    }
    .service_title_jp {
        font-size: 1.1rem;
    }
}

.top_works {
    background: url(../images/top/works_bg.jpg) no-repeat;
    background-size: cover;
    padding: 100px 0 200px;
}
.top_works .section_title {
    text-align: center;
    margin-bottom: 50px;
}
.top_works .section_title .title_en {
    color: #fff;
}
.top_works .section_title .title_jp {
    color: #fff;
}
.works_item {
    display: flex;
}
.works_item .works_image {
    width: 55%;
}
.works_item .textarea {
    width: 45%;
    background-color: #fff;
    padding: 50px;
}
.works_item .meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.works_item .meta .category {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    background-color: #62828c;
    padding: 0px 8px;
    border-radius: 30px;
}
.works_item .meta .date {
    font-size: 1.2rem;
    color: #5f838e;
}
.works_title {
    font-size: 2.4rem;
    font-weight: 500;
    color: #0d272f;
}
.works_text {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    color: #5f838e;
    margin-top: 20px;
}
#works_slider .slick-dots {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 14px;
    top: 50%;
    right: -30px;
    bottom: auto;
    transform: translateY(-50%);
}
#works_slider .slick-dots li {
    width: 10px;
    height: 10px;
    transition: all .3s ease;
    background-color: #fff;
    opacity: .3;
    border-radius: 50%;
    cursor: pointer;
}
#works_slider .slick-dots li.slick-active {
    width: 14px;
    height: 14px;
    opacity: 1;
}
#works_slider .slick-dots li button {
    display: none;
}
.top_works .more {
    width: fit-content;
    margin: 40px auto 0;
    color: #fff;
    border-bottom: solid 1px #fff;
}

@media screen and (max-width:640px) {
    .top_works {
        padding: 60px 0 120px;
    }
    .top_works .section_title {
        margin-bottom: 30px;
    }
    .works_item {
        flex-direction: column;
    }
    .works_item .works_image {
        width: 100%;
    }
    .works_item .textarea {
        width: 100%;
        padding: 30px 20px;
    }
    .works_item .meta {
        margin-bottom: 10px;
    }
    .works_item .meta .category {
        font-size: 1rem;
    }
    .works_title {
        font-size: 1.8rem;
    }
    .works_text {
        margin-top: 15px;
        font-size: 1.2rem;
    }
    #works_slider .slick-dots {
        position: relative;
        top: unset;
        right: unset;
        transform: unset;
        flex-direction: row;
        gap: 10px;
        margin-top: 20px;
        width: auto;
        justify-content: center;
        height: 14px;
    }
}

.top_creator {
    background-color: #f6f9fa;
}
.creator_box {
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(59, 89, 98, 0.1);
    transform: translateY(-100px);
}
.creator_box .textarea {
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.creator_box .textarea .more {
    margin-left: auto;
    margin-top: 30px;
}
.creator_slider {
    overflow: hidden;
    width: 100%;
}
.creator_slider {
    display: flex;
}
.creator-group {
    display: flex;
    flex-shrink: 0;
    animation: slide-left 30s linear infinite;
}
.lower_slide .creator-group {
    animation-direction: reverse;
}
.creator_slider_img {
    width: 240px;
    aspect-ratio: 3 / 2;
    flex-shrink: 0;
}
.creator_slider_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes slide-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media screen and (max-width:640px) {
    .creator_box {
        transform: translateY(-60px);
    }
    .creator_slider_img {
        width: 180px;
    }
    .creator_box .textarea {
        padding: 40px 5%;
        flex-direction: column;
    }
    .creator_box .textarea .right {
        text-align: center;
        margin-top: 40px;
    }
    .creator_box .textarea .more {
        margin: 20px auto 0;
    }
}

.section_news {
    padding: 100px 0;
}
.news_wrap {
    display: flex;
    justify-content: space-between;
}
.news_wrap .title_wrap .section_title {
    margin-bottom: 60px;
}
.news_artiles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.article_link {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-right: 80px;
    position: relative;
}
.article_link::after {
    content: "";
    display: block;
    width: 18px;
    height: 9px;
    background: url(../images/common/arrow.svg) no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1;
}
.article_link .thumbnail {
    width: 320px;
}
.article_link .meta_area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.article_link .meta_area .category {
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    background-color: #62828c;
    padding: 4px 8px;
    border-radius: 30px;
}
.article_link .meta_area .date {
    font-size: 1.2rem;
    color: #5f838e;
}
.article_link .article_ttl {
    font-size: 1.8rem;
    font-weight: 500;
    color: #0d272f;
}

@media screen and (max-width:640px) {
    .section_news {
        padding: 60px 0;
    }
    .news_wrap {
        flex-direction: column;
    }
    .news_wrap .more {
        display: none;
    }
    .news_wrap .title_wrap .section_title {
        margin-bottom: 30px;
    }
    .article_link {
        padding-right: 0;
    }
    .article_link::after {
        display: none;
    }
    .article_link .thumbnail {
        width: 140px;
        flex-shrink: 0;
    }
    .article_link .meta_area {
        margin-bottom: 5px;
    }
    .article_link .meta_area .category {
        font-size: 1rem;
    }
    .article_link .article_ttl {
        font-size: 1.4rem;
        line-height: 1.5;
    }
}

.top_company {
    padding: 100px 0;
}
.top_company .section_title {
    text-align: center;
}
.company_table {
    width: 900px;
    margin: 40px auto 0;
}
.company_table .row {
    display: flex;
    align-items: center;
    border-bottom: solid 1px #d1dbde;
    padding: 35px;
}
.company_table .row .th {
    width: 50%;
    padding-left: 10px;
    font-size: 1.4rem;
    font-weight: 500;
}
.company_table .row .td {
    width: 50%;
    padding-left: 10px;
    font-size: 1.3rem;
    font-weight: 400;
}

@media screen and (max-width:640px) {
    .top_company {
        padding: 60px 0;
    }
    .top_company .section_title .title_en {
        font-size: 2.5rem;
    }
    .company_table {
        width: 100%;
        margin-top: 20px;
    }
    .company_table .row {
        padding: 20px 0;
    }
    .company_table .row .th {
        width: 100px;
    }
    .company_table .row .td {
        width: calc(100% - 100px);
    }
}