@charset "UTF-8";
/*
=======================================================
HEADER
=======================================================
*/
.headerBox {
	display: flex;
	justify-content: space-between;
}

.headerNaviBox {
	display: flex;
}

.headerNavi {
	height: 60px;
	margin-top: 30px;
}

.headerNavi a {
	font-size: 15px;
	color: #515151;
	display: flex;
	height: 100%;
	position: relative;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	font-weight: bold;
}

.headerNavi a.active:after {
	position: absolute;
	bottom: -4px;
	left: 10%;
	content: '';
	width: 80%;
	height: 1px;
	background: #EA5B7B;
	transform: scale(1, 1);
	transform-origin: center top;
	transition: transform .3s;
}

.headerNavi a:after {
	position: absolute;
	bottom: 20px;
	left: 10%;
	content: '';
	width: 80%;
	height: 1px;
	background: #EA5B7B;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}

.headerPageLink a:after {
	position: absolute;
	bottom: 20px;
	left: 10%;
	content: '';
	width: 80%;
	height: 1px;
	background: #EA5B7B;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}

.headerNavi a:hover:after {
	transform: scale(1, 1);
}

.headerNavi a img {
	display: inline-block;
}

.headerNavi a span {
	display: block;
	line-height: 0.5;
	font-family: "Noto Sans", sans-serif;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 100;
	box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.3);
}

.phoneMargin {
	margin-right: 10px;
}

.logoMargin {
	margin-left: 33px;
	margin-top: 21px;
}

body {
	margin-top: 130px;
}

.spAccoVisi {
	display: none;
}

.headerRight {
	display: flex;
}

.headerContactBtn {
	height: 130px;
}

.headerPageLinkBox {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.headerTel {
	display: flex;
	align-items: center;
	height: 100%;
	font-size: 20px;
	color: #940003;
	font-weight: bold;
}

.headerTelTime {
	font-size: 16px;
	color: #940003;
}

.headerPageLink {
	padding: 0 15px;
	border-right: 1px solid #515151;
	height: 22px;
}

.headerPageLink:last-of-type {
	border-right: none;
}

.headerPageLink a {
	font-size: 18px;
	color: #515151;
	font-weight: bold;
	line-height: 18px;
}

.headerRightLeft {
	padding-right: 25px;
}

.headerNavi span {
	font-size: 15px;
	font-weight: bold;
}

@media screen and (max-width: 1480px) {
	.headerNavi a {
		font-size: 12px;
	}
}

@media screen and (max-width: 1440px) {
	.headerNavi a {
		padding: 0 10px;
	}
	.headerContactBtn {

		height: 80px;
	}
	.headerLogo {
		width: 20%;
	}
	.headerNavi {
		margin-top: 0;
	}
	.headerNaviBox {
		height: 48px;
	}
	.headerContactBtn img {
		height: 80px;
		margin-left: auto;
	}
	body {
		margin-top: 80px;
	}
}

@media screen and (max-width: 1199px) {
	.headerNavi a span {
		font-size: 12px;
	}
	.headerNavi a {
		    font-size: 11px;
		padding: 0 5px;
	}
	.headerPageLink a {
		    font-size: 15px;
	}
	.headerTel {
		font-size: 14px;
	}
	.headerNavi span {
		font-size: 10px;
	}
}

@media screen and (max-width: 991px) {
}

@media screen and (max-width: 991px) {
	.headerNavi a span {
		display: none;
	}
	.headerNavi a {
		display: flex;
		align-items: center;
		font-size: 11px;
	}
	.headerTel {
		font-size: 10px;
	}
	.headerRightLeft {
		padding-right: 0px;
	}
	.phoneMargin {
		margin-right: 5px;
	}
	.headerNavi a {
		font-size: 10px;
		padding: 0 3px;
	}
	.logoMargin {
		margin-left: 10px;
	}
	.headerPageLink a {
		       font-size: 11px;
	}
}

@media screen and (max-width: 767px) {
	.navToggle {
		display: block;
		position: fixed;
		right: 10px;
		top: 6px;
		width: 50px;
		height: 50px;
		cursor: pointer;
		z-index: 100;
		text-align: center;
	}
	.navToggle span {
		display: block;
		position: absolute;
		width: 40px;
		border-bottom: solid 1px #231815;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
		left: 6px;
	}
	.navToggle span:nth-child(1) {
		top: 9px;
	}
	.navToggle span:nth-child(2) {
		top: 22px;
	}
	.navToggle span:nth-child(3) {
		top: 35px;
	}
	.navToggle.active span:nth-child(1) {
		top: 18px;
		left: 6px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.navToggle.active span:nth-child(2), .navToggle.active span:nth-child(3)
		{
		top: 18px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.spMenu {
		position: fixed;
		z-index: 2;
		top: 0;
		left: 0;
		background: #fff;
		color: #000;
		text-align: center;
		transform: translateY(-120%);
		transition: all 0.6s;
		width: 100%;
		height: auto;
		max-height: 80vh;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.spMenu {
		background: #ccc;
		margin: 0 auto;
		padding: 0;
		width: 100%;
	}
	.spMenu li {
		font-size: 1.1em;
		list-style-type: none;
		padding: 0;
		width: 100%;
		border-bottom: 1px dotted #333;
	}
	.spMenu li:last-child {
		padding-bottom: 0;
	}
	.spMenu li a {
		display: flex;
		color: #000;
		padding: 1em 0;
		justify-content: center;
		flex-wrap: wrap;
		position: relative;
		font-size: 14px;
		align-items: center;
	}
	.spMenu li a:after {
		content: "\f105";
		font-family: FontAwesome;
		left: auto;
		right: 10px;
		transform: none;
		background: none;
		width: 30px;
		height: 30px;
		font-size: 30px;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	.spMenu.active {
		transform: translateY(60px);
	}
	.headerBox {
		padding: 0;
	}
	.headerLogo {
		/* 		display:none; */

	}
	.headerNaviBox {
		flex-wrap: wrap;
		height: auto;
	}
	.headerNavi {
		width: 100%;
		border-left: none;
	}
	.headerNavi {
		height: auto;
	}
	.fixed {
		position: fixed !important;
		width: 100%;
		height: 100%;
	}
	.headerNavi a span {
		display: block;
		font-size: 16px;
	}
	.header {
		background: #fff;
		position: fixed;
		top: 0;
		width: 100%;
		left: 0;
		z-index: 10;
	}
	.headerLogo {
		margin-top: 0;
		z-index: 99;
		background: #fff;
		padding: 0 10px;
		width: 100%;
		box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.4);
		min-height: 58px;
		display: flex;
		align-items: center;
	}
	.header .topContainer {
		width: 100%;
	}
	.headerLogo a img {
		width: 60%;
	}
	body {
		margin-top: 58px;
	}
	.headerNavi a:after {
		content: unset;
	}
	.headerNavi a.active:after {
		content: unset;
	}
	.headerNavi a img {
		margin-right: 5px;
	}
	.spMenu li a.active:after {
		content: "\f105";
		font-family: FontAwesome;
		left: auto;
		right: 10px;
		transform: none;
		background: none;
		width: 30px;
		height: 30px;
		font-size: 30px;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	.spAccoHide {
		display: none;
	}
	.spAccoVisi {
		display: block;
	}
	.spMenu li.spAccoVisi a:after {
		content: "";
		background-image: url(../img/plus.png);
		background-size: 20px;
		background-repeat: no-repeat;
		background-position: center center;
	}
	.spAccoMenuBox {
		display: none;
	}
	.spAccoVisi a {
		height: auto;
	}
	.spMenu li.spAccoVisi .spAccoMenuBox a:after {
		content: unset;
	}
	.spMenu li .spAccoMenuBox a {
		padding: 0.5em 0;
	}
	.spMenu li.spAccoVisi.minus a:after {
		background-image: url(../img/minus.png);
	}
	.headerContactBtn {
		display: none;
	}
	.headerRightLeft {
		padding-right: 0;
		width: 100%;
	}
	.headerTel {
		display: flex;
		padding: 1em 0;
		justify-content: center;
		flex-wrap: wrap;
		position: relative;
		font-size: 18px;
	}
	.headerNavi span {
		font-size: 12px;
	}
	.headerPageLinkBox {
		flex-wrap: wrap;
	}
	.headerPageLink {
		height: auto;
		border-right: none;
	}
	.headerPageLink a {
		line-height: unset;
	}
	.headerPageLink a:after {
		content: unset;
	}
	.logoMargin {
		margin-left: 0;
	}
}