@charset "UTF-8";
/* CSS Document */
/* 一覧ページ */
/* newslistArea */
.newslistArea .sub_inner {
  padding: 80px 40px 120px;
  .listArea ul li {
    padding: 40px 16px;
    border-bottom: 1px solid #d8d8d8;
    &:first-child {
      border-top: 1px solid #d8d8d8;
    }
    .date_wrap {
      padding-bottom: 10px;
      .date,
      time {
        color: var(--color-quaternary);
      }
    }
    a {
      position: relative;
      display: flex;
      align-items: center;
      gap: 20px;
      padding-right: 90px;
      &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #e46d9d;
        transition: all 0.3s linear;
        z-index: 1;
      }
      &::before {
        content: "";
        position: absolute;
        top: 50%;
        right: 18px;
        transform: translateY(-50%) rotate(45deg);
        width: 8px;
        height: 8px;
        border-top: 2px solid #e46d9d;
        border-right: 2px solid #e46d9d;
        transition: all 0.3s linear;
        z-index: 2;
      }
      &:hover .ttl {
        color: var(--color-secondary);
      }
      &:hover::after {
        background: #e46d9d;
      }
      &:hover::before {
        border-top-color: #fff;
        border-right-color: #fff;
      }
    }
    .ttl {
      width: 100%;
      font-size: var(--font-md);
      line-height: var(--line-height-md);
      color: var(--color-text);
    }
  }
}

/* 記事ページ */
/* news_singlArea */
.news_singlArea .sub_inner {
	margin: 0 auto;
  max-width: 1080px;
  padding: 80px 40px 120px;
  .newsArea .ttlArea {
    padding-bottom: 10px;
    h1 {
      font-weight: var(--font-weight-mid);
      font-size: var(--font-lg);
      padding-bottom: 1.625rem;
      border-bottom: 1px solid #d8d8d8;
      color: var(--color-secondary);
      line-height: var(--line-height-md);
    }
    .date {
      padding-top: 30px;
      text-align: right;
      time {
        color: var(--color-quaternary);
      }
    }
  }
  .textArea p {
    padding-top: 20px;
    img {
      padding-top: 26px;
    }
  }
}

/* ページャー(pager) */
/* 一覧ページ */
/* pnavi */
.pnavi {
  margin-top: 40px;
}
.pnavi-pc {
  display: block;
}
.pnavi-pc ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  li {
  display: inline-block;
  }
}
.pnavi-pc a,
.pnavi-pc span {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #db4798;
  background: #fff;
  color: #db4798;
	font-size: var(--font-xs);
  font-weight: 700;
  text-decoration: none;
}
.pnavi-pc a:hover {
  background: #db4798;
  color: #fff;
}
.pnavi-pc .current {
  background: #db4798;
  color: #fff;
}
.pnavi-pc .prev,
.pnavi-pc .next {
  width: auto;
  padding: 0 12px;
  border-radius: 999px;
}
.pnavi-pc .dots {
  border: none;
  background: transparent;
  width: auto;
}

/* 記事ページ */
/* pnavi_s */
.pnavi_s {
  margin-top: 40px;
}
.post-nav__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.post-nav a {
  text-decoration: none;
  font-weight: var(--font-weight-semi-mid);
}
.post-nav__prev {
  text-align: left;
}
.post-nav__archive {
  text-align: center;
}
.post-nav__next {
  text-align: right;
}

@media screen and (max-width: 1000px) {
/* 一覧ページ */
/* newslistArea */
	.newslistArea .sub_inner {
		padding: 60px 6vw 100px;
	}
  .newslistArea .sub_inner .listArea ul li a .ttl {
    font-size: clamp(0.875rem, 0.757rem + 0.59vw, 1.125rem);
  }

/* 記事ページ */
/* news_singlArea */
	.news_singlArea .sub_inner {
		padding: 60px 6vw 100px;
    .newsArea .ttlArea h1 {
        font-size: clamp(1.125rem, 0.919rem + 1.03vw, 1.563rem);
        padding-bottom: 1.25rem;
      }
    }
	}

@media screen and (max-width: 768px) {
/* 一覧 */
/* newslistArea */
	.newslistArea .sub_inner .listArea ul li {
    padding: 30px 0;
    a {
      display: block;
      padding-right: 0;
      position: static;
      &::before,
      &::after {
        display: none;
        position: static;
      }
    }
  }

/* ページャー(pager) */
/* 一覧ページ */
/* pnavi */
  .pnavi-pc {
    display: none;
  }
  .pnavi-sp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-size: var(--font-xs-plus);
    font-weight: 600;
  }
  .pnavi-sp__prev,
  .pnavi-sp__next {
    padding: 8px 14px;
    border: 1px solid #db4798;
    border-radius: 999px;
    color: #db4798;
    text-decoration: none;
    white-space: nowrap;
  }
  .pnavi-sp__status {
    white-space: nowrap;
  }

/* 記事ページ */
/* pnavi_s */
  .post-nav__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    }
  .post-nav__prev,
  .post-nav__next {
    display: inline-block;
    margin: 0 10px;
  }
  .post-nav__archive {
    margin-top: 10px;
  }
}

@media screen and (max-width: 600px) {
/* 一覧 */
/* newslistArea */
	.newslistArea .sub_inner {
		padding-top: 48px;
    padding-bottom: 70px;
    ul li {
      padding: 26px 0px;
    }
	}

/* 記事ページ */
/* news_singlArea */
.news_singlArea .sub_inner {
  padding-top: 48px;
  padding-bottom: 70px;
  }
}
