@charset "utf-8";

/*--------------------------------------
  PCでの表示
--------------------------------------*/

/* font-family */
/* ----------------------------------------------------- */
body{
  font-family:'Lucida Grande',
  'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3',
  Meiryo, メイリオ, sans-serif;
}

/* link
a:link{
	color:inherit;
	text-decoration:none;
}
a:visited{
	color:inherit;
	text-decoration:none;
}
a:hover{
	color:inherit;
	text-decoration:none;
}
*/

/* 簡便のために全要素のマージンとパディングを0に */
* {
margin:0;
padding:0;
}

p,dt,dd,li,th,td,textarea{
  vertical-align:middle;
  line-height:1.5;
}

/* 画像をサイズ幅に合わせる */	
* img{
	max-width:100%;
	height:auto;
}

/* padding と border を要素の幅と高さに含める */
div,dl,dt,dd,ul,ol,li{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}

/* トップに戻るボタン フローティング */
#toPageTop{
	height:70px;
	width:70px;
	position:fixed;
	bottom:20px;
	right:100px;
	z-index:1;
}
#toPageTop img{
	max-width:100%;
	max-height:auto;
}
#toPageTop img a:hover{
	opacity:0.7;
	-webkit-opacity:0.7;
	-moz-opacity:0.7;
}

/* スマホの時だけ非表示 */
.no-sp{
	display: block !important;
}
/* パソコンの時だけ非表示 */
.no-pc{
	display: none !important;
}

/* コンテンツ */
#contents {
	width:100%;
	margin:0 auto 35px;
	background:inherit;
}
.category {
	width:960px;
	display:block;
	margin:auto;
	background-color:#ffffff;
	padding: 40px 70px;
}
.about{
	border: 2px solid #000000;
	padding: 25px 25px 50px;
}
.normal_wrap{
	padding: 25px 25px 50px;
}
h2.title {
	width:100%;
	color:#000000;
	font-size:24px;
	text-align:center;
	display:block;
	margin: 30px auto 10px;
}
h2.title_b {
	width:100%;
	color:#000000;
	font-size:32px;
	text-align:center;
	display:block;
	margin: 10px auto;
	padding: 8px;
	border-top: 1px solid #000000;
	border-bottom: 1px solid #000000;
}
p.normal{
	font-size: 16px;
	padding-top: 20px;
	line-height: 1.5;
}
p.lead{
	font-size: 16px;
	padding: 20px 20px 0;
	line-height: 1.8;
	text-align: justify;
	text-indent: 1em;
}
p.sign{
	font-size: 14px;
	padding: 40px 20px 0;
	line-height: 1.5;
	text-align: right;
}
p.sign span{
	font-size: 13px;
}
a.btn_blue{
	display: block;
	margin: auto;
	text-align: center;	
	background-color: #009ae1;
	color: #ffffff;
	padding: 10px;
	font-size: 1rem;
	font-weight: bold;
	text-decoration: none;
}

/* footer */
/* ----------------------------------------------------- */
#footer{
}
#footer div.inner{
  position:relative;
  width:960px;
  margin:0 auto;
  text-align:left;
}
/* copy-wrap */
#footer div.copy-wrap{
}
#footer div.copy-wrap p.catch{
  float:left;
}
#footer div.copy-wrap p.copy{
  float:right;
}

/* float clear */
/* ----------------------------------------------------- */
/* modern borwser */
.clx:after
{
  content:'';
  display:block;
  clear:both;
  height:0;
}

/*--------------------------------------
  スマホでの表示
--------------------------------------*/

/*media Queries 599px以下
----------------------------------------------------*/
@media (max-width: 599px){
body {
	background:#FFFFFF;
}	

/* 戻るボタン フローティング　スマホ */
#toPageTop{
	height:55px;
	width:55px;
	bottom:15px;
	right:15px;
}
	
/* スマホの時だけ非表示 */
.no-sp{
	display: none !important;
}
/* パソコンの時だけ非表示 */
.no-pc{
	display: block !important;
}	

/* コンテンツ */
#contents {
	width:100%;
	background:#FFFFFF;
}
.category {
	width:100%;
	padding: 20px;
}
.about{
	padding: 15px 15px 25px;
}
.normal_wrap{
	padding: 15px 15px 25px;
}	
h2.title {
	font-size:16px;
	margin: 20px auto;
}
h2.title_b {
	font-size:22px;
}
p.normal{
	font-size: 14px;
}	
p.lead{
	font-size: 14px;
	padding: 7px 5px 5px;
}
p.sign{
	padding: 25px 5px 5px;
}	
}