@charset "UTF-8";

/*---------------------------------------
  Basic Settings
---------------------------------------*/

@media print, screen and (min-width: 769px) {
	.text-center {
	  text-align: center !important;
	  padding-left: 10% !important;
	  padding-right: 10% !important;
	  padding-top: 20px;
	}
  }
@media print, screen and (max-width: 768px) {
	.text-center {
	  text-align: center !important;
	  padding-left: 5% !important;
	  padding-right: 5% !important;
	}
  }

body{
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color:#333;
	-webkit-text-size-adjust: 100%;
}
a:link, a:visited { color: #004b91; }
/*a:hover { color: red; }
a:active { color: yellow; }*/

img{
	max-width:100%;
	max-height:100%;
}
a:hover img{
	opacity:0.85;
}

.text-center{
	text-align:center;
}
.text-right{
	text-align:right;
}
.text-left{
	text-align:left;
}

/*---------------------------------------
  Basic Structure
---------------------------------------*/
.container{
	width:100%;
	margin:50px auto 0px;
	text-align: center;
}
.header{
	width:100%;

}

.main{
	width:100%;
}


/*
 PC/SP出し分け
---------------------------------------------------*/
@media print, screen and (max-width: 768px) {
	.sp-hide {
	  display: none !important;
	}
  }
  @media print, screen and (min-width: 769px) {
	.pc-hide {
	  display: none !important;
	}
  }