@charset "utf-8";

* {
  margin: 0;
  padding: 0;
}
html, body { height: 100%; }
body {
  position: relative;
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  line-height: 1.5;
	color: #000;
  font-size: 16px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

@media (width <= 767px) {
  body {
    font-size: 18px;
  }
}


/* PC/SP
----------------------------------------*/
.pc_only {display:block;}
.sp_only {display:none;}

@media (width <= 767px) {
  .pc_only {display:none;}
  .sp_only {display:block;}
}

/* IMG Alpha
----------------------------------------*/
.alpha a:hover {
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}

@media (width <= 767px) {
  .alpha a:hover {
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
  }
}

/* Link
----------------------------------------*/
a {
  color: #000099;
  text-decoration: underline;
  outline: none;
}

/* List
----------------------------------------*/
ul, ol, li, dd, dt, dl {
  list-style-type: none;
}

/* Image
----------------------------------------*/
img, a img {
	border-style: none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
.pdficon {
  padding-left: 0.2em;
  vertical-align: middle;
}

/*============================
	header
==============================*/
header h1 {
  padding: 30px 0 25px;
  text-align: center;
  font-size: 46px;
  font-weight: bold;
  color: #fff;
  background: #1379b2;
}
@media (width <= 767px) {
header h1 {
  font-size: 32px;
}
}

/*============================
	contents
==============================*/
section {
  margin-top: 50px;
}
table {
  line-height: 1;
  margin: auto;
}
td {
  padding: 15px 30px 10px;
  border: #ccc solid 1px;
}
@media (width <= 767px) {
  td {
    display: block;
    width: auto;
    padding: 15px 30px 10px;
    border: #ccc solid 1px;
  }
}




