@charset "utf-8";
/*各種ボタンに関するスタイル*/
/* サイドバーのボタン */
.submit.side-1 {
    position: relative;
    overflow: hidden;
    display: block;
    width: 96%;
    margin: 2px auto;
    text-align: center;
    font-size: 20px;
    color: #4b4b4b;
    padding: 10px 0;
    border-radius: 2px;
    background: #D7A861;
    background: linear-gradient(#ffc072,#FFEED9);
    border: 1px solid #D7A861;
    text-shadow: 1px 1px rgba(0,0,0,.3);
    appearance: none;
    max-width: 360px;
    cursor: pointer;
    transition: opacity .2s ease-out;
    user-select: none;
}
.submit.side-1:hover{
    background: linear-gradient(#FFEED9,#fff);
}
.submit.side-2 {
    position: relative;
    overflow: hidden;
    display: block;
    width: 96%;
    margin: 2px auto;
    text-align: center;
    font-size: 20px;
    color: #FFF;
    padding: 10px 0;
    border-radius: 2px;
    background: #DED46E;
    background: linear-gradient(#DED46E,#DED46E);
    border: 1px solid #D7A861;
    text-shadow: 1px 1px rgba(0,0,0,.3);
    appearance: none;
    max-width: 360px;
    cursor: pointer;
    transition: opacity .2s ease-out;
    user-select: none;
}

/* 回答送信ボタン */
a.btn_03 {
	display: block;
	text-align: center;
	text-decoration: none;
	margin: 3px;
	padding: 1rem 1%;
	font-weight: bold;
	border: 2px solid #666666;
	color: #666666;
	transition: 0.5s;
}
a.btn_03:hover {
	color: #3d3d3d;
	background: #d3d3d3;
}
a.btn_04 {
	display: block;
	text-align: center;
	text-decoration: none;
	width: 80%;
	margin: auto;
	padding: 1rem 4rem;
	font-weight: bold;
	border: 2px solid #999999;
	background: #a3a2a2;
	color: #ffffff;
	border-radius: 100vh;
	transition: 0.5s;
}
a.btn_04:hover {
	color: #27acd9;
	background: #fff;
}
a.btn_11 {
	display: block;
	text-align: center;
	text-decoration: none;
	margin: auto;
	padding: 1rem 4rem;
	font-weight: bold;
	background-image: linear-gradient(to top, #D8D9DB 0%, #fff 90%, #FDFDFD 100%);
	border-radius: 2vh;
	color: #333;
	border: 1px solid #999;
	text-shadow: 0 1px #fff;
	box-shadow: 0 3px 2px 1px #fcfcfc, 0 4px 6px #cecfd1, 0 -2px 2px #cecfd1, 0 -4px 2px #eee, inset 0 0 2px 2px #cecfd1;
	transition: 0.5s;
}
a.btn_11:hover {
	opacity: 0.5;
}
a.btn--yellow {
    color: #000;
    background-color: #fff100;
    border-bottom: 5px solid #ccc100;
  }
a.btn--yellow:hover {
    margin-top: 3px;
    color: #000;
    background: #fff20a;
    border-bottom: 2px solid #ccc100;
  }
/* 問題を始める！ボタン */
.btnSide1 {
    width: 50%;
    margin-top: 50px 0 50px;
    position: relative;
    overflow: hidden;
    display: block;
    width: 96%;
    margin: auto;
    text-align: center;
    font-size: 20px;
    color: #474646;
    padding: 10px 0;
    border-radius: 8px;
    text-shadow: 1px 1px rgba(0,0,0,.3);
    appearance: none;
    max-width: 380px;
    cursor: pointer;
    transition: opacity .2s ease-out;
    user-select: none;
    background: linear-gradient(#ffc072,#ffc072);;
    border: 1px solid #525252;
}
.btnSide1:hover,
.btnSide2:hover {
    color: gray;
    opacity: 0.5;
}
.btn.btnSide2 {
    width: 50%;
    margin-top: 50px 0 50px;
    position: relative;
    overflow: hidden;
    display: block;
    width: 96%;
    margin: auto;
    text-align: center;
    font-size: 20px;
    color: #474646;
    padding: 10px 0;
    border-radius: 8px;
    text-shadow: 1px 1px rgba(0,0,0,.3);
    appearance: none;
    max-width: 360px;
    cursor: pointer;
    transition: opacity .2s ease-out;
    user-select: none;
    background: #ce4545;
    background: linear-gradient(#3684e1, #fff);
    border-color: #0551ad;
}
.btnSide :hover {
    color: #fff;
    opacity: 0.2;
}