@charset "UTF-8";

/*　共通　*/
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1 {
  color: #242323;
  font-size: 20px;
  margin: 0 0 32px;
}

.bold {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: #3895ff;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
  font-size: 14px;
}
/*　ここまで共通　*/

/*　--パンくず　*/
.breadcrumb {
  background-color: #eeeeee;
}

.breadcrumb__list{
  display: flex;
  max-width: 990px;
  margin: 0 auto;
  padding: 12px 16px;
}

.breadcrumb__item{
  position: relative;
  margin-right: 28px;
  color: #242323;
  font-size: 12px;
}

.breadcrumb__item:not(:last-child)::after {
  position: absolute;
  top: 6px;
  right: -15px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #bababa;
  border-right: 2px solid #bababa;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: '';
}

.breadcrumb__item:last-child{
  font-weight: bold;
  margin-right: 0;
}

.breadcrumb__item a{
  color: #242323;
}
/*　--ここまでパンくず　*/

.contentsWrapper {
  color: #242323;
  padding: 0 24px;
  margin: 48px auto 0;
  max-width: 990px;
  flex-grow: 1;
}

@media screen and (min-width: 768px) {
  .contentsWrapper {
    width: 990px;
  }
}

.heading {
  font-size: 20px;
  margin: 0;
}

.subHeading{
  font-size: 16px;
  font-weight: bold;
  margin-top: 40px;
}

.text{
  font-size: 14px;
  color: #242323;
  margin-top: 16px;
}

.linkList{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.pdfList{
  width: 100%;
  margin-top: 16px;
  border: 1px solid #eeeeee;
}

.pdfList__item{
  padding: 12px 24px;
  border-bottom: 1px solid #eeeeee;
}

.pdfList__item:last-of-type{
  border-bottom: none;
}

.pdfList__anchor {
  display: flex;
  align-items: center;
}

.pdfList__anchor::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  padding-right: 24px;
  margin-right: 4px;
  background: no-repeat url("../images/PDF.svg");
}

.pdfList__pdfTextContainer {
  display: flex;
  flex-direction: column;
}

.pdfList__pdfTextDownload{
  font-size: 11px;
}

.pdfList__pdfTextDate {
  font-size: 10px;
  color: #242323;
}
