@charset "utf-8";
h1{
	font-size: clamp(25px, (100vw - 600px) * 6 / 600 + 30px, 35px);
	padding: 20px 20px 20px 40px;
}
.textShadow{
	line-height: 1.2em;
	color: #fff;
	text-shadow:
		2px 2px 2px #333,
		-2px -2px 2px #333,
		-2px 2px 2px #333,
		2px -2px 2px #333,
		2px 0 2px #333,
		-2px  0 2px #333,
		0 2px 2px #333,
		0 -2px 2px #333;
}
/* コラムリンク */
.columnContents{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	background: none;
}
.columnLink{
	width: min(100% ,260px);
	background: #fff;
	padding: 10px;
	flex-direction: column;
	gap: 10px;
}
.columnImg{
	height: 115px;
	overflow-y: hidden;
}
.columnTitle{
	font-weight: 700;
}
.navBox{
	border-top: 3px solid #C7B299;
	border-bottom: 3px solid #C7B299;
	background: #C7B299;
}
.spMenuBtn{
	display: none;
}
.menuList li{
	border-left: 1px solid #777;
}
.menuList li:last-child{
	border-right: 1px solid #777;
}

/* トップへ戻るボタン */
.topPage p{
	background: var(--mainColor);
}
.topPage p:hover{
	background: #8c7a6b;
}
@media (max-width: 1020px){
	.navBox ul li:first-child{
		border-left: none;
	}
	.navBox ul li:last-child{
		border-right: none;
	}
}
@media (max-width: 715px){
	nav{
		position: fixed;
		z-index: 55;
	
	}
	.navBox{
		position: relative;
		border-top: none;
		border-bottom: none;
		background: none;
		margin-bottom: 50px;
		z-index: 54;
	}
	.spMenuBtn{
		position: fixed;
		display: block;
		width: 100%;
		background: #C7B299;
		text-align: center;
		padding: 15px 5px;
		box-shadow: 0 2px 5px #666;
		cursor: pointer;
		z-index: 53;
	}
	.spMenuBtn::after{
		font-family: "Font Awesome 5 Free";
		content: "\f0d7";
		font-size: 100%;
		color: currentColor;
		padding-left: 10px;
	}
	.menuList{
		box-shadow: 0 2px 5px #666;
		flex-direction: column;
		position: absolute;
		z-index: 52;
		transition: all 0.5s;
	}
	.menuList li{
		background: #eddecc;
		border-left: none;
	}
	.menuList li:not(.menuList li:last-child){
		border-bottom: 1px solid #999;
	}
	.menuList li:last-child{
		border-right: none;
	}
	.menuList .sp{
		display: none;
	}
	.menuList li a:hover::before {
		height: 100%;
		top: 0;
	}
	.menuList li a{
		padding: 15px 5px;
	}
}


