/*******************************************/

/** 仕様変更・追加修正対応 **/

/*******************************************/

@keyframes bound {
	0% {transform: translateY(0px);}
	100% {transform: translateY(-10px);}
}
@keyframes animation_bg {
	from {
		opacity: 0;
		margin-top: 50px;
	}
	to {
		opacity: 1;
		margin-top: 0;
	}
}
@keyframes animation_bg_sp {
	from {
		opacity: 0;
		margin-top: 30px;
	}
	to {
		opacity: 1;
		margin-top: 0;
	}
}
@keyframes animation_bun {
	from {
		top: -100px;
		margin-left: 0;
	}
	to {
		top: 80px;
		margin-left: -120px;
	}
}
@keyframes animation_moegi {
	from {
		left: -100px;
		margin-left: 0px;
	}
	to {
		left: 50%;
		margin-left: -300px;
	}
}
@keyframes animation_arthur {
	from {
		top: 40px;
		left: 100%;
		margin-right: -100px;
		margin-left: 0;
	}
	to {
		top: 110px;
		left: 50%;
		margin-right: 0;
		margin-left: 150px;
	}
}
@keyframes animation_raran {
	from {
		left: 100%;
		margin-right: -100px;
		margin-left: 0px;
	}
	to {
		left: 50%;
		margin-right: 0;
		margin-left: 300px;
	}
}
@keyframes animation_bun_sp {
	from {
		top: -100px;
		margin-left: 0;
	}
	to {
		top: 40px;
		margin-left: -60px;
	}
}
@keyframes animation_moegi_sp {
	from {
		left: -100px;
		margin-left: 0px;
	}
	to {
		left: 50%;
		margin-left: -130px;
	}
}
@keyframes animation_arthur_sp {
	from {
		top: 40px;
		left: 100%;
		margin-right: -100px;
		margin-left: 0;
	}
	to {
		top: 60px;
		left: 50%;
		margin-right: 0;
		margin-left: 60px;
	}
}
@keyframes animation_raran_sp {
	from {
		left: 100%;
		margin-right: -100px;
		margin-left: 0px;
	}
	to {
		left: 50%;
		margin-right: 0;
		margin-left: 100px;
	}
}
@keyframes animation_rotate {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(10deg);
	}
	50% {
		transform: rotate(0deg);
	}
	75% {
		transform: rotate(-10deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@media all {
	html, body, main {
		overflow-x: hidden;
	}
	body {
		padding-top: 50px;
		padding-bottom: 0;
	}
	a:hover img {
		opacity: 0.5;
	}
	#topnav {
		border-bottom: none;
		background: #FFEA00;
	}
	
	#nav_goal	{
			background-image: url("./img/nav_mokuhyo_alignleft_sp.svg");
	}
	#nav_support {
			background-image: url("./img/nav_shien_alignleft_sp.svg");
	}
	#nav_request {
			background-image: url("./img/nav_yosei_alignleft_sp.svg");
	}
	#nav_character {
			background-image: url("./img/nav_character_alignleft_sp.svg");
	}
	#nav_official	{
			background-image: url("./img/nav_koshiki_alignleft_sp.svg");
	}
	
	.container {
		width: 100%;
		max-width: 100%;
		margin: 0;
		padding-left: 0;
		padding-right: 0;
		padding-top: 10px;
	}
	.innerBox {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
	}
	.top {
		margin-bottom: 80px;
	}
	.main_visual {
		position: relative;
	}
	.main_visual .animation_bg {
		padding: 15px 0;
		background: #FFEA00;
	}
	.main_visual .animation_bg img {
		max-height: 230px;
		opacity: 0;
		margin-top: 30px;
	}
	.main_visual .animation_bg.loaded img {
		transform: translate3d(0, 0, 0);
		will-change: transform;
		animation: animation_bg_sp 2s ease;
		animation-fill-mode: forwards;
	}
	.main_visual .animation_character {
		display: none;
		width: 60px;
		position: absolute;
		z-index: 100;
	}
	.main_visual .animation_character img {
		width: 60px;
	}
	.main_visual .animation_character#animation_bun { /* アニメーション開始前の初期位置 */
		width: 80px;
		top: -100px;
		left: 50%;
	}
	.main_visual .animation_character#animation_bun img {
		width: 80px;
	}
	.main_visual .animation_character#animation_moegi { /* アニメーション開始前の初期位置 */
		bottom: 60px;
		left: -100px;
	}
	.main_visual .animation_character#animation_arthur { /* アニメーション開始前の初期位置 */
		top: 40px;
		left: 100%;
		right: -100px;
	}
	.main_visual .animation_character#animation_raran { /* アニメーション開始前の初期位置 */
		bottom: 40px;
		left: 100%;
		right: -100px;
	}
	.main_visual .animation_character.loaded { /* ロード完了後にアニメーション開始。ロード中から開始するとカクつくため */
		display: inline-block;
		transform: translate3d(0, 0, 0);
		will-change: transform;
	}
	.main_visual .animation_character.loaded#animation_bun {
		animation: animation_bun_sp 2s ease;
	}
	.main_visual .animation_character.loaded#animation_moegi {
		animation: animation_moegi_sp 2s ease;
	}
	.main_visual .animation_character.loaded#animation_arthur {
		animation: animation_arthur_sp 2s ease;
	}
	.main_visual .animation_character.loaded#animation_raran {
		animation: animation_raran_sp 2s ease;
	}
	.main_visual .animation_character.rotate {
		transform: translate3d(0, 0, 0);
		will-change: transform;
	}
	.main_visual .animation_character.rotate#animation_bun { /* アニメーションの停止位置 */
		animation: animation_rotate 2s ease infinite;
		top: 40px;
		left: 50%;
		margin-left: -60px;
	}
	.main_visual .animation_character.rotate#animation_moegi { /* アニメーションの停止位置 */
		animation: animation_rotate 2s ease infinite;
		left: 50%;
		bottom: 60px;
		margin-left: -130px;
	}
	.main_visual .animation_character.rotate#animation_arthur { /* アニメーションの停止位置 */
		animation: animation_rotate 2s ease infinite;
		top: 60px;
		left: 50%;
		margin-left: 60px;
	}
	.main_visual .animation_character.rotate#animation_raran { /* アニメーションの停止位置 */
		animation: animation_rotate 2s ease infinite;
		left: 50%;
		bottom: 40px;
		margin-left: 100px;
	}

	#top_banner_video {
		margin: 15px 0 8px 0;
	}
	#top_buttons .top_button {
		flex: none;
		display: block;
		max-width: 100%;
		padding-top: 8px;
	}
	#main_goal,
	#main_support,
	#main_request,
	#support_fouryears,
	#support_t1t2,
	#support_reading,
	#request_kyoshikai {
		background-size: contain;
	}
	#goal,
	#support2 {
    margin-top: 40px;
    padding-bottom: 40px;
    background: #FDFBF1;
	}
	#goal {
		padding-left: 0;
		padding-right: 0;
	}
	#goal1, #goal2, #goal3 {
		padding: 15px 0 35px !important;
	}
	#goal1 {
		background: #FFF14F;
	}
	#goal2 {
		background: #FFABCA;
	}
	#goal3 {
		background: #9AEFFF;
	}
	#goal1 > div,
	#goal2 > div,
	#goal3 > div {
		margin: 10px 0;
	}
	#goal1 > a:hover,
	#goal2 > a:hover,
	#goal3 > a:hover {
		opacity: 0.5;
	}
	#goal .mokuhyo_title {
		margin-bottom: 15px;
	}
	#goal .mokuhyo_title_banner {
		margin-bottom: 25px;
	}
	#goalthree .row > div:nth-child(2) {
		background: #fff;
	}
	#goalthree .row .goal_head > a > span {
		padding-bottom: 15px;
	}
	
	.anchor_type1 {
		display: block;
		padding-top: 70px !important;
		margin-top: -70px !important;
	}
	.anchor_type2 {
		display: block;
		padding-top: 70px !important;
		margin-top: -30px !important;
	}
	#goal object {
		margin: 0 auto;
	}
	#gakka .gakka_container {
		margin-bottom: 60px;
	}
	#gakka .gakka_container .head {
		padding: 60px 0;
	}
	#gakka .head .mokuhyo_head_title {
		margin-bottom: 20px;
	}
	#gakka #gakka_japanese .head {
		background: #CBF299;
	}
	#gakka #gakka_english .head {
		background: #FFD1D1;
	}
	#gakka #gakka_education .head {
		background: #9AEFFF;
	}
	#gakka .triangle,
	#gakka .education,
	#gakka .seminar,
	#gakka .kamoku,
	#gakka .program {
		margin-bottom: 15px;
	}
	#gakka .triangle_container {
		margin-bottom: 5px;
		background: #EFEFEF;
	}
	#gakka .triangle_top {
		position: relative;
		padding-top: 10px;
	}
	#gakka .triangle_top img:not(.triangle_title),
	#gakka .triangle_middle img {
		margin-left: -10px;
	}
	#gakka .triangle_top .triangle_title {
		width: 100%;
		position: absolute;
		top: 55px;
		margin-left: -110px;
	}
	#gakka .triangle_middle {
		position: relative;
	}
	#gakka .triangle_middle #triangle_middle_buttonTop {
		display: flex;
		justify-content: center;
		width: 100%;
		position: absolute;
		top: 5px;
	}
	#gakka .triangle_middle #triangle_middle_buttonBottom {
		display: flex;
		justify-content: center;
		width: 100%;
		position: absolute;
		bottom: 10px;
	}
	#gakka .triangle_middle #map {
		padding-right: 10px;
	}
	#gakka .triangle_middle #pickup {
		padding-left: 10px;
	}
	#gakka .triangle_middle #senmon img,
	#gakka .triangle_middle #map img,
	#gakka .triangle_middle #pickup img {
		margin: 0;
	}
	#gakka .triangle_bottom {
		position: relative;
		margin-bottom: 0;
	}
	#gakka .triangle_bottom #triangle_bottom_button {
		width: 100%;
		position: absolute;
		top: 5px;
	}
	#gakka .education {
		padding: 10px 0 30px;
	}
	#gakka #education_japanese {
		background: #CBF299 url("./img/icon_bg_arrow.svg") no-repeat top center;
	}
	#gakka #education_english {
		background: #FFF8BE url("./img/icon_bg_arrow.svg") no-repeat top center;
	}
	#gakka #education_education {
		background: #9AFFFF url("./img/icon_bg_arrow.svg") no-repeat top center;
	}	
	#gakka .education_container {
		padding-top: 40px;
	}
	#gakka .education_container img {
		margin-left: -5px;
	}
	#gakka .seminar {
		padding: 60px 0 40px;
		background: #7FFFFF;
	}
	#gakka .seminar_head {
		position: relative;
	}
	#gakka .seminar_head .seminar_icon_specialty {
		width: 100%;
		position: absolute;
		left: -135px;
		top: 30px;
	}
	#gakka .seminar_head .seminar_photo1 {
		width: 100%;
		position: absolute;
		top: -30px;
		margin-left: -270px;
	}
	#gakka .seminar_head .seminar_photo2 {
		width: 100%;
		position: absolute;
		top: -35px;
		margin-left: 320px;
	}
	#gakka .seminar_head .seminar_character {
		width: 100%;
		position: absolute;
    top: -10px;
    margin-left: 130px;
	}
	#gakka .seminar_head .seminar_character img {
		width: 66.1px;
	}
	#gakka .seminar_head .seminar_title {
		margin-bottom: 20px;
	}
	#gakka .seminar_head .seminar_BgWhite {
		padding: 20px 0;
		background: #FFF;
	}
	#gakka .seminar_body {
		padding: 15px 0;
		background: url("./img/icon_bg_arrow.svg") no-repeat top center;
	}
	#gakka .seminar_body .seminar_video .seminar_video_title {
		padding: 60px 0 30px;
	}
	#gakka .seminar_body .seminar_video_container {
		display: block;
	}
	#gakka .seminar_body .seminar_video_container span {
		padding: 0 0 30px 0;
	}
	#gakka .kamoku {
		padding: 60px 0 40px;
	}
	#gakka #kamoku_japanese {
		background: #FFF299;
	}
	#gakka #kamoku_english {
		background: #FFD1D1;
	}
	#gakka #kamoku_education {
		background: #85FFC3;
	}
	#gakka .kamoku .kamoku_head img {
		margin-left: 60px;
	}
	#gakka .kamoku#kamoku_japanese .kamoku_head img,
	#gakka .kamoku#kamoku_education .kamoku_head img {
		margin-left: 0;
	}
	#gakka .kamoku_head {
		margin-bottom: 35px;
	}
	#gakka .program {
		padding: 60px 0 40px;
	}
	#gakka #program_japanese {
		background: #FFC400;
	}
	#gakka #program_english {
		background: #85E9C3;
	}
	#gakka #program_education {
		background: #2880DA;
	}
	#gakka .program_head .program_BgWhite {
		position: relative;
		padding: 20px 0;
		margin-top: 30px;
		background: #FFF;
	}
	#gakka .program#program_education .program_head span.head_title img {
		margin-left: 60px;
	}
	#gakka .program_head .program_icon_topics {
		width: 100%;
		position: absolute;
		top: -55px;
		left: -130px;
	}
	#gakka .program_body {
		padding-top: 40px;
		background: url("./img/icon_bg_arrow.svg") no-repeat top center;
	}
	#gakka .program_body span {
		padding: 20px 0;
	}
	#gakka .video {
		padding: 60px 0 40px;
	}
	#gakka #video_japanese {
		background: #FFF14F;
	}
	#gakka #video_english {
		background: #BFD1FA;
	}
	#gakka #video_education {
		background: #9AEFFF;
	}
	#gakka .video_head {
		position: relative;
	}
	#gakka .video_head .video_icon {
		width: 100%;
		position: absolute;
		top: 0;
		left: 75px;
	}
	#gakka #video_japanese .video_head .video_icon,
	#gakka #video_education .video_head .video_icon {
		top: -10px;
		left: 110px;
	}
	#gakka .video_body {
		padding: 30px 0 20px;
	}
	#gakka .video_body .play {
		margin-bottom: 50px;
	}
	
	#support {
		margin-bottom: 30px;
	}
	#support span.print {
		display: none;
	}
	#support .check {
		margin-top: -25px;
	}
	#support2 {
		margin-top: 0;
	}
	#request2 {
		padding-top: 20px;
	}
	#request2 > div > .pb-3 {
		margin-bottom: 60px;
	}
	#request2 > div > .pb-3:nth-child(2) {
		margin-bottom: 20px;
	}
	#request2 > div > .pb-3:last-child {
		margin-bottom: 40px;
	}
	#as-live {
		margin-bottom: 80px;
	}

	.pt-5, .py-5 {
		padding-top: 0.2rem !important;
	}
	.pt-5 img, .py-5 img {
		max-width: 40px;
	}
	footer {
		padding-top: 30px;
		padding-bottom: 30px;
		font-size: 0.75em;
		text-align: center;
		background: #FFEA00;
	}
	.sp {
		display: block;
	}
	.d-inline-block {
		width: auto;
		height: auto;
	}
	.clearfix:after {
		content: "";
		display: block;
		clear: both;
	}
	.js-sf-group-top .js-sf-item {
		transition: top .35s ease, opacity .35s ease;
		transition-delay: 0.25s;
	}
	.js-sf-group-top .sf-hidden {
		position: relative;
		top: 10px;
		opacity: 0;
	}
	.js-sf-group-top .sf-visible {
		top: 0;
		opacity: 1;
	}
	.js-sf-group-left .js-sf-item {
		transition: left .45s ease,	opacity .45s ease;
		transition-delay: 0.25s;
	}
	.js-sf-group-left	.sf-hidden {
		position: relative;
		left: -40px;
		opacity: 0;
	}
	.js-sf-group-left	.sf-visible {
		left: 0;
		opacity: 1;
	}
	.js-sf-group-right .js-sf-item {
		transition: right .45s ease,	opacity .45s ease;
		transition-delay: 0.25s;
	}
	.js-sf-group-right	.sf-hidden {
		position: relative;
		right: -40px;
		opacity: 0;
	}
	.js-sf-group-right	.sf-visible {
		right: 0;
		opacity: 1;
	}
	.btn-click {
		animation: bound .3s ease infinite alternate;
	}
	#pageTop {
		position: fixed;
		bottom: 10px;
		right: 10px;
	}
	#pageTop a {
		display: block;
		z-index: 999;
		width: 60px;
		height: 60px;
	}
	#pageTop a:hover {
		text-decoration: none;
	}
	#pageTop a:hover img {
		opacity: 1.0;
	}	
}

/*******************************************/

/** PC向け **/

/*******************************************/
@media (min-width: 992px), print {
	.sp {
		display: none;
	}
	body {
		padding-top: 72.8px;
	}
	body.home #topnav {
		margin-bottom: 40px;
	}
	#nav_goal	{
			background-image: url("./img/nav_mokuhyo.svg");
	}
	#nav_support {
			background-image: url("./img/nav_shien.svg");
	}
	#nav_request {
			background-image: url("./img/nav_yosei.svg");
	}
	#nav_character {
			background-image: url("./img/nav_character.svg");
	}
	#nav_official	{
			background-image: url("./img/nav_koshiki.svg");
	}

	.container {
		padding-top: 0;
	}
	
	.main_visual .animation_bg {
		padding: 30px 0;
	}
	.main_visual .animation_bg img {
		margin-top: 50px;
	}
	.main_visual .animation_bg img {
		max-height: none;
	}
	.main_visual .animation_character {
		display: none;
		width: 110px;
		position: absolute;
		z-index: 100;
	}
	.main_visual .animation_character img {
		width: 110px;
	}
	.main_visual .animation_character#animation_bun { /* アニメーション開始前の初期位置 */
		width: 140px;
		top: -200px;
		left: 50%;
	}
	.main_visual .animation_character#animation_bun img {
		width: 140px;
	}
	.main_visual .animation_character#animation_moegi { /* アニメーション開始前の初期位置 */
		bottom: 100px;
		left: -100px;
	}
	.main_visual .animation_character#animation_arthur { /* アニメーション開始前の初期位置 */
		top: 40px;
		left: 100%;
		right: -100px;
	}
	.main_visual .animation_character#animation_raran { /* アニメーション開始前の初期位置 */
		bottom: 90px;
		left: 100%;
		right: -100px;
	}
	.main_visual .animation_character.loaded#animation_bun {
		animation: animation_bun 2s ease;
	}
	.main_visual .animation_character.loaded#animation_moegi {
		animation: animation_moegi 2s ease;
	}
	.main_visual .animation_character.loaded#animation_arthur {
		animation: animation_arthur 2s ease;
	}
	.main_visual .animation_character.loaded#animation_raran {
		animation: animation_raran 2s ease;
	}
	.main_visual .animation_character.rotate {
		transform: translate3d(0, 0, 0);
		will-change: transform;
	}
	.main_visual .animation_character.rotate#animation_bun { /* アニメーションの停止位置 */
		animation: animation_rotate 2s ease infinite;
		top: 80px;
		left: 50%;
		margin-left: -120px;
	}
	.main_visual .animation_character.rotate#animation_moegi { /* アニメーションの停止位置 */
		animation: animation_rotate 2s ease infinite;
		left: 50%;
		bottom: 100px;
		margin-left: -300px;
	}
	.main_visual .animation_character.rotate#animation_arthur { /* アニメーションの停止位置 */
		animation: animation_rotate 2s ease infinite;
		top: 110px;
		left: 50%;
		margin-left: 150px;
	}
	.main_visual .animation_character.rotate#animation_raran { /* アニメーションの停止位置 */
		animation: animation_rotate 2s ease infinite;
		left: 50%;
		bottom: 90px;
		margin-left: 300px;
	}	
	
	#top_banner_video {
		margin: 50px 0 20px 0;
	}
	#top_buttons {
		margin-top: 50px;
	}
	#top_buttons .top_button {
		flex: 0 0 33.333333%;
	}
	#goal {
		margin-top: 0;
	}
	#goal,
	#support2 {
    padding-bottom: 70px;
	}
	#support2 {
		padding-top: 120px;
	}
	#goal .mokuhyo_title {
		margin-bottom: 25px;
	}
	#goal .mokuhyo_title_banner {
		margin-bottom: 30px;
	}
	#goalthree {
		padding-top: 0 !important;
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
	#goal1, #goal2, #goal3 {
		padding: 0 0 8px !important;
	}
	#goalthree .row > div:nth-child(2) {
		background: inherit;
	}
	#goalthree .row .col-lg-4 {
		flex: none;
		width: 268px !important;
		margin: 0 12.5px !important;
		padding: 0 !important;
	}
	#goalthree .row .goal_head {
		margin: 0;
		padding: 15px 0;
	}
	#goalthree .row #goal1 .goal_head {
		background: #FFF14F;
	}
	#goalthree .row #goal2 .goal_head {
		background: #FFABCA;
	}
	#goalthree .row #goal3 .goal_head {
		background: #9AEFFF;
	}
	#goalthree .row .goal_video {
		margin-top: 0;
	}
	
	#gakka .gakka_container {
		margin-bottom: 80px;
	}
	#gakka .gakka_container .head {
		padding: 60px 0;
		margin-bottom: 10px;
	}
	#gakka .gakka_container .head {
		position: relative;
	}
	#gakka .gakka_container .head .float_img {
		position: absolute;
    width: 100%;
    top: 70px;
    left: 340px;
	}
	#gakka .triangle_container {
		margin-bottom: 10px;
	}
	#gakka .triangle_top .triangle_title {
		top: 68px;
		margin-left: -165px;
	}
	#gakka .triangle_middle #triangle_middle_buttonTop {
		top: 15px;
	}
	#gakka .education_container img {
		margin-left: 0;
	}
	#gakka .seminar_head .seminar_character {
		top: -18px;
    margin-left: 165px;
	}	
	#gakka .seminar_head .seminar_character img {
		width: auto;
	}
	#gakka .seminar_head .seminar_title {
		margin-bottom: 0;
	}	
	#gakka .seminar_head .seminar_icon_specialty {
		left: -330px;
		top: 128px;
	}
	#gakka .seminar_head .seminar_BgWhite {
		margin-top: 15px;
	}
	#gakka .seminar_body .seminar_video .seminar_video_title {
		padding: 60px 0 30px;
	}
	#gakka .seminar_body .seminar_video_container {
		display: flex;
		justify-content: center;
	}
	#gakka .seminar_body .seminar_video_container span {
		padding: 0 30px;
	}
	#gakka .kamoku .kamoku_head img {
		margin-left: 85px;
	}
	#gakka .kamoku#kamoku_japanese .kamoku_head img,
	#gakka .kamoku#kamoku_education .kamoku_head img {
		margin-left: -10px;
	}
	#gakka .program#program_education .program_head span.head_title img {
		margin-left: 130px;
	}
	#gakka .program_head .program_icon_topics {
		left: -250px;
	}
	#gakka .program_body {
		display: flex;
		justify-content: center;
	}
	#gakka .program_body span {
		padding: 0 30px;
	}	
	#gakka .video_head {
		padding-top: 15px;
	}
	#gakka .video_head .video_icon {
		left: 185px;
	}
	#gakka #video_japanese .video_head .video_icon,
	#gakka #video_education .video_head .video_icon {
		top: 0;
		left: 185px;
	}
	#pageTop {
		bottom: 20px;
		right: 20px;
	}
	#pageTop a {
		width: 80px;
		height: 80px;
	}
	
	#request2 {
		padding-top: 80px;
	}
	#request2 > div > .pb-3 {
		margin-bottom: 100px;
	}
	#request2 > div > .pb-3:nth-child(2) {
		margin-bottom: 50px;
	}
	#request2 > div > .pb-3:last-child {
		margin-bottom: 30px;
	}
	#as-live {
		margin-bottom: 150px;
	}
	#as-live span img {
		max-width: 845px;
	}
	.btn-click {
		padding-top: 40px !important;
	}
	#btn-click-first {
		padding-top: 0 !important;
	}
	.btn-click img {
		width: 60px;
		max-width: 60px;
	}
}

/*******************************************/

/** 印刷用 **/

/*******************************************/
@media print {
	.d-lg-none {
		display: none!important;
	}
	.d-lg-inline {
    display: inline!important;
	}
	#goal {
		page-break-before: always;
	}
	#support span:not(.print) {
		display: none !important;
	}
	#support span.print {
		display: block;
	}
	#support div.d-none {
		display: none;
	}
	#pageTop {
		display: none;
	}
	.svg_wrap svg {
		display: none;
	}
	.svg_wrap #top_main-image {
		position: static;
		display: block !important;
	}
	.js-sf-group-top .js-sf-item {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	
}