@charset "UTF-8";

* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* html
---------------------------------------------------- */
html {
	font-size: 62.5%;
	height: 100%;
}
h1, h2, h3, h4, h5, h6, strong {
     font-weight: 700;
} 

/* ボディー
---------------------------------------------------- */
body {
	height: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 26px;
	font-weight: 400;
	letter-spacing: 1px;
	color: #333;
	background: #fff;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
}

/* リンク
---------------------------------------------------- */
a {
	color: #333;
	background: transparent;
	text-decoration: none;
}
a:visited {
	background: transparent;
}
a:hover,
a:active {
	background: transparent;
	text-decoration: underline;
}

/* 共通
---------------------------------------------------- */
.inner {
	max-width: 970px;
	margin: 0 16px;
}

.flex {
	width: 100%;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
}
.row-column {
	flex-flow: column;
}
.row-column-reverse {
	flex-flow: column;
}
.column {
	flex-flow: column;
}
/* 幅いっぱいに広げる */
.between {
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
	justify-content: space-between;
}
/* 均等に広げる */
.around {
	-ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
	justify-content: space-around;
}
/* 左寄せ */
.start {	
	-webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
	justify-content: flex-start;
}
/* 右寄せ */
.end {	
	-webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
	justify-content: flex-end;
}
/* 真ん中寄せ */
.center {	
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
}

.w50,
.w49,
.w48,
.w33,
.w25,
.w20 {
	width: 100%;
}
.centre {
	text-align: center;
}

hr {
	height: 0;
 	margin: 0;
  	border: none;
  	border-top: 1px solid #ccc;
}
.footer-hr {
	display: none;
}

/*追加*/

.shareaholic-canvas{
	margin-top: 75px;
}


/* 画像
---------------------------------------------------- */
img {
	max-width: 100%;
	height: auto;
	line-height: 0;
}
a img {
	border: none;
	color: #fff;
	background: transparent;
	-webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}
a img:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

/* ヘッダー
---------------------------------------------------- */
header {
	width: 100%;
	height: 55px;
	position: fixed;
	z-index: 9000;
	background: #fff;
	border-bottom: 5px solid #00B967;
	box-shadow:0px 1px 0px 0px #339c4a;
	-moz-box-shadow:0px 1px 0px 0px #339c4a;
	-webkit-box-shadow:0px 1px 0px 0px #339c4a;
}
.logo {
	width: 171px;
	margin: 10px 0 0 0px; 
}

/* ナビ
---------------------------------------------------- */

/* ナビゲーション
---------------------------------------------------- */
#btn-nav {
	display: block;
	cursor: pointer;
	position: fixed;
	right: 20px;
	top: 10px;
	font-size: 12px;
	font-size: 1.2rem;
	width: 30px;
	height: 30px;
	z-index: 9999;
}
#btn-nav span {
	display: block;
	width: 30px;
	position: absolute;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
}
#btn-nav span:nth-child(1) {
	top: 5px;
	left: 5px;
	height: 2px;
	background: #00B967;
}
#btn-nav span:nth-child(2) {
	margin-top: -2px;
	top: 50%;
	left: 5px;
	height: 2px;
	background: #00B967;
}
#btn-nav span:nth-child(3) {
	bottom: 7px;
	left: 5px;
	height: 2px;
	background: #00B967;
}
#btn-nav.active span:nth-child(1) {
	-webkit-transform: translateY(8px) rotate(135deg);
	-moz-transform: translateY(8px) rotate(135deg);
	-ms-transform: translateY(8px) rotate(135deg);
	-o-transform: translateY(8px) rotate(135deg);
	transform: translateY(8px) rotate(135deg);
}
#btn-nav.active span:nth-child(2) {
	opacity: 0;
	-webkit-transform: translateY(-10.5px) rotate(-315deg);
	-moz-transform: translateY(-10.5px) rotate(-315deg);
	-ms-transform: translateY(-10.5px) rotate(-315deg);
	-o-transform: translateY(-10.5px) rotate(-315deg);
	transform: translateY(-10.5px) rotate(-315deg);
}
#btn-nav.active span:nth-child(3) {
	-webkit-transform: translateY(-8px) rotate(-135deg);
	-moz-transform: translateY(-8px) rotate(-135deg);
	-ms-transform: translateY(-8px) rotate(-135deg);
	-o-transform: translateY(-8px) rotate(-135deg);
	transform: translateY(-8px) rotate(-135deg);
}
nav {
	width: 100%;
	height: 100%;
	left: 0;
	z-index: 9999;
	background: rgba(255,255,255,0.8);
	overflow-x: auto;
	position: fixed;
	z-index: 9998;
	overflow: scroll;
}
nav ul {
	margin: 50px 0;
	border-top: 1px solid #333;
}

nav ul li {
	margin: 0/* 10px*/;
	text-align: center;
}
nav ul li.home,
nav ul li.about,
nav ul li.work,
nav ul li.people,
nav ul li.pc-hidden {
	margin: 0 10px;
	border-bottom: 1px solid #333;
}
nav ul li.career-recruit {
	border-bottom: none;
}
nav ul li.work,
nav ul li.recruit {
	display: none;
}
nav ul li a {
	padding: 20px 0;
	display: block;
}
nav ul li.entry a {
	background: #00B967;
	color: #fff;
}
nav ul li.sub-nav ul.child {
	display: none;
	margin: 0 7px;
	border-top: none;
}
nav ul li.sub-nav ul.child li {
	padding: 10px 7px;
	border: none;
}
nav ul li.sub-nav ul.child li a {
    display: block;
	padding: 0 0 20px 0;
}
nav ul li.sub-nav .fa {
	float: right;
	font-size: 24px;
	font-size: 2.4rem;
	color: #339C4A;
}


/* パンくず
---------------------------------------------------- */
.pankuzu {
	height: 22px;
	background: #00B967;
}
.pankuzu ul {
	display: none;
}

/* メイン
---------------------------------------------------- */
main {
	display: block;
}
main p {
	margin-bottom: 1em;
} 
main img {
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
}

/* フッタリクルートリンク
---------------------------------------------------- */
.footer-recruit {
	padding: 58px 0 53px 0;
	background: #D7E0D7;
}
.footer-recruit li.footer-recruit-nav {
	width: 300px;
	margin: 0 auto 20px auto;
	list-style: none;
	line-height: 0;
	background: #fff;
	text-align: center;
}
.footer-recruit img {
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}

/* ページトップへ
---------------------------------------------------- */
.go-top {
	display: none;
	width: 45px;
	height: 45px;
	background: #00B967;
	text-align: center;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	position: fixed;
	bottom: 35px;
	right: 25px;
}
.go-top a {
	display: block;
	width: 45px;
	height: 45px;
	font-size: 30px;
	font-size: 3.0rem;
	line-height: 38px;
	color: #fff;
}
.page-top {
	width: 100%;
	height: 23px;
	position: relative;
	background: #00B967;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #008B45;
}
.page-top-btn {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 134px;
	height: 66px;
}

/* フッタサイトマップ
---------------------------------------------------- */
.sitemap {
	display: none;
}
.footer-sitemap .inner {
	padding: 33px 0;
}
.footer-sitemap .logo {
	width: 167px;
	margin: 0 auto;
}

/* フッタ
---------------------------------------------------- */
footer {
	height: 82px;
	background: #338E4A;
}
footer .inner {
	height: 82px;
	background: url(images/footer-bg.png) top right no-repeat;
	background-size: 175px 82px;
}
footer .inner p {
	padding-top: 45px;
	font-size: 8px;
	font-size: 0.8rem;
	line-height: 14px;
	color: #fff;
	text-align: left;
}

.privacy-marks {
	margin-top: 10px;
}

.privacy-mark {
	float: left;
}


.privacy-mark img {
	width: 50px;
}


.privacy-marks-text {
	width: 100px;
	font-size: 8px;
	font-size: 0.8rem;
	line-height: 12px;
	float: left;
	margin-left: 10px;
}

/* iPad　縦　以上
---------------------------------------------------- */
@media all and (min-width: 767px) {
	
/* ヘッダー
---------------------------------------------------- */
header {
	height: 83px;
}
header .logo {
	width: 264px!important;
	margin: 20px 10px 0 10px;
}

/* 共通
---------------------------------------------------- */
.row {
	flex-flow: row;
}
.flex-1 {
	flex: 1;
	-webkit-flex: 1;
}
.row-column {
	flex-flow: row;
}
.row-column-reverse {
	flex-flow: row-reverse;
}

/* 上揃え */
.top {	
	-webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
/* 下揃え */
.bottom {	
	-webkit-box-align: end;
    -ms-flex-align: end;
	-webkit-align-items: flex-end;
    align-items: flex-end;
}
/* 真ん中揃え */
.centre {	
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
/* ベースライン揃え */
.baseline {	
	-webkit-box-align: baseline;
    -ms-flex-align: baseline;
	-webkit-align-items: baseline;
    align-items: baseline;
}
/* ストレッチ揃え */
.stretch {	
	-webkit-box-align: stretch;
    -ms-flex-align: stretch;
	-webkit-align-items: stretch;
    align-items: stretch;
}

.w50 {
	width: 50%;
}
.w49 {
	width: 49%;
}
.w48 {
	width: 48%;
}
.w33 {
	width: 32%;
	margin-right: 2%;
}
.w33:nth-child(3n) {
	margin-right: 0;
}
.w25 {
	width: 22%;
	margin-right: 4%;
}
.w25:nth-child(4n) {
	margin-right: 0;
}

.w20 {
	width: 18%;
}
.wrap {
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* ナビゲーション
---------------------------------------------------- */
#btn-nav {
	display: none;
}
.nav {
	width: 100%;
}
nav {
	width: 634px;
	position: relative;
	display: block;
	height: auto;
	overflow: visible;
	background: none;
}
.nav .inner {
	margin: 0 auto;
}
nav ul {
	width: 634px;
	margin: 0;
	padding: 0;
	border-top: none;
}
nav ul li.home {
	width: 12.30283%/*78px*/;
	height: 77px;
}
nav ul li.about {
	width: 26.7634%/*157px*/;
	height: 77px;
}
nav ul li.work {
	display: block;
	width: 16.71924%/*106px*/;
	height: 77px;
}
nav ul li.people {
	width: 14.66876%/*93px*/;
	height: 77px;
}
nav ul li.recruit {
	display: block;
	width: 14.51104%/*92px*/;
	height: 77px;
}
nav ul li.entry {
	width: 16.93059%/*101px*/;
}
nav ul li {
	margin: 0;
	display: block;
	border-left: 1px solid #ccc;
	text-align: center;
}
nav ul li.home,
nav ul li.about,
nav ul li.work,
nav ul li.people,
nav ul li.recruit,
nav ul li.pc-hidden {
	margin: 0;
	border-bottom: none;
}
nav ul li.entry a {
	background: #00B967;
	color: #fff;
}

nav ul li a {
	width: 100%;
	height: 78px;
	display: block;
	padding: 25px 0 0 0;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
}
nav ul li a:hover {
	color: #fff;
	background: #00B967;
	text-decoration: none;
}
nav ul li.sub-nav {
	position: relative;
	z-index: 5000;
}
nav ul li.sub-nav:before {
	font-family: FontAwesome;
	content: "\f107";
	position: absolute;
	top: 65%;
	left: 47%;
	color: #00B967;
}
nav ul li.sub-nav .fa {
	display: none;
}
nav ul li.sub-nav ul.child {
	display: none;
    width: 210%;
	height: auto;
    position: absolute;
	top: 84px;
	margin: 0;
	padding: 0;
	white-space:nowrap;
	background: #fff;
	font-size: 11px;
	font-size: 1.1rem;
	text-align: left;
}
nav ul li.sub-nav ul.child li {
	padding: 0;
	text-align: left;
	border-bottom: 1px solid #00B967;
}
nav ul li.sub-nav ul.child li:last-child {
	border-bottom: none;
}
nav ul li.sub-nav ul.child li a {
    display: block;
	height: auto;
	padding: 12px;
}
nav ul li.sub-nav ul.child li a:hover {
	color: #fff;
	background: #00B967;
}
.pc-hidden {
	display: none;
}

/* パンくず
---------------------------------------------------- */
.pankuzu ul {
	display: block;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
	justify-content: flex-end;
	text-align: center;
	list-style: none;
	position: relative;
	z-index: 101;
	line-height: 1.6em;
}
.pankuzu ul li:after {
	font-family: FontAwesome;
	content: "\f105";
	color: #fff;
	margin: 0 10px;
}
.pankuzu ul li:last-child:after {
	content: "";
	margin: 0 7px 0 0;
}
.pankuzu ul li {
	font-size: 11px;
	font-size: 1.1rem;
	color: #99e3c2;
}
.pankuzu ul li a {
	font-size: 11px;
	font-size: 1.1rem;
	color: #fff;
}

/* フッタリクルートリンク
---------------------------------------------------- */
.footer-recruit li.footer-recruit-nav {
	width: 400px;
	margin: 0 20px;
}

/* フッタサイトマップ
---------------------------------------------------- */
.sitemap {
	display: block;
}
.footer-sitemap .inner {
	padding: 0;
}

.footer-sitemap {
	display: block;
	padding: 54px 0 70px 0;
}
.footer-sitemap ul {
	font-size: 13px;
	font-size: 1.3rem;
	list-style: none;
}
.sitemap ul.home li {
	width: 50px;
	margin-left: 10px;
	position: relative;
}
.sitemap ul.home li::before {
	font-family: FontAwesome;
	content: "\f105";
	position: absolute;
	top: 0;
	left: -10px;
	color: #339C4A;
}
.footer-sitemap ul.others {
	font-size: 12px;
	font-size: 1.2rem;
}
.footer-sitemap ul.others li {
	margin: 0 0 0 1em;
}

.footer-sitemap ul.others li.news {
	position: relative;
}
.footer-sitemap ul.others li.corp {
	position: relative;
	margin-left: 30px;
}
.footer-sitemap ul.others li.news::before {
	content: "・";
	position: absolute;
	top: 0;
	left: -10px;
	color: #339C4A;
}	
.footer-sitemap ul.others li.corp::before {
	content: url(images/icon-link.png);
	position: absolute;
	top: 0;
	left: -15px;
}
.footer-sitemap .first {
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
}
.footer-sitemap .second {
	padding-top: 10px;
}
.footer-sitemap .second ul li {
	margin-left: 10px;
	position: relative;
}
.footer-sitemap .second ul li::before {
	font-family: FontAwesome;
	content: "\f105";
	position: absolute;
	top: 0;
	left: -10px;
	color: #339C4A;
}
.footer-sitemap .second ul li a {
	text-decoration: none;
}
.footer-sitemap .second ul li ul li {
	font-size: 12px;
	font-size: 1.2rem;
	position: relative;
}
.footer-sitemap .second ul li ul li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: -10px;
	color: #339C4A;
}
.footer-sitemap .second ul li ul li a {
	text-decoration: underline;
}
.footer-sitemap .logo {
	margin-right: 10px;
}
.first,
.second{
	max-width: 678px;
	float: right;
}

/* フッタ
---------------------------------------------------- */
footer {
	height: 98px;
}
footer .inner {
	height: 98px;
	background: url(images/footer-bg.png) top right no-repeat;
	background-size: 208px 98px;
}
footer .inner p {
	padding-top: 20px;
	font-size: 10px;
	font-size: 1.0rem;
}
footer .inner p br {
	display: none;
}
}


/* 970px以上
---------------------------------------------------- */
@media all and (min-width: 970px) {
.inner {
	margin: 0 auto;
}
header .logo {
	margin: 20px 0 0 0;
}
}


/* IE10 */
@media all and (-ms-high-contrast:none) and (min-width: 1140px) {

}
@charset "UTF-8";

.header {
	width: 100%;
	padding-top: 76px/*102px*/;
	background: url(news/images/head-bg.png) center 55px no-repeat;
	background-size: cover;
	position: relative;
}
.header h1 {
	display: inline-block;
	margin: 0 auto 20px/*50px*/ auto;
	padding: 15px 25px;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 2px;
	color: #fff;
	text-align: center;
	border: 2px solid #fff;
	border-radius: 30px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
}


/* 記事一覧
---------------------------------------------------- */
.index {
	max-width: 970px;
	margin: 80px auto;
}

.index article {
	padding: 15px 20px;
}
.index article a {
	text-decoration: underline;
}
.index article a:hover {
	text-decoration: none;
}
.index article:nth-child(odd) {
	background: #e4f8ef;
}
.index article figure {
	text-align: center;
	width: 140px;
	margin: 0 auto;
}
.index article figure img {
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.index article figure img.no-eye-catch {
	border: 1px solid #00B967;
}
.index article .title {
	margin: 20px 0 0 0;
	text-align: center;
}
.index article p.date {
	display: inline-block;
	padding: 0 15px;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 500;
	color: #fff;
	background: #00B967;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
}
.index article h2 {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: left;
}
article img {
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}

/* ページナビ */
.wp-pagenavi {
	width: 100%;
	height: 40px;
	margin: 210px 0 0 0;
	background: #b2ead1;
	text-align:center;
}
.wp-pagenavi a {
	color: #fff;
}
a.previouspostslink {
	float: left;
	height: 40px;
	background: #1ac076;
	padding: 0 15px 0 30px;
	line-height: 40px;
	position: relative;
}
a.previouspostslink:after {
	font-family: FontAwesome;
	content: "\f104";
	color: #fff;
	position: absolute;
	left: 15px;
}
a.nextpostslink {
	float: right;
	height: 40px;
	background: #1ac076;
	padding: 0 30px 0 15px;
	line-height: 40px;
	position: relative;
}
a.nextpostslink:after {
	font-family: FontAwesome;
	content: "\f105";
	color: #fff;
	position: absolute;
	right: 15px;
}

a.page {
	display: none;
}
.current {
	display: none;
}
.extend {
	display: none;
}

/* 個別記事
---------------------------------------------------- */
.inner-2 {
	max-width: 970px;
	margin: 0 auto;
}
.single article .title {
	margin: 80px 0 35px 0;
	padding: 15px 10px;
	background: #b2ead1;
}
.single article p.date {
	display: inline-block;
	padding: 0 15px;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 500;
	color: #fff;
	background: #00B967;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
}
.single article .title h2 {
	padding-top: 20px;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: 700;
	border-top: 1px solid #00B967;
}
.single article .inner {
	margin: 0 10px;
}
.single article figure {
	margin: 40px 0;
	text-align: center;
}
.single article a {
	color: #00B967;
	text-decoration: underline;
}
.single article a:hover {
	color: #333;
}
aside {
	width: 100%;
	padding: 50px 0;
}
aside h3 {
	height: 43px;
	padding-top: 6px;
	background: rgba(0,185,103,0.9);
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	color: #fff;
	border-top: 1px solid #00B967;
}
aside ul {
	margin: 0 0 20px 0;
	padding: 0 10px;
	list-style: none;
}
aside ul li {
	margin: 0;
	padding: 15px 0;
	border-bottom: 1px solid #E3E0E0;
}
aside ul li a {
	text-decoration: underline;
}
aside ul li a:hover {
	text-decoration: none;
}
aside ul li:last-child {
	border-bottom: none;
}

/* 記事ナビゲーション */
.btn {
	width: 100%;
	height: 40px;
	margin: 50px 0 0 0;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
	justify-content: space-between;	
	background: #b2ead1;
	list-style: none;
	text-align:center;
	position: relative;
}
.btn .btn-prev a {
	float: left;
	height: 40px;
	background: #1ac076;
	padding: 0 15px 0 30px;
	line-height: 40px;
	color: #fff;
}
.btn .btn-prev a:after {
	font-family: FontAwesome;
	content: "\f104";
	color: #fff;
	position: absolute;
	left: 15px;
}
.btn .btn-next a {
	float: right;
	height: 40px;
	background: #1ac076;
	padding: 0 30px 0 15px;
	line-height: 40px;
	color: #fff;
}
.btn .btn-next a:after {
	font-family: FontAwesome;
	content: "\f105";
	color: #fff;
	position: absolute;
	right: 15px;
}

/* iPad　縦　以上
---------------------------------------------------- */
@media all and (min-width: 767px) {
.header {
	padding-top: 130px;
	background: url(news/images/head-bg.png) center 55px no-repeat;
	background-size: cover;
}
.header h1 {
	margin: 0 auto 50px auto;
	font-size: 30px;
	font-size: 3.0rem;
}
.index article figure {
	margin-right: 50px;
	text-align: left;
}
.index article .title {
	margin: 20px 0;
	text-align: left;
}
a.page {
	display: inline-block;
	height: 15px;
	margin: 7px 5px 0 5px;
	padding: 5px;
	line-height: 15px;
	color: #4d4d4d;
}
.current {
	display: inline-block;
	height: 15px;
	margin: 7px 5px 0 5px;
	padding: 5px;
	line-height: 15px;
	color: #1ac076;
}
.extend {
	display: inline-block;
}
.single {
	width: 67.39583%;

}
aside {
	width: 27.08333%;
	padding: 80px 0 50px 0;
}

aside ul {
	padding: 0;
}
.btn {
	margin: 50px 0;
}
}

/* 970px　以上
---------------------------------------------------- */
@media all and (min-width: 970px) {

}

/* IE10 */
@media all and (-ms-high-contrast:none) {
}
/* IE11 */
@media all and (-ms-high-contrast:none) {
}

