@charset "utf-8";
/* CSS Document */

/*==============================*/
/* イベント一覧用タイトル */
/*==============================*/
.title_wrap {
  margin-bottom: 30px;
}
.title_wrap.border {
  margin-bottom: 30px;
  border-bottom: 1px dotted #999;
}
.title_wrap .title {
  margin-bottom: 0;
  border-bottom: none;
}
/*==============================*/
/* イベント一覧用タブ */
/*==============================*/
.tab {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px;
}
.tab > li {
  width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #ccc;
}
.tab > li.tab_active {
  color: #000;
}
.tab > li.tab_active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  bottom: -1px;
  left: 0;
}
.tab > li > a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
.tab > li > a:hover {
  color: #000;
}
@media (max-width: 600px) {
  .tab > li {
    width: 50%;
  }
}
/*==============================*/
/* イベント一覧 */
/*==============================*/
.articles_list {
  margin-bottom: 50px;
}
.articles_list > li {
  border-bottom: 1px solid #ccc;
}
.articles_list > li > a,
.articles_list > li > div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  transition: opacity 0.3s ease;
}
.articles_list > li:first-child > a {
  padding-top: 0;
}
.articles_list > li > a:hover {
  opacity: 0.7;
}
.articles_list_img {
  aspect-ratio: 16 / 9;
  width: 300px;
  min-width: 300px;
  position: relative;
  overflow: hidden;
}
.articles_list_img > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.articles_list_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
div.contents .articles_list_content p {
  margin-bottom: 0;
}
.articles_list_tag {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
  line-height: 1;
  font-size: 12px;
}
.articles_list_tag.event {
  background-color: #7dc5b6;
}
.articles_list_tag.seminar {
  background-color: #6b778c;
}
.articles_list_date {
  font-size: 12px;
  line-height: 1;
}
.articles_list_ttl {
  font-weight: bold;
}
.articles_list_url {
  font-size: 12px;
  color: #294a7d;
  word-break: break-all;
}
@media (max-width: 600px) {
  .articles_list > li > a {
    align-items: flex-start;
  }
  .articles_list_img {
    width: 40%;
    min-width: 40%;
  }
}
/*==============================*/
/* タグ表示（newinfoから移植） */
/*==============================*/
#others .wrap dl {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
#others .wrap dl dt {
  width: 210px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}
#others .wrap dl dd {
  width: calc(100% - 230px);
  margin-left: 0;
}

#others .wrap i {
  text-align: center;
  border-radius: 4px;
  font-weight: normal;
  font-size: 0.8em;
  color: #fff;
  background-color: #aaa;
  width: 110px;
  height: 20px;
  margin: 2px 0 0 8px;
}
#others .wrap i.campaign {
  background: #2790b0;
}
#others .wrap i.info {
  background: #f7a31d;
}
#others .wrap i.service {
  background: #0d76dc;
}
#others .wrap i.event {
  background: #7dc5b6;
}
#others .wrap i.case {
  background: #3a3981;
}
#others .wrap i.media {
  background: #ffabae;
}
@media (max-width: 600px) {
  #others .wrap dl {
    gap: 0;
  }
  #others .wrap dl dt {
    width: 100%;
    justify-content: flex-start;
  }
  #others .wrap dl dd {
    width: 100%;
    padding-top: 10px;
  }
}
