@charset "EUC-JP";
body{
  min-width: 1024px;
}
body *{
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
}
#contents{
  padding-bottom: 0;
  line-height: 1.5;
}
#contents *{
  box-sizing: border-box;
}
h2{
  margin-top: 30px;
  font-size: 25px;
  font-weight: bold;
}
.lead{
  margin-top: 16px;
  font-size: 14px;
}
h3{
  margin-top: 36px;
  font-size: 20px;
  font-weight: bold;
}
ul.dot{
  margin-top: 2px;
  font-size: 14px;
}
ul.dot li{
  position: relative;
  padding-left: 14px;
  margin-top: 8px;
}
ul.dot li:first-child{
  margin-top: 0;
}
ul.dot li::before{
  content:'・';
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 100%;
}

.accordion {
  background: #F1F1F1;
  margin-top: 8px;
  border-radius: 6px;
  overflow: hidden;
}
.accordion:first-of-type{
  margin-top: 4px;
}
.accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 25px 14px 14px;
  background: #F1F1F1;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}
.accordion-button .ttl{
  width: calc(100% - 30px);
}
.accordion-button .arrow {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  transition: transform 0.3s ease;
}
.accordion-button .arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #E00923;
  border-right: 2px solid #E00923;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 !important;/*アコーディオン処理で必須：余白は内部要素に指定 */
  
}
.accordion-content .accordion-inr {
  padding: 0 14px 14px;
  font-size: 14px;
}
.accordion.open .arrow {
  transform: rotate(180deg);
}
ul.dot.not_allowed{
  margin-top: 13px;
}
ul.dot.not_allowed li{
  margin-top: 0;
}
#contents .topicpath.bottom{
  margin-top: 100px;
  margin-bottom: 0;
  padding-bottom: 18px;
}