@charset "utf-8";
/* CSS Document */
*{
	margin:0;
	padding:0;
}
body{
	margin:0;
	padding:0;
	text-align:center;
	font-family: "Arial", "メイリオ";
	font-size: 16px;
}
#base{
	width: 300px;
	margin:0px auto 0px;
	color:#333;
}
p{
	margin:10px auto;
	line-height:150%;
}

h1{
	margin-top:5px;
	margin-bottom:-10px;
}

h2{
	font-size:1rem;
	text-decoration:none;
	margin-bottom:2px;
}
form{
	margin-top: 50px;
	margin-bottom: 50px;
}
input,select{
	-webkit-appearance: none;
	border: none;
  }
select{
	width: 100%;
    border: 1px solid #666666;
	border-radius: 0px;
	background: #fff;
    padding: 10px 15px;
	margin-bottom:15px;
	font-size: 1rem;
	color: #000;
	display: block;
}
.select-box{
    position: relative;
}
.select-box:before {
    content: "";
    width: 5px;
    height: 5px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    display: inline-block;
    position: absolute;
    top: 45%;
    bottom: 0;
    right: 10px;
    margin: auto;
    transform: rotate(45deg);
}
.submit-box{
	margin-top: 30px;
}
.button-box{
	margin-bottom: 50px;	
}
input[type=submit],
input[type=button] {
    padding: 0.5rem 1rem;
	margin-bottom: 10px;
	font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 0;
    background: #008ccf;
    color: #fff;
}
hr{
	width:240px;
}

.reCu{
    margin: 30px 0;
}
.share-erea{
margin: 50px 0;
}
.share-erea h2{
font-size: 1rem;
	width: 100%;
	text-align: center;
	color: #008ccf;
	margin-bottom: 10px;
	}
.share-erea .share-btn{
    display: flex;
	justify-content: center;
    align-items: center;
}
.share-erea .share-btn .twitter{
    background-color: #1e9bf0;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 5rem;
	margin: 0 5px;
	}
.share-erea .share-btn .line{
    background-color: #07c755;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 5rem;
	margin: 0 5px;
	}
.share-erea .share-btn .facebook{
    background-color: #1b75e4;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 5rem;
	margin: 0 5px;
}
/*-----------------------------------------------------*/
/* スマホ用のCSS */
/*-----------------------------------------------------*/
@media only screen and (max-width: 479px) {
#base{
	width: 90%;
}
option{
	border: 1px solid;
	font-size: 1rem;	
}
}