@charset "UTF-8";
/*=======================================
disclosure
=========================================*/
.p-disclosure {
  padding-bottom: 120px;
}
.p-disclosure [class^="p-disclosure__block"] {
  padding-bottom: 100px;
}
.p-disclosure [class^="p-disclosure__block"]:last-child {
  padding-bottom: 0;
}

h2 {
  margin-bottom: 40px;
}

h3 {
  background-color: #ece9df;
  padding: 0 30px;
  line-height: 60px;
  height: 60px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.normal-list li {
  margin-bottom: 10px;
}
.normal-list li:last-child {
  margin-bottom: 0;
}
.normal-list li span {
  display: inline-block;
  width: 200px;
  font-weight: bold;
}
.normal-list li:before {
  content: "⚫︎";
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  color: #d3d2cc;
}

.pdf-list {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pdf-list:before {
  content: none;
}
.pdf-list:after {
  content: "";
  width: 32%;
  display: block;
}
.pdf-list li {
  width: 32%;
  background-color: #FFF;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.05);
  position: relative;
}
.pdf-list li:after {
  font-family: "Font Awesome 5 Free";
  content: '\f105';
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.pdf-list li:nth-child(n+4) {
  margin-top: 2%;
}
.pdf-list li a {
  display: block;
  padding: 10px 30px;
  text-decoration: none;
  display: flex;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.pdf-list li a:before {
  /* v7読み込みでも名称は通常こちらです */
  font-family: "Font Awesome 7 Free";
  font: var(--fa-font-regular);
  content: '\f1c1';
  /* PDFアイコン */
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  left: 15px;
  /* 左端からの距離 */
  top: 50%;
  /* アイコン自体の中心を軸にずらす */
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 16px;
  color: #ff0000;
  /* PDFらしく赤色にする場合は追加してください */
}

/* ----------------------------- スマホ（～767px） */
@media screen and (max-width: 767px) {
  .p-disclosure {
    padding-bottom: 60px;
  }
  .p-disclosure [class^="p-disclosure__block"] {
    padding-bottom: 80px;
  }

  .normal-list li {
    margin-bottom: 10px;
  }
  .normal-list li:last-child {
    margin-bottom: 0;
  }
  .normal-list li span {
    display: block;
    width: 90%;
    font-weight: bold;
  }
  .normal-list li span:after {
    content: "";
    display: block;
    clear: both;
  }
  .normal-list li span:before {
    content: "⚫︎";
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    color: #d3d2cc;
  }
  .normal-list li:before {
    content: none;
  }

  .pdf-list {
    display: block;
  }
  .pdf-list:after {
    content: none;
  }
  .pdf-list li {
    width: 100%;
    margin-bottom: 10px;
  }
  .pdf-list li:last-child {
    margin-bottom: 0;
  }
}
