@charset "utf-8";
/*common
==============================================*/
:root{
	--color-darkgreen: #0C5F6D;
	--text-color-base:	#2D2D2D;
	--color-nicolessgreen: #0C706E;
}
html {
	height:100%;
	font-family:"Noto Sans JP", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 62.5%;
	color: var(--text-color-base);
	line-height: 1;
}

@media screen and (min-width:360px){
	html {
		font-size: 73.1%;
	}
}


body {
	width: 100%;
	font-size: 1rem;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
	width: auto;
	vertical-align: bottom;
}

p {
	font-size: 1.4rem;
	line-height: 1.8;
	margin-bottom:1em;
}
p.no_margin_bottom {
	margin-bottom:0;
}


a {
	text-decoration: none;
	transition:.4s;
}
a.orange{color:#da7328;transition: all .4s;}
a.orange:hover{text-decoration:underline;transition: all .4s;}

@media screen and (min-width:960px){
	img {
		width: 100%;
	}

	a:hover {
		opacity: .8;
		cursor: pointer;
		transition:.4s;
	}
}

@media screen and (max-width:767px){

}

@media screen and (min-width:960px){
	.frm_w {
		max-width:1200px;
		margin-left:auto;margin-right:auto;
	}
}

/*PC SP画像切り替えcss*/
.switch {
	visibility: hidden;
}

/*Header
==============================================*/

#header {
	width: 100%;
	padding: 2.01% 0;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	height:60px;
}

.container {
    padding-top: 50px !important;
}


#header .logo {
	width: 33%;
	padding-left:4%;
}

#header_block{
	position: relative;
	display:flex;
	justify-content:space-between;
	align-items: center;
	height:100%;
}

#header .sns {
	position: absolute;
	right: 55px;
	width: 60px;
	height: 60px;
	padding:10px 0px 10px 10px;
}
#header .sns img{
	height:100%;
}


@media screen and (min-width:768px){/*tablet*/
	#header {
		padding: 0 3%;
		height:60px;
	}
	#header .logo {
		width: 160px;
		padding-left:10px;
	}
	#header_block{
		height:60px;
	}
}
@media screen and (min-width:960px){/*PC*/
	#header {
		height:60px;
		padding: 0;
	}
	#header .logo {
		padding-left:0;
	}
	#header_block{
		height:60px;
	}
	#header .sns {
		position: relative;
		right:0;
	}
	#header .header_contact {
		width: 25%;
		max-width:220px;
		padding-right:20px;
		text-align: right;
		font-size: 1.4rem;
	}
	
	#header .header_contact a {
		color: #21646E;
		border: 2px solid #21646E;
		border-radius: 5px;
		padding: 0.1em 1em;
		transition: all .4s;
	}
	#header .header_contact a:hover{
		background-color: #21646E;
		color: #fff;
		transition: all .4s;
	}
}


/*nav*/
#global_nav {
	width: 100%;
	background: #fff;
	position: absolute;
	top: 100%;
	right: -100%;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

#global_nav.active {
	right: 0;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	z-index: 9999;
}

#global_nav ul {
	padding: 0 5.64%;
	font-size: 1.44em;
	vertical-align: baseline;
	overflow: scroll;
}

#global_nav ul li a{
	position: relative;
	padding: 5.31% 3.62%;
	color: var(--text-color-base);
	display: block;
}

#global_nav ul li a i{
	font-size: 1.44em;
	color: var(--text-color-base);
	position: absolute;
	top: 27%;
	right: 3%;
}

@media screen and (min-width:768px){/*tablet*/
	#global_nav {

	}
}
@media screen and (max-width:959px){
	#global_nav ul li:not(:last-of-type){
		border-bottom: solid 1px rgba(35,24,21,.4);
	}

	#global_nav ul li a i{
		top: 34%;
	}
}


@media screen and (min-width:960px){
	#global_nav_btn,
	#global_nav li i {
		display: none !important;
	}
	
	/*nav*/
	#global_nav {
		width: calc(100% - 250px);
		position:relative;
		top:0;right:0;
		background-color:transparent;
	}
	#global_nav ul{
		display:flex;
		justify-content:flex-end;
		align-items:center;
		height:60px !important;
		padding:0;
		overflow:hidden;
	}
	#global_nav ul li{
		font-size:1.4rem;
		padding-left:30px;
		margin-bottom:0;
		height:auto;
	}
	#global_nav ul li.last{padding-right:0px;}
	#global_nav ul li a{
		color:var(--color-darkgreen);
		padding:0px;
		text-align:center;
		display:block;
		position: relative;
		height:100%;
	}
	#global_nav ul li a::before,
	#global_nav ul li a::after {
		border-bottom: none;
		bottom: -10px;
		content: "";
		display: block;
		position: absolute;
		transition: all .3s ease;
		background:var(--color-darkgreen);
		height:1px;
		width: 0;
	}
	#global_nav ul li a:hover{opacity:1;}
	#global_nav ul li a:hover::before,
	#global_nav ul li a:hover::after {width: 100%;}
}
/*nav END*/
/*header END*/


/*global_navigation
==============================================*/
/*ナビゲーションボタン*/
#global_nav_btn {
	margin-top: -10px;
	position: absolute;
	top: 50%;
	right: 4%;
}

#global_nav_btn .menu_trigger,
#global_nav_btn .menu_trigger span {
	display: block;
	transition: all .4s;transition: all .4s;
	box-sizing: border-box;
}

#global_nav_btn .menu_trigger {
	position: relative;
	width: 35px;
	height: 20px;
}

#global_nav_btn .menu_trigger span {
	width: 100%;
	height: 4px;
	background-color: var(--color-darkgreen);
	position: absolute;
	left: 0;
}

#global_nav_btn .menu_trigger span.top {
	top: 3px;
}

#global_nav_btn .menu_trigger span.middle {
	top: 8.2px;
}

#global_nav_btn .menu_trigger span.bottom {
	bottom: 3px;
}

#global_nav_btn .menu_trigger span.menu {
	background: none;
	bottom: -9px;
	left: -3px;
	color: var(--color-darkgreen);
	font-size: .8rem;
	text-align: center;
}

/*クリック後*/
#global_nav_btn .menu_trigger.active span.top {
	-webkit-transform: translateY(5px) rotate(-45deg);
	transform: translateY(5px) rotate(-45deg);
}
#global_nav_btn .menu_trigger.active span.middle {
	left: 50%;
	opacity: 0;
	-webkit-animation: active-menu-bar02 .8s forwards;
	animation: active-menu-bar02 .8s forwards;
}
@-webkit-keyframes active-menu-bar02 {
	100% {
		height: 0;
	}
}
@keyframes active-menu-bar02 {
	100% {
		height: 0;
	}
}

#global_nav_btn .menu_trigger.active span.bottom {
	-webkit-transform: translateY(-5px) rotate(45deg);
	transform: translateY(-5px) rotate(45deg);
}




/*footer
==============================================*/
#footer {
	width: 100%;
	background:#000;
}

#footer .copyright {
	padding: 3% 0 3%;
	text-align: center;
	color:#fff;
}
.footer_menu{padding:30px 0;}
.footer_menu li{
	text-align:center;
	font-size:1.4rem;
	margin-bottom:1em;
}
.footer_menu a{
	color:#fff;
}
.copyright{background:#000;}
.copyright small {
	font-size: 1.03rem;
	text-align: center;
}

@media screen and (min-width:768px){
	#footer .copyright {padding:10px 0 20px;}
	.footer_menu li{
		font-size:1.2rem;
	}
	.fixed_contact {
		position: fixed;
		bottom: 0;
		right: 0;
	}
}



/*トップへ戻るボタン*/
#pagetop {
	position: fixed;
	right: 10px;
	bottom: 10px;
	display: none;
	width:60px;
	height:85px;
	z-index:4;
}

@media screen and (min-width:768px){
	#pagetop {
		right: 3%;
		bottom: 10px;
	}
}

/*スマホ下部固定お問い合わせ*/
#sp_foot_contact {
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	background:#fff;
	text-align:center;
	padding:5px 0 5px;
	border-top:1px solid #707070;
}
#sp_foot_contact .footer_contact {
	font-size: 6vw;
	margin:0.5em auto;
}

#sp_foot_contact .footer_contact a {
	color: #FB119D;
	border: 2px solid #FB119D;
	border-radius: 5px;
	padding: 0.2em 1.5em;
	transition: var(--gs-animation-sec);
}
#sp_foot_contact .footer_contact a:hover{
	background-color: #FB119D;
	color: #fff;
	transition: var(--gs-animation-sec);
}

@media screen and (min-width:768px){
	#sp_foot_contact {
		display: none;
	}
}



/*デバイス判別*/
@media screen and (max-width:959px){
	.tablet,
	.pc {
		display: none !important;
	}
	
	.sp {
		display: block !important;
	}
}

@media screen and (min-width:768px){
	.sp {
		display: none !important;
	}
	
	.tablet {
		display: block !important;
	}
}

@media screen and (min-width:960px){
	.sp,
	.tablet {
		display: none !important;
	}
	
	.pc {
		display: block !important;
	}
}

/*------------------------------------------------------------
    margin
------------------------------------------------------------*/
.mt-0	{ margin-top: 0;}
.mt-xs	{ margin-top: 20px;}
.mt-md	{ margin-top: 40px;}
.mt-lg	{ margin-top: 80px;}
.mt-xl	{ margin-top: 160px;}
.mr-0	{ margin-right: 0;}
.mr-xs	{ margin-right: 5px;}
.mr-md	{ margin-right: 20px;}
.mr-lg	{ margin-right: 40px;}
.mr-xl	{ margin-right: 80px;}
.mb-0	{ margin-bottom: 0;}
.mb-1em	{ margin-bottom: 1em;}
.mb-xs	{ margin-bottom: 10px;}
.mb-s	{ margin-bottom: 20px;}
.mb-md	{ margin-bottom: 40px;}
.mb-lg	{ margin-bottom: 80px;}
.mb-xl	{ margin-bottom: 160px;}
.ml-0	{ margin-left: 0;}
.ml-xs	{ margin-left: 10px;}
.ml-md	{ margin-left: 20px;}
.ml-lg	{ margin-left: 40px;}
.ml-xl	{ margin-left: 80px;}

.pt-0	{padding-top:0;}
.pt-xs10	{padding-top:10px;}
.pt-xs	{padding-top:20px;}
.pt-md	{padding-top:40px;}
.pt-lg	{padding-top:60px;}
.pt-xl	{padding-top:80px;}
.pb-0	{padding-bottom:0px;}
.pb-xs10	{padding-bottom:10px;}
.pb-xs	{padding-bottom:20px;}
.pb-md	{padding-bottom:40px;}
.pb-lg	{padding-bottom:60px;}
.pb-xl	{padding-bottom:80px;}


/*------------------------------------------------------------
    fox.css layout
------------------------------------------------------------*/
.fx-row {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.fx-row-3-xs {
    margin-top: -3px;
    margin-left: -1.5px;
    margin-right: -1.5px;
}
.fx-row-5-xs {
    margin-top: -5px;
    margin-left: -2.5px;
    margin-right: -2.5px;
}
.fx-row-10-xs {
    margin-top: -10px;
    margin-left: -5px;
    margin-right: -5px;
}
.fx-row-15-xs {
    margin-top: -15px;
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.fx-row-20-xs {
    margin-top: -20px;
    margin-left: -10px;
    margin-right: -10px;
}
.fx-row-30-xs {
    margin-top: -30px;
    margin-left: -15px;
    margin-right: -15px;
}
.fx-row-40-xs {
    margin-top: -40px;
    margin-left: -20px;
    margin-right: -20px;
}
.fx-row-50-xs {
    margin-top: -50px;
    margin-left: -25px;
    margin-right: -25px;
}
.fx-row-60-xs {
    margin-top: -60px;
    margin-left: -30px;
    margin-right: -30px;
}

@media screen and (min-width: 768px) {
    .fx-row-0-s {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .fx-row-3-s {
        margin-top: -3px;
        margin-left: -1.5px;
        margin-right: -1.5px;
    }
    .fx-row-5-s {
        margin-top: -5px;
        margin-left: -2.5px;
        margin-right: -2.5px;
    }
    .fx-row-10-s {
        margin-top: -10px;
        margin-left: -5px;
        margin-right: -5px;
    }
    .fx-row-15-s {
        margin-top: -15px;
        margin-left: -7.5px;
        margin-right: -7.5px;
    }
    .fx-row-20-s {
        margin-top: -20px;
        margin-left: -10px;
        margin-right: -10px;
    }
    .fx-row-30-s {
        margin-top: -30px;
        margin-left: -15px;
        margin-right: -15px;
    }
    .fx-row-40-s {
        margin-top: -40px;
        margin-left: -20px;
        margin-right: -20px;
    }
    .fx-row-50-s {
        margin-top: -50px;
        margin-left: -25px;
        margin-right: -25px;
    }
    .fx-row-60-s {
        margin-top: -60px;
        margin-left: -30px;
        margin-right: -30px;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 992px) {
    .fx-row-0-m {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .fx-row-3-m {
        margin-top: -3px;
        margin-left: -1.5px;
        margin-right: -1.5px;
    }
    .fx-row-5-m {
        margin-top: -5px;
        margin-left: -2.5px;
        margin-right: -2.5px;
    }
    .fx-row-10-m {
        margin-top: -10px;
        margin-left: -5px;
        margin-right: -5px;
    }
    .fx-row-15-m {
        margin-top: -15px;
        margin-left: -7.5px;
        margin-right: -7.5px;
    }
    .fx-row-20-m {
        margin-top: -20px;
        margin-left: -10px;
        margin-right: -10px;
    }
    .fx-row-30-m {
        margin-top: -30px;
        margin-left: -15px;
        margin-right: -15px;
    }
    .fx-row-40-m {
        margin-top: -40px;
        margin-left: -20px;
        margin-right: -20px;
    }
    .fx-row-45-m {
        margin-top: -40px;
        margin-left: -22.5px;
        margin-right: -22.5px;
    }
    .fx-row-50-m {
        margin-top: -50px;
        margin-left: -25px;
        margin-right: -25px;
    }
    .fx-row-60-m {
        margin-top: -60px;
        margin-left: -30px;
        margin-right: -30px;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1200px) {
    .fx-row-0-l {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .fx-row-3-l {
        margin-top: -3px;
        margin-left: -1.5px;
        margin-right: -1.5px;
    }
    .fx-row-5-l {
        margin-top: -5px;
        margin-left: -2.5px;
        margin-right: -2.5px;
    }
    .fx-row-10-l {
        margin-top: -10px;
        margin-left: -5px;
        margin-right: -5px;
    }
    .fx-row-15-l {
        margin-top: -15px;
        margin-left: -7.5px;
        margin-right: -7.5px;
    }
    .fx-row-20-l {
        margin-top: -20px;
        margin-left: -10px;
        margin-right: -10px;
    }
    .fx-row-30-l {
        margin-top: -30px;
        margin-left: -15px;
        margin-right: -15px;
    }
    .fx-row-40-l {
        margin-top: -40px;
        margin-left: -20px;
        margin-right: -20px;
    }
    .fx-row-50-l {
        margin-top: -50px;
        margin-left: -25px;
        margin-right: -25px;
    }
    .fx-row-60-l {
        margin-top: -60px;
        margin-left: -30px;
        margin-right: -30px;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1500px) {
    .fx-row-0-xl {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .fx-row-3-xl {
        margin-top: -3px;
        margin-left: -1.5px;
        margin-right: -1.5px;
    }
    .fx-row-5-xl {
        margin-top: -5px;
        margin-left: -2.5px;
        margin-right: -2.5px;
    }
    .fx-row-10-xl {
        margin-top: -10px;
        margin-left: -5px;
        margin-right: -5px;
    }
    .fx-row-15-xl {
        margin-top: -15px;
        margin-left: -7.5px;
        margin-right: -7.5px;
    }
    .fx-row-20-xl {
        margin-top: -20px;
        margin-left: -10px;
        margin-right: -10px;
    }
    .fx-row-30-xl {
        margin-top: -30px;
        margin-left: -15px;
        margin-right: -15px;
    }
    .fx-row-40-xl {
        margin-top: -40px;
        margin-left: -20px;
        margin-right: -20px;
    }
    .fx-row-50-xl {
        margin-top: -50px;
        margin-left: -25px;
        margin-right: -25px;
    }
    .fx-row-60-xl {
        margin-top: -60px;
        margin-left: -30px;
        margin-right: -30px;
    }
    .fx-row-90-xl {
        margin-top: -90px;
        margin-left: -45px;
        margin-right: -45px;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1800px) {
    .fx-row-120-xll {
        margin-top: -120px;
        margin-left: -60px;
        margin-right: -60px;
    }
}
/* ----- media END ----- */

.fx-row-start-xs {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
}
.fx-row-center-xs {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
}
.fx-row-end-xs {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
}
.fx-row-between-xs {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.fx-row-around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

@media screen and (min-width: 768px) {
    .fx-row-start-s {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
    .fx-row-center-s {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .fx-row-end-s {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
    .fx-row-between-s {
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .fx-row-around-s {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}

@media screen and (min-width: 992px) {
    .fx-row-start-m {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
    .fx-row-center-m {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .fx-row-end-m {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
    .fx-row-between-m {
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .fx-row-around-m {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}

@media screen and (min-width: 1200px) {
    .fx-row-start-l {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
    .fx-row-center-l {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .fx-row-end-l {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
    .fx-row-between-l {
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .fx-row-around-l {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}

@media screen and (min-width: 1500px) {
    .fx-row-start-xl {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
    .fx-row-center-xl {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .fx-row-end-xl {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
    .fx-row-between-xl {
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .fx-row-around-xl {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}


.fx-row-reverse-xs {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}

@media screen and (min-width: 768px) {
    .fx-row-reverse-s {
        -ms-flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }
}

@media screen and (min-width: 992px) {
    .fx-row-reverse-m {
        -ms-flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }
}

@media screen and (min-width: 1200px) {
    .fx-row-reverse-l {
        -ms-flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }
}

@media screen and (min-width: 1200px) {
    .fx-row-reverse-xl {
        -ms-flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }
}


.fx-row-align-center-xs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .fx-row-align-center-s {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media screen and (min-width: 992px) {
    .fx-row-align-center-m {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media screen and (min-width: 1200px) {
    .fx-row-align-center-l {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media screen and (min-width: 1200px) {
    .fx-row-align-center-xl {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}


[class*="fx-col"] {
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
}
.fx-row-3-xs>[class*="fx-col"] {
    margin-top: 3px;
    padding-left: 1.5px;
    padding-right: 2.5px;
}
.fx-row-5-xs>[class*="fx-col"] {
    margin-top: 5px;
    padding-left: 2.5px;
    padding-right: 2.5px;
}
.fx-row-10-xs>[class*="fx-col"] {
    margin-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
}
.fx-row-15-xs>[class*="fx-col"] {
    margin-top: 15px;
    padding-left: 7.5px;
    padding-right: 7.5px;
}
.fx-row-20-xs>[class*="fx-col"] {
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
}
.fx-row-30-xs>[class*="fx-col"] {
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
}
.fx-row-40-xs>[class*="fx-col"] {
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
}
.fx-row-50-xs>[class*="fx-col"] {
    margin-top: 50px;
    padding-left: 25px;
    padding-right: 25px;
}
.fx-row-60-xs>[class*="fx-col"] {
    margin-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
}

@media screen and (min-width: 768px) {
    .fx-row-0-s>[class*="fx-col"] {
        margin-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .fx-row-3-s>[class*="fx-col"] {
        margin-top: 3px;
        padding-left: 1.5px;
        padding-right: 2.5px;
    }
    .fx-row-5-s>[class*="fx-col"] {
        margin-top: 5px;
        padding-left: 2.5px;
        padding-right: 2.55px;
    }
    .fx-row-10-s>[class*="fx-col"] {
        margin-top: 10px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .fx-row-15-s>[class*="fx-col"] {
        margin-top: 15px;
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
    .fx-row-20-s>[class*="fx-col"] {
        margin-top: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .fx-row-30-s>[class*="fx-col"] {
        margin-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .fx-row-40-s>[class*="fx-col"] {
        margin-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .fx-row-50-s>[class*="fx-col"] {
        margin-top: 50px;
        padding-left: 25px;
        padding-right: 25px;
    }
    .fx-row-60-s>[class*="fx-col"] {
        margin-top: 60px;
        padding-left: 30px;
        padding-right: 30px;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 992px) {
    .fx-row-0-m>[class*="fx-col"] {
        margin-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .fx-row-3-m>[class*="fx-col"] {
        margin-top: 3px;
        padding-left: 1.5px;
        padding-right: 2.5px;
    }
    .fx-row-5-m>[class*="fx-col"] {
        margin-top: 5px;
        padding-left: 2.5px;
        padding-right: 2.55px;
    }
    .fx-row-10-m>[class*="fx-col"] {
        margin-top: 10px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .fx-row-15-m>[class*="fx-col"] {
        margin-top: 15px;
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
    .fx-row-20-m>[class*="fx-col"] {
        margin-top: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .fx-row-30-m>[class*="fx-col"] {
        margin-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .fx-row-40-m>[class*="fx-col"] {
        margin-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .fx-row-45-m>[class*="fx-col"] {
        margin-top: 40px;
        padding-left: 22.5px;
        padding-right: 22.5px;
    }
    .fx-row-50-m>[class*="fx-col"] {
        margin-top: 50px;
        padding-left: 25px;
        padding-right: 25px;
    }
    .fx-row-60-m>[class*="fx-col"] {
        margin-top: 60px;
        padding-left: 30px;
        padding-right: 30px;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1200px) {
    .fx-row-0-l>[class*="fx-col"] {
        margin-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .fx-row-3-l>[class*="fx-col"] {
        margin-top: 3px;
        padding-left: 1.5px;
        padding-right: 2.5px;
    }
    .fx-row-5-l>[class*="fx-col"] {
        margin-top: 5px;
        padding-left: 2.5px;
        padding-right: 2.55px;
    }
    .fx-row-10-l>[class*="fx-col"] {
        margin-top: 10px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .fx-row-15-l>[class*="fx-col"] {
        margin-top: 15px;
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
    .fx-row-20-l>[class*="fx-col"] {
        margin-top: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .fx-row-30-l>[class*="fx-col"] {
        margin-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .fx-row-40-l>[class*="fx-col"] {
        margin-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .fx-row-50-l>[class*="fx-col"] {
        margin-top: 50px;
        padding-left: 25px;
        padding-right: 25px;
    }
    .fx-row-60-l>[class*="fx-col"] {
        margin-top: 60px;
        padding-left: 30px;
        padding-right: 30px;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1500px) {
    .fx-row-0-xl>[class*="fx-col"] {
        margin-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .fx-row-3-xl>[class*="fx-col"] {
        margin-top: 3px;
        padding-left: 1.5px;
        padding-right: 2.5px;
    }
    .fx-row-5-xl>[class*="fx-col"] {
        margin-top: 5px;
        padding-left: 2.5px;
        padding-right: 2.55px;
    }
    .fx-row-10-xl>[class*="fx-col"] {
        margin-top: 10px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .fx-row-15-xl>[class*="fx-col"] {
        margin-top: 15px;
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
    .fx-row-20-xl>[class*="fx-col"] {
        margin-top: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .fx-row-30-xl>[class*="fx-col"] {
        margin-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .fx-row-40-xl>[class*="fx-col"] {
        margin-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .fx-row-50-xl>[class*="fx-col"] {
        margin-top: 50px;
        padding-left: 25px;
        padding-right: 25px;
    }
    .fx-row-60-xl>[class*="fx-col"] {
        margin-top: 60px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .fx-row-90-xl>[class*="fx-col"] {
        margin-top: 90px;
        padding-left: 45px;
        padding-right: 45px;
    }
}
/* ----- media END ----- */

@media screen and (min-width: 1800px) {
    .fx-row-120-xll>[class*="fx-col"] {
        margin-top: 120px;
        padding-left: 60px;
        padding-right: 60px;
    }
}
/* ----- media END ----- */

.fx-col-10-xs {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%;
}
.fx-col-16-xs {
    -ms-flex-preferred-size: 16.6666667%;
    flex-basis: 16.6666667%;
    max-width: 16.6666667%;
}
.fx-col-20-xs {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
}
.fx-col-25-xs {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
}
.fx-col-30-xs {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    max-width: 30%;
}
.fx-col-33-xs {
    -ms-flex-preferred-size: 33.3333%;
    flex-basis: 33.3333%;
    max-width: 33.3333%;
}
.fx-col-40-xs {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
}
.fx-col-50-xs {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}
.fx-col-60-xs {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
}
.fx-col-66-xs {
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
}
.fx-col-70-xs {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
    max-width: 70%;
}
.fx-col-75-xs {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
}
.fx-col-80-xs {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
}
.fx-col-90-xs {
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%;
    max-width: 90%;
}
.fx-col-100-xs {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    .fx-col-10-s {
        -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
        max-width: 10%;
    }
    .fx-col-16-s {
        -ms-flex-preferred-size: 16.6666667%;
        flex-basis: 16.6666667%;
        max-width: 16.6666667%;
    }
    .fx-col-20-s {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
        max-width: 20%;
    }
    .fx-col-25-s {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .fx-col-30-s {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
        max-width: 30%;
    }
    .fx-col-33-s {
        -ms-flex-preferred-size: 33.3333%;
        flex-basis: 33.3333%;
        max-width: 33.3333%;
    }
    .fx-col-40-s {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
        max-width: 40%;
    }
    .fx-col-45-s {
        -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
        max-width: 45%;
    }
    .fx-col-50-s {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .fx-col-55-s {
        -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
        max-width: 55%;
    }
    .fx-col-60-s {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
        max-width: 60%;
    }
    .fx-col-66-s {
        -ms-flex-preferred-size: 66.6666%;
        flex-basis: 66.6666%;
        max-width: 66.6666%;
    }
    .fx-col-70-s {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
        max-width: 70%;
    }
    .fx-col-75-s {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .fx-col-80-s {
        -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
        max-width: 80%;
    }
    .fx-col-90-s {
        -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
        max-width: 90%;
    }
    .fx-col-100-s {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media screen and (min-width: 992px) {
    .fx-col-10-m {
        -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
        max-width: 10%;
    }
    .fx-col-14-m {
        -ms-flex-preferred-size: 14%;
        flex-basis: 14%;
        max-width: 14%;
    }
    .fx-col-20-m {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
        max-width: 20%;
    }
    .fx-col-25-m {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .fx-col-30-m {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
        max-width: 30%;
    }
    .fx-col-33-m {
        -ms-flex-preferred-size: 33.3333%;
        flex-basis: 33.3333%;
        max-width: 33.3333%;
    }
    .fx-col-40-m {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
        max-width: 40%;
    }
    .fx-col-50-m {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .fx-col-60-m {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
        max-width: 60%;
    }
    .fx-col-66-m {
        -ms-flex-preferred-size: 66.6666%;
        flex-basis: 66.6666%;
        max-width: 66.6666%;
    }
    .fx-col-70-m {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
        max-width: 70%;
    }
    .fx-col-75-m {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .fx-col-80-m {
        -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
        max-width: 80%;
    }
    .fx-col-90-m {
        -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
        max-width: 90%;
    }
    .fx-col-100-m {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media screen and (min-width: 1200px) {
    .fx-col-10-l {
        -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
        max-width: 10%;
    }
    .fx-col-16-l {
        -ms-flex-preferred-size: 16.6666%;
        flex-basis: 16.6666%;
        max-width: 16.6666%;
    }
    .fx-col-20-l {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
        max-width: 20%;
    }
    .fx-col-25-l {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .fx-col-30-l {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
        max-width: 30%;
    }
    .fx-col-33-l {
        -ms-flex-preferred-size: 33.3333%;
        flex-basis: 33.3333%;
        max-width: 33.3333%;
    }
    .fx-col-40-l {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
        max-width: 40%;
    }
    .fx-col-50-l {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .fx-col-60-l {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
        max-width: 60%;
    }
    .fx-col-66-l {
        -ms-flex-preferred-size: 66.6666%;
        flex-basis: 66.6666%;
        max-width: 66.6666%;
    }
    .fx-col-70-l {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
        max-width: 70%;
    }
    .fx-col-75-l {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .fx-col-80-l {
        -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
        max-width: 80%;
    }
    .fx-col-90-l {
        -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
        max-width: 90%;
    }
    .fx-col-100-l {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media screen and (min-width: 1500px) {
    .fx-col-10-xl {
        -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
        max-width: 10%;
    }
    .fx-col-16-xl {
        -ms-flex-preferred-size: 16.6666%;
        flex-basis: 16.6666%;
        max-width: 16.6666%;
    }
    .fx-col-20-xl {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
        max-width: 20%;
    }
    .fx-col-25-xl {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .fx-col-30-xl {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
        max-width: 30%;
    }
    .fx-col-33-xl {
        -ms-flex-preferred-size: 33.3333%;
        flex-basis: 33.3333%;
        max-width: 33.3333%;
    }
    .fx-col-40-xl {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
        max-width: 40%;
    }
    .fx-col-50-xl {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .fx-col-60-xl {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
        max-width: 60%;
    }
    .fx-col-66-xl {
        -ms-flex-preferred-size: 66.6666%;
        flex-basis: 66.6666%;
        max-width: 66.6666%;
    }
    .fx-col-70-xl {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
        max-width: 70%;
    }
    .fx-col-75-xl {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .fx-col-80-xl {
        -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
        max-width: 80%;
    }
    .fx-col-90-xl {
        -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
        max-width: 90%;
    }
    .fx-col-100-xl {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}