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

/* override
=========================================================================*/
a:link,
a:visited {
  text-decoration: none;
}
em {
  font-weight: bold;
}

#header {
  border-bottom: none;
}


/* 共通
=========================================================================*/
.pageTtl {
  padding: .5em 0;
  background-color: #00aaeb;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.pageLead {
  padding: .5em;
}


/* トップページ
=========================================================================*/
.qaList {
  display: block;
}
.qaList dl {
  padding: .5em;
  border-top: 1px solid #ccc;
  color: #333;
  text-decoration: none;
}
.qaList:last-child dl {
  border-bottom: 1px solid #ccc;
}
.qaList dt {
  margin-bottom: .25em;
  font-size: 16px;
  font-weight: bold;
}


/* 詳細ページ
=========================================================================*/
.qaTtl {
  padding: .5em;
  border: solid #ccc;
  border-width: 1px 0;
  background-color: #fdfdee;
  font-size: 16px;
  font-weight: bold;
}
.qaDetail {
  border-bottom: 1px solid #ccc;
}
.qaDetail dt {
  position: relative;
  padding: .5em 30px .5em 37px;
  background: url(../images/icon_q.png) 7px 50% no-repeat;
  background-size: 23px 23px;
  font-size: 16px;
  font-weight: bold;
}
.qaDetail dt:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 7px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url(../images/icon_toggle_down.png) 0 0 no-repeat;
  content: '';
}
.qaDetail dt.is-show:after {
  background-image: url(../images/icon_toggle_up.png);
}
.qaDetail dd {
  display: none;
  padding: .5em;
  border-top: 1px solid #ccc;
}
.qaDetail .is-show + dd {
  display: block;
}
.browserLink {
  position: relative;
  padding: .5em 5px .5em 25px;
  background: url("../images/icon_browser.png") 1px 50% no-repeat;
  background-size: 20px 20px;
}</pre></body></html>