@charset "UTF-8";
/* MOBILE FIRST */

html {
	width: 100%;
	height: 100%;
	font-size: 10px;
	}
body {
	position: relative;
	min-height: 100%;
	color: #3e3a39;
	font-size: 1.6rem;
	font-size: calc(1.6rem + 0.25vw);
	font-weight: 300;
	line-height: 1;
	}
@media screen and (min-width: 992px) {
	body {
		font-size: 1.6rem;
		}
	}


/* FONT FAMILY */
body, .-sans-serif {
	font-family: 
		Arial, Helvetica, Roboto, "Droid Sans", "Droid Sans Japanese", 
		"ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", 
		"ヒラギノ角ゴ Pro W4", "Hiragino Kaku Gothic Pro", 
		"HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", 
		"游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "メイリオ", Meiryo, 
		Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	}
.-serif {
	font-family: 
		"Times New Roman", 
		"ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", 
		"游明朝", "Yu Mincho", "游明朝体", "YuMincho", 
		"HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	}

/* TEXT */
h1, h2, h3, h4, h5, h6 {
	font-size: 1em;
	font-weight: 600;
	line-height: 1.25;
	}
p {
	line-height: 1.25;
	}
p + p {
	margin-top: 0.5em;
	}
em, 
address {
	font-style: normal;
	}

img {
	max-width: 100%;
	height: auto;
	}
figure {
	}
figcaption {
	margin: 0.5rem auto;
	font-size: 0.75em;
	line-height: 1.25;
	}

hr {
	clear: both;
	width: auto;
	height: 0;
	border-top: solid 0.1rem #666;
	}


/* LINK
 ============================== */
a {
	position: relative;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	}
a:hover {
	opacity: 0.8;
	}
a[href^="http"]:empty:after {
  content: attr(href);
	}
a[href^="http"]:empty:after, 
a[href^="mailto"] {
	display: inline;
	white-space: normal;
	word-break: break-all;
	}
@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		color: #3e3a39;
		text-decoration: none;
		pointer-events: none;
		}
	}


/* TABLE
 ============================== */
table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-size: 0.875em;
	}
table caption {
	margin-bottom: 0.5rem;
	font-weight: 600;
	text-align: left;
	}
table, th, td {
	border-style: solid;
	border-color: #ccc;
	border-width: 0.1rem;
	}
table .row_head col {
	width: 10em;
	}
table .row_head, 
table .row_head col:first-child {
	background-color: rgba(0,0,0,0.1);
	}
table thead {
	background-color: #666;
	}
table thead th {
	color: #FFF;
	}
table thead > tr {
	border-bottom-style: double;
	border-bottom-width: 0.3rem;
	}
table tfoot {
	background-color: #F0F0F0;
	}
table tfoot > tr {
	border-top-style: double;
	border-top-width: 0.3rem;
	}
table th, 
table td {
	padding: 0.5em;
	vertical-align: middle;
	line-height: 1.25;
	}
table th {
	font-weight: 600;
	text-align: center;
	}
table td {
	text-align: left;
	}
table tbody th {
	width: 25%;
	background-color: #ededed;
	}


/* FORM
 ============================== */
textarea, 
input, 
button, 
select {
	margin: 0.2rem auto;
	padding: 0.2em;
	border-radius: 0.3rem;
	border-style: solid;
	border-width: thin;
	border-color: #ccc;
	background-color: #FFF;
	font-size: 1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}
textarea.-w_narrow, 
input.-w_narrow, 
button.-w_narrow, 
select.-w_narrow {
	width: 8em;
	}
textarea.-w_harf, 
input.-w_harf, 
button.-w_harf, 
select.-w_harf,
textarea.-w_full, 
input.-w_full, 
button.-w_full, 
select.-w_full {
	width: 100%;
	}
textarea {
	height: 5em;
	line-height: 1.25;
	}
@media screen and (min-width: 768px) {
	textarea.-w_harf, 
	input.-w_harf, 
	button.-w_harf, 
	select.-w_harf {
		width: 49%;
		}
}