@charset "UTF-8";
/* CSS Document */
/*----------------------------------------
変数
----------------------------------------*/
/*----------------------------------------
サイト共通 スタイルシート
----------------------------------------*/
:root {
  --colorImgBackGround: #EEEEEE;
}

li {
  list-style: none;
}

/* カテゴリリスト
---------------------------------------------- */
#labelWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: var(--size16px);
}
#labelWrap li {
  list-style: none;
  margin: 0 1rem 1rem 0;
}
#labelWrap li a {
  color: var(--colorTextSub);
  padding: 0.25rem 0.5rem;
}

/* トピックス一覧
---------------------------------------------- */
@media screen and (max-width: 899px) {
  #topicsWrap {
    margin-bottom: var(--size64px);
  }
}
@media screen and (min-width: 900px) {
  #topicsWrap {
    margin-bottom: 7rem;
  }
}
@media screen and (min-width: 590px) {
  #topicsWrap #topicsBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#topicsWrap #topicsBox section:not(:last-child) {
  margin-bottom: 4rem;
}
@media screen and (min-width: 590px) {
  #topicsWrap #topicsBox section {
    width: 32%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 590px) {
  #topicsWrap #topicsBox section:not(:nth-child(3n)) {
    margin-right: 2%;
  }
}
@media screen and (min-width: 590px) {
  #topicsWrap #topicsBox section:not(:nth-child(-n+3)) {
    margin-top: var(--size48px);
  }
}
#topicsWrap #topicsBox section a .topicsImg {
  position: relative;
  width: 100% !important;
  height: auto !important;
  overflow: hidden;
  padding-top: 60%;
  background-color: var(--colorImgBackGround);
  margin-bottom: var(--size16px);
}
#topicsWrap #topicsBox section a .topicsImg span {
  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: #EEEEEE;
}
#topicsWrap #topicsBox section a .topicsImg span img {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
#topicsWrap #topicsBox section a .topicsHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.5rem;
}
#topicsWrap #topicsBox section a .topicsHead time {
  font-size: var(--size14px);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin-right: 0.5rem;
}
#topicsWrap #topicsBox section a h3 {
  font-size: var(--size18px);
  font-weight: bold;
}
#topicsWrap #topicsBox section a:hover .topicsImg img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
          transform: scale3d(1.1, 1.1, 1.1);
}
#topicsWrap #topicsBox .topicsNone {
  margin: 2em 0;
}

/* トピックス詳細
---------------------------------------------- */
#topicsDetailWrap {
  margin-bottom: var(--size64px);
}
#topicsDetailWrap a {
  font-size: var(--size16px);
  text-decoration: underline;
}
#topicsDetailWrap a:hover {
  opacity: 1;
  text-decoration: none;
}
#topicsDetailWrap .topicsData {
  margin-bottom: var(--size32px);
}
#topicsDetailWrap .topicsData .dataHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--size16px);
}
#topicsDetailWrap .topicsData .dataHead time {
  font-size: var(--size16px);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin-right: var(--size16px);
}
#topicsDetailWrap .topicsData .mainImg {
  position: relative;
  padding-bottom: 50%;
  margin-bottom: var(--size24px);
}
#topicsDetailWrap .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;
}
#topicsDetailWrap .topicsData .mainImg li img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
}
#topicsDetailWrap .topicsData .mainImg li.fadein {
  opacity: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#topicsDetailWrap .topicsData .subImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: var(--size32px);
}
#topicsDetailWrap .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;
}
#topicsDetailWrap .topicsData .subImg li:not(:last-child) {
  margin-right: 1%;
}
#topicsDetailWrap .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;
}
#topicsDetailWrap .topicsData .subImg li.current {
  border: 1px solid var(--colorMain);
}
#topicsDetailWrap .pdfBox li,
#topicsDetailWrap .otherBox li,
#topicsDetailWrap .linkUrl {
  position: relative;
  padding-left: var(--size20pz);
}
#topicsDetailWrap .pdfBox li:before,
#topicsDetailWrap .otherBox li:before,
#topicsDetailWrap .linkUrl:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#topicsDetailWrap .pdfBox li a img,
#topicsDetailWrap .otherBox li a img,
#topicsDetailWrap .linkUrl a img {
  display: none;
}
#topicsDetailWrap .pdfBox li:before {
  background: url("images/pdfIcon.svg") no-repeat center center/contain;
}
#topicsDetailWrap .pdfBox li a {
  padding-left: 1.6em;
}
#topicsDetailWrap .otherBox li:before {
  background: url("images/clip.svg") no-repeat center center/contain;
}
#topicsDetailWrap .otherBox li a {
  padding-left: 1.6em;
}
#topicsDetailWrap .linkUrl:before {
  background: url("images/linkIcon.svg") no-repeat center center/contain;
}
#topicsDetailWrap .linkUrl a {
  padding-left: 1.6em;
}
#topicsDetailWrap p {
  font-size: var(--size16px);
}

@media screen and (max-width: 589px) {
  .btn {
    margin-bottom: var(--size64px);
  }
}
@media screen and (min-width: 590px) {
  .btn {
    margin-bottom: 7rem;
  }
}/*# sourceMappingURL=topics.css.map */