@charset "utf-8";

/**********************************************/
/*　フッター*/
/**********************************************/
footer {
    width:100%;
    /*background-color: #f7f7f7;*/
    background-color: #41525d;
    color:#fff;
    opacity:0;
    
}

/*内枠*/
.footer-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
}


/*バナー*/
.banner {    
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;

    display: flex;    
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    justify-content: center;
    align-items: center;
}
.banner .banner-item {
    margin: 0 1.5%;
}
.banner .banner-item img {
    display: block;
    width: 100%;
    max-width: 200px;
    border-radius: 5px;
}


/*コピーライト*/
.copyright {
    font-size: 1.4rem;
    text-align: center;
    margin-top: 20px;
    line-height: 100%;
}



/****************************/
/* ページトップへ戻る*/
/****************************/
#pagetop {
    clear: both;
    position: fixed;
    bottom: 20px;
    right: 40px;
    z-index: 8888;
    cursor: pointer;
}
#pagetop img {
    width:50px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px; 
	border-radius: 4px;
}




/****************************/
/*レスポンシブ*/
/****************************/
@media screen and (max-width: 1280px) {
}

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

    .banner .banner-item img {
        max-width: 160px;
    }

}

@media screen and (max-width: 780px) {
    .copyright {
        font-size: 1.2rem;
    }
    .banner .banner-item {
        margin-bottom: 20px;
    }
    .banner .banner-item img {
        max-width: 160px;
    }
}

@media screen and (max-width: 580px) {
    #pagetop {
        bottom: 20px;
        right: 20px;
    }
    #pagetop img {
        width:40px;
    }

    .banner .banner-item img {
        max-width: 120px;
    }
}

@media screen and (max-width: 380px) {
    .copyright {
        font-size: 1rem;
    }

    
}

/*


.banner {
    flex-direction: row;
}
.banner .banner-item {
    margin: 0 10px 20px;
    width: calc(100% / 2 - 20px);
    text-align: center;
}
.banner .banner-item img {
    width: 100%;
    margin: 0 auto;
}
*/