@charset "UTF-8";
/**
 * News (custom post type: news / taxonomy: news_cat)
 *
 * 出力先   : assets/css/news.css （news 系画面のみ読み込み）
 * コンパイル: npx sass assets/scss/news.scss assets/css/news.css --no-source-map --style=expanded
 *
 * 共通パーツ（.news-card / .recruit / .infinite-scroll / .l-container / .c-btn）は
 * assets/css/style.css の実装をそのまま利用し、ここでは news 配下のスコープでのみ調整しています。
 */
/* SP カンプ幅 640px 基準の可変値 */
/* ==========================================================================
   Page root
   ========================================================================== */
.p-news {
  --gutter: 40px;
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  overflow-x: hidden;
}
.p-news img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .p-news {
    --gutter: calc(30 / 6.4 * 1vw);
    font-size: max(16px, calc(16 / 6.4 * 1vw));
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.p-news-hero {
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.p-news-hero__marquee {
  position: absolute;
  top: 6%;
  left: 0;
  width: 100%;
  z-index: -1;
  pointer-events: none;
  font-family: var(--font-en);
}
.p-news-hero__news-word {
  font-family: var(--font-en);
  font-size: 130px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  color: #f2f2f2;
}
.p-news-hero__label {
  padding-right: 40px;
  text-align: right;
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #333;
}
.p-news-hero__title {
  margin-left: 7vw;
  font-family: var(--font-heading);
  font-size: 42px;
  letter-spacing: 0.18em;
  line-height: 1.2;
  color: var(--color-text);
}
.p-news-hero__breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 20px;
  margin-left: 7vw;
  font-size: 14px;
  color: var(--color-text);
}
.p-news-hero__breadcrumb::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(45deg, #596ef2, #1e56ae);
}
.p-news-hero__breadcrumb a {
  color: inherit;
}
.p-news-hero__gallery {
  position: relative;
  width: calc(100% - 116px);
  margin: 82px auto 0;
}
.p-news-hero__gallery img {
  display: block;
  width: 100%;
  height: auto;
}
.p-news-hero__lead {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  max-width: 720px;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.75;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.p-news-hero {
  /* カテゴリー絞り込み（company hero のアンカーリストと同構成） */
  /* 項目は 1 行のため、パネル内で天地中央に置く */
}
.p-news-hero__anchors {
  position: absolute;
  right: 3%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
  width: 83%;
}

/* 白パネル（company-deco01.png）— company hero と同構成 */
.hero-sub-deco02 {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: 37.3%;
  aspect-ratio: 484/123;
  z-index: 1;
}

/* ==========================================================================
   Category filter (anchor-list)
   ========================================================================== */
.anchor-list__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 26px;
}

.anchor-list__list li {
  width: 33.333%;
}

.anchor-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text);
}
.anchor-list__item::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: url(../images/company/d-arrow-bg.png) no-repeat center/contain;
}
.anchor-list__item:hover {
  color: var(--color-main);
}
.anchor-list__item.is-current {
  font-weight: 700;
  color: var(--color-main);
}

/* ==========================================================================
   List
   ========================================================================== */
.p-news-list {
  position: relative;
  padding-block: 40px 120px;
}
.p-news-list__inner {
  position: relative;
  z-index: 2;
}
.p-news-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 48px;
}
.p-news-list {
  /* 既存 .news-card コンポーネントのグリッド用調整 */
}
.p-news-list .news-card {
  min-width: 0;
  height: 100%;
}
.p-news-list .news-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.p-news-list .news-card__link:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 24px rgba(30, 86, 174, 0.1);
          box-shadow: 0 10px 24px rgba(30, 86, 174, 0.1);
}
.p-news-list .news-card__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-news-list .news-card__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-news-list__empty {
  padding-block: 60px;
  text-align: center;
}
.p-news-list__deco-circle {
  position: absolute;
  left: -80px;
  bottom: 60px;
  z-index: 0;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(126, 169, 232, 0.5), rgba(200, 224, 248, 0.2));
  pointer-events: none;
}
.p-news-list__deco-circle::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: 10px;
  width: 130px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(30, 86, 174, 0.2);
}
.p-news-list__deco-person {
  position: absolute;
  right: 2%;
  bottom: 80px;
  z-index: 1;
  width: 170px;
  pointer-events: none;
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.p-news-pagination {
  margin-top: 72px;
}
.p-news-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.p-news-pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-main);
  border-radius: 50%;
  background-color: var(--color-white);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-main);
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.p-news-pagination .page-numbers:hover {
  background-color: var(--color-main);
  color: var(--color-white);
}
.p-news-pagination .page-numbers.current {
  background-color: var(--color-main);
  color: var(--color-white);
}
.p-news-pagination .page-numbers.dots {
  border-color: transparent;
  background-color: transparent;
}

/* ==========================================================================
   Single
   ========================================================================== */
/* セクション見出し（company の c-sec-head と同構成） */
.c-sec-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid #dcdfe3;
}
.c-sec-head__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}
.c-sec-head__label::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(45deg, #9ba7f5, #1e56ae);
}
.c-sec-head__en {
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #333;
}

.p-news-single {
  position: relative;
  padding-block: 40px 90px;
}
.p-news-single__meta {
  margin-top: 32px;
}
.p-news-single__title {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}
.p-news-single {
  /* 画像スライダー */
}
.p-news-single__gallery {
  position: relative;
  margin-top: 40px;
}
.p-news-single__gallery-viewport {
  overflow-x: auto;
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}
.p-news-single__gallery-viewport::-webkit-scrollbar {
  display: none;
}
.p-news-single__gallery-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-inline: 15%;
}
.p-news-single__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  background-color: #f2f2f2;
  border-radius: 16px;
  overflow: hidden;
}
.p-news-single__slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-news-single__slide--placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 16/9;
  padding: 8%;
}
.p-news-single__slide--placeholder img {
  width: auto;
  max-width: 60%;
  aspect-ratio: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-news-single__gallery-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-top: 24px;
  /* 既存 .news__slider-arrow を流用しつつ、デザインに合わせて白丸に統一 */
}
.p-news-single__gallery-controls .news__slider-arrow--next {
  background-color: var(--color-white);
  color: var(--color-main);
}
.p-news-single__body {
  margin-top: 48px;
  font-size: 16px;
  line-height: 2;
}
.p-news-single__body > * + * {
  margin-top: 1.5em;
}
.p-news-single__body h2 {
  font-size: 24px;
  line-height: 1.6;
  padding-bottom: 12px;
  border-bottom: 1px solid #dcdfe3;
}
.p-news-single__body h3 {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-main);
}
.p-news-single__body a {
  color: var(--color-main);
  text-decoration: underline;
}
.p-news-single__body img {
  border-radius: 16px;
}
.p-news-single__body ul,
.p-news-single__body ol {
  padding-left: 1.5em;
}
.p-news-single__body ul {
  list-style: disc;
}
.p-news-single__body ol {
  list-style: decimal;
}
.p-news-single__body li + li {
  margin-top: 0.5em;
}
.p-news-single__body blockquote {
  margin: 0;
  padding: 20px 24px;
  border-left: 4px solid var(--color-main);
  background-color: #f6f8fb;
}
.p-news-single__foot {
  margin-top: 64px;
  text-align: center;
}
.p-news-single__back {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(100%, 360px);
  padding: 22px 64px 22px 40px;
  border-radius: 12px;
  font-size: 16px;
}
.p-news-single__back::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(../images/top/arrow-b01.png) no-repeat center/contain;
}

/* ==========================================================================
   Related news
   ========================================================================== */
.p-news-related {
  position: relative;
  padding-bottom: 120px;
}
.p-news-related__inner {
  position: relative;
  z-index: 2;
}
.p-news-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 48px;
}
.p-news-related .news-card {
  min-width: 0;
  height: 100%;
}
.p-news-related .news-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.p-news-related .news-card__link:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 24px rgba(30, 86, 174, 0.1);
          box-shadow: 0 10px 24px rgba(30, 86, 174, 0.1);
}
.p-news-related .news-card__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-news-related .news-card__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-news-related__deco-circle {
  position: absolute;
  left: -80px;
  bottom: 60px;
  z-index: 0;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(126, 169, 232, 0.5), rgba(200, 224, 248, 0.2));
  pointer-events: none;
}
.p-news-related__deco-circle::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: 10px;
  width: 130px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(30, 86, 174, 0.2);
}
.p-news-related__deco-person {
  position: absolute;
  right: 1%;
  bottom: 96px;
  z-index: 3;
  width: 160px;
  pointer-events: none;
}

/* ==========================================================================
   Infinite scroll modifier
   ========================================================================== */
.infinite-scroll__wrap--news {
  -webkit-animation: infinite-scroll-left 14s linear infinite;
          animation: infinite-scroll-left 14s linear infinite;
}

.infinite-scroll__track--news {
  gap: 0.35em;
  padding-right: 0.35em;
}

/* ==========================================================================
   Tablet / SP
   ========================================================================== */
@media (max-width: 1024px) {
  .p-news-hero {
    margin-top: 70px;
    padding-top: calc(20 / 6.4 * 1vw);
    padding-bottom: calc(50 / 6.4 * 1vw);
  }
  .p-news-hero__marquee {
    top: calc(60 / 6.4 * 1vw);
  }
  .p-news-hero__news-word {
    font-size: calc(150 / 6.4 * 1vw);
  }
  .p-news-hero__label {
    padding-right: 18px;
    font-size: max(16px, calc(16 / 6.4 * 1vw));
  }
  .p-news-hero__title {
    margin-left: var(--gutter);
    font-size: clamp(24px, calc(42 / 6.4 * 1vw), 42px);
  }
  .p-news-hero__breadcrumb {
    display: none;
  }
  .p-news-hero__gallery {
    width: calc(100% - 36px);
    margin-top: calc(80 / 6.4 * 1vw);
  }
  .p-news-hero__lead {
    position: static;
    max-width: none;
    margin-top: calc(30 / 6.4 * 1vw);
    color: var(--color-text);
    font-size: max(16px, calc(16 / 6.4 * 1vw));
    text-shadow: none;
  }
  .p-news-hero__anchors {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: auto;
    margin-top: calc(24 / 6.4 * 1vw);
    padding: 0;
    background: none;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .hero-sub-deco02 {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 36px);
    margin: 0 auto;
  }
  .hero-sub-deco02 img {
    display: none;
  }
  .anchor-list__list {
    display: block;
  }
  .anchor-list__list li {
    width: 100%;
  }
  .anchor-list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding-block: calc(22 / 6.4 * 1vw);
    border-bottom: 1px solid #dcdfe3;
    font-size: max(16px, calc(16 / 6.4 * 1vw));
    white-space: normal;
  }
  .anchor-list__item::before {
    width: calc(56 / 6.4 * 1vw);
    height: calc(56 / 6.4 * 1vw);
  }
  .p-news-single {
    padding-block: calc(40 / 6.4 * 1vw) calc(60 / 6.4 * 1vw);
  }
  .p-news-single__title {
    font-size: clamp(16px, calc(24 / 6.4 * 1vw), 24px);
  }
}
@media (max-width: 767px) {
  .p-news-list {
    padding-block: calc(60 / 6.4 * 1vw) calc(90 / 6.4 * 1vw);
  }
  .p-news-list__grid {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: calc(14 / 6.4 * 1vw);
       -moz-column-gap: calc(14 / 6.4 * 1vw);
            column-gap: calc(14 / 6.4 * 1vw);
    row-gap: calc(30 / 6.4 * 1vw);
  }
  .p-news-list .news-card__body {
    padding: calc(16 / 6.4 * 1vw);
  }
  .p-news-list .news-card__title {
    font-size: max(13px, calc(15 / 6.4 * 1vw));
  }
  .p-news-list__deco-circle {
    left: calc(-70 / 6.4 * 1vw);
    bottom: calc(10 / 6.4 * 1vw);
    width: calc(230 / 6.4 * 1vw);
  }
  .p-news-list__deco-circle::after {
    right: calc(-40 / 6.4 * 1vw);
    bottom: calc(10 / 6.4 * 1vw);
    width: calc(110 / 6.4 * 1vw);
  }
  .p-news-list__deco-person {
    right: 0;
    bottom: calc(20 / 6.4 * 1vw);
    width: calc(150 / 6.4 * 1vw);
  }
  .p-news-pagination {
    margin-top: calc(56 / 6.4 * 1vw);
  }
  .p-news-pagination .page-numbers {
    width: calc(56 / 6.4 * 1vw);
    height: calc(56 / 6.4 * 1vw);
    font-size: max(14px, calc(18 / 6.4 * 1vw));
  }
  .p-news-single__meta {
    margin-top: calc(28 / 6.4 * 1vw);
  }
  .p-news-single__gallery {
    margin-top: calc(30 / 6.4 * 1vw);
  }
  .p-news-single {
    /* SP は 1 枚見せ＋左右に矢印をオーバーレイ */
  }
  .p-news-single__gallery-track {
    gap: calc(14 / 6.4 * 1vw);
    padding-inline: 0;
  }
  .p-news-single__slide {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .p-news-single__gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 0;
    padding-inline: calc(16 / 6.4 * 1vw);
    pointer-events: none;
  }
  .p-news-single__gallery-controls .news__slider-arrow {
    width: calc(56 / 6.4 * 1vw);
    height: calc(56 / 6.4 * 1vw);
    pointer-events: auto;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  }
  .p-news-single__gallery-controls .news__slider-arrow::before {
    width: calc(12 / 6.4 * 1vw);
    height: calc(12 / 6.4 * 1vw);
  }
  .p-news-single__body {
    margin-top: calc(34 / 6.4 * 1vw);
    font-size: max(15px, calc(16 / 6.4 * 1vw));
  }
  .p-news-single__foot {
    margin-top: calc(50 / 6.4 * 1vw);
  }
  .p-news-single__back {
    width: 100%;
    padding: calc(26 / 6.4 * 1vw) calc(70 / 6.4 * 1vw) calc(26 / 6.4 * 1vw) calc(30 / 6.4 * 1vw);
    font-size: max(15px, calc(16 / 6.4 * 1vw));
  }
  .p-news-single__back::after {
    right: calc(24 / 6.4 * 1vw);
    width: calc(44 / 6.4 * 1vw);
    height: calc(44 / 6.4 * 1vw);
  }
  .p-news-related {
    padding-bottom: calc(90 / 6.4 * 1vw);
    /* SP は横スクロールで見切れ表示 */
  }
  .p-news-related__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: calc(14 / 6.4 * 1vw);
    overflow-x: auto;
    -webkit-scroll-snap-type: x mandatory;
        -ms-scroll-snap-type: x mandatory;
            scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    margin-inline: calc(var(--gutter-sp) * -1);
    padding-inline: var(--gutter-sp);
  }
  .p-news-related__grid::-webkit-scrollbar {
    display: none;
  }
  .p-news-related__grid .news-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .p-news-related .news-card__body {
    padding: calc(16 / 6.4 * 1vw);
  }
  .p-news-related .news-card__title {
    font-size: max(13px, calc(15 / 6.4 * 1vw));
  }
  .p-news-related__deco-circle {
    left: calc(-70 / 6.4 * 1vw);
    bottom: calc(10 / 6.4 * 1vw);
    width: calc(230 / 6.4 * 1vw);
  }
  .p-news-related__deco-circle::after {
    right: calc(-40 / 6.4 * 1vw);
    bottom: calc(10 / 6.4 * 1vw);
    width: calc(110 / 6.4 * 1vw);
  }
  .p-news-related {
    /* カード列の上端に重なる位置（カンプ準拠） */
  }
  .p-news-related__deco-person {
    right: 0;
    top: calc(-70 / 6.4 * 1vw);
    bottom: auto;
    width: calc(170 / 6.4 * 1vw);
  }
}/*# sourceMappingURL=news.css.map */