<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*--------------------------------
背景設定
--------------------------------*/
.bg-blue{
    background: url(../img/common/bg-blue.png) repeat-x left bottom;
}




/*--------------------------------
ヘッダー
--------------------------------*/


/* スマホの時は、ヘッダー上部に余白を入れる

@media(max-width:768px){
    .main-box{
        padding-top:50px;
    }

}

*/

/*------------------------------
PCの場合のヘッダーレイアウト
------------------------------*/


@media(min-width:769px){
   
    header{
        width:100%;
        z-index:100;
		-webkit-box-shadow: 0 4px 0 rgba(204, 204, 204, 0.4);
		box-shadow: 0 4px 0 rgba(204, 204, 204, 0.4);
    }
    
    .head-in{
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        /*padding-bottom:10px;*/

    }
    
    .head-logo{
        width: 260px;
		margin-right:auto;
    }

    .head-info{
        padding:0;
    }
}


/* スマホの時のヘッダー設定　*/
@media(max-width:768px){
    header{
        padding-top:60px;
        background: #fff;
    }
    
    .head-info{
        text-align: center;
    }
    
   
}

.simpleIcon{
    padding-left:192px;
    line-height:192px;
}

.simpleIcon:before{
    /*↓イメージフォルダのパス(img)は任意の場所へ*/
    background:url(img/simpleicon.svg) no-repeat;
    content:"";
    display:block;
    width:192px;
    height:192px;
    background-size:100%;
    background-position:0px 0px;
    position: absolute;
    overflow:hidden;
    left:0px;
}

/*======================================================
サブナビ
======================================================*/

/*サブナビ*/

.sub-nav{
    margin-bottom:10px;
}

.sub-nav li:not(last-child){
    background: #1e3e9c;
    color:#fff;
    font-size:1.3rem;
    padding: 4px 20px;
    border-right:1px solid #fff;
}

.sub-nav li:last-of-type{
    background: #f44613;
}

.sub-nav li a:link,.sub-nav li a:visited{
    color:#fff;
    text-decoration: none;
}

.sub-nav .fas,.sub-nav .far{
    margin-right:5px;
}


/*======================================================
グローバルナビ
======================================================*/


/* PCの時はナビが横並び・上部固定 */


@media(min-width:768px){
        
    /*.home .navi{
        margin-bottom:10px;
    }*/
    
    .g-nav{
        margin:0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .g-nav li{
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
		font-size:1.4rem;
        font-weight: bold;
        border-left:1px solid #ccc;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: calc( 100% / 7 );
        line-height: 1.3;
    }
    
    .g-nav li:nth-child(7){
        border-right:1px solid #ccc;
    }
    
    nav li a{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        height: 100%;
        padding: 6px 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
        
    nav li a:link, nav li a:visited, nav li a:hover{
        /*color: #888c99;*/
        text-decoration: none;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    nav li a:hover{
        background: rgba(30, 62, 156, 0.2);
        color:#222;
    }

    .navi.fixed .g-nav{
        margin-bottom:0;
    }
    
    .clone-nav{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10000;
        padding:0;
        -webkit-transform : translateY(-100%);
        transform : translateY(-100%);
        -webkit-transition: .3s;
        transition: .3s;
        background: rgba(255, 255, 255, 0.9);
    }
    

    .is-show {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

}

@media(max-width:768px){
    .clone-nav{
        display: none;
    }
}

@media(max-width:820px){
    .g-nav li{
        padding:0;
    }
}

/* スマホの時もナビを上部固定・英字タイトルは横並びに */

@media(max-width:768px){
    .mean-container .mean-bar{
        position: fixed !important;
    }
}

@media ( max-width : 768px ) {
    /* tablet・smartphone */
    nav.g-nav {
        display: none;
    }
    
    div#footer-nav {
        display: none;
    }
    
    #index-slide {
        height:520px;
    }
    
    .header-copy-box, h1 {
        text-align: center;
    }
    
    .header-tel-box {
        text-align: center;
        margin-top:0;
        font-size: 2em;
    }
    
    #smenu {
        display:none;
    }
    
    .header-copy-box {
        text-align:left;
        font-size:1.1rem;
        color:#666;
        line-height: 1.2;
    }
    
}



/*--------------------------------
フッター
--------------------------------*/

footer{
    background: url(../img/common/bg-blue80.gif);
    padding:20px;
}


.foot-bn{
    max-width:200px;
    position: absolute;
    right:120px;
    bottom:50px;
}

@media(max-width:768px){
    .foot-bn{
        position:static;
        text-align: center;
        margin: 10px auto;
    }
}


footer .foot-logo{
    margin: 10px auto;
}

.f-nav{
    margin-bottom:20px;
}

.f-nav ul{
    margin: 10px auto;
}

.f-nav li{
    font-size:1.3rem;
    font-weight: bold;
    border-left:1px solid #333;
    text-align: center;
    padding:0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.f-nav li:nth-child(7){
    border-right:1px solid #333;
}

.f-nav li a:link, .f-nav li a:visited, .f-nav li a:hover{
    color:#333;
	text-decoration: none;
}


#copy{
    font-size:1.2rem;
    padding: 10px 0;
    text-align: center;
    background: #121212;
    color:#fff;
}

.foot-tel{
    font-size:2.4rem;
}

@media(max-width:768px){
    #f-nav{
        display: none;
    }
}

/*  ページトップへ戻る  */

#pageTop {
  position: fixed;
  bottom: 0;
  right: 0;
 font-size:3.0rem;
    background: rgba(51, 51, 51, 0.7);
    width:60px;
}

#pageTop i {
  padding-top: 6px
}

#pageTop a {
  display: block;
  z-index: 999;
    color:#fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}



</pre></body></html>