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

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

/* ----全体設定---- */
html{
  min-width: 1200px;
}
body {
  margin: 0;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #2B2B2B;
}

/* ----ヘッドライン---- */

h1,
.h1 {
  margin: 10px 0 20px 0;
  font-size: 171%;
  font-weight: bold;
  background: #f5f5f5;
  padding: 14px 16px 9px 16px;
}

h2 {
  margin: 20px 0;
  font-size: 171%;
  font-weight: bold;
　border-bottom: 1px solid #2B2B2B;
}

h3 {
  margin: 10px 0;
  font-size: 130%;
  font-weight: normal;
}

/* ----リンク---- */

a {
  text-decoration: underline;
  color: #2B2B2B;
}

a:hover,
a:focus {
  text-decoration: none;
}

/*
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
*/

a&gt;img{
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
}
a:hover&gt;img{
  opacity: 0.8;
}
a.not:hover&gt;img{
  opacity: 1;
}

/* ----タグ---- */

img {
  max-width: 100%;
}

hr {
  border: 0;
  border-bottom: 1px dotted #ccc;
}


input[type="text"]:focus,
button:focus,
select:focus {
  outline: 0;
}
</pre></body></html>