@charset "UTF-8";  

.pc {
	display: inline-block ;
}

.pc2 {
	display: block ;
}

.sp ,.sp2 {
	display: none;
}

#wrapper {
	width: 100%;
	margin: auto;
	padding: 0;
	position: relative;
}


/*====================================
ヘッダー
=====================================*/
header {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
	transition: 0.2s linear;
}
header.scroll {
	background: rgba(255,255,255,0.9);
	border-bottom: 1px solid #b21c4a;
	transition: 0.2s linear;
}
	header #header_in {
		max-width: 1220px;
		margin: 0 auto;
		padding: 50px 0 20px 20px; 
		display: flex;
		justify-content: space-between;
		align-items: center;
		transition: 0.2s linear;
	}
		header.scroll #header_in {
			padding-top: 20px;
		}
	h1 {
		display: inline-block;
		width: 300px;
		margin: 0;
		padding: 0;
	}
		h1 a {
			margin: 0;
			padding: 0;
			font-size: 50px;
			line-height: 120%;
			font-weight: var(--weight-extrabold1);
			color: #b21c4a !important;
			text-decoration: none !important;
		}
			h1 a small {
				font-size: 24px;
				line-height: 120%;
				font-weight: var(--weight-bold2);
			}
			h1 a:hover {
				opacity: 0.8;
			}
	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 7px;
				padding: 0;
			}
				nav ul li a {
					display: inline-block;
					margin: 0;
					padding: 7px 15px;
					font-size: 16px;
					line-height: 160%;
					font-weight: var(--weight-bold2);
					color: #b21c4a !important;
					text-shadow:0 0 10px #fff,
						0 0 15px #fff,
						0 0 15px #fff,
						0 0 15px #fff;
					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: #b21c4a;
						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;
}
