@charset "UTF-8";
/* color import setting
------------------------------------*/
/* ========================================
   color setting
   ======================================== */
/* ----------------------------------------
   1. 基本色（黒・白・グレー）
   ---------------------------------------- */
/* ----------------------------------------
   2. カラー（赤・青・緑・黄）
   ---------------------------------------- */
/* ----------------------------------------
   3. 背景色
   ---------------------------------------- */
/* フォームエラー時の入力欄背景（薄いピンク） */
/* ----------------------------------------
   4. 透明度付き色
   ---------------------------------------- */
/* newsIntro setting
------------------------------------*/
#newsIntro {
  margin: 0 auto;
  width: 90%;
  max-width: 960px;
}
#newsIntro .inner > p,
#newsIntro .inner > h1:not(.pageTitle) {
  margin: 0 2.5% 60px;
  line-height: 1.8;
  font-size: 15px;
}

/* newsArchive setting
------------------------------------*/
#newsArchive {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background: #333344 url(../../img/common/bg_common-pattern_pc.webp) center 0/100% auto no-repeat;
  width: 100%;
  padding: 70px 0 60px;
}
#newsArchive .inner {
  box-sizing: border-box;
  border-radius: 15px 0 15px 0;
  background: #fff;
  margin: 0 auto;
  padding: 55px;
  width: 90%;
  max-width: 1010px;
}
#newsArchive .newsArchiveContainer {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
#newsArchive .newsArchiveContainer .noResults {
  margin: 0 auto;
  width: 90%;
  max-width: 1010px;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}
#newsArchive .newsArchiveContainer .noResults a {
  padding: 0 5px 0 0;
  text-decoration: underline;
  color: #0087ac;
  transition: opacity 0.3s ease;
}
#newsArchive .newsArchiveContainer .noResults a::before {
  content: '';
  position: relative;
  display: inline-block;
  margin: 0 8px 0 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #0087ac;
  border-right: 1px solid #0087ac;
  transform: rotate(45deg);
}
#newsArchive .newsArchiveContainer .noResults a:hover {
  opacity: 0.8;
}
#newsArchive .newsMain {
  flex: 1;
  min-width: 0;
}
#newsArchive .newsList li:not(:last-child) {
  border-bottom: 1px solid #e3e3e3;
}
#newsArchive .newsList li > a {
  display: flex;
  align-items: center;
  padding: 15px 0;
  gap: 5%;
  text-decoration: none;
  transition: opacity 0.3s ease;
  text-align: left;
}
#newsArchive .newsList li > a:hover {
  opacity: 0.8;
}
#newsArchive .newsList li > a:hover .newsThumbnail img {
  transform: scale(1.1);
}
#newsArchive .newsList li > a:hover .newsContent span {
  color: #222;
  text-decoration: underline;
}
#newsArchive .newsList li .newsThumbnail {
  border-radius: 5px;
  flex-shrink: 0;
  margin: 0;
  width: 110px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
#newsArchive .newsList li .newsThumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
#newsArchive .newsList li .newsContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
}
#newsArchive .newsList li .newsContent .newsContentMeta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
#newsArchive .newsList li .newsContent .newsContentMeta time {
  position: relative;
  min-width: auto;
}
#newsArchive .newsList li .newsContent .newsContentMeta time::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-2.5px);
  left: -10px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #7fa329;
  display: block;
  width: 6px;
  height: 6px;
}
#newsArchive .newsList li .newsContent .newsContentMeta .newsCategory {
  display: inline-block;
  padding: 0 5px;
  height: 20px;
  line-height: 20px;
  background: #333344;
  border-radius: 3px;
  text-decoration: none;
  font-size: 10px;
  color: #fff;
}
#newsArchive .newsList li .newsContent span {
  line-height: 1.75;
  text-decoration: underline;
  color: #0087ac;
  transition: color 0.3s ease;
}
#newsArchive .paginationArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 55px 0 0;
}
#newsArchive .paginationArea .pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#newsArchive .paginationArea .pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
}
#newsArchive .paginationArea .pagination li a, #newsArchive .paginationArea .pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
#newsArchive .paginationArea .pagination li.paginationPrev a, #newsArchive .paginationArea .pagination li.paginationNext a {
  position: relative;
  margin: 0 50px 0 0;
  padding: 0 0 0 15px;
  white-space: nowrap;
}
#newsArchive .paginationArea .pagination li.paginationPrev a:hover, #newsArchive .paginationArea .pagination li.paginationNext a:hover {
  opacity: 0.8;
}
#newsArchive .paginationArea .pagination li.paginationPrev a::before, #newsArchive .paginationArea .pagination li.paginationNext a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
  border-top: 1px solid #0087ac;
  border-right: 1px solid #0087ac;
  width: 6px;
  height: 6px;
}
#newsArchive .paginationArea .pagination li.paginationPrev span, #newsArchive .paginationArea .pagination li.paginationNext span {
  color: #fff;
  opacity: 0.5;
  cursor: not-allowed;
}
#newsArchive .paginationArea .pagination li.paginationNext a {
  margin: 0 0 0 50px;
  padding: 0 15px 0 0;
}
#newsArchive .paginationArea .pagination li.paginationNext a::before {
  left: auto;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}
#newsArchive .paginationArea .pagination li:not(.paginationPrev):not(.paginationNext):not(.paginationDots) a, #newsArchive .paginationArea .pagination li:not(.paginationPrev):not(.paginationNext):not(.paginationDots) span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f8ff;
  color: #182227;
  font-weight: 500;
}
#newsArchive .paginationArea .pagination li:not(.paginationPrev):not(.paginationNext):not(.paginationDots) a:hover, #newsArchive .paginationArea .pagination li:not(.paginationPrev):not(.paginationNext):not(.paginationDots) span:hover {
  opacity: 0.8;
}
#newsArchive .paginationArea .pagination li:not(.paginationPrev):not(.paginationNext):not(.paginationDots).isCurrent a, #newsArchive .paginationArea .pagination li:not(.paginationPrev):not(.paginationNext):not(.paginationDots).isCurrent span {
  background: transparent;
  border: 1px solid #fff;
}
#newsArchive .paginationArea .pagination li.paginationDots span {
  width: 40px;
  height: 40px;
}
#newsArchive .paginationArea .paginationInfo {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

/* newsDetailIntro setting
------------------------------------*/
#newsDetailIntro {
  margin: 0 auto 75px;
  width: 90%;
  max-width: 960px;
}
#newsDetailIntro .inner time {
  position: relative;
  display: block;
  margin: 0 auto 15px;
  width: 90%;
  font-size: 12px;
}
#newsDetailIntro .inner time::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-2.5px);
  left: -10px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #7fa329;
  display: block;
  width: 6px;
  height: 6px;
}
#newsDetailIntro .inner .newsCategory {
  margin: 0 auto 15px;
  width: 90%;
}
#newsDetailIntro .inner .newsCategory a {
  display: inline-block;
  padding: 0 10px;
  height: 25px;
  line-height: 25px;
  background: #333344;
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
  transition: background 0.3s ease;
}
#newsDetailIntro .inner h1 {
  margin: 0 auto;
  width: 90%;
  line-height: 1.5;
  font-size: 18px;
}

/* newsDetailContent setting
------------------------------------*/
#newsDetailContent {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background: #333344 url(../../img/common/bg_common-pattern_pc.webp) center 0/100% auto no-repeat;
  width: 100%;
  padding: 70px 0 60px;
}
#newsDetailContent .inner {
  box-sizing: border-box;
  border-radius: 15px 0 15px 0;
  background: #fff;
  margin: 0 auto;
  padding: 55px;
  width: 90%;
  max-width: 1010px;
}
#newsDetailContent .inner .newsDetailContainer {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
#newsDetailContent .inner .newsDetailContainer .newsMain {
  flex: 1;
  min-width: 0;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle figure {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0 0 40px;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle figure img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsIndex {
  background: #f0f8ff;
  width: 90%;
  margin: 0 auto 40px;
  padding: 20px;
  border-radius: 15px;
  line-height: 1.5;
  font-size: 12px;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsIndex .newsIndexTitle {
  margin: 0 0 10px;
  font-weight: 600;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsIndex .newsIndexList li {
  position: relative;
  padding: 0 0 0 10px;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsIndex .newsIndexList li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 2px;
  display: block;
  border-radius: 50%;
  background: #7fa329;
  width: 4px;
  height: 4px;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsIndex .newsIndexList li:not(:last-child) {
  margin: 0 0 6px;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsIndex .newsIndexList li a {
  text-decoration: none;
  color: #0087ac;
  text-decoration: underline;
  transition: color 0.3s ease;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsIndex .newsIndexList li a:hover {
  color: #222;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent h2 {
  border-radius: 5px;
  background: #0087ac;
  margin: 0 0 1em;
  padding: 10px 3%;
  line-height: 1.3;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent h3 {
  position: relative;
  margin: 0 0 0.90em;
  padding: 15px 0 0 3%;
  line-height: 1.4;
  font-weight: 600;
  font-size: 17px;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 2.5px;
  width: 90px;
  height: 5px;
  background: linear-gradient(to right, #0087ac 0, #0087ac 33.3%, #63757a 33.3%, #63757a 66.6%, #7fa329 66.6%, #7fa329 100%);
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent h4 {
  position: relative;
  margin: 0 0 0.80em;
  padding: 5px 0 5px 3%;
  line-height: 1.4;
  font-weight: 600;
  font-size: 16px;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent h4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 2.5px;
  background: #0087ac;
  width: 5px;
  height: 100%;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent p {
  margin: 0 0 2em;
  padding: 0 3%;
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-size: 15px;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent p a {
  position: relative;
  margin: 0 0.75em;
  padding: 0 0 0 12px;
  text-decoration: underline;
  color: #0087ac;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent p a::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  display: block;
  border-top: 1px solid #333344;
  border-right: 1px solid #333344;
  transform: translateY(-50%) rotate(45deg);
  width: 4px;
  height: 4px;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent p a .iconExternal img {
  margin: 0 0 0 5px;
  width: 14px;
  height: auto;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent .wp-block-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 0 5em;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent .wp-block-buttons .wp-block-button {
  margin: 0 auto;
  width: 75%;
  max-width: 435px;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent .wp-block-buttons .wp-block-button a {
  position: relative;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background: #7fa329;
  width: 100%;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: opacity 0.3s ease;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent .wp-block-buttons .wp-block-button a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin: -5px 0 0;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.8;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ul {
  border-radius: 5px;
  border: 1px solid #f0f8ff;
  margin: 0 1em 2em;
  padding: 20px;
  line-height: 1.4;
  font-size: 14px;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ul li {
  position: relative;
  padding: 0 0 0 10px;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ul li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  border-radius: 50%;
  background: #0087ac;
  width: 4px;
  height: 4px;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ul li:not(:last-child) {
  margin: 0 0 10px;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ul li strong {
  display: inline-block;
  margin: 0 0 5px;
  font-weight: 600;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ol {
  counter-reset: index;
  border-radius: 5px;
  border: 1px solid #f0f8ff;
  margin: 0 1em 2em;
  padding: 20px;
  line-height: 1.4;
  font-size: 14px;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ol li {
  position: relative;
  padding: 0 0 0 18px;
  counter-increment: index;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ol li::before {
  content: counter(index) ".";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0087ac;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ol li:not(:last-child) {
  margin: 0 0 10px;
}
#newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ol li strong {
  display: inline-block;
  margin: 0 0 5px;
  font-weight: 600;
}
#newsDetailContent .btnArea {
  margin: 60px auto 0;
  width: 90%;
}
#newsDetailContent .btnArea a {
  position: relative;
  display: block;
  box-sizing: border-box;
  background: #0087ac;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  width: 415px;
  height: 80px;
  margin: 0 auto;
  text-align: center;
  line-height: 80px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  transition: opacity 0.6s ease;
}
#newsDetailContent .btnArea a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-135deg);
  margin: -5px 0 0;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
}
#newsDetailContent .btnArea a:hover {
  opacity: 0.8;
}

/* newsSidebar setting
------------------------------------*/
.newsSidebar {
  flex-shrink: 0;
  width: 280px;
}
@media screen and (min-width: 768px) {
  .newsSidebar {
    position: sticky;
    top: calc(90px + 20px);
    align-self: flex-start;
  }
}
.newsSidebar aside:not(:last-child) {
  margin: 0 0 45px;
}
.newsSidebar aside > img.sidebarLogo {
  display: block;
  margin: 0 auto 10px;
  width: 26px;
  height: auto;
}
.newsSidebar aside h2 {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 14px;
  text-align: center;
  font-size: 12px;
}
.newsSidebar aside h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #0087ac 0, #0087ac 33.3%, #63757a 33.3%, #63757a 66.6%, #7fa329 66.6%, #7fa329 100%);
}
.newsSidebar aside.pickupTopics .pickupList li:not(:last-child) {
  margin: 0 0 20px;
}
.newsSidebar aside.pickupTopics .pickupList li > a {
  display: flex;
  align-items: center;
  gap: 17.5px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.newsSidebar aside.pickupTopics .pickupList li > a:hover {
  opacity: 0.8;
}
.newsSidebar aside.pickupTopics .pickupList li > a:hover .pickupThumbnail img {
  transform: scale(1.1);
}
.newsSidebar aside.pickupTopics .pickupList li > a:hover .pickupContent span {
  color: #222;
  text-decoration: underline;
}
.newsSidebar aside.pickupTopics .pickupList li .pickupThumbnail {
  border-radius: 5px;
  flex-shrink: 0;
  margin: 0;
  width: 100px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.newsSidebar aside.pickupTopics .pickupList li .pickupThumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.newsSidebar aside.pickupTopics .pickupList li .pickupContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.newsSidebar aside.pickupTopics .pickupList li .pickupContent time {
  font-size: 11px;
  color: #182227;
  position: relative;
}
.newsSidebar aside.pickupTopics .pickupList li .pickupContent time::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-2px);
  left: -8.5px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #7fa329;
  display: block;
  width: 5px;
  height: 5px;
}
.newsSidebar aside.pickupTopics .pickupList li .pickupContent span {
  font-size: 12px;
  line-height: 1.5;
  color: #0087ac;
  text-decoration: underline;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsSidebar aside.topicsCategory .topicsCategoryList li {
  font-size: 12px;
}
.newsSidebar aside.topicsCategory .topicsCategoryList li:not(:last-child) {
  margin: 0 0 8px;
}
.newsSidebar aside.topicsCategory .topicsCategoryList li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.newsSidebar aside.topicsCategory .topicsCategoryList li a .categoryName {
  color: #0087ac;
  transition: color 0.3s ease;
}
.newsSidebar aside.topicsCategory .topicsCategoryList li a .postsCount {
  margin: 0 0 0 5px;
  color: #182227;
}
.newsSidebar aside.topicsCategory .topicsCategoryList li a:hover .categoryName {
  color: #222;
}
.newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup {
  border-radius: 15px;
  border: 1px solid #e3e3e3;
  padding: 15px;
  line-height: 1;
  font-size: 13px;
}
.newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup:not(:last-child) {
  margin: 0 0 15px;
}
.newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .yearTitle {
  position: relative;
  display: block;
  box-sizing: border-box;
  padding: 0 0 0 10px;
  width: 100%;
}
.newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .yearTitle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  border-radius: 50%;
  background: #7fa329;
  width: 4px;
  height: 4px;
  transform: translateY(-50%);
}
.newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .yearTitle::after {
  content: '';
  position: absolute;
  top: 40%;
  right: -5%;
  border-top: 1px solid #0087ac;
  border-right: 1px solid #0087ac;
  transform: translateY(-50%) rotate(135deg);
  display: block;
  margin: 0 12px;
  width: 6px;
  height: 6px;
  transition: transform 0.4s ease;
}
.newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .yearTitle.isOpen::after {
  transform: translateY(-50%) rotate(-45deg);
}
.newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .monthList {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transform: translateZ(0);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .monthList.isOpen {
  max-height: 500px;
  padding: 10px 0 0 0;
}
.newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .monthList li {
  margin: 0 0 0 10px;
}
.newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .monthList li:not(:last-child) {
  margin: 0 0 8px 10px;
}
.newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .monthList li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .monthList li a .monthName {
  color: #0087ac;
  transition: color 0.3s ease;
}
.newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .monthList li a .postsCount {
  margin: 0 0 0 5px;
  color: #182227;
}
.newsSidebar aside.searchTopics .searchForm .searchFormInner {
  position: relative;
  display: flex;
  align-items: stretch;
}
.newsSidebar aside.searchTopics .searchForm .searchFormInner .searchInput {
  flex: 1;
  padding: 10px 44px 10px 15px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  font-size: 14px;
}
.newsSidebar aside.searchTopics .searchForm .searchFormInner .searchInput:focus {
  outline: none;
  border-color: #0087ac;
}
.newsSidebar aside.searchTopics .searchForm .searchFormInner .searchSubmit {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  padding: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.newsSidebar aside.searchTopics .searchForm .searchFormInner .searchSubmit:hover {
  opacity: 0.8;
}
.newsSidebar aside.searchTopics .searchForm .searchFormInner .searchSubmit .searchSubmitIcon {
  display: block;
  width: 16px;
  height: 16px;
}
.newsSidebar aside.searchTopics .searchForm .searchFormInner .searchSubmit .searchSubmit img.searchSubmitIcon {
  height: auto;
}

/* ------------------------------------------------------------------------
	Ajustment For Small PC Window 
------------------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  /* newsArchive setting
  ------------------------------------*/
  #newsIntro {
    width: 92vw;
  }
}
/* ------------------------------------------------------------------------
	Ajustment For Smart Phone 
------------------------------------------------------------------------ */
@media screen and (max-width: 768px) {
  /* newsIntro setting
  ------------------------------------*/
  #newsIntro {
    width: 92vw;
  }
  #newsIntro .inner > p {
    margin: 0 0 8vw;
    font-size: 3.733333vw;
  }

  /* newsArchive setting
  ------------------------------------*/
  #newsArchive {
    box-shadow: 0 0.53333vw 2.13333vw rgba(0, 0, 0, 0.15);
    background: #333344 url(../../img/common/bg_common-pattern_sp.webp) center 0/100% auto no-repeat;
    padding: 8vw 0;
  }
  #newsArchive .inner {
    padding: 0 4vw 4vw;
    width: 92vw;
  }
  #newsArchive .newsArchiveContainer {
    flex-direction: column;
    gap: 8vw;
  }
  #newsArchive .newsArchiveContainer .newsMain {
    width: 100%;
  }
  #newsArchive .newsList li > a {
    padding: 4vw 0;
    gap: 5.2vw;
  }
  #newsArchive .newsList li .newsThumbnail {
    width: 22vw;
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 1.3333333vw;
  }
  #newsArchive .newsList li .newsContent {
    font-size: 3.2vw;
  }
  #newsArchive .newsList li .newsContent span {
    font-size: 3.2vw;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #newsArchive .paginationArea {
    gap: 4vw;
    padding: 4vw 0 0;
  }
  #newsArchive .paginationArea .pagination ul {
    gap: 1vw;
    flex-wrap: wrap;
  }
  #newsArchive .paginationArea .pagination li a, #newsArchive .paginationArea .pagination li span {
    font-size: 3.2vw;
  }
  #newsArchive .paginationArea .pagination li.paginationPrev a, #newsArchive .paginationArea .pagination li.paginationPrev span, #newsArchive .paginationArea .pagination li.paginationNext a, #newsArchive .paginationArea .pagination li.paginationNext span {
    margin: 0 2vw 0 0;
    padding: 0 2vw;
  }
  #newsArchive .paginationArea .pagination li.paginationNext a, #newsArchive .paginationArea .pagination li.paginationNext span {
    margin: 0 0 0 2vw;
  }
  #newsArchive .paginationArea .pagination li:not(.paginationPrev):not(.paginationNext):not(.paginationDots) a, #newsArchive .paginationArea .pagination li:not(.paginationPrev):not(.paginationNext):not(.paginationDots) span {
    width: 6vw;
    height: 6vw;
    min-width: 6vw;
    min-height: 6vw;
  }
  #newsArchive .paginationArea .pagination li.paginationDots span {
    width: 6vw;
    height: 6vw;
    min-width: 6vw;
    min-height: 6vw;
  }
  #newsArchive .paginationArea .paginationInfo {
    font-size: 3.2vw;
  }

  /* newsDetailIntro setting
  ------------------------------------*/
  #newsDetailIntro {
    margin: 0 auto 8vw;
    width: 92vw;
  }
  #newsDetailIntro .inner time {
    margin: 0 auto 4vw;
    width: 100%;
    text-align: center;
    font-size: 3.2vw;
  }
  #newsDetailIntro .inner time::before {
    position: relative;
    top: auto;
    left: auto;
    transform: translateY(-0.4vw);
    border-radius: 50%;
    border: 0.4vw solid #7fa329;
    display: inline-block;
    margin: 0 1.2vw 0 0;
    width: 1.333333vw;
    height: 1.333333vw;
  }
  #newsDetailIntro .inner .newsCategory {
    margin: 0 auto 8vw;
    text-align: center;
  }
  #newsDetailIntro .inner .newsCategory a {
    padding: 0 2vw;
    height: 5.3333333vw;
    line-height: 5.3333333vw;
    border-radius: 0.8vw;
    font-size: 2.666667vw;
  }
  #newsDetailIntro .inner h1 {
    width: 100%;
    font-size: 5.4vw;
  }

  /* newsDetailContent setting
  ------------------------------------*/
  #newsDetailContent {
    box-shadow: 0 0.53333vw 2.13333vw rgba(0, 0, 0, 0.15);
    background: #333344 url(../../img/common/bg_common-pattern_sp.webp) center 0/100% auto no-repeat;
    padding: 8vw 0;
  }
  #newsDetailContent .inner {
    padding: 4vw;
    width: 92vw;
    border-radius: 4vw 0 4vw 0;
  }
  #newsDetailContent .inner .newsDetailContainer {
    flex-direction: column;
    gap: 8vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle figure {
    border-radius: 1.3333333vw;
    margin: 0 0 6vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsIndex {
    width: 90%;
    margin: 0 auto 6vw;
    padding: 4vw;
    border-radius: 4vw;
    font-size: 3.2vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsIndex .newsIndexTitle {
    margin: 0 0 2.666667vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsIndex .newsIndexList li {
    padding: 0 0 0 2.666667vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsIndex .newsIndexList li::before {
    left: 0.533333vw;
    width: 1.066667vw;
    height: 1.066667vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsIndex .newsIndexList li:not(:last-child) {
    margin: 0 0 1.6vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent h2 {
    border-radius: 1.333333vw;
    padding: 2.666667vw 3%;
    font-size: 4.8vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent h3 {
    padding: 4vw 0 0 3%;
    font-size: 4.533333vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent h3::before {
    width: 24vw;
    height: 1.333333vw;
    border-radius: 0.666667vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent h4 {
    padding: 1.333333vw 0 1.333333vw 4vw;
    font-size: 4.266667vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent h4::before {
    width: 1.333333vw;
    border-radius: 0.666667vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent p {
    font-size: 4vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent p a {
    padding: 0 0 0 3.2vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent p a::before {
    top: 3.2vw;
    width: 1.066667vw;
    height: 1.066667vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent p a .iconExternal img {
    width: 3.733333vw;
    margin: 0 0 0 1.333333vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent .wp-block-buttons {
    display: block;
    gap: 4vw;
    margin: 0 0 8vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent .wp-block-buttons .wp-block-button {
    width: 90%;
    max-width: auto;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent .wp-block-buttons .wp-block-button:not(:last-child) {
    margin: 0 auto 4vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent .wp-block-buttons .wp-block-button a {
    height: 16vw;
    line-height: 16vw;
    font-size: 4.266667vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent .wp-block-buttons .wp-block-button a::after {
    right: 4vw;
    width: 2.133333vw;
    height: 2.133333vw;
    margin: -1.333333vw 0 0 0;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ul {
    border-radius: 4vw;
    padding: 4vw;
    font-size: 4vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ul li {
    padding: 0 0 0 2.666667vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ul li::before {
    top: 2.666667vw;
    width: 1.066667vw;
    height: 1.066667vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ul li:not(:last-child) {
    margin: 0 0 2.666667vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ul li strong {
    margin: 0 0 2.666667vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ol {
    border-radius: 4vw;
    padding: 4vw;
    font-size: 4vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ol li {
    padding: 0 0 0 4.8vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ol li::before {
    font-size: 4vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ol li:not(:last-child) {
    margin: 0 0 2.666667vw;
  }
  #newsDetailContent .inner .newsDetailContainer .newsMain .newsArticle .newsContent ol li strong {
    margin: 0 0 2.666667vw;
  }
  #newsDetailContent .btnArea {
    margin: 8vw auto 0;
    width: 90%;
  }
  #newsDetailContent .btnArea a {
    width: 100%;
    max-width: none;
    height: 16vw;
    line-height: 16vw;
    font-size: 4.266667vw;
  }
  #newsDetailContent .btnArea a::before {
    left: 4vw;
    width: 2.133333vw;
    height: 2.133333vw;
    margin: -1.333333vw 0 0 0;
  }

  /* newsSidebar setting（SPのみ上書き） */
  .newsSidebar {
    width: 100%;
  }
  .newsSidebar aside:not(:last-child) {
    margin: 0 0 8vw;
  }
  .newsSidebar aside > img.sidebarLogo {
    margin: 0 auto 2.666667vw;
  }
  .newsSidebar aside h2 {
    margin: 0 0 4vw;
    padding: 0 0 3.733333vw;
    font-size: 3.2vw;
  }
  .newsSidebar aside.pickupTopics .pickupList li:not(:last-child) {
    margin: 0 0 4vw;
  }
  .newsSidebar aside.pickupTopics .pickupList li > a {
    gap: 4vw;
  }
  .newsSidebar aside.pickupTopics .pickupList li .pickupThumbnail {
    width: 22vw;
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 1.3333333vw;
  }
  .newsSidebar aside.pickupTopics .pickupList li .pickupContent {
    gap: 1.333333vw;
    font-size: 3.2vw;
  }
  .newsSidebar aside.pickupTopics .pickupList li .pickupContent time {
    font-size: 3.2vw;
  }
  .newsSidebar aside.pickupTopics .pickupList li .pickupContent time::before {
    left: -2.266667vw;
    width: 1.333333vw;
    height: 1.333333vw;
  }
  .newsSidebar aside.pickupTopics .pickupList li .pickupContent span {
    font-size: 3.2vw;
    line-height: 1.75;
    -webkit-line-clamp: 2;
  }
  .newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup {
    border-radius: 4vw;
    padding: 4vw;
    font-size: 3.466667vw;
  }
  .newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup:not(:last-child) {
    margin: 0 0 4vw;
  }
  .newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .yearTitle {
    padding: 0 0 0 2.666667vw;
  }
  .newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .yearTitle::before {
    width: 1.066667vw;
    height: 1.066667vw;
  }
  .newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .yearTitle::after {
    margin: 0 3.2vw;
    width: 1.6vw;
    height: 1.6vw;
  }
  .newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .monthList.isOpen {
    padding: 2.666667vw 0 0 0;
  }
  .newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .monthList li {
    margin: 0 0 0 2.666667vw;
  }
  .newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .monthList li:not(:last-child) {
    margin: 0 0 2vw 2.666667vw;
  }
  .newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .monthList li a {
    border-radius: 1.066667vw;
  }
  .newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .monthList li a .monthName {
    font-size: 3.466667vw;
  }
  .newsSidebar aside.monthlyArchive .monthlyArchiveList .yearGroup .monthList li a .postsCount {
    margin: 0 0 0 1.333333vw;
    font-size: 3.2vw;
  }
  .newsSidebar aside.searchTopics .searchForm .searchFormInner .searchInput {
    padding: 2.666667vw 12vw 2.666667vw 4vw;
    border-radius: 1.066667vw;
    font-size: 3.733333vw;
  }
  .newsSidebar aside.searchTopics .searchForm .searchFormInner .searchSubmit {
    right: 2vw;
    padding: 2vw;
  }
  .newsSidebar aside.searchTopics .searchForm .searchFormInner .searchSubmit .searchSubmitIcon {
    width: 4.533333vw;
    height: 4.533333vw;
  }
}
