/* CSS Document */

/*page01*/

.contents_body{
	width:800px;
	background-color:#000;
/*	height:1628px;
*/	margin: 0px auto;
/*	opacity:0.85; */
	position:relative;
	line-height:1.5;
/*-moz-box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
-o-box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
-ms-box-shadow: 0px 0px 10px rgba(0,0,0,0.2);*/
}


.mt1{margin-top:3%;}
.mt2{margin-top:7%;}
.mt3{margin-top:10%;}

.mb1{margin-bottom:3%;}
.mb2{margin-bottom:7%;}
.mb3{margin-bottom:10%;}

.mc{margin-left:auto; margin-right:auto; display:block;}

section#info{color:#000; background-color:#FFE8D2; font-size:1.4rem; width:95%; margin:5% auto 0; padding:2% 5%; border:2px solid #FF6700;}
section#info p{margin-bottom:5%; line-height: 1.5;}
section#info p span{font-size:1.6rem; font-weight:bold; color:#FF6700;}

/* ここから下がボタンのCSS　*/
.link-btn {
  display: inline-block;
  width: 300px;
  text-align: center;
  background-color: #FF6700;
  border: 2px solid #FF6700;
  font-size: 16px;
  color: #FF6700;
  text-decoration: none;
  font-weight: bold;
  padding: 16px 30px;
  position: relative;
}

.link-btn span {
  position: relative;
  z-index: 1;
}

.link-btn::before,
.link-btn::after {
  content: "";
  display: block;
  background-color: #FFF;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: .2s;
}
.link-btn::before {
  left: 0;
}
.link-btn::after {
  right: 0;
}

.link-btn:hover:before,
.link-btn:hover:after {
  width: 0;
  background-color: #FFF;
}

.link-btn:hover {
  color: #FFF;
}