/*トップページレイアウト*/
:root {
  --text: #696969;
  --bg: #ffffff;
  --accent: #dc143c;
  /* クリムゾン（タイトル帯・見出し） */
  --italian-red: #ff2800;
  /* 「重要なお知らせ」ラベル背景 */
  --nav-ico: #666666;
  /* ダークグレー（ナビ＆アイコン線色） */
  --muted: #f2f2f2;
  --badge-pink: #fde3f8;
  /* カレンダー背景＆フッター中段 */
  --news-bg: #fff0f5;
  /* 新着情報背景 */
  --dayori-bg: #f5fffa;
  /* 学校通信背景 */
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  /*font-family: "HGS創英角ポップ体", "HGS創英角ゴシックUB", "HGS創英角ゴシック", "創英角ポップ体", "創英角ゴシックUB", "創英角ゴシック", "UDデジタル教科書体", "ヒラギノ角ゴシック W3", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;*/

  font-family: "M PLUS Rounded 1c", sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

ol,
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* PC左右余白 65px（+20） */
.container {
  margin-inline: auto;
  padding-inline: 65px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
padding-bottom:0;
}

/* 画面幅900px以上でコンテンツに左右余白70px（背景は除く） */
@media (min-width: 860px) {
  .container {
    padding-inline: 70px;
    box-sizing: border-box;
    max-width: 1200px;
    width: 100%;
  }
.pc-only{
margin-inline:50px;
}

.section-title{
font-family:Noto Sans JP;
font-size:40px !important;
font-weight:bold !important;
}

  /* フル幅の背景要素は余白をリセット */
  .full-bleed {
    margin-inline: -70px;
    padding-inline: 70px;
    width: calc(100% + 140px);
    max-width: none;
  }

  /* ヘッダー、カレンダー、地図、フッターの背景は余白なし */
  .header-bar,
  .map-wrap,
  .foot-1,
  .foot-2,
  .foot-3 {
    margin-inline: -70px;
    padding-inline: 70px;

    max-width: none;
  }


}


#backToTop:hover {
  opacity: 1;
}

/* ========== Page Topボタン ========== */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0.6;
  padding: 10px 15px;
  font-size: 12px;
}

#backToTop:hover {
  background-color: #878787;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#backToTop svg {
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
}

/* ============ HEADER ============ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header-bar {
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.7);

}

/* 背景 40% */
.logo {
  display: flex;
  align-items: center;
  gap: 12px
}

.logo img {
  width: 160px
}

/* Hamburger */
.hamburger {
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #dc143c;
  cursor: pointer;
  user-select: none;
  z-index: 1000 !important;
  position: relative !important;
}

.hamburger .bars {
  display: grid;
  gap: 4px
}

.hamburger .bar {
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px
}

.hamburger .menu-label {
  color: #fff;
  font-size: 11px;
  letter-spacing: .15em
}

/* Slide menu */
.drawer {
  position: fixed !important;
  inset: 0 0 0 auto !important;
  width: min(86vw, 340px) !important;
  background: rgba(255, 255, 255, 0.7) !important;
  transform: translateX(100%) !important;
  transition: transform .25s ease !important;
  z-index: 200 !important;
  display: flex !important;
  flex-direction: column !important;
}

.drawer.open {
  transform: translateX(0) !important;
}

.drawer header {
  position: static
}

.drawer nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
  color: #333
}

.drawer nav svg {
  width: 20px;
  height: 20px;
  stroke: #555;
  fill: none;
  stroke-width: 1.8
}

/* ============ HERO / SLIDER ============ */
.hero {
  position: relative;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform .4s ease
}

.slide {
  min-width: 100%;
  aspect-ratio: 16/6;
  background: #ddd;
  display: grid;
  place-items: center;
  position: relative
}

.slide img.bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.slide .overlay-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center
}

.slide .overlay-text img {
  max-width: min(80%, 800px)
}

/* ヘッダーテキスト画像 */

.slider .nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none
}

.slider button {
  pointer-events: auto;
  appearance: none;
  border: none;
  background: rgba(255, 255, 255, .7);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  margin: 0 10px;
  cursor: pointer
}

/* ============ IMPORTANT (PINK BAR) ============ */
.important {
  background: #ffd3ea;
  padding: 14px 0
}

.important .inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px
}

.important .text {
display:flex;
aligun-items:flex-start;

}
/* ============ NAV AREA (desktop only) ============ */
.nav-area {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  background: #fff
}

/* メイン前ナビは左右余白 15px */
.nav-area .container {
  padding-inline: 15px
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  padding: 20px 0
}

.nav-item {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
  padding: 8px;
  border-radius: 10px;
  transition: transform .15s ease
}

.nav-item:hover {
  transform: translateY(-2px)
}

.nav-item svg {
  width: 34px;
  height: 34px;
  stroke: var(--nav-ico);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.nav-item span {
  font-size: 13px;
  color: #333
}

/* ボーダーでメインと差別化 */
.divider {
  border-bottom: 3px double #e0e0e0
}

/* ============ MAIN ============ */
main {
  padding: 28px;
  margin-top: 20px;
  /* ヘッダーの高さ分のマージンを追加 */
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700
margin-top:0;
margin-bottom:0;
}

.card-header svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  stroke: none
}

.content-list {
padding:10px;
padding-top:0;
  text-align: left;
line-height:25px;

}

.content-list dl {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px dashed #ccc;
}

.content-list dl dt {
  display: inline-block;
  padding: 10px 4px 10px 0;
  margin-inline: 10px;
}

.content-list dl dd {
  display: inline-block;
  padding: 10px 4px;
  margin: 0;
}
#new li, 
.new li{
  padding: 10px 4px;
  border-bottom: 1px dashed #ccc
}

.card-foot,
.info-link-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.more-btn {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid #bbb;
  border-radius: 999px;
  font-size: 13px
}


#dayori .pagination-btn{
  background: var(--dayori-bg) !important;
}
#dayori .page-info,
#dayori .pagination-btn,
#dayori .content-link{display:none !important;}


#pageInfo {
  display: flex;
  align-items: center;
  margin-inline: 10px;
}

.card.dayori {
  background: var(--dayori-bg)
}

.card.news {
  background: var(--news-bg)
}

/* ============ CALENDAR ============ */
.event-section-center {
  background: var(--badge-pink);
  margin-top: 28px
}

.section-title {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 800;
  font-size: 25px;
  margin-bottom: 18px
}

.section-title::before,
.section-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent)
}

.calendar-table {
  text-align: center;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  overflow: hidden;
  border: 1px solid #eee;
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
}


.calendar-table thead th {
  background: #fafafa
}

.calendar-table .muted {
  color: #bbb
}

.calendar-table td small {
  display: block;
  font-size: 11px;
  margin-top: 4px
}

.event-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  padding: 12px 16px;
  font-size: 1.1em;
  max-width: 100%;
  margin: 0 auto;
}

.event-list-prev,
.event-list-next {
  color: #7b7b7b;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}

.calendar-header {
  padding: 10px 0;
  text-align: center;
  padding: 10px 0;
  text-align: center;
  font-size: 18px;
}

.calendar-header h3 {
  color: var(--accent) !important;
  margin: 0;
}

/* スマホ表示：行事日のみ表 */
.event-list {
  display: none;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
  box-sizing: border-box;
}

.event-list table {
  width: 100%;
  border-collapse: collapse
}

.event-list th,
.event-list td {
  border-bottom: 1px solid #eee;
  padding: 10px 12px
}

/* ============ MAP ============ */
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0
}

/* ============ FOOTER ============ */
footer {
  margin-top: 0;
}

.foot-1 {
  background: var(--badge-pink);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee
}

/* PCは 33% / 67% 配分 */
.foot-1 .inner {
  display: grid;
  align-items: start;
  padding: 22px 40px;
}

/* 左：ロゴ+その下に小さめSNS（さらに小さく & 揃える） */
.brand-social {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px
}

.brand-social .school-logo {
  width: 140px
}

.sns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap
}

.sns a {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #ccc
}

.sns a svg {
  width: 14px;
  height: 14px;
  fill: #666
}

.vline {
  display: none
}

/* 右：フッターナビ（縦に3列ほど） */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.footer-nav h4 {
  margin: 0 0 8px 0;
  font-weight: 800
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.footer-nav li {
  font-size: 12px;
  line-height: 1.7
}

.foot-2 {
  background: #fff;
  padding: 20px;
}


.foot-3 {
  background: var(--accent);
  color: #fff
}



.school-info h3 {
  margin-bottom: 6px;
  font-size: 18px
}

.school-info ul {
  margin-top: 8px;

}

.school-info li {
  opacity: 0.8;
  margin: 0;
  font-size: 11px;
}

.school-info img {
  width: 180px;
}

.city-links {
  margin-right: 0;
  display: grid;
  gap: 8px;
  justify-items: end;
  max-width: 100%;
  box-sizing: border-box;
  padding-right: 20px;
}

.city-links .banner {
  width: 100%;
  max-width: 260px;
  height: 60px;
  background: rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
  border-radius: 8px;
  box-sizing: border-box;
}

.copyright {
  font-size: 12px;
  opacity: .85
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .container {
    padding-inline: 15px;
  }

  .nav-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .cards {
    /*grid-template-columns: 1fr;*/
    gap: 10px;
  }

  .foot-1 .inner {
    grid-template-columns: 1fr
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }



  .city-links {
    justify-items: start
  }

  .container {
    font-size: 0.8rem;
  }




}

@media (max-width: 1024px) {

  .container th,
  .container td {
    width: auto;
    min-width: 0;
  }

}

@media (max-width: 567px) {
  .section-title {
    font-size: 20px;
    gap: 10px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 12px;
    margin: 0 auto;
    padding: 0;
  }


  /* メインコンテンツのマージンを削除 */
  main {
    margin-top: 0;
  }

  /* スマホ版のコンテナ余白を統一 */
  .container {
    padding-inline: 15px;
    max-width: 100% !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  /* メイン前のナビゲーション非表示 */
  .nav-area {
    display: none
  }






  /* カレンダー -> 行事のみ */
  .calendar-table {
    display: none
  }


  .event-list {
    text-align: center;
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .event-list th,
  .event-list td {
    border: 1px solid #eee;
  }



  .brand-social {
    flex-direction: column;
    align-items: flex-start
  }



  /* ヘッダー、カレンダー、地図、フッターの統一された余白 */
  .header-inner {
    padding: 10px 10px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .event-section-center .container {
    padding-inline: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .full-bleed {
    margin-inline: 0 !important;
    padding-inline: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .foot-1 .inner,
  .foot-2 .container,
  .foot-3 .inner {
    padding-inline: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* カードの余白調整 */
  .card {
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .content-listl {
    padding: 12px 10px !important;
  }

  .card-header {
    padding: 10px 10px !important;
  }

  .card-foot,
  .info-link-container {
    padding: 10px 10px !important;
  }

  /* リストの余白調整 */
  #new li,
.new li {
    padding: 10px 0 !important;
  }

  .foot-3 {
    text-align: center;
    padding: 10px 0;
  }


  .school-info h3 {
    margin: 10px 0;
    text-align: center;
  }

  .school-info p {
    margin: 10px 0;
    text-align: center;
  }

  .foot-3 .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
  }

  .school-info h3 {
    margin: 10px 0;
    text-align: center;
  }

  .school-info p {
    margin: 10px 0;
    text-align: center;
  }

  .city-links {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    box-sizing: border-box;
    padding-right: 0;
  }

  .slider button {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .drawer {
    background: rgba(255, 255, 255, 0.9) !important;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    padding-inline: 20px;
  }
.pc-only{display:none;}

}



@media (min-width: 720px) {

  .foot-3 .inner {
    padding-inline: 20px !important;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 20px 40px !important;
    box-sizing: border-box;
  }

  .footer-nav {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .footer-nav h4 {
    font-size: 16px !important;
  }

  .footer-nav li {
    font-size: 14px !important;
  }

}

@media (max-width: 700px) {
  .foot-3 .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 15px 20px;
    text-align: center;
  }

  .school-info {
    order: 1;
  }

  .city-links {
    order: 2;
    margin: 0;
    justify-self: center;
    max-width: 100%;
    box-sizing: border-box;
    padding-right: 0;
  }

  .important {
    padding: 15px 10px 10px;
  }

  .important .inner {
    display: block;
        padding-inline: 0px;
  }

  .important .text {
    margin-top: 15px;
  }

  .container th,
  .container td {
    width: auto;
    min-width: 0;
  }

}

@media (max-width: 412px) {
  .footer-nav {
    padding-inline: 20px;
    grid-template-columns: 1fr;
  }

  .footer-nav h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 10px;
  }

  .footer-nav ul {
    display: none
  }

  .footer-nav h4::after {
    content: "\25BE";
    font-size: 12px
  }

  .pagination-btn,
  .more-btn {
    font-size: 10px;
    padding: 5px 10px;
  }

}

@media (min-width: 412px) {

  .footer-nav h4 {
    margin: 0 0 8px 0;
    font-size: 12px;
    font-weight: 800;
    position: relative;
  }

  .footer-nav li {
    font-size: 10px;
  }

  .footer-nav h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100px;
    height: 1px;
    background-color: #dc0000;
  }
}

@media screen and (min-width: 568px) {
  .foot-2 {
    max-width: 921.6px;
    margin: 4% auto 5% !important;
    text-align: center !important;
    vertical-align: top !important;
  }
}



/* ==============CALENDAR================ */
.calendar-container {
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
}

.calendar-header {
  padding: 10px 0;
  text-align: center;
  width: 100%;
}

.calendar-header h3 {
  margin: 0 !important;
  font-size: 1.2em;
}

.calendar-table {
  border-collapse: collapse;
  background: #fff;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
}

.calendar-table th,
.calendar-table td {
  padding: 8px 5px;
  text-align: center;
  border: 1px solid #dee2e6;
  vertical-align: middle;
  position: relative;
  border-radius: 0 !important;
  width: auto;
  min-width: 0;
}

.calendar-table th {
  background: #f8f9fa;
  font-weight: bold;
  color: #495057;
  border-bottom: 2px solid #dee2e6;
}

.calendar-table td:empty {
  background: #f8f9fa;
}

.event-day {
  background: #f8f0f5 !important;
  font-weight: bold;
}

.event-title {
  display: block;
  font-size: 0.75em;
  color: #333;
  font-weight: normal;
  margin-top: 5px;
  line-height: 1.2;
}

.calendar-events {
  max-width: 900px;
  margin: 20px auto 0 auto;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 6px;
  font-size: 1em;
  color: #333;
}

.calendar-events ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.calendar-events li {
  padding: 5px 0;
  font-size: 1em;
}

.calendar-events .date {
  font-weight: bold;
  color: #7b7b7b;
}


@media screen and (max-width: 768px) {
  .calendar-events {
    font-size: 0.95em;
    padding: 15px 15px;
  }
}

.pc-only {
  display: inline;
}


@media screen and (max-width: 768px) {

  .event-list th,
  .event-list td {
    height: auto;
  }

  .calendar-header h3 {
    font-size: 15px;
    margin: 10px 0;
    padding: 0;
  }

  .sp-only {
    display: block;
  }

}


@media screen and (min-width: 720px){
.sp-only {
  display: none;
}
}


/* ハンバーガーメニューの動作を確実にする */
.drawer {
  position: fixed !important;
  inset: 0 0 0 auto !important;
  width: min(86vw, 340px) !important;
  background: rgba(255, 255, 255, 0.90) !important;
  box-shadow: -6px 0 18px rgba(0, 0, 0, .12) !important;
  transform: translateX(100%) !important;
  transition: transform .25s ease !important;
  z-index: 2000 !important;
  display: flex !important;
  flex-direction: column !important;
}

.drawer.open {
  transform: translateX(0) !important;
}

.hamburger {
  cursor: pointer !important;
  display: inline-flex !important;
  z-index: 1000 !important;
  position: relative !important;
}

/* サブバナーのプレースホルダー */
.sub-banner-placeholder {
  width: 100%;
  aspect-ratio: 16/6;

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;

  font-size: 14px;
}



#new dt span.genre_0 {visibility: hidden;}
#new dt span.genre_1 {background: #e50012;color: #fff;}
#new dt span.genre_2 {background: #7084c1;color: #fff;}
#new dt span.genre_3 {background: #94ab32;color: #fff;}
#new dt span.genre_4 {background: #896AB5;color: #fff;}
#new dt span.genre_5 {background: #ff6600;color: #fff;}
#new dt span.genre_6 {background: #ff3366;color: #fff;}
#new dt span.genre_7 {background: #cc9900;color: #fff;}
#new dt span.genre_8 {background: #006600;color: #fff;}
#new dt span.genre_9 {background: #000066;color: #fff;}
#new dt span.genre_10 {background: #993333;color: #fff;}
#new dt span.genre_11 {background: #666666;color: #fff;}
#new dt span.genre_12 {background: #996633;color: #fff;}
#new dt span.genre_13 {background: #cc3333;color: #fff;}
#new dt span.genre_14 {background: #333300;color: #fff;}
#new dt span.genre_15 {background: #3366cc;color: #fff;}
#new dt span.genre_16 {background: #004d99; color: #fff;}
#new dt span.genre_17 {background: #800000; color: #fff;}
#new dt span.genre_18 {background: #006633; color: #fff;}
#new dt span.genre_19 {background: #660066; color: #fff;}
#new dt span.genre_20 {background: #cc6600; color: #fff;}

#dayori dt span{display: none !important;}

#new dt span {font-size: 10px; color: #fff; padding: 0 0.5em; margin-right: 0; display: inline-block; min-width: 60px !important; text-align: center; white-space: nowrap;}

.content-list dd{margin-left:10px;}

.cards > * { min-width:0; }

#news .content-list * { min-width:0; }

@media (max-width: 567px){
.content-list{padding-left:0;}
#new dt span{font-size:9px !important;padding:0 !important;}
}
.news-item {
    padding: 7px !important;
}

#news dl {
  display: flex;
  align-items: flex-start; 
}

#news dt {
  flex-shrink: 0;
  width: auto; 
  margin-right: 10px;
}

#news dd {
  flex: 1;
  margin: 0; 
}
.important{
	font-family: "HGS創英角ポップ体", "HGS創英角ゴシックUB", "HGS創英角ゴシック", "創英角ポップ体", "創英角ゴシックUB", "創英角ゴシック", "UDデジタル教科書体", "ヒラギノ角ゴシック W3", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif !important;
}

.important .badge {
    background: var(--italian-red);
    color: #fff;
    padding: 6px 10px;
    font-weight: 400;
    font-size: 17px;
    white-space: nowrap;
}

.important .text{
	font-size:16px;
	color:#222;
}

@media (max-width: 700px) {

.important .text{
	font-size:14px;
}

.container .important {
        padding-inline: 0px;
}
.important .badge{
	font-size:15px;
}
}