/**
 * Variables
 *
 * @package TouwaNew
 */
/**
 * Common First View Section
 *
 * @package TouwaNew
 */
.common-fv-section {
  position: relative;
  width: 100%;
  overflow: visible;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .common-fv-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
}
.common-fv-section .common-fv-image {
  position: relative;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}
.common-fv-section .common-fv-image img {
  width: 86%;
  aspect-ratio: 14/5;
  object-fit: cover;
  object-position: right center;
}
.common-fv-section .common-fv-image .common-fv-image-pc {
  display: block;
}
@media (max-width: 768px) {
  .common-fv-section .common-fv-image .common-fv-image-pc {
    display: none;
  }
}
.common-fv-section .common-fv-image .common-fv-image-sp {
  display: none;
}
@media (max-width: 768px) {
  .common-fv-section .common-fv-image .common-fv-image-sp {
    display: block;
  }
}
@media (max-width: 768px) {
  .common-fv-section .common-fv-image {
    justify-content: center;
  }
  .common-fv-section .common-fv-image img {
    width: 100%;
    aspect-ratio: auto;
    object-position: center;
  }
}
.common-fv-section .common-fv-bg {
  background-color: #0370b0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 0, 73% 100%, 0 100%);
}
@media (max-width: 768px) {
  .common-fv-section .common-fv-bg {
    clip-path: none;
  }
}
.common-fv-section .common-fv-content {
  position: relative;
  z-index: 2;
  padding: 20px 0 calc(1em + 10px) 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1280px) {
  .common-fv-section .common-fv-content {
    padding-left: 14%;
  }
}
@media (max-width: 768px) {
  .common-fv-section .common-fv-content {
    padding: 20px 20px;
    background-color: #0370b0;
  }
}
.common-fv-section .common-fv-content .common-fv-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: clamp(48px, 48px + 8 * (100vw - 769px) / 1151, 56px);
  color: #fff;
  line-height: 1.4;
  margin: 0 0 12px 0;
  max-width: 65%;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .common-fv-section .common-fv-content .common-fv-title {
    font-size: clamp(24px, 24px + 4 * (100vw - 350px) / 418, 28px);
    margin: 0 0 8px 0;
    max-width: 100%;
  }
}
.common-fv-section .common-fv-content .common-fv-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 20px + 4 * (100vw - 769px) / 1151, 24px);
  color: #fff;
  margin: 0;
  line-height: 140%;
  max-width: 60%;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.common-fv-section .common-fv-content .common-fv-description .sp-only {
  display: none;
}
@media (max-width: 768px) {
  .common-fv-section .common-fv-content .common-fv-description .sp-only {
    display: inline;
  }
}
@media (max-width: 768px) {
  .common-fv-section .common-fv-content .common-fv-description {
    font-size: clamp(16px, 16px + 2 * (100vw - 350px) / 418, 18px);
    max-width: 100%;
  }
}

.news-content {
  background: #fff;
  padding: 0 20px 80px;
}
@media (max-width: 768px) {
  .news-content {
    padding: 40px 20px 60px;
  }
}
.page-news-single .news-content {
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .page-news-single .news-content {
    padding-bottom: 60px;
  }
}

.news-container {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
@media (max-width: 768px) {
  .news-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.news-main {
  min-width: 0;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}
@media (max-width: 768px) {
  .news-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }
}

.news-item {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.news-item-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.news-item-link:hover {
  opacity: 0.8;
  text-decoration: none;
}

.news-item-thumbnail {
  aspect-ratio: 5/3;
  overflow: hidden;
  margin-bottom: 15px;
  background: #fff;
}
.news-item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-item-thumbnail--no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #0370b0;
}
@media (max-width: 768px) {
  .news-item-thumbnail--no-image {
    border-width: 2px;
  }
}
.news-item-thumbnail--no-image .news-item-logo {
  width: 80%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .news-item-thumbnail {
    margin-bottom: 0;
  }
}

.news-item-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: clamp(6px, 4.66px + 0.174vw, 8px);
}
@media (max-width: 768px) {
  .news-item-content {
    gap: 5px;
  }
}

.news-item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 17.33px + 0.347vw, 24px);
  font-weight: 600;
  line-height: 1.4;
  color: #222222;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-item-title {
    font-size: 16px;
    -webkit-line-clamp: 1;
  }
}

.news-item-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.news-item-category {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #0370b0;
  background: transparent;
  border: 1.5px solid #0370b0;
  padding: 1px 10px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .news-item-category {
    font-size: 10px;
    border-width: 1px;
    padding: 1px 8px;
  }
}

.news-item-date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #222222;
}
@media (max-width: 768px) {
  .news-item-date {
    font-size: 12px;
  }
}

.news-item-excerpt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 14.67px + 0.174vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #222222;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-item-excerpt {
    font-size: clamp(0.75rem, 0.541rem + 0.96vw, 1rem);
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

.news-item-more {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0370b0;
  text-align: right;
  display: block;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .news-item-more {
    font-size: 10px;
  }
}

.news-no-posts {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 16px;
}

.news-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(15px, 5px + 1.3vw, 30px);
}
@media (max-width: 768px) {
  .news-pagination {
    margin-top: 40px;
    gap: 10px;
  }
}
.news-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  height: 35px;
  padding: 0 10px;
  border: 1px solid #ddd;
  background: #fff;
  color: #222222;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.news-pagination .page-numbers:hover {
  background: #f5f5f5;
}
.news-pagination .page-numbers.current {
  background: #0370b0;
  border-color: #0370b0;
  color: #fff;
}
.news-pagination .page-numbers.prev, .news-pagination .page-numbers.next {
  border: none;
  background: transparent;
  min-width: 30px;
  padding: 0;
  position: relative;
}
.news-pagination .page-numbers.prev::before, .news-pagination .page-numbers.next::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #222222;
  border-right: 2px solid #222222;
}
.news-pagination .page-numbers.prev:hover:not(.disabled), .news-pagination .page-numbers.next:hover:not(.disabled) {
  background: transparent;
}
.news-pagination .page-numbers.prev:hover:not(.disabled)::before, .news-pagination .page-numbers.next:hover:not(.disabled)::before {
  border-color: #0370b0;
}
.news-pagination .page-numbers.prev.disabled, .news-pagination .page-numbers.next.disabled {
  cursor: default;
}
.news-pagination .page-numbers.prev.disabled::before, .news-pagination .page-numbers.next.disabled::before {
  border-color: #ccc;
}
.news-pagination .page-numbers.prev .screen-reader-text, .news-pagination .page-numbers.next .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
@media (max-width: 768px) {
  .news-pagination .page-numbers.prev, .news-pagination .page-numbers.next {
    min-width: 25px;
  }
  .news-pagination .page-numbers.prev::before, .news-pagination .page-numbers.next::before {
    width: 10px;
    height: 10px;
  }
}
.news-pagination .page-numbers.prev::before {
  transform: rotate(-135deg);
}
.news-pagination .page-numbers.next::before {
  transform: rotate(45deg);
}
.news-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  min-width: auto;
  padding: 0 5px;
}
@media (max-width: 768px) {
  .news-pagination .page-numbers {
    min-width: 27px;
    height: 27px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .news-sidebar {
    margin-top: 20px;
  }
}

.news-sidebar-section {
  background: #fff;
}

.news-sidebar-title {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  background: #0370b0;
  margin: 0;
  padding: 8px clamp(15px, 5px + 1.3vw, 30px);
}
@media (max-width: 768px) {
  .news-sidebar-title {
    font-size: 20px;
    padding: 6px 16px;
  }
}

.news-sidebar-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-sidebar-category {
  border-bottom: 1px solid #000000;
}
.news-sidebar-category a {
  display: block;
  padding: 15px clamp(15px, 5px + 1.3vw, 30px);
  color: #222222;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .news-sidebar-category a {
    font-size: 18px;
    padding: 12px 16px;
  }
}
.news-sidebar-category a:hover {
  opacity: 0.7;
}
.news-sidebar-category.is-current a {
  color: #0370b0;
  font-weight: 700;
}

.news-sidebar--pc {
  display: block;
}
@media (max-width: 768px) {
  .news-sidebar--pc {
    display: none;
  }
}

.news-sidebar--sp {
  display: none;
}
@media (max-width: 768px) {
  .news-sidebar--sp {
    display: block;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .news-container--single {
    gap: 0;
  }
}

.news-single {
  min-width: 0;
}

.news-single-header {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .news-single-header {
    margin-bottom: 20px;
  }
}

.news-single-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(32px, 26.66px + 0.695vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  color: #222222;
  margin: 0 0 15px;
}
@media (max-width: 768px) {
  .news-single-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.news-single-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 768px) {
  .news-single-meta {
    gap: 6px;
  }
}

.news-single-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.news-single-category {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0370b0;
  background: transparent;
  border: 1.5px solid #0370b0;
  padding: 1px 10px;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.3s ease;
}
.news-single-category:hover {
  background: #0370b0;
  color: #fff;
}
@media (max-width: 768px) {
  .news-single-category {
    font-size: 10px;
    border-width: 1px;
    padding: 1px 8px;
  }
}

.news-single-date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #222222;
}
@media (max-width: 768px) {
  .news-single-date {
    font-size: 10px;
  }
}

.news-single-thumbnail {
  margin-bottom: 30px;
  aspect-ratio: 21/10;
  overflow: hidden;
}
.news-single-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 768px) {
  .news-single-thumbnail {
    margin-bottom: 20px;
  }
}

.news-single-body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #222222;
  margin-bottom: 30px;
}
.news-single-body p {
  margin: 0 0 1.5em;
}
.news-single-body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .news-single-body {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.news-single-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .news-single-gallery {
    gap: 10px;
    margin-bottom: 20px;
  }
}

.news-single-gallery-item {
  margin: 0;
  aspect-ratio: 2/1;
  overflow: hidden;
}
.news-single-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 768px) {
  .news-single-gallery-item {
    aspect-ratio: 7/6;
  }
}

.news-single-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .news-single-nav {
    margin-top: 30px;
    margin-bottom: 0;
  }
}

.news-single-nav-prev,
.news-single-nav-next {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.news-single-nav-prev:hover,
.news-single-nav-next:hover {
  opacity: 0.7;
}
.news-single-nav-prev.news-single-nav-disabled,
.news-single-nav-next.news-single-nav-disabled {
  visibility: hidden;
}
@media (max-width: 768px) {
  .news-single-nav-prev,
  .news-single-nav-next {
    font-size: 14px;
    gap: 5px;
  }
}

.news-single-nav-prev {
  justify-content: flex-start;
}

.news-single-nav-next {
  justify-content: flex-end;
}

.news-single-nav-center {
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0370b0;
  text-decoration: none;
  transition: opacity 0.3s ease;
  padding: 0 20px;
}
.news-single-nav-center:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .news-single-nav-center {
    font-size: 14px;
    padding: 0 10px;
  }
}

.news-single-nav-arrow {
  color: #222222;
  font-weight: 600;
  flex-shrink: 0;
}

.news-single-nav-title {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .news-single-nav-title {
    max-width: 100px;
  }
}

.news-related {
  background: #E3F2FD;
  padding: 80px 20px;
  margin-left: -20px;
  margin-right: -20px;
}
@media (max-width: 768px) {
  .news-related {
    padding: 40px 20px;
    margin-top: 40px;
    margin-left: -20px;
    margin-right: -20px;
  }
}

.news-related-inner {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
@media (max-width: 768px) {
  .news-related-inner {
    display: block;
  }
}

.news-related-content {
  min-width: 0;
}

.news-related-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: #0370b0;
  text-align: center;
  margin: 0 0 40px;
}
@media (max-width: 768px) {
  .news-related-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.news-related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, 5px + 1.3vw, 30px);
}
@media (max-width: 768px) {
  .news-related-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
.news-related-list .news-item {
  background: #fff;
  padding: 10px;
}
.news-related-list .news-item-thumbnail {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .news-related-list .news-item-thumbnail {
    margin-bottom: 5px;
  }
}
.news-related-list .news-item-thumbnail--no-image {
  border-width: 3px;
}
.news-related-list .news-item-content {
  padding: 0;
}
.news-related-list .news-item-title {
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

/*# sourceMappingURL=style.css.map */
