@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : topics.css
Description : トピックスページ
===================================================================== */
/* =====================================================================
    一覧
======================================================================*/
#topics .topics_list li {
  position: relative;
}
#topics .topics_list li:not(:last-child) {
  margin-bottom: 6rem;
}
#topics .topics_list li dl dt {
  -webkit-clip-path: polygon(9% 0, 100% 0, 100% 85%, 91% 100%, 0 100%, 0 15%);
          clip-path: polygon(9% 0, 100% 0, 100% 85%, 91% 100%, 0 100%, 0 15%);
}
#topics .topics_list li dl dd p {
  line-height: 1.833;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
#topics .topics_list li dl dd span {
  display: block;
  margin-top: 0.6em;
  font-size: 2rem;
  color: #d91a1d;
}
#topics .topics_list li:first-child dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#topics .topics_list li:first-child dl dd {
  margin-top: 0.6em;
}
#topics .topics_list li:not(:first-child) dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#topics .topics_list li:not(:first-child) dl dt {
  width: 28rem;
}
#topics .topics_list li:not(:first-child) dl dd {
  width: 32rem;
  margin-top: -0.3em;
}

@media screen and (min-width: 768px) {
  #topics .topics_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #topics .topics_list li {
    width: calc(300 / 1000 * 100%);
    margin: 0 calc(44 / 1000 * 100%) calc(60 / 1000 * 100%) 0;
  }
  #topics .topics_list li:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
  #topics .topics_list li:nth-child(3n+1), #topics .topics_list li:last-child {
    margin-right: 0;
  }
  #topics .topics_list li dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #topics .topics_list li dl dt {
    overflow: hidden;
  }
  #topics .topics_list li dl dt img {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  #topics .topics_list li dl dd {
    margin-top: 1.4rem !important;
  }
  #topics .topics_list li dl dd p {
    line-height: 1.625;
  }
  #topics .topics_list li dl dd span {
    margin-top: 1.4rem;
    font-size: 1.2rem;
  }
  #topics .topics_list li:first-child {
    width: calc(880 / 1000 * 100%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6rem !important;
  }
  #topics .topics_list li:first-child dl dt {
    width: calc(640 / 880 * 100%);
    margin: 0 auto;
  }
  #topics .topics_list li:not(:first-child) dl dt {
    width: 100%;
  }
  #topics .topics_list li a:hover dt img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
/* =====================================================================
    詳細
======================================================================*/
#topics article {
  position: relative;
  padding: 6.6rem 0 8.3rem;
}
#topics article::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: calc(750 / 640 * 100%);
  height: 100%;
  margin-left: calc(-55 / 640 * 100%);
  background: rgba(26, 26, 26, 0.8);
}
#topics article > * {
  position: relative;
}
#topics article header {
  margin-bottom: 4.6rem;
}
#topics article header h3 {
  line-height: 1.833;
}
#topics article header .topics_date {
  margin-top: 1.4rem;
  font-family: "Quattrocento", serif;
  font-size: 2rem;
  color: #d91a1d;
}
#topics article .topics_contents > * {
  margin-bottom: 5rem;
}
#topics article .topics_contents figure img,
#topics article .topics_contents p img {
  -webkit-clip-path: polygon(9% 0, 100% 0, 100% 85%, 91% 100%, 0 100%, 0 15%);
          clip-path: polygon(9% 0, 100% 0, 100% 85%, 91% 100%, 0 100%, 0 15%);
}
#topics article .topics_contents p {
  font-size: 2.2rem;
  line-height: 2;
}
#topics article .topics_contents .btn1 a {
  background-color: #1c1919;
}
#topics article .topics_sns_share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 7rem;
  padding: 4rem 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
#topics article .topics_sns_share dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2rem;
}
#topics article .topics_sns_share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 29rem;
}
#topics article .topics_sns_share ul li {
  width: 8rem;
}
#topics article .topics_sns_share ul li a {
  border-radius: 50%;
  background-color: #fff;
  padding: 2.1rem 0;
}
#topics article .topics_sns_share ul li a img {
  width: 4.1rem;
  margin: auto;
}
#topics .btn_back {
  margin-top: 8rem;
}

@media screen and (min-width: 768px) {
  #topics article {
    padding: 4.6rem 0 6rem;
  }
  #topics article::before {
    width: 100%;
    margin: 0;
  }
  #topics article header {
    margin-bottom: 2rem;
    padding: 0 6rem;
  }
  #topics article header h3 {
    line-height: 2;
  }
  #topics article header .topics_date {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
  #topics article .topics_contents {
    padding: 0 6rem;
  }
  #topics article .topics_contents figure img,
#topics article .topics_contents p img {
    width: 64rem;
    margin: 0 auto;
  }
  #topics article .topics_contents p {
    font-size: 1.4rem;
    line-height: 2.285;
  }
  #topics article .topics_contents .btn1 a:hover {
    background-color: #a71417;
  }
  #topics article .topics_sns_share {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(750 / 1000 * 100%);
    margin: 6rem auto 0;
    padding: 5rem 0;
  }
  #topics article .topics_sns_share ul {
    width: 26rem;
    margin-left: 9rem;
  }
  #topics article .topics_sns_share ul li {
    width: 6rem;
  }
  #topics article .topics_sns_share ul li a {
    position: relative;
    padding: 1.6rem 0;
  }
  #topics article .topics_sns_share ul li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3.1rem;
    height: 2.8rem;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    opacity: 0;
  }
  #topics article .topics_sns_share ul li a img {
    width: 3.1rem;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  #topics article .topics_sns_share ul li a:hover {
    background-color: #a71417;
  }
  #topics article .topics_sns_share ul li a:hover::before {
    opacity: 1;
  }
  #topics article .topics_sns_share ul li a:hover img {
    opacity: 0;
  }
  #topics article .topics_sns_share ul li:nth-child(1) a::before {
    background: url(../images/sns_share/btn_sns1_hover.png) no-repeat center/contain;
  }
  #topics article .topics_sns_share ul li:nth-child(2) a::before {
    background: url(../images/sns_share/btn_sns2_hover.png) no-repeat center/contain;
  }
  #topics article .topics_sns_share ul li:nth-child(3) a::before {
    background: url(../images/sns_share/btn_sns3_hover.png) no-repeat center/contain;
  }
  #topics .btn_back {
    margin-top: 6rem;
  }
}
/*# sourceMappingURL=topics.css.map */