@charset "utf-8";

.headerArea {
    position: relative;
    z-index: 10;
}

.headerArea::after {
    content: "";
    background: url(../img/page_bg.webp) no-repeat;
    background-size: 100% 100%;
    background-position: center 0;
    height: 200px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    z-index: -1;
}

.home .headerArea::after {
    content: none;
}


/** PC **/
@media only screen and (min-width: 768px) {}

/** SP **/
@media only screen and (max-width: 767px) {

    .home .headerArea {
        z-index: 10;
    }

    .headerArea {
        position: relative;
        z-index: auto;
    }

    .headerArea::after {}

}


/* Breadcrumb */
.c-breadcrumb {
    margin: 0px 0 60px;
}

.c-breadcrumb ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5em;
    font-size: 14px;
    color: #667892;
}

.c-breadcrumb li {
    display: flex;
    align-items: center;
}

/* 区切りを「・」に */
.c-breadcrumb li+li::before {
    content: "・";
    color: #A9C8B8;
    margin: 0 .5em;
}

/* リンク/現在地 */
.c-breadcrumb a {
    color: #208443;
    text-decoration: none;
}

.c-breadcrumb a:hover {
    text-decoration: underline;
}

.c-breadcrumb .is-current {
    color: #009E4F;
    font-weight: 600;
    text-decoration: underline;
}

/* ホームアイコン（絵文字→SVGに差し替え可） */
.c-breadcrumb__home {
    display: inline-block;
    margin-right: .25em;
    font-size: 16px;
    line-height: 1;
    transform: translateY(1px);
}

.c-breadcrumb__home img {
    width: 15px;
}

/** PC **/
@media only screen and (min-width: 768px) {}

/** SP **/
@media only screen and (max-width: 767px) {

    .c-breadcrumb {
        margin: 0px 0 10vmin;
    }

}



/***********

事業案内

*************************/

.page .businessWrap {
    padding-top: 200px;
    padding-bottom: 200px;
    position: relative;
    background: url(../img/business_bg.webp) no-repeat;
    background-size: 100% 100%;
    width: 100%;
}

.page .businessWrap h1,
.page .businessWrap h2 {
    margin-bottom: 50px;
}

.page .businessWrap .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px 30px;
    margin-bottom: 100px;
    position: relative;
}

.page .businessWrap .flex .box {
    width: calc(100% / 3 - 20px);
}

.page .businessWrap .flex .box .img {
    margin-bottom: 20px;
}

.page .businessWrap .flex .box .sub_ttl {
    color: #208443;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: clamp(18px, 2.8vw, 26px);
    font-weight: 700;
    margin-bottom: 20px;
}

.page .businessWrap .flex .box .txt {
    font-size: 20px;
}

.page .businessWrap .link {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: right;
    justify-content: right;
    max-width: 230px;
    margin-left: auto;
}

.page .businessWrap .link img {
    width: 80px;
    height: 80px;
}

.page .businessWrap .btn_area {
    text-align: center;
}

.page .businessWrap .link_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all .2s;
    line-height: 1.3;
    background-color: #fff;
    border-radius: 100px;
    min-height: 60px;
    border: 1px solid #A9C8B8;
    padding: 4px;
    min-width: 250px;
    font-size: clamp(16px, 2.5vw, 26px);
    cursor: pointer;
    margin: auto;
    gap: 10px;
    font-size: 16px;
}

.page .businessWrap .link_btn::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid;
    border-color: transparent transparent #208443 #208443;
    transform: rotate(45deg);
}

.page .businessWrap .link_btn:hover {
    border: 0;
    background-color: #208443;
    color: #fff;
}

/** PC **/
@media only screen and (min-width: 768px) {}

/** SP **/
@media only screen and (max-width: 767px) {

    .page .businessWrap {
        margin-top: 23vmin;
        padding-top: 0;
        padding-bottom: 10vmin;
        position: relative;
        background: url(../img/business_bg.webp) no-repeat;
        background-size: 100% 100%;
        width: 100%;
    }

    .page .businessWrap h1,
    .page .businessWrap h2 {
        margin-bottom: 6vmin;
        width: 75%;
    }

    .page .businessWrap .flex .box {
        width: 100%;
    }

    .page .businessWrap .flex {
        gap: 8vmin;
        margin-bottom: 15vmin;
    }

    .page .businessWrap .flex .box .img {
        margin-bottom: 4vmin;
    }

    .page .businessWrap .flex .box .sub_ttl {
        margin-bottom: 2vmin;
    }

    .page .businessWrap .flex .box .sub_ttl a {
        font-size: 4vmin;
        gap: 5vmin;
    }

    .page .businessWrap .flex .box .sub_ttl img {
        width: 20px;
        height: 20px;
    }

    .page .businessWrap .flex .box .txt {
        font-size: 3.2vmin;
    }

    .page .businessWrap .link {
        font-size: 3.2vmin;
        display: flex;
        align-items: center;
        gap: 5vmin;
        text-align: right;
        justify-content: right;
        max-width: 100%;
        margin-left: auto;
    }

    .page .businessWrap .link img {
        width: 40px;
        height: 40px;
    }

}


/***********

施工事例

*************************/

.page .worksWrap {
    padding-top: 100px;
    padding-bottom: 100px;
    margin: 100px 0 0;
}

.page .worksWrap h1,
.page .worksWrap h2 {
    margin-bottom: 80px;
}

.page .worksWrap .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px 140px;
    margin-bottom: 80px;
    position: relative;
}

.page .worksWrap .flex .box {
    width: calc(100% / 2 - 70px);
    position: relative;
}

.page .worksWrap .flex .category {
    background: #d7ea00;
    text-align: center;
    max-width: 100%;
    width: 134px;
    position: absolute;
    top: -15px;
    left: -40px;
}

.page .worksWrap .flex .box .img {}

.page .worksWrap .flex .box .txt_box {
    background: #fff;
    border-top: 3px solid #208443;
    max-width: 100%;
    width: 385px;
    margin-top: -30px;
    margin-bottom: 15px;
    margin-left: auto;
    padding: 25px 35px;
    z-index: 10;
    position: relative;
}

.page .worksWrap .flex .box .txt_box .date {
    margin-bottom: 10px;
}

.page .worksWrap .flex .box .txt_box .ttl {
    font-size: 18px;
    font-weight: 700;
}

.page .worksWrap .txt_link {
    display: block;
    text-align: right;
    color: #fff;
    position: relative;
}

.page .worksWrap .txt_link::before {
    content: "";
    width: 8px;
    height: 8px;
    border: 2px solid;
    border-color: #fff #fff transparent transparent;
    transform: rotate(45deg);
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.page .worksWrap .link {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: right;
    justify-content: right;
    color: #fff;
    max-width: 235px;
    margin-left: auto;
}

.page .worksWrap .link img {
    width: 80px;
    height: 80px;
}

/** PC **/
@media only screen and (min-width: 768px) {}

/** SP **/
@media only screen and (max-width: 767px) {

    .page .worksWrap {
        padding-top: 10vmin;
        padding-bottom: 10vmin;
        margin-top: 10vmin;
        position: relative;
    }

    .page .worksWrap h1,
    .page .worksWrap h2 {
        margin-bottom: 15vmin;
        max-width: 75%;
    }

    .page .worksWrap .flex {
        gap: 5vmin 3vmin;
        margin-bottom: 10vmin;
    }

    .page .worksWrap .flex .box {
        width: calc(100% / 2 - 2vmin);
        position: relative;
    }

    .page .worksWrap .flex .category {
        background: #d7ea00;
        text-align: center;
        max-width: 100%;
        width: max-content;
        position: absolute;
        top: -3vmin;
        left: 0;
        padding: 0 2vmin 1vmin;
        line-height: 1.5;
    }

    .page .worksWrap .flex .category a {
        font-size: 3vmin;
    }

    .page .worksWrap .flex .box .txt_box {
        background: #fff;
        border-top: 3px solid #208443;
        max-width: 100%;
        width: 85%;
        margin-top: -5vmin;
        margin-bottom: 3vmin;
        margin-left: auto;
        padding: 2vmin 3vmin;
        z-index: 10;
        position: relative;
    }

    .page .worksWrap .flex .box .txt_box .date {
        margin-bottom: 0;
        font-size: 3.2vmin;
    }

    .page .worksWrap .txt_link {
        font-size: 3.2vmin;
    }

    .page .worksWrap .txt_link::before {
        margin-right: 2vmin;
        width: 6px;
        height: 6px;
    }

    .page .worksWrap .link {
        font-size: 3.2vmin;
        gap: 3vmin;
        max-width: 100%;
        margin-left: auto;
        margin-right: 0vmin;
    }

    .page .worksWrap .link img {
        width: 40px;
        height: 40px;
    }

    .page .worksWrap .flex::before {
        width: 90px;
        height: 90px;
        right: -15vmin;
        top: -30vmin;
    }

    .page .worksWrap .flex::after {
        width: 90px;
        height: 100px;
        left: -10vmin;
        bottom: -35vmin;
    }

    .page .worksWrap .flex .box .txt_box .ttl {
        font-size: 3.1vmin;
    }

}


/***** companyWrap ****/

.page .companyWrap {
    position: relative;
    margin: 100px 0 0;
}

.page .companyWrap .ttl {
    margin-top: 100px;
    margin-bottom: 50px;
}

.page .companyWrap .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 200px;
    position: relative;
}

.page .companyWrap .flex .txt_box {
    width: 40%;
}

.page .companyWrap .flex .txt_box ul {
    margin-bottom: 80px;
}

.page .companyWrap .flex .txt_box ul li {
    border-bottom: 1px solid #8fad9a;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.page .companyWrap .flex .txt_box ul li a {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #208443;
}

.page .companyWrap .flex .txt_box ul li a img {
    width: 35px;
    height: 35px;
}

.page .companyWrap .link {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: right;
    justify-content: right;
    max-width: 235px;
    margin-left: auto;
}

.page .companyWrap .link img {
    width: 80px;
    height: 80px;
}

/** PC **/
@media only screen and (min-width: 768px) {}

/** SP **/
@media only screen and (max-width: 1080px) {

.page .companyWrap .flex {
    margin-bottom: 50px;
}    

.page .companyWrap .flex .txt_box {
    width: 100%;
    margin-top: 50px;
}

}

/** SP **/
@media only screen and (max-width: 767px) {

    .page .companyWrap {
        margin: 25vmin 0 0;
    }

    .page .companyWrap .ttl {
        margin-top: 0;
        margin-bottom: 15vmin;
        max-width: 65%;
        padding-top: 0vmin;
    }

    .page .companyWrap .flex {
        margin-bottom: 0vmin;
        flex-direction: column-reverse;
    }

    .page .companyWrap .flex .img {
        max-width: 80%;
        margin: auto;
        margin-bottom: 0;
    }

    .page .companyWrap .flex .txt_box {
        width: 100%;
        margin-bottom: 10vmin;
    }

    .page .companyWrap .flex .txt_box ul {
        margin-bottom: 10vmin;
    }

    .page .companyWrap .flex .txt_box ul li {
        border-bottom: 1px solid #8fad9a;
        padding-bottom: 3vmin;
        margin-bottom: 4vmin;
    }

    .page .companyWrap .flex .txt_box ul li a {
        font-size: 5vmin;
    }

    .page .companyWrap .flex .txt_box ul li a img {
        width: 20px;
        height: 20px;
    }

    .page .companyWrap::after {
        width: 124px;
        height: 126px;
        right: 10vmin;
        top: auto;
        bottom: 5vmin;
        z-index: -1;
    }

    .page .companyWrap .link {
        font-size: 3.2vmin;
        gap: 3vmin;
        max-width: 100%;
        margin-left: auto;
    }

    .page .companyWrap .link img {
        width: 40px;
        height: 40px;
    }


}


/***** thoughtWrap ****/

.page .thoughtWrap {
    margin-top: 200px;
    position: relative;
    background: url(../img/business_bg.webp) no-repeat;
    background-size: 100% 100%;
    width: 100%;
}

.page .thoughtWrap .flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.page .thoughtWrap .flex .ttl {
    font-size: 50px;
    color: #208443;
    font-weight: 900;
    width: 50%;
    line-height: 1.5;
    text-align: left;
}

.page .thoughtWrap .flex:nth-child(3) .ttl {
    text-align: right;
}

.page .thoughtWrap .flex .txt_box {
    width: 50%;
}

.page .thoughtWrap .flex .txt_box .txt {
    font-size: 22px;
    margin-bottom: 30px;
}

.page .thoughtWrap .flex .txt_box .link {
    display: block;
    font-size: 22px;
    color: #208443;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page .thoughtWrap .flex .txt_box .img_area {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.page .thoughtWrap .flex .txt_box .img_area img {
    width: calc(100% / 2 - 15px);
}

.page .thoughtWrap .flex .txt_box .note {
    font-size: 12px;
    color: #999;
}

.page .thoughtWrap .btn_area {
    text-align: center;
    margin-bottom: 100px;
}

.page .thoughtWrap .link_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all .2s;
    line-height: 1.3;
    background-color: #fff;
    border-radius: 100px;
    min-height: 60px;
    border: 1px solid #A9C8B8;
    padding: 4px;
    min-width: 250px;
    font-size: 16px;
    cursor: pointer;
    margin: auto;
    gap: 10px;
}

.page .thoughtWrap .link_btn::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid;
    border-color: transparent transparent #208443 #208443;
    transform: rotate(45deg);
}

.page .thoughtWrap .link_btn:hover {
    border: 0;
    background-color: #208443;
    color: #fff;
}

.page .thoughtWrap .message_area {
    margin: 100px 0;
}

.page .thoughtWrap .message_area h2 {
    font-size: 45px;
    color: #38a169;
    font-weight: 700;
    border-bottom: 1px solid #38a169;
    padding-bottom: 10px;
    margin-bottom: 50px;
}

.page .thoughtWrap .message_area .name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page .thoughtWrap .message_area .txt_box {
    margin: 0 0 60px;
}

.page .thoughtWrap .message_area .txt_box:last-child {
    margin-top: 60px;
    margin-bottom: 0;
}

.page .thoughtWrap .message_area .txt_box .ttl {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}


/** PC **/
@media only screen and (min-width: 768px) {}

/** SP **/
@media only screen and (max-width: 767px) {

    .page .thoughtWrap {
        margin-top: 25vmin;
        position: relative;
    }

    .page .thoughtWrap .flex {
        z-index: 1;
        margin-bottom: 5vmin;
    }

    .page .thoughtWrap .flex .ttl {
        font-size: 8vmin;
        width: 100%;
        margin-bottom: 6vmin;
        position: relative;
        z-index: 1;
    }

    .page .thoughtWrap .flex .txt_box .img_area {
        gap: 8vmin;
    }

    .page .thoughtWrap .flex .txt_box {
        width: 100%;
    }

    .page .thoughtWrap .flex .txt_box .txt {
        font-size: 3.8vmin;
        margin-bottom: 6vmin;
        margin-left: 0vmin;
    }

    .page .thoughtWrap .flex .txt_box .img_area img {
        width: calc(100% / 2 - 2vmin);
    }

    .page .thoughtWrap .flex .txt_box .img_area {
        gap: 3vmin;
    }

    .page .thoughtWrap .inner .flex.reserve {
        flex-direction: column-reverse;
    }

    .page .thoughtWrap .inner .flex.reserve .ttl {
        text-align: left;
    }

    .page .thoughtWrap .message_area {
        margin: 10vmin 0;
    }

    .page .thoughtWrap .message_area h2 {
        font-size: 5.6vmin;
        margin-bottom: 5vmin;
        padding-bottom: 1vmin;
    }

    .page .thoughtWrap .message_area .name {
        font-size: 5vmin;
        margin-bottom: 2vmin;
    }

    .page .thoughtWrap .message_area .txt_box {
        margin: 0 0 5vmin;
    }

    .page .thoughtWrap .message_area .txt_box:last-child {
        margin-top: 5vmin;
        margin-bottom: 0;
    }

    .page .thoughtWrap .message_area .txt_box .ttl {
        font-size: 4.5vmin;
        margin-bottom: 0;
    }

}


/***** newsWrap ****/

.archive .newsWrap {
    position: relative;
    margin: 100px 0;
}

.archive .newsWrap::before {
    content: "";
    background: url(../img/news_bg.png) no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 950px;
    left: 0;
    position: absolute;
    top: -10px;
    z-index: -1;
}

.archive .newsWrap .flex_ttl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.archive .newsWrap .flex_ttl .link {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: right;
    justify-content: right;
    max-width: 235px;
    margin-left: auto;
}

.archive .newsWrap .flex_ttl .link img {
    width: 80px;
    height: 80px;
}

.archive .newsWrap .news-list {
    padding-top: 20px;
    border-top: 1px solid #8fad9a;
}

.archive .newsWrap .news-item__inner {
    display: flex;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}

.archive .newsWrap .news-item {
    border-bottom: 1px solid #8fad9a;
}

.archive .newsWrap .news-item {
    padding: 20px 0;
    border-bottom: 1px solid #8fad9a;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.archive .newsWrap .news-meta {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 35%;
}

.archive .newsWrap .news-category {
    display: inline-block;
    background: #eafff1;
    font-weight: bold;
    padding: 6px 50px;
    border-radius: 999px;
    margin-bottom: 8px;
    font-size: 18px;
}

.archive .newsWrap .news-category a {
    color: #16853b;
}

.archive .newsWrap .news-date {
    color: #16853b;
    font-weight: bold;
    font-size: 18px;
}

.archive .newsWrap .news-body {
    display: flex;
    align-items: center;
    gap: 50px;
}

.archive .newsWrap .news-thumb img {}

.archive .newsWrap .news-title {
    font-size: 20px;
}

.archive .newsWrap .btn_area {
    text-align: center;
}

.archive .newsWrap .link_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all .2s;
    line-height: 1.3;
    background-color: #fff;
    border-radius: 100px;
    min-height: 60px;
    border: 1px solid #A9C8B8;
    padding: 4px;
    min-width: 250px;
    font-size: 16px;
    cursor: pointer;
    margin: auto;
    gap: 10px;
}

.archive .newsWrap .link_btn::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid;
    border-color: transparent transparent #208443 #208443;
    transform: rotate(45deg);
}

.archive .newsWrap .link_btn:hover {
    border: 0;
    background-color: #208443;
    color: #fff;
}


/** PC **/
@media only screen and (min-width: 768px) {}

/** SP **/
@media only screen and (max-width: 767px) {

    .archive .newsWrap {
        position: relative;
        margin: 15vmin 0 20vmin;
    }

    .archive .newsWrap .flex_ttl {
        margin-bottom: 10vmin;
    }

    .archive .newsWrap .flex_ttl h1,
    .archive .newsWrap .flex_ttl h2 {
        max-width: 40%;
    }

    .archive .newsWrap .flex_ttl .link {
        font-size: 4vmin;
        gap: 5vmin;
        max-width: 60%;
        margin-left: auto;
        display: none;
    }

    .archive .newsWrap .flex_ttl .link img {
        width: 40px;
        height: 40px;
    }

    .archive .newsWrap .news-list {
        padding-top: 0;
        border-top: 1px solid #8fad9a;
    }

    .archive .newsWrap .news-item {
        padding: 5vmin 0;
    }

    .archive .newsWrap .news-item__inner {
        padding: 0;
        flex-wrap: wrap;
    }

    .archive .newsWrap .news-category {
        padding: 1vmin 5vmin;
        margin-bottom: 0;
        font-size: 3.2vmin;
    }

    .archive .newsWrap .news-date {
        color: #16853b;
        font-weight: bold;
        font-size: 3.2vmin;
    }

    .archive .newsWrap .news-meta {
        display: flex;
        align-items: center;
        gap: 5vmin;
        width: 100%;
    }

    .archive .newsWrap .news-body {
        gap: 5vmin;
    }

    .archive .newsWrap .news-body .news-thumb {
        width: 190px;
    }

    .archive .newsWrap .news-title {
        font-size: 4vmin;
        width: 90%;
    }

}


/***** worksWrap ****/

.archive .worksWrap {
    margin: 200px 0;
}

.archive .worksWrap h1,
.archive .worksWrap h2 {
    margin-bottom: 80px;
}

.archive .worksWrap h1 img,
.archive .worksWrap h2 img {
    /*max-width: 100%;
    width: 350px;*/
}

.archive .worksWrap .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 80px 140px;
    margin-bottom: 80px;
    position: relative;
}

.archive .worksWrap .flex .box {
    width: calc(100% / 2 - 70px);
    position: relative;
}

.archive .worksWrap .flex .category {
    background: #d7ea00;
    text-align: center;
    max-width: 100%;
    width: 134px;
    position: absolute;
    top: -15px;
    left: -40px;
}

.home .worksWrap .flex .box .img {}

.archive .worksWrap .flex .box .txt_box {
    background: #fff;
    border-top: 3px solid #208443;
    max-width: 100%;
    width: 390px;
    margin-top: -30px;
    margin-bottom: 15px;
    margin-left: auto;
    padding: 25px 30px;
    z-index: 10;
    position: relative;
}

.archive .worksWrap .flex .box .txt_box .date {
    margin-bottom: 10px;
}

.archive .worksWrap .flex .box .txt_box .ttl {
    font-size: 18px;
    font-weight: 700;
}

.archive .worksWrap .txt_link {
    display: block;
    text-align: right;
    position: relative;
    color: #208443;
}

.archive .worksWrap .txt_link::before {
    content: "";
    width: 8px;
    height: 8px;
    border: 2px solid;
    border-color: #208443 #208443 transparent transparent;
    transform: rotate(45deg);
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.archive .worksWrap .link {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: right;
    justify-content: right;
    color: #208443;
    max-width: 235px;
    margin-left: auto;
}

.archive .worksWrap .link img {
    width: 80px;
    height: 80px;
}

body.post-type-archive-works .site-main {
    margin-top: 100px;
}


.archive .worksWrap .btn_area {
    text-align: center;
}

.archive .worksWrap .link_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all .2s;
    line-height: 1.3;
    background-color: #fff;
    border-radius: 100px;
    min-height: 60px;
    border: 1px solid #A9C8B8;
    padding: 4px;
    min-width: 250px;
    font-size: 16px;
    cursor: pointer;
    margin: auto;
    gap: 10px;
}

.archive .worksWrap .link_btn::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid;
    border-color: transparent transparent #208443 #208443;
    transform: rotate(45deg);
}

.archive .worksWrap .link_btn:hover {
    border: 0;
    background-color: #208443;
    color: #fff;
}



/** PC **/
@media only screen and (min-width: 768px) {}

/** SP **/
@media only screen and (max-width: 767px) {

    .archive .worksWrap {
        margin: 25vmin 0 5vmin;
        position: relative;
    }

    .archive .worksWrap h1,
    .archive .worksWrap h2 {
        margin-bottom: 15vmin;
        max-width: 75%;
    }

    .archive .worksWrap .flex {
        gap: 10vmin 3vmin;
        margin-bottom: 10vmin;
    }

    .archive .worksWrap .flex .box {
        width: calc(100% / 2 - 2vmin);
        position: relative;
    }

    .archive .worksWrap .flex .category {
        background: #d7ea00;
        text-align: center;
        max-width: 100%;
        width: max-content;
        position: absolute;
        top: -3vmin;
        left: 0;
        padding: 0 2vmin 1vmin;
        line-height: 1.5;
        font-size: 3vmin;
    }

    .archive .worksWrap .flex .category a {
        font-size: 3vmin;
    }

    .archive .worksWrap .flex .box .txt_box {
        background: #fff;
        border-top: 3px solid #208443;
        max-width: 100%;
        width: 85%;
        margin-top: -5vmin;
        margin-bottom: 3vmin;
        margin-left: auto;
        padding: 2vmin 3vmin;
        z-index: 10;
        position: relative;
    }

    .archive .worksWrap .flex .box .txt_box .date {
        margin-bottom: 0;
        font-size: 3.2vmin;
    }

    .archive .worksWrap .txt_link {
        font-size: 3.2vmin;
    }

    .archive .worksWrap .txt_link::before {
        margin-right: 2vmin;
        width: 6px;
        height: 6px;
    }

    .archive .worksWrap .link {
        font-size: 3.2vmin;
        gap: 3vmin;
        max-width: 100%;
        margin-left: auto;
        margin-right: 0vmin;
    }

    .archive .worksWrap .link img {
        width: 40px;
        height: 40px;
    }

    .archive .worksWrap .flex::before {
        width: 90px;
        height: 90px;
        right: -15vmin;
        top: -30vmin;
    }

    .archive .worksWrap .flex::after {
        width: 90px;
        height: 100px;
        left: -10vmin;
        bottom: -35vmin;
    }

    .archive .worksWrap .flex .box .txt_box .ttl {
        font-size: 3.1vmin;
    }

    body.post-type-archive-works .site-main {
        margin-top: 0;
    }

}



/**************

詳細

*************************/

body.single .site-main {
    margin: 200px 0 0;
}

body.single .site-main h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
}

body.single .site-main .inner {
    max-width: 1200px;
    width: 94%;
    margin: 0 auto;
}

body.single .site-main .inner article.news,
body.single .site-main .inner article.works {}

body.single .site-main h1.news-title {
    font-size: 30px;
    margin-bottom: 10px;
}

body.single .site-main .news-meta {
    color: #888;
    margin-bottom: 60px;
}

body.single .site-main .news-meta span {}

body.single .site-main .news-thumbnail {
    text-align: center;
    margin: 60px 0;
}

body.single .site-main .news-thumbnail img {
    max-width: 100%;
    width: 800px;
    margin: auto;
}

body.single .site-main .news-navigation a {
    text-decoration: none;
    font-weight: bold;
}

body.single .site-main .news-navigation a:hover {
    text-decoration: underline;
}

body.single .site-main .news-content {
    max-width: 100%;
    margin: auto;
    width: 800px;
}

body.single .site-main .news-content p {
    font-size: 18px;
    line-height: 1.8;
}

body.single .site-main .news-navigation {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}

body.single .site-main .btn_area {
    text-align: center;
}

body.single .site-main .link_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all .2s;
    line-height: 1.3;
    background-color: #fff;
    border-radius: 100px;
    min-height: 60px;
    border: 1px solid #A9C8B8;
    padding: 4px;
    min-width: 250px;
    font-size: 16px;
    cursor: pointer;
    margin: 100px auto;
    gap: 10px;
}

body.single .site-main .link_btn::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid;
    border-color: transparent transparent #208443 #208443;
    transform: rotate(45deg);
}

body.single .site-main .link_btn:hover {
    border: 0;
    background-color: #208443;
    color: #fff;
}



/** PC **/
@media only screen and (min-width: 768px) {

    body.single .site-main .link_btn {
        padding: 4px;
        min-height: 64px;
        min-width: 280px;
        font-size: 16px;
    }


}

/** SP **/
@media only screen and (max-width: 767px) {

    body.single .site-main .inner article.news,
    body.single .site-main .inner article.works {}

    body.single .site-main .news-meta {
        margin-bottom: 5vmin;
        font-size: 4vmin;
    }

    body.single .site-main {
        margin: 25vmin 0 0;
        position: relative;
    }

    body.single .site-main h1.news-title {
        font-size: 5vmin;
        margin-bottom: 10px;
    }

    body.single .site-main .news-thumbnail {
        text-align: center;
        margin: 0 0 5vmin;
    }

    body.single .site-main .link_btn {
        margin: 10vmin auto;
    }

}


/*****************

プライバシーポリシー

***********************/
.site-main .privacy {
    max-width: 800px;
    margin: 100px auto;
}

.site-main .privacy h2 {
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
    margin-top: 30px;
}

.site-main .privacy p {
    line-height: 1.6;
    margin: 10px 0;
}

.site-main .privacy ul {
    padding-left: 20px;
    margin: 10px 0;
    list-style: disc;
}

.site-main .privacy ul li {
    margin-bottom: 5px;
}

/** SP **/
@media only screen and (max-width: 767px) {

    body.privacy .site-main {
        margin: 25vmin auto 5vmin;
        position: relative;
    }

    .site-main .privacy {
        margin: 0;
    }

    .site-main .privacy h2 {
        font-size: 5vmin;
    }

}

/**************

お問い合わせ

*************************/

body.contact .c-breadcrumb {
    margin-top: 200px;
}

body.recruit .site-main {
    margin-top: 120px;
    position: relative;
}

body.confirm .site-main {
    margin-top: 120px;
    position: relative;
}

body.recruit_confirm .site-main {
    margin-top: 120px;
    position: relative;
}

body.thanks .site-main {
    margin-top: 120px;
    position: relative;
}

body.recruit_thanks .site-main {
    margin-top: 120px;
    position: relative;
}



.site-main main.contact {
    max-width: 800px;
    margin: 0px auto 100px;
}

.site-main .contact .f-item {}

.site-main .contact .f-item input[type="text"],
.site-main .contact .f-item input[type="email"],
.site-main .contact .f-item input[type="tel"] {
    width: 100%;
}

.site-main .contact .f-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4em;
    letter-spacing: 0.05em;
    color: #000;
    margin-bottom: 4px;
}

.site-main .contact .f-title .red {
    color: #d80000;
}

.site-main .contact p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    letter-spacing: .075em;
    line-height: 1.8;
    ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
    -webkit-overflow-scrolling: touch;
}

.site-main .complete {
    margin: 100px 0;
}

.site-main .complete .__btn {
    display: block;
    width: 200px;
    margin: auto;
    border: 3px solid #208443;
    text-align: center;
    font-size: 14px;
    padding: 15px 0;
    transition: 0.3s;
    cursor: pointer;
    margin-top: 15px;
}

/* 全体ラッパー */
.site-main .contact .wpcf7 form {
    max-width: 720px;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
}

/* 各項目ブロック */
.site-main .contact .f-item {
    margin-bottom: 24px;
}

/* ラベル部分 */
.site-main .contact .f-title p {
    font-weight: 700;
    margin: 0 0 6px;
    color: #1f2937;
    font-size: 15px;
}

.site-main .contact .f-title .red {
    color: #d32f2f;
    font-size: 13px;
    margin-left: .3em;
}

/* 入力欄（共通） */
.site-main .contact .f-item input[type="text"],
.site-main .contact .f-item input[type="email"],
.site-main .contact .f-item input[type="tel"],
.site-main .contact .f-item select,
.site-main .contact .f-item textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 15px;
    color: #1f2937;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
    transition: border-color .2s, box-shadow .2s;
}

.site-main .contact .f-item textarea {
    min-height: 160px;
    resize: vertical;
}

/* プレースホルダ */
.site-main .contact .f-item input::placeholder,
.site-main .contact .f-item textarea::placeholder {
    color: #9ca3af;
}

/* フォーカス時 */
.site-main .contact .f-item input:focus,
.site-main .contact .f-item select:focus,
.site-main .contact .f-item textarea:focus {
    outline: none;
    border-color: #008AD2;
    /* Takaconブルー */
    box-shadow: 0 0 0 3px rgba(0, 138, 210, .2);
}

/* セレクトボックス矢印 */
.site-main .contact .f-item select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #555 50%),
        linear-gradient(135deg, #555 50%, transparent 50%);
    background-position:
        calc(100% - 20px) center,
        calc(100% - 14px) center;
    background-size: 6px 6px;
    background-repeat: no-repeat;
    padding-right: 40px;
}

/* エラーメッセージ */
.site-main .contact span.wpcf7-not-valid-tip {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #d32f2f;
}

.site-main .contact .wpcf7-response-output {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 6px;
}

.site-main .contact .wpcf7 form.invalid .wpcf7-response-output {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #feb2b2;
}

.site-main .contact .wpcf7 form.sent .wpcf7-response-output {
    background: #f0fff4;
    color: #2f855a;
    border: 1px solid #9ae6b4;
}

.site-main .contact .f-item .submit {
    text-align: center;
    margin-top: 60px;
}

/* 送信ボタン */
.site-main .contact .f-item .submit input[type="submit"] {
    display: inline-block;
    width: 300px;
    margin: auto;
    background: #2f855a;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 25px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: opacity .2s, transform .05s;
}

.site-main .contact .f-item .submit input[type="button"] {
    display: inline-block;
    width: 300px;
    margin: auto;
    background: #666;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 25px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: opacity .2s, transform .05s;
    margin-right: 15px;
}

.site-main .contact .f-item .submit input[type="submit"]:hover {
    opacity: .9;
}

.site-main .contact .f-item .submit input[type="submit"]:active {
    transform: translateY(1px);
}


/** SP **/
@media only screen and (max-width: 767px) {

    body.contact .site-main {
        position: relative;
        margin-top: 25vmin;
    }

    body.recruit .site-main {
        position: relative;
        margin-top: 25vmin;
    }

    body.contact .c-breadcrumb {
        margin-top: 10vmin;
    }

    .site-main .contact {
        max-width: 800px;
        margin: 10vmin auto 0;
    }

    body.confirm .site-main {
        margin-top: 25vmin;
    }

    body.recruit_confirm .site-main {
        margin-top: 25vmin;
    }

    body.thanks .site-main {
        margin-top: 25vmin;
    }

    body.recruit_thanks .site-main {
        margin-top: 25vmin;
    }

    .site-main .contact .f-item .submit input[type="button"] {
        margin-right: 0;
        margin-bottom: 3vmin;
    }

    .site-main .complete {
        margin: 0;
    }

}


/**************

理念

*************************/

main.philosophy {
    margin: 200px 0 100px;
}

/* Hero */
.philosophy .ph-hero {
    position: relative;
    text-align: center;
}

.philosophy .ph-hero__en {
    font-size: 14px;
    margin-bottom: 12px;
    color: #208443;
}

.philosophy .ph-hero__ttl {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #208443;
}

.philosophy .ph-hero__lead {
    font-size: 20px;
    max-width: 870px;
    margin: 0 auto;
}

/* セクション共通 */
.philosophy .ph-block {
    max-width: 1200px;
    margin: 100px auto;
}

.philosophy .ph-ttl {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.philosophy .ph-ttl::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #208443;
    margin: 12px auto 0;
}

/* 経営理念 */
.philosophy .ph-txt {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    text-align: center;
}

/* 企業姿勢（value） */
.philosophy .ph-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.philosophy .ph-values li {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
    transition: all .3s;
}

.philosophy .ph-values li:hover {}

.philosophy .ph-values h3 {
    font-size: 20px;
    color: #208443;
    margin-bottom: 12px;
}

.philosophy .ph-values p {
    font-size: 16px;
}

/* 行動指針 */
.philosophy .ph-guidelines {
    list-style: none;
    max-width: 680px;
    margin: 0 auto;
    padding: 0;
    counter-reset: num;
}

.philosophy .ph-guidelines li {
    margin-bottom: 24px;
    position: relative;
    counter-increment: num;
    font-size: 18px;
}

.philosophy .ph-guidelines li::before {
    content: counter(num);
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    background: #208443;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: bold;
    font-size: 13px;
}

/* 未来ビジョン */
.philosophy .ph-block--vision {
    background: #f5f5f5;
    padding: 60px 20px;
}

.philosophy .ph-block--vision .ph-ttl::after {
    background: #00a85a;
}

.philosophy .btn_area {
    text-align: center;
}

.philosophy .link_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all .2s;
    line-height: 1.3;
    background-color: #fff;
    border-radius: 100px;
    min-height: 60px;
    border: 1px solid #A9C8B8;
    padding: 4px;
    min-width: 250px;
    font-size: 16px;
    cursor: pointer;
    gap: 10px;
}

.philosophy .link_btn::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid;
    border-color: transparent transparent #208443 #208443;
    transform: rotate(45deg);
}

.philosophy .link_btn:hover {
    border: 0;
    background-color: #208443;
    color: #fff;
}

/** SP **/
@media only screen and (max-width: 767px) {

    main.philosophy {
        margin: 25vmin 0 5vmin;
        position: relative;
    }

    .philosophy .ph-hero__lead {
        font-size: 4.3vmin;
        max-width: 870px;
        margin: 0 auto;
    }

    .philosophy .ph-block {
        max-width: 1200px;
        margin: 10vmin 0;
    }

    .philosophy .ph-txt {
        font-size: 4vmin;
    }

    .philosophy .ph-guidelines li {
        font-size: 4vmin;
        padding-left: 8vmin;
    }

    .philosophy .ph-guidelines li::before {
        left: 0;
        top: 27%;
    }

}


/**************

代表メッセージ

*************************/


main.message {
    margin: 200px 0 100px;
}

/* TOKENS */
.message.is-takacon {}

.message img {
    max-width: 100%;
    height: auto;
    display: block
}

/* HERO */
.message .ms-hero {
    position: relative;
    color: #208443;
}

.message .ms-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.message .ms-eyecatch {
    font-size: 14px;
    margin-bottom: 12px;
    color: #208443;
}

.message .ms-ttl {
    font-size: 32px;
    margin: 0px auto 32px;
}

.message .ms-lead {
    color: #000;
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* SECTION BASE */
.message .ms-section {}

.message .ms-section:nth-child(even) {
    background: var(--bg)
}

.message .ms-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px
}

.message .ms-h2 {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.message .ms-h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #208443;
    margin: 12px auto 0;
}

.message .ms-txt {
    max-width: 870px;
    margin: auto;
}

.message .name {
    max-width: 900px;
    margin: auto;
    text-align: right;
    margin-top: 30px;
}

/* SPLIT (左右) */
.message .ms-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    margin: 60px auto;
}


@media(max-width:980px) {

    .message .ms-split,
    .message .ms-split--rev {
        grid-template-columns: 1fr
    }

    .message .ms-split--rev .ms-split__img {
        order: 0
    }
}

.message .ms-sign {
    margin-top: 14px;
    font-weight: 700;
    color: #111827
}

.message .ms-statement {
    margin-bottom: 100px;
}

/* STATEMENT (3 cols) */
.message .ms-statement .ms-cols3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0
}

@media(max-width:980px) {
    .message .ms-statement .ms-cols3 {
        grid-template-columns: 1fr
    }
}

.message .ms-card {
    background: #f5f5f5;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 24px 20px;
    box-shadow: var(--shadow);
    text-align: left;
}

.message .ms-card h3 {
    font-size: 20px;
    color: #208443;
    margin-bottom: 12px;
}

.message .ms-card p {
    font-size: 16px;
}

/* LIST */
.message .ms-list {
    margin: 0;
    padding-left: 1.2em;
    color: #374151
}

/* PROFILE / LINKS */
.message .ms-cols2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media(max-width:980px) {
    .message .ms-cols2 {
        grid-template-columns: 1fr
    }
}

.message .ms-box {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

.message .ms-def {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px 16px;
    margin: 0
}

.message .ms-def dt {
    color: #6B7280
}

.message .ms-def dd {
    margin: 0;
    color: #111827
}

.message .btn_area {
    text-align: center;
}

.message .link_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all .2s;
    line-height: 1.3;
    background-color: #fff;
    border-radius: 100px;
    min-height: 60px;
    border: 1px solid #A9C8B8;
    padding: 4px;
    min-width: 250px;
    font-size: 16px;
    cursor: pointer;
    gap: 10px;
}

.message .link_btn::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid;
    border-color: transparent transparent #208443 #208443;
    transform: rotate(45deg);
}

.message .link_btn:hover {
    border: 0;
    background-color: #208443;
    color: #fff;
}

/** SP **/
@media only screen and (max-width: 767px) {

    main.message {
        margin: 25vmin 0 5vmin;
        position: relative;
    }

    .message .ms-lead {
        font-size: 4.3vmin;
    }

    .message .ms-container {
        padding: 0;
    }

    .message .ms-split {
        max-width: 1200px;
        margin: 10vmin 0;
    }

    .message .ms-txt {
        font-size: 4vmin;
    }

    .message .ms-statement {
        margin-bottom: 10vmin;
    }


}


/**************

会社概要

*************************/


main.profile {
    margin: 200px 0 100px;
}

/* HERO */
main.profile .cp-hero {
    position: relative;
    text-align: center;
}

main.profile .cp-ttl {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #208443;
}

main.profile .cp-lead {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* SECTION BASE */
main.profile .cp-section {
    margin: 100px auto;
}

main.profile .cp-section:nth-child(even) {
    background: var(--bg)
}

main.profile .cp-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

main.profile .cp-h2 {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

main.profile .cp-h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #208443;
    margin: 12px auto 0;
}

/* 定義リスト（会社情報） */
main.profile .cp-def {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 14px 20px;
    margin: 0
}

@media(max-width:720px) {
    main.profile .cp-def {
        grid-template-columns: 1fr
    }
}

main.profile .cp-def dt {
    font-weight: 700;
    background-color: #e5eaf0;
    padding-right: 60px;
    padding: 32px 32px;
    font-size: 16px;
}

main.profile .cp-def dd {
    margin: 0;
    background-color: #f2f5f9;
    font-weight: normal;
    padding: 32px 32px;
    font-size: 16px;
}

main.profile .cp-list {
    margin: 0;
    padding-left: 1.2em
}

main.profile .cp-note {}

/* 沿革（タイムライン） */
main.profile .cp-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
}

main.profile .cp-timeline li {
    position: relative;
    padding: 24px 0 40px;
    font-size: 16px;
    border-top: 1px solid #e5eaf0;
}

main.profile .cp-timeline time {}

main.profile .btn_area {
    text-align: center;
}

main.profile .link_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all .2s;
    line-height: 1.3;
    background-color: #fff;
    border-radius: 100px;
    min-height: 60px;
    border: 1px solid #A9C8B8;
    padding: 4px;
    min-width: 250px;
    font-size: 16px;
    cursor: pointer;
    gap: 10px;
}

main.profile .link_btn::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid;
    border-color: transparent transparent #208443 #208443;
    transform: rotate(45deg);
}

main.profile .link_btn:hover {
    border: 0;
    background-color: #208443;
    color: #fff;
}


/** SP **/
@media only screen and (max-width: 767px) {

    main.profile {
        margin: 25vmin 0 5vmin;
        position: relative;
    }

    main.profile .cp-lead {
        font-size: 4.3vmin;
    }

    main.profile .ms-container {
        padding: 0;
    }

    main.profile .cp-section {
        max-width: 1200px;
        margin: 10vmin 0;
    }

    main.profile .cp-container {
        padding: 0;
    }

    main.profile .cp-def {
        gap: 3vmin 0vmin;
    }

    main.profile .cp-def dt {
        padding: 5vmin;
    }

    main.profile .cp-def dd {
        padding: 5vmin;
    }

    main.profile .cp-list {
        margin: 0;
        padding-left: 0;
    }


}




/**************

取り組み

*************************/

/* HERO */


main.attempt {
    margin: 200px 0 100px;
}

main.attempt .in-hero {
    position: relative;
    text-align: center;
}

main.attempt .in-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center
}

main.attempt .in-ttl {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #208443;
}

main.attempt .in-lead {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* SECTION BASE */
main.attempt .in-section {
    margin: 100px auto;
}

main.attempt .in-section:nth-child(even) {
    background: var(--bg)
}

main.attempt .in-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

main.attempt .in-h2 {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

main.attempt .in-h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #208443;
    margin: 12px auto 0;
}

main.attempt .in-eyecatch {
    font-size: 14px;
    margin-bottom: 12px;
    color: #208443;
}

/* SECTION BASE */
main.attempt .in-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}


/* GRID/CARDS */
main.attempt .in-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

main.attempt .in-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

@media(max-width:980px) {

    main.attempt .in-grid-3,
    main.attempt .in-grid-2 {
        grid-template-columns: 1fr
    }
}

main.attempt .in-card,
main.attempt .in-box {
    background: #fbfffc;
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
    transition: all .3s;
}

main.attempt .in-card__ttl {
    font-size: 20px;
    color: #208443;
    margin-bottom: 12px;
}

main.attempt .in-card__ttl {
   text-align: center;
   margin-bottom: 12px;
}



main.attempt #ict .in-h2 {
    color: #022c63;
}

main.attempt #ict .in-card__ttl {
    color: #3271c4;
}

main.attempt #ict .in-box {
    background: #f9fdff;
}

main.attempt #ict .in-h2::after {
    background: #3271c4;
}


main.attempt #dx .in-h2 {
    color: #d13200;
}

main.attempt #dx .in-card__ttl {
    color: #eb5324;
}

main.attempt #dx .in-box {
    background: #fffcfb;
}

main.attempt #dx .in-h2::after {
    background: #eb5324;
}



main.attempt .in-card__txt {
    font-size: 16px;
    text-align: left;
    margin-top: 10px;
}


main.attempt .in-note {
    font-size: 14px;
    color: #888;
    margin-top: 15px;
}


/* 行動指針 */
main.attempt .in-split__body ul {
    list-style: none;
    max-width: 460px;
    margin: 0 auto;
    padding: 0;
    counter-reset: num;
}

main.attempt .in-split__body ul li {
    margin-bottom: 24px;
    position: relative;
    counter-increment: num;
    font-size: 18px;
}

main.attempt .in-split__body ul li::before {
    content: counter(num);
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    background: #208443;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: bold;
    font-size: 13px;
}


/* BADGES */
main.attempt .in-badges {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

main.attempt .in-badges li {
    border: 1px solid #000;
    border-radius: 999px;
    padding: 8px 32px;
    box-shadow: var(--shadow);
}

main.attempt .in-badges li a {
    display: block;
    text-align: center;
    color: inherit;
    text-decoration: none;
}

main.attempt .btn_area {
    text-align: center;
    margin-top: 60px;
}

main.attempt .link_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all .2s;
    line-height: 1.3;
    background-color: #fff;
    border-radius: 100px;
    min-height: 60px;
    border: 1px solid #A9C8B8;
    padding: 4px;
    min-width: 250px;
    font-size: 16px;
    cursor: pointer;
    gap: 10px;
}

main.attempt .link_btn::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid;
    border-color: transparent transparent #208443 #208443;
    transform: rotate(45deg);
}

main.attempt .link_btn:hover {
    border: 0;
    background-color: #208443;
    color: #fff;
}





/* ===== ORG CHART（修正版） ===== */
main.attempt .in-org {
    max-width: 980px;
    margin: 60px auto 0;
    position: relative;
    --line: #cfd8dc;
    /* コネクタ線色 */
    --node-bg: #fff;
    /* 背景白 */
    --node-bd: #ccc;
    /* 枠線色 */
}

/* ノード共通 */
main.attempt .org-node {
    display: inline-block;
    background: var(--node-bg);
    border: 1px solid var(--node-bd);
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 700;
    color: #222;
    position: relative;
}

/* 中央寄せの各段階 */
main.attempt .org-level {
    position: relative;
    text-align: center;
    margin: 22px auto;
}

/* ノード下に縦線（外側配置） */
main.attempt .org-level .org-node::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -28px;
    transform: translateX(-50%);
    width: 2px;
    height: 28px;
    background: var(--line);
}

/* 最下層は線非表示 */
main.attempt .org-level:last-of-type .org-node::after {
    display: none;
}

/* 三分岐（総務部／事業本部／土木部） */
main.attempt .org-level--bridge {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
    margin-top: 60px;
    position: relative;
}

/* 三分岐上に横線 */
main.attempt .org-level--bridge::before {
    content: "";
    position: absolute;
    top: -32px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: var(--line);
}

/* 各ボックス上の縦線（外側） */
main.attempt .org-level--bridge>.org-node::before {
    content: "";
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 32px;
    background: var(--line);
}

/* 子要素（2カラム） */
main.attempt .org-children {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

main.attempt .org-node .org-title {
    display: block;
    margin-bottom: 8px;
    color: #208443;
    font-weight: 800;
}

/* 資格保有者紹介：センター寄せ＆読みやすく */
main.attempt #qualification .in-container{
  max-width: 920px;          /* セクション全体を少し細めにして中央集中 */
}

main.attempt #qualification .in-lead{
  max-width: 760px;
  margin: 0 auto 28px;       /* リード文を中央寄せ */
  text-align: center;
  line-height: 1.9;
  font-size: 16px;           /* 既存より少し小さめで可読性UP */
  color: #333;
}

main.attempt #qualification .in-qual-list{
  /* 1～複数枚でも中央に気持ちよく並ぶ 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
  justify-content: center;
  gap: 28px;*/
  display: block;
}

main.attempt #qualification .qual-card{
  margin: 0 auto;            /* 1枚の時もカード自体を中央に */
  text-align: left;          /* 中身は左揃えの方が読みやすい */
  background: #f6fbf8;       /* ほんのり背景色で箱を浮かせる */
  border: 1px solid #A9C8B8;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
  padding: 28px 24px;
}

main.attempt #qualification .qual-card__head{
  text-align: center;        /* 見出しは中央 */
  margin-bottom: 12px;
}

main.attempt #qualification .in-card__ttl{
  margin: 4px 0 0;
  font-size: 22px;
}

main.attempt #qualification .qual-badge{
  display: inline-block;
  background: #208443;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
}

main.attempt #qualification .qual-meta{
  margin: 12px auto 14px;
  /*display: grid;
  grid-template-columns: 6em 1fr;  
  row-gap: 8px;
  column-gap: 10px;
  max-width: 480px;*/
  text-align: center;
}

main.attempt #qualification .qual-meta dt{
  font-weight: 700;
  color: #1d5e3d;
}

main.attempt #qualification .qual-proof{
  text-align: center;         /* ボタンを中央配置 */
  margin-top: 8px;
}

main.attempt #qualification .link_btn.link_btn--sm{
  min-width: 260px;           /* ボタンを少しワイドに */
  min-height: 50px;
  font-size: 15px;
}

@media (max-width: 768px){
  main.attempt #qualification .in-container{max-width: 100%;}
  main.attempt #qualification .qual-meta{
    grid-template-columns: 1fr; /* スマホは縦積みで読みやすく */
  }
}

/* ボタンの矢印を右側へ配置 */
main.attempt #qualification .link_btn.link_btn--sm::before {
  content: none; /* 左側矢印を無効化 */
}

main.attempt #qualification .link_btn.link_btn--sm::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-color: transparent transparent #208443 #208443;
  transform: rotate(-135deg); /* 右向き矢印 */
  margin-left: 10px;
  transition: all 0.2s ease;
}

/* ホバー時（背景緑時）の矢印色変更 */
main.attempt #qualification .link_btn.link_btn--sm:hover::after {
  border-color: transparent transparent #fff #fff;
}
/** SP **/
@media only screen and (max-width: 767px) {

    main.attempt {
        margin: 25vmin 0 5vmin;
        position: relative;
    }

    main.attempt .in-container {
        padding: 0;
    }

    main.attempt .in-lead {
        font-size: 4.3vmin;
    }

    main.attempt .in-section {
        max-width: 1200px;
        margin: 10vmin 0;
        padding: 0;
    }

    main.attempt .in-grid-3 {
        padding: 0;
    }

    main.attempt .in-split__body ul li {
        font-size: 4vmin;
        padding-left: 8vmin;
    }

    main.attempt .in-split__body ul li::before {
        left: 0;
        top: 30%;
    }


    main.attempt .org-level--bridge {
        grid-template-columns: 1fr;
    }

    main.attempt .org-level--bridge::before,
    main.attempt .org-level--bridge>.org-node::before {
        display: none;
    }

    main.attempt .org-children {
        grid-template-columns: 1fr;
    }
}


/****************

施工事例

**********************/

.archive .worksWrap .worksTabs {
    margin: 0;
    margin-bottom: 80px;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.archive .worksWrap .worksTabs__item {
    cursor: pointer;
    padding: .5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 999px;
    background: #fff;
}

.archive .worksWrap .worksPane .flex .img img {
    object-fit: cover;
    width: 100%;
    height: 300px;
}

/* 最初は隠しておく */
.archive .worksWrap .worksPane .box.is-hidden {
    display: none;
}

/* ボタン体裁は任意 */
.archive .worksWrap .worksPane .works-more {
    text-align: center;
    margin: 30px 0 60px;
}

.archive .worksWrap .worksPane .c-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all .2s;
    line-height: 1.3;
    background-color: #fff;
    border-radius: 100px;
    min-height: 60px;
    border: 1px solid #A9C8B8;
    padding: 4px;
    min-width: 250px;
    font-size: 16px;
    cursor: pointer;
    margin: auto;
    gap: 10px;
}

.archive .worksWrap .worksPane .c-btn.is-finished {
    opacity: .6;
    cursor: default;
}

.archive .worksWrap .worksPane .c-btn:hover {
    border: 0;
    background-color: #208443;
    color: #fff;
}


/** SP **/
@media only screen and (max-width: 767px) {

    .archive .worksWrap .worksPane .flex .img img {
        object-fit: cover;
        width: 100%;
        height: 150px;
    }


}

/******

採用お問い合わせ

******************/

.recruit-table {
    max-width: 720px;
    margin: auto;
    border-collapse: collapse;
    overflow: hidden;
    line-height: 1.8;
    margin-bottom: 60px;
}

.recruit-table th,
.recruit-table td {
    padding: 14px 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #e5e7eb;
}

.recruit-table th {
    width: 25%;
    background: #f9fafb;
    font-weight: 700;
    white-space: nowrap;
}

.recruit-table td {}

.recruit-table tr:last-child th,
.recruit-table tr:last-child td {
    border-bottom: none;
}

/* スマホ対応（1列縦表示） */
@media (max-width: 640px) {
    .recruit-table {
        margin-bottom: 30px;
    }

    .recruit-table,
    .recruit-table tbody,
    .recruit-table tr,
    .recruit-table th,
    .recruit-table td {
        display: block;
        width: 100%;
        background: #fff;
    }

    .recruit-table th {
        background: #f1f5f9;
        border-bottom: none;
        padding: 10px 16px 10px;
    }

    .recruit-table td {
        padding: 6px 16px 12px;
        border-bottom: 1px solid #e5e7eb;
    }
}

/* --------------------------------------------------------------------
/* 固定ページ（汎用テンプレート）のページタイトル
   本文に h1 が無い場合のみ template-parts/content-page.php から出力される
-------------------------------------------------------------------- */
.page .entry-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    color: #208443;
    margin: 40px 0 30px;
}

@media only screen and (max-width: 767px) {
    .page .entry-title {
        font-size: 5.6vmin;
        margin: 6vmin 0 5vmin;
    }
}
