/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,600,700,900&display=swap&subset=japanese');

html {
	font-size: 10px;
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	margin: 0;
	padding: 0;
	background:#fff;
	animation: fadeIn 1s ease 0s 1 normal;
	-webkit-animation: fadeIn 1s ease 0s 1 normal;
	font-size:1.6rem;
	overflow-y:scroll;
}

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}


div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size:1.6rem;
	vertical-align: baseline;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	color:#111111;
}

.t-c { text-align: center; }
.t-r { text-align: right; }
.t-l { text-align: left; }

@media screen and (max-width:500px){
  div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, 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,
  article, aside, canvas, details, embed, 
  figure, figcaption, footer, header, hgroup, 
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video {
    font-size: 1.4rem;
  }
}


/* HTML5 display-role reset for older browsers */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
			 -o-box-sizing: border-box;
			-ms-box-sizing: border-box;
					box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ul {
	list-style: none;
}

ol {
	margin-left:1.2em;
}
blockquote, q {
	quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
	content: '';
	content: none;
}
table {
	width:100%;
	border-collapse: separate;
	border-spacing: 0;
}

img {
	vertical-align:bottom;
	max-width:100%;
	height:auto;
}

a {
	text-decoration:none;
}

strong,
strong > * {
	font-weight:600;
}

/* clearfix */
.cf::after {
	content: " ";  
	display: block; 
	visibility: hidden;
	clear: both;
	height: 0px; 
	font-size: 0.1em !important; 
	line-height: 0 !important;
	overflow:hidden;
}
.cf { min-height: 0.1px; display:block; }
* html .cf {
	height: 0.1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/*===============================================

Table

=================================================*/
table.style_summary {
	border-top: 1px solid #e5e5e5;
	border-left: 1px solid #e5e5e5;
}
table.style_summary td,
table.style_summary th {
	padding: 2rem;
	border-bottom: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
}
table.style_summary thead th {
	background: #CFE4E9;
}
table.style_summary tbody th {
	background: #efefef;
}

/*===============================================

Flexbox

=================================================*/

.flexbox {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}

.flexbox > * {
	min-height:0%;
}

.spbet {
	-webkit-justify-content:space-between;
	-moz-justify-content:space-between;
	-ms-justify-content:space-between;
	justify-content:space-between;
}

.sparo {
	-webkit-justify-content:space-around;
	-moz-justify-content:space-around;
	-ms-justify-content:space-around;
	justify-content:space-around;
}

.jussta {
	-webkit-justify-content:flex-start;
	-moz-justify-content:flex-start;
	-ms-justify-content:flex-start;
	justify-content:flex-start;
}

.jusend {
	-webkit-justify-content:flex-end;
	-moz-justify-content:flex-end;
	-ms-justify-content:flex-end;
	justify-content:flex-end;
}

.juscent {
	-webkit-justify-content:center;
	-moz-justify-content:center;
	-ms-justify-content:center;
	justify-content:center;
}

.dir_column {
	-webkit-flex-direction:column;
	-moz-flex-direction:column;
	-ms-flex-direction:column;
	flex-direction:column;
}

.alcent {
	-webkit-align-items:center;
	-moz-align-items:center;
	-ms-align-items:center;
	align-items:center;
}

@media all and (min-width: 768px) {
	
	a[href^="tel:"] {
			pointer-events: none;
	}
	
	.on:hover,
	.on:hover * {
		-webkit-transition: 0.5s;
		-moz-transition: 0.5s;
		transition: 0.5s;
		-moz-transition-property:background, background-color, color;
		transition-property: background, background-color, color;
	}
	
	#pagetop,
	#pagetop a {
		-webkit-transition: none;
		-moz-transition: none;
		transition: none;
	}
	
	.on:hover img {
		opacity:0.8;
	}

}

