@charset "utf-8";
/* CSS Document */

/*ここからサンプル画像用CSS*/
.imagesample{
	width: 700px;
	height: 150px;
	object-fit: cover;
}
/*ここまでサンプル画像用CSS*/
*{
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}
.gnavi__wrap {
    width: 1000px;
}
.gnavi__lists {
    display: flex;
}
.gnavi__list {
    list-style: none;
    width: 20%;
    height: 40px;
    background-color: #ED3F27;
    position: relative;
    transition: all .3s;
}
.gnavi__list:hover {
    background-color: #F48D7F;
}
.gnavi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}
.gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
}
.gnavi__list:hover a {
    color: #fff;
}


/*　ドロップダウンメニュー　*/
.dropdown__lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: absolute;
    top: 41px;
    left: 0px;
}
.gnavi__list:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
    list-style: none;
    background-color: #ED3F27;
    height: 40px;
    transition: all .3s;
    position: relative;
}
.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown__list:hover {
    background-color: #C8C76F;
}
.dropdown__list a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
    padding-left: 5px;
}

