@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
body {
  background: #f5f5f5;
  color: #313131;
  /*全体の文字色*/
  margin: 0px;
  padding: 0px;
  font: 16px/1.6 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}

p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: left;
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  color: #006ddc;
  /*リンクテキストの色*/
  text-decoration: none;
}

a:hover {
  color: #006ddc;
  /*マウスオン時の文字色（全体）*/
}

a:hover .btn {
  position: relative;
  top: 3pt;
  left: 3pt;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
  width: 750px;
  /*コンテナー幅*/
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}


.gray{
  margin-top: 30px;
  padding: 20px 30px;
  background-color: #F5F5F5;
}

/*フッター設定
---------------------------------------------------------------------------*/

footer {
	width: 100%;
	height: auto;
	color: #fff;
	background-color: #CF2A2A;
}

.footer-inner {
	text-align: left;
}

.footer-inner a {
	padding: 5px;
	margin: 50px;
	color: #fff;
	padding-left: 30px;
	background: url(../img/listmark-arrow.png) no-repeat left 0 top 5px;
}

.footer-inner a:hover {
	text-decoration: underline;
}

.footer-inner ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-inner li {
	text-align: left;
	padding: 8px 0;
	font-size: 120%;
	border-bottom: 1px solid #d4d4d4;
}

.footer-inner li:hover {
	opacity: 0.5;
	background: #e66464;
}

.fotter-inner li:last-child::after {
	content: none;
}

.footer-inner span.copy {
	font-size: 80%;
}

footer p.copy {
	text-align: center;
	padding: 20px 0;
	font-size: 90%;
}

.small{
  text-align: center;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc { display: none !important; }
  .sp { display: block !important; }

  #container img{
    width: 100%;
  }

  .btn{
    width: 80%;
    padding: 0 80px;
  }
}