@charset "utf-8";
/* CSS Document */

.notice{
	font-size: 1.4rem;
}
.notice.txt_ind{
	text-indent: -1em;
	padding-left: 1em;
}

.blank_icon::after{
	content: "\f24d";
	font-family: fontawesome;
	font-size: 70%;
	margin: 0 3px;
}

a.text_link{
    color: #16378A;
    text-decoration: underline;
}
a.text_link:hover{
    text-decoration: none;
}

h3{
	font-size: 2.2rem;
}
.hd03{
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}
.hd03-bordered{
    font-size: 1.8rem;
    font-weight: 600;
    text-align: left;
	margin: 46px 0 16px;
    padding: 8px 10px;
    background: #F4F4F4;
    border-left: 8px solid #16378A;
}
p + .hd03{
	margin-top: 56px;
}

p + p{
	margin-top: 1em;
}

.decimal,
.decimal li{
	list-style: decimal;
	text-align: left;
}
.decimal{
	padding-left: 1.2em;
}
/* Safari */
_::-webkit-full-page-media, _:future, :root .decimal{
	padding-left: 1.6em;
}
.decimal li{
	padding-left: 6px;
}
.decimal li + li{
	margin-top: 1em;
}

@media screen and (max-width: 767px) {
	.hd01 {
		font-size: 2.4rem;
	}
	h3{
		font-size: 1.8rem;
	}
}


/* table
--------------------------------------------------------------------------- */
.scroll.tableStyle01{
	margin: 16px 0 40px;
    overflow: auto;
}

.tableStyle01{
	border-collapse		: separate;
	*border-collapse	: collapse;
	border-spacing		: 0;
	empty-cells			: show;
	width: 100%;
	margin: 0;
}
.scroll .tableStyle01{
	width: 950px;
}

	.tableStyle01,
	.tableStyle01 th,
	.tableStyle01 td{
		border: 1px solid #707070;
		border-collapse: collapse;
	}
	.tableStyle01 th,
	.tableStyle01 td {
		font-weight		: normal;
		padding			: 12px 20px;
		background		: #fff;
		text-align		: left;
		vertical-align: baseline;
	}
	.tableStyle01 tr th{
		background-color: #F4F4F4;
		text-align: center;
	}
	.tableStyle01 tr td ul,
	.tableStyle01 tr td ul li{
		list-style: disc;
	}
	.tableStyle01 tr td ul{
		padding-left: 1.5em;
	}

@media screen and (max-width: 768px) {
	.tableStyle01 th,
	.tableStyle01 td{
		font-size: 1.4rem;
		padding: 10px 15px;
	}
}
@media screen and (max-width: 478px) {
	.tableStyle01 tr{
		display: table-row;
	}
	
	.tableStyle01 tr:first-child td{
		border: 1px solid #707070;
	}
	
	.tableStyle01 tr th{
		border: 1px solid #707070;
		padding-bottom: 12px;
	}
	.tableStyle01 tr td{
		padding-top: 12px;
	}
}

/* graphStyle01
--------------------------------------------------------------------------- */

.graphStyle01 + .graphStyle01{
	margin-top: 60px;
}


/* ir-tab
--------------------------------------------------------------------------- */

.tabBtn_area{
	position: relative;
	display: flex;
	border-bottom: 2px solid #16378A;
}

.tabBtn_area > ul{
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0 0 0 auto;
}

/* liが2つの場合 */
.tabBtn_area > ul:has(> :nth-child(2)) li {
	width: calc((100% - 1%) / 2);
}
/* liが3つの場合 */
.tabBtn_area > ul:has(> :nth-child(3)) li {
	width: calc((100% - 2%) / 3);
}
/* liが4つの場合 */
.tabBtn_area > ul:has(> :nth-child(4)) li {
	width: calc((100% - 3%) / 4);
}

.tabBtn_area > ul > li > a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
	background-color: #CFD6E7;
	border: 2px solid #16378A;
	border-bottom: none;
    color: #16378A;
    padding: 5px 10px 7px;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    transition: all .3s;
    line-height: 1.3;
}

.tabBtn_area > ul > li > a:hover{
	text-decoration: none;
	opacity: 0.8;
}

.tabBtn_area > ul > li > a.active{
	background-color: #16378A;
	color: #fff;
}

.tabBtn_area > p.more{
	max-width: 85px;
    width: 100%;
	margin-left: 27px;
}

.tabBtn_area > p.more > a{
	display: block;
	background-color: #767676;
	border-radius: 3px;
	color: #fff;
	font-size: 1.1rem;
	padding: 5px 15px;
	transition: all.3s;
}
.tabBtn_area > p.more > a.btn_calendar{
	display: none;
}

.tabBtn_area > p.more > a:hover{
	text-decoration: none;
	opacity: 0.8;
}

.tabItem_area .s_eirList_item:first-child{
	border-top: none;
}

.tabItem{
	display: none;
}

.tabItem.show{
	display: block;
}

@media screen and (max-width: 950px){
	.tabBtn_area > ul > li > a{
		font-size: 1.9vw;
	}
}
@media screen and (max-width: 768px){
	.tabBtn_area {
		border-bottom: none;
	}
	/* liが2つの場合 */
	.tabBtn_area > ul:has(> :nth-child(2)) {
		position: relative;
	}
	/* liが2つの場合 */
	.tabBtn_area > ul:has(> :nth-child(2))::after {
		content: '';
		width: calc(100vw - 40px);
		height: 2px;
		background-color: #16378A;
		position: absolute;
		bottom: -2px;
		left: 0;
		right: 0;
	}
	/* liが3つまたは4つの場合 */
	.tabBtn_area > ul:has(> :nth-child(3)),
	.tabBtn_area > ul:has(> :nth-child(4)) {
		flex-wrap: wrap;
	}
	/* liが3つまたは4つの場合 */
	.tabBtn_area > ul:has(> :nth-child(3))::after,
	.tabBtn_area > ul:has(> :nth-child(4))::after {
		content: none;
	}
	/* liが3つまたは4つの場合 */
	.tabBtn_area > ul:has(> :nth-child(3)) li,
	.tabBtn_area > ul:has(> :nth-child(4)) li {
		height: 54px;
		width: calc((100% - 1%) / 2);
	}
	/* liが3つまたは4つの場合 */
	.tabBtn_area > ul:has(> :nth-child(3)) li a,
	.tabBtn_area > ul:has(> :nth-child(4)) li a {
		border-bottom: 2px solid #16378A;
	}
	/* liが3つまたは4つの場合 */
	.tabBtn_area > ul:has(> :nth-child(3)) li:nth-child(n+3),
	.tabBtn_area > ul:has(> :nth-child(4)) li:nth-child(n+3) {
		margin-top: 1%;
	}
	.tabBtn_area > ul > li > a{
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 420px){
	.tabBtn_area > ul > li > a{
        font-size: 3.7vw;
	}
}