@charset "UTF-8";

/* --------------------------------------------------
 * archive__news
-------------------------------------------------- */

#main > section.archive__news {
  padding: 0;
  margin-bottom: 0;
}

.archive__news .news__header {
  padding-left: 2.9166em;
}

.archive__news .cmn__tit01 .en {
}

.archive__news .news__content {
  margin-top: 3.75em;
  padding: 5em 4.375em;
  background-color: var(--gray3-color);
}

.archive__news .news__content .news__child {
  margin-bottom: 2.5em;
}

.archive__news .news__content .news__child .news__child-tit {
  line-height: 1;
  font-weight: 400;
  font-size: 3.125rem;
  color: var(--base2-color);
}

.archive__news .news__content .news__child .news__child-num {
  line-height: 1.6;
  margin-top: 1em;
  padding-left: 2.5em;
  font-weight: 600;
  font-size: 1rem;
  color: var(--base2-color);
  letter-spacing: 0.1em;
}

.archive__news .news__content .news__filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25em;
}

.archive__news .news__content .news__filter .news__filter-btn {
  background-color: var(--main-color);
  border: 1px solid var(--accent-color);
  border-radius: 100vh;
  padding: 0.5666em 1.3333em;
  font-family: var(--fm-notojp);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--accent-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.archive__news .news__content .news__filter .news__filter-btn--active {
  background-color: var(--accent-color);
  color: var(--main-color);
  border-color: var(--accent-color);
}

.archive__news
  .news__content
  .news__filter
  .news__filter-btn:hover:not(.news__filter-btn--active) {
  background-color: #f0f0f0;
}

.archive__news .news__content .news__grid {
  display: grid;
  grid-template-columns: 32.61% 34.78% 32.61%;
  margin-top: 2.5em;
}

.archive__news .news__content .news__grid .news__card {
  border-right: 1px solid #b1b1b1;
  border-bottom: 1px solid #b1b1b1;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  padding-right: 1.625em;
  padding-left: 1.625em;
  padding-bottom: 1.75em;
  display: flex;
  flex-direction: column;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 1.625em),
    calc(100% - 1.625em) 100%,
    1.625em 100%,
    0 calc(100% - 1.625em)
  );
}

.archive__news .news__content .news__grid .news__card .news__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.archive__news .news__content .news__grid .news__card:nth-of-type(3n) {
  border-right: none;
  padding-right: 0;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 1.625em),
    100% 100%,
    1.625em 100%,
    0 calc(100% - 1.625em)
  );
}

.archive__news .news__content .news__grid .news__card:nth-of-type(3n + 1) {
  padding-left: 0;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 1.625em),
    calc(100% - 1.625em) 100%,
    0 100%,
    0 calc(100% - 1.625em)
  );
}

.archive__news .news__content .news__grid .news__card:nth-of-type(n + 4) {
  margin-top: 1.625em;
}

.archive__news .news__content .news__grid .news__card .news__card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 398 / 264;
  overflow: hidden;
  border-radius: 10px;
}

.archive__news .news__content .news__grid .news__card .news__card-img img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.archive__news
  .news__content
  .news__grid
  .news__card
  .news__card-link:hover
  .news__card-img
  img {
  transform: scale(1.1);
}

.archive__news .news__content .news__grid .news__card .news__card-wrap {
  display: flex;
  margin-top: 0.75em;
  justify-content: space-between;
}

.archive__news
  .news__content
  .news__grid
  .news__card
  .news__card-wrap
  .news__card-tag {
  font-family: var(--fm-notojp);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--base2-color);
}

.archive__news
  .news__content
  .news__grid
  .news__card
  .news__card-wrap
  .news__card-date {
  top: 10px;
  right: 10px;
  font-family: var(--fm-notojp);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6a6a6a;
}

.archive__news .news__content .news__grid .news__card .news__card-tit {
  font-family: var(--fm-notojp);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--base2-color);
  margin-top: 0.4444em;
}

.archive__news .news__content .news__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3em;
}

.archive__news .news__content .news__pagination .news__pagination-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  color: var(--accent-color);
  font-family: var(--fm-notojp);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  margin-right: 2.5em;
  transition: all 0.3s ease;
}

.archive__news
  .news__content
  .news__pagination
  .news__pagination-item:nth-child(3) {
  margin-right: 0;
}

.archive__news .news__content .news__pagination .news__pagination-item--active {
  color: var(--base2-color);
}

.archive__news
  .news__content
  .news__pagination
  .news__pagination-item:hover:not(.news__pagination-item--active) {
  background-color: #f0f0f0;
}

.archive__news .news__content .news__pagination .news__pagination-dots {
  font-family: Helvetica;
  font-size: 0.75rem;
  color: var(--accent-color);
  margin: 0 0.75em;
}

.archive__news .news__content .news__pagination .news__pagination-next {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--accent-color);
  font-family: var(--fm-notojp);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
}

.archive__news
  .news__content
  .news__pagination
  .news__pagination-next
  .news__pagination-arrow {
  margin-left: 1em;
}

@media (max-width: 1024px) {
  .archive__news .news__content .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .archive__news .news__content .news__grid .news__card:nth-of-type(2n + 1) {
    padding-left: 0;
    padding-right: 1.625em;
    border-right: 1px solid #b1b1b1;
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 1.625em),
      calc(100% - 1.625em) 100%,
      0 100%,
      0 calc(100% - 1.625em)
    );
  }

  .archive__news .news__content .news__grid .news__card:nth-of-type(2n) {
    padding-right: 0;
    padding-left: 1.625em;
    border-right: none;
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 1.625em),
      100% 100%,
      1.625em 100%,
      0 calc(100% - 1.625em)
    );
  }

  .archive__news .news__content .news__grid .news__card:nth-of-type(n + 3) {
    margin-top: 1.625em;
  }

  .archive__news .news__content {
    padding: 3.5714em 4% 4.2857em;
  }
}

@media (max-width: 768px) {
  .archive__news .news__header {
    padding-left: 8%;
  }

  .cmn__tit01 .en {
    font-size: 4.1666rem;
  }

  .archive__news .news__content {
    margin-top: 2em;
    padding: 4em 4% 5em;
  }

  .archive__news .news__content .news__child {
    margin-bottom: 1.75em;
  }

  .archive__news .news__content .news__child .news__child-tit {
    font-size: 2.675rem;
  }

  .archive__news .news__content .news__child .news__child-num {
    line-height: 1.6;
    padding-left: 2.5em;
    font-size: 0.875em;
  }

  .archive__news .news__content .news__filter {
    justify-content: left;
  }

  .archive__news .news__content .news__filter .news__filter-btn {
    padding: 0.4666em 1.3333em;
    font-size: 1.25rem;
  }

  .archive__news .news__content .news__grid {
    grid-template-columns: 1fr;
    margin-top: 4.1666em;
    gap: 2.0833em;
  }

  .archive__news .news__content .news__grid .news__card,
  .archive__news .news__content .news__grid .news__card:nth-of-type(2n + 1),
  .archive__news .news__content .news__grid .news__card:nth-of-type(2n) {
    padding-right: 0px;
    padding-left: 0;
    padding-bottom: 2.0833em;
    border-right: none;
    clip-path: none;
  }

  .archive__news .news__content .news__grid .news__card:nth-of-type(n + 3) {
    margin-top: 0;
  }

  .archive__news .news__content .news__grid .news__card:last-child {
    border-bottom: none;
  }

  .archive__news .news__content .news__grid .news__card .news__card-wrap {
    margin-top: 1em;
  }

  .archive__news
    .news__content
    .news__grid
    .news__card
    .news__card-wrap
    .news__card-tag {
    font-size: 1.1666rem;
  }

  .archive__news
    .news__content
    .news__grid
    .news__card
    .news__card-wrap
    .news__card-date {
    font-size: 1.1666rem;
  }

  .archive__news .news__content .news__grid .news__card .news__card-tit {
    margin-top: 0.5em;
    font-size: 1.5rem;
  }

  .archive__news .news__content .news__pagination {
    margin-top: 1.5em;
  }

  .archive__news .news__content .news__pagination .news__pagination-item {
    font-size: 1.0833rem;
    margin-right: 1.5384em;
    line-height: 1.2307em;
  }

  .archive__news .news__content .news__pagination .news__pagination-dots {
    font-size: 1rem;
    margin: 0 0.75em;
  }

  .archive__news .news__content .news__pagination .news__pagination-next {
    font-size: 1.0833rem;
  }

  .archive__news
    .news__content
    .news__pagination
    .news__pagination-next
    .news__pagination-arrow {
    font-size: 1.0833rem;
    margin-left: 0.6153em;
  }
}

/* --------------------------------------------------
 * single__news
-------------------------------------------------- */

#main > section.single__news {
  margin-top: 12em;
  padding: 5em 4.375em;
}

.single__news {
  background-color: #ececec;
}

.single__news .single__news-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.single__news .single__news-wrap .news__header {
  display: flex;
  justify-content: flex-start;
  gap: 1.5em;
  margin: 0 3.0625em;
}

.single__news .single__news-wrap .news__header .news__category {
  font-family: var(--fm-notojp);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--base2-color);
}

.single__news .single__news-wrap .news__header .news__date {
  font-family: var(--fm-notojp);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6a6a6a;
}

.single__news .single__news-wrap .news__content .news__title-container {
  margin: 1.125em 3.0625em 0;
  border-left: 0.25em solid var(--accent-color);
  padding-left: 1.75em;
}

.single__news
  .single__news-wrap
  .news__content
  .news__title-container
  .news__title {
  font-family: var(--fm-notojp);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.6;
}

.single__news .single__news-wrap .news__content .news__image-container {
  position: relative;
  margin-top: 2.5em;
  aspect-ratio: 900 / 510;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
}

.single__news
  .single__news-wrap
  .news__content
  .news__image-container
  .news__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single__news .single__news-wrap .news__content .news__detail-container {
  width: 78%;
  margin: 2.5em auto 0;
}

.single__news .single__news-wrap .news__content .news__detail-container * + * {
  margin-top: 1.5em;
}

.single__news .single__news-wrap .news__content .news__detail-container .p-block-carousel__inner .swiper_caption .swiper-ctrl .p-block-carousel-counter,
.single__news .single__news-wrap .news__content .news__detail-container .p-block-carousel__inner .swiper_caption .swiper-ctrl .p-block-carousel-total {
  margin: 0;
}

.single__news .single__news-wrap .news__content .news__detail-container h2 {
  line-height: 1.6;
  padding-left: 0.545em;
  border-left: 6px solid var(--accent-color);
  font-weight: 500;
  font-family: var(--fm-notojp);
  font-size: 1.375rem;
  color: var(--accent-color);
}

.single__news .single__news-wrap .news__content .news__detail-container * + h2 {
  margin-top: 2.5em;
}

.single__news .single__news-wrap .news__content .news__detail-container p {
  line-height: 1.8;
  font-weight: 300;
  font-family: var(--fm-notojp);
  font-size: 1.125rem;
}

.single__news .single__news-wrap .news__content .news__detail-container p strong {
  font-weight: 500;
}

.single__news .single__news-wrap .news__content .news__detail-container p strong,
.single__news .single__news-wrap .news__content .news__detail-container p a {
  color: var(--accent-color);
}

.single__news .single__news-wrap .news__content .news__detail-container img {
  margin: 0 auto;
  border-radius: 10px;
}

.single__news .single__news-wrap .news__content .news__detail-container div {
  text-align: center;
}

.single__news .single__news-wrap .news__content .news__detail-container div.c-block-talk-name {
  margin-top: 0;
  text-align: left;
}

.single__news .single__news-wrap .news__content .news__detail-container div.c-block-talk-text {
  line-height: 2;
  margin-top: 0;
  text-align: left;
}

.single__news .single__news-wrap .news__content .news__detail-container div.p-block-information__col {
  margin-top: 0;
}

.single__news .single__news-wrap .news__content .news__share-container {
  width: 78%;
  margin: 0 auto;
}

.single__news .single__news-wrap .news__content .news__share-container .news__share-list {
  display: flex;
  justify-content: flex-end;
  padding: 3.25em 0;
  border-bottom: 1px solid #B1B1B1;
  gap: 0.675em;
}

.single__news .single__news-wrap .news__content .news__share-container .news__share-item {
  width: 2.25em;
  aspect-ratio: 1 / 1;
}

.single__news .single__news-wrap .news__content .news__share-container .news__share-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--main-color);
}

.single__news .single__news-wrap .news__content .news__share-container .news__share-item a img {
  width: 50%;
  height: auto;
}

.single__news .single__news-wrap .news__footer {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-top: 3.75em;
  border-top: 1px solid #eaeaea;
}

.single__news .single__news-wrap .news__footer .news__back-button {
  display: inline-block;
  padding: 0.6666em 3.3333em;
  border: 1px solid var(--base2-color);
  border-radius: 0.1666em;
  text-decoration: none;
  font-family: var(--fm-inter);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--base2-color);
  transition: all 0.3s ease;
}

.single__news .single__news-wrap .news__footer .news__back-button:hover,
.single__news .single__news-wrap .news__footer .news__next-button:hover {
  background-color: #f5f5f5;
}

.single__news .single__news-wrap .news__footer .news__next-button {
  border: 1px solid var(--base2-color);
  border-radius: 0.1666em;
  width: 3.875em;
  text-align: center;
  padding: 1.15625em;
}

.single__news .single__news-wrap .news__footer .news__next-button img {
  width: 100%;
  height: auto;
  text-align: center;
}

#main > section.news__relate {
  margin-bottom: 1.25em;
}

#main .news__relate {
  padding: 5em 4.375em;
}

.news__relate .relate__head .relate__tit {
  font-family: var(--fm-notojp);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.8;
}

.news__relate .news__grid {
  display: grid;
  grid-template-columns: 32.61% 34.78% 32.61%;
  margin-top: 1.25em;
}

.news__relate .news__grid .news__card {
  border-right: 1px solid #b1b1b1;
  border-bottom: 1px solid #b1b1b1;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  padding-right: 1.625em;
  padding-left: 1.625em;
  padding-bottom: 1.75em;
  display: flex;
  flex-direction: column;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 1.625em),
    calc(100% - 1.625em) 100%,
    1.625em 100%,
    0 calc(100% - 1.625em)
  );
}

.news__relate .news__grid .news__card .news__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.news__relate .news__grid .news__card:nth-of-type(3n) {
  border-right: none;
  padding-right: 0;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 1.625em),
    100% 100%,
    1.625em 100%,
    0 calc(100% - 1.625em)
  );
}

.news__relate .news__grid .news__card:nth-of-type(3n + 1) {
  padding-left: 0;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 1.625em),
    calc(100% - 1.625em) 100%,
    0 100%,
    0 calc(100% - 1.625em)
  );
}

.news__relate .news__grid .news__card:nth-of-type(n + 4) {
  margin-top: 1.625em;
}

.news__relate .news__grid .news__card .news__card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 398 / 264;
  overflow: hidden;
  border-radius: 10px;
}

.news__relate .news__grid .news__card .news__card-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news__relate
  .news__grid
  .news__card
  .news__card-link:hover
  .news__card-img
  img {
  transform: scale(1.1);
}

.news__relate .news__grid .news__card .news__card-wrap {
  display: flex;
  margin-top: 0.75em;
  justify-content: space-between;
}

.news__relate .news__grid .news__card .news__card-wrap .news__card-tag {
  font-family: var(--fm-notojp);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--base2-color);
}

.news__relate .news__grid .news__card .news__card-wrap .news__card-date {
  top: 10px;
  right: 10px;
  font-family: var(--fm-notojp);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6a6a6a;
}

.news__relate .news__grid .news__card .news__card-tit {
  font-family: var(--fm-notojp);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #222222;
  margin-top: 0.4444em;
}

@media (max-width: 1024px) {
  .news__relate .news__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .news__relate .news__grid .news__card:nth-of-type(2n + 1) {
    padding-left: 0;
    padding-right: 1.625em;
    border-right: 1px solid #b1b1b1;
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 1.625em),
      calc(100% - 1.625em) 100%,
      0 100%,
      0 calc(100% - 1.625em)
    );
  }

  .news__relate .news__grid .news__card:nth-of-type(2n) {
    padding-right: 0;
    padding-left: 1.625em;
    border-right: none;
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 1.625em),
      100% 100%,
      1.625em 100%,
      0 calc(100% - 1.625em)
    );
  }

  .news__relate .news__grid .news__card:nth-of-type(n + 3) {
    margin-top: 1.625em;
  }
}

@media (max-width: 768px) {
  #main > section.single__news {
    margin-top: 10em;
    padding: 4.166em 1.25em;
  }

  .single__news .single__news-wrap .news__header {
    margin: 0;
    gap: 1em;
  }

  .single__news .single__news-wrap .news__header .news__category {
    font-size: 1.1666rem;
  }

  .single__news .single__news-wrap .news__header .news__date {
    font-size: 1.1666rem;
  }

  .single__news .single__news-wrap .news__content .news__title-container {
    margin-top: 0.75em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.25em;
    border-left: 0.4em solid var(--accent-color);
  }

  .single__news
    .single__news-wrap
    .news__content
    .news__title-container
    .news__title {
    font-size: 2.0833rem;
    line-height: 1.5;
  }

  .single__news
    .single__news-wrap
    .news__content
    .news__title-container
    .news__title
    br {
    display: none;
  }

  .single__news .single__news-wrap .news__content .news__image-container {
    margin-top: 2.625em;
  }

  .single__news .single__news-wrap .news__content .news__detail-container {
    width: 100%;
    margin: 2.5em 0 0;
  }

  .single__news .single__news-wrap .news__content .news__detail-container h2 {
    font-size: 1.5rem;
  }

  .single__news .single__news-wrap .news__content .news__detail-container p {
    font-size: 1.166rem;
  }

  .single__news .single__news-wrap .news__content .news__share-container {
    width: 100%;
    margin: 0;
  }

  .single__news .single__news-wrap .news__content .news__share-container .news__share-list {
    padding: 4em 0 3em;
    gap: 0.75em;
  }

  .single__news .single__news-wrap .news__content .news__share-container .news__share-item {
    width: 2.75em;
  }

  .single__news .single__news-wrap .news__footer {
    margin-top: 3.3333em;
  }

  #main .news__relate {
    padding: 5em 4% 5.8333em;
  }

  #main > section.news__relate {
    margin-bottom: 0;
    padding-bottom: 5.4166em;
  }

  .news__relate .relate__head .relate__tit {
    font-size: 1.5833rem;
  }

  .news__relate .news__grid {
    grid-template-columns: 1fr;
    margin-top: 1.25em;
    gap: 1em;
  }

  .news__relate .news__grid .news__card,
  .news__relate .news__grid .news__card:nth-of-type(2n + 1),
  .news__relate .news__grid .news__card:nth-of-type(2n) {
    padding-right: 0px;
    padding-left: 0;
    padding-bottom: 1em;
    border-right: none;
    clip-path: none;
  }

  .news__relate .news__grid .news__card:nth-of-type(n + 3) {
    margin-top: 0;
  }

  .news__relate .news__grid .news__card:last-child {
    border-bottom: none;
  }

  .news__relate .news__grid .news__card .news__card-wrap {
    margin-top: 1em;
  }

  .news__relate .news__grid .news__card .news__card-wrap .news__card-tag {
    font-size: 1.1666rem;
  }

  .news__relate .news__grid .news__card .news__card-wrap .news__card-date {
    font-size: 1.1666rem;
  }

  .news__relate .news__grid .news__card .news__card-tit {
    margin-top: 0.5em;
    font-size: 1.5rem;
  }
}
