@charset "UTF-8";
/* ---------------------------------------------------------
  お知らせパーツ
--------------------------------------------------------- */
#news h1{
     font-weight: 300;
    font-size: 22px;
}

.c-childPageTitle__text{
    text-align: center;
     font-weight: 300;
}
.c-newsList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-newsList__item {
  padding: 16px 0;
  border-bottom: 1px dotted #cccccc;
}

.c-newsList__itemInner {
  display: block;
  padding: 8px 0;
}

.c-newsList__contents {
  font-size: 14px;
  display: block;
  /*padding: 8px calc(24px + 8px) 8px 0;*/
    padding: 8px 0;
  position: relative;
    display: flex;
    flex-wrap: wrap;
  align-items:flex-end;
}

a.c-newsList__contents {
  transition: 0.3s all ease-in-out;
}

a.c-newsList__contents:hover {
  opacity: 0.7;
}
.c-newsList__contents figure{
    display: none;
}
/*.c-newsList__contents figure{
    width: 30%;
    max-width: 100px;
    margin: 0;
    padding-right: 10px;
    box-sizing: border-box;
}*/

.c-newsList__head {
  display: flex;
  align-items: center;
  gap: 16px;
  /*margin-bottom: 8px;*/
    margin-bottom: 5px;
    font-size: 12px;
}

.c-newsList__date {
  display: inline-block;
  line-height: 1.5;
    font-size: 12px;
}

.c-newsList__label {
    display: none;
  /*color: var(--color-text-light);
  font-size: 10px;
  line-height: 20px;
  display: inline-block;
  padding: 0 8px;
  background-color: var(--color-accent-primary);
  border-radius: 12px;*/
}
a.c-newsList__contents dl{
    display: grid;
    width: 100%;
}
a.c-newsList__contents dd{
    margin: 0;
}

/* 内部リンクありのアイコン */
a.c-newsList__contents::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../../images/icon_arrow_right_bk.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/* 外部リンクありのアイコン */
a[target="_blank"].c-newsList__contents::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../../images/icon_external_link_bk.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

.p-columnBottomLink{
    margin-top: 50px;
    border: 1px solid;
    text-align: center;
}

@media screen and (min-width: 768px) {
  .c-newsList__contents {
    font-size: 16px;
  }
}
