/* common */
.boxStyle1{
	width:100%;
	padding:18px;
	background-color:rgb(240,240,240);
	margin-bottom:2em;
    box-sizing: border-box;
}


/* top product */
.product_section {
    background-color: rgb(44, 44, 44);
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 48px 0;

    .product_inner {
        max-width: 980px;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .product_nav {
        flex: 1 1 calc(33.333% - 20px / 3);
        height: auto;
        background-color: rgb(0, 0, 0);
        overflow: hidden;

    }

    .product_nav_link {
        display: block;
        position: relative;
    }

    .product_nav_ttl {
        position: absolute;
        top: 1em;
        left: 1em;
        z-index: 9999;
        font-size: 21px;
        font-weight: bold;
        color: rgb(255, 255, 255);
        text-align: left;
    }

    .product_nav_mark {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 999;
        width: 72px;
        height: 36px;
        transition: width 0.3s ease, height 0.3s ease;
        background: rgb(51, 147, 169);
        display: inline-block;
        clip-path: polygon(100% 0, 100% 100%, 0 100%);
    }

    @media (hover: hover) {
        .product_nav_link:any-link:hover .product_nav_mark {
            width: 324px;
            height: 108px;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
        }

        .product_nav_link:any-link:hover .product_nav_img {
            filter: brightness(0.8);
        }
    }

    .product_nav_img {
        display: block;
        transition: filter 0.3s ease;
        filter: brightness(0.5);
        width: 100%;
        height: auto;
    }

}

@media screen and (max-width: 767px) {
    .product_section {
        padding: 48px 12px;

        .product_nav {
            flex: 1 1 calc(50% - 20px / 2);
            height: auto;
            background-color: rgb(0, 0, 0);
            overflow: hidden;

        }

        .product_nav_ttl {
            font-size: 18px;
        }
    }
}

@media screen and (max-width: 320px) {
    .product_section {
        padding: 24px 12px;

        .product_nav {
            flex: 1 1 calc(100% - 20px / 2);
            height: auto;
            background-color: rgb(0, 0, 0);
            overflow: hidden;

        }
    }
}

/* top corp */
.corp_section {
    background-color: rgb(29, 53, 77);
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;

    .corp_inner {
        max-width: 980px;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
    }

    .corp_nav {
        flex: 1 1 50%;
        height: auto;
        background-color: rgb(0, 0, 0);
        overflow: hidden;
    }

    .corp_nav_link {
        display: block;
        position: relative;
        text-align: center;
    }

    .corp_nav_ttl {
        display: inline-block;
        position: absolute;
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9999;
        font-size: 21px;
        font-weight: bold;
        color: rgb(255, 255, 255);
        text-align: center;
    }

    .corp_nav_mark {
        display: inline-block;
        position: absolute;
        width: 100%;
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9999;
    }

    @media (hover: hover) {
        .corp_nav_link:any-link:hover .corp_nav_img {
            filter: brightness(0.8);
        }
    }

    .corp_nav_img {
        display: block;
        transition: filter 0.3s ease;
        filter: brightness(0.5);
        width: 100%;
        height: auto;
    }

}

@media screen and (max-width: 767px) {
    .corp_section {
        .corp_nav_ttl {
            font-size: 18px;
        }

        .corp_nav_mark img {
            width: 24px;
            height: auto;
        }
    }

}

@media screen and (max-width: 320px) {
    .corp_section {
        padding: 24px 12px;

        .corp_nav {
            flex: 1 1 100%;
            height: auto;
            background-color: rgb(0, 0, 0);
            overflow: hidden;
        }
    }
}

/* CTA */
.cta_section {
    position: relative;
    background-image: url(/img2025/common/cta_ctaimage.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 40vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    box-sizing: border-box;

    .cta_inner {
        z-index: 999;
        max-width: 980px;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
    }

    .cta_nav {
        flex: 1 1 50%;
        height: auto;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 40vh;
        padding: 34px;
        box-sizing: border-box;
    }
     .cta_nav:has(.cta_lead) {
        align-items: initial;
     }

    .cta_text h2.cta_ttl {
        color: rgb(255, 255, 255);
        text-align: left;
        font-size: 38px;
        font-weight: bold;
        margin: 0;
        padding: 0;
        border: none;

    }

    .cta_text p.cta_lead {
        color: rgb(255, 255, 255);
        font-size: 16px;
        line-height: 1.8;
        text-align: left;
        margin: 1.4em 0 1em 0;
        padding: 0;
    }

    .cta_btn_link {
        background-color: rgb(29, 53, 77);
        color: rgb(255, 255, 255);
        padding: 12px 24px;
        font-size: 16px;
        font-weight: bold;
        border-radius: 23px;
        display: flex;
        justify-content: center;
        align-items: center;
        /* width: 240px; */
        text-decoration: none;
        transition: all 0.2s ease;
    }
    .cta_btn_link.recrui{
        /* background: rgb(245, 109, 63); */
    }

    @media (hover: hover) {
        .cta_btn_link:any-link:hover {
            background-color: rgb(255, 255, 255);
            color: rgb(29, 53, 77);
        }

        .cta_btn_link:any-link:hover .cta_btn_ar {
            filter: invert(100%);
        }
        .cta_btn_link.recrui:any-link:hover .cta_btn_nw {
            filter: invert(100%);
        }
    }

    .cta_btn_ar {
        display: inline-block;
        width: 24px;
        height: auto;
        margin-left: 1em;
    }
    .cta_btn_nw {
        display: inline-block;
        width: 17px;
        height: auto;
        margin-left: 1em;
    }

    .cta_mark {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 9;
        width: 48vw;
        height: 32vh;
        background: rgb(29, 53, 77);
        display: inline-block;
        clip-path: polygon(0 0, 100% 0, 0 100%);
    }
        .cta_mark.recrui {
        /* background: rgb(245, 109, 63); */
    }
}

@media screen and (max-width: 767px) {
    .cta_section {
        height: auto;

        .cta_nav {
            flex: 1 0 100%;
            width: 100%;
            height: auto;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            height: auto;
            padding: 0px;
            box-sizing: border-box;

        }

        .cta_lead{
            text-align: center;
        }
             .cta_nav:has(.cta_lead) {
            align-items: center
        }

        .cta_text {
            padding: 36px 24px 0 24px;
            h2.cta_ttl{
                text-align: center;
            }
        }

        .cta_obj {
            padding: 0 0 36px 0;
        }
    }
}


/* recruit */
.rerecruit_section{
    display: flex;
    gap: 36px;
}
.rerecruit_image, .rerecruit_content{
 flex-grow: 1;
}
.rerecruit_image{
    flex-shrink: 2;
    max-width: 50%;
}
.rerecruit_content{
    flex-shrink: 1;
    max-width: 50%;
}
.rerecruit_image > img{
    width: 100%;
    height: auto;
}
.rerecruit_lead{
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;
}
.rerecruit_links_item + .rerecruit_links_item{
    margin-top: 1em;
}
.rerecruit_anc{
    display: block;
    background-color: rgb(29, 53, 77);
    padding:1em;
    border-radius: 7px;
    text-decoration: none;
    
    .rerecruit_anc_text{
        font-size: 13px;
        line-height: 1.8;
        display: block;
        color: rgb(255,255,255);
        font-weight: bold;
    }
    .rerecruit_anc_text +.rerecruit_anc_text{
        padding-left: 1.6em;
        font-weight: initial;
    }
    .rerecruit_anc_icn{
        display: inline-block;
        width: 16px;
        height: auto;
        vertical-align: middle;
        margin-left: 1em; 
    }
}
 @media (hover: hover) {
    .rerecruit_anc:any-link:hover{
        text-decoration: none;
        background-color: rgb(30, 146, 202);
        color: rgb(255, 255, 255);
    }

 }
@media screen and (max-width: 767px) {
    .rerecruit_section{
        display: flex;
        gap: 36px;
        flex-direction: column-reverse;
    }
    .rerecruit_image{
        max-width: 100%;
    }
    .rerecruit_content{
        max-width:100%;
    }
}
