/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#jh-header {
	width: 100%;
	position: fixed;  
    margin: 0 auto;
	top: 0px;
	/*background-color: #FFF;*/
	background: #f5f0e9;
	z-index: 100;
}
.logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 1em 0em;
	/*border-bottom: 1px #000000 solid;*/
	/*background: #e9d1b1;*/
	/*color: #FFFFFF;*/
	max-height: 120px;
	max-width: 1240px;
    margin: 0 auto;
}
.logo > * {
    /*width: 15vw;*/
    margin: 0em 1em;
}
.logoImg.logoJf {
    max-width: 100px;
}
@media all and (min-width:750px){
	.logo > * {
		/*max-width: 100px;
		width: 10%;
		margin: 0em 1.5em;*/
	}
	
}
@media all and (max-width:500px){
	.logo .logoTxt a{
		/*line-height: 1em;*/
	}
	
}

.logo .logoImg {
    position: relative;
	max-width: 100px;
	width: 100%;
}

.logo .logoImg > * {
   /*height: 100%;*/ /* img要素の高さを100%に設定 */
    /*width: auto;*/ /* 幅は自動調整 */
	height: auto;
    width: 100%;
    display: block; /* インライン要素の余分なスペースを除去 */
}

/*.logo .logoJf::after,
.logo .logoJf2::after{
    content: "";
    border-right: 1px solid #FFFFFF;
    height: 100%;
    margin-left: 10px;
    position: absolute;
    right: -1em;
    top: 0;
}*/

.logo .logoTxt{
	/*min-width: max-content;*/
}
.logo .logoTxt ul{
	display: flex;
}
.logo .logoTxt a{
    font-size: clamp(12px, 1.5vw, 18px);
    line-height: 1.25em;
    font-weight: 800;    
    text-align: justify;
    text-align-last: justify;
	color: #000000;
	display: block;
    max-width: 12em;
    padding: 0 1em;
    border-right: 1px #000000 solid;
}
.logo .logoTxt li:last-child a{
	border-right: none;
}
.menu.menuToggle{
	display: none;
}

@media all and (min-width:750px){
	.logo .logoJf::after, .logo .logoJf2::after{
		right: -1.5em;
	}
	
}
@media all and (max-width:750px){
	#jh-header .logo .logoTxt ul{
		display: none;
	}
	.menu.menuToggle{
		display: block;
		position: relative;
		width: 38px;
		height: 29px;
		z-index: 10;
		margin-left: 10px;
		cursor: pointer;
	}
	.menu.menuToggle span{
		display: inline-block;
		position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		background: #000000;
		-webkit-transition: background 0.3s, -webkit-transform 0.3s;
		transition: background 0.3s, -webkit-transform 0.3s;
		transition: transform 0.3s, background 0.3s;
		transition: transform 0.3s, background 0.3s, -webkit-transform 0.3s;
	}
	.menu.menuToggle span:nth-of-type(1) {
		top: 0;
	}
	.menu.menuToggle span:nth-of-type(2) {
		top: 14px;
	}
	.menu.menuToggle span:nth-of-type(3) {
		bottom: 0;

	}
	.menu.menuToggle.is-active span {
		background: #000000;
	}
	.menu.menuToggle.is-active span:nth-of-type(1) {
		-webkit-transform: translateY(14px) rotate(45deg);
		transform: translateY(14px) rotate(45deg);
	}
	.menu.menuToggle.is-active span:nth-of-type(2) {
		opacity: 0;
	}
	.menu.menuToggle.is-active span:nth-of-type(3) {
		-webkit-transform: translateY(-14px) rotate(-45deg);
		transform: translateY(-14px) rotate(-45deg);
	}
	.menu.menuToggle.is-active span {
		background: #000000;
	}
}

/*------------------------------------------------------------
	メニュー
------------------------------------------------------------*/
.menuBox{
	display: none;
	position: fixed;
	top: 0;
    left: 0;
	z-index: 98;
	background: rgba(0,0,0,0.80);
	width: 100vw;
	height: 100vh;
}
.innerBox {
    width: 100%;
    height: 100%;
    margin-right: 0;
    margin-left: auto;
    background: #f5f0e9;
}
ul.naviUl {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 0 15%;
	font-size: clamp(20px, 6vw, 32px);
}
ul.naviUl li {
    margin: 0.25rem 0;
}
ul.naviUl li a{
	color: #000000;
}
