/* CSS Document */

@font-face{
font-family: '07yasashisa';
src: url('/font/07yasashisa.eot');
src: url('/font/07yasashisa.eot?#iefix') format('embedded-opentype'),
url('/font/07yasashisa.woff') format('woff'),
url('/font/07yasashisa.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
body{font-family: '07yasashisa';}

.yesno {
    height: 400px;
    width: 100%;
	position:relative;
	background: #fff;
	margin:0 0 40px;
	clear: both;
	overflow: hidden;
}

.yesno ul{
	overflow: hidden;
	padding: 0 auto;
}
 
.yesno ul li {
	list-style:none;
	float: left;
	text-align: center;
	display: block;
	color: #FFF;
	background-color: #066;
	line-height: 200px;
	font-size: 300%;
	width: 41%;
	margin: 0 4%;
	border-radius: 10px; 
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px; 
}

.positionFit {
	width: 100%;
	position:absolute;
	left: 0px;
	top: 69px;
	color: #333;
}

.positionFit p{
	background: #eee none repeat scroll 0 0;
    padding: 10px 25px;
    margin: 0 25px;
	font-size: 200%;

}

.yesno ul li a {
    background-color: #3498db;
    color: #fff;
    display: block;
    height: 100%;
    text-decoration: none;
    width: 100%;
    font-size: 100%;

}

.no-bg{
	background: #48cc83!important;
}

.yesno ul li a:hover {
    background-color: #298dcf;
}

.yesno .material-icons{
	background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0;
    border-radius: 50%;
    font-size: 30px;
    padding: 10px 10px 8px;
    vertical-align: middle;
    margin: 0 10px 0 0;
}

#account{
    width: 60%;
	height: 80%;
    margin: 5%;
	padding: 15%;
	text-align: center;
	background-color: #3498db;
	border-radius: 10px; 
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px; 
    color: #fff;
	font-size: 150%;

}

#account img{
	width: 200px;
	height: 200px;
	border-radius: 100px; 
	-webkit-border-radius: 100px;
    -moz-border-radius: 100px; 
}

#account h1{
	line-height: 1.5;	/*行間*/
}

#accountt p{
	background: #eee none repeat scroll 0 0;
    padding: 0;
    margin: 0;
	font-size: 200%;
	color: #fff;
}

.arrow {
     position:relative;
     height:32px;
     width:32px;
     background-color:#697b91;
	 transform: rotate(90deg);
	 margin: 0 auto;
}
 
.arrow::before {
     position:absolute;
     content:"";
     border:solid 32px transparent;
     border-left:solid 32px #697b91;
     top:-16px;
     left:24px;
}

.outer{
  text-align: center;
  padding: 0 0 10% 0;
}

/*ボタン１*/

.btn-flat-border {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #3498db;
  border: solid 2px #3498db;
  border-radius: 3px;
  transition: .4s;
  text-align: left;
  font-size: 200%;
}

.btn-flat-border:hover {
  background: #3498db;
  color: white;
}

/*ボタン２*/

.btn-horizontal-border {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 12px 0 8px;
  text-decoration: none;
  color: #FFF;
  transition: .4s;
  font-size: 150%;
}

.btn-horizontal-border:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  top:100%;
  left: 0;
  border-radius: 3px;
  background:#FFF;
  transition: .2s;
}

.btn-horizontal-border:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  top:0;
  left: 0;
  border-radius: 3px;
  background:#FFF;
  transition: .2s;
}

.btn-horizontal-border:hover:before {
  top: -webkit-calc(100% - 3px);
  top: calc(100% - 3px);
}

.btn-horizontal-border:hover:after {
  top: 3px;
}