.c-header__inner {
    flex-wrap: wrap;
}

.c-header__naviSp {
    order       : 3;
    width       : 100vw;
    margin-left : -100px;
    margin-right: -100px;
    background  : #01B3CD;
}

@media only screen and (max-width: 900px) {
    .c-header__naviSp {
        margin-left : unset;
        margin-right: unset;
        background  : unset;
        top: 100px;
    }
}


.c-logo {
    margin: 17px 0;
}

.c-header__latestnews {
    display: flex;
}

.c-header__latestnews a {
    display      : block;
    min-width    : 97px;
    padding      : 8px 10px;
    text-align   : center;
    font-size    : 1.3rem;
    border-radius: 5px;
    outline      : 1px solid #01B3CD;
    transition   : all .3s ease-in;
}

.c-header__btnNews a {
    background-color: #fff;
}

.c-header__btnReport a {
    margin-left     : 13px;
    color           : #FFFFFF;
    background-color: #01B3CD;
}

.menu>li.has-submenu>a::after {
    content   : "";
    position  : absolute;
    background: url("../img/common/icon_arrow_down.svg") no-repeat;
    width     : 9px;
    height    : 5px;
    top       : 50%;
    right     : -15px;
    transform : translateY(-50%);
}

@media screen and (min-width: 1024px) {
    .c-header__latestnews a:hover {
        opacity: 1;
    }

    .c-header__btnNews a:hover {
        background-color: #01B3CD;
        color           : #fff;
    }

    .c-header__btnReport a:hover {
        background-color: #fff;
        color           : #313131;
    }
}

/* .menu {
    font-size: 1.3rem;
} */

@media only screen and (max-width: 900px) {
    .c-header__latestnews {
        display: none;
    }

    .menu>li.has-submenu>a::after {
        content: none;
    }
}

.menu>li>a {
    position: relative;
}

.menu>li {
    margin: 0 50px;
}

.menu>li:first-of-type {
    margin-right: 25px;
}

.menu>li a {
    color : #FFFFFF;
    height: 40px;
}

.submenu {
    min-height: auto;
    border-top: 1px dotted #ffffff;
    padding: 35px 100px;
}

.submenu .prod-section{
    display: flex;
    width: 100%;
    padding: 0 30px;
    justify-content: center;
    gap: 5%;
}

@media only screen and (max-width: 900px) {
    .menu>li {
        margin: 0;
    }

    .menu>li a{
        height: 75px;
    }

    .submenu{
        padding: 0;
        border-top: 0;
    }

    .submenu .prod-section{
        padding: 0;
    }
}

@media screen and (min-width: 1024px) {
    .menu > li .submenu.is-active {
        display: block; 
    }}
    
