/* News (Figma node 72:1147) */

:root{
  --nw-accent:#881a2a;
  --nw-border:#d0c9c5;
  --nw-text:#000;
  --nw-muted:#1a1a1a;
  --nw-gray:#666;
  --nw-bg:#f7f7f7;
  --nw-white:#fff;
}

.news-page{
  max-width:1440px;
  margin:0 auto;
  background:var(--nw-bg);
  color:var(--nw-text);
  font-family:"Noto Sans JP",sans-serif;
}

.news-page--archive{
  background:var(--nw-white);
}

.news-page--archive .news-hero{
  background:var(--nw-white);
}

.news-page--detail{
  background:var(--nw-white);
}

/* Hero */
.news-hero{
  background:var(--nw-bg);
}

.news-hero__inner{
  max-width:1440px;
  margin:0 auto;
  padding:0 40px;
  box-sizing:border-box;
}

.news-crumb{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:16px;
  padding-top:176px;
  margin:0;
}

.news-crumb a{
  font-size:14px;
  font-weight:500;
  letter-spacing:1.4px;
  color:var(--nw-text);
  text-decoration:underline;
  text-underline-offset:3px;
}

.news-crumb__here{
  font-size:14px;
  font-weight:500;
  letter-spacing:1.4px;
  color:var(--nw-text);
  text-decoration:none;
}

.news-crumb__sep{
  width:1px;
  height:1em;
  align-self:stretch;
  display:flex;
  align-items:center;
}

.news-crumb__sep img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
}

.news-title{
  max-width:640px;
  padding:24px 0 56px;
}

.news-kicker{
  margin:0;
  font-family:Marcellus,serif;
  font-size:20px;
  line-height:1.3;
  letter-spacing:2px;
  color:var(--nw-accent);
}

.news-title__heading{
  margin:16px 0 0;
  font-family:"Shippori Mincho",serif;
  font-size:64px;
  line-height:1.2;
  font-weight:400;
  color:#000;
}

/* List（Figma 72:1147: px-[120px] pb-[200px]、一覧〜ページャ gap 96px） */
.news-list{
  padding:0 120px 200px;
  box-sizing:border-box;
}

.news-list__inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:96px;
}

.news-list__units{
  display:flex;
  flex-direction:column;
  gap:40px;
  width:100%;
}

.news-list__unit{
  display:flex;
  flex-direction:column;
  gap:40px;
  width:100%;
}

.news-item{
  display:flex;
  gap:40px;
  align-items:flex-start;
  text-decoration:none;
  color:inherit;
}

.news-item__top{
  display:flex;
  align-items:center;
  gap:20px;
  flex-shrink:0;
}

.news-item__thumb{
  width:300px;
  height:170px;
  border-radius:5px;
  overflow:hidden;
  background:#d9d9d9;
  flex-shrink:0;
}

.news-item__thumb img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.news-item__ph{
  width:100%;
  height:100%;
  background:#d9d9d9;
}

.news-item__body{
  padding-top:20px;
  display:flex;
  flex-direction:column;
  gap:16px;
  flex:1;
  min-width:0;
}

.news-item__date{
  margin:0;
  font-family:Marcellus,serif;
  font-size:14px;
  line-height:1.2;
  letter-spacing:1.4px;
  color:var(--nw-accent);
}

.news-item__row{
  display:flex;
  gap:20px;
  align-items:center;
  min-width:0;
}

.news-item__title{
  margin:0;
  font-size:20px;
  font-weight:500;
  line-height:1.6;
  color:#000;
  flex:1;
  min-width:0;
}

.news-item__arrow{
  width:24px;
  height:24px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.news-item__arrow img{
  width:24px;
  height:24px;
  display:block;
}

.news-divider{
  height:1px;
  background:var(--nw-border);
  width:100%;
  margin:0;
  flex-shrink:0;
}

/* Pager（Figma: 矢印 48×48・rounded 20px、数字 48×48・rounded 4px） */
.news-pager{
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.news-pager__nums{
  display:flex;
  gap:16px;
  align-items:flex-start;
}

.news-pageBtn{
  width:48px;
  height:48px;
  border-radius:4px;
  border:1px solid var(--nw-border);
  background:var(--nw-white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:Marcellus,serif;
  font-size:16px;
  line-height:1;
  color:var(--nw-gray);
  text-decoration:none;
}

.news-pageBtn.is-current{
  background:var(--nw-accent);
  border-color:var(--nw-accent);
  color:var(--nw-white);
}

.news-pager__arrow{
  width:48px;
  height:48px;
  border-radius:20px;
  border:none;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  flex-shrink:0;
}

.news-pager__arrowIcon{
  width:24px;
  height:24px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.news-pager__arrowIcon img{
  width:24px;
  height:24px;
  display:block;
}

.news-pager__arrow--prev .news-pager__arrowIcon{
  transform:rotate(180deg);
}

.news-pager__arrow.is-disabled{
  opacity:0.3;
  pointer-events:none;
}

/* お知らせ詳細（Figma node 73:2176） */
.news-detail{
  padding-bottom:120px;
}

.news-detail__crumb{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
  max-width:1440px;
  margin:0 auto;
  padding:176px 40px 0;
}

.news-detail__crumb a{
  font-size:14px;
  font-weight:500;
  letter-spacing:1.4px;
  color:var(--nw-text);
  text-decoration:underline;
  text-underline-offset:3px;
}

.news-detail__crumbSep{
  display:block;
  width:1px;
  height:1em;
  flex-shrink:0;
  background-color:#d0c9c5;
  align-self:center;
}

.news-detail__crumbCurrent{
  max-width:min(360px,42vw);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:14px;
  font-weight:500;
  letter-spacing:1.4px;
  color:var(--nw-text);
  text-decoration:none;
}

.news-detail__stage{
  display:flex;
  flex-direction:column;
  gap:96px;
  max-width:800px;
  margin:0 auto;
  padding:48px 40px 0;
}

.news-detail__head{
  display:flex;
  flex-direction:column;
  gap:40px;
}

.news-detail__date{
  margin:0;
  font-family:Marcellus,serif;
  font-size:16px;
  line-height:1;
  letter-spacing:1.6px;
  color:var(--nw-accent);
}

.news-detail__title{
  margin:0;
  font-size:40px;
  font-weight:500;
  line-height:1.6;
  color:var(--nw-muted);
}

.news-detail__hero{
  margin:0;
  border-radius:10px;
  overflow:hidden;
  background:#d9d9d9;
}

.news-detail__hero img{
  width:100%;
  height:auto;
  aspect-ratio:800/450;
  object-fit:cover;
  display:block;
}

.news-detail__content{
  font-size:18px;
  line-height:2.2;
  color:var(--nw-text);
}

.news-detail__content > *:first-child{
  margin-top:0;
}

.news-detail__content p{
  margin:20px 0 0;
}

.news-detail__content p:first-child{
  margin-top:0;
}

.news-detail__content a{
  color:var(--nw-accent);
}

.news-detail__content h2{
  display:flex;
  align-items:center;
  gap:12px;
  margin:96px 0 0;
  font-size:32px;
  font-weight:500;
  line-height:1.6;
  color:var(--nw-text);
}

.news-detail__content h2::before{
  content:"";
  width:3px;
  height:32px;
  background:var(--nw-accent);
  flex-shrink:0;
  border-radius:1px;
}

.news-detail__content h2:first-child{
  margin-top:0;
}

.news-detail__content h3{
  margin:24px 0 0;
  padding-bottom:10px;
  border-bottom:1px solid var(--nw-border);
  font-size:20px;
  font-weight:500;
  line-height:1.6;
  color:var(--nw-text);
}

.news-detail__content h3:first-child{
  margin-top:0;
}

.news-detail__backWrap{
  display:flex;
  justify-content:center;
}

.news-detail__backBtn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:8px 12px;
  border:1px solid var(--nw-accent);
  border-radius:4px;
  background:var(--nw-white);
  text-decoration:none;
  color:var(--nw-accent);
  box-sizing:border-box;
}

.news-detail__backIcon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  flex-shrink:0;
}

.news-detail__backIcon img{
  width:20px;
  height:20px;
  display:block;
  transform:rotate(180deg);
}

.news-detail__backDivider{
  width:1px;
  height:32px;
  background:var(--nw-border);
  flex-shrink:0;
}

.news-detail__backLabel{
  min-width:120px;
  font-size:14px;
  font-weight:500;
  line-height:1.6;
  text-align:center;
}

@media (max-width: 1240px){
  .news-list{padding-left:40px;padding-right:40px;}
  .news-list__inner{gap:72px;}
  .news-item{flex-direction:column;gap:20px;}
  .news-item__thumb{width:100%;max-width:600px;height:auto;aspect-ratio:300/170;}
  .news-item__body{padding-top:0;}
  .news-crumb{flex-wrap:wrap;justify-content:flex-end;}
  .news-detail__crumb{flex-wrap:wrap;justify-content:flex-end;}
}

@media (max-width: 700px){
  .news-hero__inner{padding:0 20px;}
  .news-crumb{
    padding-top:150px;
    justify-content:flex-start;
    gap:8px;
  }
  .news-crumb a,
  .news-crumb__here{
    font-size:12px;
    letter-spacing:1.2px;
  }
  .news-title{
    padding:48px 0 0;
    max-width:335px;
  }
  .news-kicker{
    font-size:16px;
    letter-spacing:1.6px;
  }
  .news-title__heading{
    font-size:40px;
    line-height:1.2;
  }

  .news-list{
    padding-left:20px;
    padding-right:20px;
    padding-bottom:120px;
  }
  .news-list__inner{
    gap:64px;
  }
  .news-list__units{
    gap:24px;
  }
  .news-list__unit{
    gap:24px;
  }

  .news-item{
    flex-direction:column;
    gap:16px;
  }
  .news-item__top{
    width:100%;
    justify-content:flex-start;
  }
  .news-item__thumb{
    width:180px;
    height:101px;
  }
  .news-item__body{
    padding-top:0;
    gap:16px;
  }
  .news-item__row{
    gap:20px;
    align-items:center;
  }
  .news-item__title{
    font-size:16px;
    line-height:1.6;
  }
  .news-item__arrow{
    width:20px;
    height:20px;
  }
  .news-item__arrow img{
    width:20px;
    height:20px;
  }

  .news-pager{
    gap:12px;
  }
  .news-pager__nums{
    gap:8px;
    flex-wrap:wrap;
    justify-content:center;
  }
  .news-pageBtn{
    width:32px;
    height:32px;
    border-radius:2px;
    font-size:14px;
  }
  .news-pager__arrow{
    width:32px;
    height:32px;
    border-radius:20px;
  }
  .news-pager__arrowIcon{
    width:16px;
    height:16px;
  }
  .news-pager__arrowIcon img{
    width:16px;
    height:16px;
  }

  .news-detail__crumb{
    justify-content:flex-start;
    gap:8px;
    padding:150px 20px 0;
  }
  .news-detail__crumb a,
  .news-detail__crumbCurrent{
    font-size:12px;
    letter-spacing:1.2px;
  }
  .news-detail__crumbSep{
    height:12px;
    align-self:center;
    background-color:var(--nw-border);
  }
  .news-detail__crumbCurrent{
    max-width:210px;
  }

  .news-detail__stage{
    max-width:335px;
    padding:48px 20px 0;
    gap:64px;
  }
  .news-detail__head{
    gap:12px;
  }
  .news-detail__date{
    font-size:14px;
    letter-spacing:1.4px;
    line-height:1.2;
  }
  .news-detail__title{
    font-size:24px;
    line-height:1.4;
    color:var(--nw-muted);
  }
  .news-detail__hero img{
    width:100%;
    height:188px;
    aspect-ratio:auto;
    object-fit:cover;
  }

  .news-detail__content{
    font-size:16px;
    line-height:1.8;
  }
  .news-detail__content p{
    margin:20px 0 0;
  }
  .news-detail__content h2{
    margin:64px 0 0;
    font-size:20px;
    line-height:1.4;
    align-items:stretch;
  }
  .news-detail__content h2::before{
    height:auto;
    align-self:stretch;
  }
  .news-detail__content h3{
    margin:24px 0 0;
    padding-bottom:10px;
    border-bottom:1px solid var(--nw-border);
    font-size:16px;
    font-weight:500;
    line-height:1.6;
    color:var(--nw-text);
  }
}

