@charset "utf-8";
/*----------------------------------------------------
	再設定
----------------------------------------------------*/
@media (min-width: 768px) {
	html {
		font-size: 16px;
	}

	body {
		min-width: 1020px;
		background-attachment: fixed, fixed;
		background-image: url(../images/bg01.png), url(../images/bg02.png);
		background-repeat: no-repeat, no-repeat;
		background-position: 2% 50%, right bottom;
	}
}

@media (max-width: 1380px) {
	body {
		background-size: 30% auto, 28% auto;
	}
}

@media (max-width: 767px) {
	html {
		font-size: 14px;
	}
}

body {
	color: #000;
	font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
}

a {
	transition: all .3s;
	color: #000;
	text-decoration: none;
}

img {
	width: auto;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
.headerLogo {
	text-align: center;
}

@media (min-width: 768px) {
	.headerLogo {
		padding: 3.75em 0 0;
	}
}

@media (max-width: 767px) {
	.headerLogo {
		padding: 1em 0;
	}

	.headerLogo img {
		width: 148px;
	}
}

@media (max-width: 767px) {
	.headerMenuWrap {
		display: none;
		margin-right: -20px;
		margin-left: -20px;
	}

	.headerMenuWrap .wrap-inner {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		padding: 0 20px;
		background-color: #e60012;
		color: #fff;
	}

	.headerMenuWrap .wrap-inner a {
		color: #fff;
	}
}

.headerSNS {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
}

.headerSNS span {
	margin-right: 2em;
}

.headerSNS .fa {
	font-size: 2em;
}

.headerSNS a:hover {
	color: #e60012;
}

@media (min-width: 768px) {
	.headerSNS {
		position: absolute;
		top: 2.875em;
		right: 0;
	}
}

@media (max-width: 767px) {
	.headerSNS {
		padding: 1em 1em;
	}
}

.headerNav li {
	text-align: center;
}

.headerNav a {
	display: block;
	position: relative;
	padding: 0 1em;
	color: #e60012;
	font-size: 1.25em;
}

@media (min-width: 768px) {
	.headerNav {
		padding: 1.5em 0 2em;
	}

	.headerNav ul {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-ms-flex-pack: justify;
	}

	.headerNav a:after {
		display: block;
		position: absolute;
		bottom: -10px;
		left: 50%;
		width: 0%;
		height: 4px;
		transition: all .3s;
		border-radius: 2px;
		background-color: #e60012;
		content: "";
	}

	.headerNav a:hover:after {
		left: 0px;
		width: 100%;
	}
}

@media (max-width: 767px) {
	.headerNav li {
		padding: 1em 1em;
		border-bottom: 1px solid #fff;
	}

	.headerNav a {
		display: block;
	}
}

@media (max-width: 767px) {
	.headerMenu {
		position: absolute;
		top: 0px;
		right: 0;
		width: 60px;
		height: 60px;
		cursor: pointer;
		z-index: 2;
	}

	.headerMenu div {
		position: relative;
	}

	.headerMenu span {
		display: block;
		position: absolute;
		left: 18px;
		width: 24px;
		height: 3px;
		transition: .35s ease-in-out;
		background: #e60012;
	}

	.headerMenu span:nth-child(1) {
		top: 20px;
	}

	.headerMenu span:nth-child(2) {
		top: 28px;
	}

	.headerMenu span:nth-child(3) {
		top: 36px;
	}

	.headerMenu.open span:nth-child(1) {
		top: 28px;
		-webkit-transform: rotate(315deg);
		transform: rotate(315deg);
	}

	.headerMenu.open span:nth-child(2) {
		left: 50%;
		width: 0;
	}

	.headerMenu.open span:nth-child(3) {
		top: 28px;
		-webkit-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
}
/*----------------------------------------------------
	メイン
----------------------------------------------------*/
main {
	display: block;
}

.section {
	padding-top: 2.5em;
	padding-bottom: 2.5em;
}

/*----------------------------------------------------
	フッター
----------------------------------------------------*/
.footerGroups {
	padding: 2.875em 0;
	background-color: #e60012;
	color: #fff;
}

.footerGroups .item {
	text-align: center;
}

.footerGroups .item-logo {
	margin-bottom: 1.5em;
}

.footerGroups .item-logo a {
	display: inline-block;
	border: 4px solid #fff;
}

.footerGroups .item-logo a:hover {
	border: 4px solid rgba(230, 0, 18, 0.1);
}

.footerGroups .sns {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	-ms-flex-align: center;
}

.footerGroups .sns .fa {
	font-size: 2.5em;
}

.footerGroups .sns span:not(:first-child) {
	margin-left: 2.5em;
}

.footerGroups .sns a {
	color: #fff;
}

.footerGroups .sns a:hover {
	opacity: 0.75;
}

@media (min-width: 768px) {
	.footerGroups .items {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-ms-flex-pack: justify;
	}

	.footerGroups .item {
		width: 24%;
	}
}

@media (max-width: 767px) {
	.footerGroups .item {
		margin-bottom: 1.5em;
	}

	.footerGroups .item-logo {
		margin-bottom: 0.5em;
	}
}

.copyright {
	padding: 1em 0;
	text-align: center;
}

/*----------------------------------------------------
	共通レイアウト
----------------------------------------------------*/
@media (min-width: 768px) {
	#bodyWrap div:before {
		display: block;
		position: fixed;
		width: 100%;
		height: 7px;
		background-color: #e60012;
		content: "";
		z-index: 999;
	}

	#bodyWrap div:after {
		display: block;
		position: fixed;
		width: 7px;
		height: 100%;
		background-color: #e60012;
		content: "";
		z-index: 999;
	}

	#bodyWrap div:nth-child(1):before {
		top: 0;
		right: 0;
	}

	#bodyWrap div:nth-child(1):after {
		top: 0;
		right: 0;
	}

	#bodyWrap div:nth-child(2):before {
		bottom: 0;
		left: 0;
	}

	#bodyWrap div:nth-child(2):after {
		bottom: 0;
		left: 0;
	}
}
