@charset "UTF-8";
/*************************************************************
お知らせCSS
*************************************************************/
button * {
  pointer-events: none;
}

/* タブ選択ボタンリスト ************************************************************/
.newsSelectTabOuter {
  max-width: 990px;
  width: 100%;
  height: auto;
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .newsSelectTabOuter {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* タブ選択ボタンリスト */
.newsSelectTabListOuter {
  margin-top: 37px;
}

.newsSelectTabList {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 5.2631%;
}
@media screen and (max-width: 750px) {
  .newsSelectTabList {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 15px;
  }
}

.newsSelectTabListBtn {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-top: 1em;
  padding-bottom: 1em;
  cursor: pointer;
}
.newsSelectTabListBtn * {
  pointer-events: none;
}

.newsSelectTabListBtn-genre {
  font-size: 1.375rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .newsSelectTabListBtn-genre {
    font-size: 0.875rem;
  }
}

/* タブパネル ************************************************************/
.newsTabPanelOuter {
  width: 100%;
  height: auto;
  display: block;
  padding-top: 70px;
  padding-bottom: 122px;
}
@media screen and (max-width: 750px) {
  .newsTabPanelOuter {
    gap: 36px 0px;
    padding-top: 35px;
    padding-bottom: 60px;
  }
}

.newsTabPanelWrapper {
  width: 100%;
  height: auto;
  display: none;
}
.newsTabPanelWrapper.active {
  display: block;
  animation: newsTabPanelFadeIn 1s;
}

@keyframes newsTabPanelFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@starting-style {
  .newsTabPanelWrapper.active {
    opacity: 0;
  }
}
.newsTabPanelTtlHeader {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.newsTabPanelTtlHeader-genre {
  width: 100%;
  height: auto;
  display: block;
  font-size: 2.25rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .newsTabPanelTtlHeader-genre {
    font-size: 1.125rem;
  }
}

.newsTabPanelTtlHeader-subGenre {
  width: 100%;
  height: auto;
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
  color: #429e3c;
  margin-top: 4px;
}
@media screen and (max-width: 750px) {
  .newsTabPanelTtlHeader-subGenre {
    font-size: 0.8125rem;
  }
}

/* タブパネルカードレイアウトリスト ************************************************************/
.newsListOuter {
  width: 100%;
  height: auto;
  display: block;
  background-color: #ffffff;
  border-radius: 40px;
}
@media screen and (max-width: 750px) {
  .newsListOuter {
    border-radius: 15px;
  }
}

.newsList {
  width: 100%;
  height: auto;
  display: block;
  padding: 30px 60px 25px 60px;
}
@media screen and (max-width: 750px) {
  .newsList {
    padding: 12px 15px;
  }
}

.newsListItem {
  width: 100%;
  height: auto;
  display: block;
}
.newsListItem:not(:first-of-type) {
  border-top: 1px dashed #707070;
}

a.newsListLitemLink::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 0;
  bottom: 0;
  right: 0;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  background: url(/common/images/icon_link-blank-green.svg) no-repeat left top;
}
@media screen and (max-width: 750px) {
  a.newsListLitemLink::after {
    width: 8px;
    height: 8px;
    background-size: contain;
  }
}
@media (any-hover: hover) {
  a.newsListLitemLink:hover .newsListLitemLink-text, a.newsListLitemLink:focus .newsListLitemLink-text {
    text-decoration: underline;
  }
  a.newsListLitemLink:hover .newsListLitemLink-date, a.newsListLitemLink:focus .newsListLitemLink-date {
    text-decoration: none;
  }
  a.newsListLitemLink:hover .newsListLitemLink-category, a.newsListLitemLink:focus .newsListLitemLink-category {
    text-decoration: none;
  }
}

.newsListLitemLink {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 15px 13px;
  text-decoration: none;
  padding-top: 30px;
  padding-bottom: 25px;
  padding-right: 80px;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .newsListLitemLink {
    gap: 6px 10px;
    padding-left: 0;
    padding-right: 33px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.newsListLitemLink::after {
  content: none;
}
.newsListLitemLink .newsListLitemLink-date {
  grid-column: 2/3;
  grid-row: 1/2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 120px;
  width: auto;
  min-height: 32px;
  height: auto;
  line-height: 1;
  border-radius: 16px;
  font-size: 1rem;
  color: #707f70;
}
@media screen and (max-width: 750px) {
  .newsListLitemLink .newsListLitemLink-date {
    min-height: 20px;
    height: fit-content;
    font-size: 0.625rem;
  }
}
.newsListLitemLink .newsListLitemLink-category {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  width: auto;
  min-height: 32px;
  height: auto;
  line-height: 1;
  border-radius: 16px;
  font-size: 0.875rem;
}
@media screen and (max-width: 750px) {
  .newsListLitemLink .newsListLitemLink-category {
    min-width: 80px;
    min-height: 20px;
    height: fit-content;
    border-radius: 10px;
    font-size: 0.625rem;
  }
}
.newsListLitemLink .newsListLitemLink-category.maintenance {
  background-color: #cae289;
}
.newsListLitemLink .newsListLitemLink-category.recruit {
  background-color: #a1e289;
}
.newsListLitemLink .newsListLitemLink-category.info {
  background-color: #e2d089;
}
.newsListLitemLink .newsListLitemLink-text {
  grid-column: 1/3;
  grid-row: 2/3;
  width: 100%;
  height: auto;
  display: block;
  font-size: 1.125rem;
  color: #49503a;
  padding-left: 16px;
}
@media screen and (max-width: 750px) {
  .newsListLitemLink .newsListLitemLink-text {
    font-size: 0.75rem;
    padding-left: 10px;
  }
}
.newsListLitemLink[href$=".pdf"] .newsListLitemLink-text {
  position: relative;
}
.newsListLitemLink[href$=".pdf"] .newsListLitemLink-text::after {
  position: relative;
  content: "";
  width: 16px;
  height: 20px;
  display: inline-block;
  top: 0.15em;
  background: url(/common/images/icon_link-pdf-green.svg) no-repeat left top;
}
@media screen and (max-width: 750px) {
  .newsListLitemLink[href$=".pdf"] .newsListLitemLink-text::after {
    width: 8px;
    height: 10px;
    background-size: contain;
  }
}

.newsListBtnImageOuter {
  width: 100%;
  display: block;
  aspect-ratio: 330/204;
  overflow: hidden;
  border-radius: 15px;
}
@media screen and (max-width: 750px) {
  .newsListBtnImageOuter {
    border-radius: 7px;
  }
}

.newsListBtnImage {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 330/204;
}

.newsListBtnTextOuter {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 16px;
  margin-bottom: 9px;
}
@media screen and (max-width: 750px) {
  .newsListBtnTextOuter {
    margin-top: 5px;
    margin-bottom: 12px;
  }
}

.newsListBtnText {
  width: 100%;
  display: block;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .newsListBtnText {
    font-size: 0.75rem;
  }
}

.newsListBtnOpenModalTextOuter {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}
@media screen and (max-width: 750px) {
  .newsListBtnOpenModalTextOuter {
    justify-content: center;
  }
}

.newsListBtnOpenModalText {
  width: fit-content;
  background-color: #429e3c;
  color: #ffffff;
  line-height: 1;
  min-height: 48px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  padding-left: 18px;
  padding-right: 42px;
  position: relative;
}
.newsListBtn:hover .newsListBtnOpenModalText, .newsListBtn:focus .newsListBtnOpenModalText {
  background-color: #a1c12f;
}
@media screen and (max-width: 750px) {
  .newsListBtnOpenModalText {
    min-height: 27px;
    font-size: 0.625rem;
  }
}
.newsListBtnOpenModalText::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  right: 12px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  background: url(/common/images/icon_zoomin.png) no-repeat left top;
  background-size: 20px 20px;
}
@media screen and (max-width: 750px) {
  .newsListBtnOpenModalText::after {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
  }
}

/* モーダルウィンドウ ************************************************************/
.newsModalContentsOuter {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .newsModalContentsOuter {
    flex-direction: column-reverse;
  }
}

.newsModalTextContentsOuter {
  width: 48.6526%;
  display: block;
}
@media screen and (max-width: 750px) {
  .newsModalTextContentsOuter {
    width: 100%;
    margin-top: 15px;
  }
}

.newsModalImageContentsOuter {
  width: 44.9101%;
  display: block;
  position: relative;
}
@media screen and (max-width: 750px) {
  .newsModalImageContentsOuter {
    width: 100%;
  }
}

.newsModalTextContentsTtl {
  font-size: 1.75rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .newsModalTextContentsTtl {
    font-size: 1rem;
  }
}

.newsModalTextContentsText {
  font-size: 1.25rem;
  margin-top: 21px;
}
@media screen and (max-width: 750px) {
  .newsModalTextContentsText {
    font-size: 0.75rem;
  }
}

[data-dialogname=businessModal] .swiper {
  border-radius: 15px;
}
[data-dialogname=businessModal] .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}
[data-dialogname=businessModal] .swiper-pagination {
  position: static !important;
  margin-top: 20px !important;
}
[data-dialogname=businessModal] .swiper-pagination-bullet {
  min-width: 48px !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem !important;
  background-color: #eff4e4 !important;
  color: #475147 !important;
  font-weight: bold;
  opacity: 1 !important;
  margin: 0 10px !important;
}
[data-dialogname=businessModal] .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #429e3c !important;
  color: #ffffff !important;
}

/* 内容を閉じるボタン */
.newsModalCloseBtnOuter {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

.newsModalCloseBtn {
  width: fit-content;
  background-color: #429e3c;
  color: #ffffff;
  line-height: 1;
  min-height: 48px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  padding-left: 18px;
  padding-right: 42px;
  position: relative;
}
@media (any-hover: hover) {
  .newsModalCloseBtn:hover, .newsModalCloseBtn:focus {
    background-color: #a1c12f;
  }
}
@media screen and (max-width: 750px) {
  .newsModalCloseBtn {
    min-height: 27px;
    font-size: 0.625rem;
  }
}
.newsModalCloseBtn::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  right: 12px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  background: url(/common/images/icon_zoomout.png) no-repeat left top;
  background-size: 20px 20px;
}
@media screen and (max-width: 750px) {
  .newsModalCloseBtn::after {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
  }
}
/*# sourceMappingURL=news.css.map */
