@charset "utf-8";

/*@font-face {
	font-family: "Custom Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 100;
}
@font-face {
	font-family: "Custom Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 200;
}
@font-face {
	font-family: "Custom Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 300;
}
@font-face {
	font-family: "Custom Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 400;
}
@font-face {
	font-family: "Custom Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 500;
}
@font-face {
	font-family: "Custom Yu Gothic";
	src: local("Yu Gothic Bold");
	font-weight: bold;
}
@font-face {
	font-family: "Helvetica Neue";
	src: local("Helvetica Neue Regular");
	font-weight: 100;
}
@font-face {
	font-family: "Helvetica Neue";
	src: local("Helvetica Neue Regular");
	font-weight: 200;
}*/



/* -----------------------------------------------------------------------------
 * 1.0 Reset
 * ----------------------------------------------------------------------------- */
html {
	font-size: 62.5%;
}

body {
	color: #222;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.6;
	/*font-family:-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", 'Hiragino Kaku Gothic ProN',"ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;*/
	font-family: 'Noto Sans JP', "Helvetica Neue", YuGothic, "Custom Yu Gothic", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

/* IE */
@media all and (-ms-high-contrast: none) {
	body {
		font-family: Verdana, Meiryo, sans-serif;
	}
}
@media all and (-ms-high-contrast: active) {
	body {
	  font-family: Verdana, Meiryo, sans-serif;
  }
}

body {
	background-color: #fff;
}

a {
	text-decoration: none;
	color: #0071bc;
}

a:active,
a:hover {
	color: #29abe2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	margin: 0 0 12px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1 {
	font-size: 26px;
	font-size: 2.6rem;
	line-height: 1.2em;
	font-weight: 500;
}
h2 {
	font-size: 21px;
	font-size: 2.1rem;
	line-height: 1.2em;
	font-weight: 500;
}
h3 {
	font-size: 21px;
	font-size: 2.1rem;
	line-height: 1.2em;
	font-weight: 500;
}
h4 {
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.2em;
	font-weight: 500;
}
h5 {
	font-size: 18px;
	font-size: 1.8rem;
}

p {
	margin-bottom: 20px;
}

img {
	height: auto;
	max-width: 100%;
}

/* selection color */
::selection {
	background: rgba(0,0,0,0.2);
	color: #888;
	text-shadow: none;
}

::-moz-selection {
	background: rgba(0,0,0,0.2);
	color: #888;
	text-shadow: none;
}


/* Link images alpha
 * ----------------------------------------------------------------------------- */
#main a:hover img ,
#footer a:hover img {
	opacity: 0.70;
}



/* -----------------------------------------------------------------------------
 * 2.0 form parts
 * ----------------------------------------------------------------------------- */
input,
select,
textarea,
button {
	color: #333;
	line-height: 1.6;
}

input,
select,
button {
	vertical-align: middle;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
select {
	width: 100%;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 0.1em 0.3em;
}

textarea {
	padding:0.3em 0.5em;
	line-height: 1.4;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
	box-shadow: 0 0 2px #2197c6;;
	border: 1px solid #2197c6!important;
	outline: none;
}

/*select {
	color: #333;
	width: auto;
	height: 30px;
	padding: 0 35px 0 5px;
	border: 1px solid #bbb;
	border-radius: 3px;
	background: #fff url(./image/select_arrow.jpg) no-repeat right;
	box-sizing: border-box;
}*/

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
select {
	margin: 0 5px 5px 0;
}

textarea {
	margin: 0 0 5px 0;
}

input[type="checkbox"],
input[type="radio"] {
	margin-right: 5px;
	position: relative;
	top: -1px;
}

form p {
	display: inline-block;
}

.site-contents form p {
	padding: 0;
	margin-bottom: 0;
}


/* Button Base
----------------------------------------------------------------- */
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	text-transform: none;
	vertical-align: middle;
	outline: none;
	cursor: pointer;
	display: inline-block;

	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 500;
	padding: 5px 15px 8px;
	margin: 0 5px 5px 0;

	border-radius: 3px;
	border: 1px solid #172a88;
	color: #fff;
	background: #2ea7e0;
}

.button:hover,
.button:focus,
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	color: #172a88;
	background: #fff;
}

button:active,
.button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	color: #172a88;
	background: #fff;
}



/* ----------------------------------------------------------------------------- 
 * 3.0 Basic Structure
 * ----------------------------------------------------------------------------- */
.site-main {
	position: relative;
}


/* contents
 * ----------------------------------------------------------------------------- */
.site-contents {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 20px;
	padding: 0 20px;
	overflow: hidden;
	box-sizing: border-box;
}



/* -----------------------------------------------------------------------------
 * 4.0 Header
 * ----------------------------------------------------------------------------- */
#site-header {
	background-color: transparent;
	position: relative;
	margin-bottom: 20px;
}

.top-page #site-header {
	margin-bottom: 0;
}

.top-page #site-header .site-header {
	display: none;
}

.site-header {
	overflow: hidden;
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.logo {
	padding: 10px 20px;
	box-sizing: border-box;
}

@media all and (min-width: 768px) {
	.logo {
		padding: 10px;
	}
}


/* menu
 * ----------------------------------------------------------------------------- */
.header-menu-box {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	background: #122a88;

	width:100%;
	height: 48px;
	position:relative;

	text-align: center;
	padding: 10px 10px;
	box-sizing: border-box;
}

.header-menu-box.header-menu-scroll {
	position:fixed;
	top: 0px;
	left: 0px;
	z-index:998;
}

.header-menu-inner {
	max-width:1000px;
	margin:0 auto;
}

ul.header-menu {
	list-style: none;
	background: transparent;
	padding: 0;
	margin: 0;
	display: block;
}

ul.header-menu li {
	display: inline-block;
	color: #fff;
	padding: 0px 15px 0px 15px;
	line-height: 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.3);
	text-align: left;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight:500;
}

ul.header-menu li:last-child {
	border-right: 0px solid #ccc;
}

ul.header-menu li a {
	color: #fff;
}

ul.header-menu li a:hover {
	color: rgba(255,255,255,0.5);
}


@media all and (max-width: 767.999px) {
	.site-header {
		border-bottom: 2px solid #bde1f5;
	}

	.header-menu-box {
		height: auto;
		padding: 0;
		background-color: transparent;
		-webkit-transition: all 0s;
		-moz-transition: all 0s;
		transition: all 0s;
	}

	.header-menu-inner {
		background:rgba(255,255,255,1);
		padding: 0 10px;
		-webkit-transition: all 0.5s;
		-moz-transition: all 0.5s;
		transition: all 0.5s;
		overflow: hidden;
		opacity: 0;
		height: 0;
		border-bottom: 2px solid #bde1f5;
	}

	.toggle-on .header-menu-inner {
		padding: 10px 10px;
		margin-top:0;
		opacity: 1;
		height: auto;
	}

	ul.header-menu li {
		display:block;
		color:#333;
		padding:10px 20px 8px;
		line-height:1em;
		border-right:0px solid #ccc;
		border-bottom:1px dotted #ccc;
	}

	ul.header-menu li:last-child {
		border-bottom:0px dotted #ccc;
	}

	ul.header-menu li a {
		color:#333;
	}
	ul.header-menu li a:hover {
		color:#bb272d;
	}
}

/* menutoggle */
.header-menutoggle {
	width: 40px;
	height: 40px;

	text-align: center;
	position: absolute;
	top:5px;
	right:5px;
	z-index: 999;
	background: #222;
	-ms-user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
}

.header-menutoggle.menutoggle-scroll {
	position: fixed;
}

.header-menutoggle i {
	color:#fff;
	line-height: 40px;
}

i.icons-close {
	display: none;
}

.toggle-on i.icons-close {
	display: inline-block;
}

.toggle-on i.icons-open {
	display: none;
}

@media all and (min-width: 768px) {
	.header-menutoggle {
		display: none;
	}
}



/* -----------------------------------------------------------------------------
 * 5.0 Footer
 * ----------------------------------------------------------------------------- */
.site-footer,
.site-info {
	color:#333;
}

.site-footer {
	border-top: 1px solid #ccc;
}

	.footer-contents {
		text-align:center;
		margin-bottom: 40px;
		padding: 20px 20px 0;
	}

	.footer-contents ul {
		margin-bottom: 30px;
	}

	.footer-contents ul li {
		display: inline-block;
		padding: 0 10px;
		border-right: 1px solid #ccc;
	}
	.footer-contents ul li:last-child {
		border-right: 0px solid #ccc;
	}

	.footer-contents img {
		vertical-align: middle;
		margin-bottom: 10px;
	}

	.footer-text {
		display: inline-block;
		text-align: left;
		vertical-align: middle;
		padding: 0 10px;
	}

	.footer-text p {
		margin-bottom: 0;
	}

@media all and (max-width: 767.999px) {
	.footer-contents ul li {
		font-size: 14px;
		font-size: 1.4rem;
		padding: 0 5px;
	}
}

/* コピーライト */
.site-info {
	font-size: 12px;
	line-height: 35px;
	height: 35px;
	text-align:center;
}

/* ページトップアンカー */
#pageTop {
	background: #333;
	width: 40px;
	height: 40px;
	position: fixed;
	bottom: 25px;
	right: 0px;
	z-index: 999;
	text-align: center;
	cursor: pointer;
	border-radius: 3px 0 0 3px;
}

#pageTop:hover,
#pageTop:active {
	background: #406191;
}

#pageTop img {
	padding: 5px;
}



/* -----------------------------------------------------------------------------
 * 6.0 title & text
 * ----------------------------------------------------------------------------- */
h1 span,
h2 span {
	display: inline-block;
}

.site-contents h1 {
	padding: 0;
	margin: 0 auto 20px;
}

.site-contents h1.page-title {
	border-bottom: 1px solid #036eb8;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
	padding-bottom: 10px;
}

	.site-contents h1.section-title {
		padding: 10px;
		border-bottom: 1px solid #222;
		font-size: 16px;
		font-size: 1.6rem;
		display: inline-block;
		font-weight: 700;
		letter-spacing: 0.05em;
	}

	.site-contents h1.section-title .color {
		color: #e60012;
		display: inline;
	}

.site-contents h2 {
	padding: 0 0 0.5em;
	margin-bottom: 10px;
}

	.site-contents h2.var01 {
		color:#036eb8;
		border-bottom: 1px solid #036eb8;
	}

.site-contents p {
	padding: 0;
	margin-bottom: 20px;
}



/* -----------------------------------------------------------------------------
 * 7.0 common-class
 * ----------------------------------------------------------------------------- */
.clear {
	clear:both;
}

.color-red {
	color:#ff0000;
}

.color-green {
	color:#00a29a;
}

.color-magenta {
	color:#CC0041;
}

.underline {
border-bottom: 1px solid #ccc;
}

.radius {
	border-radius: 5px;
}

.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}

.i-block {
	display: inline-block;
}


.anchor {
	margin-top:-100px !important;
	padding-top:100px !important;
}

.text-link {
	display: inline-block;
	border-bottom: 1px solid #0071bc;
	position: relative;
	padding-right: 20px;
}
.text-link::after {
	content: "";
	width: 1px;
	height: 10px;
	background: #0071bc;
	position: absolute;
	bottom:-2px;
	right: 4px;
	transform: rotate(-45deg);
}


/* margin-bottom
----------------------------------------------------------------- */
.mb0 {
	margin-bottom: 0px!important;
}
.mb5 {
	margin-bottom: 5px!important;
}
.mb10 {
	margin-bottom: 10px!important;
}
.mb20 {
	margin-bottom: 20px!important;
}
.mb30 {
	margin-bottom: 30px!important;
}
.mb40 {
	margin-bottom: 40px!important;
}
.mb50 {
	margin-bottom: 50px!important;
}
.mb60 {
	margin-bottom: 60px!important;
}



/* -----------------------------------------------------------------------------
 * 8.0 ul & table
 * ----------------------------------------------------------------------------- */
/* ul
----------------------------------------------------------------- */
.site-contents ul {
	list-style:none;
	margin:0 0 30px 0;
	padding: 0;
}

.site-contents ul li {
	border-bottom:1px dotted #ccc;
	padding: 8px 10px;
}

@media all and (min-width: 768px) {
	.site-contents ul {
		padding: 0 20px;
	}
}


/* table
 * ----------------------------------------------------------------------------- */
table {
	border:none;
	box-sizing: border-box;
}

table th,
table td {
	border:none;
}


table {
	width: 100%;
	padding:0;
	border-collapse: collapse;
	border-spacing: 0;
	margin:0 auto 20px;
	border:1px solid #ccc;
	background: #fff;
}

table th,
table td {
	padding: 5px 5px;
	line-height: 1.6;
	text-align: left;
	vertical-align:middle;
}

table th {
	border-top:1px solid #ccc;
	border-right:1px solid #ccc;
	border-bottom:1px solid #ccc;
	border-left:1px solid #ccc;
	background: rgba(213, 237, 249, 0.6);
	white-space: nowrap;
}

table th:before {
	content: "\f0da";
	font: normal 12px/1 FontAwesome;
	vertical-align:middle;
	position: relative;
	top: -1px;
	color:rgba(55, 168, 222, 1);
	margin-right:5px;
}

table td {
	border-top:1px solid #ccc;
	border-right:1px solid #ccc;
	border-bottom:1px solid #ccc;
	border-left:1px solid #ccc;
}


/* SP テーブル */
@media all and (max-width: 479.999px) {
	table.sp-table th,
	table.sp-table td {
		width: 100%;
		display:block;
		box-sizing: border-box;
		overflow:hidden;
	}

	.site-contents table.sp-table th,
	.site-contents table.sp-table td {
		width: 100%;
	}

	table.sp-table th {
		max-width: 100%;
		border-top: 0px solid #ccc;
		border-right: 0px solid #ccc;
		border-bottom: 0px solid #ccc;
		border-left: 0px solid #ccc;
	}

	table.sp-table td {
		border-top: 0px solid #ccc;
		border-right: 0px solid #ccc;
		border-bottom: 1px solid #ccc;
		border-left: 0px solid #ccc;
	}

	table.sp-table tr:last-child td:last-child {
		border-bottom: 0px solid #ccc;
	}
}



/* -----------------------------------------------------------------------------
 * 9.0 contents
 * ----------------------------------------------------------------------------- */
@media all and (max-width: 767.999px) {
	.pc-br {
		display: none;
	}
}

.text-wrap {
	max-width: 720px;
	margin: 0 auto;
}

.box-shadow {
	background: #fff;
	border-radius: 3px;
	box-shadow: 0 0 4px 0 rgba(0,0,0,0.2);
	padding: 30px 10px;
	margin: 5px 0;
}


/* top page main image */
.top-main-bg {
	text-align: center;
}

.top-main .top-main-logo {
	display: none;
}

.top-main .top-main-logo-sp {
	line-height: 1;
}

.main-info {
	background-color: #fcf6c3;
	padding: 20px 10px 10px;
}

.main-info h1 {
	font-weight: 700;
	font-size: 20px;
	font-size: 2.0rem;
}
.main-info h1 .emphasis {
	background-color: #00a29a;
	padding: 5px 5px 8px;
	border-radius: 3px;
	color: #fff;
	margin-bottom: 5px;
	display: inline-block;
}

.main-info p {
	font-size: 1.1em;
	line-height: 1.4;
}

@media all and (min-width: 768px) {
.top-main-bg {
background: #ffffff;
background: -moz-linear-gradient(top,  #ffffff 90%, #f8f8f8 100%);
background: -webkit-linear-gradient(top,  #ffffff 90%,#f8f8f8 100%);
background: linear-gradient(to bottom,  #ffffff 90%,#f8f8f8 100%);
}

.top-main {
	background: url(./image/main_bg_l.png),url(./image/main_bg_r.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left -300px top, right -240px top;
}

.top-main .top-main-logo {
	display: block;
	padding: 8% 40px 4%;
	display: inline-block;
}

.top-main .top-main-logo-sp {
	display: none;
}

	.main-info {
		background-color: transparent;
		padding: 0 10px 40px;
	}

	.main-info h1 {
		font-weight: 700;
		font-size: 26px;
		font-size: 2.6rem;
	}
}

@media all and (min-width: 1000px) {
	.top-main {
		background-position: left -200px top, right -160px top;
	}
}
@media all and (min-width: 1600px) {
	.top-main {
		background-position: left -100px top, right -60px top;
	}
}
@media all and (min-width: 1900px) {
	.top-main {
		background-position: left -80px top, right top;
	}
}


/* section01 */
.site-contents-bg.section01 {
	padding: 40px 0 20px;
}

@media all and (min-width: 768px) {
	.site-contents-bg.section01 {
		padding: 60px 0 40px;
background: #f5f5f5;
background: -moz-linear-gradient(left,  #f5f5f5 0%, #ffffff 10%, #ffffff 90%, #f5f5f5 100%);
background: -webkit-linear-gradient(left,  #f5f5f5 0%,#ffffff 10%,#ffffff 90%,#f5f5f5 100%);
background: linear-gradient(to right,  #f5f5f5 0%,#ffffff 10%,#ffffff 90%,#f5f5f5 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#f5f5f5',GradientType=1 );
	}
}


/* section02 */
.site-contents-bg.section02 {
	background: url(./image/section02_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	padding: 20px 0;
}

.section02 .program-title {
	border: 1px solid #036eb8;
	border-radius: 3px;
	color: #036eb8;
	font-weight: 500;
	padding: 10px;
	font-size: 21px;
	font-size: 2.1rem;
	margin-bottom: 10px;
}

.section02 .program-title span {
	display: inline-block;
	font-size: 16px;
	font-size: 1.6rem;
}

@media all and (min-width: 768px) {
	.section02 .program-inner {
		overflow: hidden;
		max-width: 720px;
		margin: 0 auto;
		padding: 10px 0;
	}

	.section02 .program-title {
		max-width: 150px;
		box-sizing: border-box;
		padding: 20px;
		float: left;
		text-align: center;
	}

	.section02 .site-contents ul:not(.torikumi-ul) {
		width: calc(100% - 150px);
		float: right;
		box-sizing: border-box;
		margin: 0;
	}
}

.torikumi {
	border:1px solid #036eb8;
	max-width: 720px;
	margin: 0 auto 30px;
}

.site-contents .torikumi h3 {
	background-color: #036eb8;
	color: #fff;
	padding: 0.4em 0.5em;
}

.site-contents .torikumi ul li:last-child {
	border-bottom: 0px dotted #ccc;
}


/* section03 */
.site-contents-bg.section03 {
	/*background-color: rgba(0,162,154,0.1);*/
	background-color: #fcf6c3;
	padding: 40px 0 20px;
}

.offer-button {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
}

.offer-button .button {
	width: 100%;
	box-sizing: border-box;
	padding: 15px 15px;
}

.offer-button img {
	display: none;
}

@media all and (min-width: 768px) {
	.offer-button {
		padding: 30px 50px 30px 0;
	}

	.offer-button img {
		display: inline-block;
		position: absolute;
		top:-40px;
		right: -20px;
		animation: offermove 2.5s linear 0s infinite normal;
	}
	@keyframes offermove {
		0%{ right: -20px; }
		50%{ right: -40px; }
		100%{ right: -20px; }
	}

}


/* section04 */
.site-contents-bg.section04 {
	background: url(./image/session04_bgl.jpg),url(./image/session04_bgr.jpg);
	background-size: 40%;
	background-repeat: no-repeat;
	background-position: left top, right top;
	padding: 20px 0;
}

.event-l {
	text-align: center;
}

.section04 .site-contents h2 {
	background-color: rgba(255,255,255,0.8);
	padding-top: 0.5em;
}

@media all and (min-width: 768px) {
	.section04 .site-contents {
		background-color: rgba(255,255,255,0.8);
	}

	.section04 .site-contents h2 {
		background-color: transparent;
	}

	.event-inner {
		overflow: hidden;
	}

	.event-l {
		max-width: 240px;
		float: left;
	}

	.event-r {
		width: calc(100% - 250px);
		float: right;
	}
}


/* -----------------------------------------------------------------------------
 * 10.0 plugin
 * ----------------------------------------------------------------------------- */
/* Google map */
.googlemap {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}
.googlemap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}


/* jquery.inview
----------------------------------------------------------------- */
@media all and (min-width: 1000px) {
	.site-contents {
		opacity: 0.0;
		/*transition: all 0.8s;*/
	}

	.site-contents.fadeindown {
		opacity: 1.0;
		animation: inviewmove 1.0s linear 0s 1 normal;
		position: relative;
	}
	@keyframes inviewmove {
		0%{ top: 40px; opacity: 0;}
		40%{ top: 40px; opacity: 0;}
		100%{ top: 0; opacity: 1; }
	}
}


/* loader
--------------------------------------------------------------*/
#loader-bg {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: rgba(255,255,255,1);
	z-index: 9998;
}

#loader {
	display: none;
	position: fixed;
	top: 50%;
	left: 0;
	z-index: 9999;
	width: 100%;
	text-align: center;
}

#loader img {
	animation: loader 3s ease 0s infinite normal;
	opacity: 0.8;
}

@keyframes loader {
	0%{ transform:rotate(0);}
	100%{ transform:rotate(360deg); }
}



/* -----------------------------------------------------------------------------
 * 9.0 Print
 * ----------------------------------------------------------------------------- */
@media print {
	body {
		zoom: 0.68;
		-webkit-print-color-adjust: exact;
	}

	#menutoggle,
	#header-menu,
	#pageTop {
		display:none!important;
	}

	.site-contents {
		opacity: 1.0!important;
		top:0!important;
		position: relative;
	}
}

/* IE10以上 */
@media print and (-ms-high-contrast: none) {
	@page {
		size: A4;
		margin: 12.7mm 9.7mm;
	}

	body {
		zoom: 1.8;
		width: 1200px;
		transform: scale(0.5);
		transform-origin: 0 0;
    }
}

