@charset "utf-8";


/* ----------------------------------------

再定義

---------------------------------------- */
html {
	font-size: 62.5%;
	overflow-y: scroll;
}
body {
	font-size: 17px;
	font-weight: 700;
	line-height: 2;
	background-color: #fff;
	font-family:  'Noto Sans JP',"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	color: #342811;
	word-break: break-word;
	
}
body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a {
	display: inline-block;
	color: #342811;
	outline: none;
	text-decoration: none;
}
a:hover,
a:visited:hover {
	transition: .5s;
	text-decoration: none;
	opacity: .5;
}
img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
img[src$=".svg"] {/* for win7 ie11 */
	width: 100%;
	height: auto;
	display: inline-block;
}
h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight:inherit;
}
table {
	table-layout: fixed;
}
input,select,textarea {
	max-width: 100%;
}
input[type="button"],select{cursor: pointer;outline: none;}
:focus::-webkit-input-placeholder {color: transparent;}/* Webkit */
:focus:-moz-placeholder {color: transparent;}/* Firefox 18 以前 */
:focus::-moz-placeholder {color: transparent;}/* Firefox 19 以降 */
::-webkit-input-placeholder {color: #888; opacity: 1;}
:-moz-placeholder {color: #888; opacity: 1;}
::-moz-placeholder {color: #888; opacity: 1;}
input[type="submit"],
input[type="button"] {
	-webkit-appearance: button;
	appearance: button;
}
input[type="text"],input[type="email"],input[type="password"],input[type="tel"],textarea {
	-webkit-appearance: none; 
	border-radius: 0;
	outline: none;
}
select {
	outline: none;
}
body ::-webkit-scrollbar { width: 12px;}
body ::-webkit-scrollbar-track { background: #f1f1f1;}
body ::-webkit-scrollbar-thumb,
body ::-webkit-scrollbar-thumb:window-inactive { background: #bcbcbc;}
@media screen and (max-width:767px){
	body ::-webkit-scrollbar { width: 8px;}
}


a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
	pointer-events: none;
	display: inline-block;/*for ie11*/
	color: inherit; /* Inherit text color of parent element. */
	text-decoration: none; /* Remove underline. */
}


@media screen and (max-width:767px){

	body {
		font-size: 13px;
	}
	input,select,textarea {
		font-size: 16px;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}



/* ----------------------------------------

- header

---------------------------------------- */
#header {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
}

#header .header_inner {
	padding-top: 20px;
	padding-bottom: 20px;
}
#header .siteID {
	width: 240px;
}
@media screen and (max-width:767px){
	#header .header_inner {
		height: 60px;
	}
	#header .siteID {
		max-width: 50%;
		width: 170px;
	}

}
/* noscript
------------------------------- */
#noscript {
	margin-bottom: 15px;
	padding: 0.5em 1em;
	border: 2px solid #ccc;
	color: #333;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* ----------------------------------------

- footer

---------------------------------------- */
#footer {
	text-align: center;
	font-size: 16px;
	color: #A3A3A3;
	font-family: 'Roboto', sans-serif;
	margin-top: 50px;
	margin-bottom: 50px;
}
@media screen and (max-width:767px){
	#footer {
		font-size: 13px;
		margin-top: 40px;
		margin-bottom: 40px;
	}
}





/* ----------------------------------------

clearfix

---------------------------------------- */

/* Modern Browsers
------------------------------- */
.xxx:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: ".";
	line-height: 0;
}

/* Legacy IE
------------------------------- */
.xxx {
	*zoom: 1;
}