@charset "UTF-8";
/*!
加藤歯科医院向けQandACSS
ver0.1 2015/01/18
*/
/*============================================================
* $CONTENTS
* コンテンツの基本指定
============================================================*/
/*-------------------------
コンテンツ全体
-------------------------*/
.qa-list {
  margin-top: 20px;
}
.qa-list dt, .qa-list dd {
  background: rgba(255, 255, 255, 0.6);
}
.qa-list dt {
  margin-top: 30px;
  padding: 1.5rem 2rem 1rem 3rem;
  background-image: url(../images/qanda/icon_q.png);
  background-position: 1rem 1.5rem;
  background-repeat: no-repeat;
  background-size: auto 1.5rem;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  font-weight: bold;
}
.qa-list dt:first-child {
  margin-top: 0;
}
.qa-list dd {
  position: relative;
  padding: 1rem 2rem 2rem 3rem;
  background-image: url(../images/qanda/icon_a.png);
  background-position: 1rem 1rem;
  background-repeat: no-repeat;
  background-size: auto 1.5rem;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.qa-list dd:before {
  position: absolute;
  content: "";
  display: block;
  width: 96%;
  height: 10px;
  top: 0;
  left: 0;
  margin-left: 2%;
  border-top: #dadada solid 1px;
}
