@charset "UTF-8";
@keyframes pop {
	0% {
		opacity: 0;
		transform: translateY(-30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeSlide {
	0% {
		opacity: 0;
		transform: translateY(5px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeIn_nav {
	0% {
		opacity: 0;
		z-index: -1;
	}
	1% {
		opacity: 0;
		z-index: 20;
	}
	100% {
		opacity: 1;
		z-index: 20;
	}
}
@keyframes fadeOut_nav {
	0% {
		opacity: 1;
		z-index: 20;
	}
	99% {
		opacity: 0;
		z-index: 20;
	}
	100% {
		opacity: 0;
		z-index: -1;
	}
}
/* --------------------------------------------------------
* 上書き用　override
* -------------------------------------------------------*/
/* IRニュース 共通 */
.s_eirList_item {
	border: none;
}
.s_eirList_item:last-child, .s_eirList_item:first-child {
	border: none;
}
.s_eirList_item + .s_eirList_item {
	margin-top: 16px;
}

.s_eirModule_eirItem {
	padding: 25px 20px;
	background-color: #fff;
	border-radius: 8px;
	transition: all 0.2s;
}

.eirItem_child .s_eirModule_eirItem {
	padding: 10px;
}

.s_eirList_item_date {
	margin-top: -2px;
}

.s_eirModule_date_time {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: var(--line-height-m);
	vertical-align: middle;
	font-family: var(--font-en);
}
.s_eirModule_date_time::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background-color: var(--color-prim);
	display: inline-block;
	margin-right: 8px;
	vertical-align: 1px;
}

.s_eirModule_category {
	width: auto;
}

.s_eirModule_category_icon {
	height: 24px;
	display: block;
	max-width: 100%;
	min-width: 98px;
	padding: 0 8px;
	border: 1px solid var(--color-trim);
	color: var(--color-trim);
	background-color: #fff;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 1rem;
	line-height: 22px;
	border-radius: 4px;
}

.s_eirModule_eirItem > * {
	margin-left: 30px;
}

.s_eirList_item_date + * {
	margin-left: 8px;
}

.s_eirModule_title_link,
.s_eirModule_title_label {
	color: inherit;
	line-height: var(--line-height-m);
}

.s_eirList_item:not(.s_eirList_item-space) .s_eirModule_type_figure {
	margin: 0 0 0 5px;
}

.s_eirList_item:not(.s_eirList_item-space) .s_eirModule_type_figure::before {
	display: inline-block;
	margin: 0;
}

.s_eirList_item-pdf .s_eirModule_type_figure::before {
	background: url(/en/assets/images/icon-pdf.svg) center/contain no-repeat;
	font-size: 0 !important;
	width: 14px;
	height: 16px;
}

.s_eirModule_comment {
	margin-top: 5px;
	color: #666;
	font-size: 1.2rem;
}

.s_newsTypeController {
	margin-bottom: 50px;
}

.s_yearController {
	width: 335px;
}

.s_yearController::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	border-bottom: 1px solid var(--color-trim);
	border-right: 1px solid var(--color-trim);
	z-index: 2;
}

.s_eirSelect {
	background-color: #fff;
	border-color: #e5e5e5;
	width: 100%;
}
.s_eirSelect:focus {
	outline: var(--color-trim) solid 1px;
}

.s_eirTab {
	border-bottom: none;
	flex-wrap: nowrap;
}
.s_eirTab li {
	width: 100%;
}
.s_eirTab li:not(:last-child) {
	border-right: var(--color-border) solid 1px;
}
.s_eirTab li a {
	background-color: #fafafa;
	border-radius: 0;
	color: var(--color-txt);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: var(--line-height-m);
	text-align: center;
	width: 100%;
	min-height: 72px;
	height: 100%;
	padding: 6px 10px;
}
.s_eirTab li a:hover {
	background-color: inherit;
	color: inherit;
}
.s_eirTab li.active a {
	background-color: var(--color-trim);
	color: #fff;
}
.s_eirTab li.active a::after {
	content: "";
	width: 14px;
	height: 14px;
	background: url(/en/assets/images/icon-anchor.svg) center/contain no-repeat;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 3px;
	margin: auto;
}
@media (min-width: 768px), print {
	.s_eirTab li a {
		position: relative;
		overflow: hidden;
		z-index: 2;
	}
	.s_eirTab li a::before {
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		bottom: 0;
		background-color: var(--color-prim);
		transition: all 0.2s;
		z-index: -1;
		transform: translateY(80%);
		opacity: 0;
	}
	.s_eirTab li a:hover {
		color: #fff;
	}
	.s_eirTab li a:hover::before {
		transform: translateY(0);
		opacity: 1;
	}
	.s_eirTab li.active a::after {
		width: 16px;
		height: 16px;
		bottom: 5px;
	}
}
@media (max-width: 767px) {
	.s_eirTab li {
		border-right: var(--color-border) solid 1px;
		border-bottom: var(--color-border) solid 1px;
	}
	.s_eirTab li:nth-child(n+3) {
		border-top: none;
	}
}

.eir_pdfNote_item {
	line-height: var(--line-height-m);
}

.s_eirHeading {
	font-weight: bold;
	font-size: 3.2rem;
	line-height: var(--line-height-xs);
	font-family: var(--font-sans2);
	padding: 23px 0 0 28px;
	position: relative;
	margin-bottom: 32px;
}
.s_eirHeading::before {
	content: "";
	width: 12px;
	height: 58px;
	background-color: var(--color-txt-link);
	border-left: var(--color-prim) solid 4px;
	border-right: #b7010e solid 4px;
	position: absolute;
	left: 5px;
	top: 0;
	transform: skewX(-10deg) translate3d(0, 0, 0);
}
.s_eirHeading > span {
	line-height: 1;
}

.eirItem_size {
	color: var(--color-txt-caption);
}

@media (max-width: 767px) {
	.s_eirList_item_date {
		margin-top: 0;
	}

	.s_eirModule_eirItem > * {
		margin-left: 0;
	}

	.s_eirList_item_date + * {
		margin-left: 8px;
	}

	.s_yearController {
		width: 100%;
	}

	.s_eirTab {
		flex-wrap: wrap;
	}
	.s_eirTab li {
		width: 50%;
		margin: 0;
	}
	.s_eirTab li:nth-child(2n) {
		border-right: none;
	}
	.s_eirTab li a {
		font-size: 1.2rem;
		min-height: 53px;
	}

	.eir_pdfNote_item {
		font-size: 1.2rem;
	}
}
@media (min-width: 768px), print {
	.eirItem_title_link:hover {
		opacity: 1;
		background-color: var(--color-txt-hover);
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
	}

	.s_eirModule_title_link,
.s_eirModule_title_label {
		font-size: 1.6rem;
	}

	.s_eirHeading {
		font-size: 4rem;
		margin-bottom: 48px;
	}
	.s_eirHeading::before {
		height: 68px;
	}
}
/* トップ IRニュース */
.g-irTopNews-container .s_eirModule_eirItem {
	flex-wrap: wrap;
	padding: 25px 16px;
}
.g-irTopNews-container .s_eirModule_titleBox {
	width: 100%;
	margin: 16px 0 0;
}
@media (max-width: 767px) {
	.g-irTopNews-container .s_eirModule_eirItem {
		flex-wrap: wrap;
		padding: 20px 20px;
	}
}

/* IRトップ 最新IR資料 */
.g-irTopDoc-container .s_eirModule_eirItem {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 64px;
	border-radius: 24px;
	flex-wrap: nowrap;
	align-items: center;
	position: relative;
	z-index: 2;
	overflow: hidden;
	background-color: #fff;
	color: var(--color-txt);
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	padding: 8px 56px 8px 20px;
}
.g-irTopDoc-container .s_eirModule_eirItem::after {
	content: "";
	width: 24px;
	height: 24px;
	margin: auto;
	line-height: 1;
	color: inherit;
	background: url(/en/assets/images/icon-arrowBtn.svg) center/contain no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
}
.g-irTopDoc-container .s_eirModule_titleBox {
	font-size: 1.4rem;
	line-height: var(--line-height-m);
	margin: 0;
}
.g-irTopDoc-container .s_eirModule_title {
	font-weight: 700;
}
.g-irTopDoc-container .eirItem_size {
	font-size: 1.2rem;
}
@media (min-width: 768px), print {
	.g-irTopDoc-container .s_eirModule_eirItem {
		transition: background-color 0.2s, color 0.2s;
		min-height: 80px;
	}
	.g-irTopDoc-container .s_eirModule_eirItem::before {
		content: "";
		width: 100%;
		height: 100%;
		background-color: var(--color-prim);
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
		transform: translateX(-20%);
		opacity: 0;
		transition: all 0.2s ease-out;
	}
	.g-irTopDoc-container .s_eirModule_eirItem::after {
		width: 32px;
		height: 32px;
		transition: all 0.2s;
	}
	.g-irTopDoc-container .s_eirModule_eirItem:hover {
		color: #fff;
	}
	.g-irTopDoc-container .s_eirModule_eirItem:hover::before {
		transform: translateX(0);
		opacity: 1;
	}
	.g-irTopDoc-container .s_eirModule_eirItem:hover::after {
		filter: brightness(0) invert(1);
	}
	.g-irTopDoc-container .s_eirModule_titleBox {
		font-size: 1.6rem;
	}
	.g-irTopDoc-container .eirItem_size {
		font-size: 1.4rem;
		transition: all 0.2s ease-out;
	}
	.g-irTopDoc-container .eirItem_type {
		transition: all 0.2s ease-out;
	}
	.g-irTopDoc-container .s_eirModule_type_figure {
		vertical-align: -1.5px;
	}
	.g-irTopDoc-container a:hover .eirItem_size {
		color: #fff;
	}
	.g-irTopDoc-container a:hover .eirItem_type {
		filter: brightness(0) invert(1);
	}
}

/* IR資料室 */
.g-irLibrary-container .eir_page_file_ir_material_012 {
	margin-top: -1px;
}
.g-irLibrary-container .s_eirList {
	border-top: 1px solid #ddd;
}
.g-irLibrary-container .s_eirModule_eirItem {
	border-bottom: 1px solid #ddd;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	font-size: 1.6rem;
	padding: 14px 10px 14px 32px;
	position: relative;
	opacity: 1;
}
.g-irLibrary-container .s_eirModule_eirItem::after {
	content: "";
	width: 24px;
	height: 24px;
	margin: auto;
	line-height: 1;
	color: inherit;
	background: url(/en/assets/images/icon-arrowBtn.svg) center/contain no-repeat;
	position: absolute;
	top: 14px;
	left: 0;
}
@media (min-width: 768px), print {
	.g-irLibrary-container .s_eirModule_eirItem::after {
		width: 32px;
		height: 32px;
	}
}
@media (min-width: 768px), print {
	.g-irLibrary-container .s_eirModule_eirItem {
		transition: all 0.2s;
		font-size: 1.6rem;
		padding: 20px 10px 20px 38px;
	}
	.g-irLibrary-container .s_eirModule_eirItem::after {
		top: 16px;
	}
	.g-irLibrary-container .s_eirModule_eirItem::after {
		transition: all 0.2s;
	}
	.g-irLibrary-container .s_eirModule_eirItem:hover {
		color: var(--color-prim);
		border-color: var(--color-prim);
	}
	.g-irLibrary-container .s_eirModule_eirItem:hover::after {
		background-image: url(/en/assets/images/icon-arrowBtn_fill.svg);
		filter: none;
	}
}
.g-irLibrary-container .s_eirModule_titleBox {
	margin-top: 0;
}

/* --------------------------------------------------------
* パッケージ用 override
* -------------------------------------------------------*/
/*# sourceMappingURL=eir_override.css.map */
