@charset "UTF-8";

html.is-fixed, html.is-fixed body {
	height: 100vh;
	overflow: hidden;
}
img {
	width: 100%;
	height: auto;
}
.abox {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 5;
}
.brtab, .brsp, .pc {
	display: none;
}
@media screen and (max-width: 480px) {
	.brpc {
		display: none;
	}
	.brsp {
		display: block;
	}
}
.nserif {
	font-family: 'Noto Serif JP', serif;
}
.fin {
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 1s;
}
.fin.sin {
	opacity: 1;
	transform: translate(0, 0);
}
.loader {
	align-items: center;
	background: #041A4B;
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 999999;
}
.loader::after {
	-webkit-animation: loader 0.5s linear infinite;
	animation: loader 0.5s linear infinite;
	border: 1px solid rgba(255, 255, 255, 1);
	border-radius: 50%;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	content: "";
	height: 70px;
	width: 70px;
}
.tbar:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(243, 242, 242, 0.80);
	z-index: 2;
	top: 0;
	left: 0;
}
.tbar:after {
	content: "";
	position: absolute;
	width: 101%;
	height: 100%;
	background: rgba(87, 149, 187, 0.45);
	z-index: 1;
	top: 0;
	left: 0;
}
.eon.tbar:before {
	animation: reveal 1s ease-in-out 0s forwards;
}
.eon.tbar:after {
	animation: reveal 1s ease-in-out .25s forwards;
}
@keyframes reveal {
	0% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(0);
	}
	99% {
		transform: translateX(100%);
		opacity: 1;
	}
	100% {
		transform: translateX(100%);
		opacity: 0;
	}
}
@-webkit-keyframes loader {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes loader {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}

.pc-only {
	display: none;
}





#container * {
	box-sizing: border-box;
}
#container {
	padding-top: 50px;
}


/* -----------------------------
上下マージン
----------------------------- */
.ir__mt_la {
	margin-top: 80px;
}
.ir__mt_md {
	margin-top: 45px;
}
.ir__mt_sm {
	margin-top: 30px;
}

.ir__mb_la {
	margin-bottom: 80px;
}
.ir__mb_md {
	margin-bottom: 45px;
}
.ir__mb_sm {
	margin-bottom: 30px;
}

.ir__mt_10px {
	margin-top: 10px;
}
.ir_mt_2rem {
	margin-top: 2rem;
}


/* -----------------------------
MV
----------------------------- */
.ir__mvSec {
	width: 100%;
	position: relative;
	margin: 0 auto;
}
.ir__mvSec_ttl {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%) !important;
	z-index: 2;
	transition-delay: 1s;
}
.ir__mvSec_ttl_txt {
	font-family: "Noto Serif JP";
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.1em;
	text-align: center;
	color: #fff;
	text-shadow: 0px 3px 14px #000e24;
	filter: glow(color = #000e24, strength = 5px);
}
.ir__mvSec_bg {
	position: relative;
  overflow: hidden;
}


/* -----------------------------
ローカルナビ
----------------------------- */
.ir__localNav {
	position: relative;
	top: -1px;
	z-index: 1;
	width: 100%;
}
.ir__localNav_wrap {
	width: 100%;
	height: 100px;
	position: relative;
	padding: 20px 0 0;
	box-sizing: border-box;
}
.ir__localNav_wrap::before {
	content: "";
	position: absolute;
	width: 95%;
	height: 100%;
	left: 5%;
	top: 0;
	background: url(../img/top-deco.png) repeat center center;
	background-size: 700px auto;
	z-index: -1;
}
.ir__localNav_list {
	width: 90%;
	margin: 0 auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.ir__localNav_list_item:nth-child(n+2) {
	border-left: solid 1px rgba(255, 255, 255, 0.2);
}
.ir__localNav_list_item {
	width: 33.33%;
	margin: 0;
	text-align: center;
	height: 50px;
	position: relative;
	cursor: pointer;
	box-sizing: border-box;
}
.ir__localNav_list_item a {
	display: block;
	font-family: "Noto Serif JP";
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.05em;
	text-align: center;
	color: #fff;
	position: relative;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	width: 100%;
	text-decoration: none;
}
.ir__localNav_list_item a span {
	display: inline-block;
	position: relative;
	padding-right: 24px;
}
.ir__localNav_list_item a span::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	width: 5px;
	height: 10px;
	background: url(../img/arrow-right.png) no-repeat center center;
	background-size: contain;
}
.ir__localNav_list_item a[target="_blank"] span::after {
	background: url(../img/new-win.png) no-repeat center / cover;
	width: 8px;
  height: 8px;
}

.ir__localNav_list-4col .ir__localNav_list_item {
	width: 25%;
}

@media screen and (max-width: 767px) {
	.ir__localNav_wrap {
		padding: 20px 0;
		height: auto;
	}
	.ir__localNav_wrap::before {
		left: 0;
		width: 100%;
	}
	.ir__localNav_list {
		justify-content: flex-start;
	}
	.ir__localNav_list_item,
	.ir__localNav_list-4col .ir__localNav_list_item {
		width: 100%;
	}
	.ir__localNav_list_item:nth-child(n+2) {
		border-left: none;
	}
	.ir__localNav_list_item:not(:last-child) {
		border-bottom: solid 1px rgba(255, 255, 255, 0.2);
	}
}


/* -----------------------------
wrapper
----------------------------- */
.ir__mainSec {
	padding: 50px 0 30px;
	position: relative;
}
#container .ir__mainSec:last-child {
	padding-bottom: 70px;
}
.ir__mainSec_decoR::before {
	content: "";
	position: absolute;
	left: 45%;
	top: 0;
	width: 55%;
	height: 600px;
	background: #F4F4F4;
	z-index: -1;
}
.ir__mainSec_decoL::after {
	content: "";
	position: absolute;
	left: 0;
	top: -100px;
	width: 55%;
	height: 600px;
	background: #F7F9FC;
	z-index: -5;
}
.ir__mainSec_bg {
	background: #F7F9FC;
	padding: 60px 0;
}

.ir__innerWrap {
	width: 90%;
	margin: 0 auto;
}


/* -----------------------------
タイトル
----------------------------- */
.ir__ttlH2 {
	font-family: "Noto Serif JP";
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.05em;
	text-align: center;
	color: #003993;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 20px;
}
.ir__ttlH2::after {
	content: "";
	width: 24px;
	height: 1px;
	position: absolute;
	background: #003993;
	bottom: 0;
	left: calc(50% - 17px);
}

.ir__ttlH3 {
	display: inline-block;
	padding: 0 15px;
	font-family: "Noto Serif JP";
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.11em;
	color: #fff;
	line-height: 30px;
	background: #003993;
	margin: 10px 0 10px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	transition: all .5s;
	opacity: 0;
}
.ir__ttlH3.eon {
	opacity: 1;
	margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
	.ir__ttlH3.eon {
		opacity: 1;
    margin: 0 0 20px;
	}
}

.ir__ttlH4 {
	font-family: "Noto Serif JP";
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.11em;
	text-align: center;
	margin-bottom: 20px;
}


/* -----------------------------
テキスト
----------------------------- */
.ir__txt {
	font-size: 13px;
	letter-spacing: 0.02em;
	line-height: 2em;
}
.ir__txt + .ir__txt {
	margin-top: 2em;
}


/* -----------------------------
リンク
----------------------------- */
.ir__txtLink {
	font-size: 13px;
	letter-spacing: 0.02em;
	line-height: 2em;
	color: #296BAD;
	display: inline;
	text-decoration: none;
	word-break: break-all;
}
.ir__txtLink-blank::before {
	content: "";
	display: inline-block;
	background: url(../img/new-win_blue.png) no-repeat center / cover;
	width: 15px;
	height: 15px;
	margin-right: 10px;
	vertical-align: middle;
}
.ir__txtLink-pdf::after {
	content: "";
	display: inline-block;
	background: url(../img/icon_pdf.png) no-repeat center / cover;
	width: 14px;
	height: 16px;
	margin-left: 10px;
	vertical-align: middle;
}

.ir__noteList_item .ir__txtLink {
	font-size: 11px;
	line-height: inherit;
	letter-spacing: 0;
}


/* -----------------------------
リンクボタン
----------------------------- */
.ir__linkBtn {
	width: 350px;
	height: 50px;
	margin: 50px auto 0;
	border: solid 1px #313131;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	transition: all .5s;
}
.ir__linkBtn::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: '';
	background: linear-gradient(-90deg, #65e7ff 0%, #00509a 100%);
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}
.ir__linkBtn_link {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 5;
}
.ir__linkBtn_txt {
	color: #313131;
	font-size: 16px;
	line-height: 50px;
	text-align: center;
	position: relative;
	z-index: 2;
	transition: all .3s;
}
.ir__linkBtn_txt::before {
	content: "";
	position: absolute;
	right: 10px;
	top: calc(50% - 5px);
	width: 18px;
	height: 10px;
	background: url(../img/arrow-black.png) no-repeat center center;
	background-size: contain;
	z-index: 2;
	transition: all .3s;
}
.ir__linkBtn_txt::after {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.00);
	z-index: -2;
}
@media screen and (max-width: 767px) {
	.ir__linkBtn {
		width: 240px;
    height: 50px;
    margin: 30px auto 0;
	}
	.ir__linkBtn_txt {
		font-size: 14px;
    line-height: 50px;
	}
	.ir__linkBtn_txt::before {
		content: "";
    position: absolute;
    right: 10px;
    top: calc(50% - 5px);
    width: 18px;
    height: 10px;
    background: url(../img/arrow-black.png) no-repeat center center;
    background-size: contain;
    z-index: 2;
    transition: all .3s;
	}
}


/* -----------------------------
テーブル
----------------------------- */
.ir__tbl {
	width: 100%;
}
.ir__tbl_th,
.ir__tbl_td {
	border-bottom: none;
	padding: 10px 0 0;
}
.ir__tbl_th {
	width: 100%;
	display: block;
	font-family: "Noto Serif JP";
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 30px;
	color: #003993;
}
.ir__tbl_td {
	display: block;
	width: 100%;
	font-size: 13px;
	line-height: 1.8em;
	border-bottom: dotted 1px #C3CAD6;
  padding: 0px 0 10px;
	color: #041A4B;
	font-weight: 500;
}


/* -----------------------------
リスト
----------------------------- */
.ir__diamondList_item + .ir__diamondList_item {
	margin-top: 10px;
}
.ir__diamondList_item {
	font-size: 13px;
	position: relative;
	padding-left: 25px;
}
.ir__diamondList_item::before {
	content: "";
	width: 10px;
	height: 10px;
	position: absolute;
	left: 0;
	top: 9px;
	transform: rotate(45deg);
	background: #003993;
}

.ir__numList {
	counter-reset: number 0;
}
.ir__numList_item + .ir__numList_item {
	margin-top: 20px;
}
.ir__numList_item {
	font-size: 13px;
	padding-left: 25px;
	position: relative;
}
.ir__numList_item::before {
	counter-increment: number 1;
	content: counter(number) ".";
	position: absolute;
	left: 0;
	color: #041A4B;
	font-size: 17px;
}

.ir__noteList_item + .ir__noteList_item {
	margin-top: 5px;
}
.ir__noteList_item {
	font-size: 11px;
	padding-left: 25px;
	position: relative;
}
.ir__noteList_item::before {
	content: "※";
	position: absolute;
	left: 0;
}


/* -----------------------------
枠付きBOX
----------------------------- */
.ir__panelBox {
	background: #FFFFFF;
	border: 5px solid #E2E8F0;
	padding: 20px;
}
.ir__panelBox_ttl {
	font-size: 17px;
	font-weight: bold;
	letter-spacing: 0.02em;
	line-height: 2em;
	margin-bottom: 10px;
}


/* -----------------------------
株主・投資家情報
----------------------------- */
.irTop__wrap {
	width: 90%;
  margin: 0 auto;
}

.irTop__newsSec {
	padding: 50px 0;
	position: relative;
}
.irTop__newsSec::before {
	content: "";
	position: absolute;
	left: 45%;
	top: 0;
	width: 55%;
	height: 600px;
	background: #F4F4F4;
	z-index: -1;
}
.irTop__newsSec_ttl {
	color: #041A4B;
	font-family: "Noto Serif JP";
	font-weight: 500;
	font-size: 30px;
	margin-bottom: 30px;
}

.irTop__panelSec {
	position: relative;
	padding: 22vw 0 80px;
}
.irTop__panelSec_bg {
	position: absolute;
	width: 90%;
	top: 0;
	left: 0;
	z-index: -1;
}
.irTop__panelSec_panelList {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.irTop__panelSec_panelList_main {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
}
.irTop__panelSec_panelList_item_arrow {
	width: 35px;
	height: 35px;
	position: absolute;
	right: 0;
	bottom: 0;
	background: #313131;
	overflow: hidden;
}
.irTop__panelSec_panelList_item_arrow::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: '';
	background: linear-gradient(-90deg, #65e7ff 0%, #00509a 100%);
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}
.irTop__panelSec_panelList_item_arrow::after {
	content: "";
	position: absolute;
	left: calc(50% - 9px);
	top: calc(50% - 5px);
	width: 18px;
	height: 10px;
	background: url(../img/arrow01.png) no-repeat center center;
	background-size: contain;
	z-index: 2;
}
.irTop__panelSec_panelList_bg {
	position: relative;
  overflow: hidden;
}
.irTop__panelSec_panelList_ttl {
	color: #FFF;
	font-family: "Noto Serif JP";
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.15em;
	position: absolute;
}
.irTop__panelSec_panelList_linkList {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 0;
	margin-top: 10px;
	width: 100%;
}
.irTop__panelSec_panelList_linkList_item {
	width: 50%;
}
.irTop__panelSec_panelList_linkList_item a {
	color: #296BAD;
	font-size: 13px;
	text-decoration: none;
}
.irTop__panelSec_panelList_linkList_item a[target="_blank"]::before {
	content: "";
	display: inline-block;
	background: url(../img/new-win_blue.png) no-repeat center / cover;
	width: 15px;
	height: 15px;
	margin-right: 10px;
	vertical-align: middle;
	position: relative;
	top: -2px;
}


/* -----------------------------
トップメッセージ
----------------------------- */
.irMessage__photoBox {
	width: 100%;
  position: relative;
	margin-bottom: 40px;
}
.irMessage__photoBox_name {
	color: #fff;
	font-family: "Noto Serif JP";
	padding-left: 13px;
	position: absolute;
	left: 20px;
	bottom: 20px;
	line-height: 1.2;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
}
.irMessage__photoBox_name::before {
	background: #fff;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 100%;
}
.irMessage__photoBox_name-post {
	display: block;
	font-size: 12px;
	line-height: 1.4;
}
.irMessage__photoBox_name-name {
	display: block;
	font-size: 18px;
	letter-spacing: 0.11em;
	margin-top: 10px;
}
.irMessage__photoBox_bg {
	position: relative;
	overflow: hidden;
	z-index: -1;
}


/* -----------------------------
コーポレート・ガバナンス
----------------------------- */
.irGovernance__img {
	margin: 0 auto;
	max-width: 100%;
}


/* -----------------------------
IRカレンダー
----------------------------- */
.irCalendar__img {
	margin: 0 0 50px;
}
.irCalendar__img img {
	width: 100%;
}


/* -----------------------------
よくあるご質問
----------------------------- */
.irFaq__list + .irFaq__list {
	margin-top: 22px;
}
.irFaq__list {
	background: #FFFFFF;
	border: 1px solid #C3CAD6;
}
.irFaq__list_q,
.irFaq__list_a {
	font-size: 13px;
	letter-spacing: 0.02em;
	line-height: 2em;
	word-wrap: break-word;
}
.irFaq__list_q {
	cursor: pointer;
	padding: 20px 50px 22px 60px;
	position: relative;
}
.irFaq__list_a {
	padding: 0 50px 14px 60px;
	position: relative;
}
.irFaq__list_q::before {
	color: #296BAD;
	content: "Q";
	display: block;
	font-size: 24px;
	font-family: "Noto Serif JP";
  font-weight: 500;
	position: absolute;
	left: 20px;
}
.irFaq__list_a::before {
	color: #0062B1;
	content: "A";
	display: block;
	font-size: 24px;
	font-family: "Noto Serif JP";
  font-weight: 500;
	position: absolute;
	left: 20px;
	top: 16px;
}
.irFaq__list_more::before,
.irFaq__list_more::after {
	content: "";
	display: block;
	position: absolute;
	background: #296BAD;
}
.irFaq__list_more::before {
	width: 12px;
	height: 1px;
	right: 20px;
	top: 50%;
}
.irFaq__list_more::after {
	width: 1px;
	height: 12px;
	right: 25px;
	top: calc(50% - 5px);
}
.irFaq__list_a_main {
	border-top: 1px solid #C3CAD6;
	padding-top: 22px;
}

.irFaq__list_a {
	display: none;
}
.irFaq__list-open .irFaq__list_more::after {
	display: none;
}