@charset "UTF-8";
.all-area{
	display:flex;
	flex-flow: column;
}

.score-area{
	display:flex;
	flex-direction: row;
}

.img-area{
	width:50%;
	background-image:url(../images/score.jpg);
	background-size:cover;
	height:0;
	padding-top:70.6973%;
}

.text-area{
	width:50%;
}

.link-area-wrap{
	margin:15px;
}

.button {
  display       : inline-block;
  /*border-radius : 5%;*/          /* 角丸       */
  font-size     : 16pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 15px 53px;   /* 余白       */
  background    : #0c489b;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  opacity       : 1;           /* 透明度     */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 3px 3px #666666;  /* 影の設定 */
  text-decoration:none;
}
.button:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  opacity       : 0.8;         /* カーソル時透明度 */
  text-decoration:none;
}

.link-area{
	text-align: center;
}

ul.qsheet-anc li:nth-child(5n) {
	margin-left: 0;
}

ul.qsheet-anc li:nth-child(n+5){
	margin-top: 5px;
}


@media only screen and (max-width: 767px){
.all-area {
	display:felx !important;
    flex-flow: column !important;
}
}

