@charset "utf-8";
@import url(/font/quark-light.css);

.s-accordion {
  background-color: #eee;
  font-weight: normal;
  font-size: 16px;
  font-family: 'Kanit';
  color: #444;
  line-height: 150%;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
}
@media screen and (max-width: 600px) {
    button.s-accordion {
    font-size: 22px !important;
    }
}
@media screen and (max-width: 500px) {
    button.s-accordion {
    font-size: 20px !important;
    }
}
.s-active, .s-accordion:hover {
  background-color: #ccc; 
}
.s-accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.s-active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}
.s-panel {
  display: none;
  background-color: white;
  overflow: hidden;
  padding:20px;
}
.s-panel p {
  font-weight: normal;
  font-size: 18px;
  font-family: 'Kanit';
  color: #444;
  line-height: 150%;
}