@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;
}
.article .article_cta {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .article .article_cta {
    flex-direction: column;
    gap: 10px;
  }
}
.article .article_cp {
  border: 1px solid #ccc;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  margin-inline: auto;
}
.article .topics_accord details {
  border: 1px solid #817a2e;
}
.article .topics_accord details:not(.last) {
  border-bottom: none;
}
.article .topics_accord details[open] summary:after {
  rotate: -45deg;
  translate: 0 2px;
}
.article .topics_accord summary {
  list-style: none;
  color: #817a2e;
  font-weight: bold;
  font-size: 1.5rem;
  display: grid;
  align-items: center;
  grid-template-columns: max-content 1fr 30px;
  gap: 10px;
  background-color: #fafaf5;
  padding: 20px;
  cursor: pointer;
  position: relative;
  transition: 0.2s ease background-color;
}
@media screen and (max-width: 767px) {
  .article .topics_accord summary {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
    gap: 5px;
    padding: 10px;
  }
}
.article .topics_accord summary:hover {
  background-color: #f2f2dd;
}
.article .topics_accord summary:after {
  content: "";
  width: 0.7em;
  height: 0.7em;
  border-right: 2px solid #817a2e;
  border-top: 2px solid #817a2e;
  rotate: 135deg;
  translate: 0 -2px;
  display: inline-block;
  transition: 0.2s ease translate, 0.2s ease rotate;
}
@media screen and (max-width: 767px) {
  .article .topics_accord summary:after {
    margin: 0 auto;
    width: 0.6em;
    height: 0.6em;
    position: absolute;
    right: 20px;
  }
}
.article .topics_accord summary .sm {
  font-size: 70%;
}
.article .topics_accord .topics_accord_cont {
  padding: 35px;
  background: #fcfcfc;
  box-shadow: 0px 2px 8px rgba(93, 79, 63, 0.1) inset;
}
@media screen and (max-width: 767px) {
  .article .topics_accord .topics_accord_cont {
    padding: 15px;
  }
}
.article .topics_accord .topics_accord_cont p {
  line-height: 1.8;
  margin-bottom: 1em;
}
.article .topics_accord .column_with_pic {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .article .topics_accord .column_with_pic {
    grid-template-columns: 1fr;
    grid-template-rows: max-content 180px;
    gap: 5px;
  }
}
@media screen and (max-width: 767px) {
  .article .topics_accord .column_with_pic img {
    height: 180px;
    margin: 0 auto;
  }
}
.article .fl_right {
  float: right;
}
@media screen and (max-width: 767px) {
  .article .fl_right {
    float: unset;
  }
}
.article .img {
  margin: 0 1em 1em;
  width: 180px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .article .img {
    margin-inline: auto;
  }
}
.article .caution {
  font-size: 90%;
  margin-top: 0.5em;
  display: block;
}
.article .flow_area {
  padding: 64px 40px;
}
@media screen and (max-width: 767px) {
  .article .flow_area {
    padding: 40px 20px;
  }
}
.article .flow_area .flow_list h3 {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .article .flow_area .flow_list h3 {
    font-size: 1em;
  }
}
.article .topics_title03 {
  font-size: 1.5rem;
}