@charset "utf-8";
/*common
==============================================*/
:root{
	--text-color-base:#101010;
	--color-red: #D8213A;
	--color-orange:#BA4415;
	--animation-sec: all .4s ease;
	--lp-color-mainblue: #0D65A2;
}
html {
	height:100%;
	font-family:YakuHanJP, "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic",  "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, 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:4vw;
	line-height: 1.5;
}
ul li{
	font-size:3.8vw;
	line-height: 1.5;
}
ul.basic li{
	list-style-type:disc;
	margin-left:1.5em;
	margin-bottom:0.4em;
}


a {
	text-decoration: none;
}
a.orange{color:#BA4415;transition: all .4s;}
a.orange:hover{text-decoration:underline;transition: all .4s;}

@media screen and (min-width: 768px) {
	p {font-size:20px;}
	ul li{font-size:19px;}
}
@media screen and (min-width:960px){
	img {
		width: 100%;
	}

	a:hover {
		opacity: .8;
		cursor: pointer;
	}
}

@media screen and (min-width:960px){
	.frm_w {
		max-width:1000px;
		margin-left:auto;margin-right:auto;
	}
}

/*PC SP画像切り替えcss*/
.switch {
	visibility: hidden;
}

/*Header
==============================================*/

#header {
	width: 100%;
	padding: 2.01% 0;
	background:rgba(240,240,240,.95);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
/*	border-bottom:1px solid #707070; */
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
	height:60px;
}

#header .logo {
	width: 40%;
	margin:auto;
}

#header_block{
	display:flex;
	justify-content:space-between;
	align-items: center;
	height:100%;
}

@media screen and (min-width:768px){/*tablet*/
	#header {
		padding: 1% 3%;
		height:60px;
	}
	#header .logo img{
		width: 180px;
	}
}
@media screen and (min-width:960px){/*PC*/
	#header {
		height:60px;
		padding: 0;
	}
	
	#header .logo {
		padding-left:0px;
	}
}


/*nav*/
#global_nav {
	width: 100%;
	position: absolute;
	top: 100%;
	right: -102%;
	-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 (max-width:959px){
	#global_nav {
		background:rgba(240,240,240,.95);
	}
	#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% - 280px);
		position:relative;
		top:0;right:0;
	}
	#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:16px;
		padding-right:15px;
		margin-bottom:0;
		height:auto;
	}
	#global_nav ul li.last{padding-right:0px;}
	#global_nav ul li a{
		color:var(--color-orange);
		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-orange);
		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%;}
	

	#header .header_contact {
		width:230px;
		padding-right:0px;
		text-align: right;
		font-size: 18px;
	}
	
	#header .header_contact a {
		color: #fff;
		border: 2px solid var(--color-orange);
		background-color: var(--color-orange);
		border-radius: 0.25em;
		padding: 0.2em 1em;
		transition: var(--animation-sec);
	}
	#header .header_contact a:hover{
		background-color: #fff;
		color: var(--color-orange);
		transition: var(--animation-sec);
	}

}

/*nav END*/
/*header END*/


/*global_navigation
==============================================*/
/*ナビゲーションボタン*/
#global_nav_btn {
	margin-top: -10px;
	position: absolute;
	top: 50%;
	right: 3%;
}

#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: 28px;
	height: 20px;
}

#global_nav_btn .menu_trigger span {
	width: 100%;
	height: 3px;
	background-color: var(--text-color-base);
	border-radius: 4px;
	position: absolute;
	left: 0;
}

#global_nav_btn .menu_trigger span.top {
	top: 0;
}

#global_nav_btn .menu_trigger span.middle {
	top: 8.2px;
}

#global_nav_btn .menu_trigger span.bottom {
	bottom: 0;
}


/*クリック後*/
#global_nav_btn .menu_trigger.active span.top {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) 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(-9px) rotate(45deg);
	transform: translateY(-9px) rotate(45deg);
}


/*footer
==============================================*/
#footer {
	background:#191919;
	padding: 40px 0 17%;
	color:#C5C5C5;
}

#footer .footer_logo{text-align:center;}
#footer .footer_logo img{width:150px;}
#footer .footer_text{padding:20px 50px;line-height:2em;}
#footer .footer_banner{padding:0 20px 40px;}
#footer .footer_banner img{width:100%;}

#footer .copyright {
	font-size: 2.5vw;
	text-align: center;
}


@media screen and (min-width: 768px) {
	#footer .footer_logo{text-align:left;}
	#footer .footer_text{font-size:14px;padding:20px 0 0px;}
	#footer {padding: 40px 0px 20px;}
	#footer .copyright {font-size:14px;}
	#footer .copyright_outer{
		display: flex;
    align-items: flex-end;
    justify-content: flex-end;
	}
	.fixed_contact {
		position: fixed;
		bottom: 0;
		right: 0;
	}
}
@media screen and (min-width: 960px) {
}


/*トップへ戻るボタン*/
#pagetop {
	position: fixed;
	right: 2%;
	bottom: 8%;
	display: none;
	width:60px;
	height:60px;
	z-index:5;
}

@media screen and (min-width:768px){
	#pagetop {
		right: 4.5%;
		bottom: 70px;
	}
}

/*スマホ下部固定お問い合わせ*/
#sp_foot_contact {
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	background:#fff;
	text-align:center;
	padding:5px 0 5px;
	z-index:5;
}
#sp_foot_contact .footer_contact {
	font-size: 6vw;
	margin:0.5em auto;
}

#sp_foot_contact .footer_contact a {
	color: #fff;
	border: 2px solid var(--color-orange);
	background-color: var(--color-orange);
	border-radius: 10px;
	padding: 0.2em 1.5em;
	transition: var(--animation-sec);
}
#sp_foot_contact .footer_contact a:hover{
	background-color: #fff;
	color: var(--color-orange);
	transition: var(--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-xxs	{ margin-right: 5px;}
.mr-xs	{ margin-right: 10px;}
.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-slg	{ margin-bottom: 60px;}
.mb-lg	{ margin-bottom: 80px;}
.mb-xl	{ margin-bottom: 160px;}
.ml-0	{ margin-left: 0;}
.ml-xxs	{ margin-left: 5px;}
.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-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-xl	{padding-bottom:80px;}
.p-20{padding:20px;}


/*------------------------------------------------------------
    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;
    }
}
.fx-row-align-end-xs {
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
}

[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%;
    }
}