/* ---以下バナー部分--- */
.banner {
    z-index: 500;
    background-color: transparent;
    top: 70px;
    width: 100%;
    position: fixed;

    /* ieでfixed二行目のバナーが表示されていなかったため追加 */
    left: 0;
}
.banner-inner {
    display: flex;
}
.banner ul {
    display: flex;
    margin-left: auto;
    padding: 0;
    margin: 0 0 0 auto;
    background-color: #fff;
}
.banner li {
    list-style: none;
}
.banner li a {
    display: flex;
    text-decoration: none;
}

.banner li.banner-tel a
 {
    padding: 10px 20px;
}
.banner li.banner-contact a
{
    padding: 10px 20px;
    background-color:#33a8f1 ;
    color: #fff;
    transition: color .25s ease-in-out,box-shadow .25s ease-in-out;
}
.banner li.banner-tel .banner-tel-num{
    font-size: 32px;
    font-weight: 700;
    font-style: normal;
}
.banner li.banner-tel .banner-tel-label{
}
.banner li.banner-contact .banner-contact-label{
    display: flex;
    align-items: center;
}
.banner-contact svg {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}
.navbar.scroll-stick .banner ul{
    box-shadow: 0 .25rem .25rem rgba(0,0,0,.2)!important;
}

.navbar .nav_banner {
    margin-left: 20px;
}
.navbar .nav_banner ul a{
    padding: 0;
}

.navbar .nav_banner ul {
    display: flex;
    margin-left: auto;
    padding: 0;
    margin: 0 0 0 auto;
    background-color: #fff;
    height: 100%;
}
.navbar .nav_banner li {
    list-style: none;
}
.navbar .nav_banner li a {
    display: flex;
    text-decoration: none;
}

.navbar .nav_banner li.banner-tel a
 {
    padding: 0 20px;
    align-items: center;
}
.navbar .nav_banner li.banner-tel a:hover
 {
    color: #000;
}
.navbar .nav_banner li.banner-contact a{
    padding: 10px 20px;
    background-color:#33a8f1 ;
    color: #fff;
}

.navbar .nav_banner li.banner-tel .banner-tel-num{
    font-size: 32px;
    font-family: roboto, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}
.navbar .nav_banner li.banner-tel .banner-tel-label{
}
.navbar .nav_banner li.banner-contact .banner-contact-label{
    display: flex;
    align-items: center;
}
.navbar .nav_banner li.banner-contact svg {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

/* 960以下で表示するミニバナー */
.navbar-collapse-header-banner {
    height: 100%;
}
.navbar-collapse-header-banner > div {
    height: 100%;
}
.navbar-collapse-header-banner a {
    width: 88px;
    padding: 8px;
    height: 100%;
    background-color: #33a8f1 ;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
}
.navbar-collapse-header-banner a >div:nth-child(1) {
    width: 24px;
    height: 24px;
}
.navbar-collapse-header-banner a >div:nth-child(2) {
    font-size: 12px;
}

/* 770以下->垂らすバナーを非表示 */
@media(max-width: 770px) {
    .banner{
        display: none;
    }
}

/* 960以下->バナーを非表示 (スクロールバー幅20pxとして加算)*/
@media only screen and (min-width: 0px) and (max-width: 980px) {
    .navbar .banner {
        display: none;
    }
}

/* 1500以下->バナーをナビゲーションバー下に表示 */
@media only screen and (max-width: 1500px) and (min-width:981px){
    .navbar .nav_banner{
        display: none;
    }
    .navbar .banner {
        display: inline;
    }
}

/* 1500以上->バナーをナビゲーションバーに組み込み一列に */
@media only screen and (min-width: 1501px) {
    .navbar {
        border-bottom: 0;
        height: 100px;
    }
    .navbar .dropdown .dropdown-menu {
        top: 30px;
    }
    .navbar .nav_banner{
        display: inline;
    }
    .navbar .banner {
        display: none;
    }
    .navbar .navbar-content {
        min-width: 1330px;
    }
}