@charset "UTF-8";
.p-news {
  display: block;
  position: relative;
  z-index: 0;
}
.p-news__container {
  width: 90%;
  max-width: 110rem;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 11rem 0 12.8rem;
}
@media screen and (max-width: 960px) {
  .p-news__container {
    width: 100%;
    padding: 4.8rem 0 6.5rem;
  }
}
.p-news__header {
  display: block;
  position: relative;
}
.p-news__inner {
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-news__inner {
    width: 92%;
    margin: 0 auto;
  }
}
.p-news__filter {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  margin-bottom: 5rem;
}
@media screen and (max-width: 960px) {
  .p-news__filter {
    gap: 1rem;
    margin-bottom: 3.8rem;
  }
}
.p-news__filter-item {
  display: block;
  position: relative;
}
.p-news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-news__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0.6rem;
  }
}
.p-news__list-item {
  display: block;
  position: relative;
}
.p-news__pagination {
  display: block;
  position: relative;
  margin-top: 4.5rem;
}
@media screen and (max-width: 960px) {
  .p-news__pagination {
    margin-top: 2.8rem;
  }
}
.p-news__single {
  width: 100%;
  max-width: 101rem;
  display: block;
  position: relative;
  margin: 0 auto;
  padding-top: 1rem;
}
@media screen and (max-width: 960px) {
  .p-news__single {
    width: 97.5%;
    padding-top: 0.5rem;
  }
}
.p-news__back {
  width: 44rem;
  display: block;
  position: relative;
  margin: 4rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-news__back {
    width: 28rem;
    margin-top: 2rem;
  }
}
.p-news__back-img {
  display: block;
  position: relative;
  transform: scale(1.0001);
}
@media (hover: hover) and (pointer: fine) {
  .p-news__back-img {
    transition: transform 0.3s var(--ease_out);
  }
  .p-news__back:hover .p-news__back-img {
    transform: scale(1.05);
    transition: transform 0.7s var(--ease_bounce);
  }
}

.p-news_filter {
  display: block;
  position: relative;
}
.p-news_filter__field {
  width: 27rem;
  height: 5rem;
  display: block;
  position: relative;
  color: var(--color-text);
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-news_filter__field {
    width: 23.5rem;
    height: 4rem;
  }
}
.p-news_filter__field::before {
  content: "";
  width: 2rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 1.8rem;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-news_filter__field::before {
    width: 1.5rem;
    left: 1.2rem;
  }
}
.--date .p-news_filter__field::before {
  background: url("../img/news/icon_calendar.svg") no-repeat center/contain;
}
.--category .p-news_filter__field::before {
  background: url("../img/news/icon_category.svg") no-repeat center/contain;
}
.p-news_filter__field::after {
  content: "";
  width: 1.2rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 1.5rem;
  background: url("../img/news/icon_arrow.svg") no-repeat center/contain;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-news_filter__field::after {
    width: 1rem;
  }
}
.p-news_filter__select {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5rem 2.5rem 0.5rem 4.8rem;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.05rem;
  font-family: var(--font-sans);
  vertical-align: center;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--color-text);
  outline-color: var(--color-purple-bg) !important;
}
@media screen and (max-width: 960px) {
  .p-news_filter__select {
    padding: 0.5rem 2rem 0.5rem 3.5rem;
    font-size: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-news_filter__select {
    cursor: pointer;
    transition: all 0.3s var(--ease_out);
  }
  .p-news_filter__select:hover {
    outline: 1px solid var(--color-purple-bg);
  }
}
.p-news_filter__select::-ms-expand {
  display: none;
}

.p-news_article {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  padding: 0.5rem 1rem 1rem;
  background-color: var(--color-news-bg);
  border-radius: 0.5rem;
  transform-origin: 50% 80%;
  transform: scale(1.0001);
}
@media screen and (max-width: 960px) {
  .p-news_article {
    padding: 0.5rem 0.5rem 0.5rem;
    border-radius: 0.25rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-news_article {
    transition: transform 0.3s var(--ease_out);
  }
  .p-news_article:hover {
    transform: scale(1.02);
    transition: transform 0.7s var(--ease_bounce);
  }
}
.p-news_article::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-news-line);
  border-radius: 0.5rem;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-news_article::before {
    border-radius: 0.25rem;
  }
}
.p-news_article::after {
  content: "";
  width: 28rem;
  max-width: 100%;
  height: 3.4rem;
  display: block;
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/common/memo/bg_memo-top.webp") repeat-x 0 0/3rem auto;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-news_article::after {
    width: 14rem;
    height: 1.7rem;
    top: 0.2rem;
    background-size: 1.5rem auto;
  }
}
.p-news_article__container {
  height: 100%;
  display: block;
  position: relative;
  padding: 2.5rem 0 3.6rem;
  border-radius: 0.5rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-news_article__container {
    padding: 1.2rem 0 1.8rem;
    border-radius: 0.25rem;
  }
}
.p-news_article__container::before {
  content: "";
  width: 100%;
  height: calc(100% - 0.5rem);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  border-left: 1px solid var(--color-news-line);
  border-right: 1px solid var(--color-news-line);
  border-bottom: 1px solid var(--color-news-line);
  border-radius: 0.5rem;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-news_article__container::before {
    height: calc(100% - 0.3rem);
    border-radius: 0.25rem;
  }
}
.p-news_article__container::after {
  content: "";
  width: 100%;
  height: calc(100% - 1rem);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  border-left: 1px solid var(--color-news-line);
  border-right: 1px solid var(--color-news-line);
  border-bottom: 1px solid var(--color-news-line);
  border-radius: 0.5rem;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-news_article__container::after {
    height: calc(100% - 0.6rem);
    border-radius: 0.25rem;
  }
}
.p-news_article__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  z-index: -2;
  border-radius: 0.5rem;
}
@media screen and (max-width: 960px) {
  .p-news_article__bg {
    border-radius: 0.25rem;
  }
}
.p-news_article__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-news-line);
  border-radius: 0.5rem;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-news_article__bg::before {
    border-radius: 0.25rem;
  }
}
.p-news_article__thumb {
  width: calc(100% - 2px);
  display: block;
  position: relative;
  margin: 0 auto 1.8rem;
}
@media screen and (max-width: 960px) {
  .p-news_article__thumb {
    margin-bottom: 1.2rem;
  }
}
.p-news_article__thumb-img {
  width: 100%;
  padding-top: 55.3097345133%;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-news_article__thumb-img img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-news_article__header {
  width: calc(100% - 4.5rem);
  display: block;
  position: relative;
  margin: 0 auto 0.8rem;
}
@media screen and (min-width: 961px) {
  .p-news_article__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.9rem;
  }
}
@media screen and (max-width: 960px) {
  .p-news_article__header {
    width: calc(100% - 2rem);
    margin-bottom: 0.4rem;
  }
}
.p-news_article__date {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.08rem;
  color: var(--color-news-purple-text);
}
@media screen and (max-width: 960px) {
  .p-news_article__date {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }
}
.p-news_article__category {
  display: block;
  position: relative;
}
.p-news_article__category-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 10.5rem;
  min-height: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -0.3rem;
  padding: 0.2rem 1rem;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-news-purple-bg);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-news_article__category-text {
    min-width: 6.6rem;
    min-height: 1.4rem;
    font-size: 0.9rem;
    padding: 0.2rem 0.5rem;
  }
}
.p-news_article__inner {
  width: calc(100% - 4.5rem);
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-news_article__inner {
    width: calc(100% - 2rem);
  }
}
.p-news_article__title {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05rem;
  color: var(--color-news-text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-news_article__title {
    font-size: 1.15rem;
    line-height: 1.55;
    -webkit-line-clamp: 4;
  }
}

.p-news_single {
  width: 100%;
  display: block;
  position: relative;
  padding: 0.5rem 1rem 1rem;
  background-color: var(--color-news-bg);
  border-radius: 0.5rem;
}
@media screen and (max-width: 960px) {
  .p-news_single {
    padding: 0.5rem 0.5rem 0.5rem;
    border-radius: 0.25rem;
  }
}
.p-news_single::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-news-line);
  border-radius: 0.5rem;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-news_single::before {
    border-radius: 0.25rem;
  }
}
.p-news_single::after {
  content: "";
  width: 94rem;
  max-width: 100%;
  height: 3.4rem;
  display: block;
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/common/memo/bg_memo-top.webp") repeat-x 0 0/3rem auto;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-news_single::after {
    width: 31rem;
    height: 1.7rem;
    top: 0.2rem;
    background-size: 1.5rem auto;
  }
}
.p-news_single__container {
  height: 100%;
  display: block;
  position: relative;
  padding: 5rem 0 6.5rem;
  border-radius: 0.5rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-news_single__container {
    padding: 2.5rem 0 4rem;
    border-radius: 0.25rem;
  }
}
.p-news_single__container::before {
  content: "";
  width: 100%;
  height: calc(100% - 0.5rem);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  border-left: 1px solid var(--color-news-line);
  border-right: 1px solid var(--color-news-line);
  border-bottom: 1px solid var(--color-news-line);
  border-radius: 0.5rem;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-news_single__container::before {
    height: calc(100% - 0.3rem);
    border-radius: 0.25rem;
  }
}
.p-news_single__container::after {
  content: "";
  width: 100%;
  height: calc(100% - 1rem);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  border-left: 1px solid var(--color-news-line);
  border-right: 1px solid var(--color-news-line);
  border-bottom: 1px solid var(--color-news-line);
  border-radius: 0.5rem;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-news_single__container::after {
    height: calc(100% - 0.6rem);
    border-radius: 0.25rem;
  }
}
.p-news_single__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  z-index: -2;
  border-radius: 0.5rem;
}
@media screen and (max-width: 960px) {
  .p-news_single__bg {
    border-radius: 0.25rem;
  }
}
.p-news_single__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-news-line);
  border-radius: 0.5rem;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-news_single__bg::before {
    border-radius: 0.25rem;
  }
}
.p-news_single__header {
  width: 90%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin: 0 auto 4.6rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 960px) {
  .p-news_single__header {
    width: calc(100% - 4.5rem);
    padding-bottom: 2.5rem;
    margin-bottom: 2.8rem;
  }
}
.p-news_single__header::before {
  content: "";
  width: 100%;
  height: 2.8rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../img/common/line_deco.webp") repeat-x 50% 0/3rem auto;
}
@media screen and (max-width: 960px) {
  .p-news_single__header::before {
    height: 1.4rem;
    background-size: 1.5rem auto;
  }
}
.p-news_single__date {
  flex: 1 1 0;
  min-width: 0;
  display: block;
  position: relative;
  font-size: 2.5rem;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.08rem;
  color: var(--color-news-purple-text);
}
@media screen and (max-width: 960px) {
  .p-news_single__date {
    font-size: 1.2rem;
  }
}
.p-news_single__category {
  display: block;
  position: relative;
}
.p-news_single__category-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 10.5rem;
  min-height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -0.3rem;
  padding: 0.2rem 1rem;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-news-purple-bg);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-news_single__category-text {
    top: -0.1rem;
    min-width: 6.6rem;
    min-height: 1.4rem;
    font-size: 0.9rem;
    padding: 0.2rem 0.5rem;
  }
}
.p-news_single__title {
  width: 100%;
  display: block;
  position: relative;
  margin-top: 1rem;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 960px) {
  .p-news_single__title {
    margin-top: 0.5rem;
    font-size: 2.2rem;
    line-height: 1.3;
  }
}
.p-news_single__inner {
  width: 90%;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-news_single__inner {
    width: calc(100% - 4.5rem);
  }
}
.p-news_single__text {
  display: block;
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8em;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 960px) {
  .p-news_single__text {
    font-size: 1.4rem;
    line-height: 2.6rem;
  }
}
.p-news_single__text a {
  color: var(--color-purple-text);
}
@media (hover: hover) and (pointer: fine) {
  .p-news_single__text a:hover, .p-news_single__text a:focus-visible {
    text-decoration: underline;
  }
}
.p-news_single__text h2 {
  font-size: 2em;
  color: var(--color-news-purple-text);
  margin-bottom: 2rem;
}
.p-news_single__text h3 {
  position: relative;
  font-size: 1.75em;
  color: var(--color-news-purple-text);
  margin-bottom: 2rem;
  padding-left: 1.4em;
}
.p-news_single__text h3::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  vertical-align: bottom;
  background: url("../img/news/icon_title.svg") no-repeat center/contain;
}
.p-news_single__text h4 {
  position: relative;
  font-size: 1.5em;
  color: var(--color-news-purple-text);
  margin-bottom: 2rem;
  padding-left: 1.4em;
}
.p-news_single__text h4::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  vertical-align: bottom;
  background: url("../img/news/icon_title.svg") no-repeat center/contain;
}
@media screen and (min-width: 961px) {
  .p-news_single__text .pc-column-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-news_single__text .sp-column-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
@media screen and (min-width: 961px) {
  .p-news_single__text .pc-column-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-news_single__text .sp-column-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media screen and (min-width: 961px) {
  .p-news_single__text .pc-column-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-news_single__text .sp-column-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media screen and (min-width: 961px) {
  .p-news_single__text .pc-column-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-news_single__text .sp-column-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
@media screen and (min-width: 961px) {
  .p-news_single__text .pc-column-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-news_single__text .sp-column-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}
@media screen and (min-width: 961px) {
  .p-news_single__text .pc-column-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-news_single__text .sp-column-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
}
@media screen and (min-width: 961px) {
  .p-news_single__text .pc-column-7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-news_single__text .sp-column-7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
  }
}
@media screen and (min-width: 961px) {
  .p-news_single__text .pc-column-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-news_single__text .sp-column-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
  }
}
@media screen and (min-width: 961px) {
  .p-news_single__text .pc-column-9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-news_single__text .sp-column-9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1rem;
  }
}
@media screen and (min-width: 961px) {
  .p-news_single__text .pc-column-10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-news_single__text .sp-column-10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 1rem;
  }
}
.p-news_single__text .align-left {
  text-align: left;
}
.p-news_single__text .align-center {
  text-align: center;
}
.p-news_single__text .align-right {
  text-align: right;
}
.p-news_single__text .fw-bold {
  font-weight: 700;
}
.p-news_single__text .fw-black {
  font-weight: 900;
}
.p-news_single__text .mt-0 {
  margin-top: 0rem;
}
.p-news_single__text .mt-10 {
  margin-top: 1rem;
}
.p-news_single__text .mt-20 {
  margin-top: 2rem;
}
.p-news_single__text .mt-30 {
  margin-top: 3rem;
}
.p-news_single__text .mt-40 {
  margin-top: 4rem;
}
.p-news_single__text .mt-50 {
  margin-top: 5rem;
}
.p-news_single__text .mt-60 {
  margin-top: 6rem;
}
.p-news_single__text .mt-70 {
  margin-top: 7rem;
}
.p-news_single__text .mt-80 {
  margin-top: 8rem;
}
.p-news_single__text .mt-90 {
  margin-top: 9rem;
}
.p-news_single__text .mt-100 {
  margin-top: 10rem;
}
.p-news_single__text .mb-0 {
  margin-bottom: 0rem;
}
.p-news_single__text .mb-10 {
  margin-bottom: 1rem;
}
.p-news_single__text .mb-20 {
  margin-bottom: 2rem;
}
.p-news_single__text .mb-30 {
  margin-bottom: 3rem;
}
.p-news_single__text .mb-40 {
  margin-bottom: 4rem;
}
.p-news_single__text .mb-50 {
  margin-bottom: 5rem;
}
.p-news_single__text .mb-60 {
  margin-bottom: 6rem;
}
.p-news_single__text .mb-70 {
  margin-bottom: 7rem;
}
.p-news_single__text .mb-80 {
  margin-bottom: 8rem;
}
.p-news_single__text .mb-90 {
  margin-bottom: 9rem;
}
.p-news_single__text .mb-100 {
  margin-bottom: 10rem;
}
.p-news_single__text a {
  color: var(--color-pink);
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-news_single__text a:hover {
    text-decoration: none;
  }
}
.p-news_single__text img {
  max-width: 100%;
  height: auto !important;
  position: relative;
}
.p-news_single__text iframe {
  max-width: 100%;
}
@supports (aspect-ratio: 16/9) {
  .p-news_single__text iframe {
    width: 100%;
    display: block;
    height: auto !important;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 960px) {
  .p-news_single__text iframe {
    max-width: 100%;
  }
}

.oubo_btn {width:250px;margin:20px 0 0 3%;}
.oubo_btn a{color:#FFF;border-radius:30px;background-color:var(--color-pink);width:auto;padding:10px 30px;}
.oubo_btn a:hover{opacity:0.6;}

@media screen and (max-width: 960px) {
.oubo_btn {width:60%;margin:0 auto;}
.oubo_btn a{color:#FFF;border-radius:30px;background-color:var(--color-pink);width:auto;padding:10px 30px;}
.oubo_btn a:hover{opacity:0.6;}
}