@charset "utf-8";

/*------------------------------------------------------------
    デフォルトスタイル (Default Styles)
------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
figcaption,
figure,
section,
footer,
header,
main,
hgroup,
menu,
nav,
summary {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
}

body,
table,
input,
textarea,
select,
option {
	font-family: "Noto Serif JP", "Noto Serif", serif;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
main,
hgroup,
menu,
nav,
section,
summary {
	display: block;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

chrome_annotation {
	border: none !important;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

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

address {
	font-style: normal;
}

a,
a:link {
	color: #000;
	text-decoration: none;
	transition: 0.3s;
}

a:visited {
	color: #000;
}

a:hover {
	color: #000;
}

a:active {
	color: #000;
}


/*------------------------------------------------------------
    レイアウト (Layout)
------------------------------------------------------------*/
body {
	min-width: 100%;
	overflow-wrap: break-word;
	font-size: 1.6rem;
	line-height: 1.5;
	color: #000;
	text-size-adjust: none;
	background-color: #FFF;
	-webkit-text-size-adjust: none;
}

.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

#container {
	overflow: hidden;
	text-align: left;
}

a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}

a:active {
	background-color: #dfdbb8;
}

section {
	padding: 0 20%;
}


/*------------------------------------------------------------
    ヘッダー (Header)
------------------------------------------------------------*/

/* menuBtn */
.menuBtn {
	position: fixed;
	top: 0;
	right: 0;
	width: 7.3rem;
	height: 6.2rem;
	min-width: 48px;
	min-height: 48px;
	background-color: #201917;
	cursor: pointer;
	transition: all .3s ease;
	z-index: 100;
}

.menu {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 3.2rem;
	height: 2.4rem;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 100;
}

.menu span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DADADA;
	border: none;
	cursor: pointer;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
}

.menu span:nth-of-type(2) {
	top: 1rem;
}

.menu span:nth-of-type(3) {
	top: 2rem;
}

.active .menu .top {
	-webkit-transform: translateY(1rem) translateX(0) rotate(-45deg);
	-ms-transform: translateY(1rem) translateX(0) rotate(-45deg);
	transform: translateY(1rem) translateX(0) rotate(-45deg);
}

.active .menu .middle {
	opacity: 0;
}

.active .menu .bottom {
	-webkit-transform: translateY(-1rem) translateX(0) rotate(45deg);
	-ms-transform: translateY(-1rem) translateX(0) rotate(45deg);
	transform: translateY(-1rem) translateX(0) rotate(45deg);
}

.active .menu span {
	height: 3px;
	background-color: #fff;
}


/* menuBox */
.menuBox {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	background-color: rgba(32, 25, 23, 0.84);
	z-index: 88;
}

.menuBox .innerBox {
	display: flex;
	align-items: center;
	height: 100%;
	min-height: 60rem;
	max-width: 60rem;
	padding: 5rem 6.9rem 5rem 1.5rem;
	margin: 0 auto;
}

.menuBox .naviUl {
	width: 100%;
	text-align: left;
}

.menuBox .naviUl a {
	font-size: 2.2rem;
	color: #fff;
}

.menuBox .naviUl img {
	display: inline-block;
	width: 3.3rem;
	margin: -0.7rem 1rem 0 1rem;
	vertical-align: middle;
}

.naviUl>li {
	margin-top: 3.8rem;
}

.naviUl>li:last-child {
	margin-bottom: 0;
}

.subMenu {
	margin-top: 0.5rem;
	margin-left: 4rem;
}

.subMenu li {
	margin-left: 1.5em;
	margin-bottom: 1.5rem;
	text-indent: -1.5em;
}

.subMenu li:last-child {
	margin-bottom: 0;
}

.subMenu li:before {
	margin-right: 0.5em;
	color: #fff;
	content: "―";
}


/*------------------------------------------------------------
    フッター (Footer)
------------------------------------------------------------*/
#gFooter {
	padding: 8.6rem 0 2.7rem;
	margin-top: 11.3rem;
	color: #fff;
	background-color: #201917;
}

#gFooter a {
	color: #fff;
}

#gFooter .fBox {
	display: flex;
	justify-content: space-between;
	max-width: 79.3rem;
	margin: 0 auto;
}

#gFooter .comLogo {
	font-size: 2rem;
}

#gFooter .comLogo img {
	width: 28.6rem;
}

#gFooter .comLogo span {
	margin: 1.8rem 0 0 0.4rem;
}

#gFooter .fTxt {
	width: 21rem;
	margin-top: 0.2rem;
	font-size: 1.6rem;
	line-height: 1.9;
	letter-spacing: 0.02em;
}

#gFooter .fTxt a {
	font-size: 1.7rem;
	font-style: italic;
}

#gFooter address {
	margin-top: 9.9rem;
	font-size: 1.4rem;
	text-align: center;
}


/*------------------------------------------------------------
    Media Query
------------------------------------------------------------*/

@media all and (min-width: 896.98px) {
	.menuBtn:hover {
		opacity: 0.7;
	}

	.menuBox .naviUl a:hover {
		opacity: 0.7;
	}
}

@media all and (max-width: 896.98px) {
	.menuBtn {
		width: 6rem;
		height: 6rem;
	}

	.menu {
		top: 1.8rem;
		right: 1.5rem;
		width: 2.8rem;
	}

	.menuBox .innerBox {
		min-height: 54rem;
		max-width: 37.5rem;
		padding: 5rem 2rem 1.5rem;
	}

	.menuBox .naviUl a {
		font-size: 1.4rem;
	}

	.menuBox .naviUl img {
		width: 2.8rem;
		margin: -0.7rem 0 0 0.5rem;
	}

	#gFooter {
		padding-top: 4.6rem;
	}

	#gFooter .fBox {
		display: block;
		margin: 0 1.8rem;
	}

	#gFooter .comLogo {
		margin-bottom: 20px;
		font-size: 1.4rem;
	}

	#gFooter .comLogo img {
		width: 23.6rem;
	}

	#gFooter .comLogo span {
		margin: 0.8rem 0 0 0.4rem;
	}

	#gFooter .fTxt {
		width: auto;
		margin-top: 0;
		font-size: 1.3rem;
		line-height: 1.6;
	}

	#gFooter .fTxt a {
		font-size: 1.4rem;
	}

	#gFooter address {
		font-size: 1.2rem;
	}
}

@media all and (min-width: 768px) {
	.sp {
		display: none !important;
	}
}

@media all and (max-width: 767px) {
	body {
		min-width: inherit;
		font-size: 1.4rem;
	}

	.pc {
		display: none !important;
	}

	a:hover,
	a:hover img {
		opacity: 1 !important;
	}

	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}

	section {
		padding: 0 5%;
	}
}

@media all and (max-width: 374px) {
	html {
		font-size: min(2.666vw, 62.5%);
	}
}