* {
  margin: 0;
  padding: 0;
  overflow-x: hidden;

/*  box-sizing: border-box;*/
}



html {
  visibility: hidden;
  height: 100%;
}
html.wf-active {
  visibility: visible;
}

/*iOSのTELの下線を消去*/
.tel-number a {
	color: black;
	text-decoration: none;
}




body {
	margin: 0!important;
	padding: 0;
	font-family: "dnp-shuei-gothic-gin-std", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-feature-settings: 'palt';
	font-size: 12px;
	letter-spacing: .14em;
	line-height: 2em;
}
/*

.top_body {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
background: #E5E0D9;
  position: relative;
overflow: hidden;
  color: #234E2F;
}

.top_body a:link {
  color: #234E2F;
}

.top_body img {
	width: 100vw;
	position: absolute;
	bottom: 0;
	left: 0;
	top: 40px;
}
*/


h1 {
	font-family: "yuji-syuku", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-feature-settings: 'palt';
	font-size: 2em;
	letter-spacing: 0px;
	line-height: 2.2em;
}
h2 {
	font-family: "fot-tsukubrdgothic-std", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-feature-settings: 'palt';
	font-size: 1.4em;
	letter-spacing: .14em;
	line-height: 1.5em;
}
h3 {
	font-family: "dnp-shuei-gothic-gin-std", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-feature-settings: 'palt';
	font-size: 1.2em;
	letter-spacing: .2em;
	line-height: 1.7em;
}


p {
	margin: 0;
}

.pf-2 {
	font-size: 1.6em;
	line-height: 1.7em;
}
a {
text-decoration: none;
}

a:link {
color: inherit;
}
a:visited {
color: inherit;
}
a:hover {
}
ul li {
	list-style: none;
	margin: 0;
}

.mgb-10{
  margin-bottom: 10px;
}
.mgb-20{
  margin-bottom: 20px;
}
.mgb-40{
  margin-bottom: 40px;
}
.mgb-80{
  margin-bottom: 80px;
}


.pgr-10 {
	padding-right: 10px;
}






/*==================================================
ふわっ
===================================*/


/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:2s;
animation-delay: 1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}



/* fadeUp */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}





/* fadeUp */

.fadeUpd{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-delay: 1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpdTrigger{
    opacity: 0;
}





/*header*/
/*https://eclair.blog/make-header-with-html-and-css/*/

header{
   padding: 0px 4% 0px;
   top: 0;
/*   width: 100%;*/
   background-color: #fdfaf1;
   display: flex;
   align-items: center;
   position: relative;
   height: auto;
}
header h1{
   margin: 0;
   padding: 0;
   line-height: 2.5em;
}

.pc_nav {
	display: none;
}



/*https://coco-factory.jp/ugokuweb/move01/5-2-4/*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn1{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: fixed;
	background:#fff;
	cursor: pointer;
    width: 60px;
    height: 60px;
	border-radius: 0px;
	right: 0px;
	letter-spacing: .1em;
    line-height: 1em;
	z-index: 9999;
	background-color: #fff;
}

/*ボタン内側*/
.openbtn1 span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 17px;
    height: 2px;
/*    border-radius: 5px;*/
	background: #FF3F00;
  	width: 45%;
  }


.openbtn1 span:nth-of-type(1) {
	top:13px;	
}

.openbtn1 span:nth-of-type(2) {
	top:20px;
}

.openbtn1 span:nth-of-type(3) {
	top:27px;
}

.openbtn1 span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:10px;
	left:-3px;
	color: #FF3F00;
	font-size: 0.6rem;
	font-weight: 600;
	text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn1.active span:nth-of-type(1) {
    top: 14px;
    left: 22px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 26px;
    left: 22px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top:10px;
	left:6px;
}



/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#fff;
    /*動き*/
	transition: all 0.5s;
}

/*アクティブクラスがついたら位置を0に*/
/*
#g-nav.panelactive{
    top: 0;
}
*/

/*ナビゲーションの縦スクロール*/
/*
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh; //表示する高さ
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
*/

/*ナビゲーション*/
/*
#g-nav ul {
   // ナビゲーション天地中央揃え
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
*/

/*リストのレイアウト設定*/
/*

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
*/






.contact_btn {
    position: absolute;
    background: #fff;
    cursor: pointer;
    width: 180px;
    height: 30px;
    right: 10px;
    letter-spacing: .1em;
    line-height: 1em;
    z-index: 9999;
    background-color: #0075c2;
    padding: 5px 0;
    border-radius: 30px;
}


.mail.icon {
  color: #fff;
  position: absolute;
  width: 25px;
  height: 15px;
/*  border-radius: 1px;*/
  border: solid 1px currentColor;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.mail.icon:before {
  content: '';
  position: absolute;
  left: 12px;
  top: -7px;
  width: 1px;
  height: 16px;
  background-color: currentColor;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotate(-54deg);
          transform: rotate(-54deg);
}

.mail.icon:after {
  content: '';
  position: absolute;
  left: 12px;
  top: -7px;
  width: 1px;
  height: 16px;
  background-color: currentColor;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotate(54deg);
          transform: rotate(54deg);
}

.contact_text {
	position: absolute;
    top: 50%;
    left: 85%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: inline-block;
    width: 100%;
    letter-spacing: 0em;
}
.contact_text p {
	letter-spacing: 0em;
/*    font-weight: 600;*/
    font-size: 1em;
    text-align: left;
	color: #fff;
}






#main {
	background-color: #fdfaf1;
}

.main_img {
	width: 90%; 
	margin: 0 0 0 auto;
}

.main_img img {
	width: 100%;
    border-radius: 100px 0 0 100px;
}

.main_pc_img {
	display: none;
}

.main_top {
	position: relative;
	margin-bottom: 120px
}

.main_info {
	position: absolute;
    z-index: 99;
	bottom: 10%;
	left: 5%;
}

.main_top h2 {
	font-size:3em;
	letter-spacing: .14em;
	line-height: 2em;
	font-weight: 600;
	color: #0075c2;
}



#about {
	width: 90%;
	margin: 0 auto 120px;
	overflow: hidden;
}

.about_title_box {
	margin-bottom: 40px;
}

.about_title {
	font-size:2em;
	letter-spacing: .14em;
	line-height: 1em;
}

.about_title2 {
	font-size:1em;
}

.about_info1_box {
		width: 100%;
	}

.about_info2_box {
		width: 100%;
		margin: 0;
	}

.about_info1_box h3 {
	font-size:3em;
	letter-spacing: .14em;
	line-height: 1.3em;
	margin-bottom: 40px;
}


#course {
	margin: 40px auto 80px;
	width: 90%;
}

.course_title_box {
	margin-bottom: 40px;
}

.course_title {
	font-size:2em;
	letter-spacing: .14em;
	line-height: 1em;
	text-align: center;
}

.course_title2 {
	font-size:1em;
	text-align: center;
}


.course_area {
}
/*https://www.esz.co.jp/blog/2847.html*/
/* レイアウト用スタイル */

.wrap{
	padding: 20px 0;
	background-color: #0075c2;
	border-radius: 30px 30px 0px 0px;
/*
    border-radius: 10px;
    border:2px solid #ed6d46;
*/
}


.box-1 h2 {
	color: #fff;
	font-size:1.7em;
	letter-spacing: .14em;
	line-height: 1.3em;
	font-weight: 600;
	padding: 20px 0;
	background-color: #0075c2;
	border-radius: 30px 30px 0px 0px;
}

.box-2 {
	border-radius: 0px 0px 30px 30px;
	background-color: #fff;
}


.box-2 h3 {
	width: 80%;
	margin: 0 auto;
	padding: 20px 0;
	border-bottom: 1px solid #0075c2;
}

.box-3 {
	width: 80%;
	margin: 0 auto;
	padding: 40px 0;
}




/* ④positionとtranslateで中央配置 */
.wrap.pattern-4{
  height:60px;
  text-align:center;
  position:relative;
}

.wrap.pattern-4 div{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:100%;
}




#free_page {
	background-color: #fdfaf1;
	padding: 20px 0;
}

.free_page_area {
	width: 80%;
	margin: 40px auto 80px;
	padding: 40px 20px;
	background-color: #0075c2;
	border-radius: 15px;
  box-sizing:border-box;

}

.free_page_area h2 {
	font-size: 2em;
	letter-spacing: .14em;
	line-height: 1.5em;
	padding-bottom: 40px;
	color: #fff;
}

.free_page_area p {
	color: #fff;
}

.mail_form_area {

}




.line_form {
	background-color: #06C755;
	padding: 30px 0;
	text-align: left;
    border-radius: 5px;
	margin: 20px 0 0;
	position: relative;
}
.line_form p {
	color: #fff;
	padding-right: 10%;
	text-align: right;
	font-size: 1.2em;

}
.mobile.icon {
  color: #000;
  position: absolute;
  margin-left: 10%;
  margin-top: 0px;
  width: 12px;
  height: 19px;
  border-radius: 2px;
  border: solid 1px currentColor;
}

.mobile.icon:before {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 2px;
  height: 1px;
  background-color: currentColor;
}

.mobile.icon:after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 5px;
  height: 2px;
  width: 2px;
  border-radius: 50%;
  background-color: currentColor;
}








.mail_form {
	background-color: #fff;
	padding: 30px 0;
	text-align: left;
    border-radius: 5px;
	margin: 20px 0 0;
	position: relative;
}

.mail_form p {
	color: #0075c2;
	padding-right: 10%;
	text-align: right;
	font-size: 1.2em;
}

.mail.icon2 {
  color: #000;
  position: absolute;
  margin-left: 10%;
  margin-top: 4px;
  width: 15px;
  height: 10px;
  border-radius: 1px;
  border: solid 1px currentColor;
}

.mail.icon2:before {
  content: '';
  position: absolute;
  left: 7px;
  top: -4px;
  width: 1px;
  height: 10px;
  background-color: currentColor;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotate(-54deg);
          transform: rotate(-54deg);
}

.mail.icon2:after {
  content: '';
  position: absolute;
  left: 7px;
  top: -4px;
  width: 1px;
  height: 10px;
  background-color: currentColor;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotate(54deg);
          transform: rotate(54deg);
}



.tel_form {
	margin: 20px 0;
}

.tel_form p {
	color: #fff;
	font-size: 1.6em;
	text-align: center;
	letter-spacing: .14em;
	line-height: 1.5em;
}

.p1 p {
	font-size: 1.2em;
}

.p2 {
	margin-top: 10px;
	border-bottom: 1px solid #fff;
	padding-bottom: 10px;
}



#info_page {
/*	padding: 20px 0;*/
}

.info_page_area {
	width: 80%;
	margin: 40px auto 80px;
}

.information h2 {
    font-size: 2em;
    letter-spacing: .14em;
    line-height: 1.5em;
}




footer {
	background-color: #fdfaf1;
	position: relative;
	height: 100px;
}

footer h2 {
	font-size: 2em;
    letter-spacing: .14em;
    line-height: 1em;
}

footer .footer_info {
	position: absolute;
    top:40%;
    left:50%;
    transform:translate(-50%,-50%);
	width: 80%;
	padding-bottom: 80px;
	
}

footer .copy {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 20px 0;
	text-align: center;
}

.info_title_box {
	margin-bottom: 40px;
}

.info_title {
	font-size:2em;
	letter-spacing: .14em;
	line-height: 1em;
	text-align: left;
}

.info_title2 {
	font-size:1em;
	text-align: left;
}

.f_name {
	padding-bottom: 20px;
}





@media screen and (min-width: 640px) {
	
	body {
		font-size: 16px;
	}
	
	h1 {
		font-size: 2em;
		letter-spacing: 0px;
		line-height: 2.2em;
	}
	
	header{
/*
	   padding: 0px 4% 0px;
	   top: 0;
	   background-color: #fdfaf1;
	   display: flex;
	   align-items: center;
	   position: relative;
*/
	   padding: 0px 10% 0;
	   height: 100px;
	}
	header h1{
	   margin: 0;
	   padding: 0;
	   line-height: 2.5em;
	}
	
	
	.main_img {
		display: none;
	} 
	
	
	.main_pc_img {
		display: inherit;
        width: 80%; 
	    margin: 0 0 0 auto;
	}
	
	.main_pc_img img {
		width: 100%;
		border-radius: 100px 0 0 100px;
	}

	
	.contact_btn {
		width: 240px;
		height: 40px;
		right: 5%;
/*
		position: absolute;
		background: #fff;
		cursor: pointer;
		width: 180px;
		height: 30px;
		right: 10px;
		letter-spacing: .1em;
		line-height: 1em;
		z-index: 9999;
		background-color: #0075c2;
		padding: 5px 0;
		border-radius: 30px;
*/
	}


	.mail.icon {
	  color: #fff;
	  position: absolute;
	  width: 25px;
	  height: 15px;
	/*  border-radius: 1px;*/
	  border: solid 1px currentColor;
	  top: 50%;
	  left: 20%;
	  transform: translate(-50%, -50%);
	  -webkit-transform: translate(-50%, -50%);
	  -ms-transform: translate(-50%, -50%);
	}

	.mail.icon:before {
	  content: '';
	  position: absolute;
	  left: 12px;
	  top: -7px;
	  width: 1px;
	  height: 16px;
	  background-color: currentColor;
	  -webkit-transform-origin: bottom;
			  transform-origin: bottom;
	  -webkit-transform: rotate(-54deg);
			  transform: rotate(-54deg);
	}

	.mail.icon:after {
	  content: '';
	  position: absolute;
	  left: 12px;
	  top: -7px;
	  width: 1px;
	  height: 16px;
	  background-color: currentColor;
	  -webkit-transform-origin: bottom;
			  transform-origin: bottom;
	  -webkit-transform: rotate(54deg);
			  transform: rotate(54deg);
	}

	.contact_text {
		position: absolute;
		top: 50%;
		left: 85%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		display: inline-block;
		width: 100%;
		letter-spacing: 0em;
	}
	.contact_text p {
		letter-spacing: .14em;
		font-size: .7em;


/*
		letter-spacing: 0em;
		font-size: 1em;
		text-align: left;
		color: #fff;
*/
	}

	
	
	.main_top {
		position: relative;
	}

	.main_info {
		position: absolute;
		z-index: 99;
		bottom: 30%;
		left: 10%;
	}

	.main_top h2 {
		font-size:3em;
		letter-spacing: .14em;
		line-height: 2em;
		font-weight: 600;
		color: #0075c2;
	}
	
	
	

	#about {
		width: 80%;
		margin: 240px auto 0px;
	}

	.about_title_box {
		margin-bottom: 40px;
	}

	.about_title {
		font-size: 2em;
		letter-spacing: .14em;
		line-height: 1.5em;
	}

	.about_title2 {
		font-size:.7em;
	}
	
	.about_info1_box {
		width: 60%;
	}
	
	.about_info2_box {
		width: 60%;
		margin: 0 0 0 auto;
	}

	.about_info1_box h3 {
		font-size: 2em;
		letter-spacing: .1em;
		line-height: 1.5em;
	}
	
	


	#course {
		margin: 240px auto 0px;
		width: 90%;
	}

	.course_title_box {
		margin-bottom: 40px;
	}

	.course_title {
		font-size:2em;
		letter-spacing: .14em;
		line-height: 1.5em;
		text-align: center;
	}

	.course_title2 {
		font-size:.7em;
		text-align: center;
	}
	
	.course_flexbox {
		display: flex;
		flex-wrap: wrap;
	}


	.course_area {
		 width:45%;
		 margin: 60px 2.5%;

	}
	/*https://www.esz.co.jp/blog/2847.html*/
	/* レイアウト用スタイル */

	.wrap{
		padding: 20px 0;
		background-color: #0075c2;
		border-radius: 30px 30px 0px 0px;
	/*
		border-radius: 10px;
		border:2px solid #ed6d46;
	*/
	}


	.box-1 h2 {
		color: #fff;
		font-size:1.7em;
		letter-spacing: .14em;
		line-height: 1.3em;
		font-weight: 600;
		padding: 20px 0;
		background-color: #0075c2;
		border-radius: 30px 30px 0px 0px;
	}

	.box-2 {
		border-radius: 0px 0px 30px 30px;
		background-color: #fff;
	}


	.box-2 h3 {
		width: 80%;
		margin: 0 auto;
		padding: 20px 0;
		border-bottom: 1px solid #0075c2;
	}

	.box-3 {
		width: 80%;
		margin: 0 auto;
		padding: 40px 0;
	}




	/* ④positionとtranslateで中央配置 */
	.wrap.pattern-4{
	  height:60px;
	  text-align:center;
	  position:relative;
	}

	.wrap.pattern-4 div{
	  position:absolute;
	  top:50%;
	  left:50%;
	  transform:translate(-50%,-50%);
	  width:100%;
	}




	#free_page {
		margin: 240px auto 0px;
		background-color: #fdfaf1;
		padding: 20px 0;
	}

	.free_page_area {
		width: 50%;
		margin: 40px auto 80px;
		padding: 60px 100px;
		background-color: #0075c2;
		border-radius: 15px;
	}

	.free_page_area h2 {
		font-size: 2em;
		letter-spacing: .14em;
		line-height: 1.5em;
		padding-bottom: 40px;
		color: #fff;
	}

	.free_page_area p {
		color: #fff;
	}

	.mail_form_area {

	}

	.mail_form {
		background-color: #fff;
		padding: 20px 0;
		text-align: center;
		border-radius: 5px;
		margin: 20px 0 0;
		position: relative;
	}


	.mail_form p {
		color: #0075c2;
		font-size: 1.4em;
		padding-left: 15%;
	}

	.mail.icon2 {
	  color: #0075c2;
	  position: absolute;
	  width: 25px;
	  height: 15px;
	/*  border-radius: 1px;*/
	  border: solid 1px currentColor;
	  top: 50%;
	  left: 20%;
	  transform: translate(-50%, -50%);
	  -webkit-transform: translate(-50%, -50%);
	  -ms-transform: translate(-50%, -50%);
	}

	.mail.icon2:before {
	  content: '';
	  position: absolute;
	  left: 12px;
	  top: -7px;
	  width: 1px;
	  height: 16px;
	  background-color: currentColor;
	  -webkit-transform-origin: bottom;
			  transform-origin: bottom;
	  -webkit-transform: rotate(-54deg);
			  transform: rotate(-54deg);
	}

	.mail.icon2:after {
	  content: '';
	  position: absolute;
	  left: 12px;
	  top: -7px;
	  width: 1px;
	  height: 16px;
	  background-color: currentColor;
	  -webkit-transform-origin: bottom;
			  transform-origin: bottom;
	  -webkit-transform: rotate(54deg);
			  transform: rotate(54deg);
	}

	.tel_form {
		margin: 20px 0;
	}

	.tel_form p {
		color: #fff;
		font-size: 1.6em;
		text-align: center;
		letter-spacing: .14em;
		line-height: 1.5em;
	}

	.p1 p {
		font-size: 1.2em;
	}

	.p2 {
		margin-top: 10px;
		border-bottom: 1px solid #fff;
	}



	#info_page {
		margin: 240px auto 0;
	}

	.info_page_area {
		width: 80%;
		margin: 40px auto 80px;
	}

	.information h2 {
		font-size: 2em;
		letter-spacing: .14em;
		line-height: 1.5em;
	}




	footer {
		background-color: #fdfaf1;
		position: relative;
		height: 100px;
	}

	footer h2 {
		font-size: 2em;
		letter-spacing: .14em;
		line-height: 1em;
	}

	footer .footer_info {
		position: absolute;
		top:40%;
		left:50%;
		transform:translate(-50%,-50%);
		width: 80%;
		padding-bottom: 80px;

	}

	footer .copy {
		position: absolute;
		bottom: 0;
		width: 100%;
		padding: 20px 0;
		text-align: center;
	}

	.info_title_box {
		margin-bottom: 40px;
	}

	.info_title {
		font-size:2em;
		letter-spacing: .14em;
		line-height: 1em;
		text-align: left;
	}

	.info_title2 {
		font-size:1em;
		text-align: left;
	}

	.f_name {
		padding-bottom: 20px;
	}



@media screen and (min-width: 960px) {

	.mail.icon2 {
		  color: #0075c2;
		  position: absolute;
		  width: 25px;
		  height: 15px;
		/*  border-radius: 1px;*/
		  border: solid 1px currentColor;
		  top: 50%;
		  left: 30%;
		  transform: translate(-50%, -50%);
		  -webkit-transform: translate(-50%, -50%);
		  -ms-transform: translate(-50%, -50%);
		}
}
