@charset "UTF-8";
.news-inner {
  width: 100%;
}

.news-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(2.5rem, 2.05rem + 2.065vw, 4.5rem);
}
@media screen and (max-width:991px) {
  .news-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.news-main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}

.news-item {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: clamp(1rem, 0.803rem + 0.903vw, 1.875rem);
  padding-block: clamp(1.375rem, 1.15rem + 0.645vw, 2.375rem);
  border-bottom: 1px dotted #c9d5e0;
}
@media screen and (max-width:767px) {
  .news-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
}
.news-item:first-child {
  padding-top: 0;
}
.news-item__thumb {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  aspect-ratio: 19/10;
  background: #e5edf6;
  text-decoration: none;
}
.news-item__thumb:hover .news-item__image {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.news-item__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-item__content {
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: clamp(0.5rem, 0.444rem + 0.258vw, 0.75rem);
  min-width: 0;
}
.news-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news-item__date {
  color: rgba(10, 39, 71, 0.72);
  font-size: clamp(0.875rem, 0.847rem + 0.129vw, 1rem);
  line-height: 1;
  letter-spacing: 0;
}
.news-item__cat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 15px;
  background: #0B4773;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
.news-item__ttl {
  margin: 0;
  color: #0B4773;
  font-size: clamp(1.063rem, 1.021rem + 0.194vw, 1.25rem);
  line-height: 1.65;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.news-item__ttl:has(a:empty) a::before {
  content: "タイトルが設定されていません";
  display: block;
}
.news-item__ttl a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.news-item__ttl a:hover {
  opacity: 0.7;
}
.news-item__excerpt {
  margin: 0;
  color: rgba(10, 39, 71, 0.7);
  font-size: clamp(0.875rem, 0.847rem + 0.129vw, 1rem);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.news-empty {
  margin: 0;
  padding: clamp(2rem, 1.663rem + 1.548vw, 3.5rem) 1rem;
  border-top: 1px dotted #c9d5e0;
  border-bottom: 1px dotted #c9d5e0;
  text-align: center;
  color: rgba(10, 39, 71, 0.7);
  font-size: clamp(1rem, 0.972rem + 0.129vw, 1.125rem);
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: clamp(2rem, 1.719rem + 1.29vw, 3.25rem);
}
.pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 36px;
  height: 36px;
  padding-inline: 0.5rem;
  border: 1px solid #d7dfe8;
  background: #fff;
  color: #718196;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.pagination .page-numbers.current {
  background: #0490B3;
  border-color: #0490B3;
  color: #fff;
}
.pagination .page-numbers:not(.current):not(.dots):hover {
  border-color: #0B4773;
  color: #0B4773;
}
.pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  color: #718196;
  min-width: auto;
  padding-inline: 0;
}

.news-sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(240px, 22vw, 280px);
          flex: 0 0 clamp(240px, 22vw, 280px);
  width: clamp(240px, 22vw, 280px);
  min-width: 0;
}
@media screen and (max-width:991px) {
  .news-sidebar {
    width: 100%;
  }
}
.news-sidebar .widget + .widget {
  margin-top: clamp(1.5rem, 1.275rem + 0.645vw, 2.5rem);
}
.news-sidebar .widget-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 50px;
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  background-color: #0B4773;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
.news-sidebar .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-sidebar .widget li {
  border-bottom: 1px solid #d7dfe8;
}
.news-sidebar .widget a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.6rem;
  padding: 0.9rem 0;
  color: #0B4773;
  font-size: 0.938rem;
  line-height: 1.7;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.news-sidebar .widget a::before {
  content: "-";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #8ba0b5;
}
.news-sidebar .widget a:hover, .news-sidebar .widget a.-active {
  opacity: 0.7;
}
.news-sidebar .widget .select-wrap {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7dfe8;
}
.news-sidebar .widget .select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.1rem;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #0B4773;
  border-right: 1px solid #0B4773;
  -webkit-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.news-sidebar .widget .select-wrap select {
  width: 100%;
  height: 44px;
  padding: 0 3rem 0 1rem;
  background: transparent;
  border: none;
  color: #0B4773;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.news-sidebar .widget .select-wrap select:focus {
  outline: none;
}

body#news {
  background: #edf1f5;
}

.news-detail {
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}
.news-detail__header {
  margin-bottom: clamp(1.375rem, 1.065rem + 1.419vw, 2.75rem);
}
.news-detail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news-detail__date {
  color: rgba(10, 39, 71, 0.72);
  font-size: clamp(0.875rem, 0.847rem + 0.129vw, 1rem);
  line-height: 1;
  letter-spacing: 0;
}
.news-detail__cat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 10px;
  border-radius: 2px;
  background: #0B4773;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.news-detail__ttl {
  margin: clamp(12px, 1.024vw, 18px) 0 0;
  padding-bottom: 0;
  border-bottom: 0;
  color: #0B4773;
  font-size: clamp(1.5rem, 1.302rem + 0.903vw, 2.375rem);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.news-detail__thumb {
  overflow: hidden;
  margin: 0 0 clamp(1.75rem, 1.44rem + 1.419vw, 3.125rem);
  aspect-ratio: 16/8.4;
  background: #d8d8d8;
}
.news-detail__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-detail__body {
  color: #0A2747;
  font-size: clamp(0.938rem, 0.91rem + 0.129vw, 1rem);
  line-height: 2.1;
  letter-spacing: 0.03em;
}
.news-detail__body > * {
  width: 100% !important;
  max-width: 100% !important;
}
.news-detail__body p {
  margin: 0;
}
.news-detail__body p + p {
  margin-top: 1.25em;
}
.news-detail__body a {
  color: #E40011;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.news-detail__body h2,
.news-detail__body h3,
.news-detail__body h4 {
  margin: 2.3em 0 0.9em;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.news-detail__body h2 {
  color: #0B4773;
  font-size: clamp(1.25rem, 1.165rem + 0.387vw, 1.625rem);
  padding: 0 0 0.65em;
  border-bottom: 1px solid rgba(4, 144, 179, 0.55);
}
.news-detail__body h3 {
  color: #0490B3;
  font-size: clamp(1.125rem, 1.041rem + 0.387vw, 1.5rem);
  padding: 0;
  border-bottom: 0;
}
.news-detail__body h4 {
  color: #0B4773;
  font-size: clamp(1.063rem, 1.021rem + 0.194vw, 1.25rem);
}
.news-detail__body ul,
.news-detail__body ol {
  margin: 1.25em 0;
}
.news-detail__body ul {
  padding-left: 0;
  list-style: none;
}
.news-detail__body ol {
  padding-left: 1.4em;
}
.news-detail__body ul li + li,
.news-detail__body ol li + li {
  margin-top: 0.45em;
}
.news-detail__body ul li {
  position: relative;
  padding-left: 0.95em;
}
.news-detail__body ul li::before {
  content: "";
  position: absolute;
  top: 0.5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.3lh;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #0490B3;
}
.news-detail__body ol li {
  padding-left: 0;
}
.news-detail__body ol li::before {
  display: none;
}
.news-detail__body blockquote {
  margin: 1.8em 0;
  padding: 1.2em 1.4em;
  background: #f6f6f6;
  border-left: 4px solid #0490B3;
}
.news-detail__body figure {
  margin: 1.8em 0;
}
.news-detail__body img,
.news-detail__body iframe,
.news-detail__body video {
  max-width: 100%;
  height: auto;
}
.news-detail__body iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}
.news-detail__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: clamp(2.5rem, 2.05rem + 2.065vw, 4.5rem);
}
@media screen and (max-width:767px) {
  .news-detail__footer {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.news-detail__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  min-width: clamp(10.625rem, 9.75rem + 4vw, 14.5rem);
  min-height: 58px;
  padding: 0 18px 0 22px;
  background: #0B4773;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.news-detail__back:hover {
  opacity: 0.82;
}
@media screen and (max-width:767px) {
  .news-detail__back {
    width: 100%;
  }
}
.news-detail__back-text {
  font-size: 0.938rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
.news-detail__back-icon {
  position: relative;
  width: 18px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.news-detail__back-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translate(-65%, -50%) rotate(45deg);
          transform: translate(-65%, -50%) rotate(45deg);
}
.news-detail__pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: auto;
}
@media screen and (max-width:767px) {
  .news-detail__pager {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1rem 1.25rem;
    margin-left: 0;
  }
}
.news-detail__pager-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.938rem;
  color: #0B4773;
  border-bottom: solid 1px #D6D9E1;
  font-size: 0.938rem;
  line-height: 1.6;
  padding-block: 8px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.news-detail__pager-link:hover {
  opacity: 0.72;
}
.news-detail__pager-link.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.news-detail__pager-label {
  white-space: nowrap;
}
.news-detail__pager-icon {
  position: relative;
  width: 18px;
  aspect-ratio: 1;
  border: 1px solid #c8d5e0;
  border-radius: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.news-detail__pager-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-top: 1px solid #0B4773;
  border-right: 1px solid #0B4773;
}
.news-detail__pager-link.is-prev .news-detail__pager-icon::before {
  -webkit-transform: translate(-35%, -50%) rotate(-135deg);
          transform: translate(-35%, -50%) rotate(-135deg);
}
.news-detail__pager-link.is-next .news-detail__pager-icon::before {
  -webkit-transform: translate(-65%, -50%) rotate(45deg);
          transform: translate(-65%, -50%) rotate(45deg);
}

.news-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(2.5rem, 2.05rem + 2.065vw, 4.5rem);
  width: 100%;
}
@media screen and (max-width:991px) {
  .news-single {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-single__empty {
  margin: 0;
  text-align: center;
  color: rgba(41, 33, 11, 0.7);
  font-size: clamp(1rem, 0.972rem + 0.129vw, 1.125rem);
}
.news-single__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}

.news-single > .news-sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(240px, 22vw, 280px);
          flex: 0 0 clamp(240px, 22vw, 280px);
  width: clamp(240px, 22vw, 280px);
  min-width: 0;
  margin-top: 0;
  display: block;
}
@media screen and (max-width:991px) {
  .news-single > .news-sidebar {
    width: 100%;
    margin-top: clamp(20px, 15.484px + 1.29vw, 40px);
  }
}
.news-single > .news-sidebar .widget {
  margin-bottom: 0;
}
.news-single > .news-sidebar .widget + .widget {
  margin-top: clamp(1.5rem, 1.275rem + 0.645vw, 2.5rem);
}/*# sourceMappingURL=style-news.css.map */