#header {
    font-family: 'Kosugi Maru', sans-serif;
    width: 100%;
    height: 60px;
    background-color: var(--color-accent-yellow);
}
#header a {
    color: var(--color-white);
}
#header h1 {
    font-size: 23px;
    float: left;
    line-height: 60px;
}
#header ul {
    float: right;
}
#header ul li {
    font-size: var(--fs-15);
    line-height: 60px;
    width: 170px;
    height: 60px;
    float: left;
    text-align: center;
}

#header ul li img {
    height: 17px;
    width: auto;
    vertical-align: middle;
    margin-right: var(--space-10);
    margin-top: -2px;
}
#header ul li:nth-of-type(1) img {
    height: 15px;
    width: auto;
}
#header ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
}
#header ul li:nth-of-type(1) a {
    background-color: #CCBD96;
}
#header ul li:nth-of-type(2) a {
    background-color: #ea901e;
}
#header ul li:nth-of-type(3) a {
    background-color: var(--color-gold);
}
#header ul li:nth-of-type(1) a:hover {
    background-color: #9E9375;
}
#header ul li:nth-of-type(2) a:hover {
    background-color: #B26D1A;
}
#header ul li:nth-of-type(3) a:hover {
    background-color: #9D7401;
}
/*NAV
-----------------------------------------------*/
.nav {
    height: 140px;
    width: 100%;
    position: absolute;
    background-color: var(--color-white);
    top: 60px;
    left: 0px;
    z-index: 100;
}
.menu {
    width: 1000px;
    height: 140px;
    min-width: 1000px;
    margin: 0 auto;
 *zoom: 1;
    font-family: 'Kosugi Maru', sans-serif;
}
.menu li.menu__single {
    float: left;
    width: 166px;
    height: 140px;
    padding: var(--space-20) 0;
    font-size: var(--fs-15);
}
.menu > li a.init-bottom:hover {
    filter: alpha(opacity=65);
    -moz-opacity: 0.65;
    opacity: 0.65;
}
.menu > li a.init-bottom:hover:before, a.menu__single .init-bottom:hover:after {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}
.menu li.menu__single .init-bottom {
    display: block;
    padding-top: 55px;
    position: relative;
    color: var(--color-text);
}
.menu li.menu__single .init-bottom span {
    color: #ea901e;
}
.menu > li a.init-bottom:before {
    content: "";
    display: block;
    width: 0px;
    height: 100px;
    border-right: 1px dotted #BEB191;
    position: absolute;
    top: 0px;
    left: 0px;
}
.menu > li:nth-of-type(6) a.init-bottom:after {
    content: "";
    display: block;
    width: 0px;
    height: 100px;
    border-right: 1px dotted #BEB191;
    position: absolute;
    top: 0px;
    right: -4px;
}
.menu li.menu__single:nth-of-type(1) .init-bottom {
    background-image: url(../images/consultation.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 35px;
}
.menu li.menu__single:nth-of-type(2) .init-bottom {
    background-image: url(../images/citizens.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 35px;
}
.menu li.menu__single:nth-of-type(3) .init-bottom {
    background-image: url(../images/operators.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 35px;
}
.menu li.menu__single:nth-of-type(4) .init-bottom {
    background-image: url(../images/search-for-services.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 30px;
}
.menu li.menu__single:nth-of-type(5) .init-bottom {
    background-image: url(../images/available-info.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 30px;
}
.menu li.menu__single:nth-of-type(6) .init-bottom {
    background-image: url(../images/efforts.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 35px;
}
.menu li.menu__single span {
    display: block;
    font: 12px 'Josefin Sans', sans-serif;
    margin-top: var(--space-10);
}
.menu li.menu__single ul {
    width: 100%;
    position: absolute;
    top: 140px;
    left: 0px;
    text-align: left;
    background-color: rgba(206,151,0,0.90);
    padding: var(--space-20) 0;
	height: 190px;/*エリア拡張のため追記*/
    z-index: 2;
}
.menu li.menu__single ul li {
    display: inline-block;
    float: left;
    line-height: 50px;
    z-index: 3;
}
.menu li.menu__single ul li a.arrow {
    position: relative;
    display: inline-block;
    padding: 0 0 0 var(--space-20);
    vertical-align: middle;
    text-decoration: none;
    font-size: var(--fs-15);
    line-height: 50px;
    color: var(--color-white);
    z-index: 1000;
    padding-right: var(--space-40);
}
.menu li.menu__single ul li a.arrow:hover {
    color: #6E5100;
}
.menu li.menu__single ul li a.arrow:before, .menu li.menu__single ul li a.arrow:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    display: inline-block;
}
.menu li.menu__single ul li a:before {
    left: 3px;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.menu li.menu__single ul li a.arrow:hover:before {
    border-top: 1px solid #6E5100;
    border-right: 1px solid #6E5100;
}
.menu li.menu__single > a {
    color: var(--color-text);
}
ul.menu__first-level {
    visibility: hidden;
    opacity: 0;
}
ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
}
ul.menu__third-level {
    visibility: hidden;
    opacity: 0;
}
ul.menu__fourth-level {
    visibility: hidden;
    opacity: 0;
}
ul.menu__fifth-level {
    visibility: hidden;
    opacity: 0;
}
ul.menu__sixth-level {
    visibility: hidden;
    opacity: 0;
}
li.menu__single:hover ul.menu__first-level {
    top: 140px;
    visibility: visible;
    opacity: 1;
}
li.menu__single:hover ul.menu__second-level {
    top: 140px;
    visibility: visible;
    opacity: 1;
}
li.menu__single:hover ul.menu__third-level {
    top: 140px;
    visibility: visible;
    opacity: 1;
}
li.menu__single:hover ul.menu__fourth-level {
    top: 140px;
    visibility: visible;
    opacity: 1;
}
li.menu__single:hover ul.menu__fifth-level {
    top: 140px;
    visibility: visible;
    opacity: 1;
}
li.menu__single:hover ul.menu__sixth-level {
    top: 140px;
    visibility: visible;
    opacity: 1;
}
.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9998;
}

/* 2023.10.02 */
#header > .auto {
    width: 1120px;
}
#header ul li:nth-of-type(4) a {
    background-color: #AC7D0A;
}
#header ul li:nth-of-type(4) a:hover {
    background-color: #886408;
}

.menu {
    width: 1120px;
}
.menu li.menu__single {
    width: 140px;
}

.menu > li:nth-of-type(6) a.init-bottom:after {
    border-right: none;
}
.menu > li:nth-of-type(8) a.init-bottom:after {
    content: "";
    display: block;
    width: 0px;
    height: 100px;
    border-right: 1px dotted #BEB191;
    position: absolute;
    top: 0px;
    right: 0;
}
.menu li.menu__single:nth-of-type(6) .init-bottom {
    background-image: url(../images/bcp.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 32px;
}
.menu li.menu__single:nth-of-type(7) .init-bottom {
    background-image: url(../images/efforts.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 35px;
}
.menu li.menu__single:nth-of-type(8) .init-bottom {
    background-image: url(../images/member-only.png);
    background-repeat: no-repeat;
    background-position: center 3px;
    background-size: auto 30px;
}
