<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

html,
body {
  height: 100%;
}



*,
*:before,
*:after,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #333;
}

p,
dl {
  margin: 1rem 0;
  /*line-height: 1.5;*/
  line-height: 1.75;
}

ul {
  list-style: none;
  padding: 0;
}

dd {
  margin: 0;
}

img {
  max-width: 100%;
}


/***********************************
レスポンシブ*******************/
.pc-hide {
  display: inline-block !important ;
}

.sp-hide {
  display: none !important ;
}

.tablet-show {
  display: none !important ;
}


.tablet-pc-hide {
  display: inline-block !important ;
}


@media screen and (min-width: 568px) {

  .tablet-show {
    display: inline-block !important ;
  }


  .tablet-pc-hide {
    display: none !important ;
  }


}


@media screen and (min-width: 769px) {

  .sp-hide {
    display: inline-block !important;
  }

  .pc-hide {
    display: none !important ;
  }

  .tablet-show {
    display: none !important ;
  }


  .tablet-pc-hide {
    display: none !important ;
  }


}
</pre></body></html>