@charset "UTF-8";

/*@import url("decoration.css");*/


/*============================================================*/
/*  00：master overwrite
/*============================================================*/




/*============================================================*/
/* global header
/*============================================================*/
/*============================================================*/
/* body > header {
    width: 100%;
    min-width: 1200px;
}
@media screen and (max-width: 768px) {
    body > header {
        min-width: auto;
    }
} */


/*============================================================*/
/*  top line
/*============================================================*/

.topLine {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #FFF;
}
.topLine p {
    width: 333px;
    height:100%;
}
.topLine p img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .topLine {
        position: fixed;
        z-index: 2000;
        max-width: 768px;
        /* height: 44px; */
        padding: 4px 50px 4px 10px;
        border-bottom: 1px solid #DDD;
    }
    .topLine p {
        width: 220px;
    }
}


/*============================================================*/
/*  navi
/*============================================================*/

.gnav {
    position: relative;
}
.gnav + .menuBtn {
    display: none;
}
.gnav .mainNav {
    z-index: 1000;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.gnav .mainNav > li {
    width: 232px;
}
.gnav .mainNav > li > a {
    display: block;
    padding: 10px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    font-size: 1.4rem;
    color: #1b1c80;
}
.gnav .mainNav > li > a::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 5px;
    background: url("../img/icon_arr_d_bl.png") no-repeat center center;
    background-size: 14px 14px;
    vertical-align: middle;
}
.gnav .mainNav > li > a:hover,
.gnav .mainNav > li > a.current {
    opacity: 1;
    background-color: #efefef;
}


/* sub navi */
.gnav .mainNav > li.hasSub .subNavArea {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1000;
    width: 100%;
    padding: 20px;
    background-color: #d9d9e1;
    
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility .0s linear .2s, opacity .2s linear .2s;
    -moz-transition: visibility .0s linear .2s, opacity .2s linear .2s;
    -ms-transition: visibility .0s linear .2s, opacity .2s linear .2s;
    -o-transition: visibility .0s linear .2s, opacity .2s linear .2s;
    transition: visibility .0s linear .2s, opacity .2s linear .2s;
}
.gnav .mainNav > li.hasSub:hover .subNavArea {
    z-index: 1010;
    opacity: 1;
    visibility: visible;
}

.gnav .mainNav > li.hasSub .subNavArea .inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    width: 1160px;
    margin: 0 auto;
}
.gnav .mainNav > li.hasSub .subNavArea .inner > p {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 200px;
    text-decoration: underline;
    font-weight: bold;
    font-size: 2rem;
}
.gnav .mainNav > li.hasSub .subNavArea .inner > p a {
    color: #1b1c80;
}
.gnav .mainNav > li.hasSub .subNavArea .inner .subNav {
    width: 200px;
    margin-left: 20px;
    text-align: center;
}
.gnav .mainNav > li.hasSub .subNavArea .inner .subNav div a {
    font-weight: bold;
    font-size: 1.6;
    color: #1b1c80;
}
.gnav .mainNav > li.hasSub .subNavArea .inner .subNav div a[target="_blank"] {
    padding-right:1.3em;
    background:url(../img/icon_target_blank.png) no-repeat right center;
    background-size:1em;
}
.gnav .mainNav > li.hasSub .subNavArea .inner .subNav div a img {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.gnav .mainNav > li.hasSub .subNavArea .inner .subNav div a:hover img {
    opacity: 0.6;
}
.gnav .mainNav > li.hasSub .subNavArea .inner .subNav div span {
    position: relative;
    display: block;
    margin-bottom: 8px;
}
.gnav .mainNav > li.hasSub .subNavArea .inner .subNav div .current span::after {
    content: "";
    display: block;
    position: absolute;
    left: -3px;
    top: -3px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 5px solid #1b1c80;
    pointer-events: none;
}
.gnav .mainNav > li.hasSub .subNavArea .inner .subNav div span img {
    display: block;
    max-width: 100%;
    height: auto;
}
.gnav .mainNav > li.hasSub .subNavArea .inner .subNav.panelItem {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    width: 940px;
    margin: 0;
}
.gnav .mainNav > li.hasSub .subNavArea .inner .subNav.panelItem div {
    width: 174px;
    margin: 14px 0 0 14px;
}

.gnav .mainNav > li.hasSub .subNavArea .inner .subNav ul {
    display: none;
}


/* guide navi */
.gnav .guideNav {
    position: absolute;
    right: 50%;
    top: -52px;
    
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    margin-right: -580px;
}
.gnav .guideNav li + li {
    position: relative;
    margin-left: 10px;
}
.gnav .guideNav li a,
.gnav .guideNav li span {
    display: block;
    padding: 10px 10px 10px 30px;
    text-decoration: none;
    line-height: 1;
    color: #1b1c80;
    cursor: pointer;
}
.gnav .guideNav li a:hover,
.gnav .guideNav li span:hover {
    opacity: 0.6;
}

/* google search /////////////////////// */
.gnav .guideNav li.ico_mail a,
.gnav .guideNav li.ico_mail span { background:url("../img/icon_mail_bl.png") no-repeat 10px center; background-size:14px 14px; }
.gnav .guideNav li.ico_srch a,
.gnav .guideNav li.ico_srch span { padding:0; line-height:1; }
.gnav .guideNav li.ico_srch {
    width: 280px;
}
.gsc-search-box-tools .gsc-search-box .gsc-input {
    padding-right: 8px !important;
}
.cse .gsc-search-button-v2,
.gsc-search-button-v2 {
    font-size: 0px;
    padding: 7px 15px 6px !important;
    width: auto;
    vertical-align: middle;
    border: 1px solid #1b1c80 !important;

    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;

    border-color: #1b1c80 !important;
    background-color: #1b1c80 !important;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#1b1c80),to(#1b1c80)) !important;
    background-image: -webkit-linear-gradient(top,#1b1c80,#1b1c80) !important;
    background-image: -moz-linear-gradient(top,#1b1c80,#1b1c80) !important;
    background-image: -ms-linear-gradient(top,#1b1c80,#1b1c80) !important;
    background-image: -o-linear-gradient(top,#1b1c80,#1b1c80) !important;
    background-image: linear-gradient(top,#1b1c80,#1b1c80) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#1b1c80',EndColorStr='#1b1c80') !important;
}
.cse .gsc-search-button-v2:hover,
.gsc-search-button-v2:hover {
    border-color: #1b1c80 !important;
    background-color: #1b1c80 !important;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#1b1c80),to(#1b1c80)) !important;
    background-image: -webkit-linear-gradient(top,#1b1c80,#1b1c80) !important;
    background-image: -moz-linear-gradient(top,#1b1c80,#1b1c80) !important;
    background-image: -ms-linear-gradient(top,#1b1c80,#1b1c80) !important;
    background-image: -o-linear-gradient(top,#1b1c80,#1b1c80) !important;
    background-image: linear-gradient(top,#1b1c80,#1b1c80) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#1b1c80',EndColorStr='#1b1c80') !important;
}
.gsc-search-button-v2 svg {
    fill: #fff;
}
#gs_tti50 {
    padding: 6px 6px 2px !important;
}
.gsc-search-button {
    margin-left : 0 !important;
}
/* google search /////////////////////// */

.gnav .guideNav li.open a,
.gnav .guideNav li.open span {
    color: #FFF;
}
.gnav .guideNav li.open.ico_info a,
.gnav .guideNav li.open.ico_info span { background: url("../img/icon_info_wh.png") no-repeat 10px center #1b1c80; background-size: 14px 14px;}
.gnav .guideNav li.open.ico_mail a,
.gnav .guideNav li.open.ico_mail span { background: url("../img/icon_mail_wh.png") no-repeat 10px center #1b1c80; background-size: 14px 14px;}
.gnav .guideNav li.open.ico_srch a,
.gnav .guideNav li.open.ico_srch span { background: url("../img/icon_srch_wh.png") no-repeat 10px center #1b1c80; background-size: 14px 14px;}
.gnav .guideNav li.open.ico_help a,
.gnav .guideNav li.open.ico_help span { background: url("../img/icon_info_wh.png") no-repeat 10px center #1b1c80; background-size: 14px 14px;}
.gnav .guideNav li.open.ico_book a,
.gnav .guideNav li.open.ico_book span { background: url("../img/icon_book_wh.png") no-repeat 10px center #1b1c80; background-size: 14px 14px;}

.gnav .guideNav li.open .srchBox {
    display: flex;
}

@media screen and (max-width: 768px) {
    .gnav {
        position: fixed;
        left: 0;
        top: 44px;
        z-index: 2000;
        width: 100%;
        height: 0;
        overflow: hidden;
        
        -webkit-transition: all .4s ease-in;
        -moz-transition: all .4s ease-in;
        -ms-transition: all .4s ease-in;
        -o-transition: all .4s ease-in;
        transition: all .4s ease-in;
    }
    .gnav.open {
        overflow-y: auto;
        height: calc(100% - 45px);
        background-color: rgba(0,0,0,0.5);
    }
    .gnav + .menuBtn {
        display: block;
        overflow: hidden;
        position: fixed;
        right: 2px;
        top: 2px;
        z-index: 2010;
        width: 40px;
        height: 0;
        padding-top: 40px;
        background: url("../img/icon_menu.png") no-repeat center center;
        cursor: pointer;
    }
    .gnav.open + .menuBtn {
        background: url("../img/icon_cross_bl.png") no-repeat center center;
    }
    
    .gnav .mainNav {
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    .gnav .mainNav > li {
        border-bottom: 1px solid #b2b2b2;
    }
    .gnav .mainNav > li.hasSub {
        width: 100%;
    }
    .gnav .mainNav > li:not(.hasSub) {
        width: 50%;
    }
    .gnav .mainNav > li:not(.hasSub):nth-child(even) {
        border-left: 1px solid #b2b2b2;
    }

    .gnav .mainNav > li > a {
        position: relative;
        padding: 10px 10px 10px 30px;
        background-color: #efefef;
        text-align: left;
    }
    .gnav .mainNav > li > a::after {
        display: none;
    }
    .gnav .mainNav > li:not(.hasSub) > a {
        background: url("../img/icon_arr_r_bl.png") no-repeat 10px center #efefef;
        background-size: 14px 14px;
    }
    .gnav .mainNav > li.hasSub > a {
        padding: 10px 50px 10px 10px;
    }
    .gnav .mainNav > li.hasSub > a::after {
        content: "";
        position: absolute;
        right: 2px;
        top: 50%;
        display: block;
        width: 40px;
        height: 40px;
        margin: -20px 0 0;
        background: url("../img/icon_plus_bl.png") no-repeat center center;
        background-size: 28px 28px;
        vertical-align: middle;
    }
    .gnav .mainNav > li.hasSub.open > a {
        background-color: #1b1c80;
        color: #FFF;
    }
    .gnav .mainNav > li.hasSub.open > a::after {
        background: url("../img/icon_minus_wh.png") no-repeat center center;
        background-size: 28px 28px;
        vertical-align: middle;
    }
    
    
    /* sub navi */
    .gnav .mainNav > li.hasSub .subNavArea {
        position: static;
        display: none;
        max-width: 100%;
        width: 100%;
        padding: 0;
        background-color: #d1d2e6;
        border: none;

        opacity: 1;
        visibility: visible;
    }
    .gnav .mainNav > li.hasSub .subNavArea .inner {
        display: block;
        width: 100%;
    }
    .gnav .mainNav > li.hasSub .subNavArea .inner > p {
        display: none;
    }

    
    .gnav .mainNav > li.hasSub .subNavArea .inner .subNav {
        width: 100%;
        margin: 0;
        text-align: left;
    }
    .gnav .mainNav > li.hasSub .subNavArea .inner .subNav div {
        width: 100%;
        border-top: 1px solid #b2b2b2;        
        text-align: left;
    }
    .gnav .mainNav > li.hasSub .subNavArea .inner .subNav div a {
        position: relative;
        display: block;
        padding: 10px 50px 10px 10px;
        background: #d1d2e6;
        line-height: 1.25;
        font-weight: bold;
        font-size: 1.4rem;
        color: #1b1c80;
    }
	.gnav .mainNav > li.hasSub .subNavArea .inner .subNav div a[target="_blank"] {
		background-image: none;
	}
    .gnav .mainNav > li.hasSub .subNavArea .inner .subNav div a::after {
        content: "";
        position: absolute;
        right: 2px;
        top: 50%;
        display: block;
        width: 40px;
        height: 40px;
        margin-top: -20px;
        background: url("../img/icon_plus_bl.png") no-repeat center center;
        background-size: 28px 28px;
    }
    .gnav .mainNav > li.hasSub .subNavArea .inner .subNav.open div a {
        background-color: #1b1c80;
        color: #FFF;
    }
    .gnav .mainNav > li.hasSub .subNavArea .inner .subNav.open div a::after {
        background: url("../img/icon_minus_wh.png") no-repeat center center;
        background-size: 28px 28px;
    }
    .gnav .mainNav > li.hasSub .subNavArea .inner .subNav div span {
        display: none;
    }
    .gnav .mainNav > li.hasSub .subNavArea .inner .subNav.panelItem {
        display: block;
        width: 100%;
    }
    .gnav .mainNav > li.hasSub .subNavArea .inner .subNav.panelItem div {
        display: none;
    }
    .gnav .mainNav > li.hasSub .subNavArea .inner .subNav.panelItem ul {
        display: block;
    }
    .gnav .mainNav > li.hasSub .subNavArea .subNav ul {
    	background: #efefef;
        display: none;
    }
    .gnav .mainNav > li.hasSub .subNavArea .subNav ul li {
	    margin-left: 20px;
        padding: 0;
        border-bottom: none;
        border-top: 1px solid #b2b2b2;
    }
    .gnav .mainNav > li.hasSub .subNavArea .subNav ul li:first-child {
        margin-left: 0;
    }
    .gnav .mainNav > li.hasSub .subNavArea .subNav ul li a {
        display: block;
        padding: 10px 10px 10px 16px;
        background: url("../img/icon_arr_r_bl.png") no-repeat left center #efefef;
        background-size: 14px 14px;
        color: #1b1c80;
    }
    .gnav .mainNav > li.hasSub .subNavArea .subNav ul li:first-child a {
		padding-left: 24px;
		background: url("../img/icon_arr_r_bl.png") no-repeat 4px center #efefef;
        background-size: 20px 20px;
		font-weight: bold;
	}
    .gnav .mainNav > li.hasSub .subNavArea .subNav ul li a:hover {
        opacity: 1;
        text-decoration: underline;
    }
    
    /* guide navi */
    .gnav .guideNav {
        position: static;
        display: block;
        margin: 0;
    }
    .gnav .guideNav li {
        width: 100%;
        border-bottom: 1px solid #b2b2b2;
    }
    .gnav .guideNav li + li {
        margin-left: 0;
    }
    .gnav .guideNav li.ico_srch {
        width: 100%;
        padding: 20px;
        background-color: #595757;
    }
    .gnav .guideNav li a,
    .gnav .guideNav li span {
        padding: 10px 10px 10px 30px;
        line-height: 1.5;
    }
    .gnav .guideNav li.ico_mail a,
    .gnav .guideNav li.ico_mail span { background:url("../img/icon_mail_bl.png") no-repeat 10px center #efefef; background-size:14px 14px; }
}


/* category navi */
.catNav {
    position: relative;
    background-color: #6b6bac;
}
.catNav > ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    width: 100%;
    width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}
.catNav > ul > li {
    border-right: 1px solid #d6d6ff;
}
.catNav > ul > li:first-child {
    border-left: 1px solid #d6d6ff;
}

.catNav > ul > li > a {
    position: relative;
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    line-height: 1;
    font-weight: bold;
    color: #FFF;
    opacity: 1;
}
.catNav > ul > li > a::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -5px;
    z-index: 1010;
    width: 0;
    height: 0;
    margin-left: -18px;
    border-width: 0 18px 18px 18px;
    border-style: solid;
    border-color: transparent transparent #f2f2f2 transparent;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility .0s linear .2s, opacity .2s linear .2s;
    -moz-transition: visibility .0s linear .2s, opacity .2s linear .2s;
    -ms-transition: visibility .0s linear .2s, opacity .2s linear .2s;
    -o-transition: visibility .0s linear .2s, opacity .2s linear .2s;
    transition: visibility .0s linear .2s, opacity .2s linear .2s;
}
.catNav > ul > li > a:hover::before {
    opacity: 1;
    visibility: visible;
}
.catNav > ul > li.noSub > a::before {
    display: none;
}
.catNav > ul > li.current > a {
    opacity: 1;
    background-color: #1b1c80;
}

.catNav > ul > li .catSubnav {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1000;
    width: 100%;
    background-color: #f2f2f2;
    
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility .0s linear .2s, opacity .2s linear .2s;
    -moz-transition: visibility .0s linear .2s, opacity .2s linear .2s;
    -ms-transition: visibility .0s linear .2s, opacity .2s linear .2s;
    -o-transition: visibility .0s linear .2s, opacity .2s linear .2s;
    transition: visibility .0s linear .2s, opacity .2s linear .2s;
}
.catNav > ul > li:hover .catSubnav {
    opacity: 1;
    visibility: visible;
}
.catNav > ul > li .catSubnav .inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    width: 1160px;
    margin: 0 auto;
}
.catNav > ul > li .catSubnav dl.catSubHead {
    width: 200px;
    padding: 30px 0;
    color: #1b1c80;
}
.catNav > ul > li .catSubnav dl.catSubHead dt {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 2rem;
}
.catNav > ul > li .catSubnav dl.catSubHead dt a {
    text-decoration: underline;
    color: #1b1c80;
}
.catNav > ul > li .catSubnav dl.catSubHead dt a:hover {
    text-decoration: none;
}
.catNav > ul > li .catSubnav .catSubBlock {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    width: 960px;
    padding: 10px 0 30px;
}
.catNav > ul > li .catSubnav .catSubBlock .catSubBox {
    width: 300px;
    margin: 20px 0 0 20px;
}
.catNav > ul > li .catSubnav .catSubBlock .catSubBox p a {
    display: block;
    padding: 10px 10px 10px 24px;
    background: url("../img/icon_arr_r_wh.png") no-repeat 5px center #1b1c80;
    background-size: 14px 14px;
    line-height: 1;
    font-weight: bold;
    color: #FFF;
}
.catNav > ul > li .catSubnav .catSubBox ul li {
    margin: 10px 0 0 10px;
}
.catNav > ul > li .catSubnav .catSubBox ul li a {
    display: inline-block;
    padding-left: 24px;
    background: url("../img/icon_arr_r_bl.png") no-repeat 5px center;
    background-size: 14px 14px;
    color: #1b1c80;
}
.catNav > ul > li .catSubnav .catSubBox ul li a.current {
    font-weight:bold; text-decoration:underline;
}

.catNav > ul > li .catSubnav div.catSubHead {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 220px;
    padding: 30px 0;
    color: #1b1c80;
}
.catNav > ul > li .catSubnav div.catSubHead p {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 2rem;
}
.catNav > ul > li .catSubnav div.catSubHead p a {
    text-decoration: underline;
    color: #1b1c80;
}
.catNav > ul > li .catSubnav div.catSubHead p a:hover {
    text-decoration: none;
}
.catNav > ul > li .catSubnav .catSubPanel {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    width: 960px;
    padding: 10px 0 30px;
}
.catNav > ul > li .catSubnav .catSubPanel li {
    width: 160px;
    min-height: 160px;
    margin: 20px 0 0 32px;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0,0,0,0.1);
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.1);
}
.catNav > ul > li .catSubnav .catSubPanel li.outsideNav {
    width: 800px;
}
.catNav > ul > li .catSubnav .catSubPanel li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 108px 10px 10px;
    background-color: #FFF;
    text-align: center;
    line-height: 1.25;
    font-feature-settings: "palt";
    color: #3c6a2c; 
}
.catNav > ul > li .catSubnav .catSubPanel li.outsideNav a {
    padding: 108px 10px 50px;
}
.catNav > ul > li .catSubnav .catSubPanel li a small { font-size:1.1rem; }
.panel_gas   { background: url("../img/panel_gas.png"  ) no-repeat center 24px; background-size: 70px 70px;}
.panel_flow  { background: url("../img/panel_flow.png" ) no-repeat center 24px; background-size: 70px 70px;}
.panel_rate  { background: url("../img/panel_rate.png" ) no-repeat center 24px; background-size: 70px 70px;}
.panel_area  { background: url("../img/panel_area.png" ) no-repeat center 24px; background-size: 70px 70px;}
.panel_app   { background: url("../img/panel_app.png"  ) no-repeat center 24px; background-size: 70px 70px;}
.panel_waon  { background: url("../img/panel_waon.png" ) no-repeat center 24px; background-size: 70px 70px;}
.panel_construction  { background: url("../img/panel_construction.png" ) no-repeat center 24px; background-size: 70px 70px;}
.panel_bnr  { background: url("../img/bnr_denki01.png" ) no-repeat center 24px; background-size: 94%;}

.panel_svc01 { background: url("../img/panel_svc01.jpg") no-repeat center 29px; background-size: 87px 60px;}
.panel_svc02 { background: url("../img/panel_svc02.jpg") no-repeat center 29px; background-size: 87px 60px;}
.panel_svc03 { background: url("../img/panel_svc03.jpg") no-repeat center 29px; background-size: 87px 60px;}
.panel_svc04 { background: url("../img/panel_svc04.jpg") no-repeat center 29px; background-size: 87px 60px;}
.panel_svc05 { background: url("../img/panel_svc05.jpg") no-repeat center 29px; background-size: 87px 60px;}
.panel_svc06 { background: url("../img/panel_svc06.jpg") no-repeat center 29px; background-size: 87px 60px;}
.panel_svc07 { background: url("../img/panel_svc07.jpg") no-repeat center 29px; background-size: 87px 60px;}


@media screen and (max-width: 768px) {
    .catNav {
        display: none;
    }
}


/* header fixed */
body > header.posFixed .catNav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    min-width: 1200px;
    width: 100%;
}


/*============================================================*/
/* contents
/*============================================================*/
#contents {}

@media screen and (max-width: 768px) {
    #contents { padding-top: 44px;}
}


/*============================================================*/
/* Snippet
/*============================================================*/

/* pageNav */
/*------------------------------------------------------------*/
.pageNav {
    margin: 40px 0 60px;
}


/* 
.pageNav ul {
    display: table;
    table-layout: fixed;
    width: 100%;
    border: 1px solid #1b1c80;
}
.pageNav ul li {
    display: table-cell;
    vertical-align: top;
}
.pageNav ul li + li {
    border-left: 1px solid #1b1c80;
} */

.pageNav ul {
    border-top: 1px solid #1b1c80;
    border-left: 1px solid #1b1c80;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.pageNav ul li {
    border-right: 1px solid #1b1c80;
    border-bottom: 1px solid #1b1c80;
    width: 33.33333%;
}
/* .pageNav ul li + li {
    border-left: 1px solid #1b1c80;
} */



.pageNav ul li a {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 88px;
    padding: 10px 10px 10px 10px;
    background-color: #FFF;
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
    color: #1b1c80;
    line-height:140%;
    text-decoration: none;
}
.pageNav ul li.current a{
		opacity: 1;
		background-color: #1b1c80;
		color: #FFF;
		pointer-events: none;
}
.pageNav ul li a:hover {
    opacity: 1;
    background-color: rgba(27, 28, 128, 0.8);
    color: #FFF;
}

/* sp */
@media screen and (max-width: 750px) {
    .pageNav {
        margin: 0;
        padding: 0px 0px 30px 0px;
        border-bottom: 1px solid #1b1c80;
    }

    .pageNav ul {
        border: none;
        display: block;
    }

    .pageNav ul li {
        border: 1px solid #1b1c80;
        border-top: none;
        display: block;
        width: 100%;
    }
    
    .pageNav ul li:first-of-type {
        border-top: 1px solid #1b1c80;
    }

    .pageNav ul li a {
        height: auto;
        font-size: 1.6rem;
    }
}

/* pageList */
/*------------------------------------------------------------*/
.pageList {
    margin: 40px 0 80px;
}
.pageList ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    border-bottom: 1px solid #CCC;
}
.pageList ul li {
    margin: 0 35px 20px 0;
    font-weight: bold;
    font-size: 1.7rem;
}
.pageList ul li::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 10px;
    background: url("../img/icon_arr_d_bl.png") no-repeat center center;
    background-size: 14px 14px;
}
.pageList ul li a { color: #1b1c80;}

@media screen and (max-width: 768px) {
    .pageList {
        margin: 20px 0;
    }
    .pageList ul {
        display: block;
        padding: 20px 15px;
        border-bottom: 1px solid #1b1c80;
    }
    .pageList ul li {
        margin: 0 0 10px;
        padding: 5px 0;
        border-bottom: 1px solid #CCC;
        font-size: 1.6rem;
    }

}

/* listBox */
.listSet {
    margin: 20px 0 20px 30px;
    list-style: decimal;
}
.listSet > li {
    margin-top: 20px;
    font-weight: bold;
    font-size: 2rem;
}
.listSet > li > ul {
    margin-left: 20px;
    list-style: disc;
}
.listSet > li > ul > li {
    margin-top: 0.25em;
    font-weight: normal;
    font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
    .listSet {
        margin: 20px 15px 20px 35px;
    }
    .listSet > li {
        font-size: 1.6rem;
    }
    .listSet > li > ul > li {
        font-size: 1.4rem;
    }

}

/* boxSet */
.boxSet {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 40px 0;
}
.boxSet .imgBox {
    width: 360px;
    vertical-align: top;
}
.boxSet .imgBox p {
    text-align: center;
    font-size: 1.4rem;
}
.boxSet .txtBox {
    width: calc(100% - 400px);
    vertical-align: top;
}
ul.txtBox,
.boxSet ul { margin: 10px 0 10px 20px; list-style: disc; }
ol.txtBox,
.boxSet ol { margin: 10px 0 10px 20px; list-style: decimal; }

@media screen and (max-width: 768px) {
    .boxSet {
        display: block;
        margin: 0px;
    }
    .boxSet .imgBox {
        width: 100%;
    }
    .boxSet .imgBox img {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .boxSet .txtBox {
        width: 100%;
        margin-top: 10px;
    }
}

/* imgSet */
.imgSet {
    margin: 40px 0;
}
.imgSet img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .imgSet {
        margin: 30px 15px;
    }
}


/* table format */
/*------------------------------------------------------------*/
.tableFrm {
    width: 100%;
    overflow-x: auto;
}
.tableFrm table {
    width: 100%;
    table-layout: fixed;
}
.tableFrm table th,
.tableFrm table td {
    padding: 5px;
    border: 1px solid #CCC;
    vertical-align: middle;
    text-align: center;
}
.tableFrm table th {
    background-color: #f4f4f9;
}
.tableFrm table td {
    background-color: #FFF;
}
.tableFrm + p {
    display: none;
    margin: 10px 15px 0;
    padding: 5px;
    background-color: #666;
    text-align: center;
    font-size: 1.2rem;
    color: #FFF;
}

@media screen and (max-width: 768px) {
    .tableFrm {
        width: calc(100% - 30px);
        margin: 0 auto;
    }
    .tableFrm table {
        width: auto;
    }
    .tableFrm table th,
    .tableFrm table td {
        min-width: 120px;
        white-space: nowrap;
    }
    .tableFrm + p {
        display: block;
    }
}


/*============================================================*/
/* cat h2 & BTN
/*============================================================*/

/* color */
/*------------------------------------------------------------*/

/*industry*/
.industry ul.industry_support_btnList li a::before,
.industry .industry_support_title::before   { background-color:#32a0d2; }
/*medical*/
.medical ul.industry_support_btnList li a::before,
.medical .industry_support_title::before    { background-color:#c36e96; }
/*energy*/
.energy ul.industry_support_btnList li a::before,
.energy .industry_support_title::before     { background-color:#e59027; }
/*environment*/
.environment ul.industry_support_btnList li a::before,
.environment .industry_support_title::before { background-color:#279a9a; }

/* h2 */
/*------------------------------------------------------------*/
.industry_support_title {
    position: relative;
    width: 360px;
    margin: 0 auto 40px;
    padding:0 0 20px;
    text-align: center;
    letter-spacing: 0.2em;
    font-family: 'Noto Serif', '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
    font-weight: bold;
    font-size: 2.4rem;
}
.industry_support_title::before,
.industry_support_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 6px;
    border:0;
}
.industry_support_title::before { left: 0; background-color:#6B6BAC; top:auto; }
.industry_support_title::after  { right:0; background-color:#1b1c80; }

@media screen and (max-width: 768px) {
    .industry_support_title {
        margin: 0 auto;
    }
}
@media screen and (max-width: 400px) {
    .industry_support_title {
        max-width: 360px;
        width: 100%;
        margin: 0 auto 30px;
        letter-spacing: 0;
        font-size: 2rem;
    }
}

/* ul */
/*------------------------------------------------------------*/
ul.industry_support_btnList {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    margin:10px 0;
}
ul.industry_support_btnList li {
    width: 360px;
    list-style: none;
    margin:0 20px;
}
ul.industry_support_btnList li.balloon  a::before { background-image:url("../../common2/img/icon_support_balloon.png"); }
ul.industry_support_btnList li.brochure a::before { background-image:url("../../common2/img/icon_support_brochure.png"); }
ul.industry_support_btnList li.email    a::before { background-image:url("../../common2/img/icon_support_email.png"); }

ul.industry_support_btnList li a {
    display: block;
    position: relative;
    padding: 10px 10px 10px 80px;
    margin:0;
    background-color: #efefef;
    text-align: center;
    font-size: 1.8rem;
    font-weight:normal;
    color: #1b1c80;
}
ul.industry_support_btnList li a[target="_blank"]{ background-image:none; }
ul.industry_support_btnList li a::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 100%;
    background: no-repeat center center #6B6BAC; background-size: 50px 38px;
}

@media screen and (max-width: 768px) {
    .industry_support_container, .industry_support_container.contentBox {
        margin:40px 0;
    }
    ul.industry_support_btnList {
        display: block;
        padding: 15px;
    }
    ul.industry_support_btnList li {
        width: 100%;
        margin: 0 auto;
    }
    ul.industry_support_btnList li + li {
        margin-top: 15px;
    }
}


