/* -------------------------------------------------------------------------
reset */
a {
    color: #292b2a;
}
.link {
    color: #a6171b;
    text-decoration: underline;
    cursor: pointer;
}

img {
    width: 100%;
    
    margin: 0;
    padding: 0;
}

/* -------------------------------------------------------------------------
common */

html {
	background-color: #fff;
    width: 100%;
	height: 100%;
	font-size: 16px;
}
@media screen and (max-width: 980px) {
	html {
        font-size: 0.7rem;
	}
}
body {
	width: 100%;
	height: 100%;
    font-family: sans-serif;
    font-style: normal;
    font-weight: normal;
    text-align: center;
}

#rootWrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.contents {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}
@media screen and (max-width: 980px) {
    .contents {
        width: 90%;
    }
}

#header {
    position: relative;
    width: 100%;
    background-color: #003893;
}
#footer {
    position: relative;
    width: 100%;
    background-color: #e6e7e7;
}
.footer_L,
.footer_R {
    width: auto;
    height: 100%;
}
.footer_L {
    position: absolute;
    top: 0;
    left: 35px;
}
.footer_R {
    position: absolute;
    top: 0;
    right: 24px;
}
.layout {
    opacity: 0;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #003893;
    border-radius: 16px;
    margin-bottom: 44px;
    color: #fff;
    font-size: 1.375rem;
    font-weight: 400;
}



/* -------------------------------------------------------------------------
request */

.title {
    margin: 2rem;
    font-size: 2rem;
    color: #003893;
}

.InputFieldSet {
    width: 560px;
    margin: 0 auto;
    text-align: center;
}
@media screen and (max-width: 980px) {
    .InputFieldSet {
        width: auto;
    }
}
.InputFieldSet li {
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
    text-align: left;
}

.InputFieldSet li p {
    display: inline-block;
}

.InputFieldSet li .note {
    color: #003893;
}

.InputFieldSet li .subTitle {
    width: 10rem;
}

.InputFieldSet li .custom {
    vertical-align: top;
    margin-top: 0.5rem;
}

.InputFieldSet li p:last-child {
    width: calc(100% - 11rem);
}

.InputFieldSet li input,
.InputFieldSet li textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    font-size: 1rem;
}

input[type="submit"]{
    -webkit-appearance: none;
}

.submit {
    display: inline-block;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding: 1rem 3rem;
    background-color: #003893;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    margin-bottom: 44px;
    color: #fff;
    font-size: 1.375rem;
    font-weight: 400;

    position: relative;
    text-decoration: none;
    
    cursor: pointer;
}














