@charset "utf-8";

/* common
---------------------------------------------------*/
.spOnly {
  display: none !important;
}

body {
  width: 100%;
  min-width: 1020px;
  margin: 0 auto;
}

.inner {
  width: 1000px;
  margin: 0 auto;
}

a {
  opacity: 1;
  transition: 0.2s;
}
a:hover {opacity: 0.6;}

/* 上付き文字、下文字の行間リセット設定 */
sup, sub {
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  _vertical-align: bottom;
  position: relative;
}

@media only screen and (max-width:768px) {
  .spOnly {
    display: block !important;
  }

  .pcOnly {
    display: none!important;
  }

  body {
    min-width: inherit;
  }

  main {
    margin-top: 58px;
  }

  img {
    width: 100%;
    height: auto;
  }

  .inner {
    width: 92%;
  }

  a {
    transition: initial;
  }
  a:hover {opacity: 1;}
}


/* header
---------------------------------------------------*/
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 109px;
}

header h1 a:hover {
  opacity: 1;
}

header #sub_header {
  display: flex;
  align-items: center;
}

header #sub_header .contact {
  margin-right: 32px;
}

header #sub_header .contact .phone_number {
  text-align: center;
  margin-bottom: 15px;
}
header #sub_header .contact .phone_number a:hover {
  opacity: 1;
}

header #sub_header .contact .ico_list {
  display: flex;
}

header #sub_header .contact .ico_list li + li {
  margin-left: 19px;
}

header #sub_header .contact .ico_list li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 30px;
  color: #333;
  font-size: 1.4em;
  font-weight: bold;
  padding-left: 38px;
}
header #sub_header .contact .ico_list li a::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
  border-radius: 50%;
}
header #sub_header .contact .ico_list li:nth-child(1) a::before {
  background: url("/common/img/ico_mail.png")no-repeat center center/30px 30px ,#23ADED;
}
header #sub_header .contact .ico_list li:nth-child(2) a::before {
  background: url("/common/img/ico_access.png")no-repeat center center/30px 30px ,#23ADED;
}

header #sub_header .verification {
  display: flex;
}

header #sub_header .verification li + li {
  margin-left: 8px;
}

header #sub_header .verification li a {
  display: flex;
  justify-content: center;
  width: 90px;
  height: 93px;
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  padding-top: 64px;
  margin-bottom: 16px;
  border-radius: 0 0 4px 4px;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 2px;
  box-sizing: border-box;
}
header #sub_header .verification li:nth-child(1) a {
  background: url("/common/img/ico_calendar.png")no-repeat center top 20px ,#EA5252;
}
header #sub_header .verification li:nth-child(2) a {
  background: url("/common/img/ico_calendar.png")no-repeat center top 20px ,#EA5252;
}

@media only screen and (max-width:768px) {
  header {
    position: fixed;
    width: 100%;
    height: 58px;
    top: 0;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0 1px 2px;
    z-index: 10;
  }

  header .inner {
    width: 100%;
    height: 58px;
    padding: 0 10px;
    box-sizing: border-box;
  }

  header h1 {
    width: 208px;
    height: auto;
    margin-right: 10px;
  }

  header #sub_header .contact {
    margin-right: 5px;
  }

  header #sub_header .contact .ico_list {
    align-items: center;
  }

  header #sub_header .contact .ico_list li:nth-child(1) {
    order: 2;
    margin-left: 5px;
  }
  header #sub_header .contact .ico_list li:nth-child(2) {
    order: 1;
  }
  header #sub_header .contact .ico_list li + li {
    margin-left: 0;
  }

  header #sub_header .contact .ico_list li a {
    width: 42px;
    height: 42px;
    color: #fff;
    padding: 0;
    background: #23ADED;
    border-radius: 5px;
    box-sizing: border-box;
  }
  header #sub_header .contact .ico_list li a::before {
    display: none;
  }

  header #sub_header .contact .ico_list li a p {
    width: 42px;
    height: auto;
  }

  /* navBtnの設定 */
  .navBtn_area {
    width: 42px;
    height: 42px;
    padding: 10px 6px 5px;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
    border: #23ADED solid 1px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 3;
  }

  #navBtn {
    position: relative;
    width: 18px;
    height: 12px;
    margin: 0 auto;
  }

  #navBtn span {
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background-color: #23ADED;
    border-radius: 2px;
  }

  #navBtn span:nth-of-type(1) {
    top: 0;
    transition: 0.6s;
  }
  #navBtn span:nth-of-type(2) {
    top: 5px;
    transition: 0.6s;
  }
  #navBtn span:nth-of-type(3) {
    top: 10px;
    transition: 0.6s;
  }

  .navBtn_area .txt {
    width: 28px;
    height: auto;
    margin-top: 4px;
  }
  .navBtn_area .txt.menu {
    display: block;
  }
  .navBtn_area .txt.close {
    display: none;
  }

  /* ボタンを押した挙動.active */
  .scroll-prevent {
    /*動き固定*/
    position: fixed;
    /*奥行きを管理*/
    z-index: -1;
    /*下2つで背景を元のサイズのまま表示することができる*/
    width: 100%;
    height: 100%;
    top: 0;
  }

  .scroll-prevent nav {
    position: fixed;
    display: block;
  }

  #navBtn.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(5px) rotate(-45deg);
  }
  #navBtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  #navBtn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-5px) rotate(45deg);
  }

  #navBtn.active + p.menu {
    display: none;
  }
  #navBtn.active + p + p.close {
    display: block;
  }
}





/* nav
---------------------------------------------------*/
nav {
  background: #23ADED;
}

nav .inner{
  height: inherit;
}

nav li.ext_link a::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 10px;
  background: url("/common/img/header_ico_extLink.png")no-repeat center center/10px;
}

nav ul li a {
  color: #fff;
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.2;
}

nav .nav_list01 {
  display: flex;
  align-items: center;
}

nav .nav_list01 > li {
  position: relative;
}
nav .nav_list01 > li.home {
  width: 58px;
  padding-left: 10px;
  box-sizing: border-box;
}
nav .nav_list01 > li:nth-child(2) {width: 184px;}
nav .nav_list01 > li:nth-child(3) {width: 120px;}
nav .nav_list01 > li:nth-child(4) {width: 166px;}
nav .nav_list01 > li:nth-child(5) {width: 186px;}
nav .nav_list01 > li:nth-child(6) {width: 183px;}
nav .nav_list01 > li:nth-child(7) {width: 102px;}

nav .nav_list01 > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 64px;
}
nav .nav_list01 > li:last-child > a {
  justify-content: flex-end;
}
nav .nav_list01 > li.home > a {
  justify-content: flex-start;
}

nav .nav_list02 {
  visibility:hidden;
  position: absolute;
  top: 64px;
  padding-top: 11px;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
}
nav .nav_list01 > li:nth-child(2) .nav_list02 {
  width: 396px;
}
nav .nav_list01 > li:nth-child(3) .nav_list02 {
  width: 204px;
}
nav .nav_list01 > li:nth-child(4) .nav_list02 {
  width: 414px;
}
nav .nav_list01 > li:nth-child(5) .nav_list02 {
  width: 274px;
}
nav .nav_list02::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  top: 2px;
  left: 0;
  background: url("/common/img/nav_triangle.png")no-repeat left 40px top/22px 16px;
}
nav .nav_list01 li:nth-child(2) .nav_list02::before {
  background: url("/common/img/nav_triangle.png")no-repeat left 81px top/22px 16px;
}
nav .nav_list01 li:nth-child(3) .nav_list02::before {
  background: url("/common/img/nav_triangle.png")no-repeat left 50px top/22px 16px;
}
nav .nav_list01 li:nth-child(4) .nav_list02::before {
  background: url("/common/img/nav_triangle.png")no-repeat left 73px top/22px 16px;
}
nav .nav_list01 li:nth-child(5) .nav_list02::before {
  background: url("/common/img/nav_triangle.png")no-repeat left 83px top/22px 16px;
}
nav .nav_list01 li:hover .nav_list02 {
  visibility:visible;
  opacity: 1;
  transition: 0.2s;
}

nav .nav_list02 li {
  background: #23ADED;
  box-sizing: border-box;
}
nav .nav_list02 li:first-child {
  padding: 12px 12px 0;
  border-radius: 4px 4px 0 0;
}
nav .nav_list02 li + li {
  padding: 0 12px;
}
nav .nav_list02 li:last-child {
  padding: 0 12px 12px;
  border-radius: 0 0 4px 4px;
}

nav .nav_list02 li a {
  position: relative;
  display: block;
  color: #fff;
  padding: 20px 20px 20px 53px;
  border-radius: 5px;
  box-sizing: border-box;
}
nav .nav_list02 li a::before {
  position: absolute;
  content: "";
  top: 20px;
  left: 20px;
  width: 17px;
  height: 17px;
  background: url("/common/img/nav_arrow.png")no-repeat center center/17px;
  transform: translateX(0px);
}
nav .nav_list02 li a:hover {
  color: #1A9DD9;
  background: #fff;
  opacity: 1;
}
nav .nav_list02 li a:hover::before {
  background: url("/common/img/nav_arrow_hover.png")no-repeat center center/17px;
  transform: translateX(8px);
  transition: 0.5s;
}
nav .nav_list02 li.ext_link a:hover::after {
  background: url("/common/img/header_ico_extLink_hover.png")no-repeat center center/10px;
}

@media only screen and (max-width:768px) {
  nav {
    display: none;
    position: fixed;
    top: 58px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9;
    overflow-y: scroll;
  }

  nav .inner{
    width: 100%;
    height: initial;
    padding-bottom: 60px;
  }

  nav .nav_list01 {
    display: block;
    background: #23ADED;
  }

  nav .nav_list01 > li {
    border-bottom: #fff solid 1px;
  }
  nav .nav_list01 > li.home {
    width: 100%;
    padding-left: 0;
  }
  nav .nav_list01 > li:nth-child(2),
  nav .nav_list01 > li:nth-child(3),
  nav .nav_list01 > li:nth-child(4),
  nav .nav_list01 > li:nth-child(5),
  nav .nav_list01 > li:nth-child(6),
  nav .nav_list01 > li:nth-child(7) {
    width: 100%;
  }

  nav .nav_list01 > li > a {
    position: relative;
    justify-content: flex-start;
    padding: 0 24px;
  }
  nav .nav_list01 > li:last-child > a {
    justify-content: flex-start;
  }
  nav .nav_list01 > li.link_button::after {
    position: absolute;
    content: "";
    top: 22px;
    right: 24px;
    width: 20px;
    height: 20px;
    background: url("/common/img/nav_sp_linkicon.png")no-repeat center center/20px;
  }
  nav .nav_list01 > li.home > a::after {
    background: url("/common/img/nav_sp_linkicon.png")no-repeat center center/20px;
  }

  nav .nav_list01 > li.home a p {
    font-weight: bold;
  }

  nav .nav_list01 > li > .toggle_switch {
    position: absolute;
    content: "";
    top: 0;
    right: 2px;
    width: 64px;
    height: 64px;
    background: url("/common/img/nav_sp_openicon.png")no-repeat center center/20px;
    cursor: pointer;
  }
  nav .nav_list01 > li > p.open {
    background: url("/common/img/nav_sp_closeicon.png")no-repeat center center/20px;
  }

  nav .nav_list02 {
    position: relative;
    display: none;
    width: 100%;
    top: 0;
    padding: 0;
    background: #fff;
    border-radius: 0;
    z-index: inherit;
    visibility: visible;
    transition: initial;
    opacity: 1;
  }
  nav .nav_list01 > li:nth-child(2) .nav_list02,
  nav .nav_list01 > li:nth-child(3) .nav_list02,
  nav .nav_list01 > li:nth-child(4) .nav_list02,
  nav .nav_list01 > li:nth-child(5) .nav_list02 {
    width: 100%;
  }
  nav .nav_list01 li:hover .nav_list02 {
    visibility: initial;
  }

  nav .nav_list02::before {
    display: none;
  }

  nav .nav_list02 li {
    background: #fff;
  }
  nav .nav_list02 li:first-child {
    padding: 0;
    border-radius: 0;
  }
  nav .nav_list02 li + li {
    padding: 0;
  }
  nav .nav_list02 li:last-child {
    padding: 0;
    border-radius: 0;
  }

  nav .nav_list02 li a {
    display: flex;
    align-items: center;
    height: 64px;
    color: #1A9DD9;
    padding: 0 24px 0 56PX;
    border-radius: 0;
  }
  nav .nav_list02 li a::before {
    width: 15px;
    height: 15px;
    top: 24px;
    left: 24px;
    background: url("/common/img/nav_arrow_sp.png")no-repeat center center/15px;
  }
  nav .nav_list02 li.ext_link a::after {
    min-width: 10px;
    margin-left: 10px;
    background: url("/common/img/header_ico_extLink_hover.png")no-repeat center center/10px;
  }

  nav .nav_list02 li a:hover::before {
    top: 24px;
    left: 24px;
    background: url("/common/img/nav_arrow_sp.png")no-repeat center center/15px;
  }
  nav .nav_list02 li.ext_link a:hover::after {
    background: url("/common/img/header_ico_extLink_hover.png")no-repeat center center/10px;
  }

  /* サブナビゲーション */
  .sub_nav {
    text-align: center;
    padding: 16px 16PX 14px;
    background: #DEF1FF;
  }

  .sub_nav .contact_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 343px;
    min-height: 48px;
    color: #fff;
    font-size: 1.6em;
    font-weight: bold;
    margin: 0 auto;
    background: #23ADED;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 2px;
    box-sizing: border-box;
  }
  .sub_nav .contact_btn a::before {
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: url("/common/img/ico_tel_sp_w.png")no-repeat center center/20px;
  }

  .sub_nav .close_btn {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    max-width: 150px;
    min-height: 32px;
    margin: 16px auto 0;
    background: #fff;
    border-radius: 16px;
    border: #23ADED solid 1px;
    box-sizing: border-box;
    cursor: pointer;
  }
  .sub_nav .close_btn::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    top: 9px;
    left: 14px;
    background: url("/common/img/ico_bad_sp.png")no-repeat center center/12px;
  }

  .sub_nav .close_btn p {
    color: #23ADED;
    font-size: 1.4em;
    font-weight: bold;
    padding-left: 4px;
  }
}


/* footer
---------------------------------------------------*/
footer {
  position: relative;
  background: #DAF1FC;
}

/* アクセス */
.ft_access {
  padding-bottom: 60px;
  background: url(/common/img/mainvisual_bg.png)no-repeat center bottom,#fff;
}

.ft_access .inner {
  display: flex;
  justify-content: space-between;
}

.ft_access .overview {
  width: 370px;
  padding: 10px 0 0 60px;
}

.ft_access .overview > dl {
  display: flex;
  margin-top: 36px;
  line-height: 1.4;
}
.ft_access .overview > dl + dl{
  margin-top: 20px;
}

.ft_access .overview > dl > dt {
  min-width: 4em;
  font-size: 1.4em;
  font-weight: bold;
  margin-right: 28px;
}

.ft_access .overview > dl > dd .default {
  font-size: 1.6em;
}
.ft_access .overview > dl > dd .small {
  font-size: 1.4em;
}
.ft_access .overview > dl > dd .default + .small {
  margin-top: 10px;
}

/* 所在地 */
.ft_access .overview .address dd .access_link {
  display: inline-block;
}

.ft_access .overview .address dd .access_link a {
  display: flex;
  align-items: center;
  height: 15px;
  color: #333;
}

.ft_access .overview .address dd .access_link .ico_arrow {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 8px;
}
.ft_access .overview .address dd .access_link .ico_arrow img {
  width: 100%;
  height: auto;
  vertical-align: initial;
}

/* 電話番号 */
.ft_access .overview .phone dd .tel a {
  color: #333;
}
.ft_access .overview .phone dd .tel a:hover {
  opacity: 1;
}

.sub_footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 28px;
  padding-bottom: 10px;
  box-sizing: border-box;
}

footer .footer_nav ul {
  display: flex;
  align-items: center;
}

footer .footer_nav ul li + li{
  margin-left: 38px;
}

footer .footer_nav ul li a {
  display: block;
  position: relative;
  color: #333;
  font-size: 1.2em;
  font-weight: bold;
  padding-left: 20px;
  overflow: visible;
}
footer .footer_nav ul li a::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 0;
  left: 0;
  background: url("/common/img/footer_ico_arrow.png")no-repeat left top/12px 12px;
}
footer .footer_nav ul li.ext_link a::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 3px;
  right: -14px;
  background: url("/common/img/footer_ico_extLink.png")no-repeat right top/8px 8px;
}

footer #copyright {
 font-size: 1.2em;
}

@media only screen and (max-width:768px) {
  .ft_access {
    position: relative;
    padding-bottom: 0;
    background: #fff;
  }

  .ft_access::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("/common/img/mainvisual_bg_sp.png")no-repeat center bottom/100% 10px;
  }

  .ft_access .inner {
    width: 100%;
    flex-direction: column;
  }

  .ft_access .overview {
    width: 100%;
    max-width: 460px;
    padding: 0 3%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .ft_access .overview .logo {
    width: 100%;
    max-width: 343px;
    height: auto;
  }

  .ft_access .overview > dl {
    margin-top: 20px;
  }
  .ft_access .overview > dl + dl{
    margin-top: 14px;
  }

  .ft_access .overview > dl > dt {
    margin-right: 16px;
  }

  .ft_access .overview > dl > dd .default + .small {
    margin-top: 12px;
  }

  /* 所在地 */
  .ft_access .overview .address dd .access_link a {
    height: 100%;
    min-height: 15px;
  }

  .ft_access .overview .address dd .access_link .ico_arrow {
    width: 100%;
    max-width: 15px;
    height: 100%;
    max-height: 15px;
  }

  .ft_access .google_map {
    height: 0;
    overflow: hidden;
    margin-top: 24px;
    padding-bottom: 55%;
    position: relative;
  }

  .ft_access .google_map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }

  .sub_footer .inner {
    align-items: center;
    flex-direction: column;
    height: initial;
    min-height: 72px;
  }

  footer .footer_nav {
    padding-right: 15px;
  }

  footer .footer_nav ul {
    justify-content: center;
    padding: 18px 0;
  }

  footer .footer_nav ul li + li{
    margin-left: 57px;
  }
}









/* news_list
---------------------------------------------------*/
/* カテゴリ設定 */
.news_list dl dt {
  display: flex;
}

.news_list dl dt span {
  position: relative;
  min-width: 94px;
  height: 20px;
  margin: 0 16px;
}

.news_list dl dt span.news::before,
.news_list dl dt span.important::before,
.news_list dl dt span.closure::before,
.news_list dl dt span.lecture::before {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 24px;
  top: -2px;
  left: 0;
  font-size: 0.75em;
  font-weight: bold;
  color: #fff;
  border-radius: 2px;
}
.news_list dl dt span.news::before,
.article_content dt.news::before {
  content: "お知らせ";
  background: #37A8DD;
}
.news_list dl dt span.important::before,
.article_content dt.important::before {
  content: "重要なお知らせ";
  background: #EA5252;
}
.news_list dl dt span.closure::before,
.article_content dt.closure::before {
  content: "休診のお知らせ";
  background: #ED8DAF;
}
.news_list dl dt span.lecture::before,
.article_content dt.lecture::before {
  content: "活き粋健康講座";
  background: #74B979;
}

/* NEWアイコン設定 */
.news_list dl.new::after {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "NEW";
  width: 44px;
  min-width: 44px;
  height: 20px;
  color: #EA5252;
  font-size: 0.6em;
  font-weight: bold;
  margin-left: 16px;
  border: #EA5252 solid 1px;
  border-radius: 2px;
  box-sizing: border-box;
}

/* PDFアイコン設定 */
.news_list dl.pdf dd {
  position: relative;
  padding-right: 29px;
}
.news_list dl.pdf dd::after {
  position: absolute;
  display: flex;
  content: "";
  width: 18px;
  min-width: 18px;
  height: 20px;
  top: 0;
  right: 0;
  background: url("/common/img/ico_pdf.png")no-repeat center center/18px 20px;
}

@media only screen and (max-width:768px) {
  .news_list dl dt span {
    width: 86px;
    min-width: initial;
    height: 18px;
    margin: 0 0 0 12px;
  }

  .news_list dl dt span.news::before,
  .news_list dl dt span.important::before,
  .news_list dl dt span.closure::before,
  .news_list dl dt span.lecture::before {
    height: 100%;
    top: 0;
    font-size: 0.65em;
  }

  /* NEWアイコン設定 */
  .news_list dl.new::after {
    display: none;
  }

  .news_list dl.new dt::after {
    display: flex;
    justify-content: center;
    align-items: center;
    content: "NEW";
    width: 100%;
    min-width: initial;
    max-width: 44px;
    height: 18px;
    color: #EA5252;
    font-size: 0.6em;
    font-weight: bold;
    margin: 0 16px 0 10px;
    border: #EA5252 solid 1px;
    border-radius: 2px;
    box-sizing: border-box;
  }

  /* PDFアイコン設定 */
  .news_list dl.pdf dd {
    padding-right: 0;
  }
  .news_list dl.pdf dt span {
    margin-right: 29px;
  }

  .news_list dl.pdf dd::after {
    display: none;
  }
  .news_list dl.pdf dt span::after {
    position: absolute;
    display: flex;
    content: "";
    width: 18px;
    min-width: 18px;
    height: 20px;
    top: -1px;
    right: -29px;
    background: url("/common/img/ico_pdf.png")no-repeat center center/18px 20px;
  }
}







/* totop
---------------------------------------------------*/
#totop {
  position: absolute;
  right: 32px;
  bottom: 25px;
}

#totop.fixed {
  position: fixed;
  right: 32px;
  bottom: 25px;
}

#totop img {
  width: 64px;
  height: 64px;
  background-color: rgba(35,173,237,0.8);
  border-radius: 50%;
  transition: 0.4s;
}

#totop:hover img {
  background-color: rgba(35,173,237,1);
}

@media only screen and (max-width:768px) {
  #totop {
    right: 18px;
    bottom: 66px;
  }

  #totop.fixed {
    right: 18px;
    bottom: 18px;
  }
}


/* IEのみ適用させたいとき
---------------------------------------------------*/
@media all and (-ms-high-contrast: none) { /* IE */

}
