@charset "UTF-8";
/* CSS Document */

/* Reset
----------------------------------------------------*/

html {
	overflow-y: scroll;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
/*	margin: 0;
	padding: 0; */
	box-sizing: border-box;
}

body {
	padding:8px 0 0 8px;
}

address,caption,cite,code,dfn,em,strong,th,var {
	font-style: normal;
}
table,th,td {
	font-size: 100%;
	line-height: 1.5em;
}
caption,th {
	text-align: left;
	font-weight: normal;
}
object,
embed {
	vertical-align: top;
}
hr,legend {
	display: none;
}
h1,h2,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
}
img,abbr,acronym,fieldset {
	border: 0;
}
img,a img{
	border:none;
	background:transparent;
	vertical-align:bottom;
}

.clear {
	clear: both;
}


/*----------------------------------------------------*/

body{
	font-family:-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI","Noto Sans Japanese","ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
}

#rightmenu{
	width:100px;
	float:right;
	position:-webkit-sticky;
	position:sticky;
	top:10px;
}

#maincontents {
	width:700px;
}

#maincontents h1 {
	width:100%;
	margin:100px 0 20px;
	padding:5px 10px;
	background:#ffdb02;
	border-bottom:3px solid #0f246d;
	font-size:1.2em;
	color:#222;
	font-weight:bold;
	text-align:center;
}

#maincontents h2 {
	border-bottom:2px dashed #333333;
	margin:50px 0 20px;
	padding: 0 0 5px 10px;
	font-size:1.2em;
	font-weight:bold;
}

#maincontents h3 {
	margin:50px 0 20px 10px;
	padding: 0 0 0 10px;
	font-size:1.2em;
	color:#0f246d;
}

.funcnum {
	display:inline-block;
	width:35px;
	margin-right:15px;
	padding:5px 10px;
	font-size:1.5em;
	background: #0f246d;
	color: white;
	font-weight: bold;
	text-align: center;
}

#maincontents h4 {
	margin:50px 30px 20px 10px;
	padding: 0 0 0 10px;
	border-top:2px solid #c7dcef;
	border-bottom:2px solid #c7dcef;
	font-weight:normal;
}


#maincontents p {
	margin:10px;
	font-size:0.9em;
	line-height:150%;
}

#maincontents ul,
#maincontents ol {
	margin:20px 0 20px 30px;
	font-size:0.9em;
	line-height:180%;
}

#maincontents .imgbox {
	text-align:center;
	margin: 30px auto 50px;
}


.newicon {
	background: #df002c;
	padding: 1px 5px;
	margin-left: 5px;
	vertical-align: middle;
	font-size: 0.6em;
	font-weight: bold;
	color: #fff;
	border-radius: 3px;
}


/* 機能詳細ボタン */
.startbtn {
	width:400px;
	margin:50px auto;
}
.btn-flat {
	position: relative;
	display: inline-block;
	width:400px;
	text-align:center;
	border-radius:10px;
	font-weight: bold;
	font-size:1.5em;
	padding: 0.5em;
	text-decoration: none;
	color: #FFF;
	background: #db164a;
	transition: .4s;
}

.btn-flat:hover {
	background: #f03e6f;
}

/* 機能詳細ページリスト */

.funclist {
	padding:10px 0 10px 20px;
	background:#efefef;
}

.func01,
.func02,
.func03 {
	list-style: none;
	padding: 0;
}

.func01 {
	counter-reset: list01;
}

.func02 {
	counter-reset: list02 7;
}

.func03 {
	counter-reset: list03 12;
}

.func01 li,
.func02 li,
.func03 li {
	margin-bottom: 15px;
	padding-left: 30px;
	position: relative;
}

.func01 li:before {
	content: counter(list01);
	counter-increment: list01;
}

.func02 li:before {
	content: counter(list02);
	counter-increment: list02;
}

.func03 li:before {
	content: counter(list03);
	counter-increment: list03;
}

.func01 li:before,
.func02 li:before,
.func03 li:before {
	background-color: #0f246d;
	color: #fff;
	display: block;
	float: left;
	line-height: 22px;
	margin-left: -30px;
	margin-right:10px;
	padding-top:3px;
	text-align: center;
	height: 27px;
	width: 30px;
}







/* 機能説明項目メニュー */
.funcmenu {
	width:30%;
	display:inline-block;
	margin:5px;
	padding:5px;
	border:1px solid #333;
	border-radius: 3px;
	font-size:0.8em;
	text-align:center;
	background:#f0f8ff;
	vertical-align:middle;
}

.funcmenu a {
	display:block;
	width:100%;
	color:#000;
}


/* 表 */

.env {
	border-collapse: collapse;
	margin: 0 auto;
}

.env td {
	font-size:0.8em;
	padding:5px;
}

.envli {
	list-style:none;
}

.envli :before {
	content:"※ ";
}


