@charset "utf-8";

/*FONT SIZE----------*/
html{
    font-size: 62.5%;
}
body{
    font-size:1.4rem;/* 14px*/
    line-height: 2;
}



/*COMMON------------------------------------*/
/*------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	height: 100%;
    line-height: 1.5;
}

body {
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "SimSun","sans-serif";
}
header,main,footer {
	margin: 0 auto;
}

ul li {
	list-style: none;
}





/*HEADER------------------------------------*/
/*------------------------------------------*/
header {
	border-bottom: 2px solid #f4f4f4;
	width: 100%;
}
header h1 {
    padding-top: 10px;
    padding-left: 34px;
}
header h1 img {
	width: 100%;
    max-width: 140px;
}


/*MAIN--------------------------------------*/
/*------------------------------------------*/
main {
	padding-bottom: 5rem;
}

section {
	margin: 50px auto;
	width: 100%;
	max-width: 1000px;
}


/*------------------------------------------*/
/*INDEX-------------------------------------*/
/*------------------------------------------*/
#terms {
	margin: 0 20px 2rem;
	max-height: 500px;
	overflow-y: scroll;
	border: solid 1px #ccc;
}

#terms h2 {
    color: #000;
    font-size: 22px;
	font-weight: normal;
    padding: 8px 20px;
    margin-bottom: 24px;
	background-color: #ddd;
    background-image:
	 repeating-linear-gradient(45deg,#eee, #eee 2px,transparent 0, transparent 4px);
}
#terms h2 span{
	font-size: smaller;
	margin-right:2rem;
}

	@media screen and (max-width: 767px) {
		#terms > h2 > span.ch::before {
			content: "\A" ;
			white-space: pre ;
		}
	}

#terms p {
	margin: 0 20px 5rem 20px ;
}

#terms ol {
	padding:0 20px 0 40px;
	margin-bottom: 5rem;
}
#terms ol li {
	margin-bottom: 2rem;
}

#terms > p > span::before,
#terms > ol > li > span::before {
	content: "\A" ;
	white-space: pre ;
}

#terms .ja {color:#004098;}
#terms .ch {color:#969696;}





/*AGREE BOTTON*/
#agree {
	background-color: ;
	color: #004098;
	border: 1px solid #004098;
    padding: 12px;
    text-align: center;
    font-size: 16px;
    width: 90%;
    max-width: 270px;
    cursor: pointer;
}
#agree:hover {
    background-color: #1e66ca;
	color: #ffffff;
    transition: all 0.2s;
}




/*------------------------------------------*/
/*SEARCH------------------------------------*/
/*------------------------------------------*/

/*FORM STYLE--------------------------------*/
form {
}
div.inputArea {
	padding: 0 20px;
	margin: 0 auto 50px;
}
div.inputArea > div {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	border-bottom: dotted 1px #CCC;
	padding: 20px 0;
	
}
div.inputArea > div > div {
	width: 100%;
}
div.inputArea > div > div:first-of-type {
	font-weight: bold;
}

@media screen and (min-width: 1000px) {
	div.inputArea > div > div:first-of-type {
		max-width: 300px;
	}
	div.inputArea > div > div:last-of-type {
		max-width: 650px;
	}
}

span.required {
    background: #ff2626;
    color: #fff;
    font-weight: normal;
    padding: 1px 8px;
    font-size: 10px;
    border-radius: 4px;
    margin: 2px 0 5px 1rem;
	display: inline-block;
}

input[type="text"],select {
	display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	width: 100%;
}





.btnArea {
    text-align: center;
    margin-bottom: 100px;
	padding: 0 20px;
}


/*SEARCH BOTTON*/
#searchCont {
	display:flex;
	justify-content:space-between;
}
input#search {
	background-color: #004098;
	color: #ffffff;
	border: 1px solid #004098;
    padding: 12px;
    text-align: center;
    font-size: 16px;
    width: 90%;
    max-width: 270px;
	cursor: pointer;
}
input#search:hover {
    background-color: #1e66ca;
    transition: all 0.2s;
}

.note {
	color: #ff0000;
}




/*SEARCH RESULT*/
.btnArea #resultCont {
	width: 100%;
	border: solid 1px #004098;
	padding: 20px;
}


/*DOWNLOAD BOTTON*/
input#licence {
	background-color: ;
	color: #004098;
	border: 1px solid #004098;
    padding: 12px;
    text-align: center;
    font-size: 16px;
    width: 90%;
    max-width: 270px;
	opacity: 0.3;
}

input#licence.active {
    cursor: pointer;
	opacity: 1;
}
input#licence.active:hover {
    background-color: #1e66ca;
	color: #ffffff;
    transition: all 0.2s;
}

/*  アラート */
.alert-message {
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform : translate(-50%,-50%);
	transform : translate(-50%,-50%);
	width: 400px;	
	margin: 0 auto;
	z-index: 100;
	border: 1px solid #424242;
	background: #ffffff;
}
.alert-message h3 {
	background: #004098 !important;
	padding: 0.5rem 1rem;
	text-align: center;
}
.alert-message > div {
	padding: 3rem 1rem;
	text-align: center;
}

/* アラート背景 */
#dialog_overlay {
	width: 100%;
    height: 100%;
    background: #000000;
    opacity: .3;
    z-index: 99;
    top: 0;
    left: 0;
    position: fixed;
}

/*メッセージ通知*/
div#regist_alert,
div#regist_danger {
	padding: 2rem;
	font-size: 1.2rem;
	margin: 0 0 5rem 0;
}
div#regist_alert {
	color: #bb992f;
    background: #fff8e5;
    border: solid 1px #fce6c0;
}
div#regist_danger {
	background: #fbe7eb;
	color: #ff0000;
	border: solid 1px #f9c2d1;
}
div#regist_info {
	background: #d9edf7;
	color: #31708f;
	border: solid 1px #bce8f1;
	padding: 2rem;
	font-size: 1.2rem;
	margin: 0 0 5rem 0;
}

/* エラー表示 */
input.error_alert {
	background: #fff8e5;
	border: solid 1px #ffb400;
}
select.error_alert {
	border: solid 1px #ffb400;
}

/* セレクトボタン無効化 */
.disabled {
	background-color: #E8F0FE !important;
	pointer-events: none !important;
}

/* readonly */
input[readonly] {
	background-color: #E8F0FE !important;
}