@charset "UTF-8";
main {
    margin-top: 100px;
}
.sub_main-content {
    display: flex;
    align-items: center;
    height: 200px;
    background-image: url("../img/bg/sub_001.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.sub_main-text-area {
    margin-left: 150px;
}
.sub_main-sub-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
}
.sub_main-sub-text::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background-color: #fff;
    margin-top: 10px;
    margin-bottom: 2px;
}
.sub_main-title {
    font-size: 5.0rem;
    font-weight: 600;
    color: #fff;
}
/* top */
.main_mv-wrapper {
    padding-left: 100px;
}
.main_mv-item {
    position: relative;
}
.main-mv {
    opacity: 0;
}
.main_mv-text {
    position: absolute;
    z-index: 2;
    bottom: 50px;
    left: 0px;
}
.main_mv-text h1 {
    position: relative;
    font-size: 3.3rem;
    font-weight: 600;
    color: #3C3C3C;
    background-color: #fff;
    padding: 10px 20px 10px 35px;
}
.main_mv-text .btn_g {
    width: 260px;
    background-color: #fff;
    padding: 10px 20px 10px 35px;
}
.main_mv-text h1, .main_mv-text .btn_g {
    opacity: 0;
    transform: translateX(-50px);
}
/* active クラスがついたらアニメ開始 */
.main_mv-text h1.active {
    animation: slideIn 0.8s ease-out forwards;
}
.main_mv-text .btn_g.active {
    animation: slideIn 0.8s ease-out forwards;
    animation-delay: 0.6s; /* h1 の後に出る */
}
/* 共通アニメーション */
@keyframes slideIn {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.top_service-content {
    display: flex;
    align-items: center;
    padding-left: 100px;
    margin-top: 120px;
}
.top_service-img {
    width: 28%;
}
.top_service-text {
    margin-left: 70px;
}
.top_service-text h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #67696C;
}
.top_service-text h2 + .display_sp + p {
    font-size: 1.8rem;
    font-weight: 600;
    color: #67696C;
    margin: 20px 0px 50px;
}
.top_service-deco-area {
    position: relative;
}
.service_deco-img001 {
    position: absolute;
    z-index: 1;
    right: 0px;
    bottom: -200px;
    width: 340px;
}
.service_deco-img002 {
    position: absolute;
    z-index: -1;
    top: 0;
    right: -200px;
    width: 1076px;
}
.top_heading {
    margin-top: 120px;
}
.top_head-en {
    font-family: 'Roboto', sans-serif;
    font-size: 4.4rem;
    font-weight: 600;
    color: #67696C;
}
.top_head-sub {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #67696C;
    margin-top: 5px;
    margin-bottom: 60px;
    padding-bottom: 37px;
    border-bottom: 2px solid #707070;
}
#top-project .top_heading, #top-column .top_heading {
    padding: 0px 100px 0px;
}
#top-column .top_heading {
    text-align: right;
}
.top_project-wrapper {
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
}
.top_project-wrapper li {
    width: 49%;
}
.top_project-img {
    height: 400px;
    overflow: hidden;
}
.top_project-text {
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin: -3vw auto 0px;
    padding: 27px 0px 27px 30px;
    background-color: #fff;
}
.top_project-text h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #67696C;
    margin-bottom: 22px;
    padding-right: 27px;
}
.top_project-text p {
    font-size: 1.4rem;
    font-weight: 300;
    color: #67696C;
    margin-bottom: 22px;
}
.top_project-info-list li {
    width: 100%;
    font-size: 1.4rem;
    font-weight: 300;
    color: #67696C;
    margin-bottom: 10px;
}
.top_project-text .btn_g {
    justify-content: right;
    padding-right: 10px;
}
.top_project-text .btn_g p {
    font-weight: 600;
    margin-bottom: 0px;
}
.top_project-btn-area {
    width: 49%;
    margin-top: 40px;
}
.top_project-btn-area .btn-area-box {
    max-width: 480px;
    margin: 0px auto;
}
.top_project-btn-area .btn_bg-g {
    width: 245px;
}
#top-column {
    position: relative;
}
.top_column-wrapper {
    margin: 0px 100px;
    display: flex;
    justify-content: space-between;
}
.top_column-wrapper li {
    width: 32%;
}
.top_column-img {
    cursor: pointer;
    overflow: hidden;
    width: 100%;
}
.top_column-img img {
    height: auto;
    transition: transform .6s ease; /* ゆっくり変化させる */
}
.top_column-img:hover img {
    transform: scale(1.05); /* 拡大 */
}
.top_column-wrapper li h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #67696C;
    margin-top: 25px;
    transition: all 0.3s ease;
}
.top_column-wrapper a:hover h3 {
    color: #000;
    transition: all 0.3s ease;
}
.top_column-btn-area {
    display: flex;
    justify-content: right;
    margin: 40px 100px 0px;
}
.top_column-btn-area .btn_bg-g {
    width: 213px;
}
.column_deco-area {
    position: absolute;
    z-index: -1;
    top: -100px;
    right: 80px;
}
.column_deco-area img {
    width: 855px;
}
/* 

top news 
*/
.top_news-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 839px;
    margin: 120px auto 0px;
}
.top_news-content .top_heading {
    margin-top: -15px;
}
.top_news-list-area {
    width: 70%;
}
.top_news-list li {
    margin-bottom: 25px;
}
.top_news-list li:last-child {
    margin-bottom: 37px;
}
.top_news-list li a {
    display: flex;
}
.top_news-list li a:hover p {
    color: #000;
    transition: all 0.3s ease;
}
.top_news-list li p {
    padding-bottom: 25px;
    border-bottom: 1px solid #C7C7C7;
    transition: all 0.3s ease;
}
.top_news-list li .day {
    font-size: 1.4rem;
    font-weight: 600;
    color: #707070;
}
.top_news-list li .text {
    width: 80%;
    font-size: 1.4rem;
    font-weight: 300;
    color: #707070;
    margin-left: 25px;
}
.top_news-list-area .btn_bg-g {
    width: 217px;
}
/* top */
/* ourvalues */
.ourvalues_main-content {
    background-image: url("../img/ourvalues/main_bg.png");
    background-size: 100%;
    background-repeat: no-repeat;
    padding-right: 130px;
    display: flex;
    justify-content: flex-end;
}
.ourvalues_main-wrapper {
    max-width: 705px;
    margin: 130px 0px;
}
.ov_main-title {
    text-align: center;
    margin-bottom: 85px;
}
.ov_main-title h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 4.4rem;
    font-weight: 800;
    color: #fff;
}
.ov_main-title p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-top: 10px;
}
.ov_main-title p::after {
    content: "";
    display: block;
    width: 58px;
    height: 5px;
    background-color: #fff;
    margin: 20px auto 0px;
}
.ov_main-read-wrapper {
    text-align: center;
}
.ov_main-heading {
    margin-bottom: 95px;
}
.ov_main-heading p {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 35px;
}
.ov_main-heading h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    padding-left: 18px;
}
.ov_meaning-main-img {
    display: none;
}
.ov_main-read {
    text-align: left;
    font-size: 1.8rem;
    line-height: 1.8;
    font-weight: 600;
    color: #fff;
    margin-bottom: 35px;
}
.ov_meaning-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ov_meaning-logo {
    width: 30%;
    margin-bottom: 80px;
}
.ov_meaning-img {
    width: 60%;
}
.ov_meaning-img p {
    font-size: 1.8rem;
    line-height: 1.8;
    font-weight: 600;
    color: #fff;
    margin-top: 15px;
}
.ourvalues_workflow-content {
    position: relative;
    text-align: center;
    margin-top: 110px;
}
.ov_wf-heading {
    font-size: 3.5rem;
    font-weight: 600;
    color: #67696C;
    margin-bottom: 50px;
}
.ov_wf-read {
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 300;
    color: #67696C;
    margin-bottom: 60px;
}
.ov_wf-img {
    max-width: 912px;
    padding: 0px 50px;
    margin: 0px auto;
}
.ov_wf-deco {
    position: absolute;
    z-index: -1;
    right: 0px;
    bottom: -110px;
}
.ourvalues_workflow-list {
    margin-top: 200px;
}
.ov_wf-item {
    max-width: 1290px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}
.ov_wf-item-text {
    width: 30%;
}
.ov_wf-item-text h3 {
    font-size: 2.6rem;
    line-height: 1.8;
    font-weight: 600;
    color: #67696C;
    margin-bottom: 35px;
}
.ov_wf-item-text h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background-color: #707070;
    margin-top: 25px;
}
.ov_wf-item-text p {
    font-size: 1.6rem;
    font-weight: 300;
    color: #67696C;
}
.ov_wf-item-img {
    width: 50%;
}
.ov_wf-item:nth-child(1) .ov_wf-item-text {
    margin-left: 7%;
}
.ov_wf-item:nth-child(2) .ov_wf-item-text {
    width: 35%;
    margin-right: 7%;
    margin-top: 60px;
}
.ov_wf-item:nth-child(2) .ov_wf-item-img {
    margin-left: 3%;
}
.ov_wf-item:nth-child(3) .ov_wf-item-text {
    width: 35%;
    margin-left: 7%;
    margin-top: 60px;
}
.ov_wf-item:nth-child(3) .ov_wf-item-img {
    margin-top: 130px;
}
/*

news company
*/
#news .sub_main-content, #company .sub_main-content, #privacy .sub_main-content, #cookie .sub_main-content, #handling .sub_main-content {
    background-image: url("../img/bg/sub_005.png");
}
.news_main-content {
    max-width: 990px;
    padding: 0px 50px;
    margin: 125px auto 0px;
}
.news_main-heading {
    font-size: 5.5rem;
    font-weight: 600;
    color: #67696C;
    margin-bottom: 45px;
}
.sub_news-list li {
    margin-bottom: 30px;
}
.sub_news-list li a {
    display: flex;
    justify-content: space-between;
}
.sub_news-list li p {
    padding-bottom: 30px;
    border-bottom: 1px solid #C7C7C7;
    transition: all 0.3s ease;
}
.sub_news-list li a:hover p {
    color: #000;
    transition: all 0.3s ease;
}
.sub_news-list li .day {
    font-size: 1.7rem;
    font-weight: 600;
    color: #707070;
}
.sub_news-list li .text {
    width: 75%;
    font-size: 1.7rem;
    font-weight: 300;
    color: #707070;
    margin-left: 85px;
}
.news_sub-list-area .btn_bg-g.under-text {
    margin: 58px auto 0px;
}
.news_day-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #67696C;
    margin-bottom: 18px;
}
.news_sub-title {
    font-size: 2.0rem;
    font-weight: 600;
    color: #67696C;
    margin-bottom: 38px;
}
.news_body-area {
    margin-bottom: 80px;
}
.news_body-area p {
    font-size: 1.6rem;
    font-weight: 300;
    color: #67696C;
    margin-bottom: 18px;
}
.news_body-area a {
    font-size: 1.6rem;
    font-weight: 600;
}
.news_main-content .news-btn {
    width: 215px;
    margin: auto;
}
.company_main-content {
    max-width: 990px;
    padding: 0px 50px;
    margin: 125px auto 0px;
}
.company_info-list {
    display: flex;
    flex-wrap: wrap;
}
.company_info-list dt {
    width: 13em;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #67696C;
    font-weight: 600;
}
.company_info-list dd {
    width: calc(100% - 21em);
    padding-bottom: 50px;
}
.company_info-list dd p {
    font-size: 1.6rem;
    color: #67696C;
    font-weight: 300;
    line-height: 1.8;
}
.company_info-list dd li {
    font-size: 1.6rem;
    color: #67696C;
    line-height: 1.8;
    font-weight: 300;
}
#handling .sub_main-title {
    line-height: 1.2;
}
.privacy_main-content {
    max-width: 990px;
    padding: 0px 50px;
    margin: 125px auto 0px;
}
.privacy_enactment {
    margin: 80px auto 0;
    text-align: right;
}
.privacy_enactment ul li {
    font-size: 1.6rem;
    color: #67696C;
    font-weight: 300;
}
.privacy_enactment li:not(:first-of-type) {
    margin-top: 8px;
}
.privacy_list {
    font-size: 1.6rem;
    color: #67696C;
    padding-top: 30px;
}
.privacy_list_item {
    margin-bottom: 40px;
}
.privacy_list_item .large {
    margin-bottom: 15px;
}
.privacy_list_item p {
    font-size: 1.6rem;
    font-weight: 300;
}
.privacy_list_item > p > b {
    font-size: 1.6rem;
    font-weight: 600;
}
.privacy_sub_list {
    padding-left: 30px;
    padding-top: 1em;
}
.privacy_sub_list .privacy_sub_item {
    font-size: 1.6rem;
    color: #67696C;
    font-weight: 300;
    margin-bottom: 15px;
    padding-left: 1.1em;
    text-indent: -1.1em;
    line-height: 1.6;
}
.privacy_sub_item span {
    display: inline-block;
    width: 1.1em;
}
.privacy_next_list {
    padding-left: 1em;
    margin-top: 5px;
}
.privacy_next_item {
    font-size: 1.6rem;
    color: #67696C;
    font-weight: 300;
    padding-left: 0.8em;
    text-indent: -0.8em;
    line-height: 1.6;
}
.privacy_next_item span {
    display: inline-block;
    width: 0.8em;
}
.privacy_last_list {
    padding: 0 0 .3em 1em;
}
.privacy_last_item {
    font-size: 1.6rem;
    color: #67696C;
    font-weight: 300;
    padding-left: 0.8em;
    text-indent: -0.8em;
    line-height: 1.6;
}
.privacy_main-content .company_info {
    margin: 80px auto;
    font-size: 1.6rem;
    text-align: right;
}
.privacy_main-content .company_info h3 {
    font-size: 1.8rem;
    font-weight: 600;
}
.privacy_main-content .company_info p {
    margin: 16px 0 24px;
}
/*

project column
*/
#project .sub_main-content, #column .sub_main-content {
    background-image: url("../img/bg/sub_002.png");
}
.column_main-content {
    position: relative;
}
.column_main-content .deco-area {
    position: absolute;
    z-index: -1;
    top: -150px;
    right: -340px;
}
.column_main-content .deco-area-002 {
    position: absolute;
    z-index: -1;
    bottom: -250px;
    left: -340px;
}
.column_list-wrapper {
    max-width: 1233px;
    padding: 0px 50px;
    margin: 90px auto;
}
.column-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.column-list li {
    margin-bottom: 70px;
}
.column-list li a {
    display: flex;
    justify-content: space-between;
}
.column-list .column-img {
    width: 30%;
}
.column-list .column-text {
    width: 65%;
}
.column-text .day span {
    font-size: 1.3rem;
    font-weight: 600;
    color: #67696C;
    margin-bottom: 5px;
}
.column-text .title {
    font-size: 2.6rem;
    font-weight: 600;
    color: #67696C;
    margin-bottom: 15px;
}
.column-text .text {
    font-size: 1.6rem;
    font-weight: 300;
    color: #67696C;
}
.column-list li:nth-child(n+4) {
    width: 30%;
    flex-wrap: wrap;
}
.column-list li:nth-child(n+4) a {
    flex-wrap: wrap;
}
.column-list li:nth-child(n+4) .column-img {
    width: 100%;
    margin-bottom: 25px;
}
.column-list li:nth-child(n+4) .column-text {
    width: 100%;
}
.column-list li:nth-child(n+4) .column-text .title {
    font-size: 2.0rem;
    margin-bottom: 10px;
}
.column_upside-area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    padding: 0px 50px;
    margin: 90px auto 60px;
}
.column_upside-left a {
    display: flex;
    align-items: center;
}
.column_upside-left .btn_arrow-g-reverse {
    width: 22px;
}
.column_upside-left .btn_list {
    font-size: 1.6rem;
    font-weight: 500;
    color: #67696C;
    margin-left: 10px;
}
.column_upside-right .day {
    font-size: 1.3rem;
    font-weight: 500;
    color: #67696C;
}
.column_sub-content {
    max-width: 1100px;
    padding: 0px 50px;
    margin: 0px auto;
}
.column_sub-content h2 {
    font-size: 2.6rem;
    font-weight: 600;
    color: #67696C;
    margin-bottom: 30px;
}
.column_sub-content .column-img {
    width: 100%;
    margin-bottom: 80px;
}
p.column-read {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2.2;
    color: #67696C;
}
.sub_column-wrapper {
    margin-top: 100px;
}
.o-articles-toc {
    padding: 50px 30px;
    background-color: #67696C;
    margin-bottom: 100px;
}
.o-articles-toc_inner {
    display: flex;
    justify-content: space-between;
}
.o-articles-toc_head {
    font-size: 4.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}
.o-articles-toc_content {
    width: 70%;
}
.o-articles-toc_list {
    counter-reset: number;
    list-style-type: none !important;
}
.o-articles-toc_list-item {
    position: relative;
    margin-bottom: 20px;
    padding-left: 25px;
    line-height: 1.4;
}
.o-articles-toc_list-item::before {
    position: absolute;
    counter-increment: number;
    content: counter(number, decimal-leading-zero);
    /*以下数字のデザイン変える*/
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.4;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    text-align: center;
    /*以下 上下中央寄せのため*/
}
.o-articles-toc_list-item a, .o-articles-toc_list-item a b {
    font-size: 1.4rem;
    font-weight: 300;
    color: #fff;
}
.o-articles-toc_list-item a:hover {
    opacity: 0.6;
}
.o-articles-toc_list .o-articles-toc_list {
    padding-left: 24px;
    margin: 20px 0px;
}
.o-articles-toc_list .o-articles-toc_list .o-articles-toc_list-item {
    padding-left: 28px;
}
.o-articles-toc_list .o-articles-toc_list .o-articles-toc_list-item::before {
    position: absolute;
    counter-increment: number;
    content: "("counter(number) ")";
    /*以下数字のデザイン変える*/
    display: inline-block;
    color: #fff;
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1.4;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    text-align: center;
    /*以下 上下中央寄せのため*/
}
.sub_column-wrapper h2 {
    font-size: 2.0rem;
    font-weight: 600;
    color: #67696C;
    margin-bottom: 30px;
}
.sub_column-wrapper h2 span {
    font-size: 2.0rem;
    font-weight: 600;
    color: #67696C;
}
.sub_column-wrapper h2 b {
    font-size: 2.0rem;
    font-weight: 600;
    color: #67696C;
}
.column_sub-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #67696C;
    margin-bottom: 30px;
}
.column_sub-content h3 b {
    font-size: 1.8rem;
    font-weight: 600;
    color: #67696C;
}
.column_sub-content h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #67696C;
}
.column_sub-content h4 b {
    font-size: 1.8rem;
    font-weight: 600;
    color: #67696C;
}
.column_sub-content p {
    font-size: 1.6rem;
    font-weight: 300;
    color: #67696C;
    margin-top: 20px;
}
.column_sub-content p strong, .column_sub-content p b {
    font-size: 1.6rem;
    font-weight: 600;
}
.column_sub-content p a {
    font-size: 1.6rem;
    font-weight: 600;
}
.column_sub-content .switch {
    font-size: 1.8rem !important;
}
.column_sub-content .switch a {
    display: inline-block;
    background: #555555 !important;
    border: none !important;
    color: #fff !important;
}
.column_sub-content .switch + h2 {
    margin-top: 60px;
}
.column_sub-content p + h2 {
    margin-top: 80px;
}
.column_sub-content p + h3 {
    margin-top: 80px;
}
.column_sub-content p + h4 {
    margin-top: 30px;
}
.sub_column-body ul li {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.6;
    color: #67696C;
}
.sub_column-body ul li strong {
    font-size: 1.6rem;
    font-weight: 600;
    color: #67696C;
}
.sub_column-body p + ul {
    margin-top: 60px;
}
.sub_column-body ul li {
    font-size: 1.6rem;
    position: relative;
    padding-left: 1.1em;
    line-height: 1.8;
}
.sub_column-body ul li b {
    font-size: 1.6rem;
    font-weight: 600;
}
.sub_column-body ul li::before {
    position: absolute;
    top: .7em;
    left: 0;
    display: block;
    width: 6px;
    height: 6px;
    content: "";
    background-color: #67696C;
    border-radius: 50%;
}
.sub_column-body p img {
    display: block;
    width: auto;
    margin: 0px auto;
}
.column-pagination {
    margin: 100px auto 0px;
    border-top: 1px solid #707070;
    max-width: 1136px;
    padding: 0px 50px;
}
.column-pn-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}
.column-pn-item .before .btn_arrow-g-reverse {
    width: 22px;
}
.column-pn-item .before .text {
    font-size: 1.6rem;
    font-weight: 300;
    color: #67696C;
    margin-left: 10px;
}
.column-pn-item .button-text {
    display: block;
    background-color: #67696C;
    padding: 8px 30px;
}
.column-pn-item .button-text span {
    font-size: 1.6rem;
    font-weight: 300;
    color: #fff;
}
.column-pn-item .next .btn_arrow-g {
    width: 22px;
}
.column-pn-item .next .text {
    font-size: 1.6rem;
    font-weight: 300;
    color: #67696C;
    margin-right: 10px;
}
.project_main-content {
    position: relative;
    max-width: 1236px;
    padding: 0px 50px;
    margin: 60px auto 0px;
}
.project_main-content .deco-area {
    position: absolute;
    z-index: -1;
    top: 250px;
    left: -340px;
}
.project_main-content .deco-area-002 {
    position: absolute;
    z-index: -1;
    bottom: 450px;
    right: -340px;
}
.project_main-read {
    font-size: 1.6rem;
    font-weight: 300;
    color: #67696C;
    text-align: center;
}
.project_search-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}
.project_list-wrapper + .project_search-content {
    margin-top: 90px;
}
.search-text-area {
    width: 20%;
    margin-bottom: 20px;
}
.search-text-area .search-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 4.4rem;
    font-weight: 800;
    color: #67696C;
}
.search-text-area .search-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #67696C;
}
.search-tag-area {
    width: 76%;
}
.search-tag-area ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.cat-item-all, .cat-item, .cat-item-pers {
    padding: 15px 30px;
    background-color: #67696C;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}
.cat-item-all a, .cat-item a, .cat-item-pers a {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
}
.cat-item-all.current-cat, .cat-item.current-cat {
    background-color: #C7C7C7;
}
.cat-item-all.current-cat a, .cat-item.current-cat a {
    color: #67696C;
}
.cat-item-all:hover, .cat-item:hover, .cat-item-pers:hover {
    background-color: #C7C7C7;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}
.cat-item-all:hover a, .cat-item:hover a, .cat-item-pers:hover a {
    color: #67696C;
}
.project_list-wrapper {
    margin: 140px auto 0px;
}
.project_list-wrapper .project-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.project-list li {
    width: 48%;
    margin-bottom: 50px;
}
.project-list li a:hover {
    opacity: 0.6;
}
.project-list li:nth-child(5), .project-list li:nth-child(6) {
    margin-bottom: 90px;
}
.project-list li:nth-child(n+7) {
    width: 32%;
}
.project-list .project-img {
    margin-bottom: 15px;
    height: 400px;
}
.project-list li:nth-child(n+7) .project-img {
    height: 260px;
}
.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-list .project-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #67696C;
    margin-bottom: 15px;
}
.project-list .project-text p {
    font-size: 1.4rem;
    font-weight: 300;
    color: #67696C;
    margin-bottom: 5px;
}
.project-info-list li {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    color: #67696C;
    margin-bottom: 5px;
}
.project_sub-wrapper {
    position: relative;
}
.project_sub-wrapper .deco-area {
    position: absolute;
    z-index: -1;
    top: 100px;
    right: -340px;
}
.project_sub-title {
    font-size: 3.0rem;
    font-weight: 600;
    color: #67696C;
    margin-bottom: 60px;
}
.project_sub-img {
    margin-bottom: 60px;
}
.project_sub-info-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.project_sub-info-list dt {
    width: 17%;
    font-size: 1.6rem;
    font-weight: 600;
    color: #67696C;
    padding-left: 20px;
    border-left: 3px solid #C7C7C7;
    margin-bottom: 25px;
}
.project_sub-info-list dd {
    width: 80%;
    font-size: 1.6rem;
    font-weight: 300;
    color: #67696C;
    margin-bottom: 25px;
}
.project_ba-wrapper {
    margin-top: 120px;
}
.project_ba-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.project_ba-box .ba-item {
    width: 43%;
}
.project_ba-box .ba-item p {
    font-size: 2.6rem;
    font-weight: 600;
    color: #67696C;
    text-align: center;
    margin-bottom: 15px;
}
.project_ba-box .arrow-g {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 1px;
    margin: 30px auto 0px;
    border-radius: 9999px;
    background-color: #707070;
}
.project_ba-box .arrow-g::before, .project_ba-box .arrow-g::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 0;
    width: 8px;
    height: 1px;
    border-radius: 9999px;
    background-color: #707070;
    transform-origin: calc(100% - 0.5px) 50%;
}
.project_ba-box .arrow-g::before {
    transform: rotate(48.35deg);
}
.project_ba-box .arrow-g::after {
    transform: rotate(-48.35deg);
}
.project_preview {
    margin-top: 130px;
}
.project_preview h3 {
    font-size: 3.0rem;
    font-weight: 600;
    color: #67696C;
    text-align: center;
    margin-bottom: 30px;
}
.preview-wrapper {
    position: relative;
}
.js-slick .slick-slide {
    margin: 0 5px; /* 左右5pxずつで合計10pxの余白 */
}
.js-slick .slick-list {
    margin: 0 -5px; /* 端がずれないように調整 */
}
.js-slick li{
	overflow: hidden;
}
.js-slick li img {
  width: 100%;
  height: 320px;
  object-fit: cover;  /* 縦横比を保ちながらトリミング */
  display: block;
}
.preview-wrapper .slick-prev, .preview-wrapper .slick-next {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: block;
    width: 80px;
    height: 100%;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: #707070c9;
}
.preview-wrapper .slick-prev {
    left: 0px;
}
.preview-wrapper .slick-next {
    right: 0px;
}
.preview-wrapper .slick-prev::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 0;
    border-top: solid 2px #fff;
    border-left: solid 2px #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.preview-wrapper .slick-next::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.sub_pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub_pagination li {
    width: 25px;
    height: 25px;
    margin: 0px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sub_pagination li a {
    font-size: 1.5rem;
    font-weight: 500;
    color: #67696C;
}
.sub_pagination li a:hover {
    color: #000;
}
.sub_pagination li.active {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    background-color: #707070;
}
.sub_pagination li.dots {
    font-size: 1.5rem;
    font-weight: 500;
}
.sub_pagination .before {
    position: relative;
    display: block;
    transition: transform 0.3s ease;
}
.sub_pagination .before::before {
    content: "";
    display: inline-block;
    background-image: url("../img/icon_areow_left.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 22px;
    height: 11px;
}
.sub_pagination .next {
    position: relative;
    display: block;
    transition: transform 0.3s ease;
}
.sub_pagination .next::before {
    content: "";
    display: inline-block;
    background-image: url("../img/icon_areow_right.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 22px;
    height: 11px;
}
.sub_pagination .before:hover {
    transform: translateX(-5px); /* 矢印を右に5px移動 */
    transition: transform 0.3s ease; /* 0.3秒でアニメーション */
}
.sub_pagination .next:hover {
    transform: translateX(5px); /* 矢印を右に5px移動 */
    transition: transform 0.3s ease; /* 0.3秒でアニメーション */
}
@media screen and (min-width: 1540px) {
    .ourvalues_main-content {
        height: 1500px;
        padding-right: 20%;
        background-position: bottom;
    }
}
@media screen and (max-width: 1440px) {
    .ourvalues_main-content {
        background-size: cover;
    }
    .ourvalues_main-wrapper {
        max-width: none;
        width: 47%;
    }
}
@media screen and (max-width: 1370px) {
    .top_project-text {
        margin: -10% auto 0px;
    }
}
@media screen and (max-width: 1280px) {
    .top_service-img {
        width: 35%;
    }
    .top_project-text {
        margin: -15% auto 0px;
    }
}
@media screen and (max-width: 1200px) {
    .top_project-text {
        margin: -22% auto 0px;
    }
}
@media screen and (max-width: 1150px) {
    .ourvalues_main-content {
        background-position: left -100px bottom 0px;
        padding-right: 80px;
    }
}
@media screen and (max-width: 1100px) {
    .top_service-content {
        padding: 0px 50px;
    }
    .service_deco-img001 {
        width: 240px;
        bottom: -140px;
    }
    #top-project .top_heading, #top-column .top_heading {
        padding: 0px 50px 0px;
    }
    .top_project-text {
        margin: -27% auto 0px;
    }
    .top_project-text {
        width: 80%;
    }
    .top_project-btn-area .btn-area-box {
        margin-left: 50px;
    }
    .top_news-list-area {
        width: 75%;
    }
}
@media screen and (max-width: 1030px) {
    .top_project-text {
        margin: -33% auto 0px;
        padding: 27px 25px 27px 25px;
    }
    .top_project-text h3 {
        padding-right: 0px;
    }
}
@media screen and (max-width: 950px) {
    .main_mv-wrapper {
        padding-left: 50px;
    }
    .main_mv-text {
        bottom: 20px;
    }
    .main_mv-text h1 {
        font-size: 3.0rem;
    }
    .top_service-text h2 {
        font-size: 3.0rem;
    }
    .top_project-wrapper {
        padding: 0px 50px;
    }
    .top_project-img {
        height: auto;
    }
    .top_project-text {
        max-width: none;
        width: 90%;
        padding: 27px 30px 27px;
        margin: -50px auto 0px;
    }
    .top_column-wrapper {
        margin: 0px 50px;
    }
    .top_column-btn-area {
        margin: 40px 50px 0px;
    }
    .top_news-content {
        margin: 120px 50px 0px;
    }
    .top_news-list-area {
        width: 80%;
    }
    .ourvalues_main-content {
        background-position: left -150px bottom 0px;
        padding-right: 50px;
    }
    .ourvalues_main-wrapper {
        width: 50%;
        margin: 80px 0px;
    }
    .ov_main-heading p {
        margin-bottom: 15px;
    }
    .ov_main-heading {
        margin-bottom: 45px;
    }
    /*

project column
*/
    .o-articles-toc_inner {
        flex-wrap: wrap;
    }
    .o-articles-toc_head {
        width: 100%;
    }
    .o-articles-toc_content {
        width: 100%;
    }
    .search-tag-area {
        width: 68%;
    }
}
@media screen and (max-width: 800px) {
    main {
        margin-top: 80px;
    }
    .main_mv-wrapper {
        padding-left: 0px;
    }
    .main_mv-text {
        bottom: 55px;
    }
    .main_mv-text h1 {
        font-size: 2.8rem;
        padding: 5px 10px 10px 20px;
    }
    .main_mv-text .btn_g {
        padding: 10px 20px 10px 20px;
    }
    .main_mv-text .btn_arrow-g {
        width: 45px;
    }
    .top_service-text {
        margin-left: 0px;
    }
    .top_service-text h2 {
        text-align: center;
        margin-bottom: 50px;
    }
    .top_service-img {
        width: 70%;
        margin: 0px auto 80px;
    }
    .service_deco-img001 {
        position: relative;
        width: 213px;
        margin-top: 40px;
        bottom: 0px;
    }
    .service_deco-img002 {
        width: 420px;
        top: auto;
        right: -150px;
        bottom: 20px;
    }
    .column_deco-area {
        width: 420px;
        top: -40px;
        right: auto;
        left: -150px;
    }
    .column_deco-area img {
        width: 100%;
    }
    .top_news-content {
        flex-wrap: wrap;
    }
    .top_news-list-area {
        width: 100%;
    }
    .top_news-list li a {
        flex-wrap: wrap;
    }
    .top_news-list li .day {
        padding-bottom: 11px;
        margin-bottom: 15px;
    }
    .top_news-list li p.text {
        width: 100%;
        font-size: 1.6rem;
        margin-left: 0px;
        padding-bottom: 15px;
        border-bottom: 0px solid #C7C7C7;
    }
    .ourvalues_main-content {
        background-image: none;
        padding-right: 0px;
        background: #B0AFAE;
        background: linear-gradient(20deg, rgba(176, 175, 174, 1) 0%, rgba(134, 133, 133, 1) 100%);
    }
    .ourvalues_main-wrapper {
        width: 100%;
    }
    .ov_meaning-main-img {
        display: block;
        padding: 0px 40px;
        margin-bottom: 40px;
    }
    .ov_main-read {
        padding: 0px 40px;
    }
    .ov_meaning-wrapper {
        margin-top: 70px;
        padding: 0px 40px;
    }
    .ourvalues_workflow-content {
        padding: 0px 20px;
    }
    .ov_wf-heading {
        font-size: 3.0rem;
    }
    .ov_wf-img {
        width: 70%;
    }
    .ov_wf-item-text {
        width: 40%;
    }
    .ov_wf-item:nth-child(2) .ov_wf-item-text {
        width: 40%;
        margin-right: 3%;
    }
    .sub_main-content {
        padding: 0px 20px;
    }
    #planning .sub_main-content {
        background-image: url("../img/bg/sub_001_sp.png");
    }
    #construction .sub_main-content {
        background-image: url("../img/bg/sub_002_sp.png");
    }
    #procurement .sub_main-content {
        background-image: url("../img/bg/sub_003_sp.png");
    }
    #maintenance .sub_main-content {
        background-image: url("../img/bg/sub_004_sp.png");
    }
    #news .sub_main-content, #company .sub_main-content, #privacy .sub_main-content, #cookie .sub_main-content, #handling .sub_main-content {
        background-image: url("../img/bg/sub_005_sp.png");
    }
    #project .sub_main-content, #column .sub_main-content {
        background-image: url("../img/bg/sub_002_sp.png");
    }
    .sub_main-text-area {
        margin-left: 0px;
    }
    .sub_main-sub-text {
        font-size: 2.0rem;
    }
    .sub_main-title {
        font-size: 3.6rem;
		line-height: 1.2;
        margin-top: 10px;
    }
    #project .sub_main-title {
        line-height: 1.2;
        margin-top: 10px;
    }
    .news_main-content {
        padding: 0px 20px;
        margin: 80px auto 0px;
    }
    .news_main-heading {
        font-size: 3.0rem;
        margin-bottom: 25px;
    }
    .sub_news-list li:first-child {
        padding-top: 30px;
        border-top: 1px solid #C7C7C7;
    }
    .sub_news-list li a {
        flex-wrap: wrap;
    }
    .sub_news-list li p.day {
        width: 100%;
        padding-bottom: 0px;
        border-bottom: 0px solid #C7C7C7;
        margin-bottom: 15px;
    }
    .sub_news-list li p.text {
        width: 100%;
        margin-left: 0px;
    }
    .news_day-text {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    .news_sub-title {
        margin-bottom: 30px;
    }
    .news_body-area {
        margin-bottom: 35px;
    }
    .company_main-content {
        padding: 0px 20px;
        margin: 80px auto 0px;
    }
    .company_info-list dt {
        width: 100%;
        padding-top: 25px;
    }
    .company_info-list dt:first-child {
        padding-top: 0px;
    }
    .company_info-list dd {
        width: 100%;
        padding-bottom: 25px;
        border-bottom: 1px solid #C7C7C7;
    }
    .privacy_main-content {
        padding: 0px 20px;
        margin: 80px auto 0px;
    }
    /*

project column
*/
    .column_list-wrapper {
        padding: 0px 20px;
        margin: 50px auto 0px;
    }
    .column-text .title {
        font-size: 2.0rem;
    }
    .column-list li:nth-child(n+4) {
        width: 100%;
    }
    .column-list li:nth-child(n+4) .column-img {
        width: 30%;
    }
    .column-list li:nth-child(n+4) .column-text {
        width: 65%;
    }
    .column_main-content .deco-area {
        width: 600px;
        right: -240px;
    }
    .column_main-content .deco-area-002 {
        width: 600px;
        left: -240px;
    }
    .column_upside-area {
        padding: 0px 20px;
    }
    .column_sub-content {
        padding: 0px 20px;
        margin: 50px auto 0px;
    }
    .project_main-content {
        padding: 0px 20px;
    }
    .project_main-content .deco-area {
        position: absolute;
        width: 600px;
        left: -240px;
    }
    .project_main-content .deco-area-002 {
        position: absolute;
        width: 600px;
        right: -240px;
    }
    .project_search-content {
        flex-wrap: wrap;
    }
    .search-text-area {
        width: 100%;
    }
    .search-tag-area {
        width: 100%;
    }
    .project_list-wrapper {
        margin: 90px auto 0px;
    }
    .project-list li {
        width: 100%;
        margin-bottom: 50px;
    }
    .project-list li:nth-child(n+7) {
        width: 48%;
    }
    .project-info-list li {
        margin-bottom: 10px;
    }
    .project-list .project-img {
        height: auto;
    }
    .project-list li:nth-child(n+7) .project-img {
        height: 180px;
    }
    .project_sub-wrapper .deco-area {
        position: absolute;
        width: 600px;
        left: 0;
        right: -240px;
    }
    .project_sub-title {
        font-size: 2.6rem;
        margin-bottom: 40px;
    }
    .project_sub-info-list dt {
        width: 100%;
        margin-bottom: 15px;
    }
    .project_sub-info-list dd {
        width: 100%;
        margin-bottom: 35px;
        line-height: 1.4;
    }
    .project_ba-wrapper {
        margin-top: 80px;
    }
    .project_ba-box {
        flex-wrap: wrap;
    }
    .project_ba-box .ba-item {
        width: 100%;
        margin: 0px 10px;
        margin-bottom: 20px;
    }
    .project_ba-box .arrow-g {
        transform: rotate(90deg);
        height: 2px;
        width: 45px;
    }
    .project_ba-box .arrow-g::before, .project_ba-box .arrow-g::after {
        width: 10px;
        height: 2px;
        transform-origin: calc(100% - 0.5px) 52%;
    }
    .project_ba-box .arrow-g + .ba-item {
        margin-top: 40px;
        margin-bottom: 0px;
    }
    .project_preview {
        margin-top: 80px;
    }
    .project_preview h3 {
        font-size: 2.6rem;
    }
		.js-slick li img {
  height: 180px;
}
    .preview-wrapper .slick-prev, .preview-wrapper .slick-next {
        width: 40px;
    }
    .preview-wrapper .slick-prev::before {
        width: 13px;
        height: 13px;
    }
    .preview-wrapper .slick-next::before {
        width: 13px;
        height: 13px;
    }
}
@media screen and (max-width: 780px) {
    #top-project .top_heading, #top-column .top_heading {
        text-align: center;
    }
    .top_project-wrapper {
        flex-wrap: wrap;
    }
    .top_project-wrapper li {
        width: 100%;
    }
    .top_project-text {
        margin: -50px auto 80px;
    }
    .top_project-wrapper li:last-child .top_project-text {
        margin: -50px auto 0px;
    }
    .top_project-btn-area {
        width: 100%;
    }
    .top_project-btn-area .btn-area-box {
        ;
        margin: 0px auto;
    }
    .top_project-btn-area .btn_bg-g {
        margin: 0px auto;
    }
    .top_column-wrapper {
        flex-wrap: wrap;
    }
    .top_column-wrapper li {
        width: 100%;
        margin-bottom: 80px;
    }
    .top_column-wrapper li:last-child {
        margin-bottom: 0px;
    }
    .top_column-btn-area .btn_bg-g {
        margin: 0px auto;
    }
    .top_news-list-area .btn_bg-g {
        margin: 0px auto;
    }
}
@media screen and (max-width: 650px) {
    .main_mv-text h1 {
        font-size: 2.4rem;
        padding: 5px 10px 10px 20px;
        height: 54px;
    }
    .main_mv-text .btn_g {
        width: 208px;
        padding: 10px 20px 10px 20px;
    }
    .top_service-content {
        margin-top: 80px;
        padding: 0px 20px;
    }
    .top_service-text h2 {
        font-size: 2.4rem;
        letter-spacing: 0.2rem;
        font-feature-settings: "palt";
    }
    .top_service-img {
        width: 100%;
        margin: 0px auto 60px;
    }
    .top_service-text h2 + .display_sp + p {
        font-size: 1.6rem;
        margin: 20px 0px 30px;
    }
    .top_head-sub {
        font-size: 1.4rem;
        padding-bottom: 27px;
    }
    .top_project-wrapper {
        padding: 0px 20px;
    }
    .top_project-text p {
        margin-bottom: 8px;
    }
    .top_project-info-list {
        margin-bottom: 15px;
    }
    .top_project-text .btn_g .btn_arrow-g {
        width: 55px;
    }
    .top_column-wrapper {
        margin: 0px 20px;
    }
    .top_column-wrapper li {
        margin-bottom: 50px;
    }
    .top_news-content {
        margin: 120px 20px 0px;
    }
    .ourvalues_main-wrapper {
        margin: 70px 0px 90px;
    }
    .ov_main-title {
        margin-bottom: 55px;
    }
    .ov_main-title h1 {
        font-size: 3.6rem;
    }
    .ov_main-title p {
        margin-top: 15px;
    }
    .ov_main-title p::after {
        margin: 30px auto 0px;
    }
    .ov_main-heading {
        margin-bottom: 60px;
    }
    .ov_main-heading p {
        font-size: 1.4rem;
    }
    .ov_meaning-main-img {
        padding: 0px;
        margin-bottom: 65px;
    }
    .ov_main-read {
        font-size: 1.6rem;
        padding: 0px 20px;
    }
    .ov_meaning-wrapper {
        justify-content: center;
        flex-wrap: wrap;
        padding: 0px 20px;
    }
    .ov_meaning-logo {
        width: 48%;
        margin-bottom: 50px;
    }
    .ov_meaning-img {
        width: 100%;
    }
    .ov_wf-heading {
        font-size: 2.4rem;
    }
    .ov_wf-read {
        text-align: left;
    }
    .ov_wf-img {
        width: 100%;
        padding: 0px;
    }
    .ov_wf-deco {
        bottom: -80px;
    }
    .ov_wf-item {
        flex-wrap: wrap;
    }
    .ov_wf-item:nth-child(2) {
        justify-content: flex-end;
        flex-direction: column-reverse;
        align-items: flex-end;
    }
    .ov_wf-item-text {
        width: 80%;
    }
    .ov_wf-item:nth-child(1) .ov_wf-item-text {
        margin-left: 20px;
    }
    .ov_wf-item:nth-child(2) .ov_wf-item-text {
        width: 80%;
        margin-top: 0px;
        margin-right: 20px;
    }
    .ov_wf-item:nth-child(3) .ov_wf-item-text {
        width: 80%;
        margin-top: 0px;
        margin-left: 20px;
    }
    .ov_wf-item-text h3 {
        font-size: 2.0rem;
        margin-bottom: 28px;
    }
    .ov_wf-item-text h3::after {
        margin-top: 20px;
    }
    .ov_wf-item-img {
        width: 100%;
        margin-top: 40px;
        padding-right: 20px;
    }
    .ov_wf-item:nth-child(2) .ov_wf-item-img {
        margin-left: 0px;
        padding-right: 0px;
        padding-left: 20px;
    }
    .ov_wf-item:nth-child(3) .ov_wf-item-img {
        margin-top: 40px;
    }
    /*

project column
*/
    .column-list li a {
        flex-wrap: wrap;
    }
    .column-list .column-img {
        width: 100%;
        margin-bottom: 30px;
    }
    .column-list .column-text {
        width: 100%;
    }
    .column-list li:nth-child(n+4) {
        margin-bottom: 40px;
    }
    .column-list li:nth-child(n+4) .column-img {
        width: 40%;
        margin-bottom: 0px;
    }
    .column-list li:nth-child(n+4) .column-text {
        width: 55%;
    }
    .column-list li:nth-child(n+4) .column-text .title {
        font-size: 1.6rem;
    }
    .column-list li:nth-child(n+4) .column-text .text {
        font-size: 1.4rem;
    }
    .column_upside-area {
        margin: 50px auto 30px;
    }
    .column_sub-content {
        margin: 0px auto 0px;
    }
    .sub_pagination ul {
        flex-wrap: wrap;
    }
    .column_sub-content h2 {
        font-size: 2.0rem;
    }
    .column_sub-content .column-img {
        margin-bottom: 50px;
    }
    .sub_column-wrapper {
        margin-top: 70px;
    }
    .o-articles-toc {
        margin-bottom: 70px;
    }
    .o-articles-toc_head {
        font-size: 2.8rem;
    }
    .column_sub-content p + h3 {
        margin-top: 50px;
    }
    .column_sub-content p + h4 {
        margin-top: 50px;
    }
    .p-articles_body p + ul {
        margin-top: 50px;
    }
    .column-pagination {
        margin: 70px auto 0px;
        padding: 0px 20px;
    }
    .column-pn-item .before .text {
        margin-left: 3px;
    }
    .column-pn-item .next .text {
        margin-right: 3px;
    }
    .project-list li:nth-child(5), .project-list li:nth-child(6) {
        margin-bottom: 50px;
    }
    .project-list li:nth-child(n+7) .project-text h3 {
        font-size: 1.6rem;
    }
    .project-info-list li {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    .project_list-wrapper + .project_search-content {
        margin-top: 50px;
    }
    .sub_pagination li {
        margin-bottom: 10px;
    }
}