@charset "UTF-8";

/*----------------------------------------
0.0 Color root
----------------------------------------*/
:root {
	--main: rgb(66,133,244);
	--white: #ffffff;
	--grey-i-fa: #fafafa;
	--grey-i-f5: #f5f5f5;
	--grey-i-f0: #f0f0f0;
	--grey-i-ee: #eeeeee;
	--grey-i-dd: #dddddd;
	--grey-i-cc: #cccccc;
	--black-i-33: #333333;
	--black-i-41: #414141;
	--black-i-68: #686868;
	--black-i-88: #888888;
	--black-i-00: #000000;
	--blue: #1d8aff;
	--green: #5dbd03;
	--pink: #ff3a60;
	--purple: #9b4db6;
	--shadow--grey: rgba(0, 0, 0, 0.4);
	--shadow--blue: rgba(0, 129, 255, 0.35);
	--x--black: rgba(15,20,25,1.00);

	--gold: #d4ab54;
	--silver: #b1b4b3;
	--bronze: #bf6c49;
}
/*----------------------------------------
0.0 General Setting
----------------------------------------*/
* {box-sizing: border-box;}
html {
	touch-action: manipulation;
}
html, body {
	margin: 0;
	padding: 0;
	height: -webkit-fill-available;
}
body {
    color: var(--black-i-41);
    font-size: 12px;
    font-family: "游ゴシック体","Yu Gothic",YuGothic,"Kozuka Gothic Pro","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック",Helvetica,Arial,Verdana,sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: none;
    -webkit-print-color-adjust: exact;
    background-color: var(--white);
	transition: 0.5s ease;
}
body.view {
    background-color: var(--grey-i-f5);
}
body.--fixed {
    overflow-y: hidden;
}
/*----------------------------------------
0.0 Typography
----------------------------------------*/
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}
h3.__txt {
    text-align: center;
    font-size: 1rem;
}
h4 {
	margin: 0 0 6px 0;
    font-size: 1rem;
    font-weight: bold;
}
p.__des {
    text-align: center;
    font-size: 0.8rem;
}
p.__txt {
	font-size: 0.85rem;
    margin: 0;
    font-weight: bold;
}
/*----------------------------------------
0.0 List
----------------------------------------*/
ul,ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul ul {
	margin-left: 1em;
}
ul li {
    margin-bottom: 10px;
}
ul li:last-child {
    margin-bottom: 0;
}
/*----------------------------------------
0.0 Link
----------------------------------------*/
a {
	border-bottom: 1px solid var(--black-i-00);
	color: var(--black-i-00);
	text-decoration: none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-webkit-touch-callout:none;
    -webkit-user-select:none;
}
a:hover {
	border-bottom: 1px solid var(--main);
	color: var(--main);
}
label {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-webkit-touch-callout:none;
    -webkit-user-select:none;
}
.__back {
    text-align: center;
	padding: 20px;
}
/*----------------------------------------
0.0 Images
----------------------------------------*/
img {
	width: 100%;
	vertical-align: bottom;
}
/*----------------------------------------
0.0 Layout
----------------------------------------*/
#__layout {
    box-sizing: border-box;
}
header {
    padding: 8px 0 20px;
    text-align: center;
}
header .logo img {
    width: 150px;
}
main {
	position: relative;
    width: 100%;
	box-sizing: border-box;
}
footer {
	position: relative;
    text-align: center;
    z-index: 1;
    bottom: 2%;
    background-color: var(--black-i-33);
    padding: 1rem 0;
}
/*----------------------------------------
0.0 header
----------------------------------------*/
header a,
header a:hover {
	border: none;
}
/*----------------------------------------
0.0 footer
----------------------------------------*/
footer nav ul li {
    display: inline-block;
    margin: 0 10px;
}
footer a {
	color: var(--white);
    border: 0;
    font-size: 0.65rem;
}
footer a:hover {
	border: none;
	color: var(--white);
}
/*----------------------------------------
0.0 Main
----------------------------------------*/
#__front {
	min-height: 100vh;
}
@supports (-webkit-touch-callout: none) {
	#__front {
	    min-height: -webkit-fill-available;
	}
}
#__under {
	background-color: var(--white);
    max-width: 35rem;
	margin: 20px auto 0;
    padding: 12px;
	box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    min-height: calc(100vh - 89px);
}
@keyframes bg--switch{
      0%   {background-color: var(--main);}
      25%  {background-color: var(--green);}
      50%  {background-color: var(--pink);}
      75%  {background-color: var(--purple);}
}
/*----------------------------------------
0.0 Section
----------------------------------------*/
/*----------------------------------------
0.0 Form
----------------------------------------*/
.login .user-box {
	position: relative;
}
.login .user-box input:focus ~ label {
	top: -0.6rem;
    left: 12px;
	padding: 0 0.25rem;
	color: var(--main);
	font-size: 0.5rem;
	background-color: var(--white);
}
.login .user-box input:valid ~ label {
	top: -0.6rem;
    left: 12px;
	padding: 0 0.25rem;
	color: var(--black-i-88);
	font-size: 0.5rem;
	background-color: var(--white);
}
.login .user-box select:focus ~ label {
	top: -0.6rem;
    left: 12px;
	padding: 0 0.25rem;
	color: var(--main);
	font-size: 0.5rem;
	background-color: var(--white);
}
.login .user-box select:valid ~ label {
	top: -0.6rem;
    left: 12px;
	padding: 0 0.25rem;
	color: var(--black-i-88);
	font-size: 0.5rem;
	background-color: var(--white);
}
.login .user-box label {
    position: absolute;
    top: 0;
  	left: 10px;
    padding: 0.5rem 0.25rem;
    font-size: 1rem;
    color: var(--black-i-88);
    pointer-events: none;
    transition: .2s;
}
input,textarea,select {
  -webkit-appearance: none;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="number"],
textarea,
select {
    margin: 0 0 1.5rem 0;
    padding: 0.5rem 0.75rem;
	max-width: 100%;
	width: 100%;
	border: none;
	-webkit-border-radius: 0.5rem;
	-moz-border-radius: 0.5rem;
	border-radius: 0.5rem;
	background-color: var(--grey-i-f0);
	color: var(--black-i-88);
	vertical-align: bottom;
	font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.02rem;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	-webkit-transition: background-color 0.2s ease, outline 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
	transition: background-color 0.2s ease, outline 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
	transition: background-color 0.2s ease, outline 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	transition: background-color 0.2s ease, outline 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
textarea {
	min-height: 8rem;
	overflow: auto;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
select {
	position: relative;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    background-image: none;
    -ms-word-break: normal;
    word-break: normal;
}
.select:after {
	position: absolute;
    right: 24px;
    bottom: 47%;
    transform: rotate(45deg);
    width: 6px;
    height: 6px;
    border-bottom: 2px solid var(--black-i-88);
    border-right: 2px solid var(--black-i-88);
    content: "";
}
input[type="text"]:hover,
input[type="password"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="search"]:hover,
input[type="number"]:hover,
textarea:hover,
select:hover  {
	border: none;
	background-color: var(--white);
	-webkit-box-shadow: 0 0 0 2px var(--main);
 	-moz-box-shadow: 0 0 0 2px var(--main);
	box-shadow: 0 0 0 2px var(--main);
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus  {
	border: none;
	outline: none;
 	color: var(--bl-41);
	background-color: var(--white);
	-webkit-box-shadow: 0 0 0 2px var(--main);
 	-moz-box-shadow: 0 0 0 2px var(--main);
	box-shadow: 0 0 0 2px var(--main);
}
input[type="text"]:valid,
input[type="password"]:valid,
input[type="email"]:valid,
input[type="tel"]:valid,
input[type="search"]:valid,
input[type="number"]:valid,
textarea:valid,
select:valid {
	background-color: var(--white);
	-webkit-box-shadow: 0 0 0 2px var(--grey-i-ee);
 	-moz-box-shadow: 0 0 0 2px var(--grey-i-ee);
	box-shadow: 0 0 0 2px var(--grey-i-ee);
}
button,
.button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: block;
	margin: 0 auto 20px;
	width: 200px;
    height: 54px;
	padding: 16px 0;
    border: 1px solid var(--main);
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    border-radius: 80px;
    background-color: var(--main);
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    line-height: normal;
    cursor: pointer;
	-webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
	-webkit-appearance: none;
    appearance: none;
	font-size: 13px;
	text-align: center;

	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-webkit-touch-callout:none;
    -webkit-user-select:none;
}
button:hover,
.button:hover,,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	-webkit-box-shadow: 0 0 2px var(--shadow--grey);
	-moz-box-shadow: 0 0 2px var(--shadow--grey);
	box-shadow:  0 0 2px var(--shadow--grey);
}
button:active,
.button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
	position: relative;
	-moz-transform: scale(0.93,0.93);
    -webkit-transform: scale(0.93,0.93);
    -o-transform: scale(0.93,0.93);
    -ms-transform: scale(0.93,0.93);
    -webkit-transform-style: preserve-3d;
    -webkit-transform: scale3d(0.93,0.93);
}
.note {
    text-align: right;
    margin-bottom: 30px;
	position: relative;
}
.__entry.--primary {
    cursor: pointer;
    position: relative;
    color: var(--black-i-88);
    border-bottom: 1px solid var(--black-i-88);
}
.__entry.--primary:before {
	content: '';
    background-image: url(../images/ico/ico_question.png);
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    position: absolute;
    background-size: 14px;
    left: -20px;
    top: 0px;
	opacity: 0.7;
}
.__entry.--secondary {
    background-color: var(--main);
    border-color: var(--main);
	color: var(--white);
    margin: 0 auto;
}
.__entry.--secondary {
	background-color: var(--black-i-41);
    border-color: var(--black-i-41);
	color: var(--white);
	margin: 30px auto 20px;
}
.__entry.--next {
    background-color: var(--black-i-41);
    border-color: var(--black-i-41);
	color: var(--white);
    margin: 0 auto 20px;
    display: block;
}
.__entry.--result {
    background-color: var(--pink);
    border-color: var(--pink);
	color: var(--white);
    margin: 0 auto 20px;
    display: block;
}
@keyframes txt--switch{
	0%   {color: var(--main);}
	25%  {color: var(--green);}
	50%  {color: var(--pink);}
	75%  {color: var(--purple);}
}
.results-button {
    display: flex;
}
/*----------------------------------------
0.0 Front
----------------------------------------*/
#__front h1 {
	position: relative;
    width: 100%;
    margin: 0 0 30px;
    text-align: center;
	font-size: 1em;
    color: var(--black-i-41);
    font-feature-settings: "palt";
    font-family: 'Noto Sans JP', sans-serif;
}
#__front .__primary {
    margin: 0;
    position: absolute;
	top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}
.__title {
	font-size: 15px;
    font-weight: bold;
    margin: 0 0 5px;
    color: var(--black-i-41);
}
.__block {
	padding: 12px 14px;
    background-color: var(--grey-i-f5);
    margin-bottom: 14px;
    border-radius: 10px;
}
p.notice {
    margin: 5px 0 0;
    font-size: 10px;
    color: var(--grey-i-68);
}
.__fit {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	transition: 0.5s ease;
}
.__fit.view {
	opacity: 1;
}
.__fit .layer {
	background-color: rgb(0 0 0 / 20%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    position: absolute;
}
.video {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%,-50%);
}
#front {
	width: 23rem;
    margin: 0 auto;
	max-width: 90%;
}
#front .top--images img {
	width: 80%;
    height: auto;
    vertical-align: bottom;
    display: block;
    margin: 0 auto;
}
.login {
    background-color: var(--white);
    padding: 20px 20px 10px;
    box-sizing: border-box;
    border-radius: 16px;
	box-shadow: 0 2px 6px 0 rgb(0 0 0 / 30%);
}
.top--images {
    transition: 0.5s ease;
	z-index: -2;
}
.login {
    transition: 0.5s ease;
	z-index: 2;
}
.top--images.view {
	z-index: -2;
}
.login.view {
	z-index: 2;
}
.top--images {
	position: relative;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.75s, top 0.75s ease;
    top: 14px;
}
.login {
	position: relative;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.75s, top 0.75s ease;
    top: 14px;
}
.top--images.view,
.login.view {
	position: relative;
    visibility: visible;
    opacity: 1;
    top: 0;
}
#mirativ-id {
    margin: 0 0 10px;
}
.images_area {
    border-radius: 16px;
    overflow: hidden;
    margin: 20px auto;
	position: relative;
}
.images_area img {
	position: relative;
    width: 100%;
    height: auto;
	z-index: 1;
}
p.txt {
    line-height: 2;
    font-size: 0.8rem;
}
.__scroll {
    height: 145px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 16px;
    border-radius: 16px;
    box-shadow: inset 0 0 10px var(--grey-i-ee);
    background-color: var(--grey-i-f5);
}
._block-scroll {
	margin-bottom: 25px;
    border-left: 7px solid var(--black-i-41);
    padding: 3px 14px;
    border-radius: 4px;
    background-color: var(--white);
}
.privacy-block {
    padding: 1px 10px;
    background-color: var(--white);
    border-radius: 4px;
}
.waiting-time {
    margin-bottom: 30px;
}
.waiting-time p {
	font-size: 0.8rem;
    text-align: center;
    margin: 30px 0 30px;
    line-height: 2;
}
.wating-images {
    margin: 40px 0;
	text-align: center;
}
.wating-images img {
    width: 60%;
}
.next-exam {
	position: relative;
    width: 340px;
	margin: 10px auto;
    border: 2px solid #333333;
    border-radius: 16px;
	padding: 12px;
}
span.next-exam-txt {
	position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-color: #fff;
    padding: 0;
	width: 220px;
    font-weight: bold;
    text-align: center;
}
#countdown {
	font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2rem;
	letter-spacing: 2px;
    font-weight: 900;
}
/*----------------------------------------
0.0 404 or No post or error
----------------------------------------*/
.no--post {
    text-align: center;
}
.ajax-error-message {
    text-align: center;
    line-height: 2;
}
/*--------------------------------------------------------------
0.0 Modal
--------------------------------------------------------------*/
.__ol {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 4;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background-color: rgb(0 0 0 / 45%);
}
.__ol.--open {
    opacity: 1;
    visibility: visible;
}
.modal {
	width: 22rem;
    height: auto;
    position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    opacity: 0;
	-webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    max-width: 42rem;
    box-shadow: 0 2px 6px 0 rgb(0 0 0 / 30%);
}
.__ol.--open .modal {
    opacity: 1;
}
.modal__wrap {
    width: 100%;
    height: 100%;
    position: relative;
}
.block__top {
	box-sizing: border-box;
    width: 100%;
    padding: 8px;
    overflow: hidden;
    border-bottom: 1px solid var(--grey-i-dd);
	position: relative;
    z-index: 5;
    background-color: var(--white);
    -moz-border-top-left-radius: 20px;
	-webkit-border-top-left-radius: 20px;
    border-top-left-radius: 20px;
    -moz-border-top-right-radius: 20px;
	-webkit-border-right-radius: 20px;
    border-top-right-radius: 20px;
}
.block__bottom {
	padding: 17px 15px 20px;
    max-height: 75vh;
    overflow-y: scroll;
}
.__close {
	width: 40px;
    height: 40px;
    padding: 6px;
	margin: inherit;
    display: block;
	position: relative;
    -moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
    border: 1px solid var(--white);
    background-color: var(--white);
	cursor: pointer;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;

	-webkit-touch-callout:none;
    -webkit-user-select:none;
}
.__close:hover {
    border: 1px solid var(--white);
    background-color: var(--grey-i-ee);
}
.__close:active {
    border: 1px solid var(--grey-i-cc);
    background-color: var(--grey-i-cc);
}
.__close::before,
.__close::after {
	content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3.5%;
    height: 19px;
    background-color: var(--black-i-41);
	-moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}
.__close::before {
	transform: translate(-50%,-50%) rotate(45deg);
}
.__close::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}

/*--------------------------------------------------------------
0.0 Loading
--------------------------------------------------------------*/
.loader {
	position: relative;
	margin: 0px auto;
	width: 42px;
}
.loader:before {
	content: "";
	display: block;
	padding-top: 100%;
}
.circular {
	animation: --rotate 2s linear infinite;
	height: 100%;
	transform-origin: center center;
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.path {
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	animation: --dash 1.5s linear infinite, loading--color 1.5s ease-in-out infinite;
}
@keyframes --rotate {
	100% {transform: rotate(360deg);}
}
@keyframes --dash {
	0% {stroke-dasharray: 1, 200;stroke-dashoffset: 0;}
	50% {stroke-dasharray: 89, 200;stroke-dashoffset: -35;}
	100% {stroke-dasharray: 89, 200;stroke-dashoffset: -124;}
}
@keyframes loading--color {
	100%, 0% {stroke: var(--main);}
	40% {stroke: var(--green);}
	66% {stroke: var(--pink);}
	80%, 90% {stroke: var(--purple);}
}
/*--------------------------------------------------------------
0.0 Cheat
--------------------------------------------------------------*/
.__search {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    top: 70px;
    left: 0;
    padding: 18px 14px 0;
    background: #fff;
    margin-top: -16px;
}
.__cheat--page {
    height: 100vh;
    position: relative;
	margin-top: 190px;
}
.__cheat--page p {
    margin: 0 0 20px;
	text-align: center;
}
.__exam--cheat {
	padding: 12px 10px 8px;
    background: var(--grey-i-f5);
    border-radius: 10px;
    margin-bottom: 16px;
}

.__exam--cheat .__title {
    text-align: left;
}
.__exam--cheat .__block {
    background: inherit;
    margin-bottom: 0;
    padding: 7px 0;
    background: inherit;
}
.__exam--cheat ul li {
    font-size: 13px;
}
/*--------------------------------------------------------------
0.0 Responsive
--------------------------------------------------------------*/
@media only screen and (max-width: 560px){
	header .logo img {
	    width: 140px;
	}
	#__under {
	    margin: inherit;
	    box-shadow: inherit;
	    border-radius: inherit;
	}
	#front .top--images img {
    	width: 70%;
	}
}
