/* ============================================================
 ブレークポイント
 タブレット(768px)  @media screen and (max-width: 48em) 
 スマホ(425px)      @media screen and (max-width: 26.5625em)
============================================================ */

/* === 変数定義 (Start) ============================== */
:root {
  --color-primary: #00a95c;
  --color-secondary: #0092d7;
  --color-accent: #e8506f;
  --color-text: #231815;
  --color-link: var(--color-secondary);
  --color-nav-background: #414549;
  --max-width-content: 1200px;
  --max-width-content: 75rem;
}
/* === 変数定義 (End) ================================ */

/* === デフォルトスタイル (Start) ================================ */
html {
  /* overflow-x: hidden; */
  overflow-y: scroll;
  line-height: 1.5;
  color: var(--color-text);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo,
    sans-serif;
  /* font-family: Arial, "BIZ UDPGothic", sans-serif; */
  /* font-feature-settings: "pwid"; */
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
}

h1:not([class]) {
  font-size: clamp(1.5rem, 1.035rem + 1.75vw, 1.875rem);
}

h2:not([class]) {
  font-size: clamp(1.25rem, 0.94rem + 1.17vw, 1.5rem);
}

p {
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--color-link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:hover,
a:active {
  color: var(--color-link);
}

a img {
  transition: opacity 150ms;
}

a:hover img,
a:active img {
  opacity: 0.8;
}
/* === デフォルトスタイル (End) ================================== */

/* === レイアウト (Start) ================================== */
.wholeWrapper {
  overflow-x: clip;
}
@media print {
  .wholeWrapper {
    overflow-x: visible;
    min-width: 1000px;
  }
}

.wrapper {
  padding-right: 16px;
  padding-left: 16px;
}

.wrapperInner {
  max-width: var(--max-width-content);
  margin: 0 auto;
}
/* === レイアウト (End) ==================================== */

/* === ヘッダー (Start) ============================== */
.header {
  z-index: 999;
  /* position: sticky; */
  /* top: 0; */
  line-height: 1.3;
  background-color: #fff;
  border-bottom: 20px solid #0092d7;
  border-image: linear-gradient(45deg, var(--color-primary) 0%, var(--color-secondary) 50%);
  border-image-slice: 1;
}
@media screen and (max-width: 48em) {
  .header {
    position: sticky;
    top: 0;
    border-bottom-width: 10px;
  }
}

/* ---------- 最上部のナビ ---------- */
.uNav {
  display: flex;
  align-items: center;
  height: 2.5rem;
  margin-bottom: 30px;
  color: #fff;
  background: var(--color-nav-background);
}
@media screen and (max-width: 48em) {
  .uNav {
    display: none;
  }
}

.uNav a {
  color: #fff;
  text-decoration: none;
}

.uNav a:hover {
  color: #fff100;
}

.uNavInner {
  display: flex;
  flex: 1 0 0;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.75rem;
}

.uNavTxt {
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.uNavSearch form {
  display: flex;
  align-items: stretch;
}

.uNavSearch input[type="text"] {
  max-width: 6.25rem;
  padding: 0 4px;
  color: #fff;
  background-color: #000;
  border: 1px solid #cad4db;
}

.uNavSearch input[type="text"]::placeholder {
  color: #ddd;
}

.uNavSearch button {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  cursor: pointer;
  background: url(/nmij/commons/img/btn_site_search.svg) no-repeat center;
  background-size: contain;
  border: 1px solid #cad4db;
}

.uNavEnglish a::before {
  content: "";
  box-sizing: content-box;
  display: inline-block;
  width: 19px;
  height: 19px;
  padding: 0 6px;
  vertical-align: middle;
  background: url(/nmij/commons/img/icon_english.svg) no-repeat center;
  background-size: contain;
}

/* ホバー後の画像をプリロード */
.uNavEnglish a::after {
  content: "";
  visibility: hidden;
  background: url(/nmij/commons/img/icon_english_active.svg);
}

.uNavEnglish a:hover::before {
  background-image: url(/nmij/commons/img/icon_english_active.svg);
}

/* ---------- メインのヘッダー ---------- */
.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.headerLeft {
  flex: 0 10 auto;
}

.headerRight {
  flex: 0 1 auto;
}
@media screen and (max-width: 48em) {
  .headerRight {
    display: none;
  }
}

.headerBrand {
  margin: 0;
  text-align: center;
  translate: 0 -10px;
}
@media screen and (max-width: 48em) {
  .headerBrand {
    translate: 0;
  }
}

.headerSp {
  display: none;
  flex: 0 0 auto;
  gap: 20px;
  align-items: center;
  padding: 8px 0;
  margin-left: 24px;
  line-height: 1;
}
@media screen and (max-width: 48em) {
  .headerSp {
    display: flex;
  }
}
@media screen and (max-width: 26.5625em) {
  .headerSp a {
    display: none;
  }
}

.headerGnavArea {
  position: relative;
  height: 5rem;
}

.gnav {
  display: flex;
  justify-content: space-between;
  height: 100%;
  padding: 0;
  margin: 0;
}

.gnav a {
  color: var(--color-text);
}

.gnav a:hover {
  color: var(--color-link);
}

.gnav li {
  list-style: none;
}

.gnav > li {
  flex: 0 0 auto;
}

.gnav > li.hga07 {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  padding-left: 20px;
  translate: 0 -10px;
}

.gnavTitle {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  /* viewportが900px～1200pxの間で、8px～16px */
  padding-right: clamp(0.5rem, -1rem + 2.67vw, 1rem);
  padding-bottom: 1.5rem;
  padding-left: clamp(0.5rem, -1rem + 2.67vw, 1rem);
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  background: url(/nmij/commons/img/icon_nav_arrow_b.svg) no-repeat center bottom 14px;
  background-size: 0.875rem;
}

.gnavTitle:hover {
  text-decoration: none;
}

/* ホバー後の画像をプリロード */
.gnavTitle::before {
  content: "";
  visibility: hidden;
  background: url(/nmij/commons/img/icon_nav_arrow_b_w.svg);
}

.gnav > li:hover .gnavTitle {
  color: var(--color-link);
  background: #dcebf8 url(/nmij/commons/img/icon_nav_arrow_b_w.svg) no-repeat center bottom 10px;
}

/* メガメニュー用の三角形 */
.gnav > li:not(.hga07) .gnavTitle::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  z-index: 1000;
  width: 0;
  height: 0;
  border-color: transparent transparent #fff transparent;
  border-style: solid;
  border-width: 0 10px 15px 10px;
  opacity: 0;
  transition: opacity 100ms ease-in;
  translate: -50%;
}

.gnav > li:not(.hga07):hover .gnavTitle::after {
  opacity: 1;
  transition: opacity 100ms ease-in;
}

/* ---------- メガメニュー ---------- */
.megaMenu {
  position: absolute;
  top: auto;
  left: 0;
  z-index: 999;
  width: 100vw;
  visibility: hidden;
  filter: drop-shadow(2px 2px 3px #00000080);
  opacity: 0;
  transition:
    opacity 100ms ease-in,
    visibility 0ms 100ms;
}

.gnav li:hover .megaMenu {
  visibility: visible;
  opacity: 1;
  transition: opacity 200ms ease-in;
}

.megaMenuInner {
  display: flex;
  padding: 40px;
  margin-top: 20px;
  background: #fff;
}

.megaMenuTitle {
  padding: 0px 40px 0px 0px;
  font-size: 1.25rem;
  font-weight: bold;
  border-right: 1px solid #ccc;
}

.megaMenuTitle::after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-left: 1em;
  background: url(/nmij/commons/img/icon_megamenu_arrow.svg) no-repeat center;
  background-size: contain;
}

.megaMenuChild {
  padding: 0;
  margin-left: 45px;
}

.megaMenuChild a {
  display: block;
}

.megaMenuChild span {
  font-size: 0.8em;
}

.megaMenuChild li:not(:first-child) {
  margin-top: 1rem;
}

/* ---------- スマホメニュー用ボタン ---------- */
.spNavBtn {
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
}

.spNavBtnBar {
  display: block;
  width: 100%;
  height: 3px;
  margin: 6px 0;
  background-color: var(--color-secondary);
}

.spNavBtnTxt {
  display: block;
  font-size: 14px;
}

/* ---------- スマホメニュー ---------- */
.spNavWrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow-y: scroll;
  overscroll-behavior: none;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  transition:
    translate 400ms ease,
    visibility 0ms 400ms;
  translate: 0 -100%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
@media screen and (max-width: 48em) {
  .spNavWrapper {
    display: block;
  }
}

.spNavWrapper.open {
  visibility: visible;
  transition: translate 400ms ease;
  translate: 0 0;
}

.spNavWrapper a {
  color: #fff;
}

.spNavHeader {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding: 16px;
  padding-right: 51px;
  font-size: 0.875rem;
}

.spNavHeader .spNavBtn {
  position: absolute;
  top: 16px;
  right: 16px;
  flex: 0 0 auto;
  margin-left: auto;
}

.spNavHeader a {
  text-decoration: none;
}

.spNavHeader a:hover {
  color: #fff100;
}

.spNav,
.spNavChild {
  padding: 0;
  margin: 0;
  list-style: none;
}

.spNav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 26.5625em) {
  .spNav {
    grid-template-columns: 1fr;
  }
}

.spNBIFull {
  grid-column: -1 / 1;
  text-align: center;
}

.spNav > li {
  padding: 20px;
  border-top: 1px solid #ccc;
}

.spNav > li:nth-of-type(odd):not(.spNBIFull) {
  border-right: 1px solid #ccc;
}

.spNavChild li:not(:first-of-type) {
  margin-top: 0.5em;
}

.spNavTitle {
  margin-bottom: 18px;
  font-size: 1rem;
  font-weight: bold;
}

.spNavTitle a {
  color: #fff;
}

.spNavChild a {
  color: #c1c6c9;
}

.spNavChild a:hover {
  color: #fff;
}

.spNavfSubNav {
  padding: 40px 16px;
  font-size: 0.75rem;
}

.spNavfSubNav ul {
  display: flex;
  gap: 8px 16px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.spNavLogo {
  width: 70%;
  padding: 0 16px;
  margin: 0 auto;
  text-align: center;
}

.spNavCopy {
  padding: 0 16px;
  margin: 10px 0;
  font-size: 0.75rem;
  color: #c9caca;
  text-align: center;
}
/* === ヘッダー (End) ================================ */

/* === フッター (Start) ============================== */
.footer {
  margin-top: 90px;
  line-height: 1.3;
  background-color: var(--color-nav-background);
}

.footerInner {
  max-width: var(--max-width-content);
  padding: 0 16px;
  margin: 0 auto;
}

.pageTop {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 48em) {
  .pageTop img {
    width: 56px;
  }
}

.fNav {
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}
@media screen and (max-width: 48em) {
  .fNav {
    display: none;
  }
}

.fNav > li {
  flex: 1 0 0;
}

.fNav li {
  list-style: none;
}

.fNav a {
  color: #c1c6c9;
}

.fNav a:hover {
  color: #fff;
}

.fNavTitle {
  display: flex;
  align-items: center;
  min-height: 3.75rem;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.fNavTitle a {
  color: #fff;
}

.fNavChild {
  padding: 0;
  margin: 0;
}

.fNavChild li:not(:first-of-type) {
  margin-top: 1em;
}

.fSubNav {
  display: flex;
  gap: 0 2em;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.fSubNav a {
  font-size: 0.75rem;
  color: #fff;
}

.fLogo {
  text-align: center;
}

.footerCopyNMIJ p {
  margin: 0 0 46px 0;
  font-size: 0.875rem;
  line-height: 1.3;
  color: #c9caca;
  text-align: center;
}

.footerCopy {
  padding: 28px 0;
  color: #414549;
  text-align: center;
  background: #fff;
}

.fLogoAIST {
  margin-bottom: 28px;
}

.footerCopyAIST p {
  font-size: 0.75rem;
  line-height: 1.3;
}
/* === フッター (End) ================================ */

/* === パンくずリスト (Start) ================================ */
.breadcrumbs {
  margin-top: 16px;
  margin-bottom: 80px;
  line-height: 1.3;
}
@media screen and (max-width: 48em) {
  .breadcrumbs {
    margin-bottom: 40px;
  }
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  padding: 0 0 8px;
  margin: 0;
  overflow-x: auto;
  font-size: 0.8125rem;
  list-style: none;
}

.breadcrumbs li {
  flex: 0 0 auto;
}

.breadcrumbs li:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 0 0.7em;
  vertical-align: -0.1em;
  background: url(/nmij/commons/img/icon_pankuzu_arrow.svg) no-repeat center;
  background-size: contain;
}

.breadcrumbs a {
  color: var(--color-text);
}

.breadcrumbs a:hover {
  color: var(--color-link);
}
/* === パンくずリスト (End) ================================== */

/* === 下層ページ レイアウト (Start) ================================== */
.pageWrapper {
  /* margin-bottom: 290px; */
  margin-bottom: 150px;
}

.pageMain .pageSection {
/* .pageMain .pageSection + .pageSection { */
  margin-top: 80px;
}

.pageMain .pageTitle_h1 + .pageSection {
  margin-top: 0;
}

.twoColumnWrapper {
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 48em) {
  .twoColumnWrapper {
    flex-direction: column;
    gap: 32px;
  }
}

.twoColumnWrapper .pageMain {
  flex: 1 0 0;
  /* これがないと画面幅を小さくしてもtableが縮まらない */
  min-width: 1px;
}

.twoColumnWrapper .sidebar {
  flex: 0 1 25%;
  line-height: 1.3;
}
@media screen and (max-width: 48em) {
  .twoColumnWrapper .sidebar {
    order: -1;
  }
}
@media print {
  .twoColumnWrapper .sidebar {
    display: none;
  }
}
/* === 下層ページ レイアウト (End) ==================================== */

/* === 2階層目 ボックスリンク (Start) ================================== */
.lowerContBox {
  max-width: 25rem;
  height: 100%;
  margin: 0 auto;
  pointer-events: none;
  background-color: #fff;
  transition: background-color 500ms;
}

.lowerContBox .lcbImg {
  text-align: center;
}

.lowerContBox .lcbImg img {
  width: 100%;
}

.lowerContBox a {
  display: block;
  height: 100%;
  padding: 20px;
  color: var(--color-text);
  text-decoration: none;
  pointer-events: auto;
}

.lowerContBox a:hover {
  color: var(--color-link);
}

.lowerContBox:hover {
  background-color: rgba(220, 235, 248, 0.5);
}

.lowerContTitle {
  position: relative;
  height: 2.5em;
  padding-right: 1.8em;
  /* font-size: 1.5rem; */
  font-size: clamp(1.25rem, 0.5rem + 1.56vw, 1.5rem);
  line-height: 1;
  background: url(/nmij/commons/img/icon_arrow_right_s.svg) no-repeat right top;
  background-size: 1.8em;
}

.lowerContSubTitle {
  font-size: 1rem;
}
/* === 2階層目 ボックスリンク (End) ==================================== */

/* === 下層ページ 見出し (Start) ================================== */
.pageTitle_h1 {
  margin-top: 0;
  margin-bottom: 50px;
  /* font-size: 1.875rem; */
  font-size: clamp(1.5rem, 1.035rem + 1.75vw, 1.875rem);
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 48em) {
  .pageTitle_h1 > .imgTitle {
    height: 2rem;
  }
}

.pageTitle_h2 {
  padding-bottom: 0.25em;
  margin-bottom: 1.5em;
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: 8px solid #0092d7;
  border-image: linear-gradient(45deg, var(--color-primary) 0%, var(--color-secondary) 50%);
  border-image-slice: 1;
}

.pageTitle_h3 {
  margin-bottom: 0.5em;
  font-size: 1.125rem;
  font-weight: bold;
  color: #004f78;
}

.pageTitle_h4 {
  margin: 0.5em 0;
  font-size: 1rem;
  font-weight: bold;
}

.pageTitle_h4::before {
  content: "■";
  margin-right: 0.25em;
  font-size: 1.5em;
  color: var(--color-primary);
}
/* === 下層ページ 見出し (End) ==================================== */

/* === 下層ページ サイドバー (Start) ================================== */
.sidebar summary {
  display: block;
}

.sidebar summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを削除 */
  display: none;
}

.sidebar summary + * {
  overflow: hidden;
}

.sidebarDetails summary:focus {
  outline-offset: -5px;
}

.sidebarDetails a:focus {
  outline-offset: -10px;
}

/* ----- サイドバー全体の開閉ボタン ----- */
.sidebarBtn {
  display: none;
  padding: 1em;
  text-align: center;
  cursor: pointer;
  background: url(/nmij/commons/img/icon_sidebar_g_plus.svg) no-repeat right 1em center;
  background-size: 1.5em;
  border: 1px solid #c1c6c9;
  transition: background-color 200ms;
}
@media screen and (max-width: 48em) {
  .sidebarBtn {
    display: block;
  }
}

.sidebarDetails[open] .sidebarBtn {
  background-color: #efefef;
  background-image: url(/nmij/commons/img/icon_sidebar_g_minus.svg);
}

.sidebarNav {
  font-size: 1rem;
}

.sidebarNav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  background-color: #dcebf8;
}

.sidebarNav .snSecond {
  background-color: #efefef;
}

.sidebarNav > ul > li {
  border-bottom: 1px solid #fff;
}

.sidebarNav .sidebarNavChild {
  padding-left: 1em;
  background-color: #efefef;
}

.sidebarNav .summaryInner {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.sidebarNav a {
  display: block;
  flex: 1 0 0;
  padding: 1.8em 3.5em 1.8em 1em;
  color: var(--color-text);
  text-decoration: none;
  background: url(/nmij/commons/img/icon_sidebar_b.svg) no-repeat right 1em center;
  background-size: 1.5em;
  transition-duration: 200ms;
  transition-property: color, background-color;
}

.sidebarNav .snSecond a {
  background-image: url(/nmij/commons/img/icon_sidebar_g.svg);
}

.sidebarNav .sidebarNavChild a {
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 0.5em;
}

.sidebarNav li.active > a,
.sidebarNav a:hover,
.sidebarNav .sidebarNavChild a:hover,
.sidebarNav .sidebarNavChild li.active > a {
  color: #fff;
  background-color: var(--color-secondary);
  background-image: url(/nmij/commons/img/icon_sidebar_w.svg);
}

.sidebarNav .snSecond a:hover {
  background-color: #414549;
}

.sidebarNav li.active .summaryInner a {
  color: #fff;
  background-color: var(--color-secondary);
}

.sidebarNav .summaryIcon {
  position: absolute;
  top: auto;
  right: 0;
  display: block;
  width: 3.5em;
  height: 100%;
  background: url(/nmij/commons/img/icon_sidebar_g_plus.svg) no-repeat center;
  background-size: 1.5em;
}

.sidebarNav .summaryIcon:hover {
  background-color: #00000033;
}

/* 画像をプレロードしておく */
.sidebarNav .summaryIcon::after {
  content: "";
  background-image: url(/nmij/commons/img/icon_sidebar_g_minus.svg);
}

.sidebarNav details[open] > summary .summaryIcon {
  background-image: url(/nmij/commons/img/icon_sidebar_g_minus.svg);
}

.sidebarContent {
  margin-top: 40px;
}
@media screen and (max-width: 48em) {
  .sidebarContent {
    display: none;
  }
}

.sidebarContent .sidebarContentTitle {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-secondary);
}

.sidebarContent p {
  margin: 0 0 0.75em 0;
  font-size: 0.9375rem;
}
/* === 下層ページ サイドバー (End) ==================================== */

/* === 汎用テーブル (Start) ==================================== */
/* ---------- テーブルテーマカラー ---------- */
.table.tableGreen {
  --table-color-light: var(--color-text);
  --table-bg-color-light: #cfe9e1;
  --table-color-dark: #fff;
  --table-bg-color-dark: #159da2;
}

.table.tableBlueGreen {
  --table-color-light: var(--color-text);
  --table-bg-color-light: #cddee1;
  --table-color-dark: #fff;
  --table-bg-color-dark: #63989e;
}

.tableWrapper {
  margin: 0 0 3rem;
  overflow-x: auto;
}
@media print {
  .tableWrapper {
    overflow-x: visible;
  }
}

.tableWrapper > .table {
  min-width: 800px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.3;
}

.table.tableStriped > tbody > tr:nth-of-type(even) {
  background-color: #f9f9f9;
}

.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td {
  padding: 0.75em 1em;
  border: 1px solid #c1c6c9;
}

.table.dataTable > thead > tr > th,
.table.dataTable > thead > tr > td,
.table.dataTable > tbody > tr > th,
.table.dataTable > tbody > tr > td {
  padding: 0.5em 0.75em;
  text-align: center;
}

.table > thead > tr > th,
.table > tbody > tr > th {
  font-weight: normal;
}

.table caption {
  padding: 0.75em 2em;
  text-align: left;
}

.table p {
  line-height: 1.3;
}

.table .bgLight {
  color: var(--color-light, #231815);
  background-color: var(--table-bg-color-light, #eee);
}
.table .bgDark {
  color: var(--table-color-dark, #fff);
  background-color: var(--table-bg-color-dark, #777);
}

/* 列の幅をテキストに合わせる */
.table .tableNowrap {
  width: 0;
  text-align: center;
  white-space: nowrap;
}

.table .dtNum {
  text-align: center;
  font-weight: bold;
}

.tableTitle {
  margin: 0 0 0.5em 0;
  font-size: 1rem;
  font-weight: bold;
}

.tableAnnotation {
  margin-bottom: 0.5em;
  font-size: 0.875rem;
  line-height: 1.3;
}

.tableWrapper figcaption {
  margin: 0.75em 0;
  font-size: 0.875rem;
}
/* === 汎用テーブル (End) ====================================== */

/* === スケジュール用テーブル (Start) ==================================== */
.tableSchedule {
  width: 100%;
}

.tableSchedule th,
.tableSchedule td {
  padding: 1rem 0.5rem;
}

/* 幅を文字列の幅にする */
.tableSchedule .time {
  width: 0;
  vertical-align: top;
  white-space: nowrap;
}
/* === スケジュール用テーブル (End) ====================================== */

/* === お知らせ用リスト (Start) ==================================== */
.newsListTitle {
  padding-bottom: 20px;
  margin: 0;
  text-align: center;
  border-bottom: 1px solid #023131;
}

.newsList {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.newsList li {
  display: grid;
  grid-template-columns: minmax(auto, 1fr) 2fr;
  gap: 0 16px;
  padding: 16px;
  border-bottom: 1px dotted #023131;
}
@media screen and (max-width: 48em) {
  .newsList li {
    grid-template-columns: 1fr;
  }
}
/* === お知らせ用リスト (End) ====================================== */

/* === その他共通スタイル (Start) ============================== */
.borderedList {
  padding: 0;
  margin: 0;
  list-style: none;
}

.borderedList > li {
  padding-bottom: 30px;
  border-bottom: 1px solid #c1c6c9;
}

.borderedList > li:not(:first-of-type) {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 0.5em 2em;
  width: fit-content;
  color: #fff;
  background-color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  text-decoration: none !important;
}

.btn:hover {
  color: var(--color-secondary);
  background-color: #fff;
}

.btn2 {
  position: relative;
  display: inline-block;
  padding: 0.5em 2em;
  width: fit-content;
  color: var(--color-secondary);
  background-color: #ffffff;
  border: 1px solid var(--color-secondary);
  text-decoration: none !important;
  transition: background-color 0.5s;
}

.btn2::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 0.8em;
  height: 0.8em;
  color: #ffffff;
  content: "";
  background: url(/nmij/commons/img/icon_nav_arrow_r.svg) no-repeat center;
  background-size: contain;
  opacity: 0;
  transition: right 0.5s;
  translate: 0 -50%;
}

.btn2:hover {
  color: #ffffff;
  background-color: var(--color-secondary);
}

.btn2:hover::after {
  right: 8px;
  opacity: 1;
}

.btnMore {
  position: relative;
  display: inline-block;
  padding-left: 1.7em;
  color: var(--color-text);
  line-height: 1.3;
}

.btnMore:hover {
  color: var(--color-link);
  text-decoration: none;
}

.btnMore::before,
.btnMore::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1.2em;
  height: 1.2em;
  background: url(/nmij/commons/img/icon_readmore_h.svg) no-repeat center 0px;
  background-size: contain;
  translate: 0 0;
}

.btnMore::after {
  background-image: url(/nmij/commons/img/icon_readmore.svg);
}

.btnMore:hover::after {
  opacity: 0;
}

.btnEmail {
  display: block;
  width: max-content;
  padding: 1em 2em;
  font-size: 0.875rem;
  border: 1px solid #ccc;
}

.btnEmail::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  vertical-align: middle;
  background: url(/nmij/commons/img/icon_email.svg) no-repeat center 0px;
  background-size: contain;
}

.iconPdf {
  padding-right: 1.4em;
  background: url(/nmij/commons/img/icon_pdf.svg) no-repeat right 0.2em center;
  background-size: contain;
}

.iconOpenNew {
  padding-right: 1.4em;
  background: url(/nmij/commons/img/icon_open_in_new_blue.svg) no-repeat right 0.2em center;
  background-size: contain;
}

.nmijBorder {
  margin-top: 2em;
  margin-bottom: 2em;
  border-bottom: 4px solid var(--color-secondary);
  border-image: linear-gradient(45deg, var(--color-primary) 0%, var(--color-secondary) 50%) 1;
}
/* === その他共通スタイル (End) ================================ */
