@charset "utf-8";


/* ----------------------------------------

再定義

---------------------------------------- */
html {
	font-size: 62.5%;
	overflow-y: scroll;
}
body {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.375;
	background-color: #fff;
	font-family: 'Roboto',"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ","Meiryo","ＭＳ Ｐゴシック","Helvetica Neue","Helvetica","Arial",sans-serif;
	color: #000000;
	word-break: break-word;
	
}
body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a {
	display: inline-block;
	color: #000000;
	outline: none;
	text-decoration: none;
	transition: opacity .5s;
}
a:hover,
a:visited:hover {
	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:1200px){
	html {
		font-size:43.75%;
	}
	body {
		font-size: 13px;
	}
}
@media screen and (max-width:767px){
	/* html {
		font-size: 31.25%;
	}
	body {
		font-size: 13px;
	} */
	input,select,textarea {
		font-size: 16px;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}

#container {
	margin: 0 auto;
}
@media screen and (max-width:767px){
	#container {
		min-width: inherit;
	}
}


/* ----------------------------------------

clearfix

---------------------------------------- */

/* Modern Browsers
------------------------------- */
.xxx:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: ".";
	line-height: 0;
}

/* Legacy IE
------------------------------- */
.xxx {
	*zoom: 1;
}