@charset "UTF-8";
/*======================
 	共通
========================*/
*{
  margin: 0;
  padding: 0;
}
html{ font-size: 62.5%;} /*初期値16pxの62.5%でルートが10px*/ 
body {
  font-family:"メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align:left;
  line-height: 1.8em;
  font-size: 1.6rem;
  height: 100%;
  background-color: #fff;
}
/*========767以下========*/
@media screen and (max-width: 767px) {
body {
  line-height:1.8em;
  font-size: 1.4rem;
}
}
/*===写真画像===*/ 
figure{
  margin:0;
  padding:0;
}
img{
  max-width:100%;
  height:auto;
}

ul,li{
  margin:0;
  padding:0;
}
a:link , a:visited{
  text-decoration: none;
  color:#3366cc;
}
a:hover{
  color:#6699ff;
  text-decoration: underline;
}
.el_font-bold{
  font-weight:bold;
}
.el_font-white{
  color:#fff;
}
.el_font-red{
  color:#cc3333;
}
.el_font-mini{
  font-size: 12px;
  line-height:14px;
}
.ly_center{
  text-align: center;
}
/*====改行禁止====*/ 
.el_txt-nowrap{
  white-space: nowrap;
}
/*====強制改行====*/
.css_br::before {
  content: "\A" ;
  white-space: pre ;
}
/*========================
*
* 	レイアウト
*
*========================*/
.ly_wrapper{
  max-width: 950px;
  padding: 0 2%;
  margin: 0 auto;
  line-height: 1.8em;
}
/*========767以下========*/
@media screen and (max-width: 767px) {
.ly_wrapper{
  max-width: 1000px;
  padding: 0 2%;
}
}
/*========================
*
* 	#pageup ページアップ
*
*========================*/
#pageup {
  position: fixed;
  bottom: 0;
  right: 0;
  height:auto;
  z-index: 1000;
  font-size: 0;
  line-height: 0;
}
#pageup span{
    display:  inline-block;
    color: #fff;
    text-decoration:  none;
    background-color: #2196F3;
    border-radius: 1px;
    position:  relative;
    height: 50px;
    width: 50px;
}

#pageup span::before {
    content:  '';
    width: 20px;
    height: 20px;
    display:  block;
    border-top: solid 3px;
    border-right: solid 3px;
    transform: rotate(-45deg);
    position:  absolute;
    top: 10px;
    bottom:  0;
    left:  0;
    right:  0;
    margin:  auto;
}
/*========767以下========*/
@media screen and (max-width: 767px) {
#pageup {
  position:static;
  left:0;
  right:0;
  height:auto;
  background-color:#2196F3;
  margin: 0 auto;
  display: block;
  text-align: center;
border-top: 1px solid #ccc;
}
#pageup span{
    display:  inline-block;
    color: #fff;
    text-decoration:  none;
    background-color: #2196F3;
    border-radius: 1px;
    position:  relative;
    height: 50px;
    width: 100%;
	padding: 15px 0 0 0;
}
}
/*========================
* 	footer フッター
*========================*/
footer{
  background-color: #edeef0;
  border-top: 1px solid #ddd;
  text-align: center;
  clear: both;
	margin-top: 200px;
}
#ly_footer {
  clear: both;
  padding: 30px;
  margin: 0 auto 0 auto;
  max-width:1280px;
  border-top: 1px solid #ccc;
}
footer copy{
  font-size: 0.75em;
  clear: both;
  display: block;
}
/*========767以下========*/
@media screen and (max-width: 767px) {
footer{
	margin-top: 100px;
}
}
/* スペース */
#clear01{
  margin:0px;
  padding: 0px;
  width:100%;
  clear:both;
}
.ly_close{
	background-color: #333;
	padding: 20px 10px;
	text-align: center;
}
.ly_close button{
	border: 1px solid #999;
	color:#ccc;
	padding: 10px 15px;
	background-color: #333;
	cursor: pointer;
}
.ly_close button .closetxt::before{
	content: "☓";
	padding-right: 5px;
}