@charset "UTF-8";

/*====================================

	/ Ver 1.0 /

  ----------------------------------
    Structure
  ----------------------------------

  0. RESET
  1. BASE
    1.1 Basic
    1.2 Color
		1.3 Link
		1.4 Font
		1.5 Space
		1.6 Other
  2. COLUMN
	3. LAYOUT

====================================*/



/*-------------------------------

	0. RESET

-------------------------------*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
body {
	line-height:1;
}
article, aside, dialog, figure, footer, header,
hgroup, nav, section {
	display:block;
}
nav ul, ul li {
	list-style:none;
}
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom:1px dotted #000;
	cursor:help;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
	vertical-align:middle;
}


/*-------------------------------

	1. BASE

-------------------------------*/

/*---------- 1.1 Basic ----------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
width: 100%;
overflow-y: scroll;
overflow-x: hidden;
}
body{
overflow-x: hidden;
-webkit-text-size-adjust: 100%;
}
.template,.single {
	margin-bottom: 100px;
}


/*---------- 1.2 Color ----------*/
body {color: #333;}
a {color: #333;}
a:hover {color: #333;}
a:visited {color: #333;}

/* text */
.text-white {
  color: #fff;
}
.text-primary {
  color: #e55f1c;
}
.text-secondary {
  color: #000;
}

/* background */
.bg-primary {
  background-color: #e55f1c;
}
.bg-secondary {
  background-color: #fff;
}


/*---------- 1.3 Link ----------*/
a,
a:hover,
a:visited {
	text-decoration: none;
	box-sizing: border-box;
}
a[href^="tel:"] { cursor: default; }
a.text-white:hover,
a.text-white:visited {
  color: #fff !important;
}


@media screen and (min-width: 1080px)  {
	.hov:hover{
		filter:alpha(opacity=70);
		opacity:0.7;
		transition: 0.3s;
	}
}

/*---------- 1.4 Font ----------*/
html {
	font-size: 62.5%; /*10px*/
	-webkit-text-size-adjust: 100%;
}
body{
	font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 14px; font-size: 1.4rem;
	font-weight: 400;
}
p,span {
	line-height: 1.4;
	letter-spacing: 0.1rem;
}

.font-weight-light {
  font-weight: 300 !important;
}
.font-weight-normal {
  font-weight: 400 !important;
}
.font-weight-bold {
  font-weight: 700 !important;
}
.font-italic {
  font-style: italic !important;
}

/* webfonts */
.font-1 {
	font-family: brother-1816, "Noto Sans JP", sans-serif;
}

/* paragraph */
.display-1 {
  font-size: 2.4rem;
  line-height: 1.4;
}
.display-2 {
  font-size: 1.8rem;
  line-height: 1.4;
}
.display-3 {
  font-size: 1.6rem;
  line-height: 1.6;
}
.display-4 {
  font-size: 1.1rem;
  line-height: 1.6;
}
.display-normal {
	font-size: 1.4rem;
	line-height: 1.6;
}

.line-height-1 {
	line-height: 2.4;
}
.line-height-2 {
	line-height: 1.8;
}


@media screen and (min-width: 769px)  {
	p {
		letter-spacing: 0.15rem;
	}
	.display-1 {
	  font-size: 3.6rem;
	  line-height: 1.6;
	}
	.display-2 {
	  font-size: 3rem;
	  line-height: 1.6;
	}
	.display-3 {
	  font-size: 2rem;
	  line-height: 1.6;
	}
	.display-4 {
	  font-size: 1.2rem;
	  line-height: 1.6;
	}
}


/*---------- 1.5 Space ----------*/
.mt-s-0 {margin-top: 0 !important;}
.mt-s-5 {margin-top: 5px !important;}
.mt-s-10 {margin-top: 10px !important;}
.mt-s-15 {margin-top: 15px !important;}
.mt-s-20 {margin-top: 20px !important;}
.mt-s-25 {margin-top: 25px !important;}
.mt-s-30 {margin-top: 30px !important;}
.mt-s-35 {margin-top: 35px !important;}
.mt-s-40 {margin-top: 40px !important;}
.mt-s-45 {margin-top: 45px !important;}
.mt-s-50 {margin-top: 50px !important;}
.mt-s-55 {margin-top: 55px !important;}
.mt-s-60 {margin-top: 60px !important;}
.mt-s-65 {margin-top: 65px !important;}
.mt-s-70 {margin-top: 70px !important;}
.mt-s-75 {margin-top: 75px !important;}
.mt-s-80 {margin-top: 80px !important;}
.mt-s-85 {margin-top: 85px !important;}
.mt-s-90 {margin-top: 90px !important;}
.mt-s-95 {margin-top: 95px !important;}
.mt-s-100 {margin-top: 100px !important;}

.mb-s-0 {margin-bottom: 0 !important;}
.mb-s-5 {margin-bottom: 5px !important;}
.mb-s-10 {margin-bottom: 10px !important;}
.mb-s-15 {margin-bottom: 15px !important;}
.mb-s-20 {margin-bottom: 20px !important;}
.mb-s-25 {margin-bottom: 25px !important;}
.mb-s-30 {margin-bottom: 30px !important;}
.mb-s-35 {margin-bottom: 35px !important;}
.mb-s-40 {margin-bottom: 40px !important;}
.mb-s-45 {margin-bottom: 45px !important;}
.mb-s-50 {margin-bottom: 50px !important;}
.mb-s-55 {margin-bottom: 55px !important;}
.mb-s-60 {margin-bottom: 60px !important;}
.mb-s-65 {margin-bottom: 65px !important;}
.mb-s-70 {margin-bottom: 70px !important;}
.mb-s-75 {margin-bottom: 75px !important;}
.mb-s-80 {margin-bottom: 80px !important;}
.mb-s-85 {margin-bottom: 85px !important;}
.mb-s-90 {margin-bottom: 90px !important;}
.mb-s-95 {margin-bottom: 95px !important;}
.mb-s-100 {margin-bottom: 100px !important;}

.ml-s-0 {margin-left: 0px !important;}
.ml-s-10 {margin-left: 10px !important;}
.ml-s-15 {margin-left: 15px !important;}
.ml-s-20 {margin-left: 20px !important;}
.ml-s-30 {margin-left: 30px !important;}
.ml-s-40 {margin-left: 40px !important;}
.ml-s-50 {margin-left: 50px !important;}

.mr-s-0 {margin-right: 0px !important;}
.mr-s-10 {margin-right: 10px !important;}
.mr-s-15 {margin-right: 15px !important;}
.mr-s-20 {margin-right: 20px !important;}
.mr-s-30 {margin-right: 30px !important;}
.mr-s-40 {margin-right: 40px !important;}
.mr-s-50 {margin-right: 50px !important;}

@media screen and (min-width: 769px)  {
	.mt-m-0 {margin-top: 0 !important;}
	.mt-m-5 {margin-top: 5px !important;}
	.mt-m-10 {margin-top: 10px !important;}
	.mt-m-15 {margin-top: 15px !important;}
	.mt-m-20 {margin-top: 20px !important;}
	.mt-m-25 {margin-top: 25px !important;}
	.mt-m-30 {margin-top: 30px !important;}
	.mt-m-35 {margin-top: 35px !important;}
	.mt-m-40 {margin-top: 40px !important;}
	.mt-m-45 {margin-top: 45px !important;}
	.mt-m-50 {margin-top: 50px !important;}
	.mt-m-55 {margin-top: 55px !important;}
	.mt-m-60 {margin-top: 60px !important;}
	.mt-m-65 {margin-top: 65px !important;}
	.mt-m-70 {margin-top: 70px !important;}
	.mt-m-75 {margin-top: 75px !important;}
	.mt-m-80 {margin-top: 80px !important;}
	.mt-m-85 {margin-top: 85px !important;}
	.mt-m-90 {margin-top: 90px !important;}
	.mt-m-95 {margin-top: 95px !important;}
	.mt-m-100 {margin-top: 100px !important;}

	.mb-m-0 {margin-bottom: 0 !important;}
	.mb-m-5 {margin-bottom: 5px !important;}
	.mb-m-10 {margin-bottom: 10px !important;}
	.mb-m-15 {margin-bottom: 15px !important;}
	.mb-m-20 {margin-bottom: 20px !important;}
	.mb-m-25 {margin-bottom: 25px !important;}
	.mb-m-30 {margin-bottom: 30px !important;}
	.mb-m-35 {margin-bottom: 35px !important;}
	.mb-m-40 {margin-bottom: 40px !important;}
	.mb-m-45 {margin-bottom: 45px !important;}
	.mb-m-50 {margin-bottom: 50px !important;}
	.mb-m-55 {margin-bottom: 55px !important;}
	.mb-m-60 {margin-bottom: 60px !important;}
	.mb-m-65 {margin-bottom: 65px !important;}
	.mb-m-70 {margin-bottom: 70px !important;}
	.mb-m-75 {margin-bottom: 75px !important;}
	.mb-m-80 {margin-bottom: 80px !important;}
	.mb-m-85 {margin-bottom: 85px !important;}
	.mb-m-90 {margin-bottom: 90px !important;}
	.mb-m-95 {margin-bottom: 95px !important;}
	.mb-m-100 {margin-bottom: 100px !important;}

	.ml-m-0 {margin-left: 0px !important;}
	.ml-m-10 {margin-left: 10px !important;}
	.ml-m-20 {margin-left: 20px !important;}
	.ml-m-30 {margin-left: 30px !important;}
	.ml-m-40 {margin-left: 40px !important;}
	.ml-m-50 {margin-left: 50px !important;}

	.mr-m-0 {margin-right: 0px !important;}
	.mr-m-10 {margin-right: 10px !important;}
	.mr-m-20 {margin-right: 20px !important;}
	.mr-m-30 {margin-right: 30px !important;}
	.mr-m-40 {margin-right: 40px !important;}
	.mr-m-50 {margin-right: 50px !important;}
}

@media screen and (min-width: 1080px)  {
	.mt-l-0 {margin-top: 0 !important;}
	.mt-l-5 {margin-top: 5px !important;}
	.mt-l-10 {margin-top: 10px !important;}
	.mt-l-15 {margin-top: 15px !important;}
	.mt-l-20 {margin-top: 20px !important;}
	.mt-l-25 {margin-top: 25px !important;}
	.mt-l-30 {margin-top: 30px !important;}
	.mt-l-35 {margin-top: 35px !important;}
	.mt-l-40 {margin-top: 40px !important;}
	.mt-l-45 {margin-top: 45px !important;}
	.mt-l-50 {margin-top: 50px !important;}
	.mt-l-55 {margin-top: 55px !important;}
	.mt-l-60 {margin-top: 60px !important;}
	.mt-l-65 {margin-top: 65px !important;}
	.mt-l-70 {margin-top: 70px !important;}
	.mt-l-75 {margin-top: 75px !important;}
	.mt-l-80 {margin-top: 80px !important;}
	.mt-l-85 {margin-top: 85px !important;}
	.mt-l-90 {margin-top: 90px !important;}
	.mt-l-95 {margin-top: 95px !important;}
	.mt-l-100 {margin-top: 100px !important;}

	.mb-l-0 {margin-bottom: 0 !important;}
	.mb-l-5 {margin-bottom: 5px !important;}
	.mb-l-10 {margin-bottom: 10px !important;}
	.mb-l-15 {margin-bottom: 15px !important;}
	.mb-l-20 {margin-bottom: 20px !important;}
	.mb-l-25 {margin-bottom: 25px !important;}
	.mb-l-30 {margin-bottom: 30px !important;}
	.mb-l-35 {margin-bottom: 35px !important;}
	.mb-l-40 {margin-bottom: 40px !important;}
	.mb-l-45 {margin-bottom: 45px !important;}
	.mb-l-50 {margin-bottom: 50px !important;}
	.mb-l-55 {margin-bottom: 55px !important;}
	.mb-l-60 {margin-bottom: 60px !important;}
	.mb-l-65 {margin-bottom: 65px !important;}
	.mb-l-70 {margin-bottom: 70px !important;}
	.mb-l-75 {margin-bottom: 75px !important;}
	.mb-l-80 {margin-bottom: 80px !important;}
	.mb-l-85 {margin-bottom: 85px !important;}
	.mb-l-90 {margin-bottom: 90px !important;}
	.mb-l-95 {margin-bottom: 95px !important;}
	.mb-l-100 {margin-bottom: 100px !important;}

	.ml-l-0 {margin-left: 0px !important;}
	.ml-l-10 {margin-left: 10px !important;}
	.ml-l-20 {margin-left: 20px !important;}
	.ml-l-30 {margin-left: 30px !important;}
	.ml-l-40 {margin-left: 40px !important;}
	.ml-l-50 {margin-left: 50px !important;}

	.mr-l-0 {margin-right: 0px !important;}
	.mr-l-10 {margin-right: 10px !important;}
	.mr-l-20 {margin-right: 20px !important;}
	.mr-l-30 {margin-right: 30px !important;}
	.mr-l-40 {margin-right: 40px !important;}
	.mr-l-50 {margin-right: 50px !important;}
}

/*---------- 1.6 Other ----------*/
table {
  border-collapse: collapse;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* border */
.border-primary {
	border: 1px solid #ebebeb;
}

/* img */
.img {
	max-width: 100%;
	height: auto;
	line-height: 0;
	vertical-align: middle;
  border-style: none;
}
.img-fluid img {
	width: 100%;
	height: auto;
	line-height: 0;
	vertical-align: middle;
  border-style: none;
}


/*-------------------------------

	2. COLUMN

-------------------------------*/
.container {
	width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.col-s-1, .col-s-2, .col-s-3, .col-s-4, .col-s-5, .col-s-6, .col-s-7, .col-s-8, .col-s-9, .col-s-10, .col-s-11, .col-s-12, .col-s, .col-s-auto,
.col-m-1, .col-m-2, .col-m-3, .col-m-4, .col-m-5, .col-m-6, .col-m-7, .col-m-8, .col-m-9, .col-m-10, .col-m-11, .col-m-12, .col-m, .col-m-auto,
.col-l-1, .col-l-2, .col-l-3, .col-l-4, .col-l-5, .col-l-6, .col-l-7, .col-l-8, .col-l-9, .col-l-10, .col-l-11, .col-l-12, .col-l, .col-l-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.col-s {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.col-s-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.col-s-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.col-s-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.col-s-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-s-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.col-s-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.col-s-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.col-s-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.col-s-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.col-s-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.col-s-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.col-s-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.col-s-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.order-s-first {
  -ms-flex-order: -1;
  order: -1;
}
.order-s-last {
  -ms-flex-order: 13;
  order: 13;
}
.order-s-0 {
  -ms-flex-order: 0;
  order: 0;
}
.order-s-1 {
  -ms-flex-order: 1;
  order: 1;
}
.order-s-2 {
  -ms-flex-order: 2;
  order: 2;
}
.order-s-3 {
  -ms-flex-order: 3;
  order: 3;
}
.order-s-4 {
  -ms-flex-order: 4;
  order: 4;
}
.order-s-5 {
  -ms-flex-order: 5;
  order: 5;
}
.order-s-6 {
  -ms-flex-order: 6;
  order: 6;
}
.order-s-7 {
  -ms-flex-order: 7;
  order: 7;
}
.order-s-8 {
  -ms-flex-order: 8;
  order: 8;
}
.order-s-9 {
  -ms-flex-order: 9;
  order: 9;
}
.order-s-10 {
  -ms-flex-order: 10;
  order: 10;
}
.order-s-11 {
  -ms-flex-order: 11;
  order: 11;
}
.order-s-12 {
  -ms-flex-order: 12;
  order: 12;
}

@media screen and (min-width: 769px)  {
	.col-m {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-m-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
	.col-m-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-m-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-m-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-m-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-m-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-m-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-m-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-m-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-m-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-m-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-m-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-m-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
	.order-m-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-m-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-m-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-m-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-m-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-m-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-m-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-m-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-m-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-m-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-m-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-m-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-m-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-m-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-m-12 {
    -ms-flex-order: 12;
    order: 12;
  }
}

@media screen and (min-width: 1080px)  {
	.container {
	  width: 1080px;
	  padding-right: 0;
	  padding-left: 0;
	}
	.col-l {
	  -ms-flex-preferred-size: 0;
	  flex-basis: 0;
	  -ms-flex-positive: 1;
	  flex-grow: 1;
	  max-width: 100%;
	}
	.col-l-auto {
	  -ms-flex: 0 0 auto;
	  flex: 0 0 auto;
	  width: auto;
	  max-width: 100%;
	}
	.col-l-1 {
	  -ms-flex: 0 0 8.333333%;
	  flex: 0 0 8.333333%;
	  max-width: 8.333333%;
	}
	.col-l-2 {
	  -ms-flex: 0 0 16.666667%;
	  flex: 0 0 16.666667%;
	  max-width: 16.666667%;
	}
	.col-l-3 {
	  -ms-flex: 0 0 25%;
	  flex: 0 0 25%;
	  max-width: 25%;
	}
	.col-l-4 {
	  -ms-flex: 0 0 33.333333%;
	  flex: 0 0 33.333333%;
	  max-width: 33.333333%;
	}
	.col-l-5 {
	  -ms-flex: 0 0 41.666667%;
	  flex: 0 0 41.666667%;
	  max-width: 41.666667%;
	}
	.col-l-6 {
	  -ms-flex: 0 0 50%;
	  flex: 0 0 50%;
	  max-width: 50%;
	}
	.col-l-7 {
	  -ms-flex: 0 0 58.333333%;
	  flex: 0 0 58.333333%;
	  max-width: 58.333333%;
	}
	.col-l-8 {
	  -ms-flex: 0 0 66.666667%;
	  flex: 0 0 66.666667%;
	  max-width: 66.666667%;
	}
	.col-l-9 {
	  -ms-flex: 0 0 75%;
	  flex: 0 0 75%;
	  max-width: 75%;
	}
	.col-l-10 {
	  -ms-flex: 0 0 83.333333%;
	  flex: 0 0 83.333333%;
	  max-width: 83.333333%;
	}
	.col-l-11 {
	  -ms-flex: 0 0 91.666667%;
	  flex: 0 0 91.666667%;
	  max-width: 91.666667%;
	}
	.col-l-12 {
	  -ms-flex: 0 0 100%;
	  flex: 0 0 100%;
	  max-width: 100%;
	}
	.order-l-first {
	  -ms-flex-order: -1;
	  order: -1;
	}
	.order-l-last {
	  -ms-flex-order: 13;
	  order: 13;
	}
	.order-l-0 {
	  -ms-flex-order: 0;
	  order: 0;
	}
	.order-l-1 {
	  -ms-flex-order: 1;
	  order: 1;
	}
	.order-l-2 {
	  -ms-flex-order: 2;
	  order: 2;
	}
	.order-l-3 {
	  -ms-flex-order: 3;
	  order: 3;
	}
	.order-l-4 {
	  -ms-flex-order: 4;
	  order: 4;
	}
	.order-l-5 {
	  -ms-flex-order: 5;
	  order: 5;
	}
	.order-l-6 {
	  -ms-flex-order: 6;
	  order: 6;
	}
	.order-l-7 {
	  -ms-flex-order: 7;
	  order: 7;
	}
	.order-l-8 {
	  -ms-flex-order: 8;
	  order: 8;
	}
	.order-l-9 {
	  -ms-flex-order: 9;
	  order: 9;
	}
	.order-l-10 {
	  -ms-flex-order: 10;
	  order: 10;
	}
	.order-l-11 {
	  -ms-flex-order: 11;
	  order: 11;
	}
	.order-l-12 {
	  -ms-flex-order: 12;
	  order: 12;
	}
}


/*-------------------------------

	3. LAYOUT

-------------------------------*/
.d-s-none {
  display: none !important;
}
.d-s-inline {
  display: inline !important;
}
.d-s-inline-block {
  display: inline-block !important;
}
.d-s-block {
  display: block !important;
}
.d-s-table {
  display: table !important;
}
.d-s-table-row {
  display: table-row !important;
}
.d-s-table-cell {
  display: table-cell !important;
}
.d-s-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-s-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-s-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.flex-s-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.flex-s-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}
.flex-s-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}
.flex-s-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
.flex-s-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}
.flex-s-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.flex-s-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}
.flex-s-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}
.flex-s-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}
.flex-s-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}
.flex-s-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}
.justify-s-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.justify-s-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.justify-s-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.justify-s-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.justify-s-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}
.align-s-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}
.align-s-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}
.align-s-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.align-s-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}
.align-s-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}
.align-s-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}
.align-s-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}
.align-s-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}
.align-s-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}
.align-s-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}
.align-s-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}
.align-s-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}
.align-s-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}
.align-s-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}
.align-s-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.align-s-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}
.align-s-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

.overflow-auto {
  overflow: auto !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.float-s-left {
  float: left !important;
}
.float-s-right {
  float: right !important;
}
.float-s-none {
  float: none !important;
}

.w-s-25 {
  width: 25%;
}
.w-s-33 {
  width: 33.33%;
}
.w-s-50 {
  width: 50%;
}
.w-s-75 {
  width: 75%;
}
.w-s-100 {
  width: 100%;
}

.max-s-width-100 {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.max-s-width-90 {
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.max-s-width-80 {
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.max-s-width-70 {
	max-width: 70%;
	margin-left: auto;
	margin-right: auto;
}
.max-s-width-60 {
	max-width: 60%;
	margin-left: auto;
	margin-right: auto;
}
.max-s-width-50 {
	max-width: 50%;
	margin-left: auto;
	margin-right: auto;
}

.h-auto {
  height: auto;
}
.mw-100 {
  max-width: 100%;
}

.text-justify {
  text-align: justify;
}
.text-wrap {
  white-space: normal;
}
.text-nowrap {
  white-space: nowrap;
}

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

@media screen and (min-width: 769px)  {
	.d-m-none {
    display: none !important;
  }
  .d-m-inline {
    display: inline !important;
  }
  .d-m-inline-block {
    display: inline-block !important;
  }
  .d-m-block {
    display: block !important;
  }
  .d-m-table {
    display: table !important;
  }
  .d-m-table-row {
    display: table-row !important;
  }
  .d-m-table-cell {
    display: table-cell !important;
  }
  .d-m-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-m-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
	.flex-m-row {
	  -ms-flex-direction: row !important;
	  flex-direction: row !important;
	}
	.flex-m-column {
	  -ms-flex-direction: column !important;
	  flex-direction: column !important;
	}
	.flex-m-row-reverse {
	  -ms-flex-direction: row-reverse !important;
	  flex-direction: row-reverse !important;
	}
	.flex-m-column-reverse {
	  -ms-flex-direction: column-reverse !important;
	  flex-direction: column-reverse !important;
	}
	.flex-m-wrap {
	  -ms-flex-wrap: wrap !important;
	  flex-wrap: wrap !important;
	}
	.flex-m-nowrap {
	  -ms-flex-wrap: nowrap !important;
	  flex-wrap: nowrap !important;
	}
	.flex-m-wrap-reverse {
	  -ms-flex-wrap: wrap-reverse !important;
	  flex-wrap: wrap-reverse !important;
	}
	.flex-m-fill {
	  -ms-flex: 1 1 auto !important;
	  flex: 1 1 auto !important;
	}
	.flex-m-grow-0 {
	  -ms-flex-positive: 0 !important;
	  flex-grow: 0 !important;
	}
	.flex-m-grow-1 {
	  -ms-flex-positive: 1 !important;
	  flex-grow: 1 !important;
	}
	.flex-m-shrink-0 {
	  -ms-flex-negative: 0 !important;
	  flex-shrink: 0 !important;
	}
	.flex-m-shrink-1 {
	  -ms-flex-negative: 1 !important;
	  flex-shrink: 1 !important;
	}
	.justify-m-content-start {
	  -ms-flex-pack: start !important;
	  justify-content: flex-start !important;
	}
	.justify-m-content-end {
	  -ms-flex-pack: end !important;
	  justify-content: flex-end !important;
	}
	.justify-m-content-center {
	  -ms-flex-pack: center !important;
	  justify-content: center !important;
	}
	.justify-m-content-between {
	  -ms-flex-pack: justify !important;
	  justify-content: space-between !important;
	}
	.justify-m-content-around {
	  -ms-flex-pack: distribute !important;
	  justify-content: space-around !important;
	}
	.align-m-items-start {
	  -ms-flex-align: start !important;
	  align-items: flex-start !important;
	}
	.align-m-items-end {
	  -ms-flex-align: end !important;
	  align-items: flex-end !important;
	}
	.align-m-items-center {
	  -ms-flex-align: center !important;
	  align-items: center !important;
	}
	.align-m-items-baseline {
	  -ms-flex-align: baseline !important;
	  align-items: baseline !important;
	}
	.align-m-items-stretch {
	  -ms-flex-align: stretch !important;
	  align-items: stretch !important;
	}
	.align-m-content-start {
	  -ms-flex-line-pack: start !important;
	  align-content: flex-start !important;
	}
	.align-m-content-end {
	  -ms-flex-line-pack: end !important;
	  align-content: flex-end !important;
	}
	.align-m-content-center {
	  -ms-flex-line-pack: center !important;
	  align-content: center !important;
	}
	.align-m-content-between {
	  -ms-flex-line-pack: justify !important;
	  align-content: space-between !important;
	}
	.align-m-content-around {
	  -ms-flex-line-pack: distribute !important;
	  align-content: space-around !important;
	}
	.align-m-content-stretch {
	  -ms-flex-line-pack: stretch !important;
	  align-content: stretch !important;
	}
	.align-m-self-auto {
	  -ms-flex-item-align: auto !important;
	  align-self: auto !important;
	}
	.align-m-self-start {
	  -ms-flex-item-align: start !important;
	  align-self: flex-start !important;
	}
	.align-m-self-end {
	  -ms-flex-item-align: end !important;
	  align-self: flex-end !important;
	}
	.align-m-self-center {
	  -ms-flex-item-align: center !important;
	  align-self: center !important;
	}
	.align-m-self-baseline {
	  -ms-flex-item-align: baseline !important;
	  align-self: baseline !important;
	}
	.align-m-self-stretch {
	  -ms-flex-item-align: stretch !important;
	  align-self: stretch !important;
	}
	.float-m-left {
    float: left !important;
  }
  .float-m-right {
    float: right !important;
  }
  .float-m-none {
    float: none !important;
  }
	.w-m-25 {
	  width: 25%;
	}
	.w-m-33 {
	  width: 33.33%;
	}
	.w-m-50 {
	  width: 50%;
	}
	.w-m-75 {
	  width: 75%;
	}
	.w-m-100 {
	  width: 100%;
	}
	.max-m-width-100 {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.max-m-width-90 {
		max-width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	.max-m-width-80 {
		max-width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
	.max-m-width-70 {
		max-width: 70%;
		margin-left: auto;
		margin-right: auto;
	}
	.max-m-width-60 {
		max-width: 60%;
		margin-left: auto;
		margin-right: auto;
	}
	.max-m-width-50 {
		max-width: 50%;
		margin-left: auto;
		margin-right: auto;
	}
	.text-m-left {
	  text-align: left;
	}
	.text-m-right {
	  text-align: right;
	}
	.text-m-center {
	  text-align: center;
	}
}

@media screen and (min-width: 1080px)  {
	.d-l-none {
    display: none !important;
  }
  .d-l-inline {
    display: inline !important;
  }
  .d-l-inline-block {
    display: inline-block !important;
  }
  .d-l-block {
    display: block !important;
  }
  .d-l-table {
    display: table !important;
  }
  .d-l-table-row {
    display: table-row !important;
  }
  .d-l-table-cell {
    display: table-cell !important;
  }
  .d-l-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-l-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
	.flex-l-row {
	  -ms-flex-direction: row !important;
	  flex-direction: row !important;
	}
	.flex-l-column {
	  -ms-flex-direction: column !important;
	  flex-direction: column !important;
	}
	.flex-l-row-reverse {
	  -ms-flex-direction: row-reverse !important;
	  flex-direction: row-reverse !important;
	}
	.flex-l-column-reverse {
	  -ms-flex-direction: column-reverse !important;
	  flex-direction: column-reverse !important;
	}
	.flex-l-wrap {
	  -ms-flex-wrap: wrap !important;
	  flex-wrap: wrap !important;
	}
	.flex-l-nowrap {
	  -ms-flex-wrap: nowrap !important;
	  flex-wrap: nowrap !important;
	}
	.flex-l-wrap-reverse {
	  -ms-flex-wrap: wrap-reverse !important;
	  flex-wrap: wrap-reverse !important;
	}
	.flex-l-fill {
	  -ms-flex: 1 1 auto !important;
	  flex: 1 1 auto !important;
	}
	.flex-l-grow-0 {
	  -ms-flex-positive: 0 !important;
	  flex-grow: 0 !important;
	}
	.flex-l-grow-1 {
	  -ms-flex-positive: 1 !important;
	  flex-grow: 1 !important;
	}
	.flex-l-shrink-0 {
	  -ms-flex-negative: 0 !important;
	  flex-shrink: 0 !important;
	}
	.flex-l-shrink-1 {
	  -ms-flex-negative: 1 !important;
	  flex-shrink: 1 !important;
	}
	.justify-l-content-start {
	  -ms-flex-pack: start !important;
	  justify-content: flex-start !important;
	}
	.justify-l-content-end {
	  -ms-flex-pack: end !important;
	  justify-content: flex-end !important;
	}
	.justify-l-content-center {
	  -ms-flex-pack: center !important;
	  justify-content: center !important;
	}
	.justify-l-content-between {
	  -ms-flex-pack: justify !important;
	  justify-content: space-between !important;
	}
	.justify-l-content-around {
	  -ms-flex-pack: distribute !important;
	  justify-content: space-around !important;
	}
	.align-l-items-start {
	  -ms-flex-align: start !important;
	  align-items: flex-start !important;
	}
	.align-l-items-end {
	  -ms-flex-align: end !important;
	  align-items: flex-end !important;
	}
	.align-l-items-center {
	  -ms-flex-align: center !important;
	  align-items: center !important;
	}
	.align-l-items-baseline {
	  -ms-flex-align: baseline !important;
	  align-items: baseline !important;
	}
	.align-l-items-stretch {
	  -ms-flex-align: stretch !important;
	  align-items: stretch !important;
	}
	.align-l-content-start {
	  -ms-flex-line-pack: start !important;
	  align-content: flex-start !important;
	}
	.align-l-content-end {
	  -ms-flex-line-pack: end !important;
	  align-content: flex-end !important;
	}
	.align-l-content-center {
	  -ms-flex-line-pack: center !important;
	  align-content: center !important;
	}
	.align-l-content-between {
	  -ms-flex-line-pack: justify !important;
	  align-content: space-between !important;
	}
	.align-l-content-around {
	  -ms-flex-line-pack: distribute !important;
	  align-content: space-around !important;
	}
	.align-l-content-stretch {
	  -ms-flex-line-pack: stretch !important;
	  align-content: stretch !important;
	}
	.align-l-self-auto {
	  -ms-flex-item-align: auto !important;
	  align-self: auto !important;
	}
	.align-l-self-start {
	  -ms-flex-item-align: start !important;
	  align-self: flex-start !important;
	}
	.align-l-self-end {
	  -ms-flex-item-align: end !important;
	  align-self: flex-end !important;
	}
	.align-l-self-center {
	  -ms-flex-item-align: center !important;
	  align-self: center !important;
	}
	.align-l-self-baseline {
	  -ms-flex-item-align: baseline !important;
	  align-self: baseline !important;
	}
	.align-l-self-stretch {
	  -ms-flex-item-align: stretch !important;
	  align-self: stretch !important;
	}
	.float-l-left {
    float: left !important;
  }
  .float-l-right {
    float: right !important;
  }
  .float-l-none {
    float: none !important;
  }
	.w-l-25 {
	  width: 25%;
	}
	.w-l-33 {
	  width: 33.33%;
	}
	.w-l-50 {
	  width: 50%;
	}
	.w-l-75 {
	  width: 75%;
	}
	.w-l-100 {
	  width: 100%;
	}
	.max-l-width-100 {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.max-l-width-90 {
		max-width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	.max-l-width-80 {
		max-width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
	.max-l-width-70 {
		max-width: 70%;
		margin-left: auto;
		margin-right: auto;
	}
	.max-l-width-60 {
		max-width: 60%;
		margin-left: auto;
		margin-right: auto;
	}
	.max-l-width-50 {
		max-width: 50%;
		margin-left: auto;
		margin-right: auto;
	}
	.text-l-left {
	  text-align: left;
	}
	.text-l-right {
	  text-align: right;
	}
	.text-l-center {
	  text-align: center;
	}
}
