@charset "UTF-8";

#wrap {
	overflow: hidden;
}

/*--------- .main_image ---------*/
.main_image {
	position: relative;
	height: calc(100vh - 100px);
	padding: 0;
	overflow: hidden;
}

@media screen and (min-width:1530px) {
	.main_image #slide_area {
		width: 94%;
			border-radius: 30px;
			overflow: hidden;
			height: 94%;
	}	
}


.slider {
	position: relative;
	width:100%;
	margin:0 auto;
	background-color: #FFF;

}

.slider img {
	width: auto;
	height: calc(100vh - 100px);/*スライダー内の画像を60vwにしてレスポンシブ化*/
	/* height:auto; */
}

.slider .slick-slide {
transform: scale(1);
transition: all .5s;
opacity: 0.5;
border-radius: 0;
overflow: hidden;
}

/*---- 中央 ----*/
.slider .slick-slide.slick-center{
transform: scale(1);
opacity: 1;
background-color: transparent;
}

/*--- テキストエリア ----*/
.slider .text_area {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 10%;
	padding: 20px 0 0 10%;
	color: #FFF;
	letter-spacing: 1px;
	font-feature-settings: "palt";
	/* background: rgba(0,0,0,.7); */
 /* background-image: radial-gradient(circle, rgba(0,0,0,.7) 1px, transparent 1px); */
	background-position: 0 0;
	background-size: 10px 10px;
}

.slider .text_area h3{
	margin: 80px 0 10px;
	font-size: 4rem;

}

/*-- 出願 --*/
.ExamEntry .text_area .entry,
.ExamEntry .text_area .test {
	color: #000;
	font-size: 2rem;
	font-weight: bold;
	-webkit-text-stroke: 8px #FFF;
	paint-order: stroke;
}


.ExamEntry .text_area h3{
	color: #000;
	-webkit-text-stroke: 10px #FFF;
	paint-order: stroke;
}

.ExamEntry .text_area .btn01 {
	margin-top: 5px;
}

.ExamEntry .text_area .btn01 a {
	position: relative;
	text-decoration: none;
	display: inline-block;
	min-width: 40%;
	background: #FFF;
	color: #333;
	padding: 10px 40px 10px 30px;
	border-radius: 0;
	text-align: left;
	line-height: 1.5em;
	outline: none;
	/*アニメーションの指定*/
	transition: ease .2s;
	}
	
	.ExamEntry .text_area .btn01 a:hover {
		color: #FFF;
		background: #000;
	}
		
	.ExamEntry .text_area .btn01 a::after {
		position: absolute;
		content: '';
		top: 42%;
		right: 13px;
		width: 5px;
		height: 5px;
		border-top: 2px solid #333;
		border-right: 2px solid #333;
		transform: rotate(45deg);
		transition: all .3s;
	}
	
	.btn01 a:hover::after {
		right: 11px;
		border-top: 2px solid #FFF;
		border-right: 2px solid #FFF;
	}

	.CW_IMG a,
	.NS_IMG a {
		position: absolute;
		display: block;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}
	
	/*--- 医療介護福祉学科 ---*/

.CW_IMG	.text_area h3{
	position: absolute;
	display: inline-block;
	width: 600px;
	left: 10%;
	bottom: 80px;
	padding: 50px 30px 50px 2rem;
	margin: 80px 0 10px;
	font-size: 3.5rem;
	text-align: center;
	background: rgba(229, 99, 21, .8);
}

.CW_IMG	.text_area h3 span{
	display: block;
	font-size: 1.5rem;
}

		/*--- 看護学科 ---*/
.NS_IMG	.text_area h3{
	position: absolute;
	display: inline-block;
	left: 10%;
	bottom: 80px;
	width: 600px;
	padding: 50px 30px 50px 2rem;
	margin: 80px 0 10px;
	font-size: 3.5rem;
	text-align: center;
	background: rgba(237, 58, 142, .8);
}

.NS_IMG	.text_area h3 span{
	display: block;
	font-size: 1.5rem;
}

/* 動画 */
.MOVIE {
	width: 100vw;
	height: 100%;
	background-color: #FFF;
}
.youtube-wrap {
	position: relative;
	width: 100vw;
	height: 100%;
	overflow: hidden;
}

.youtube-thumb{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 2;
	transition: opacity 0.3s;
}

.MOVIE img{
	height: 105vh;
	aspect-ratio: 16 / 9;
	object-fit: cover; /* 画面いっぱいに拡大 */
}

.MOVIE iframe{
	position: relative;
	height: 100vh;
	aspect-ratio: 16 / 9;
	object-fit: cover; /* 画面いっぱいに拡大 */
	pointer-events: none;
	z-index: 1;
	}

	.MOVIE .link_btn{
  position: absolute;
		display: block;
  top: 40%;
  left: 50%;
		width: 130px;
		height: 130px;
		padding: 5px;
		background: transparent;
		border: 0;
  transform: translate(-50%,-50%);
		z-index: 10;
}

.MOVIE .link_btn img {
	width: 100%;
	height: 100%;
}
.modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,.85);
}

.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	max-width: 800px;
	transform: translate(-50%, -50%);
	background: #000;
}

#modalVideo {
	width: 100%;
	height: 50vh;
	object-fit: cover;
}

.close {
	position: absolute;
	top: -40px;
	right: 0;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}

/*------ 矢印の設定 ------*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
	position: absolute;
	height: 50px;
	width: 50px;
	top: 40%;
	border-top: 5px solid #fff;
	border-right: 5px solid #fff;
	outline: none;
	cursor: pointer;
	z-index: 30;
	transition: .5s all;
}

.slick-prev:hover, 
.slick-next:hover {
	border-top: 5px solid #459a6a;
	border-right: 5px solid #459a6a;
	background-color: transparent;
}

.slick-prev::before, 
.slick-next::before {
	position: relative;
	display: none;
	width: 50px;
	height: 50px;
	background-color: #555;
	border-radius: 50%;
	content: "";
}

.slick-prev {/*戻る矢印の位置と形状*/
	left: 30px;
	transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
	right: 30px;
	transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
	position: absolute;
	display: inline-block;
	width: auto;
	bottom: 10px;
	left: 50px;
	margin: 0;
	/* transform: translateX(-50%); */
	z-index: 1;
}

.slick-dots li {
	display:inline-block;
margin:0 5px;
}

.slick-dots button {
	color: transparent;
	outline: none;
	width:8px;
	height:8px;
	display:block;
	border-radius:50%;
	background:#ccc;
}

.slick-dots li button::before{
	color: #FFF;
}
/* 現在の色 */
.slick-dots .slick-active button{
	background-color: #FFF;
}
.slick-dots li.slick-active button::before {
	color: #FFF;
}

@media screen and (min-width:1530px) {
	.slick-dots button {
		background:#555;
	}
	
	.slick-dots li button::before{
		color: #555;
	}
	/* 現在の色 */
	.slick-dots .slick-active button{
		background-color: #555;
	}
	.slick-dots li.slick-active button::before {
		color: #555;
	}
}

/*------ 新着情報 ------*/
.main_image #NEWS {
	position: absolute;
	display: inline-block;
	max-width: 50%;
	bottom: 0;
	right: 0;
	padding: 8px 20px 10px 30px;
	background-color: #f7f7f5;
	z-index: 1;
}

.newspics a {
	display: inline-block;
	padding: 5px 0;
	color: #333;
	text-underline-offset: 3px;
	text-decoration: none;
	background: transparent;
	transition: .5s all;
}

.newspics a:hover {
	text-decoration: underline;
}


/*--- 日付 ---*/
.newspics .lead {
	display: inline-block;
	margin-right: 10px;
	color: #333;
	/* color: #e1f2f8; */
	font-size: .8rem;
	letter-spacing: 1px;
	font-feature-settings: "palt";
}

@media screen and (min-width:1500px) {
	.newspics a {
		color: #333;
	}
	.newspics .lead {
		color: #333;
	}
}

@media screen and (max-width:1529px) {
	.main_image #NEWS {
		background-color: #042749;
	}
	
	.newspics .lead,
	.newspics a {
		color: #e1f2f8;
	}
}


/*-- 768px以下の見た目 --*/
@media screen and (max-width:768px) {
	.newspics {
			padding: 20px;
			background: transparent;
	}

	.newspics li {
			border-bottom: 1px dashed #ccc;
	}

	.newspics li:last-child {
			border-bottom: none;
	}

	.newspics span {
			display: block;
			padding-bottom: 10px;
	}
}


/*------ .content ------*/
.content {
	position: relative;
	width: 100%;
	background-color: transparent;
}

section {
	width: 100%;
}

.article {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
}

/*----------- #area1 -----------*/
#area1 {
	padding: 50px 0;
	background-color: #042749;
	background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.01) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.01) 50%, rgba(255, 255, 255, 0.01) 75%, transparent 75%, transparent);
 /* background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.1), rgba(255,255,255,.1) 5px, transparent 5px, transparent 10px);  */
	background-size: 1rem 1rem;
}

/*--- #EXAM ---*/
#EXAM {
	background-color: transparent;
}

.ExamLink {
	width: 1000px;
	margin: 0 auto 20px;
}

.ExamLink ul {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.ExamLink ul li {
	width: 33.3%;
	width: calc(100% / 3);
	padding: 0;
}

.ExamLink ul li a {
	display: block;
	width: 100%;
	padding: 40px 16px;
	text-align: center;
	background: #000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
	font-size: 18px;
	color: #fff;
	text-decoration: none;
	line-height: 1em;
}

/*--- 要項 ---*/
.ExamLink ul li.Youkou a {
	background-color: #60a918;
}

/*--- ガイダンス ---*/
.ExamLink ul li.Guidance a {
	background-color: #1148b0;
}

/*--- エントリー ---*/
.ExamLink ul li.Entry a {
	background-color: #279ef5;
	letter-spacing: 0;
}

/*-- アイコン画像 --*/
.ExamLink ul li a img {
	margin-right: 5px;
}

/*-- .stay --*/
.ExamLink ul li.stays {
	position: relative;
	padding: 40px 16px;
	text-align: center;
	background: #4e6b6e;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
	font-size: 18px;
	color: #fff;
	line-height: 1em;
	border-right: 1px #85a4a7 solid;
}

.ExamLink ul li.stays span {
	position: absolute;
	width: 100%;
	bottom: 15px;
	left: 0;
	font-size: .7em;
	text-align: center;
}

/*--- #EVENT ---*/
#EVENT {
	display: flex;
	flex-wrap: wrap;
	padding: 20px 10px;
}

#EVENT div {
	width: 25%;
	width: calc(100% / 4);
	padding: 10px 5px;
}

#EVENT div a{
	position: relative;
	display: block;
	border-radius: 20px;
	background-color: #fff;
	overflow: hidden;
}

#EVENT div a img {
	width: 100%;
}


/*----- #newstopics -----*/
#newstopics {
	position: relative;
	width: 1000px;
	margin: 0 auto;
	/* background: rgba(0,0,0,.3); */
	padding: 30px 0;
}

#newstopics h3{
	margin: 10px 0 20px;
	padding: 0 0 0 17px;
	color: #fff;
	font-size: 1.3rem;
	line-height: 1em;
	letter-spacing: .5em;
	border-left: 10px #fff solid;
}

#newstopics .tab_area {
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
}

#newstopics .tab_area li{
  width: auto;
  padding: 6px 24px;
  margin: 0 5px 0 0;
		background: rgba(255,255,255,.8);
  border-radius: 10px 10px 0 0;
		cursor: pointer;
	}
	
	#newstopics .tab_area li.select {
		background: #fff;
	}

/*----- お知らせ一覧 -----*/
	#newstopics .newsLink {
		position: absolute;
  top: 80px;
  right: 0;
	}

	#newstopics .newsLink a {
		display: block;
  padding: 6px 25px 8px;
  color: #042749;
  line-height: 1em;
  text-decoration: none;
  border-radius: 15px;
  background: #FFF;
		transition: .5s all;
	}

	#newstopics .newsLink a:hover {
		color: #1148b0;
	}

	#newstopics .ListBox{
		height: 320px;
		background: #fff;
  padding: 20px;
  border-radius: 0 5px 5px 5px;
	}

	#newstopics .ListBox .content_area {
		height: 100%;
		margin: auto 0 0 0;
		scrollbar-color: #90a5b9 #e0e0e0;
  scrollbar-width: thin;
		overflow: auto;
	}
	
	.hide{display:none;}
	
	#newstopics .ListBox dl{
		padding: 8px 20px 8px 10px;
		font-feature-settings: "palt";
	}
	#newstopics .ListBox .date.lead{
		position: relative;
		display: inline-block;
		color: #555;
	}

	#newstopics .ListBox .content_area#New .date.lead::after{
		display: inline-block;
  margin: 0 8px;
  padding: 3px 9px 4px;
  color: #555;
  font-size: .8em;
  line-height: 1em;
  background: #efefef;
  border-radius: 3px;
	}		

	#newstopics .ListBox .content_area#New .pin .date.lead::after{		content: "重要なお知らせ";		background-color: #e7e1b7;		}
	#newstopics .ListBox .content_area#New .notice .date.lead::after{		content: "お知らせ";		background-color: #e1f6dd;	}
	#newstopics .ListBox .content_area#New .exam .date.lead::after{		content: "入試情報";		background-color: #f9e5f3;		}
	#newstopics .ListBox .content_area#New .event .date.lead::after{		content: "イベント";		background-color: #e7e1b7;		}
	
	#newstopics .date.lead.new::before{
		position: absolute;
  display: inline-block;
  width: 100px;
		left: 90px;
  top: .7em;
  color: #e31313;
  font-size: .8em;
  line-height: 1em;
  content: "［NEW］";
	}

	#newstopics .ListBox .content_area#New .date.lead.new::before{
  left: 162px;
	}

	.content_area dl dd,
	.content_area dl dd a,
	#pin dl dd a{
		color: #333;
		font-size: 16px;
		letter-spacing: 1px;
		text-decoration: none;
		transition: .5s all;
}

.content_area dl dd a:hover{
	color: #045fd3;
	text-decoration: underline;
}

#pin{
  margin: 8px 0;
  padding: 16px;
  background: #fcf8e9;
}

#area1 #MOVIE {
	width: 1000px;
	padding: 30px 0 10px;
}

#area1 #MOVIE h3 {
	width: 100%;
	color: #FFF;
	margin: 0;
	font-size: 2rem;
	text-align: center;
	letter-spacing: 2px;
	border: 0;
}

#area1 iframe{
	width: 82%;
	aspect-ratio: 16 / 9;
	height: auto;
	margin: 30px 10% 10px;
}


/*----------- #area2 -----------*/
#area2 {
	padding: 0 0 50px;
	background-color: #f5f3ef;
	background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.1), rgba(255,255,255,.1) 5px, transparent 5px, transparent 10px);
}


#TARGET {
	padding: 20px 0 0;
	/* background: #fae0eb; */
	background-color: #042749;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.01) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.01) 50%, rgba(255, 255, 255, 0.01) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}
#TARGET h3 {
	width: 100%;
	color: #FFF;
	font-size: 2rem;
	text-align: center;
}
.Target_LINK {
	display: flex;
	flex-wrap: wrap;
	width: 1000px;
	margin: 20px auto 0;
	border-bottom: 2px #000 solid;
}

.Target_LINK li {
	position: relative;
	width: 40%;
	margin: 0 5%;
	padding: 20px 0;
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
	border: 2px #000 solid;
	border-bottom: 0;
	border-radius: 20px 20px 0 0;
	}
	
	.Target_LINK li.select {
		background-color: #f6f4f0;
}

.Target_LINK li.select::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 2px;
	bottom: -2px;
	background-color: #f6f4f0;
	content: "";
}

.target_point {
	background: #f6f4f0;
}

.content_areas {
	width: 100%;
	height: 300px;
	padding-top: 50px;
}

.content_areas ul{
	display: flex;
	width: 1200px;
	margin: 0 auto;
}
.content_areas ul li{
	width: 400px;
	padding: 5px;
}

.content_areas ul li a img{
	width: 100%;
}

#GAKKA {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 1200px;
	margin: 0 auto;
	padding: 50px 0 100px;
}

#GAKKA::after {
	position: absolute;
	display: block;
	width: 100vw;
	height: 50%;
	bottom: 0;
	left: 50%;
	/* background-color: #FFF; */
	transform: translateX(-50%);
	content: "";
	z-index: 0;
	border-bottom: 1px #128068 solid;
}

#GAKKA h3{
	width: 100%;
	font-size: 2.4rem;
	text-align: center;
}

/* Departments */
#GAKKA h3 span:nth-of-type(1){
	display: block;
	text-align: center;
	color: #402f24;
	font-size: 1rem;
	letter-spacing: .2em;
}
/* なりたい */
#GAKKA h3 span:nth-of-type(2){
	display: inline-block;
	margin-right: 5px;
	color: #f35b00;
	font-size: 2.2rem;
}


#GAKKA .catch{
	width: 100%;
	margin-bottom: 10px;
	text-align: center;
}

#GAKKA #NS,
#GAKKA #CW{
	position: relative;
	display: block;
	width: 50%;
	height: 600px;
	padding: 16px;
	z-index: 1;
}

#GAKKA #NS a,
#GAKKA #CW a {
	position: absolute;
	display: block;
	width: calc(100% - 32px);
	height: calc(100% - 32px);
	left: 16px;
	top: 16px;
	padding: 380px 35px 0 0;
	color: #888;
	font-size: 14px;
	text-decoration: none;
	z-index: 0;
	text-align: right;
	transition: .5s all;
}

#GAKKA #NS a:hover,
#GAKKA #CW a:hover {
	opacity: .8;
}



#GAKKA #NS .gakka_ns,
#GAKKA #CW .gakka_cw{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

#GAKKA #NS div.oshi,
#GAKKA #CW div.oshi{
	width: 100%;
	height: 100%;
	/* border: 1px #719bc4 solid; */
	background: transparent;
	/* border-radius: 29px; */
}

#GAKKA #NS div.oshi .image,
#GAKKA #CW div.oshi .image{
	height: 360px;
	overflow: hidden;
	border-radius: 30px;
	/* border: 2px #ea893a solid; */
	/* box-shadow: 5px 5px 5px rgba(0,0,0,.2); */
}

#GAKKA #NS div.oshi .image img,
#GAKKA #CW div.oshi .image img{
	width: 100%;
}

/*------------------------------------
  pie chart
------------------------------------*/
@media screen and (min-width: 751px) {
	.chart {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-pack: center;
							-ms-flex-pack: center;
											justify-content: center;
			-webkit-box-align: center;
							-ms-flex-align: center;
											align-items: center;
	}
}

.box {
	position: relative;
	min-width: 150px;
	width: 33.3333333333%;
	height: 150px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
					-ms-flex-pack: center;
									justify-content: center;
	-webkit-box-align: center;
					-ms-flex-align: center;
									align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
					-ms-flex-direction: column;
									flex-direction: column;
	background: transparent;
}
@media screen and (max-width: 750px) {
	.box {
			width: 100%;
	}
}
@media screen and (min-width: 751px) {
	.box + .box {
			margin-left: 20px;
	}
}
@media screen and (max-width: 750px) {
	.box + .box {
			margin-top: 20px;
	}
}
.box .percent {
	position: relative;
	width: 140px;
	height: 140px;
}
.box .percent svg {
	position: relative;
	width: 140px;
	height: 140px;
	-webkit-transform: rotate(-90deg);
									transform: rotate(-90deg);
}
.box .percent svg circle {
	position: relative;
	fill: none;
	stroke-width: 6;
	stroke: #f3f3f3;
	stroke-dasharray: 440;
	stroke-dashoffset: 0;
	stroke-linecap: round;
}
.box .percent .number {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
					-ms-flex-align: center;
									align-items: center;
	-webkit-box-pack: center;
					-ms-flex-pack: center;
									justify-content: center;
	color: #111;
}
.box .percent .number .title {
	color: #333;
	/* padding-top: 20px; */
	font-size: 55px;
}
.box .percent .number .title:after {
	font-size: 18px;
	content: "%";
}

.box .text {
	padding: 10px 0 0;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	width: 100%;
	display: block;
	position: absolute;
	bottom: -25px;
}

/*------ 円グラフのタイトル ------*/
.Start_conunter .box.blue .text {	color: #555;}
.Start_conunter .box.red .text {	color: #555;}
.Start_conunter .box.green .text {	color: #555;}

.Start_conunter .box.red .text:nth-of-type(2){
	top: 60%;
	font-weight: normal;
	color: #555;
	font-size: 11px;
}

.box .percent .line {opacity: 0;}

.Start_conunter .box .percent .line {
	-webkit-animation: circleAnim 1s forwards;
	animation: circleAnim 1s forwards;
	opacity: 1;
}

/*------ 円グラフの色 ------*/
/* 看護学科 */
#NS .Start_conunter .box.blue .percent .line {	stroke: #2196F3;}
#NS .Start_conunter .box.red .percent .line {	stroke: #2196F3;}
#NS .Start_conunter .box.green .percent .line {	stroke: #2196F3;}

/* 医療介護福祉学科 */
#CW .Start_conunter .box.blue .percent .line {	stroke: #FF9800;}
#CW .Start_conunter .box.red .percent .line {	stroke: #FF9800;}
#CW .Start_conunter .box.green .percent .line {	stroke: #FF9800;}



/*------ 円グラフの%の長さ調整 ------*/
/* 看護学科 */
#NS .Start_conunter .box.blue .percent .line {	stroke-dashoffset: 5;}
#NS .Start_conunter .box.red .percent .line {	stroke-dashoffset: 60;}
#NS .Start_conunter .box.green .percent .line {	stroke-dashoffset: 63;}

/* 医療介護福祉学科 */
#CW .Start_conunter .box.blue .percent .line {	stroke-dashoffset: 5;}
#CW .Start_conunter .box.red .percent .line {	stroke-dashoffset: 5;}
#CW .Start_conunter .box.green .percent .line {	stroke-dashoffset: 63;}


@-webkit-keyframes circleAnim {
	0% {
			stroke-dasharray: 0 440;
	}
	99.9%, to {
			stroke-dasharray: 440 440;
	}
}

@keyframes circleAnim {
	0% {
			stroke-dasharray: 0 440;
	}
	99.9%, to {
			stroke-dasharray: 440 440;
	}
}


.Three-year_programme{
	display: inline-block;
	margin: 0 0 0 5px;
	padding: 4px 11px;
	color: #fff;
	font-size: 15px;
	line-height: 1em;
	background: #555;
	border-radius: 5px;
}

.point {
	position: relative;
	padding: 5px 20px;
	z-index: 1;
}
.point p{
	font-size: 14px;
	font-feature-settings: "palt";
}

.point h4{
		margin: 5px 0;
	color: #555;
	font-size: 1.7rem;
}

.point h5{
	margin: 5px 0;
	color: #215e99;
}

.point ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
}

.point ul li{
	margin: 0 3px 3px 0;
	color: #FFF;
	font-size: .8em;
	padding: 3px 10px 4px;
	border-radius: 2px;
	background-color: #215e99;
}

#LINKS {
	width: 1200px;
	padding: 20px;
}

#LINKS ul{
display: flex;
flex-wrap: wrap;
}

#LINKS ul li {
	width: 33.3%;
	width: calc(100% / 3);
	padding: 5px;
}

#LINKS ul li a{
	display: block;
	box-shadow: 0 0 5px rgba(0, 0, 0, .2);
	background-color: #FFF;
	transition: .5s all;
}

#LINKS ul li a:hover{
	opacity: .7;
}

#LINKS ul li a img{
	width: 100%;
}

.About {
	display: flex;
	margin: 30px 0;
}

.About p{
	width: 33.3%;
	width: calc(100% / 3);
	padding: 5px;
}

.About p a{
	display: block;
	width: 100%;
	padding: 16px 8px;
	background: #FFF;
	border: 1px #07913a solid;
}

.About p a img {
	width: 42px;
	margin: 0 3px 0 10px;
}

.About p a span {
	display: inline-block;
	padding: 3px 0 0 15px;
	color: #07913a;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
}

