/*==============================================
*	parts（各ページ共通のデザイン）
==============================================*/
.main {
    margin-top: 0;
}
.top_title_h3 {
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    margin-bottom: 4px;
    color: #00529D;
    padding-left: 31px;
    position: relative;
}
.top_title_h3::before {
    position: absolute;
    top: 50%;
    left: 0;
    content: '';
    width: 16px;
    height: 6px;
    background: #F39800;
}
.top_title_h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 38px;
    color: #313233;
}
.top_service_product_link {
    text-align: center;
}
.top_link_a {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    line-height: 170%;
    color: #FFFFFF;
    background: #00529D;
    border: 1px solid #00529D;
    border-radius: 43px;
    padding: 20px 74px 20px 40px;
    margin-bottom: 20px;
}
.top_link_a::before {
    position: absolute;
    top: 30px;
    right: 30px;
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #FFFFFF;
    border-right: solid 2px #FFFFFF;
    transform: rotate(45deg);
}
.top_link_a::after {
    position: absolute;
    top: 33px;
    right: 31px;
    content: "";
    width: 14px;
    height: 7px;
    border-top: solid 2px #FFFFFF;
}
.top_link_a:hover {
    color: #00529D;
    background: #FFFFFF;
}
.top_link_a:hover::before {
    border-top: solid 2px #00529D;
    border-right: solid 2px #00529D;
}
.top_link_a:hover::after {
    border-top: solid 2px #00529D;
}
.top_service_product_box {
    background: #FFFFFF;
    box-shadow: 4px 4px 27px rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 32px 28px;
    margin: 0 auto 40px;
}
.top_service_product_data {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}
.top_service_product_name {
    font-weight: 700;
    font-size: 30px;
    line-height: 130%;
    text-align: center;
    color: #313233;
    margin-bottom: 16px;
}
.top_service_product_txt {
    max-width: 425px;
    font-weight: 500;
    font-size: 14px;
    line-height: 170%;
    color: #313233;
    margin: 0 auto 32px;
}
.other_link_list_wrap {
    padding: 56px 0;
}
.other_link_list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 40px auto 0;
}
.other_link_box {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 20px;
    background-color: #FFFFFF;
    overflow: hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
}
.other_link_li_link {
    padding: 24px;
}
.other_link_li_a {
    display: block;
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 35px;
    color: #313233;
    padding: 0 36px 0 0;
    transition: 0.3s;
}
.other_link_li_a:hover{
    color: #00529D;
}
.other_link_li_a::before {
    position: absolute;
    right: 11px;
    top: calc(50% - 3px);
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #00529D;
    border-right: solid 2px #00529D;
    transform: rotate(45deg);
}
.other_link_li_a::after {
    position: absolute;
    right: 11px;
    top: 50%;
    content: "";
    width: 14px;
    height: 7px;
    border-top: solid 2px #00529D;
}
.other_link_li_img {
    width: 33%;
    height: 100%;
}
.custom_link_list {
    margin-top: 40px;
}
.custom_link_li_span {
    display: inline-block;
    position: relative;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    padding: 10px 36px 10px 16px;
}
.custom_link_li_span::before {
    position: absolute;
    right: 11px;
    top: calc(50% - 3px);
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #00529D;
    border-right: solid 2px #00529D;
    transform: rotate(45deg);
}
.custom_link_li_span::after {
    position: absolute;
    right: 11px;
    top: 50%;
    content: "";
    width: 14px;
    height: 7px;
    border-top: solid 2px #00529D;
}
.custom_link_li_span span {
    font-size: 14px;
    display: inherit;
}
/*==============================================
*	layout（レイアウト用style）
==============================================*/
.top_eyechach_wrap {
    position: relative;
    height: 80vh;
}
.top_eyechach_wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% top;
    z-index: 0;
}
.top_eyechach_box {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: start;
    justify-content: end;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* background: rgba(60, 60, 60, 0.5); */
    padding: 40px 25px;
}
.top_eyechach_h2 {
    font-weight: 700;
    font-size: 17vw;
    line-height: 100%;
    color: #00529D;
    mix-blend-mode: multiply;
}
.top_eyechach_h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #00529D;
    mix-blend-mode: multiply;
    margin-top: 32px;
}
.top_about_block {
    padding: 64px 0;
    background: #f0f4f8;
}
.top_about_p {
    max-width: 610px;
    font-weight: 500;
    font-size: 16px;
    line-height: 170%;
    color: #313233;
    margin-top: 24px;
}
.top_about_linklist {
    margin-top: 24px;
}
.top_about_imgbox {
    margin-top: 40px;
}
.top_service_block {
    /* background: #f0f4f8; */
    padding: 64px 0;
}
.top_introduction_block {
    overflow: hidden;
    padding: 64px 0;
    background: #f0f4f8;
}
.top_recruit_block {
    /* background: #f0f4f8; */
    padding: 64px 0;
}
.top_news_block {
    padding: 64px 0;
}
.top_service_product_img {
    max-width: 320px;
    margin: 0 auto 32px;
}
.custom_link_li {
    width: 100%;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    transform: 0.3s;
    color: #313233;
}
.custom_link_li:hover{
    color: #00529D;
}
.custom_link_li_img {
    width: 26%;
    height: 100%;
}
.custom_link_li_link {
    display: flex;
    align-items: center;
    width: 74%;
    height: 100%;
    background-color: #FFFFFF;
}
.top_introduction_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.top_introduction_navi_inner {
    display: flex;
}
.top_service_list_link {
    text-align: center;
    margin-top: 40px;
}
.installation_record_block {
    margin: 56px auto 20px;
}
.top_introduction_contents #slider {
    overflow: visible;
}
.installation_record_box {
    width: 550px;
    padding-bottom: 10px;
    margin-right: 40px;
}
.installation_record_a {
    display: block;
}
.installation_record_a:hover{
    opacity: 0.7;
}
.installation_record_img {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.installation_record_h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 160%;
    color: #313233;
    margin-top: 16px;
}
.installation_record_p {
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #313233;
    margin-top: 10px;
}
.installation_record_category {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.installation_record_cat_li {
    font-weight: 400;
    font-size: 12px;
    line-height: 170%;
    color: #00529D;
    border: 1px solid #00529D;
    border-radius: 20px;
    padding: 5px 10px;
}
.top_introduction_slider_navi .swiper-button-next {
    position: relative;
    right: 50px;
    left: auto;
    top: -30%;
}
.top_introduction_slider_navi .swiper-button-prev {
    position: relative;
    left: -150px;
    top: 20%;
}
.top_introduction_slider_navi .swiper-button-prev,
.top_introduction_slider_navi .swiper-button-next {
    height: 80px;
    width: 80px;
}
.top_introduction_slider_navi .swiper-button-prev:after,
.top_introduction_slider_navi .swiper-button-next:after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 80px;
    margin: auto;
    width: 80px;
    -webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.top_introduction_slider_navi .swiper-button-prev:after {
    background-image: url(../img/img_slider_prev.svg);
}
.top_introduction_slider_navi .swiper-button-prev:hover:after {
    background-image: url(../img/img_slider_prev_hover.svg);
}
.top_introduction_slider_navi .swiper-button-next:after {
    background-image: url(../img/img_slider_next.svg);
}
.top_introduction_slider_navi .swiper-button-next:hover:after {
    background-image: url(../img/img_slider_next_hover.svg);
}
.top_introduction_slider_navi .swiper-slide img {
    height: auto;
    width: 100%;
}
.top_introduction_navi {
    display: none;
}
.top_news_link {
    margin-top: 40px;
}
.top_news_contents {
    margin-top: 40px;
}
.news_archive_block {
    width: 100%;
    border-top: 2px solid #F2F2F2;
}
.news_archive_box {
    width: 100%;
}
.news_archive_a {
    display: block;
    border-bottom: 2px solid #F2F2F2;
    padding: 16px 50px 16px 0px;
    position: relative;
}
.news_archive_a::before {
    position: absolute;
    top: 50%;
    right: 11px;
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #00529D;
    border-right: solid 2px #00529D;
    transform: rotate(45deg);
}
.news_archive_a::after {
    position: absolute;
    top: calc(50% + 3px);
    right: 11px;
    content: "";
    width: 14px;
    height: 7px;
    border-top: solid 2px #00529D;
}
.news_archive_data {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}
.news_archive_date {
    font-weight: 700;
    font-size: 14px;
    line-height: 170%;
    color: #828282;
}
.news_archive_category {
    font-weight: 400;
    font-size: 12px;
    line-height: 170%;
    color: #313233;
    background: #F2F2F2;
    border-radius: 2px;
    padding: 4px 8px;
}
.news_archive_title {
    font-weight: 500;
    font-size: 14px;
    line-height: 170%;
}
.top_recruit_boxcontainer{
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}
.top_recruit_imgbox {
    width: 88%;
    margin-left: auto;
    margin-top: 56px;
}
.top_recruit_img {
    width: 100%;
    border-radius: 20px 0px 0px 20px;
    overflow: hidden;
}
.top_recruit_txtbox {
    position: relative;
    width: 88%;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px 7vw;
    margin-top: -45px;
    margin-right: auto;
}
.top_recruit_h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 160%;
    margin-bottom: 16px;
    color: #313233;
}
.top_recruit_p {
    font-weight: 500;
    font-size: 14px;
    line-height: 170%;
    color: #313233;
}

/*==============================================
*  レスポンシブ対応
==============================================*/

@media screen and (min-width:450px) {
    .main {
        padding-top: 80px;
    }
    .top_eyechach_wrap {
        height: 755px;
    }
    .top_eyechach_wrap video {
        height: 100%;
    }
    .other_link_box {
        display: block;
    }
    .other_link_li_img {
        width: 100%;
        height: auto;
    }
}
@media screen and (min-width:600px) {
    .custom_link_list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .custom_link_li {
        width: 48%;
    }
}
.top_eyechach_txtbox {
    background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width:768px) {
    .top_eyechach_txtbox {
        padding: 20px;
        margin-left: 60px;
    }
    .top_eyechach_h2 {
        font-size: 96px;
    }
    .top_eyechach_h3 {
        font-size: 32px;
    }
    .top_title_h3 {
        padding-left: 45px;
        font-size: 48px;
        margin-bottom: 16px;
    }
    .top_title_h3::before {
        width: 32px;
    }
    .top_about_block {
        padding: 104px 0;
    }
    .top_about_box {
        display: flex;
        justify-content: space-between;
    }
    .top_about_txtbox {
        width: 53%;
    }
    .top_about_imgbox {
        width: 40%;
        margin-top: 0;
    }
    .top_service_product_box {
        width: 48%;
        margin: 0 0 4%;
    }
    .top_link_a {
        font-size: 16px;
        padding: 25px 75px 25px 30px;
    }
    .top_link_a::before {
        top: 35px;
    }
    .top_link_a::after {
        top: 38px;
    }
    .top_service_block {
        padding: 80px 0;
    }
    .top_introduction_block {
        padding: 104px 0;
    }
    .top_recruit_block {
        padding: 104px 0;
    }
    .top_news_block {
        padding: 104px 0;
    }
    .installation_record_h2 {
        font-size: 18px;
        margin-top: 20px;
    }
    .top_recruit_txtbox {
        padding: 64px 64px 64px 14%;
    }
    .top_service_list_link {
        margin-top: 24px;
    }
    .top_title_h2 {
        font-size: 26px;
    }
    .other_link_box {
        display: block;
        width: 32%;
    }
    .other_link_li_img {
        width: 100%;
    }
    .other_link_li_a {
        font-size: 20px;
    }
    .other_link_list {
        gap: 32px;
    }
    .top_recruit_h4 {
        font-size: 28px;
    }
    .top_recruit_p {
        font-size: 16px;
    }
    .top_service_product_name {
        font-size: 30px;
    }
    .news_archive_title {
        font-size: 16px;
    }
    .custom_link_li_span {
        font-size: 18px;
    }
    .custom_link_li_{
        margin-bottom: 40px;   
    }
    .news_archive_data {
        /* margin-bottom: 24px; */
        margin-bottom: 0;
    }
}
@media screen and (min-width:1023px) {
    .top_title_h3 {
        font-size: 74px;
    }
    .custom_link_li{
        width: 32%;
    }
    .top_news_box {
        display: flex;
        justify-content: space-between; 
    }
    .top_news_contents {
        width: 67%;
    }
    .top_recruit_txtinner {
        width: 60%;
    }
    .top_recruit_txtbox {
        margin-top: -165px;
    }
    .top_introduction_list_sp {
        display: none;
    }
    .top_introduction_navi {
        display: block;
    }
    .top_introduction_slider_navi .swiper-button-prev:after,
    .top_introduction_slider_navi .swiper-button-next:after {
        height: 50px;
        width: 50px;
    }
    .top_introduction_slider_navi .swiper-button-next {
        right: 0px;
    }
    .top_introduction_slider_navi .swiper-button-prev {
        left: -55px;
    }
    .top_news_contents {
        margin-top: 0;
    }
    .custom_link_li_span {
        font-size: 18px;
    }
    .top_recruit_txtwrap {
        display: flex;
        gap: 56px;
    }
    .news_archive_a {
        display: flex;
    }
}
@media screen and (min-width:1090px) {
    /* .top_service_product_box {
        width: 32%;
        margin-bottom: 0;
    } */
}
@media screen and (min-width:1140px) {
    .top_introduction_slider_navi .swiper-button-prev:after,
    .top_introduction_slider_navi .swiper-button-next:after {
        height: 80px;
        width: 80px;
    }
    .top_introduction_slider_navi .swiper-button-next {
        right: 20px;
    }
    .top_introduction_slider_navi .swiper-button-prev {
        left: -110px;
    }
    .top_about_linklist {
        display: flex;
        gap: 24px;
        margin-top: 40px;
    }
    .top_about_p{
        margin-top: 40px;
    }
}
@media screen and (min-width:1265px) {
}
@media screen and (min-width:1399px) {
    /* .top_service_product_box {
        width: 30%;
        margin-bottom: 0;
    } */
}
@media screen and (min-width:1400px) {}