main {
  position: relative;
  overflow: hidden;
}
main:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 450px;
  height: 591px;
  z-index: -1;
  background: #000;
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 0 99%, 450px 0);
}
@media screen and (max-width: 768px) {
  main:after {
    display: none;
  }
}
main:has(.has-deco) .has-deco_wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: -1;
}
main:has(.has-deco) .has-deco_wrap .has-deco .img {
  width: 50vw;
  height: 50vh;
  aspect-ratio: 649/847;
}
main:has(.top-deco) .top-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 450px;
  height: 591px;
  z-index: -1;
  background: #000;
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 0 99%, 450px 0);
}

.container {
  width: 100%;
  max-width: 1086px;
  margin-inline: auto;
}

section .container {
    padding:70px 30px;
}
@media screen and (max-width: 768px) {
  section .container {
    padding:35px 15px;
  }
}
section:has(.contents-list) {
  background: #E7E5ED;
}
section .contents + .contents {
  margin-top: 50px;
}

.main-area {
  display: grid;
  width: 100%;
  height: 440px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-area {
    height: 260px;
  }
}
.main-area:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  width: 60%;
  height: 100%;
  background: #0048CF;
}
@media screen and (max-width: 768px) {
  .main-area:after {
    width: 70%;
    clip-path: polygon(0 0, 100% 0%, 40% 100%, 0% 100%);
  }
}
.main-area .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  padding-bottom: 30px;
}
.main-area .container hgroup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.main-area .container .breadcrumbs {
  bottom: 30px;
  left: 0;
  display: flex;
  flex-wrap:wrap;
  gap: 3px;
  align-items: center;
}
.main-area .container .breadcrumbs span,
.main-area .container .breadcrumbs a {
  font-size: 13px;
  font-weight: 500;
  color: #FFF;
}
.main-area .container .breadcrumbs a {
  display: flex;
  gap: 3px;
  align-items: center;
}
.main-area .container .breadcrumbs a:after {
  content: ">";
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #FFF;
}
@media screen and (max-width: 768px) {
.main-area .container .breadcrumbs span{
  display: inline-block;
  max-width: 80vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}
}
.main-area .page-title {
  color: #FFF;
  font-size: 80px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .main-area .page-title {
    font-size: clamp(50px, 4vw, 64px);
	line-height:1.2;
  }
}
.main-area .page-title_ja {
  font-size: 16px;
  font-weight: 700;
  translate: 0 -4px;
  line-height: 1;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  color: #FFF;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .main-area .page-title_ja {
    grid-template-columns: 20px 1fr;
	margin-top:12px;
  }
}
.main-area .page-title_ja:before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .main-area .page-title_ja:before {
    width: 20px;
    height: 2px;
  }
}
.main-area .main-img,
.main-area .container {
  grid-row: 1/2;
  grid-column: 1/2;
}
.main-area .main-img {
  width: 100%;
  height: 440px;
}
@media screen and (max-width: 768px) {
  .main-area .main-img {
    height: 260px;
  }
}
.main-area .main-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2800/880;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .main-area .main-img img {
    aspect-ratio: 750/520;
  }
}

.text {
  font-size: 14px;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .text {
    font-weight: 500;
  }
}

.add-text {
  font-size: 13px;
  line-height: 2;
  font-weight: 500;
}

.contents-list_title {
  font-size: 35px;
  font-weight: 700;
  border-bottom: 1px solid #E7E5ED;
  position: relative;
  padding-bottom: 10px;
}
.contents-list_title.white {
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 768px) {
  .contents-list_title {
    font-size: clamp(20px, 4vw, 35px);
  }
}
.contents-list_title:after {
  content: "";
  position: absolute;
  display: block;
  bottom: -1px;
  left: 0;
  width: 50%;
  height: 1px;
  background: #0048CF;
}
@media screen and (max-width: 768px) {
  .contents-list_title:after {
    height: 2px;
  }
}
.contents-list_title + .text {
  margin-top: 30px;
}

.contents-list_title_s {
  font-size: 25px;
  font-weight: 700;
  border-bottom: 1px solid #8A8A8A;
  padding-bottom: 8px;
  line-height: 1.5;
  padding-left: 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contents-list_title_s {
    font-size: clamp(18px, 3vw, 25px);
  }
}
.contents-list_title_s:before {
  content: "";
  position: absolute;
  display: block;
  top: 10%;
  left: 0;
  width: 3px;
  height: 70%;
  background: #0048CF;
}

.bg--line--wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 120vw;
  translate: -10vw 0;
  height: 100%;
  overflow: hidden;
}

.contents-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .contents-list {
    display: flex;
    flex-direction: column;
  }
}
.contents-list .list .item {
  background: #FFF;
  border-radius: 0 0 10px 0;
  display: flex;
  flex-direction: column;
}
.contents-list .list .item .item-info {
  padding: 20px 20px 47px;
}
.contents-list.white .list .item-info {
  padding: 20px 15px;
  background:#fff;
}
.contents-list .list .item .item-info .date {
  font-size: 15px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.contents-list .list .item .item-info .item-text {
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
.contents-list .list a.post-thumbnail{
    display: flex;
    aspect-ratio: 345 / 209;
    width: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}
}

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