@charset "utf-8";

* {
	box-sizing: border-box;
	word-break: break-all;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
	font-size: 62.5%;
	min-width: 1100px;
}
body {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.5;
	color: #1e0405;
	background: #f6f6f6;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	position: relative;
}

/* header
------------------------------------------------------------*/
header {
	background: rgba(255,255,255,.9);
	padding-top: 10px;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}
.headTop {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 15px;
}
.headTop .exNav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.headTop .exNav li:not(:last-of-type)::after {
	content: "";
	width: 1px;
	height: 10px;
	background: #1e0405;
	margin: 0 10px;
	display: inline-block;
	position: relative;
	top: 1px;
}
.headTop .exNav li a {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 1.1rem;
	font-weight: 400;
	color: #1e0405;
	text-decoration: none;
}
.headTop .exNav li a:hover {
	text-decoration: underline;
}
.headBottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
}
.headBottom .logo {
	margin-right: auto;
}
.headBottom .cta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.headBottom .cta .tel {
	margin-right: 20px;
}
.headBottom .cta .tel span {
	font-weight: 400;
	line-height: 1;
	display: block;
}
.headBottom .cta .tel .num {
	font-family: lora, serif;
	font-size: 2.8rem;
	letter-spacing: 2px;
}
.headBottom .cta .tel .num::before {
	content: url("../img/i_tel.svg");
	margin-right: 8px;
	position: relative;
	top: -2px;
}
.headBottom .cta .tel .txt {
	font-size: 1.2rem;
	padding-left: 24px;
	margin-top: 2px;
	text-align: center;
}
.headBottom .cta .btn a {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 1.4rem;
	color: #fff;
	background: rgb(195,21,31);
	background: -moz-linear-gradient(left, rgba(195,21,31,1) 0%, rgba(181,9,19,1) 100%);
	background: -webkit-linear-gradient(left, rgba(195,21,31,1) 0%, rgba(181,9,19,1) 100%);
	background: linear-gradient(to right, rgba(195,21,31,1) 0%, rgba(181,9,19,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c3151f', endColorstr='#b50913',GradientType=1);
	padding: 10px 40px;
	display: inline-block;
	border: 1px solid #b50913;
	border-radius: 5px;
	text-decoration: none;
	transition: .3s;
}
.headBottom .cta .btn a:hover {
	opacity: .6;
}


/* nav
------------------------------------------------------------*/
#menuBtn {
	display: none;
}
nav {
	padding: 10px 0 9px;
	position: relative;
}
nav::before {
	content: "";
	width: 100vw;
	height: 1px;
	background: #e5e5e5;
	display: block;
	position: absolute;
	left: calc(50% - 50vw);
	top: 0;
}
nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
nav ul li:not(:first-of-type) {
	padding-left: 40px;
	margin-left: 40px;
	position: relative;
}
nav ul li:not(:first-of-type)::before {
	content: url("../img/line_nav.svg");
	position: absolute;
	top: calc(50% - 16px);
	left: 0;
}
nav ul li:last-of-type {
	display: none;
}
nav ul li a {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	color: #111;
	padding: 5px 0;
	display: block;
	text-decoration: none;
	position: relative;
	letter-spacing: 1px;
  transition: .5s;
}
nav ul li a:hover,
nav ul li.ac a {
  color: #b50913;
}


/* ページトップへ
------------------------------------------------------------*/
.pagetop {
  display: none;
  position: fixed;
  right: 5vw;
  bottom: 8vh;
  z-index: 100;
}
.pagetop a {
  line-height: 50px;
  width: 50px;
  color: #333;
  background: rgba(255, 255, 255, 1);
  display: block;
  text-align: center;
  border-radius: 5px;
  -webkit-transition: .3s;
  transition: .3s;
}
.pagetop a img {
	vertical-align: middle;
}
.pagetop a:hover {
  -webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
}


/* footer
------------------------------------------------------------*/
footer {
	color: #fff;
	background: #202020;
	border-top: 1px solid #ebebeb;
}
footer .inner {
	padding: 30px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	position: relative;
}
footer .footerLink {
	max-width: 70%;
}
footer .footerLink ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
footer .footerLink ul li {
	-ms-flex-preferred-size: 20%;
	flex-basis: 20%;
}
footer .footerLink ul li:nth-child(n+6) {
	margin-top: 10px;
}
footer .footerLink ul li a {
	font-family: "游明朝", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 1.3rem;
	font-weight: 400;
	color: #fff;
	text-decoration: none;
}
footer .footerLink ul li a:hover {
	text-decoration: underline;
}
footer .footerLink ul li a::before {
	content: "";
	width: 3px;
	height: 3px;
	margin-right: 8px;
	display: inline-block;
	border-top: 1px solid;
	border-right: 1px solid;
	position: relative;
	top: -3px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
footer .footerTxt {
	margin: 0 0 40px auto;
}
footer .footerTxt p {
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 10px;
}
footer .footerTxt address {
	font-size: 1.2rem;
}
footer .copy {
	font-family: lora, serif;
	font-size: 1rem;
	position: absolute;
	right: 0;
	bottom: 30px;
	letter-spacing: 1px;
}

@media screen and (max-width:600px) {
	* {
		-webkit-appearance: none;
	}
	html {
		min-width: inherit;
	}
	body {
		padding-top: 60px;
	}


	/* header
	------------------------------------------------------------*/
	header {
		background: #fff;
		padding: 15px 0;
		position: fixed;
	}
	.headTop {
		display: none;
	}
	.headBottom {
		margin-bottom: 0;
	}
	.headBottom .cta {
		display: none;
	}
	.headBottom .logo img {
		height: 30px;
	}
	
	
	/* nav
	------------------------------------------------------------*/
	nav {
		padding: 0;
		position: static;
	}
	nav::before {
		display: none;
	}
	nav ul {
		width: 100%;
		text-align: center;
		display: none;
		border-bottom: 1px solid #ddd;
		position: fixed;
		top: 60px;
		left: 0;
	}
	nav ul li:not(:first-of-type) {
		padding-left: 0;
		margin-left: 0;
	}
	nav ul li:not(:first-of-type)::before {
		display: none;
	}
	nav ul li:last-of-type {
		display: block;
	}
	nav ul li a {
		background: rgba(255,255,255,1);
		padding: 15px;
		border-top: 1px solid #ddd;
	}
	nav ul li a::before {
		display: none;
	}
	#menuBtn {
		width: 24px;
		height: 22px;
		background: #111;
		display: block;
		border-top: 10px solid #fff;
		border-bottom: 10px solid #fff;
		position: absolute;
		top: calc(50% - 11px);
		right: 5%;
		transition: all .3s;
	}
	#menuBtn::before,
	#menuBtn::after {
		content: "";
		width: 24px;
		height: 2px;
		background: #111;
		position: absolute;
		right: 0;
		transition: all .3s;
	}
	#menuBtn::before {
		top: -9px;
	}
	#menuBtn::after {
		bottom: -9px;
	}
	#menuBtn.active {
		background: #fff;
	}
	#menuBtn.active::before {
		top: 0;
		right: 0;
		-moz-transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
	#menuBtn.active::after {
		bottom: 0;
		right: 0;
		-moz-transform: rotate(135deg);
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}


	/* ページトップへ
	------------------------------------------------------------*/
	.pagetop {
		bottom: 20px;
	}
	.pagetop a {
		line-height: 40px;
		width: 40px;
	}


	/* footer
	------------------------------------------------------------*/
	footer .inner {
		max-width: 100%;
		padding: 0 0 20px;
	}
	footer .footerLink {
		max-width: 100%;
		margin-bottom: 20px;
		border-top: 1px dotted #ccc;
	}
	footer .footerLink ul li {
		flex-basis: 50%;
		border-bottom: 1px dotted #ccc;
	}
	footer .footerLink ul li:nth-child(odd) {
		border-right: 1px dotted #ccc;
	}
	footer .footerLink ul li:nth-child(n+5) {
		margin-top: 0;
	}
	/*footer .footerLink ul li:last-of-type {
		flex-basis: 100%;
		border-right: none;
	}*/
	footer .footerLink ul li a {
		font-size: 1.2rem;
		padding: 10px;
		display: block;
	}
	footer .footerTxt {
		flex-basis: 100%;
		padding: 30px 5%;
		margin-bottom: 0;
		text-align: center;
	}
	footer .copy {
		flex-basis: 100%;
		padding: 0 5%;
		text-align: center;
		position: static;
	}
}
