@charset "UTF-8";
/* ::::::::::  お知らせ  :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* =========================================================
common
========================================================= */
/* =========================================================
archive
========================================================= */
.archive {
  overflow: hidden;
}
.archive .archiveTabs {
  margin-top: 32px;
}
@media (max-width: 1024px) {
  .archive .archiveTabs {
    margin-top: 20px;
  }
}
.archive .archiveList {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.archive .archiveList .listItem {
  position: relative;
  width: 48.6%;
  margin-bottom: 10px;
  border-bottom: 1px solid #b3b3b3;
}
@media (min-width: 768px) {
  .archive .archiveList .listItem:hover::after {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .archive .archiveList .listItem {
    width: 100%;
    margin-bottom: 8px;
  }
}
.archive .archiveList .listItem::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 0;
  border-bottom: 1px solid #1a1a1a;
  transition: width 0.3s ease-out;
}
.archive .archiveList .listItem a {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 28px 30px 28px 0;
}
@media (max-width: 1024px) {
  .archive .archiveList .listItem a {
    padding: 15px 0 18px 0;
  }
}
.archive .archiveList .listItem a[target=_blank]::after {
  content: none;
}
.archive .archiveList .listItem a[href$=".xls"]::after, .archive .archiveList .listItem a[href$=".xlsx"]::after {
  content: none;
}
.archive .archiveList .listItem a[href$=".pdf"]::after {
  content: none;
}
.archive .archiveList .listItem a[target=_blank] .title::after {
  content: "";
  position: relative;
  top: -2px;
  display: inline-block;
  width: 18px;
  height: 17px;
  margin-left: 7px;
  background: url(../img/common/icon_external_b.svg) no-repeat;
  background-size: 100% 100%;
  border: none;
  line-height: 1.2;
  vertical-align: middle;
}
.archive .archiveList .listItem a[href$=".xls"] .title::after, .archive .archiveList .listItem a[href$=".xlsx"] .title::after {
  content: "EXCEL";
  position: relative;
  top: -2px;
  display: inline-block;
  width: auto;
  height: auto;
  margin-left: 7px;
  padding: 1px 5px 2px;
  background: none;
  border: 1px solid;
  color: #1d1d1d;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  vertical-align: middle;
}
.archive .archiveList .listItem a[href$=".pdf"] .title::after {
  content: "PDF";
  position: relative;
  top: -2px;
  display: inline-block;
  width: auto;
  height: auto;
  margin-left: 7px;
  padding: 1px 5px 2px;
  background: none;
  border: 1px solid;
  color: #1d1d1d;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  vertical-align: middle;
}
.archive .archiveList .listItem .photo {
  position: relative;
  width: 129px;
  height: 80px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .archive .archiveList .listItem .photo {
    display: none;
  }
}
.archive .archiveList .listItem .photo img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.archive .archiveList .listItem .textArea {
  width: calc(100% - 160px);
}
@media (max-width: 767px) {
  .archive .archiveList .listItem .textArea {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }
}
.archive .archiveList .listItem .textArea .info {
  margin-top: -3px;
  margin-bottom: 10px;
  color: #808080;
  line-height: 1.2;
}
.archive .archiveList .listItem .textArea time {
  display: inline-block;
  margin-right: 15px;
  font-weight: bold;
  letter-spacing: 0.06em;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .archive .archiveList .listItem .textArea time {
    margin-right: 12px;
    font-size: 1.6rem;
  }
}
.archive .archiveList .listItem .textArea time:after {
  content: "";
  margin-left: 20px;
  display: inline-block;
  width: 0;
  height: 0.825em;
  border-left: 1px solid #808080;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .archive .archiveList .listItem .textArea time:after {
    margin-left: 12px;
  }
}
.archive .archiveList .listItem .textArea .cat {
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .archive .archiveList .listItem .textArea .title {
    text-decoration: underline;
  }
}
.archive .moreBtn {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .archive .moreBtn {
    margin-top: 30px;
  }
}
/* =========================================================
entry
========================================================= */
.entry .wrapper {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .entry .wrapper {
    padding-top: 80px;
  }
}
.entryHeader {
  margin-bottom: 40px;
  padding: 60px 60px;
  background: #fff;
  align-items: center;
}
@media (max-width: 767px) {
  .entryHeader {
    margin-bottom: 20px;
    padding: 28px;
  }
}
.entryHeader .photo {
  position: relative;
  width: 240px;
  height: 150px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .entryHeader .photo {
    width: 100%;
    height: 0;
    padding-top: 62.5%;
    margin: 0 auto 24px;
  }
}
.entryHeader .photo img {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.entryHeader .photo + .textArea {
  width: calc(100% - 240px - 36px);
}
@media (max-width: 767px) {
  .entryHeader .photo + .textArea {
    width: 100%;
  }
}
.entryHeader .textArea {
  width: 100%;
}
.entryHeader .textArea .info {
  margin-top: -3px;
  margin-bottom: 10px;
  color: #808080;
  line-height: 1.2;
}
.entryHeader .textArea time {
  display: inline-block;
  margin-right: 15px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .entryHeader .textArea time {
    margin-right: 12px;
    font-size: 1.6rem;
  }
}
.entryHeader .textArea time:after {
  content: "";
  margin-left: 20px;
  display: inline-block;
  width: 0;
  height: 1em;
  border-left: 1px solid #808080;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .entryHeader .textArea time:after {
    margin-left: 12px;
  }
}
.entryHeader .textArea .cat {
  display: inline-block;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .entryHeader .textArea .cat {
    font-size: 1.5rem;
  }
}
.entryHeader .textArea .title {
  margin: 10px 0 0;
  font-size: 2.4rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .entryHeader .textArea .title {
    font-size: 2rem;
  }
}
.entryWrapper {
  padding: 60px;
  background: #fff;
}
@media (max-width: 767px) {
  .entryWrapper {
    padding: 28px 28px 32px;
  }
}
.entryFooter {
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid #b3b3b3;
}
.entry .snsList {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.entry .snsList li {
  min-width: 16px;
  margin: 0 7px;
  text-align: center;
}
.entry .snsList a:hover svg {
  fill: #de2c2b;
}
.entry .snsList a[target=_blank]::after {
  content: none;
}
.entry .snsList a[href$=".xls"]::after, .entry .snsList a[href$=".xlsx"]::after {
  content: none;
}
.entry .snsList a[href$=".pdf"]::after {
  content: none;
}
.entry .snsList svg {
  fill: #808080;
  transition: all 0.3s;
}
.entry .snsList .icon_fb {
  width: 9px;
  height: 18px;
}
.entry .snsList .icon_twi {
  width: 18px;
  height: 15px;
}
.entry .snsList .icon_pinterest {
  width: 19px;
  height: 19px;
}
.entry .snsList .icon_pocket {
  width: 18px;
  height: 16px;
}
.entry .snsList .icon_line {
  width: 19px;
  height: 18px;
}
.entry .backBtn {
  margin-top: 44px;
}
@media (max-width: 767px) {
  .entry .backBtn {
    margin-top: 30px;
  }
}