
#page_title{
	background-image:url(index/title.png);
}

/**/

.block01{
	max-width:100%;
	min-width:1100px;
	margin:0px auto;
	overflow:hidden;
	padding:45px 0px;
}

/**/

.block02{
	max-width:100%;
	min-width:1100px;
	margin:0px auto;
	overflow:hidden;
	background-color:#003166;
	color:#fff;
	padding:45px 0px;
}

/**/

.content{
	width:1100px;
	margin:0px auto;
	overflow:hidden;
}

/**/

.txt01{
	overflow:hidden;
}

.txt01 dt{
	width:500px;
	margin:0px auto;
	overflow:hidden;
	border-bottom:1px solid #003166;
	text-align:center;
	font-size:1.25em;
	color:#003166;
	padding:20px 0px;
	font-weight:bold;
}

.txt01 dd{
	text-align:center;
	line-height:200%;
	margin-top:45px;
}

.txt01 dd p{
	margin-bottom:4em;
	overflow:hidden;
}

.txt01 dd p b{
	color:#8C0000;
}


/**/

.txt02{
	overflow:hidden;
}

.txt02 dt{
	width:500px;
	margin:0px auto;
	overflow:hidden;
	border-bottom:1px solid #ffffff;
	text-align:center;
	font-size:1.25em;
	color:#ffffff;
	padding:20px 0px;
	font-weight:bold;
}

.txt02 dd{
	text-align:center;
	line-height:200%;
	margin-top:45px;
}

.txt02 dd p{
	margin-bottom:2em;
	overflow:hidden;
}


/**/

.txt03{
	width:100%;
	margin-top:50px;
}

.txt03 li{
	list-style-type:none;
	width:50%;
	float:left;
	overflow:hidden;
}

.txt03 li dl{
	width:476px;
	margin:0px auto;
	overflow:hidden;
	border:1px solid #617FA0;
}
 
.txt03 li dl dt{
	overflow:hidden;
	display:block;
	font-size:1.1em;
}

.txt03 li dl dt span{
	display:block;
	padding:20px 30px;
	overflow:hidden;
}

.txt03 li dl dd{
	display:block;
	background-color:#fff;
	color:#333;
	overflow:hidden;
}

.txt03 li dl dd p{
	width:404px;
	margin:40px auto;
	overflow:hidden;
	display:block;
}

/**/

.graph01{
	text-align:center;
	overflow:hidden;
	margin-bottom:80px;
}

/**/

.txt04{
	text-align:center;
	margin:45px auto;
	overflow:hidden;
}

/**/

.table01{
	width:904px;
	margin:45px auto;
	overflow:hidden;
}

.table01 table{
	width:100%;
	border-left:1px solid #AAAAAA;
	border-top:1px solid #AAAAAA;
}

.table01 th{
	width:33%;
	border-right:1px solid #AAAAAA;
	border-bottom:1px solid #AAAAAA;
	background-color:#EEEEEE;
	text-align:center;
	
}

.table01 td{
	border-right:1px solid #AAAAAA;
	border-bottom:1px solid #AAAAAA;
}

.table01 th div{
	padding:1em;
}

.table01 td div{
	padding:1em;
}

/**/

.needs01{
	width: 750px;
	font-size: 120%;
	font-weight: bold;
	padding: 20px;
	margin: 20px auto;
	background-color:#8BCAFD;
	border-radius: 10px;		/* CSS3草案 */
	-webkit-border-radius: 10px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 10px;	/* Firefox用 */
}

.needs01 p{
	margin-left: 1em;
	text-indent: -1em;
}

.needs02{
	width: 750px;
	font-size: 120%;
	font-weight: bold;
	padding: 20px;
	margin: 20px auto;
	background-color:#FFDDAD;
	border-radius: 10px;		/* CSS3草案 */
	-webkit-border-radius: 10px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 10px;	/* Firefox用 */
}

.needs02 p{
	margin-left: 1em;
	text-indent: -1em;
}

.needs03{
	width: 750px;
	font-size: 120%;
	font-weight: bold;
	padding: 20px;
	margin: 20px auto;
	background-color:#CDF4BA;
	border-radius: 10px;		/* CSS3草案 */
	-webkit-border-radius: 10px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 10px;	/* Firefox用 */
}

.needs03 p{
	margin-left: 1em;
	text-indent: -1em;
}
/**/
dd.flow{
	max-width: 900px;
	        margin: 45px auto 0;
}
/**/
dd.flow ol {
  list-style: none;
  counter-reset: num;
	        display: flex;
        flex-direction: column;
        gap: 18px;
	        padding-bottom: 38px;
}

dd.flow ol li {
  counter-increment: num;
  position: relative;
  display: flex;
  gap: 20px;
}
dd.flow ol li:nth-of-type(odd){  --color_li: #00ab7b; --color_dt: #00966c; --color_bg: #e5f6f2;}
dd.flow ol li:nth-of-type(even){ --color_li: #006ab9; --color_dt: #006ab9; --color_bg: #e7f2ff;}


dd.flow ol li::before {
  content: counter(num);
  display: block;
	font-family: "Shippori Mincho", serif;
        font-weight: 700;
        font-size: 4em;
        color: white;
        background-color: var(--color_li);
	        width: 130px;
        box-sizing: border-box;
	        padding-top: 40px;
}
dd.flow ol li::after {
        content: "";
        position: absolute;
        left: 7.3%;
        transform: translateX(-50%);
        top: 100%;
        width: 0;
        height: 0;
        border-left: 65px solid transparent;
        border-right: 65px solid transparent;
        border-top: 38px solid var(--color_li);
        z-index: 1;
}

/**/
dd.flow ol li dl{
background: var(--color_bg);
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: auto;
        padding: 16px 30px;
        gap: 8px;
        min-height: 115px;
        box-sizing: border-box;
}
dd.flow ol li dl dt{
	        all: unset;
        font-weight: 700;
        font-size: 1.71em;
	color: var(--color_dt);
	        text-align: left;
}
dd.flow ol li dl dd{
	        all: unset;
        font-size: 1.14em;
	        text-align: left;
	line-height: 1.5;
}

dd.flow ol li a{
	color: 	#006ab9}

/**/
.dl_link{
        padding-top: 95px;
	margin-bottom: 80px;
}
.dl_link p{
	text-align: center;
	font-weight: 500;
}
.dl_link a{
	max-width: 1000px;
	        display: flex;
	        gap: 32px;
        align-items: center;
	border: 1px solid #617fa0;
	        padding: 14px 25px;
        font-size: 1.14em;
        color: #003167;
        font-weight: 700;
	        margin: 33px auto 0;
	text-decoration: none;

}
.dl_link a span{
	
	text-decoration: underline;
}
.dl_link a::before{
	content: "";
	display: block;
	width: 26px;
	height: 34px;
	background: url("index/icon_xlsx.svg") no-repeat;
}

.dl_link a::after{
	content: "＞";
	display: block;
	font-size: 1.56em;
	color: #003166;
	text-decoration: none;
	margin-left: auto;
}


/**/

/**/

/**/

/**/

/**/

/**/