@charset "utf-8";
/* -----------------------------------------------------------
 =common css
----------------------------------------------------------- */
body {
    min-width: 320px;
    background-color: #fff;
    color: #333;
    font-family: 'Roboto', 'Noto Sans JP', "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
}
@media print, screen and (min-width: 768px) {
    body {
        font-size: 16px;
    }
}
/* default link color
----------------------------------------------------------- */
a {
    text-decoration: none;
}
a, a img, a::before, a::after, .btnForm {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
a {
    color: #333;
}
a:hover, .footerNavi a:hover, body.single .newsMain a {
    color: #e83637;
}
body.single .newsMain a {
    text-decoration: underline;
}
body.single .newsMain a:hover {
    text-decoration: none;
    opacity: 0.6;
}
a:hover img {
    opacity: 0.6;
}
.main a, .txtLink {}
.main a:hover {
    text-decoration: underline;
}
a.txtLink {
    text-decoration: underline;
}
a.txtLink:hover {
    text-decoration: none;
}
/* -----------------------------------------------------------
 =header, glovalnavi
----------------------------------------------------------- */
#areaHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 320px;
    background-color: #fff;
    padding: 0 4%;
    z-index: 1000;
    -webkit-transition: 0.8s;
    transition: 0.8s;
}
#areaHeader.dettach {
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
}
.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 50px;
}
.logo img {
    width: 150px;
    padding-top: 4px;
}
/* gnavi --------------- */
.btnGNaviSp, .btnGNaviSp span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.btnGNaviSp {
    position: relative;
    width: 26px;
    height: 18px;
}
.btnGNaviSp span, .btnGNaviSp.select span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e83637;
}
.btnGNaviSp span:nth-of-type(1) {
    top: 0;
}
.btnGNaviSp span:nth-of-type(2) {
    top: 8px;
}
.btnGNaviSp span:nth-of-type(3) {
    bottom: 0;
}
.btnGNaviSp.select span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
}
.btnGNaviSp.select span:nth-of-type(2) {
    opacity: 0;
}
.btnGNaviSp.select span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
}
.areaGNavi {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow-y: auto;
}
.gNavi {
    border-top: 1px solid #EFEFEF;
    margin-bottom: 25px;
}
.gNavi > li {
    border-bottom: 1px solid #EFEFEF;
}
.gNavi li a {
    display: block;
    position: relative;
    padding: 17px 20px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}
.gNaviOpen > a:before, .gNaviOpen > a:after {
    position: absolute;
    top: 22px;
    right: 12px;
    width: 11px;
    height: 1px;
    display: block;
    content: '';
    background-color: #e83637;
}
.gNaviOpen > a:before {
    top: 17px;
    right: 17px;
    width: 1px;
    height: 11px;
}
.gNaviOpen > a.select:before {
    display: none;
}
.gNaviSub {
    display: none;
}
.gNaviSub li a {
    background: #F9F9F9 none;
    border-bottom: 1px solid #EFEFEF;
    padding: 15px 20px 15px 35px;
    color: #333;
    font-size: 1.3rem;
}
.gNaviSub li a.on {
    color: #e83637;
}
.gNaviSub li:last-child a {
    border-bottom: none;
}
.btnContact a, .hBtnContact a {
    display: inline-block;
    width: 150px;
    background: #e83637 url("../images/ic_contact.svg") no-repeat 23px center;
    background-size: 19px 13px;
    border: 1px solid #e83637;
    margin-bottom: 40px;
    padding: 15px 0 15px 30px;
    color: #fff;
    font-size: 1.3rem;
    text-align: center;
}
.btnContact a:hover {
    background: #fff url("../images/ic_contact_over.svg") no-repeat 23px center;
    color: #e83637;
}
.hBtnContact a:hover {
    background-color: #fff;
    background-image: url("../images/ic_contact_over.svg");
    color: #e83637;
}
@media print, screen and (min-width: 768px) {
    #areaHeader {
        min-width: 1040px;
        height: 80px;
        padding: 0;
    }
    .areaHeaderInner {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        -ms-align-items: center;
        align-items: center;
        padding-left: 4%;
    }
    .header {
        height: 80px;
    }
    .logo img {
        width: 156px;
    }
    .areaBtnGnaviSp {
        display: none;
    }
    .areaGNavi {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        -ms-align-items: center;
        align-items: center;
        position: static;
        width: 510px;
        height: auto;
        overflow-y: visible;
        background-color: transparent;
    }
    .gNavi {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        width: 330px;
        height: 80px;
        border-top: none;
        margin-bottom: 0;
        font-size: 1.5rem;
    }
    .gNavi > li {
        position: relative;
        border-bottom: none;
    }
    .gNavi li a {
        position: relative;
        padding: 33px 0 9px;
        font-weight: 500;
        font-size: 1.5rem;
    }
    .gNaviOpen > a:after {
        top: 2px;
        right: -20px;
        width: 0;
        height: 0;
    }
    .gNavi li a:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #e83637;
        content: "";
        transform: scale(0, 1);
        transform-origin: left top;
        transition: 0.4s;
    }
    .gNavi li a:hover:before, body.company #gNavi01 a:before, body.overview #gNavi01 a:before, body.office #gNavi01 a:before, body.history #gNavi01 a:before, body.concept #gNavi01 a:before, body.products #gNavi02 a:before, body.medical-aed #gNavi02 a:before, body.disaster-prevention #gNavi02 a:before, body.fire-dept #gNavi02 a:before, body.maintenance #gNavi02 a:before, body.recruit #gNavi03 a:before, body.recruit-list #gNavi03 a:before, body.new #gNavi03 a:before, body.career #gNavi03 a:before, body.benefits #gNavi03 a:before, body.staff #gNavi03 a:before, body.staff_01 #gNavi03 a:before, body.staff_02 #gNavi03 a:before, body.staff_03 #gNavi03 a:before, body.staff_03 #gNavi03 a:before {
        transform: scale(1, 1);
    }
    .gNavi li > a:hover {
        color: #e83637 !important;
    }
    .gNavi li a.on {
        color: #333;
    }
    .gNaviSub {
        position: absolute;
        top: 57px;
        left: 0;
        background-color: #fff;
        box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.08);
        margin: 0 auto;
        padding: 10px;
    }
    .gNaviSub li a {
        background: #fff;
        border-bottom: none;
        padding: 10px;
        font-weight: 400;
        font-size: 1.4rem;
        white-space: nowrap;
    }
    .gNaviSub li a:hover {
        background-color: #F1F1F1;
    }
    .gNaviSub li a:before {
        display: none;
    }
    .hBtnContact a {
        width: 130px;
        height: 80px;
        background-position: center 20px;
        margin-bottom: 0;
        padding: 15px 0 0 0;
        font-size: 1.4rem;
    }
    .hBtnContact span {
        display: block;
        padding-top: 28px;
    }
}
/* -----------------------------------------------------------
 =breadcrumbs list
----------------------------------------------------------- */
.areaBreadcrumbs {}
.breadcrumbs {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 10px 4%;
    color: #888;
    font-size: 1.1rem;
    line-height: 1.4;
    letter-spacing: 0;
}
.breadcrumbs li {
    position: relative;
    margin-bottom: 5px;
    padding-left: 17px;
}
.breadcrumbs li:before {
    position: absolute;
    top: 50%;
    left: 4px;
    content: "";
    width: 5px;
    height: 5px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
}
.breadcrumbs li:first-child {
    padding-left: 0;
}
.breadcrumbs li:first-child:before {
    display: none;
}
.breadcrumbs li a {
    color: #666;
}
.breadcrumbs li a:hover {
    color: #e83637;
}
@media print, screen and (min-width: 768px) {
    .breadcrumbs {
        justify-content: flex-end;
        width: 1040px;
        padding: 12px 20px;
        font-size: 0.75em;
    }
    .breadcrumbs li {
        margin-bottom: 0;
        padding-left: 20px;
    }
}
/* -----------------------------------------------------------
 =contents
----------------------------------------------------------- */
#contents {
    margin-bottom: 40px;
    padding-top: 50px;
    line-height: 1.7;
}
.home #contents {
    margin-bottom: 45px;
}
.areaMain, .areaMainNews, .areaMainProduct {
    padding-right: 4%;
    padding-left: 4%;
}
.areaMainMgn {
    padding-top: 15px;
}
section, section.section02 {
    margin-bottom: 1.6em;
}
/* title --------------- */
.areaTtl {
    position: relative;
    height: 100px;
    background: url("../images/bg_header.jpg") no-repeat center center;
    background-size: cover;
}
.h1 {
    position: absolute;
    top: 50%;
    left: 4%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #e83637;
    font-size: 1.3rem;
    line-height: 1;
    white-space: nowrap;
}
.h1 span {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-style: italic;
    font-size: 2.2rem;
}
.h2 {
    background-color: #777;
    margin-bottom: 1.5em;
    padding: 11px 4%;
    color: #fff;
    font-size: 1.7rem;
    text-align: center;
}
.h2Greeting {
    margin-bottom: 0.8em;
    font-size: 1.9rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
}
.h3 {
    border-bottom: 2px solid #e83637;
    margin-bottom: 1em;
    padding-bottom: 6px;
    padding-left: 2px;
    font-size: 1.6rem;
}
.ttlProducts {
    margin-bottom: 0.8em;
    font-family: 'Noto Sans JP' !important;
    font-size: 1.7rem;
}
.h4Office, .h3Products {
    display: inline-block;
    position: relative;
    margin-bottom: 0.8em;
    padding-left: 15px;
    font-size: 1.5rem;
}
.h3Products {
    margin-bottom: 1em;
}
.h4Office::before, .h3Products::before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 3px;
    background-color: #e83637;
    content: "";
}
.h4 {
    margin-bottom: 0.6em;
}
.h5 {
    margin-bottom: 12px;
}
@media print, screen and (min-width: 768px) {
    #contents {
        margin-bottom: 80px;
        padding-top: 80px;
        line-height: 1.8;
        letter-spacing: 0.03em;
    }
    .home #contents {
        margin-bottom: 80px;
    }
    .areaMain, .areaMainNews, .areaMainProduct {
        margin: 0 auto;
        padding-right: 20px;
        padding-left: 20px;
    }
    .areaMain {
        width: 1040px;
    }
    .areaMainProduct {
        width: 940px;
    }
    .areaMainNews {
        width: 840px;
    }
    .areaMainMgn {
        padding-top: 30px;
    }
    section {
        margin-bottom: 2.5em;
    }
    section.section02 {
        margin-bottom: 3.5em;
    }
    /* title --------------- */
    .areaTtl {
        height: 250px;
    }
    .h1 {
        font-size: 1.7rem;
        letter-spacing: 0.1em;
    }
    .h1 span {
        font-size: 4.3rem;
        letter-spacing: 0;
    }
    .h2 {
        margin-bottom: 2em;
        padding: 15px 0;
        font-size: 2.2rem;
        letter-spacing: 0.1em;
    }
    .h2Greeting {
        margin-bottom: 1em;
        font-size: 2.8rem;
    }
    .h3 {
        margin-bottom: 30px;
        padding-bottom: 8px;
        font-size: 2.2rem;
    }
    .ttlProducts {
        margin-bottom: 20px;
        font-size: 2.4rem;
    }
    .h4Office, .h3Products {
        padding-left: 20px;
        font-size: 2.0rem;
    }
    .h3Products {
        margin-bottom: 1.2em;
    }
    .h4Office::before, .h3Products::before {
        width: 10px;
        height: 4px;
        top:10px;
    }
    .h4 {
        font-size: 1.8rem;
    }
    .h5 {
        font-size: 1.7rem;
    }
}
/* -----------------------------------------------------------
 =footer
----------------------------------------------------------- */
#areaFooter {
    background: url("../images/bg_footer.jpg") no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
}
.footer {
    padding: 25px 4% 20px;
    color: #fff;
    letter-spacing: 0.01em;
}
.footerNavi a {
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
    padding-left: 13px;
    color: #fff;
    font-size: 1.3rem;
}
.footerNavi a::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 2px;
    background-color: #e83637;
    content: "";
}
.footerLogo {
    margin-bottom: 15px;
}
.footerLogo img {
    width: 124px;
}
.footerInfo dt {
    margin-bottom: 5px;
    font-size: 1.4rem;
}
.footerInfo dd {
    margin-bottom: 10px;
    font-size: 1.3rem;
    line-height: 1.6;
}
.footerInfo .telLink a {
    color: #fff;
}
.copyright small {
    color: #888;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}
.pagetop {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10;
}
.pagetop a {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 90px;
    background-color: rgba(128, 128, 128, 0.8);
    padding-top: 36px;
    padding-right: 14px;
    color: #fff;
    font-style: italic;
    font-weight: 500;
    font-size: 10px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.pagetop a::before {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 1px;
    height: 10px;
    background-color: #fff;
    content: "";
}
.pagetop a:hover {
    background-color: rgba(128, 128, 128, 1.0);
}
.pagetop a:hover::before {
    top: 0;
    height: 30px;
}
@media print, screen and (min-width: 768px) {
    #areaFooter {
        height: 245px;
    }
    .footer {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        width: 1040px;
        margin: 0 auto;
        padding: 60px 20px 10px;
        letter-spacing: 0.03em;
    }
    .footerNavi a {
        margin-bottom: 25px;
    }
    .footerInfo dd {
        margin-bottom: 20px;
    }
    .areaFooterInfo {
        order: -1;
    }
    .copyright small {
        font-size: 1.2rem;
    }
}
@media print {
    .pagetop {
        display: none !important;
    }
}