@charset "UTF-8";

/*
--------------------------------
	text link
--------------------------------
*/
/* ---- link with arrow and underline: 14px bold ---- */
a.c-arrow-link.pdf-img::after {
  content: none;
}
a.c-arrow-link.pdf-img img {
  position: absolute;
  right: 0;
  top: calc(50% - 15px);
  width: 20px;
  height: 24px;
  background: url(../images/icon_pdf.svg) center no-repeat;
}

/* ---- link with arrow and underline: 16px regular ---- */
a.c-icon-link.pdf-img {
  padding-right: 30px;
}
a.c-icon-link.pdf-img::after {
  content: none;
}
a.c-icon-link.pdf-img:hover::after, a.c-icon-link.pdf:active::after {
  animation: none;
}
a.c-icon-link.pdf-img img {
  position: absolute;
  right: 0;
  top: calc(50% - 11px);
  width: 16px;
  height: 19px;
  background-image: url(../images/icon_pdf.svg);
  background-size: contain;
}

/*
--------------------------------
	button
--------------------------------
*/
.c-button.pdf-img::after {
  content: none;
}
.c-button.pdf-img img {
  position: absolute;
  right: 16px;
  top: calc(50% - 11px);
  width: 18px;
  height: 22px;
  /*cssで色反転*/
  filter: invert(100) brightness(100);
}
.c-button:hover.pdf-img img, .c-button:active.pdf-img img {
  /*cssで色反転 戻し*/
  filter: invert(0) brightness(0);
}
.c-button.compact.pdf-img img {
  right: 6px;
}

/*
--------------------------------
	article list
--------------------------------
*/
/* ---- news: press release archive ---- */
.c-article-list-topics a.pdf-img {
  padding: 27px 60px 23px 30px;
}
.c-article-list-topics a.pdf-img::after {
  content: "";
  display: ;
  position: initial;
  right: initial;
  top: initial;
  width: initial;
  height: initial;
  background-image: initial;
  background-size: initial;
}
.c-article-list-topics a.pdf-img p + img {
  position: absolute;
  top: calc(50% - 12px);
  width: 20px;
  height: 24px;
  right: 30px;
}

@media screen and (max-width: 767.9px) {
  .c-article-list-topics a.pdf-img {
      padding: 27px calc(5vw + 35px) 23px 5vw;
  }
  .c-article-list-topics a.pdf-img p + img {
      right: 5vw;
  }
}

/*
--------------------------------
	link list
--------------------------------
*/
/* ---- panel ---- */
.c-box-link-list ul a.pdf-img::after {
  content: none;
}
.c-box-link-list ul a.pdf-img img {
  position: absolute;
  right: 28px;
  top: calc(50% - 10px);
  width: 17px;
  height: 20px;
}
@media screen and (max-width: 767.9px) {
  .c-box-link-list ul a.pdf-img img {
      right: calc(5vw - 2px);
  }
}

/*
--------------------------------
	download
--------------------------------
*/
/* ---- thumbnail + text link ---- */
.c-download dl dd a.pdf-img::after {
  content: none;
}
.c-download dl dd a.pdf-img img {
  display: inline-block;
  width: 20px;
  height: 24px;
  margin-left: 0.7em;
  vertical-align: middle;
  transform: translateY(-2px);
}