@charset "UTF-8";

/* Common */
h1 {
    margin: 0;
    font-size: 0.775rem;
}

h2 {
    margin: 1em 0;
    padding: 0;
    color: #000000;
    font-weight: bold;
    text-align: center;
}

h3 {
    margin: 0;
    padding: 0;
    color: #000000;
    font-weight: bold;
}

h4 {
    margin: 0;
    padding: 0;
    color: #000000;
    font-weight: bold;
}

h5 {
    margin: 0;
    padding: 0;
    color: #000000;
    font-weight: bold;
}

.text-small {
    font-size: 0.975rem !important;
}

.flex {
	display: flex;
	justify-content: center;
}

.row {
    max-width: 70em !important;
}

body {
    margin-top: 0.5em;
}

#gloval-menu .logo {
    padding: 0;
}

#gloval-menu .gloval-contact {
}

#gloval-menu .menu {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content:  flex-end;
    -webkit-align-items: center;
    align-items: center;

    padding: 1em 0;
}

#gloval-menu .menu .gloval_menu_main {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content:  center;
    -webkit-align-items: center;
    align-items: center;
}

#gloval-menu .menu .gloval_menu_main span a {
    padding: 0.5em 0.5em;

    font-size: 1.15rem;
    color: #464646;
}

#gloval-menu .menu .gloval_menu_main span a:hover {
    text-decoration: underline;
}

#gloval-menu .menu .gloval_menu_main span {
    white-space: nowrap;
}

#gloval-menu .menu .gloval_menu_main span + span::before {
    content: "/";
    margin: 0 0.25em;
}

#gloval-menu .menu .gloval_menu_cv {
    padding-left: 1em;
    white-space: nowrap;
}

#gloval-menu .menu .gloval_menu_cv span {
    display: inline-block;
}

#gloval-menu .menu .gloval_menu_cv a {
    display: inline-block;
    padding: 0.5em 1em;
    font-weight: bold;
    text-align: center;
}

#gloval-menu .menu .gloval_menu_cv .gm_cv_contact a {
    background-color: #0479B0;
    color: #ffffff;
}

#gloval-menu .menu .gloval_menu_cv .gm_cv_line a {
    background-color: #58B75D;
    color: #ffffff;
}

/* [SP] グローバルメニュー関連 */
#hNav {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 15px;
    width: 100%;
    height: 75px;
    background-color: #fff;
}

#hNav li {
    height: 60px;
}

#hNav li img {
    max-height: 60px;
}

#hNav h1 {
    font-size: 0.567rem !important;
}

/* g-nav */
#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 75px;
    width: 100%;
    height: calc(100vh - 75px);/*ナビの高さ*/
    /* background: #c1c1c1; */
    background: #ffffff;
    /*動き*/
    transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
    opacity: 1;
    z-index:10000;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
/* @media screen and (min-width: 640px) { */
    #g-nav ul {
        display: none;
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 10000;
        top: 40%;
        left: 50%;
        width: 80%;
        transform: translate(-50%,-50%);
    }
/* } */


#g-nav.panelactive ul {
    display: block;
}

#g-nav li {
    float: none;
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;

    border-bottom: 1px solid #ffffff;
}

.openbtn1{
    position:relative;
    z-index: 99999;/*ボタンを最前面に*/
    /* top:10px;
    right: 10px; */
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #00712C;
    width: 45%;
}

.openbtn1 span:nth-of-type(1) {
    top:15px;
}

.openbtn1 span:nth-of-type(2) {
    top:23px;
}

.openbtn1 span:nth-of-type(3) {
    top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}



.mainvisual {
    margin: 1.5em auto;
}

@media screen and (max-width: 640px) {
    .mainvisual {
        margin-top: 80px;
    }
}

@media screen and (min-width: 641px) and (max-width: 1025px) {
    .mainvisual {
        margin-top: 80px;
    }
}

.bread {
    background-color: #0488C6;
}

.smh {
    margin: 0;
    padding: 1em 0;
    background: #04608C;
    color: #ecf0f1;
}

.smh p {
    margin: 0.5em 0 0;
    padding: 0;
}

.smh .company_info .company_logo {
    margin-top: 1em;
}

.smh .company_info .company_info_address span {
    display: inline-block;
    margin: 0 0.5em;
}

.smh .company_info .company_info_telfax span {
    display: inline-block;
    margin: 0 0.5em;
    white-space: nowrap;
}

.smh .company_info .company_info_telfax a {
    color: #ecf0f1;
}


.smh .smh_menu {
    margin: 0.5em 0;
}

.smh .smh_menu span a {
    color: #ecf0f1;
}

.smh .smh_menu span a:hover {
    text-decoration: underline;
}

.smh .smh_menu span {
    white-space: nowrap;
}

.smh .smh_menu span + span::before {
    content: "|";
    margin: 0 10px;
}

.smh .etc_info p {
    margin: 0;
}

.smh .etc_info p span {
    display: inline-block;
    white-space: nowrap;
}

.btn_contact a {
    position: relative;
    display: block;
    margin: 0.5em auto 0;
    padding: .25em;
    max-width: 400px;
    font-size: 24px;
    background-color: #F6780C;
    color: #ffffff;
    text-align: center;
}

.cv {
    margin: 2em auto 6em;
    padding: 1em;
    background: linear-gradient(to right, #0479B0 0%, #0479B0 75%, #F1F28A 75%, #F1F28A 100%);
    color: #FFFFFF;
}

.cv {
    display: flex;
    flex-wrap: wrap;
}

.cv .cvl {
    display: flex;
    flex-wrap: wrap;
}

.cv .cvl div {
    padding: 0.5em;
    width: 100%;
}

.cv .cvl p {
    margin: 0;
    padding: 0.25em;
    text-align: center;
}

@media screen and (min-width: 1025px) and  (max-width: 1046px) {
    .cv .cvl .cv_contact p {
        font-size: 1.50rem;
    }
}

@media screen and (min-width: 1025px) {
    .cv .cvl p {
        font-size: 1.756rem;
    }
}
@media screen and (min-width: 641px)  and (max-width: 1025px) {
    .cv .cvl p {
        font-size: 1.20rem;
    }
}

@media screen and (min-width: 641px)  and (max-width: 756px) {
    .cv .cvl p {
        font-size: 1.10rem;
    }
    .cv .cvl .cv_contact p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 640px) {
    .cv .cvl p {
        font-size: 1.385rem;
    }
}


.mainvisual {
    background: linear-gradient(to right, #0479B0 0%, #0479B0 75%, #F1F28A 75%, #F1F28A 100%);
}

.mainvisual .top_archives {
    padding: 1.5em 0 0.5em;
    width: 75%;
    color: #ffffff;
}

.mainvisual .top_archives .top_archives_list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content:  flex-start;
    -webkit-align-items: stretch;
    align-items: stretch;
}

.mainvisual .top_archives .top_archives_list .archive_news {
    width: 100px;
    text-align: center;
}

.mainvisual .top_archives .top_archives_list dl,
.mainvisual .top_archives .top_archives_list dl dt,
.mainvisual .top_archives .top_archives_list dl dd {
    margin: 0;
}

.mainvisual .top_archives .top_archives_list dl dt,
.mainvisual .top_archives .top_archives_list dl dd {
    display: inline-block;
    color: #ffffff;
}

.mainvisual .top_archives p {
    margin: 0;
    padding-right: 1em;
}

.mainvisual .top_archives p a {
    color: #ffffff;
}

.mainvisual .top_archives p a:hover,
.mainvisual .top_archives p a:active {
    text-decoration: underline;
}

#company.index {}

#company.index h2 {
    padding-bottom: 5px;
    font-weight: bold;
    position: relative;
    border-bottom: 8px solid #0479B0;
}

#company.index h2::before{
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0px;
  width: 25%;
  height: 8px;
  background-color: #F1F28A;
}

@media screen and (min-width: 641px) {
    #company.index dl {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content:  center;
        -webkit-align-items: stretch;
        align-items: stretch;
    }

    #company.index dl dt {
        margin: 0;
        padding: 0.75em 1em;
        width: 30%;
        border-bottom: 8px solid #F1F28A;
    }

    #company.index dl dd {
        margin: 0;
        padding: 0.75em 1em 0.75em 2em;
        width: 70%;
        border-bottom: 8px solid #0479B0;
    }
}
@media screen and (max-width: 640px) {
    #company.index dl dt {
        margin: 0;
        padding: 0.75em 1em;
    }

    #company.index dl dd {
        margin: 0;
        padding: 0.75em 1em 0.75em 2em;
        /* background-color: #0479B0; */
    }
}

#company.index dl dt {
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    background-color: #F9F9CB;
}

#company.index dl dd {
    background-color: #FFFFFF;
}

#company.index dl dd span {
    display: inline-block;
}
#company.index dl dd span:first-child {
    margin-right: 1em;
}

#company.index .access iframe {
    margin-bottom: 2em;
}

#company.index .access .map {
    margin-bottom: 2em;
}

#reqruit.index {}

#reqruit.index h2 {
    margin-bottom: 1em;
    padding-bottom: 5px;
    font-weight: bold;
    position: relative;
    border-bottom: 8px solid #0479B0;
}

#reqruit.index h2::before{
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0px;
  width: 25%;
  height: 8px;
  background-color: #F1F28A;
}

#reqruit.index h3 {
    margin-top: 2em;
    margin-bottom: 1em;
}

@media screen and (min-width: 641px) {
    #reqruit.index dl {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content:  center;
        -webkit-align-items: stretch;
        align-items: stretch;
    }

    #reqruit.index dl dt {
        margin: 0;
        padding: 0.75em 1em;
        width: 30%;
        border-bottom: 8px solid #F1F28A;
    }

    #reqruit.index dl dd {
        margin: 0;
        padding: 0.75em 1em 0.75em 2em;
        width: 70%;
        border-bottom: 8px solid #0479B0;
    }
}
@media screen and (max-width: 640px) {
    #reqruit.index dl dt {
        margin: 0;
        padding: 0.75em 1em;
    }

    #reqruit.index dl dd {
        margin: 0;
        padding: 0.75em 0.75em 0.75em;
        /* background-color: #0479B0; */
    }
}

#reqruit.index dl dt {
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    background-color: #F9F9CB;
}

#reqruit.index dl dd {
    background-color: #FFFFFF;
}

#reqruit.index dl dd span {
    display: inline-block;
}
#reqruit.index dl dd span:first-child {
    margin-right: 1em;
}

#reqruit.index .reqruit_step .info_reqruit_step p {
    padding: 0.5em;

    border-top: 5px solid #F1F28A;
    /* border-left: 5px solid #F1F28A;
    border-right: 5px solid #0479B0; */
    border-bottom: 5px solid #0479B0;

    font-size: 1.685rem;
    text-align: center;

}

#reqruit.index .reqruit_step a {
    position: relative;
    display: block;
    margin: 0.5em auto 1em;
    padding: .25em;
    max-width: 400px;
    font-size: 24px;
    background-color: #F6780C;
    color: #ffffff;
    text-align: center;
}

#reqruit.index .reqruit_step .reqruit_step_body p {
    margin: 0 1em 1.25rem;
}

#service.index h2 {
    margin-bottom: 1.0em;
    padding-bottom: 5px;
    font-weight: bold;
    position: relative;
    border-bottom: 8px solid #0479B0;
}

#service.index h2::before{
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0px;
  width: 25%;
  height: 8px;
  background-color: #F1F28A;
}

#service.index .service_box {
    padding: 1em 0 2.2em;
    font-weight: bold;
    position: relative;
    border-bottom: 8px solid #F1F28A;
}

#service.index .service_box::before{
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0px;
  width: 75%;
  height: 8px;
  background-color: #0479B0;
}


#service.index .service_box .sb_left {
    padding: 0;
    /* padding-right: 0; */
    /* background-size: cover; */
    background-size: contain;
}

#service.index .service_box .sb_left .sb_list {
    margin: 0;
    padding: 0;
    min-height: 180px;
    background: linear-gradient(to right, rgba(255,255,255,0) 10%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,1));
    font-weight: bold;
    text-align: right;
    color: #121212;
}

#service.index .service_box .sb_left .sb_list li {
    display: inline-block;
    margin-right: 0.5em;
}

#service.index .service_box .sb_left .sb_list p {
    margin: 0;
}

#service.index .service_box .sb_list_sp li {
    display: inline-block;
    margin: 0.15em 0.5em;
}

#service.index .service_box .right {

}

#service.index .service_box.electrical .sb_left {
    background: url("/img/service_001.png") no-repeat center center;
    background-size: contain;
}

#service.index .service_box.aircondition .sb_left {
    background: url("/img/service_002.png") no-repeat center center;
    background-size: contain;
}

#service.index .service_box.disaster .sb_left {
    background: url("/img/service_003.png") no-repeat center center;
    background-size: contain;
}



#construction.example h2 {
    margin-bottom: 1.0em;
    padding: 1em 0;
    font-weight: bold;
    position: relative;
    border-bottom: 8px solid #F1F28A;
    border-top: 8px solid #0479B0;
}

@media screen and (min-width: 641px) and (max-width: 904px) {
    #construction.example h2 {
        font-size: 1.570rem;
    }
}

#construction.example .contruction_box .construction_text {
    border-bottom: 8px solid #0479B0;
}

#construction.example .contruction_box .construction_text {
    padding-bottom: 5px;
    position: relative;
    border-bottom: 8px solid #0479B0;
}

#construction.example .contruction_box .construction_text::before{
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0px;
  width: 50%;
  height: 8px;
  background-color: #F1F28A;
}

#construction.example .contruction_box p {
    margin: 0.5em 0;
}

#construction.example .contruction_box p:last-child {
    margin-bottom: 0;
}

#construction.example .contruction_box .ct_messege {
    min-height: 126px;
}

#construction.example .contruction_footer_message {
    margin: 5em 0 0;
}

#construction.example .contruction_footer_message li {
    display: inline-block;
    margin: 0 0.5em 1em 0.5em;
}

#construction.example .contruction_footer_message p {
    line-height: 3.0;
}


#top.index .topbox {
    position: relative;
    margin: 1.5em 0;
}

#top.index .topbox .topbox_header {
    text-align: left;
    margin-bottom: 1.5em;
}

#top.index .topbox .topbox_header h2 {
    margin: 0;
    padding: 0;
    border-top: 8px solid #F1F28A;
    text-align: right;
    font-size: 1.375rem;
}

#top.index .topbox .topbox_header img.tbt {
    width: 275px;
    height: 90px;
    text-align: left;
}

@media screen and (min-width: 640px) {
    #top.index .topbox {
        margin: auto auto 2.5em;
        padding: 1em 4em;
    }
}

#top.index .topbox .topbox_message p {
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    font-size: 2.675rem;
    color: #000000;
}

#top.index .topbox a {
    border-radius: 0.25em;
}

#top.index .topbox.topbox_reqruit .topbox_message p {

}


#top.index .topbox.topbox_reqruit .topbox_button a {
    background-color: #F1F28A;
    color: #000000;
}

/* #top.index .topbox.topbox_business>div {
    margin: auto;
} */





/* medium-size */
@media screen and (min-width: 640px)  and (max-width: 1024px) {

    #top.index .topbox.topbox_business .sp_view .topbox_message2,
    #top.index .topbox.topbox_business .sp_view .topbox_button2,
    #top.index .topbox.topbox_business .sp_view .topbox_button2 a {
        margin: 0 auto;
    }

    #top.index .topbox.topbox_business .sp_view .topbox_message2 p {
        margin: 0.25em;
        font-size: 1.576rem;
        font-weight: bold;
        background-color: #FFFFFF;
        color: #000000;
    }

}

/* large-size */
@media screen and (min-width: 1025px) {

    #top.index .topbox.topbox_business {
    }

    #top.index .topbox.topbox_business .pc_view {
        position: relative;
    }

    #top.index .topbox.topbox_business .pc_view .pc_back {
        position: relative;
    }

    #top.index .topbox.topbox_business .pc_view .pc_front {
        position: absolute;
        top: 25%;
        z-index: 999;
    }

    #top.index .topbox.topbox_business .pc_view .pc_front .tb_box {
        display: -webkit-flex !important;
        display: flex !important;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;
        flex-wrap: wrap;
    }

    #top.index .topbox.topbox_business .pc_view .pc_front .tb_box>div {
        padding: 1em;
        width: 50%;
    }

    #top.index .topbox.topbox_business .pc_view .pc_front .tb_box .topbox_message2 p {
        margin: 0;
        max-width: 400px;
        font-size: 1.576rem;
        font-weight: bold;
        background-color: #FFFFFF;
        color: #000000;
    }

    #top.index .topbox.topbox_business .pc_view .pc_front .tb_box .topbox_button2 {
        margin: 0;
    }

    #top.index .topbox.topbox_business .pc_view .pc_front .tb_box .topbox_button2 a {
        margin: 0;
    }

    #top.index .topbox.topbox_business .pc_view .pc_front .topbox_message2 span {
        font-size: 0.875rem;
    }



}

/* medium-size */
@media screen and (min-width: 640px)  and (max-width: 1024px) {

    #top.index .topbox.topbox_company .topbox_message p {
        text-align: right;
        font-size: 1.576rem;
        font-weight: bold;
    }

}

/* large-size */
@media screen and (min-width: 1025px) {

    #top.index .topbox.topbox_company .topbox_message p {
        text-align: right;
        font-size: 1.576rem;
        font-weight: bold;
    }

}

#contact h2 {
    padding-bottom: 5px;
    font-weight: bold;
    position: relative;
    border-bottom: 8px solid #0479B0;
}

#contact h2::before{
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0px;
  width: 25%;
  height: 8px;
  background-color: #F1F28A;
}

@media screen and (min-width: 641px) {
    #contact dl {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content:  center;
        -webkit-align-items: stretch;
        align-items: stretch;
    }

    #contact dl dt {
        display: flex;
        -webkit-justify-content: center;
        justify-content:  center;
        -webkit-align-items: center;
        align-items: center;

        margin: 0;
        padding: 0.75em 1em;
        width: 30%;
        border-bottom: 8px solid #F1F28A;
    }

    #contact dl dd {
        margin: 0;
        padding: 0.75em 1em 0.75em 2em;
        width: 70%;
        border-bottom: 8px solid #0479B0;
    }
}
@media screen and (min-width: 641px) and (max-width: 740px) {
    #contact dl dt {
        font-size: 0.850rem;
    }
}
@media screen and (max-width: 640px) {
    #contact dl dt {
        margin: 0;
        padding: 0.75em 1em;
    }

    #contact dl dd {
        margin: 0;
        padding: 0.75em 0.75em 0.75em;
        /* background-color: #0479B0; */
    }
}

#contact dl dt {
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    background-color: #F9F9CB;
}

#contact dl dd {
    background-color: #FFFFFF;
}

#contact dl dd span {
    display: inline-block;
}
#contact dl dd span:first-child {
    margin-right: 1em;
}

#contact dl dd div {
    display: inline-block;
    padding: 0.5em 0;
}

#contact dl dd input,
#contact dl dd textarea {
    margin: 0;
    padding: 0.25em 0.5em;
}

#contact .must dt {
    border-left: 3px solid #ff0000;
}

#contact .onetimemessage {
    margin: 1em 1em 2em;
    padding: 0.5em 0.5em;
    color: #ff4444;
    border: 1px solid #ff4444;
}

#contact .onetimemessage p {
    margin: 0;
    padding: 0.5em;
    background-color: #ff4444;
    color: #ffffff;
}

@media screen and (max-width: 640px) {
    form .submit {
        width: 80%;
    }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
    form .submit {
        width: 60%;
    }
}

#sitemappage.index .sitemapBody a {
    display: inline-block;
    width: 100%;
}
