@charset "utf-8";

.dm {}

/* --------------------------------- access */


.faq {
  background: #FFF9F5;
  padding: 1em;
  border-radius: 1em;
}
.faq dt {
  font-size: 1.8rem;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px dotted;
  font-weight: bold;
  color: #ff347c;
}
.faq dt::before{
  content: "Q";
  font-size: 3rem;
  font-weight: bold;
  background: #ff347c;
  color: #fff;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  text-align: center;
  display: inline-block;
  border-radius: 1em;
  margin-right: .5em;
}
.faq dd {
  padding-left: 4.2em;
  margin-bottom: 2em;
  position: relative;
}
.faq dd::before{
  position: absolute;
  top: 0;
  left: 0.5em;
  content: "A";
  font-size: 3rem;
  font-weight: bold;
  background: #34afff;
  color: #fff;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  text-align: center;
  display: inline-block;
  border-radius: 1em;
  margin-right: .5em;
}
.faq dd:last-child{
  margin-bottom: 0;
}

