/* --------------------------------------

              example-02

--------------------------------------*/

.example-02__hdg01{
	background:linear-gradient(-90deg, #01B4ED, #0052A5);
	color:#fff;
	font-size:20px;
	font-weight:bold;
	padding:15px;
	border-radius:5px;
}

.example-02__hdg01 span{
	line-height:2em;
	border-left:5px solid #fff;
	padding-left:10px;
	display:block;
}

.example-02__hdg02{
	color:#0052A5;
	font-size:20px;
	font-weight:bold;
	padding:10px 20px;
	background:#E6F8FD;
}

.example-02__hdg03{
	border-left:5px solid #0054A7;
	padding-left:15px;
	font-size:18px;
	font-weight:bold;
}

.example-02__hdg04{
	font-size:16px;
	font-weight:bold;
	color:#0053A6;
}

.example-02__emphasis{
	color:#EA4C00;
	font-size:16px;
	font-weight:bold;
}

.example-02__bgYellow{
	background:#F2EA86;
}

.example-02__list01__item{
	position:relative;
	padding-left:15px;
	font-size:16px;
	font-weight:bold;
	margin-bottom:5px;
}
.example-02__list01__item:before{
	content:"";
	width:10px;
	height:10px;
	background:#0054A7;
	border-radius:50%;
	position:absolute;
	top:5px;
	left:0;
}

.example-02__list02__item{
	position:relative;
	padding-left:15px;
	margin-bottom:5px;
}
.example-02__list02__item:before{
	content:"";
	width:6px;
	height:6px;
	background:#0054A7;
	border-radius:50%;
	position:absolute;
	top:6px;
	left:0;
}

.example-02__box01{
	border:3px solid #0054A7;
	border-radius:7px;
	padding:25px;
}

.example-02__box01__text{
	color:#0054A7;
	text-align:center;
	font-weight:bold;
	font-size:18px;
}

.example-02__box02{
	background:#E6F8FD;
	padding:15px;
}

.example-02__box03{
	border:1px solid #ccc;
	background:#F7F7F7;
	padding:25px;
}

.example-02__dl01{
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.example-02__dl01__dt{
	-webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
	width:6em;
	font-weight:bold;
}

.example-02__dl01__dd{
	-webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}


.example-02__dl02{
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.example-02__dl02__dt{
	-webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
	width:10em;
	font-weight:bold;
}

.example-02__dl02__dd{
	-webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}


.example-02__imageFlex{
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	-webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
	-webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
	-webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.example-02__imageFlex__item{
	-webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
	margin-bottom:40px;
}

.example-02__imageFlex02{
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	-webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
	-webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.example-02__imageFlex02__image{
	-webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
	width:300px;
}
.example-02__imageFlex02__text{
	-webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
	width:calc(100% - 350px);
}


.example-02__imageFlex03{
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	-webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
	-webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.example-02__imageFlex03__item{
	-webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
	width:calc(50% - 20px);
}

.example-02__ico-arrow{
	position:relative;
	padding-left:15px;
}
.example-02__ico-arrow:before{
	content:"";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6.5px 0 6.5px 8px;
	border-color: transparent transparent transparent #0053a5;
	position:absolute;
	left:0;
	top:3px;
}