@charset "utf-8";

.index_inner {
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 40px 20px;
}

.index_h2 {
    display: block;
    line-height: 1.5;
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 55px;
    position: relative;
}

.index_h2::after {
    display: block;
    content: attr(data-txt)'';
    font-size: 1.4rem;
    letter-spacing: 0.9px;
    color: #0d52a0;
    margin-top: 10px;
}

.index_main .index_btn_blue {
    color: #FFF;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0 0 0 / 25%);
    border: 1px solid #E2E2E2;
}

.link_more {
    display: block;
    color: #FFF !important;
    background: #2188c9 url(/images/arrow_r_white.svg) right 20px center no-repeat;
    background-size: 15px 15px;
    text-decoration: none;
    width: 250px;
    margin: 40px auto 0 0;
    /*     padding: 10px 32px 10px 20px; */
    padding: 10px 25px;
    transition: background 0.3s;
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto;
}

.link_more:hover {
    background-color: #44aff3;
}

/*------------ mv ------------*/
#mv_wrap {
    margin-bottom: 90px;
    position: relative;
}

.mv_img {
    height: 680px;
    background-image: url(/images/index_bg_1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.mv_catch_box {
    width: 80%;
    margin: auto;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.mv_catch_box .index_h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #222222;
    letter-spacing: 0.15em;
    line-height: 1.3;
}

/*------------ news ------------*/
.index_news .news_list {
    border-top: #ccc 1px solid;
    margin-top: 28px;
    margin-bottom: 35px;
}

.index_news .news_list li {
    border-bottom: #ccc 1px solid;
}

.index_news .news_list li a {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    color: #333;
    text-decoration: none;
    padding: 19px 35px 21px 30px;
    box-sizing: border-box;
    background: url(/images/arrow_r_blue.svg) no-repeat right 20px center / 8px 15px;
    transition: background-color .3s;
    align-items: center;
}

.index_news .news_list li .news_date {
    font-weight: 700;
    color: #333;
    margin-right: 15px;
    padding: 0;
}

.index_news .news_list li .news_cate {
    color: #000;
    border: 1px solid #000;
    font-size: 1.3rem;
    display: inline-block;
    /* height: 20px; */
    width: 130px;
    text-align: center;
    align-self: center;
    box-sizing: border-box;
    margin-right: 15px;
}

.index_news .news_list li .news_title {
    font-weight: 700;
    max-width: calc(100% - 256px);
}

/* hover */
.index_news .news_list li a:hover {
    background: #f7f7f7 url(/images/arrow_r_blue.svg) no-repeat right 20px center / 8px 15px;
    transition: background 0.3s;
}

/*------------ office ------------*/
.index_office {
    background-color: #f4f4f4;
    padding: 70px 0 0;
}

.index_office #office_area {
    max-width: 1200px;
    height: 390px;
    position: relative;
	overflow: hidden;
}

.index_office #office_area>a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-decoration: none;
    z-index: 5;
}

.index_office #office_area>a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(13, 82, 161, 0.2);
    z-index: -1;
    transition: all .3s ease;
    opacity: 0;
}

.index_office #office_area>a p {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
	z-index: 1;
}

.index_office #office_area .link_more {
    margin: 100px 0 0px;
    pointer-events: none;
	z-index: 1;
}

/* hover */
.index_office #office_area>a:hover::before {
    opacity: 1;
}

.index_office #office_area>a:hover .link_more {
    background-color: #44aff3;
}

.index_office #office_area .office_img {
    display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    height: 100%;
	object-fit: cover;
    transition: transform 0.3s;
}
.index_office #office_area>a:hover .office_img {
    transform: scale(1.05);
}
/*------------ service ------------*/
.index_service {
    background-color: #f4f4f4;
}

.index_service_inner {
    max-width: 1200px;
    margin: auto;
    padding: 90px 20px;
    box-sizing: border-box;
}

#service_area {
    max-width: 1240px;
    width: 100%;
    margin: auto;
    box-sizing: border-box;
}


.index_service #list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 50px auto 30px;
}

.index_service #list li {
    background: #ffffff;
    list-style: none;
    width: 30.909%;
    margin: 0 3.636% 50px 0;
}

.index_service #list li:first-child,
.index_service #list li:nth-child(2) {
    width: 48.636%;
    margin-right: 2.727%;
}

.index_service #list li:nth-child(3n+2) {
    margin-right: 0;
}


.index_service #list li a {
    display: block;
    color: #333 !important;
    text-decoration: none;
    overflow: hidden;
}

.index_service #list li a div {
    overflow: hidden;
}

.index_service #list li a img {
    display: block;
    width: 100%;
    transition: transform 0.3s;
}



.index_service #list li a .text {
    padding: 20px 40px;
}

.index_service #list li a h3 {
    display: block;
    padding: 0px 0px 0 0;
    margin: 0px 0 6px;
    transition: color 0.3s;
    font-weight: bold;
    text-align: left;
}

.index_service #list li a h3 span {
    background: url(/images/arrow_r_blue.svg) no-repeat right center / 9px 14px;
    padding-right: 30px;
}

/* hover */
.index_service #list li a:hover img {
    transform: scale(1.05);
    transition-duration: 0.3s;
}

.index_service #list li a:hover h3 span {
    text-decoration: underline;
}

/*------------ contact ------------*/
.index_contact {
    background-color: #0d52a0;
}

.index_contact_inner {
    max-width: 1200px;
    margin: auto;
    padding: 110px 20px;
}

.index_contact_inner *,
.index_contact_inner .index_h2::after {
    color: #fff;
}

.index_contact .contact_box_wrap {
    display: flex;
    flex-wrap: wrap;
}

.index_contact .contact_box_wrap .contact_box {
    width: 47%;
    margin-right: 6%;
    border-radius: 15px;
    text-align: center;
}

.index_contact .contact_box_wrap .contact_box:nth-child(2n) {
    margin: 0;
}

/* left */
.index_contact .tel_box {
    margin-bottom: 15px;
    padding: 20px 0 20px;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
}

.index_contact .tel_box a,
.index_contact .tel_box a:visited {
	text-decoration:none;
	pointer-events:none;
/*     text-decoration: underline #fff; */
}

.index_contact .tel_box a .tel {
    color: #fff;
    font-size: 2.8rem;
}

.index_contact .tel_box a .tel img {
    width: 22px;
    margin-right: 5px;
    vertical-align: middle;
}


/* left hover */
.index_contact .tel_box a:hover {
    text-decoration: none;
}

/* right */
.index_contact .cta_btn {
    display: flex;
    flex-direction: column;
    max-width: 450px;
    height: 90px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: #2188c9 url(/images/arrow_r_white.svg) right 90px center no-repeat;
    background-size: 18px 18px;
}

/* right hover */
.index_contact .cta_btn:hover {
    background: #44aff3 url(/images/arrow_r_white.svg) right 90px center no-repeat;
    background-size: 18px 18px;
}

/*------------ bnr ------------*/
.index_bnr .index_inner {
    max-width: 1140px;
    padding: 30px 20px;
}

.index_bnr .bnr_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 32.727%);
    grid-gap: 10px 0.909%;
}

.index_bnr .bnr_link {
    display: block;
    transition: opacity 0.3s;
    background: none;
    padding: 0;
}

.index_bnr .bnr_img {
    display: block;
    width: 100%;
}

.index_bnr .bnr_link:hover {
    opacity: 0.7;
}


@media screen and (max-width: 1024px) {
    /* .index_inner .index_h2 {
        margin-bottom: 30px;
    } */

    /*------------ mv ------------*/
    /* .mv_catch_box .index_h1 {
        font-size: 3.5rem;
    } */

    /*------------ news ------------*/
    .index_news .news_list {
        margin-top: 0;
    }

    .index_news .news_list li a {
        /* display: block; */
        padding: 13px 20px 16px 10px;
        background-size: 6px 11px;
        background-position: right 10px center;
    }

    .index_news .news_list li .news_cate {
        margin: 0;
    }

    .index_news .news_list li .news_title {
        width: 100%;
        max-width: 100%;
        margin-top: 2px;
    }

    /*------------ office ------------*/

    /*------------ service ------------*/
    .index_service #list li {
        margin: 0 3.636% 3.636% 0;
    }


    /*------------ contact ------------*/
    .index_contact .contact_box_wrap {
        display: block;
    }

    .index_contact .contact_box_wrap .contact_box {
        width: 100%;
        margin-bottom: 3%;
    }

    .index_contact .tel_box {
        padding: 7px 0 7px;
        margin: 5px 0;
    }
	
	.index_contact .tel_box a{
		text-decoration:underline;
		pointer-events: auto;
	}

    .index_contact .cta_btn {
        height: 58px;
    }

    /*------------ bnr ------------*/

}


@media screen and (max-width: 767px) {
    .index_h2 {
        font-size: 2.5rem;
        margin-bottom: 35px;
    }

    .index_h2::after {
        font-size: 1.2rem;
    }

    .link_more {
        /* width: 70%; */
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    /*------------ mv ------------*/
    #mv_wrap {
        margin-bottom: 0;
    }

    .mv_img {
        height: 475px;
    }

    .mv_catch_box {
        justify-content: center;
    }

    .mv_catch_box .index_h1 {
        font-size: 1.9rem;
        text-align: center;
    }

    /*------------ news ------------*/
    .index_news .news_list li a {
        padding: 13px 20px 12px 10px;
    }

    .index_news .news_list li .news_date,
    .index_news .news_list li .news_cate {
        font-size: 1.3rem;
    }

    .index_news .news_list li .news_title {
        font-size: 1.4rem;
    }

    /*------------ office ------------*/
    .index_office {
        padding: 20px 0 0;
    }

    .index_office #office_area {
        height: 320px;
        background-size: cover;
        background-position: right -67px center;
    }

    .index_office #office_area>a p {
        font-size: 1.5rem;
    }

    .index_office #office_area .link_more {
        margin-top: 30px;
    }

    /*------------ service ------------*/
    .index_service_inner {
        padding: 40px 20px;
    }

    .index_service #list {
        padding: 0;
        margin: 0 0;
    }

    .index_service #list li {
        width: 100% !important;
        margin: 0 0 25px 0 !important;
    }

    .index_service #list li a .text {
        padding: 20px 20px;
    }

    .index_service #list li a h3,
    .index_service #list li a p {
        font-size: 1.4rem;
    }

    /*------------ contact ------------*/
    .index_contact_inner {
        padding: 40px 20px 50px;
    }

    .index_contact .contact_box_wrap {
        display: block;
    }

    .index_contact .contact_box_wrap .contact_box {
        width: 100%;
        margin: 20px 0px;
    }

    .index_contact .contact_box_wrap .contact_box:first-child {
        margin: 0 0 30px 0;
        padding: 0 20px;
        text-align: center;
    }

    .index_contact .contact_box_wrap .contact_box p {
        font-size: 1.3rem;
    }

    .index_contact .cta_btn {
        height: 45px;
        margin: 10px auto;
        background: #2188c9 url(/images/arrow_r_white.svg) right 20px center no-repeat;
        background-size: 10px 10px;
    }

    /*------------ bnr ------------*/

    .index_bnr .bnr_list {
        display: block;
    }

    .index_bnr .bnr_item {
        margin-bottom: 10px;
    }
}