@charset "utf-8";

@font-face {
	font-family: 'kintosans_bold';
	src: url('../font/kintosans_bold.woff') format('woff'),
		url('../font/kintosans_bold.ttf') format('truetype');
}

@font-face {
	font-family: 'kintosans_medium';
	src: url('../font/kintosans_medium.woff') format('woff'),
		url('../font/kintosans_medium.ttf') format('truetype');
}

@font-face {
	font-family: 'kintosans_regular';
	src: url('../font/kintosans_regular.woff') format('woff'),
		url('../font/kintosans_regular.ttf') format('truetype');
}

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
.logo,
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 {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}

header {
	position: relative;
	background-color: rgb(233, 86, 41);
	color: white;
	font-family: "quatro", sans-serif;
	letter-spacing: 0.1em;
	display: flex;
	align-items: baseline;
	padding: 20px 4% 45px;
	justify-content: space-between;
	overflow: hidden;
}

header .bow {
	position: absolute;
	width: 130%;
	height: 160%;
	top: 70%;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	background-color: #FFF;
}

header .hum {
	position: absolute;
	width: 25px;
	height: 12px;
	top: 30px;
	right: 4%;
}

header .hum span {
	position: absolute;
	display: block;
	right: 0;
	width: 25px;
	height: 2px;
	border-radius: 0.5px;
	background-color: #FFF;
	transition: 0.3s;
}

header .hum span:first-child {
	top: 0;
}

header .hum.open span:first-child {
	top: 5px;
	transform: rotate(45deg);
}


header .hum span:nth-child(2) {
	top: 5px;
}

header .hum.open span:nth-child(2) {
	opacity: 0;
}

header .hum span:last-child {
	top: 10px;
}

header .hum.open span:last-child {
	top: 5px;
	transform: rotate(-45deg);
}



header h1 {
	margin: 0;
	color: #FFF;
}

header ul {
	display: flex;
	font-size: 0.9em;
	align-items: center;
}

header ul li {
	color: #FFF;
	margin-left: 20px;
}

header ul li.online {
	background-color: #FFF;
	color: rgb(233, 86, 41);
	padding: 3px 20px;
	border-radius: 20px;
}

html {
	font-size: 62.5%;
}



body,
table,
input,
textarea,
select,
option {
	font-family: 'kintosans_regular', sans-serif;
}

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

ol,
ul {
	list-style: none;
	box-sizing: border-box;
}

blockquote,
q {
	quotes: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

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

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

a:visited {
	color: #707070;
}

a:hover {
	color: #707070;
	opacity: 0.5;
}

a:active {
	color: #707070;
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: #707070;
	font-size: 2rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}

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

#container {
	text-align: left;
	width: 90%;
	max-width: 1000px;
	margin: auto;
}

#main {
	margin-bottom: 150px;
	display: block;
}

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



.ECbtn {
	padding: 2px 12px;
	background-color: rgb(233, 86, 41);
	color: #FFF;
	border-radius: 20px;
	font-size: 12px;
}

.current {
	opacity: 0.5;
}

.text-btn a {
	display: inline-block;
	margin-left: 40px;
}

.page_bottom {
	width: 100%;
	max-width: 1200px;
	margin: auto;
}

.page_bottom ul {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}



.page_bottom li {
	background-color: rgb(233, 86, 41);
	color: #FFF;
	padding: 60px 0;
	text-align: center;
	min-width: 300px;
	margin: 30px 5px;
	border-radius: 20px;
}

.page_bottom .button {
	display: block;
	border: 3px solid rgb(233, 86, 41);
	background-color: #FFF;
	color: rgb(233, 86, 41);
	font-family: "quatro", sans-serif;
	padding: 3px;
	text-align: center;
	width: 80%;
	margin: 50px auto;
	max-width: 500px;
	border-radius: 20px;
}



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

	.page_bottom .button {
		display: block;
		border: 5px solid rgb(233, 86, 41);
		padding: 20px 0;
		font-size: 22px;
		max-width: 500px;
		border-radius: 40px;
	}

}

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

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

	.pc {
		display: none !important;
	}

	.sp {
		display: block;
	}

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

	#main {
		margin-bottom: 60px;
	}

	.ECbtn {
		bottom: 0px;
		right: 0px;
		padding: 10px;
		text-align: center;
		border-radius: 0;
		width: 100%;
	}
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader .logo {
	margin: 109px auto 9px;
	width: 420px;
	overflow: hidden;
}

#gHeader .logo a {
	margin: 0 auto;
	min-height: 440px;
	position: relative;
	display: block;
}

#gHeader .logo a img {
	margin-left: -10px;
	width: 1618px;
	max-width: inherit;
	position: absolute;
	bottom: -114px;
	left: 50%;
	transform: translate(-50%);
}

@media all and (max-width: 896px) {
	#gHeader .logo {
		margin-top: 27px;
		width: 190px;
	}

	#gHeader .logo a {
		min-height: 240px;
	}

	#gHeader .logo a img {
		margin-left: -8px;
		width: 809px;
		bottom: -60px;
	}

	header nav {
		padding: 10vh 0;
		position: fixed;
		background-color: rgb(233, 86, 41);
		width: 100%;
		height: 90vh;
		top: 0;
		left: 0;
		z-index: 9999;
		margin-left: 100%;
		transition: 0.3s;
	}

	.menuopen {
		margin-left: 0;
	}

	header ul {
		display: flex;
		flex-direction: column;
		font-size: 7vw;
		align-items: center;
	}

	header ul li {
		padding: 4vh 0;
		margin: 0;
	}

	header ul li.online {
		margin-top: 4vh;
		border-radius: 6vw;
		padding: 3px 12vw;
	}


}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter .fLogo {
	margin: 0 auto 50px;
}

#gFooter .fLogo a {
	margin: 0 auto 18px;
	width: 75px;
	display: block;
}

#gFooter p {
	font-size: 1.5rem;
	text-align: center;
	background-color: rgb(233, 86, 41);
	color: #FFF;
	padding: 5px;
}

@media all and (max-width: 896px) {
	#gFooter .fLogo {
		margin-bottom: 53px;
	}

	#gFooter .fLogo a {
		margin-bottom: 8px;
		width: 86px;
	}

	#gFooter .fLogo p {
		font-size: inherit;
	}
}