@charset "UTF-8";
.navArea {
    width: 100%;
    min-width: 800px;
    position: inherit;
    top: 0;
    margin: 0 0 0 auto;
    text-align: center;
    background-color: #222427;
    color: #fff;
    z-index: 999;
    font-family: 'Roboto', 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;

}

.navArea__inner {
    width: 760px;
    margin: 0 auto;
}

.navArea .menuArea {
    display: flex;
    justify-content: center;
}

.navArea .menuArea__list {
    position: relative;
    padding: 20px 30px;
    color: #fff;
    font-size: 15px;
    transition: all .2s ease;
    cursor: default;
}

.navArea .menuArea__list:hover {
    color: #00D4E4;
}

.navArea .menuArea__list:hover .menuArea__item {
    margin-top: 22px;
    visibility: visible;
    opacity: 1;
}

.navArea .menuArea__text {
    padding-top: 18px;
    line-height: 1.4;
    font-size: 15px;
}

.navArea .menuArea__text:first-of-type {
    padding-top: 0;
}

.navArea .menuArea__link {
    color: #fff;
    text-decoration: none;
    transition: all .2s ease;
}

.navArea .menuArea__link:hover {
    color: #00D4E4;
}

.navArea .menuArea__item {
    position: absolute;
    width: 200px;
    margin-left: -66px;
    padding: 32px 28px;
    text-align: left;
    background-color: rgba(35, 36, 39, 0.9);
    visibility: hidden;
    opacity: 0;
    transition: all .2s ease;
    z-index: 1;
}

header._n4v1-header {
    min-width: 800px;
}