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: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

* {
    box-sizing: border-box;
    outline: none;
    -webkit-font-smoothing: antialiased;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

*::before,
*::after {
    box-sizing: border-box;
}

.t-form {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin-top: 10px;
}

.t-form__label {
    display: block;
    max-width: 200px;
    width: 100%;
    font-size: 0.8rem;
    font-weight: bold;
    padding-right: 10px;
}

.t-form__label.req::after {
    content: "必須";
    display: inline-block;
    color: #fff;
    font-size: 0.8rem;
    line-height: 1;
    background-color: red;
    border-radius: 3px;
    padding: 5px;
    margin-left: 10px;
}

.t-form__anno {
    display: block;
    font-size: 0.8rem;
}

.t-credit {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(51, 51, 51, 0.8);
}

.t-credit__inner {
    position: absolute;
    top: 146px;
    left: 0;
    right: 0;
    max-width: 740px;
    width: 100%;
    background-color: #fff;
    margin: 2rem auto;
}

.t-credit__cont {
    position: relative;
    padding: 40px 40px;
}

.t-credit__close {
    position: absolute;
    bottom: 100%;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 3rem;
    background-color: #6091a1;
    cursor: pointer;
}

.t-credit__intro {
    margin-bottom: 10px;
}

.t-credit__intro p {
    font-size: 1.0rem;
}

.t-credit__intro img {
    display: block;
    max-width: 320px;
    margin: 3px 0 0 5px;
    width: 100%;
}

.t-credit__btn {
    margin: 2rem auto 0 auto;
    color: #fff;
    background-color: red;
    border-radius: 6px;
    border: 1px solid #FF1428;
    width: 300px;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: center;
    padding: 0;
    text-align: center;
}

.t-credit__btn input {
    display: block;
    padding: 13px 0;
    background: red;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 4% 40%;
    margin: 0;
}

.t-form__area--col .t-form__input-secnum {
    width: 100%;
}

.t-form__area--col {
    display: flex;
}

.t-form__area--col>* {
    width: calc((100% - 20px) / 2);
}

.t-form__area--col>*:first-child {
    margin-right: 20px;
}

.t-form__err {
    width: 100%;
    color: #ce0000;
}