
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
    display: block;
    box-sizing: border-box;
}
body {
    line-height: 100%;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
    text-align: left;
}
img {
    vertical-align: bottom;
}

html {
  font-size: 62.5%;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 'メイリオ', Meiryo, sans-serif;
    font-weight: 300;
    font-size: 100%;
    line-height: 180%;
    color: #231815;
    background-color: #ffffff;
    font-feature-settings : "palt";
    -webkit-text-size-adjust: 100%;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
textarea,
select,
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 'メイリオ', Meiryo, sans-serif;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    outline: none;
    box-sizing: border-box;
}
::-webkit-input-placeholder {
	color: #ccc;
}
::-moz-placeholder {
	color: #ccc;
}
:-ms-input-placeholder {
	color: #ccc;
}
select::-ms-expand {
    display: none;
}




/*html, body {
    min-height: 100%;
    height: 100%;
}*/
.wrapper {
    max-width: 480px;
    min-height: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 48px 24px;
}
.inner {
    width: 100%;
}
h1 {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    margin:  -4px 0 14px 0;
}

@media only screen and (min-width:768px)
{
    .wrapper {
        max-width: 736px;
    }
    h1 {
        font-size: 24px;
        margin:  -6px 0 16px 0;
    }
}

@media only screen and (min-width:1025px) {
}




/* Messages */

.message {
	position: relative;
	text-align: center;
    background-color: #d4edda;
	border: solid 1px #c3e6cb;
	color: #155724;
	padding: 12px 32px;
	margin: 0 0 32px 0;
	font-size: 14px;
	line-height: 24px;
	border-radius: 4px;
    cursor: pointer;
	-webkit-transition: .2s;
	transition: .2s;
	overflow: hidden;
    width: 100%;
}
.message:before,
.message:after {
	position: absolute;
	right: 24px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	content: "";
	display: block;
	height: 10px;
	border-left: solid 1px #155724;
}
.message:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.message:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
div.message.error {
    background-color: #f8d7da;
	border-color: #f5c6cb;
    color: #721c24;
}
div.message.error:before,
div.message.error:after {
    border-color: #721c24;
}
div.message.hidden {
	opacity: 0;
	height: 0;
	margin: 0;
	padding: 0;
}


@media only screen and (min-width:600px) {
}

@media only screen and (min-width:1025px) {
}





/* .form- */
input[type=text],
input[type=number],
input[type=email],
input[type=password],
textarea,
select {
	border: solid 1px #ddd;
	padding: 8px 12px;
	box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
	font-size: 14px; font-size: 1.4rem;
	line-height: 24px; line-height: 2.4rem;
}
input[type=text],
input[type=email],
input[type=password],
textarea {
	width: 100%;
}

.form-group {
    border-top: solid 1px #eee;
}
.form-group > dl {
}
.form-group .input dt,
.form-group .input dd {
	padding: 0 2px;
}
.form-group .input dt {
    width: 0;
	white-space: nowrap;
    font-size: 14px; font-size: 1.4rem;
    line-height: 24px; line-height: 2.4rem;
    font-weight: bold;
    padding-top: 14px;
    padding-bottom: 4px;
}
.form-group .input dd {
	width: 100%;
    border-bottom: solid 1px #eee;
    padding-bottom: 16px;
}
.form-group .input.required dt:after {
	content: "*";
	color: #900;
}

.submit-container {
	padding-top: 16px;
}
.submit-container button {
    text-decoration: none;
    display: block;
    background-color: #0071BC;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    padding: 10px 16px;
    box-shadow: 0 0 2px 0 #0071BC;
    width: 100%; width: calc(100% - 4px);
    margin: 0 auto;
	cursor: pointer;
	-webkit-transition: .2s;
	transition: .2s;
}
.submit-container button:hover {
	background-color: #0061a1;
    box-shadow: 0 0 2px 0 #0061a1;
}

@media only screen and (min-width:600px)
{
    .form-group {
        display: table;
    }
    .form-group > dl {
        display: table-row;
    }
    .form-group > dl > dt,
    .form-group > dl > dd {
        display: table-cell;
        border-bottom: solid 1px #eee;
        vertical-align: middle;
    }
    .form-group .input dt {
        padding: 16px 24px 16px 8px;
    }
    .form-group .input dd {
        padding: 16px 8px;
    }
    .submit-container button {
        max-width: 240px;
    }
}





#test-info-container {
    margin-top: 32px;
    padding: 24px;
    background-color: #fafafa;
    border: solid 1px #eee;
}
#test-info-container span {
    display: inline-block;
}
.test-info-row{}

.test-info-label {
    text-align: center;
    font-size: 14px; font-size: 1.4rem;
    line-height: 24px; line-height: 2.4rem;
    font-weight: bold;
    margin-bottom: 12px;
}
.test-info-caption {
    font-size: 12px; font-size: 1.2rem;
    line-height: 22px; line-height: 2.2rem;
    text-align: center;
}
.test-info-btn {
    margin: 16px auto;
    max-width: 240px;
}
.test-info-btn a {
    display: block;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    font-size: 16px; font-size: 1.6rem;
    line-height: 26px; line-height: 2.6rem;
    background-color: #c00;
    color: #fff;
    padding: 12px;
}

.alertinfo {
    font-size: 14px; font-size: 1.4rem;
    line-height: 24px; line-height: 2.4rem;
    color: #c00;
    text-align: center;
    text-decoration: underline;
    padding-top: 3px;
}
.alertinfo span {
    text-decoration: underline;
    font-weight: bold;
}

.common-notes {
    font-size: 12px; line-height: 1.2rem;
    line-height: 22px; line-height: 2.2rem;
    padding: 16px 0 0 0;
}
.common-notes li+li {
    margin-top: 8px;
}
.common-notes li br {
    display: none;
}

@media only screen and (min-width:768px)
{
    #test-info-container {
        margin-top: 48px;
        padding: 32px;
    }
    .test-info-label {
        font-size: 18px; font-size: 1.8rem;
        line-height: 28px; line-height: 2.8rem;
        margin-bottom: 12px;
    }
    .test-info-caption {
        font-size: 14px; font-size: 1.4rem;
        line-height: 24px; line-height: 2.4rem;
    }
    .test-info-btn {
        margin: 32px auto;
        max-width: 320px;
    }
    .test-info-btn a {
        font-size: 18px; font-size: 1.8rem;
        line-height: 28px; line-height: 2.8rem;
        padding: 18px;
    }

    .common-notes {
        font-size: 14px; line-height: 1.4rem;
        line-height: 24px; line-height: 2.4rem;
        padding: 12px 0 0 0;
    }
    .common-notes li+li {
        margin-top: 11px;
    }
    .common-notes li {
        text-align: center;
    }
    .common-notes li br {
        display: block;
    }
}

.red {
    color: #c00;
}
.underline {
    text-decoration: underline;
}