@charset "euc-jp";
/*========================
/*
/* contents
/*
/*=======================*/
.sozai_contents {
  width: 100%;
  background: rgb(var(--color-bg-light));
}

/*--
 パンくず
--*/
.breadcrumbs {
  display: flex;
  font-size: 12px;
  width: 800px;
  margin:8px auto 5px;
  padding:0;
}

.breadcrumbs li {
  display:flex;
  color:#567b05;
}

.breadcrumbs li::after {
  content: ">";
  margin: 0 .2em;
}

.breadcrumbs li:last-child {
  font-weight:600;
}

.breadcrumbs li:last-child::after {
  content: "";
}

.breadcrumbs li a {
  color:#333;
}

.breadcrumbs li a:hover {
  color:#267298;
}

/*--
 ページ見出し
--*/
.sozai_contents_header {
  width: 800px;
  margin: 34px auto 0;
}

.sozai_contents_header h2 {
  font-family: m_plus_mid;
  font-size: 26px;
  display: flex;
  align-items: center;
  gap: .2em;
}

.sozai_contents_header h2::before {
  content: "";
  display: block;
  width: 6px;
  height: 1.4em;
  background: rgb(var(--color-primary));
}

.sozai_contents_header p {
  font-size: 16px;
  line-height: 1.4em;
  margin: 10px 0 0;
}

/*--
 素材コンテンツ inner
--*/
.sozai_contents_inner {
  width: 800px;
  margin: 20px auto 60px;
  padding: 30px;
  background: #FFF;
}

/*--
 セクション見出し
--*/
.section_title {
  font-family: m_plus_mid;
  font-size: 24px;
  width: 100%;
  background: rgb(var(--color-bg-light));
  padding: .8em;
  position: relative;
}

.section_title::before {
  content: "";
  display: block;
  width: calc(100% + 10px);
  height: 3px;
  background: rgb(var(--color-primary));
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
}

.section_title::after {
  content: "";
  display: block;
  width: 3px;
  height: 30px;
  background: rgb(var(--color-primary));
  position: absolute;
  left: 5px;
  bottom: -5px;
  transform: translateX(-50%);
}

.article_list + .section_title {
  margin: 60px 0 0;
}

/*--
 セクションリード
--*/
.section_lead {
  line-height: 1.6em;
  margin: 16px 0 0;
}

/*--
 活用例
--*/
.usage_example {
  display: inline-block;
  position: relative;
  background: #fffff3;
  border-radius: 4px;
  margin: 24px 0 0 .5em;
  padding: 10px 18px 16px 10px;
}

.usage_example::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: solid 2px rgb(var(--color-primary));
  border-radius: 4px;
  z-index: 2;
  top: -.5em;
  left: -.5em;
}

.usage_example h4 {
  color: rgb(var(--color-primary));
  padding: .1em .2em;
  background: #FFF;
  position: absolute;
  top: -1em;
  left: .5em;
  z-index: 3;
}

.usage_example ul {
  line-height: 1.4em;
}

.usage_example ul li {
  display: flex;
  gap: .4em;
}

.usage_example ul li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  margin: .6em 0 0;
  background: rgb(var(--color-primary));
}

/*--
 記事リスト
--*/
.article_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0 0;
}

.article_list_item {
  width: calc(100%/4 - 15px);
  background: #FFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

.article_list_item a {
  display: block;
  width: 100%;
  height: 100%;
  color: #444;
  text-decoration: none;
}

.article_list_item a:hover {
  opacity: .8;
}

.articl_thumb {
  aspect-ratio: 1.7/1;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.articl_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article_info {
  position: relative;
}

.article_tag {
  font-size: 12px;
  color: #FFF;
  padding: .2em 1em;
  position: absolute;
  top: -.7em;
  left: -5px;
}

.article_tag.vd {
  background: #058080;
}

.article_tag.artcl {
  background: #8cba04;
}

.article_tag.ft {
  background: #e32d6d;
}

.article_tag::before {
  position: absolute;
  content: '';
  bottom: -5px;
  left: 0;
  border: none;
  border-bottom: solid 5px transparent;
  border-right: solid 5px #000;
  transform: rotate(0deg);
}

.articl_title {
  font-size: 12px;
  line-height: 1.4em;
  font-weight: bold;
  padding: 20px 10px 12px 14px;
}

/*--
 PR素材
--*/
.pr_item_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0 0;
}

.pr_item_list_item {
  width: calc(100%/4 - 15px);
}

.pr_item_list_item_title {
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: .3em;

}

.pr_item_list_item_title::before {
  content: "";
  display: block;
  width: 4px;
  height: 1.4em;
  background: rgb(var(--color-primary));
}

.pr_item_list_item_img {
  width: 100%;
  height: auto;
  margin: 6px  0 0;
}

/*--
 ダウンロードボタン
--*/
.link_button {
  text-align: center;
}

.link_button a {
  font-family: m_plus_mid;
  font-size: 16px;
  display: inline-block;
  background: rgb(var(--color-primary));
  color: #FFF;
  width: 80%;
  max-width: 160px;
  height: 30px;
  line-height: 30px;
  position: relative;
  text-decoration: none;
  margin: 16px 0 0;
}

.link_button a::before {
  content: "";
  display: block;
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  border: solid 1px rgb(var(--color-text));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

/*======================*/
/*
/* SP用
/*
/*======================*/
@media screen and (max-width: 480px) {
/*-- max-width: 480px //--*/

/*--
 パンくず
--*/
.breadcrumbs {
  width: 90%;
}

/*--
 ページ見出し
--*/
.sozai_contents_header {
  width: 90%;
  margin: 24px auto 0;
}

.sozai_contents_header h2 {
  font-size: 18px;
}

.sozai_contents_header p {
  font-size: 14px;
}

/*--
 素材コンテンツ inner
--*/
.sozai_contents_inner {
  width: 90%;
  padding: 15px;
}

/*--
 セクション見出し
--*/
.section_title {
  font-size: 16px;
  line-height: 1.4em;
}

.section_title::before {
  height: 2px;
  bottom: 4px;
}

.section_title::after {
  width: 2px;
  left: 4px;
  bottom: -4px;
}

/*--
 セクションリード
--*/
.section_lead br {
  display: none;
}

/*--
 記事リスト
--*/
.article_list_item {
  width: calc(100%/2 - 10px);
}

/*--
 PR素材
--*/
.pr_item_list {
  gap: 40px 20px;
}

.pr_item_list_item {
  width: calc(100%/2 - 10px);
}

.link_button a {
  font-size: 14px;
}

/*--// max-width: 480px --*/
}
