/* p-top.css — TOP専用（メインCC） */

/* ---------- FV（固定・3テーマ） ---------- */
.fv {
  position: fixed;
  top: 0; left: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  height: 100svh;
  overflow: hidden;
  color: #fff;
  background-color: #2f8fd8;
  transition: background-color .8s var(--ease);
}
.fv[data-theme="orange"] { background-color: #ff9a1f; }
.fv[data-theme="pink"] { background-color: #f65e82; }
.fv__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 34px 34px;
  background-position: top 0 left calc(50% + 17px);
  opacity: .3;
  pointer-events: none;
}

/* アウトライン英字（3行・1文字ずつ立ち上がる） */
.fv__heading {
  position: absolute;
  left: 50%; top: 50%;
  z-index: 2;
  width: 30.125%;
  min-width: 392px;
  aspect-ratio: 482 / 432;
  transform: translate(-114.5%, -66%);
}
.fv__slogan { position: absolute; inset: 0; display: grid; grid-template-rows: 1fr 1fr 1fr; row-gap: 6%; visibility: hidden; }
.fv__slogan.is-current { visibility: visible; }
.fv__row { display: flex; align-items: flex-end; clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); }
.fv__slogan.is-current .fv__row { animation: fvRow 4s var(--ease) forwards; }
.fv__ch {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 96px;
  font-weight: 800;
  line-height: .95;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  transform: translateY(110%);
}
.fv__slogan.is-current .fv__ch { animation: fvCh 1s var(--ease) forwards; animation-delay: calc(var(--i) * .1s); }
@keyframes fvRow {
  0% { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); }
  1% { clip-path: polygon(0 -40%, 100% -40%, 100% 100%, 0 100%); }
  80% { clip-path: polygon(0 -40%, 100% -40%, 100% 100%, 0 100%); }
  100% { clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); }
}
@keyframes fvCh {
  0%, 10% { transform: translateY(110%); }
  50% { transform: translateY(-40%); }
  90%, 100% { transform: translateY(0); }
}

/* 和文コピー（左→右ワイプ） */
.fv__copy {
  position: absolute;
  left: 50%; top: 50%;
  z-index: 2;
  width: 35.6875%;
  min-width: 464px;
  aspect-ratio: 571 / 119;
  transform: translate(-96.25%, 156.25%);
}
.fv__copy p {
  position: absolute; left: 0; top: 0;
  width: max-content;
  max-width: 100%;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: .05em;
  visibility: hidden;
  animation: floatXl 8s ease-in-out infinite;
}
.fv__copy p.is-current { visibility: visible; }
.fv__copy p span { display: inline-block; clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
.fv__copy p.is-current span { animation: fvCopy 4s var(--ease) forwards; }
@keyframes fvCopy {
  0% { clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
  20% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  80% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  100% { clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); }
}
@keyframes floatXl { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-10px); } }
@keyframes floatXr { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(10px); } }

/* 人物3体（吹き出しマスク） */
.fv__persons {
  position: absolute;
  left: 50%; top: 50%;
  z-index: 2;
  width: 31.5%;
  min-width: 410px;
  height: 72%;
  min-height: 527px;
  transform: translate(-20%, -47%);
}
.fv__person { position: absolute; left: 50%; top: 50%; aspect-ratio: 338 / 572; transition: transform .8s var(--ease); }
.fv__person--1 { width: 48.6%; z-index: 3; transform: translate(-55%, -24%); }
.fv__person--2 { width: 43.85%; z-index: 2; transform: translate(-114%, -83%); }
.fv__person--3 { width: 44%; z-index: 1; transform: translate(14%, -60%); }
.fv__shadow { position: absolute; inset: 0; background: var(--ink); clip-path: url(#bubble-tall); transform: translate(8px, 8px); }
.fv__mask { position: absolute; inset: 0; overflow: hidden; background: #0d6fc2; clip-path: url(#bubble-tall); transition: background-color .8s var(--ease); }
.fv[data-theme="orange"] .fv__mask { background: #ffd60a; }
.fv[data-theme="pink"] .fv__mask { background: #ea3a6c; }
.fv__mask img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: 0; visibility: hidden; transition: opacity .6s var(--ease), visibility .6s; }
.fv__mask img.is-current { opacity: 1; visibility: visible; }
.fv__line { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: #fff; stroke-width: 5; pointer-events: none; }
.fv__person--flip .fv__shadow { transform: scaleX(-1) translate(-8px, 8px); }
.fv__person--flip .fv__mask, .fv__person--flip .fv__line { transform: scaleX(-1); }
.fv__person--flip .fv__mask img { transform: scaleX(-1); }

/* 縦書き四字熟語・熟語グリッド・相関図・英字帯 */
.fv__vertical { position: absolute; top: 13.67%; left: 4.125%; z-index: 1; height: 60%; animation: floatXr 8s ease-in-out infinite; }
.fv__vertical p {
  position: absolute; left: 0; top: 0;
  writing-mode: vertical-rl;
  font-size: 108px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .05em;
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
  opacity: .4;
  visibility: hidden;
}
.fv__vertical p.is-current { visibility: visible; }
.fv__vertical p span { display: inline-block; clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); }
.fv__vertical p.is-current span { animation: fvVert 3.5s var(--ease) forwards; }
@keyframes fvVert {
  0% { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); }
  20% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  80% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  100% { clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); }
}
.fv__idiom {
  position: absolute;
  top: 52.9%; right: 4.9%;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 12px;
  width: 175px;
  opacity: .4;
  animation: floatXr 8s ease-in-out infinite;
}
.fv__idiom span { font-size: 78px; font-weight: 500; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px #fff; text-align: center; }
.fv__diagram { position: absolute; top: 19.8%; right: 4.5%; z-index: 1; height: 28.2%; width: auto; aspect-ratio: 278 / 254; opacity: .4; animation: floatXl 8s ease-in-out infinite; }
.fv__loop {
  position: absolute;
  left: 0; top: 86.1%;
  z-index: 3;
  width: 100%;
  font-family: var(--font-en);
  font-size: 92px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .75);
  pointer-events: none;
}
.fv__loop .c-marquee__track > span { padding-right: 64px; }

@media (max-width: 1200px) {
  .fv__persons { min-width: 380px; min-height: 490px; transform: translate(-12.5%, -47%); }
  .fv__copy p { font-size: 38px; }
  .fv__vertical { left: 20px; }
}
@media (max-width: 1024px) {
  .fv__heading { width: 38.28%; min-width: 0; }
  .fv__ch { font-size: 72px; }
  .fv__copy { width: 45.3%; min-width: 0; }
  .fv__copy p { font-size: 34px; }
  .fv__persons { width: 49.2%; min-width: 360px; min-height: 460px; }
  .fv__vertical, .fv__idiom { display: none; }
  .fv__loop { font-size: 64px; }
}
@media (max-width: 767px) {
  .fv__heading { width: 198px; aspect-ratio: 482 / 432; transform: translate(-87%, 6%); }
  .fv__ch { font-size: 44px; -webkit-text-stroke-width: 1.2px; }
  .fv__copy { width: 354px; max-width: calc(100% - 32px); height: 95px; aspect-ratio: auto; transform: translate(-51%, 213%); }
  .fv__copy p { font-size: 26px; animation-name: floatXr; }
  .fv__persons { width: 243px; min-width: 0; height: 364px; min-height: 0; transform: translate(-24%, -69%); }
  .fv__person--1 { width: 127px; transform: translate(-36%, -18%); }
  .fv__person--2 { width: 115px; transform: translate(-106%, -89%); }
  .fv__person--3 { width: 117px; transform: translate(3%, -68%); }
  .fv__shadow { transform: translate(4px, 4px); }
  .fv__person--flip .fv__shadow { transform: scaleX(-1) translate(-4px, 4px); }
  .fv__line { stroke-width: 6; }
  .fv__diagram { height: 21%; top: 63.5%; right: auto; left: 60.3%; }
  .fv__loop { top: 93%; font-size: 40px; }
  .fv__loop .c-marquee__track > span { padding-right: 32px; }
}

/* 撮影モードは完了状態で固定 */
html.is-shot .fv__slogan.is-current .fv__row, html.is-shot .fv__row { clip-path: none !important; animation: none !important; }
html.is-shot .fv__slogan.is-current .fv__ch, html.is-shot .fv__ch { transform: none !important; animation: none !important; }
html.is-shot .fv__copy p.is-current span, html.is-shot .fv__vertical p.is-current span { clip-path: none !important; animation: none !important; }
html.is-shot .fv__copy p, html.is-shot .fv__vertical, html.is-shot .fv__idiom, html.is-shot .fv__diagram { animation: none; }

/* ---------- 本文面 ---------- */
.top-body {
  position: relative;
  z-index: 1;
  margin-top: 100vh;
  margin-top: calc(var(--vh, 1vh) * 100);
  margin-top: 100svh;
  overflow-x: clip;
}

/* 理念 */
.concept { position: relative; z-index: 3; padding: 340px 0 360px; text-align: center; }
.concept__title { font-size: 44px; font-weight: 600; line-height: 1.674; letter-spacing: .05em; }
.concept__key { position: relative; z-index: 1; display: inline-block; margin: 0 6px; padding: 0 10px; color: #fff; font-size: 48px; line-height: 1.2; }
.concept__key > span { position: relative; z-index: 1; }
.concept__blob { position: absolute; left: 50%; top: 50%; z-index: 0; width: calc(100% + 36px); height: 74px; transform: translate(-50%, -50%) rotate(-2deg); }
.concept__copy { margin-top: 42px; line-height: 1.95; }
.concept__copy + .concept__copy { margin-top: 14px; }
.concept .c-btn { margin-top: 36px; }
.concept__photo { position: absolute; left: 0; right: 0; bottom: -190px; z-index: 2; width: calc(100% - 40px); max-width: 1093px; margin: 0 auto; border-radius: 40px; overflow: hidden; background: #fff; }
.concept__photo img { width: 100%; height: auto; }
@media (max-width: 1024px) { .concept { padding: 200px 0 300px; } .concept__title { font-size: 36px; } .concept__key { font-size: 40px; } .concept__photo { bottom: -150px; } }
@media (max-width: 767px) {
  .concept { padding: 84px 0 200px; }
  .concept__title { font-size: 24px; }
  .concept__key { font-size: 24px; margin: 0 2px; padding: 0 6px; }
  .concept__blob { height: 36px; width: calc(100% + 20px); }
  .concept__copy { margin-top: 24px; line-height: 1.9; text-align: left; }
  .concept__copy + .concept__copy { margin-top: 16px; }
  .concept .c-btn { min-width: 203px; margin-top: 20px; }
  .concept__photo { max-width: 445px; width: calc(100% - 40px); bottom: -105px; border-radius: 20px; }
}

/* 仕事を知る */
.work { position: relative; z-index: 2; padding: 262px 0 300px; color: #fff; background: linear-gradient(180deg, #2f8fd8 0%, #1e80d0 45%, #0d6fc2 100%); }
.work__arc { position: absolute; left: 50%; top: -320px; z-index: 0; width: 2200px; height: 640px; border-radius: 50% 50% 0 0 / 100% 100% 0 0; background: #2f8fd8; transform: translateX(-50%); }
.work__loop { position: relative; z-index: 1; margin-top: -130px; font-family: var(--font-en); font-size: 150px; font-weight: 800; line-height: 1; letter-spacing: .01em; color: transparent; -webkit-text-stroke: 2px rgba(255, 255, 255, .85); }
.work__loop .c-marquee__track > span { padding-right: 80px; }
.work__main { position: relative; z-index: 1; padding-top: 112px; }
.work__bp { position: absolute; left: 50%; z-index: 0; opacity: .9; pointer-events: none; }
.work__bp--1 { width: 520px; aspect-ratio: 560 / 400; top: 18px; transform: translateX(calc(-50% - 700px)); }
.work__bp--2 { width: 320px; aspect-ratio: 1; top: 86px; transform: translateX(calc(-50% + 540px)); }
.work__bp--3 { width: 240px; aspect-ratio: 260 / 360; top: 445px; transform: translateX(calc(-50% + 470px)); }
.work__bubble-wrap { position: relative; max-width: 1063px; width: calc(100% - 40px); margin: 0 auto; }
.work__tail { position: absolute; left: -20px; bottom: -44px; z-index: 1; width: 278px; height: 198px; }
.work__bubble { position: relative; z-index: 2; padding: 96px 0 80px; border-radius: 284px; background: #fff; color: var(--ink); }
.work__ob { position: absolute; z-index: 3; pointer-events: none; }
.work__ob svg { width: 100%; height: 100%; }
.work__ob--laptop { width: 11%; aspect-ratio: 120 / 90; top: 3%; left: -1.5%; }
.work__ob--headset { width: 8%; aspect-ratio: 1; top: -9%; left: 84%; }
.work__ob--card { width: 14%; aspect-ratio: 120 / 90; top: 24%; left: -19%; }
.work__ob--cup { width: 9%; aspect-ratio: 100 / 110; top: 38%; left: 94%; }
.work__ob--note { width: 11%; aspect-ratio: 100 / 120; top: 62%; left: -11%; }
.work__ob--phone { width: 7%; aspect-ratio: 70 / 120; top: 74%; left: 86%; }
.work__inner { display: grid; grid-template-columns: auto 39.84%; column-gap: 40px; max-width: 773px; width: calc(100% - 120px); margin: 0 auto; }
.work__inner .c-head { grid-column: 1; grid-row: 1; margin-top: 32px; }
.work__photo { grid-column: 2; grid-row: 1 / 4; aspect-ratio: 3 / 4; border-radius: 26px; overflow: hidden; }
.work__photo img { width: 100%; height: 100%; object-fit: cover; }
.work__copy { grid-column: 1; grid-row: 2; max-width: 380px; margin-top: 32px; line-height: 1.9; }
.work__btns { grid-column: 1; grid-row: 3; margin: 42px 0 24px; }
.work__btns .c-btn { display: block; }
.work__btns .c-btn + .c-btn { margin-top: 24px; }
@media (max-width: 1200px) { .work__bp--1 { transform: translateX(calc(-50% - 640px)); } .work__bp--2 { transform: translateX(calc(-50% + 470px)); } .work__bp--3 { transform: translateX(calc(-50% + 380px)); } }
@media (max-width: 1024px) { .work__bp { display: none; } .work__loop { font-size: 110px; margin-top: -100px; } .work__ob--card, .work__ob--note { display: none; } }
@media (max-width: 767px) {
  .work { padding: 132px 0 100px; }
  .work__arc { top: -150px; width: 1200px; height: 300px; }
  .work__loop { font-size: 64px; margin-top: -60px; -webkit-text-stroke-width: 1.2px; }
  .work__loop .c-marquee__track > span { padding-right: 40px; }
  .work__main { padding-top: 44px; }
  .work__bubble-wrap { width: calc(100% - 20px); }
  .work__bubble { padding: 32px 0 48px; border-radius: 88px; }
  .work__tail { width: 109px; height: 78px; bottom: -18px; left: -10px; }
  .work__ob--laptop { display: none; }
  .work__ob--headset { width: 56px; top: -24px; left: 20px; }
  .work__ob--cup { width: 44px; top: 320px; left: auto; right: -14px; }
  .work__ob--phone { width: 34px; top: 60px; left: auto; right: -12px; }
  .work__inner { grid-template-columns: 1fr; width: calc(100% - 44px); }
  .work__inner .c-head { margin-top: 0; grid-column: auto; grid-row: auto; }
  .work__photo { grid-column: auto; grid-row: auto; aspect-ratio: auto; height: 152px; margin-top: 18px; border-radius: 10px; }
  .work__copy { grid-column: auto; grid-row: auto; max-width: none; margin: 21px auto 0; }
  .work__btns { grid-column: auto; grid-row: auto; margin: 24px 0 0; }
  .work__btns .c-btn { margin-left: auto; margin-right: auto; }
  .work__btns .c-btn + .c-btn { margin-top: 16px; }
}

/* 社員インタビュー導線 */
.talk { position: relative; z-index: 2; padding: 120px 0 180px; }
.talk__grid { position: relative; display: grid; grid-template-columns: minmax(0, 713px) 1fr; align-items: center; }
.talk__panel { position: relative; z-index: 2; padding: 112px 156px 112px 78px; border-radius: 20px; background: var(--blue); color: #fff; }
.talk__copy { margin-top: 24px; line-height: 2; }
.talk__panel .c-btn { margin-top: 40px; }
.talk__photo { position: absolute; right: 0; top: 50%; z-index: 1; width: 56%; max-width: 680px; aspect-ratio: 16 / 10; border-radius: 20px; overflow: hidden; transform: translateY(-50%); }
.talk__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1024px) {
  .talk__grid { grid-template-columns: 1fr; }
  .talk__panel { padding: 80px 40px; }
  .talk__photo { position: relative; top: auto; right: auto; width: 100%; max-width: none; margin-top: 24px; transform: none; }
}
@media (max-width: 767px) {
  .talk { padding: 60px 0 80px; }
  .talk__panel { padding: 40px 24px; border-radius: 10px; }
  .talk__photo { border-radius: 10px; }
}

/* 写真帯 */
.strip { position: relative; z-index: 2; height: 480px; margin-top: 160px; overflow: hidden; }
.strip__loop, .strip__loop .c-marquee__track { height: 100%; }
.strip__loop img { height: 100%; width: auto; margin-right: 24px; }
.strip__pause { position: absolute; right: 40px; bottom: 40px; z-index: 2; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: #fff; }
.strip__pause-icon { width: 12px; height: 14px; border-left: 4px solid var(--ink); border-right: 4px solid var(--ink); }
.strip__pause.is-paused .strip__pause-icon { width: 0; height: 0; margin-left: 3px; border-left: 12px solid var(--ink); border-right: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; }
@media (max-width: 767px) {
  .strip { height: 156px; margin-top: 80px; }
  .strip__loop img { margin-right: 12px; }
  .strip__pause { right: 16px; bottom: 16px; width: 32px; height: 32px; }
  .strip__pause-icon { width: 9px; height: 11px; border-width: 3px; }
}

/* 働く人を知る */
.members { position: relative; z-index: 2; padding-top: 180px; }
.members__arch { position: absolute; left: 50%; top: 40px; z-index: 0; width: 1900px; height: 1100px; border-radius: 50%; background: radial-gradient(ellipse at 50% 28%, #fbfacd 0%, #fdfce8 40%, rgba(253, 252, 232, 0) 72%); transform: translateX(-50%); pointer-events: none; }
.members__head { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; max-width: 856px; width: calc(100% - 40px); margin: 0 auto; }
.members__head .c-head { flex: none; }
.members__head .c-head__jp { white-space: nowrap; }
.members__head p { max-width: 540px; margin-bottom: 8px; }
.members__carousel { position: relative; z-index: 1; max-width: 1300px; height: 620px; margin: 56px auto 0; }
.c-carousel__track { position: relative; height: 100%; }
.c-carousel__slide { position: absolute; left: 0; top: 0; display: block; width: 26%; transform-origin: center bottom; }
.c-carousel__shade { position: absolute; inset: 0; background: #000; opacity: 0; clip-path: url(#bubble-tall); pointer-events: none; transition: opacity .6s var(--ease2); }
.c-bubble--flip + .c-carousel__shade { transform: scaleX(-1); }
.c-carousel__meta { display: none; }
.c-carousel__nav { position: absolute; top: 45%; z-index: 5; display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: #fff; transform: translateY(-50%); transition: background .3s; }
.c-carousel__nav svg { width: 20px; height: 10px; }
.c-carousel__nav--prev { left: 3%; }
.c-carousel__nav--prev svg { transform: scaleX(-1); }
.c-carousel__nav--next { right: 3%; }
.c-carousel__nav:hover { background: var(--blue); }
.c-carousel__caption { position: relative; z-index: 1; max-width: 856px; min-height: 150px; margin: 24px auto 0; padding: 0 20px; text-align: left; opacity: 0; }
.c-carousel__caption.is-in { animation: capIn .5s var(--ease2) forwards; }
@keyframes capIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.members__more { position: relative; z-index: 1; margin-top: 8px; text-align: right; }
@media (max-width: 1024px) { .members__carousel { height: 480px; } .c-carousel__slide { width: 34%; } }
@media (max-width: 767px) {
  .members { padding-top: 88px; }
  .members__head { flex-direction: column; align-items: center; gap: 24px; text-align: center; }
  .members__head p { text-align: left; }
  .members__carousel { height: 320px; margin-top: 32px; }
  .c-carousel__slide { width: 46%; }
  .c-carousel__nav { width: 36px; height: 36px; }
  .c-carousel__nav svg { width: 16px; height: 8px; }
  .c-carousel__caption { text-align: center; min-height: 120px; }
  .members__more { text-align: center; margin-top: 16px; }
}

/* 働く環境を知る */
.env { position: relative; z-index: 2; padding-top: 180px; }
.env__main { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; }
.env__img { grid-column: 1 / 4; height: 548px; overflow: hidden; }
.env__img img { width: 100%; height: 100%; object-fit: cover; }
.env__btn { position: relative; display: flex; align-items: center; justify-content: center; padding: 42px 20px; background: var(--yellow); }
.env__btn + .env__btn::before { content: ""; position: absolute; left: -1px; top: 50%; width: 2px; height: 86px; background: #fff; transform: translateY(-50%); }
@media (max-width: 1024px) { .env__img { height: 400px; } .env__btn .c-btn { min-width: 0; } }
@media (max-width: 767px) {
  .env { padding-top: 100px; }
  .env__main { grid-template-columns: 1fr; gap: 16px; padding: 24px 20px 40px; border-radius: 40px; background: var(--yellow); }
  .env__img { grid-column: auto; max-width: 400px; width: 100%; height: auto; aspect-ratio: 250 / 170; margin: 0 auto 8px; border-radius: 10px; }
  .env__btn { padding: 0; background: none; }
  .env__btn + .env__btn::before { display: none; }
}

/* 採用新着情報 */
.news { position: relative; z-index: 2; padding: 220px 0 208px; }
.news__grid { display: grid; grid-template-columns: 300px 1fr; margin-top: 64px; }
.news__list .c-post.is-hidden { display: none; }
@media (max-width: 767px) {
  .news { padding: 112px 0; }
  .news__grid { grid-template-columns: 1fr; margin-top: 40px; }
  .news__list { margin-top: 40px; }
}

/* TOPのフッターは本文面の上に */
.is-top .l-footer { z-index: 2; }
