@charset "UTF-8";
/* px to rem functions start 
rem(Xpx)でコンパイル時にremへ変換

各ファイル内で1行目に
@use "variable" as var;
を入れた後、
font-size: var.rem(●px);
と記述することでpx→rem自動変換する。
*/
.topics {
  background: #f8f8f5;
}
.topics main {
  max-width: 1024px;
  margin: 140px auto 80px auto;
  padding: 45px;
  background: #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .topics main {
    max-width: 96%;
    padding: 20px 5%;
    margin: 70px auto 80px;
  }
}
.topics .topics_title {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.topics h1 {
  font-size: 1.5rem;
  margin-bottom: 0.2em;
}
.topics time {
  color: #7f9f6d;
}
.topics .topics_title01 {
  background: #184800;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 0.2em 0.8em;
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .topics .topics_title01 {
    font-size: 1.1875rem;
  }
}
.topics .topics_title02 {
  color: #184800;
  font-weight: bold;
  border-bottom: 1px solid #184800;
  font-size: 1.25rem;
  position: relative;
  padding: 0.2em 1.1em;
  margin-top: 1em;
}
.topics .topics_title02:before {
  content: "";
  width: 5px;
  height: 1.5em;
  background: #184800;
  position: absolute;
  left: 0;
  bottom: 3px;
}
.topics .topics_title03 {
  color: #184800;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 0.2em 0;
  margin-top: 1em;
}
.topics .topics_col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.topics .topic_info {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .topics .topic_info {
    grid-template-columns: 1fr;
  }
}
.topics .tag_list {
  color: #184800;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  font-size: 13px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .topics .tag_list {
    font-size: 11px;
  }
}
.topics .tag_list li {
  border: 1px solid #184800;
  padding: 0.1em 0.3em;
  min-width: 51px;
}
.topics .tag_list .tag_cat {
  color: #fff;
  background: #184800;
}
.topics .btn_article_back {
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 280px;
  margin: 2em auto;
  padding: 0.5em 1em;
  border-radius: 5px;
  background: #184800;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.topics .btn_article_back:before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  rotate: -45deg;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  display: inline-block;
  margin-right: 0.5em;
}
.topics .btn_cta {
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 1.375rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 340px;
  margin: 1em auto;
  padding: 0.5em 1em;
  border-radius: 5px;
  background: #ff8f21;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (hover) {
  .topics .btn_cta {
    transition: 0.2s ease scale;
  }
  .topics .btn_cta:hover {
    scale: 1.02;
  }
}
.topics .btn_cta:after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  rotate: 135deg;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  display: inline-block;
  margin-left: 0.5em;
}
.topics .article_table {
  max-width: 720px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
}
.topics .article_table th,
.topics .article_table td {
  border: 1px solid #ccc;
  padding: 0.5em;
}
.topics .article_table th {
  background: #efefef;
}
.topics .indent {
  text-indent: -1em;
  margin-left: 1em;
}

.article .al-center {
  text-align: center;
}
.article .margin_center {
  margin-inline: auto;
}
.article .article_lead {
  font-size: 1.0625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .article .article_lead {
    font-size: 1rem;
    text-align: left;
  }
}
.article .article_lead .underline_gold {
  font-weight: bold;
  color: #184800;
  font-size: 1.1em;
}