/* TOPページCSS */
/* お知らせ */
.newsBlock {
	display: flex;
	justify-content: center;
}
.newsBlock > .col {
	width: 50%;
	max-width: 1000px;
	padding: 0 0 22px;
}
.newsBlock .newsTabBoxWrap {
	position: relative;
}
.newsBlock .newsTabBoxWrap .tabTtl {
	display: flex;
	padding-bottom: 10px;
}
.newsBlock .newsTabBoxWrap .tabTtl li {
	flex: 1;
}
.newsBlock .newsTabBoxWrap .tabTtl li + li {
	padding-left: 1px;
}
.newsBlock .newsTabBoxWrap .tabTtl li a {
	background-color: #e9f3fb;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
	text-decoration: none;
	width: 100%;
	height: 70px;
}
.newsBlock .newsTabBoxWrap .tabTtl li .selected,
.newsBlock .newsTabBoxWrap .tabTtl li a:hover {
	background-color: #004ea2;
	color: #fff;
}
.newsBlock .newsTabBoxWrap .tabTtl li .selected:after,
.newsBlock .newsTabBoxWrap .tabTtl li a:hover:after {
	border-style: solid;
	border-width: 15px 14px 0 14px;
	border-color: #004ea2 transparent transparent transparent;
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin-left: -14px;
	position: absolute;
	left: 50%;
	top: 100%;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap {
	margin-top: 10px;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap > div {
	display: none;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap > div:first-child {
	display: block;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap .newsList {
	border-top: 1px solid #e0e0e0;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap .newsList li {
	border-bottom: 1px solid #e0e0e0;
	padding: .5rem 1rem;
  height: 6rem;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap .newsList li .dateWrap {
	position: relative;
	margin-bottom: 8px;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap .newsList li.new .dateWrap:after {
	background-color: #fd3c34;
	content: "NEW";
	color: #fff;
	display: inline-block;
	font-size: 12px;
	width: 40px;
	height: 18px;
	line-height: 18px;
	text-align: center;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap .newsList li.ended .dateWrap:after {
	background-color: #595757;
	content: "終了";
	color: #fff;
	display: inline-block;
	font-size: 12px;
	width: 32px;
	height: 18px;
	line-height: 18px;
	text-align: center;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap .newsList li .dateWrap .date {
	color: #595757;
	display: inline-block;
	margin-right: 20px;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap .newsList li .dateWrap .category {
	border: 1px solid #000;
	display: inline-block;
	font-size: 12px;
	width: 60px;
	height: 18px;
	line-height: 16px;
	margin-right: 10px;
	text-align: center;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap .newsList li .dateWrap .category01 {
	border-color: #bf6be3;
	color: #bf6be3;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap .newsList li .dateWrap .category02 {
	border-color: #e3a754;
	color: #e3a754;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap .newsList li .dateWrap .category03 {
	border-color: #004ea2;
	color: #004ea2;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap .newsList li .dateWrap .category04 {
	border-color: #6eba44;
	color: #6eba44;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap .newsList li a {
	color: #595757;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap .newsList li a:after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-left: 8px;
	vertical-align: middle;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap .newsList li a.pdf:after {
	background-image: url(/common/images/icon/icn_pdf.png);
	width: 17px;
	height: 20px;
	margin-left: 5px;
}
@media screen and (max-width: 767px){
.newsBlock {
	display: block;
	padding: 15px 0 20px;
}
.newsBlock > .col:nth-of-type(1),
.newsBlock > .col {
	width: 100%;
	padding: 0 15px;
}
.newsBlock > .col:nth-of-type(2) {
	border-top: 1px solid #e0e0e0;
	border-left: none;
	margin-top: 35px;
	padding: 25px 16px 0;
}
.newsBlock .ttlNews {
	margin-bottom: 27px;
	text-align: center;
}
.newsBlock .ttlNews .jpTtl {
	font-size: 28px;
}
.newsBlock .ttlNews .enTtl {
	margin-top: 10px;
}
.newsBlock .newsTabBoxWrap .tabTtl li a {
	font-size: 12px;
	height: 56px;
}
.newsBlock .newsTabBoxWrap .tabContentsWrap .newsList li {
  padding: 0.75rem;
  height: 8rem;
}
}
/* TOPのカード */
#ir_top .card{
	position: relative;
}
#ir_top .card div{
	position: absolute;
	bottom: 0;
	color: #fff;
	background: #595757a3;
	display: block;
	width: 100%;
}
#ir_top .card :hover{
	opacity: 0.8;
}
/* 下のその他メニュー */
.card_small {
	position: relative;
    width: 100%;
	border: #004ea2 solid 2px;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    margin-top: 1rem;
}
.card_small:hover {
  background-color: #1a4999;
}
.card_small:hover p {
  color: #fff;
}


/* サブページCSS 一覧*/
#ir_contents .ir_card{
	position: relative;
}
#ir_contents .ir_card div{
	position: absolute;
	inset: 0;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.5rem;
	text-align: center;
}
#ir_contents .ir_card img{
filter: brightness(85%);
}
#ir_contents .card :hover{
	opacity: 0.8;
}
@media screen and (max-width: 767px){
	#ir_contents .ir_card div{
		font-size: 1.5rem;
	}
}

/* サブページCSS 資料画面*/
/* プルダウン */
#yearSelect{
	padding: 4px 18px;
	font-size: 1.2rem;
}
.indent.ml1 li{
	font-size: 1.2rem;
	margin-bottom: 0.25rem;
}
.indent.ml1 li a{
	border: none !important;
}
.indent.ml1 li::before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.indent.ml1 li::before { content: "\f63e"; }
.indent.ml1 li {
	margin:0 0 0 2em;
	padding: 0 0 0 0em;
	text-indent: -3em;
}
.indent.ml1 li:before {
	color: #ff0000;
	margin: 0;
	padding: 0 1em 0 1em;
	text-indent: 0;
}

/* 小見出し */
	.h3_universal, .h3_universal::before, .h3_universal::after,
	.h4_universal, .h4_universal::before, .h4_universal::after {
	all: initial !important;
	content: '' !important;
}
.h3_universal {
	display: flex !important;
	align-items: center !important;
	padding: 0.5em 0.5em calc(0.5em - 6px) !important;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	background-color: #f0f0f0 !important;
	color: #333333 !important;
	font-size: 1.4rem !important;
	font-weight: bold !important;
	margin-bottom: 2em !important;
	margin-top: 2em !important;
}
.h3_universal::before {
	display: inline-block !important;
	width: 5px !important;
	height: 1.5em !important;
	margin-right: .5em !important;
	background-color: #004ea2 !important;
	content: '' !important;
}
.h4_universal {
	all: unset !important;
	font-weight:bold!important;
	font-size: 22px !important;
	display: block !important;
	position: relative !important;
	padding-left: 25px !important;
	color: #000 !important;
	margin-bottom: 2em !important;
	margin-top: 2em !important;
}
.h4_universal::before {
	position: absolute !important;
	left: 10px !important;
	top: -0.5px !important;
	transform: rotate(90deg) !important;
	border-bottom: solid 18px #004ea2 !important;
	border-top: solid 18px transparent !important;
	border-left: solid 7px transparent !important;
	border-right: solid 7px transparent !important;
}
.h4_universal::after {
	position: absolute !important;
	left: -3.5px !important;
	top: 12.5px !important;
	transform: rotate(90deg) !important;
	color: white !important;
	border-top: solid 5px transparent !important;
	border-bottom: solid 5px currentColor !important;
	border-left: solid 7px transparent !important;
	border-right: solid 7px transparent !important;
}

/* CSR */
.h4_line_thick {
  font-size: 1.1rem;
  font-weight: 600;
  padding-bottom: 6px;
  margin-top: 1.8em;
  margin-bottom: 0.7em;
  border-bottom: 2px solid #004ea2;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.force-list ol {
  list-style: decimal !important;
  margin-left: 1.5em;
  padding-left: 0.2em;
}
.force-list ol li {
  list-style: decimal !important;
  margin-bottom: 0.8em;
  line-height: 1.6;
}
.force-list ul {
  list-style: disc !important;
  margin-left: 1.5em;
  padding-left: 0.2em;
}
.force-list ul li {
  list-style: disc !important;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.force-list li {
  font-size: 1.05rem;
}
/* 全体コンテナ */
.gov-container {
  padding: 25px;
  max-width: 1024px;
  margin: 0 auto;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  color: #333;
  line-height: 1.8;
  background: #f9f9f9;
}
/* 章タイトル */
.gov-section {
  background: #fff;
  padding: 50px 40px;
  margin-bottom: 60px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.gov-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 35px;
  padding: 12px 15px;
  border-radius: 8px;
  background: #e8f0fe;
  border-left: 6px solid #004ea2;
  color: #004ea2;
}
/* ラベル（目的など） */
.gov-label {
  font-weight: 700;
  color: #004ea2;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
/* 条文リスト */
.gov-article-list {
  padding-left: 30px;
  margin-bottom: 30px;
  list-style: decimal;
}
.gov-article-list > li {
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.9;
  padding-left: 10px;
  position: relative;
}
/* 第〇条の表示 */
.gov-article-list > li::marker {
  content: "第" counter(list-item) "条 ";
  font-weight: bold;
  color: #004ea2;
  font-size: 1.05rem;
}
/* サブ条文リスト */
.gov-subarticle-list {
  padding-left: 30px;
  margin-top: 18px;
  border-radius: 6px;
  padding: 12px 15px;
}
.gov-subarticle-list > li {
  margin-bottom: 14px;
  line-height: 1.8;
  list-style-type: disc;
  color: #444;
}
/* リンク */
.gov-article-list a {
  color: #1a73e8;
  text-decoration: underline;
}
/* フットノート */
.gov-footnotes {
  background: #fff;
  padding: 40px 35px;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}
.gov-footnote-block {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem 1.8rem;
  margin-bottom: 2rem;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  border-left: 5px solid #1a73e8;
}
.gov-footnote-block h3 {
  font-size: 1.35rem;
  margin-bottom: .8rem;
  color: #004ea2;
  font-weight: 700;
}
.gov-footnote-block p {
  margin-bottom: .7rem;
  line-height: 1.7;
}
.gov-digit-list {
  margin-left: 1.2rem;
  padding-left: 0;
}
.gov-digit-list > li {
  list-style-type: decimal;
  margin-bottom: .6rem;
  line-height: 1.7;
  padding-left: .3rem;
}
/* 小項目番号（丸付きなど） */
.gove_kihon_kakko {
  counter-reset: kakko;
  margin-left: 1.2rem;
  padding-left: 0;
}
.gove_kihon_kakko > li {
  list-style: none;
  counter-increment: kakko;
  margin-bottom: .5rem;
  line-height: 1.6;
}
.gove_kihon_kakko > li::before {
  content: "(" counter(kakko) ")";
  font-weight: 600;
  margin-right: .4rem;
}
.gove_kihon_dot > li {
  list-style-type: disc;
  margin-left: 1.1rem;
  margin-bottom: .4rem;
}
/* 注釈 */
.gov-note-only {
  counter-reset: note-counter;
  list-style: none;
  padding-left: 1.5em;
}
.gov-note-only li {
  counter-increment: note-counter;
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 2em;
}
.gov-note-only li::before {
  content: "（注" counter(note-counter) "）";
  position: absolute;
  left: -20px;
  font-weight: bold;
  color: #333;
}
/* --- 目次ナビゲーション --- */
.gov-index {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  margin-bottom: 40px;
}
.gov-index h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #004ea2;
}
.gov-index-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.gov-index-list li {
  margin-bottom: 15px;
  padding: 12px 15px;
  border-left: 4px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  background: #f9f9f9;
}
.gov-index-list li:hover {
  border-left: 4px solid #004ea2;
  background: #e8f0fe;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.gov-index-list li::before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.gov-index-list li a {
  display: block;
  font-size: 1.05rem;
  color: #1a1a1a;
  padding-left: 30px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.gov-index-list li a:hover {
  color: #004ea2;
}
.text_area {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  line-height: 1.8;
  color: #333;
  background: #fefefe;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* モバイル対応 */
@media (max-width: 768px) {
  .gov-section-title {
    font-size: 1.6rem;
    padding: 8px 10px;
  }
  .gov-label {
    font-size: 1rem;
  }
  .gov-article-list {
    padding-left: 20px;
  }
  .gov-subarticle-list {
    padding-left: 20px;
  }
  .text_area {
    padding: 20px 15px;
  }
  .subheadline h2 {
    font-size: 1.25rem;
    padding: 8px 12px;
  }
  .dl_common dt {
    font-size: 1rem;
  }
  .dl_common dd {
    font-size: 0.9rem;
  }
  .gov-index-list li {
    padding: 10px 12px;
  }
  .gov-index-list li a {
    font-size: 0.95rem;
    padding-left: 28px;
  }
}

/* --- メイン見出し --- */
.headline h1 {
  font-size: 2rem;
  color: #0A4A8E;
  font-weight: 700;
  margin-bottom: 20px;
  border-left: 6px solid #0A4A8E;
  padding-left: 12px;
}

/* --- 小見出し --- */
.subheadline h2 {
  font-size: 1.5rem;
  color: #0A4A8E;
  font-weight: 700;
  margin: 40px 0 20px 0;
  border-left: 4px solid #0A4A8E;
  padding-left: 10px;
  background: #f1f6fc;
  border-radius: 8px;
  padding: 10px 15px;
}

/* --- 段落 --- */
.text_area p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #333;
}

/* --- 定義リスト --- */
.dl_common dt {
  font-weight: 700;
  margin-top: 20px;
  font-size: 1.1rem;
  color: #0A4A8E;
}
.dl_common dd {
  margin-left: 20px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #555;
}
.inquiry-btn a {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0078c8;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.inquiry-btn a:hover {
  background-color: #005fa3;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ボタンの配置*/
.inquiry-btn {
  margin-top: 12px;
  text-align: center;
}
.highlight-paragraph {
  background: #f7f9fc;
  padding: 18px 20px;
  border-radius: 6px;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #333;
}

@media (max-width: 600px) {
  .highlight-paragraph {
    padding: 16px;
    font-size: 0.95rem;
  }
}

/* IRニュース */
.newsBlock .newsTabBoxWrap .tabContentsWrap tbody td {
  border-bottom: 1px solid #e0e0e0;
  padding: .25rem;
  height: 4rem;
}

.newsBlock .newsTabBoxWrap .tabContentsWrap tbody .news_date{
  width: 15%;
  text-align: center;
}

.newsBlock .newsTabBoxWrap .tabContentsWrap tbody .news_category{
  width: 15%;
  text-align: center;
}

.newsBlock .newsTabBoxWrap .tabContentsWrap tbody .news_text{
  width: 70%;
}

@media (max-width: 768px) {
  .newsBlock .newsTabBoxWrap .tabContentsWrap tbody td {
    height: 6rem;
  }
}

.nav-text {
    min-height: 0 !important;
}