@charset "UTF-8";
/* CSS Document */
/*----------------------------------------
変数
----------------------------------------*/
/*----------------------------------------
サイト共通 スタイルシート
----------------------------------------*/
:root {
  background-color: var(--colorBackGround);
}

/* トピックス詳細
---------------------------------------------- */
#topicsDetail {
  margin-bottom: 64px;
}
#topicsDetail .topicsDetailInner {
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 64px;
}
@media screen and (min-width: 900px) {
  #topicsDetail .topicsDetailInner {
    max-width: 1520px;
    margin: 0 auto;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    padding-bottom: 160px;
  }
}
#topicsDetail a {
  font-size: var(--size16px);
  text-decoration: underline;
}
#topicsDetail a:hover {
  opacity: 1;
  text-decoration: none;
}
#topicsDetail .topicsData .dataHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
  gap: 32px;
}
#topicsDetail .topicsData .dataHead .category {
  font-size: var(--size12px);
  font-weight: 500;
  border: solid 1px #D5D5D5;
  border-radius: 15px;
  padding: 4px 20px;
}
@media screen and (min-width: 900px) {
  #topicsDetail .topicsData .dataHead .category {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
#topicsDetail .topicsData .dataHead .date {
  width: 8em;
  font-size: var(--size16px);
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  #topicsDetail .topicsData .dataHead .date {
    font-size: clamp(1rem, 0.8796296296rem + 0.4938271605vw, 1.25rem);
  }
}
#topicsDetail .topicsData .topicsTitle {
  font-size: var(--size24px);
  font-weight: 700;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--colorBorderGray);
}
#topicsDetail .topicsData p {
  font-size: var(--size16px);
  padding-top: 32px;
  padding-bottom: 24px;
}
#topicsDetail .topicsData .mainImg {
  position: relative;
  padding-bottom: 50%;
  margin-bottom: var(--size24px);
}
#topicsDetail .topicsData .mainImg li {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--colorImgBackGround);
  opacity: 0;
}
#topicsDetail .topicsData .mainImg li img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
}
#topicsDetail .topicsData .mainImg li.fadein {
  opacity: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#topicsDetail .topicsData .subImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#topicsDetail .topicsData .subImg li {
  position: relative;
  width: 19.2%;
  height: auto;
  padding-top: 13%;
  overflow: hidden;
  background-color: var(--colorImgBackGround);
  border: 1px solid var(--colorBackGround);
  cursor: pointer;
}
#topicsDetail .topicsData .subImg li:not(:last-child) {
  margin-right: 1%;
}
#topicsDetail .topicsData .subImg li img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto !important;
  height: 100% !important;
}
#topicsDetail .topicsData .subImg li.current {
  border: 1px solid var(--colorMain);
}
#topicsDetail .pdfBox li,
#topicsDetail .otherBox li,
#topicsDetail .linkUrl {
  position: relative;
  padding-left: var(--size20pz);
}
#topicsDetail .pdfBox li:before,
#topicsDetail .otherBox li:before,
#topicsDetail .linkUrl:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#topicsDetail .pdfBox li a img,
#topicsDetail .otherBox li a img,
#topicsDetail .linkUrl a img {
  display: none;
}
#topicsDetail .pdfBox li:before {
  background: url("images/pdfIcon.svg") no-repeat center center/contain;
}
#topicsDetail .pdfBox li a {
  padding-left: 1.6em;
}
#topicsDetail .otherBox li:before {
  background: url("images/clip.svg") no-repeat center center/contain;
}
#topicsDetail .otherBox li a {
  padding-left: 1.6em;
}
#topicsDetail .linkUrl:before {
  background: url("images/linkIcon.svg") no-repeat center center/contain;
}
#topicsDetail .linkUrl a {
  padding-left: 1.6em;
}
#topicsDetail .btnLink {
  margin: 0 auto;
}
#topicsDetail .btnLink a {
  text-decoration: none;
}/*# sourceMappingURL=topics.css.map */