@charset "utf-8";

/* COMMON
---------------------------------------------------------------------------- */	
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

@font-face{
    font-family: dinalternate;
    src: url("/common/font/din.ttf")format("truetype");
}

body{
    font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    color:#000;
}
.mac body{
    font-size: 15px;
}
a{
    text-decoration:underline; 
    color: #333;
    outline: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
a:hover{ text-decoration: none; }

@media screen and (max-width:768px){
    
}

/* header
---------------------------------------------------------------------------- */
.header{
    position: fixed;
    top:20px;
    left: calc( (100% - 1100px) / 2 );
    width: 1000px;
    height: 80px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    padding:0 30px;
    align-items: center;
    justify-content: space-between;
    box-shadow:0 3px 6px rgba(0,0,0,0.15);
    z-index: 88888;
}

/* header-logo */
.header-logo{
    
}
.header-logo a{
    display: block;
}
.header-logo a img{
    width:auto;
    height: 40px;
}

/* header-nav */
.header-nav{
    
}
.header-nav > ul{
    display: flex;
}
.header-nav > ul li{
    position: relative;
}
.header-nav > ul li button{
    height: 80px;
    position: relative;
    border: none;
    font-family: inherit;
    background-color: transparent;
    padding: 0 15px;
    font-size:18px;
    font-weight: bold;
}
.header-nav > ul li button::after{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 6px solid #0168b7;
    border-bottom: 0;
    position: absolute;
    left: calc(50% - 6px);
    bottom: 15px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.header-nav > ul li:hover button::after{
    bottom: 5px;
}

/* header-nav-drop */
.header-nav-drop{
    position: absolute;
    width: 245px;
    top: 80px;
    left:calc( 50% - 127.5px );
    padding-top: 10px;
    display: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
@media screen and (min-width:769px){
    .header-nav ul li:hover .header-nav-drop{
        display: block;
    }
}
.header-nav-drop ol{
    background-color: #0168B7;
    border-radius: 10px;
    overflow: hidden;
}
.header-nav-drop ol li:not(:last-child){
    border-bottom: 1px solid #fff;
}
.header-nav-drop ol li a{
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    font-size: 16px;
}
.header-nav-drop ol li a:hover{
    background-color: #63B3F0;
}

@media screen and (max-width:768px){
    .header{
        position: fixed;
        top:0px;
        left: 0px;
        width: 100%;
        height: 60px;
        border-radius: 0px;
        padding:10px;
    }

    /* header-logo */
    .header-logo{
        
    }
    .header-logo a{
        display: block;
    }
    .header-logo a img{
        width:auto;
        height: 30px;
    }

    /* header-nav */
    .header-nav{
        position: absolute;
        top: 0;
        right: -100%;
        width:100%;
        height: 100vh;
        background: linear-gradient(#a7bbed 0%, #f8e1dd 100%);
        padding-top: 60px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all  0.3s ease;
    }
    .header-nav.is-open{
        right:0;
    }
    .header-nav>ul{
        display: block;
        border-top: 1px solid rgba(255,255,255,0.5);
    }
    
    .header-nav ul li{
        border-bottom: 1px solid rgba(255,255,255,0.5);
    }
    .header-nav ul li button{
        width:100%;
        height: 60px;
        padding: 0 15px;
        font-size:16px;
        font-weight: bold;
    }
    .header-nav ul li button::after{
        left: auto;
        right: 20px;
        bottom: auto;
        top: calc( 50% - 3px );
    }
    .header-nav ul li.is-open button::after{
        transform: rotate(0.5turn);
    }
    
    /* header-nav-drop */
    .header-nav-drop{
        position: relative;
        width: 100%;
        top: 0;
        left:0;
        padding-top: 0;
        padding: 0 20px;
        display: none;
    }
    .header-nav ul li.is-open .header-nav-drop{
        display: block;
    }
    .header-nav ul li.is-open{
        padding-bottom: 20px;
    }
    
    .header-nav-drop ol{
        background-color: rgba(255,255,255,0.1);
    }
    .header-nav-drop ol li:not(:last-child){
        border-bottom: 1px solid rgba(255,255,255,0.5);
    }
    .header-nav-drop ol li:last-child{
        border-bottom: none;
    }
    .header-nav-drop ol li a{
        color: #000;
        padding: 10px 15px;
        font-size: 15px;
        text-align: left;
    }
    .header-nav-drop ol li a:hover{
        background-color: transparent;
    }
    
    /* 開閉ボタン */
    .header-sp{
        position: fixed;
        z-index: 88889;
        top: 0;
        right: 0;
        width:60px;
        height: 60px;
        border: none;
        background-color: transparent;
        background-image: url("/common/images/sp_open.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 100% auto;
    }
    .header-sp.is-open{
        background-image: url("/common/images/sp_close.png");
    }
    
    /* 消防士向け */
    .header-nav-sub{
        padding: 25px;
    }
    .header-nav-sub ul{
        background-color: #fff;
        display: flex;
        flex-wrap: wrap;
        border-radius: 15px;
    }
    .header-nav-sub ul li{
        width: 50%;
        border: none;
    }
    .header-nav-sub ul li a{
        display: block;
        text-decoration: none;
        text-align: center;
        padding: 10px;
        font-weight: bold;
        line-height: 1.2em;
        font-size:14px;
    }
    .header-nav-sub ul li a img{
        width:auto;
        height: 30px;
        display: block;
        margin: 0 auto 5px;
    }
}

/* sidebar
---------------------------------------------------------------------------- */
.sidebar{
    position: fixed;
    right: 0;
    top: 0;
    width:100px;
    background-color: #fff;
    border-left: 1px solid #CBCBCB;
    border-bottom: 1px solid #CBCBCB;
    z-index: 77777;
}

.sidebar ul li a{
    text-decoration: none;
    width:100px;
    text-align: center;
    display: block;
    font-size:14px;
    line-height: 18px;
    font-weight: bold;
    padding: 10px 0;
}
.sidebar ul li:not(:first-child) a{
    border-top: 1px solid #cbcbcb;
}

.sidebar ul li a img{
    display: block;
    width:auto;
    height: 40px;
    margin: 0 auto 5px;
}

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


/* wrap
---------------------------------------------------------------------------- */
.wrap{
    
}
@media screen and (max-width:768px){
    .wrap{
        padding-top: 60px;
    }
}


/* main
---------------------------------------------------------------------------- */
.main{
   width:calc(100% - 100px);
}
@media screen and (max-width:768px){
    .main{
        width:100%;
    }
}

@media screen and (max-width:768px){
    .main{
        
    }
}


/* mv
---------------------------------------------------------------------------- */
.mv{
    margin-right: 50px;
    margin-bottom: 50px;
}
.mv-img{
    margin-bottom: 30px;
}
.mv-img img {
    height: 18vw;
    width: 84vw;
}

/* mv-path */
.mv-path{
    margin-bottom: 20px;
    font-size:14px;
}
.mv-path ol{

}
.mv-path ol li{
    display:inline-block;
    margin-right:10px;
}
.mv-path ol li::after{
    content:"";
    display: inline-block;
    margin-left: 15px;
    background-image: url("/common/images/path_arr.png");
    background-repeat: no-repeat;
    width:8px;
    height: 12px;
    background-size: 100% auto;
}
.mv-path ol li:last-child::after{
    display: none;
}

/* mv-ttl */
.mv-ttl{
    
}
.mv-ttl-h1{
    font-size: 40px;
    font-weight: bold;
    color: #233479;
}

@media screen and (max-width:768px){
    .mv{
        margin-right: 30px;
        margin-bottom: 30px;
    }
    .mv-img{
        margin-bottom: 30px;
    }

    /* mv-path */
    .mv-path{
        display: none;
    }
    
    .mv-ttl-h1{
        font-size: 28px;
    }
}


/* footer-link
---------------------------------------------------------------------------- */
.footer-link{
    padding:50px 0 100px;
}
.footer-link-ttl{
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    font-size:30px;
}
.footer-link-ttl img{
    display: block;
    margin: 0 auto 10px;
    height: 50px;
    width: auto;
}
.footer-link-btn ul{
    display: flex;
    justify-content: space-between;
    align-content: center;
    margin-bottom: 50px;
}
.footer-link-btn ul li{
    width: calc( 50% - 25px );
}

.btn-search,
.btn-download{
    font-size:20px;
    font-weight: bold;
    border-radius: 10px;
    display: block;
    text-decoration:none;
    position: relative;
    padding: 30px 60px 30px 90px;
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 37px auto;
}
.btn-search:hover,
.btn-download:hover{
    background-position: right 10px center;
}

.btn-search{
    border: 5px solid #0168B7;
    background-image: url("/common/images/footer_link01_arr.png");
}
.btn-download{
    border: 5px solid #C22D26;
    background-image: url("/common/images/footer_link02_arr.png");
}

.btn-search::before,
.btn-download::before{
    content: "";
    position: absolute;
    top:20px;
    left:20px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
}

.btn-search::before{
    width:50px;
    height: 50px;
    background-image: url("/common/images/footer_link01_img.png");
}

.btn-download::before{
    width:46.1px;
    height: 50px;
    background-image: url("/common/images/footer_link02_img.png");
}
.footer-block {
    width: 350px;
}
.footer-search {
    width: 100%;
    display: flex;
    justify-content: center;
}
#___gcse_0 {
    width: 350px;
  }
@media screen and (max-width:768px){
    .footer-link{
        padding:50px 0 0;
    }
    .footer-link-ttl{
        margin-bottom: 20px;
        font-size:20px;
    }
    .footer-link-ttl img{
        height: 40px;
    }
    .footer-link-btn ul{
        display: block;
    }
    .footer-link-btn ul li{
        width: 100%;
    }

    .btn-search,
    .btn-download{
        font-size:18px;
        padding: 20px 60px 20px 80px;
    }

    .btn-search{
        margin-bottom: 20px;
    }
    .btn-download{
        border: 5px solid #C22D26;
        background-image: url("/common/images/footer_link02_arr.png");
    }

    .btn-search::before,
    .btn-download::before{
        top:10px;
    }
    .footer-search {
        flex-direction: column;
    }
    .footer-block {
        width: unset;
    }
    #___gcse_0 {
        width: unset;
        margin-top: 30px;
    }

}

/* footer
---------------------------------------------------------------------------- */
.footer{
    background-color: #EDF1F4;
}

/* footer-logo */
.footer-logo{
    border-bottom: 1px solid #BECDD9;
    padding: 20px 0;
}
.footer-logo img{
    width:auto;
    height: 40px;
}

/* footer-nav */
.footer-nav{
    padding: 30px 0 50px;
    text-align: center;
}

.footer-nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.footer-nav ul li{
    margin: 0 20px;
}
.footer-nav ul li a{
    text-decoration: none;
    font-size: 13px;
}

.footer-iso {
    width: 245px;
    height: auto;
}

.footer-nav-copy{
    margin-top: 30px;
    font-size: 13px;
}

@media screen and (max-width:768px){
    .footer{
        margin-top: 50px;
    }

    /* footer-logo */
    .footer-logo img{;
        height: 25px;
    }

    /* footer-nav */
    .footer-nav{
        padding: 30px 0 50px;
        text-align: center;
    }

    .footer-nav ul{
        display: block;
    }
    .footer-nav ul li{
        margin: 0 auto;
        width:100%;
    }
    .footer-nav ul li a{
        padding: 10px;
        display: block;
    }

    .footer-nav p a img{
        width: 245px;
        height: auto;
    }

    .footer-nav-copy{
        margin-top: 30px;
        font-size: 13px;
    }
}
