@charset "UTF-8";  

.pc {
	display: inline-block ;
}

.pc2 {
	display: block ;
}

.sp ,.sp2 {
	display: none;
}

#wrapper {
	width: 100%;
	min-width: 980px;
	margin: auto;
	padding: 0;
	position: relative;
}


/*====================================
ヘッダー
=====================================*/
header {
	width: 100%;
	min-width: 980px;
	margin: 0 auto;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
	transition: 0.2s linear;
}
	header a.logo {
		display: inline-block;
		margin: 0;
		padding: 0 15px;
		text-decoration: none;
	}
		header a.logo:hover {
			opacity: 0.8;
		}
		header a.logo h1 {
			display: inline-block;
			height: 82px;
			margin: 0;
			padding: 0;
			text-decoration: none;
			display: flex;
			align-items: center;
		}
		header a.logo h1 img {
			display: inline-block;
			margin: 0 0 0 10px;
			padding: 0; 
		}
		header a.logo h1 img:first-of-type {
			margin: 0;
		}

	nav {
		display: inline-block;
		margin: 0;
		padding: 0;
	}
		nav ul {
			margin: 0;
			padding: 0;
			list-style: none;
			display: flex;
			justify-content: flex-end;
			align-items: center;
		}
			nav ul li {
				margin: 0;
				padding: 0;
				position: relative;
			}
				nav ul li:before {
					position: absolute;
					content: '';
					display: block;
					width: 1px;
					height: 14px;
					background: rgba(200,200,200,0.3);
					top: 5px;
					left: 0;
				}
				nav ul li:first-of-type:before {
					display: none;
				}
				nav ul li a {
					margin: 0;
					padding: 7px 30px;
					font-size: 16px;
					line-height: 160%;
					font-weight: var(--weight-bold2);
					color: #000 !important;
					text-decoration: none !important;
					transition: 0.2s linear !important;
					position: relative;
				}
					nav ul li a:before {
						position: absolute;
						content: '';
						width: 80%;
						height: 1px;
						margin: auto;
						background: #000;
						left: 10%;
						bottom: 0;
						transform-origin: center top;
						transform: scale(0, 1);
						transition: transform .3s;
					}
						nav ul li a:hover:before {
							transform-origin: center top;
							transform: scale(1, 1);
						}
	#sp_menu ,#accordion {
		display: none;
	}


/*====================================
共通
=====================================*/
main {
	margin: 0 auto;
	background: #fff;
	position: relative;
	z-index: 1;
}

#page_top {
	position: fixed;
	bottom: 70px;
    right: 20px;
	z-index: 100;
}
	#page_top a {
		display: inline-block;
		margin: 0;
		padding: 10px 5px;
		font-size: 13px;
		line-height: 120%;
		font-weight: var(--weight-nomal);
		color: #000;
		text-decoration: none;
		font-weight: var(--weight-bold2);
		writing-mode: vertical-rl;
		text-orientation: mixed;
		position: relative;
	}
		#page_top a:before {
			position: absolute;
			content: '';
			width: 1px;
			height: 60px;
			margin: 0;
			padding: 0;
			background: #777fbd;
			bottom: 0;
			left: -2px;
			z-index: 1;
		}
			#page_top a:hover:before {
				bottom: 110px;
			}
