@charset "utf-8";

.l-pgTtl__txt:before {
  background-image: url("../image/pgttl_bg.jpg");
}
.news-cate {
  background-color: var(--color-black60);
  font-size: var(--fs-2s);
  margin-right: 1.25em;
}
.news-date {
  font-size: var(--fs-2s);
  opacity: 0.6;
}

/*----------------------------------------------------------------------------------------------------

  詳細
  
----------------------------------------------------------------------------------------------------*/
.sec-detail {
  padding-top: var(--block-space-l);
  padding-bottom: var(--block-space-l);
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.detail-hd .ttl {
  font-size: var(--fs-2l);
  font-weight: 400;
  line-height: var(--line-height-m);
  padding-top: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c8c8c8;
}
.sec-detail .back-btn {
  padding-top: var(--block-space-max);
}
@media print, screen and (min-width:641px) {
  .sec-detail {
    box-sizing: content-box;
  }
}

/*----------------------------------------------------------------------------------------------------

  一覧
  
----------------------------------------------------------------------------------------------------*/
.sec-list {
  padding-top: var(--block-space-l);
  padding-bottom: var(--block-space-max);
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.news-list {
  text-align: left;
}
.news-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #c8c8c8;
  padding: var(--box-space-s) 0;
}
.news-box .box__photo {
  width: 35%;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
.news-box .box__txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 1.5em;
}
.news-box .box__txt .ttl {
  display: block;
  padding-top: 0.5em;
}
.news-box a,
.news-box a:visited,
.news-box a:hover {
  text-decoration: none;
}
.ua-pc .news-box a:hover .ttl,
.ua-pc .news-box.js__linkBox:hover .ttl {
  opacity: 0.6;
}
@media print, screen and (min-width:641px) {
  .sec-list {
    box-sizing: content-box;
  }
  .news-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .news-box {
    flex-basis: calc(95% / 2);
    max-width: calc(95% / 2);
  }
  .news-box .box__photo {
    height: calc(140 / 1200 * 100vw);
    max-height: 140px;
    min-height: 130px;
  }
}
@media screen and (max-width:640px) {
  .news-box .box__photo {
    height: calc(140 / 640 * 100vw);
    max-height: 140px;
    min-height: 80px;
  }
}

/*--------------------------------------------------------------------------------
  カテゴリ
--------------------------------------------------------------------------------*/
.cate-list {
  padding-bottom: var(--block-space-s);
  margin-top: calc(-1 * var(--block-space-min));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.cate-list select::-ms-expand {
  display: none;
}
.cate-list select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  outline: none;
  line-height: 1.2;
  background-image: none;
  border: none;
  -ms-word-break: normal;
  word-break: normal;
  text-decoration: none;
  padding: 0.5em 2em 0.5em 0.5em;
  background-color: #fff;
  cursor: pointer;
}
.cate-list-box {
  position: relative;
}
.cate-list-box:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 4px;
  border-color: var(--color-black40) transparent transparent transparent;
  position: absolute;
  right: 0.75em;
  top: 50%;
  transform: translateY(-50%);
}
