@charset "UTF-8";

img {
	width: 100%;
	height: auto;
}
img {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.abox {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 5;
}
.brtab, .brsp {
 	display: none;
 }
.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);
  }
}

.sp-only {
  display: none;
}





#container * {
	box-sizing: border-box;
}
@media screen and (min-width: 1676px) {
	#container {
		padding-top: 60px;
	}
}
@media screen and (max-width: 1675px) {
	#container {
		padding-top: 50px;
	}
}


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

.ir__mb_la {
	margin-bottom: 100px;
}
.ir__mb_md {
	margin-bottom: 50px;
}
.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: 38px;
	letter-spacing: 0.28em;
	text-align: center;
	color: #fff;
	text-shadow: 0px 3px 14px #000e24;
	filter: glow(color = #000e24, strength = 5px);
	margin-bottom: 20px;
}
.ir__mvSec_bg {
	position: relative;
	overflow: hidden;
}

/* ローカルナビあり位置調整 */
.ir__mvSec_navOn .ir__mvSec_ttl {
	top: calc(50% - 40px);
}


/* -----------------------------
ローカルナビ
----------------------------- */
.ir__localNav {
	width: 100%;
}
.ir__localNav_wrap {
	width: 100%;
	height: 200px;
	position: relative;
	padding: 0 0 0;
	box-sizing: border-box;
	z-index: 2;
	margin-top: -40px;
	margin-bottom: -40px;
}
.ir__localNav_wrap::before {
	content: "";
	position: absolute;
	width: 90%;
	height: 100%;
	left: 10%;
	top: -60px;
	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: 25%;
	margin: 0;
	text-align: center;
	height: 70px;
	position: relative;
	cursor: pointer;
}
.ir__localNav_list_item a {
	display: block;
	font-family: "Noto Serif JP";
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.1em;
	text-align: center;
	color: #fff;
	position: relative;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	text-decoration: none;
}
.ir__localNav_list_item a span {
	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: 20%;
}


/* -----------------------------
wrapper
----------------------------- */
.ir__mainSec {
	padding: 90px 0 50px;
	position: relative;
}
#container .ir__mainSec:last-child {
	padding-bottom: 140px;
}
.ir__mainSec_decoR::before {
	content: "";
	position: absolute;
	left: 45%;
	top: -100px;
	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: 100px 0;
}

.ir__innerWrap {
	max-width: 900px;
	margin: 0 auto;
}

.ir__txtWrap {
	width: 90%;
	max-width: 695px;
	margin: 0 auto;
}


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

.ir__ttlH3 {
	display: inline-block;
	padding: 0 20px;
	font-family: "Noto Serif JP";
	font-weight: 500;
	font-size: 22px;
	letter-spacing: 0.11em;
	color: #fff;
	line-height: 40px;
	background: #003993;
	margin: 20px 0 20px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	transition: all .5s;
	opacity: 0;
}
.ir__ttlH3.eon {
	opacity: 1;
	margin: 0 0 20px;
}

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


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


/* -----------------------------
リンク
----------------------------- */
.ir__txtLink {
	font-size: 16px;
	letter-spacing: 0.07em;
	line-height: 30px;
	color: #296BAD;
	display: inline;
	text-decoration: none;
	position: relative;
	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__txtLink:hover {
	text-decoration: underline;
}

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


/* -----------------------------
リンクボタン
----------------------------- */
.ir__linkBtn {
	background: #FFF;
	width: 420px;
	height: 60px;
	margin: 60px 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::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;
}
.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: 18px;
	line-height: 60px;
	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:hover {
	border: solid 1px rgba(49, 49, 49, 0.00);
}
.ir__linkBtn:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}
.ir__linkBtn:hover .ir__linkBtn_txt {
	color: #FFF;
}
.ir__linkBtn:hover .ir__linkBtn_txt::before {
	background: url(../img/arrow01.png) no-repeat center center;
	background-size: contain;
}


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


/* -----------------------------
リスト
----------------------------- */
.ir__diamondList_item + .ir__diamondList_item {
	margin-top: 10px;
}
.ir__diamondList_item {
	font-size: 16px;
	position: relative;
	padding-left: 27px;
}
.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: 10px;
}
.ir__numList_item {
	font-size: 16px;
	padding-left: 27px;
	position: relative;
}
.ir__numList_item::before {
	counter-increment: number 1;
	content: counter(number) ".";
	position: absolute;
	left: 0;
	color: #041A4B;
	font-size: 20px;
}

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


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


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

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

.irTop__panelSec {
	position: relative;
	padding: 17.5vw 0 175px;
}
.irTop__panelSec_bg {
	position: absolute;
	width: 68.734%;
	top: 0;
	left: 0;
	z-index: -1;
}
.irTop__panelSec_panelList {
	display: flex;
	flex-wrap: wrap;
	gap: 0 76px;
	justify-content: space-between;
	width: 100%;
}
.irTop__panelSec_panelList_item {
	width: calc((100% - 76px) / 2);
}
.irTop__panelSec_panelList_item:not(:nth-last-child(-n+2)) {
	margin-bottom: 65px;
}
.irTop__panelSec_panelList_item:has(a.irTop__panelSec_panelList_main) {
	margin-bottom: 115px;
}
.irTop__panelSec_panelList_main {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
}
.irTop__panelSec_panelList_item_arrow {
	width: 45px;
	height: 45px;
	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;
}
a.irTop__panelSec_panelList_main:hover .irTop__panelSec_panelList_item_arrow::before {
	transform-origin: left top;
  transform: scale(1, 1);
}
.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: 10px 0;
	margin-top: 20px;
	width: 100%;
}
.irTop__panelSec_panelList_linkList_item {
	width: 50%;
}
.irTop__panelSec_panelList_linkList_item a {
	color: #296BAD;
	font-size: 16px;
	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;
}
.irTop__panelSec_panelList_linkList_item a:hover {
	text-decoration: underline;
}


/* -----------------------------
トップメッセージ
----------------------------- */
.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: 400px;
	bottom: 40px;
	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: 15px;
	line-height: 1.4;
}
.irMessage__photoBox_name-name {
	display: block;
	font-size: 29px;
	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%;
}


/* -----------------------------
会社概要
----------------------------- */
.irProfile__tbl .ir__tbl_th {
	width: 25%;
}
.irProfile__tbl .ir__tbl_td {
	width: 75%;
}


/* -----------------------------
株式情報
----------------------------- */
.irOverview__tbl .ir__tbl_th {
	width: 25%;
}
.irOverview__tbl .ir__tbl_td {
	width: 75%;
}


/* -----------------------------
IRカレンダー
----------------------------- */
.irCalendar__img {
	display: flex;
	justify-content: space-between;
	gap: 1px;
	margin: 0 0 50px;
	width: 100%;
}
.irCalendar__img img {
	width: 50%;
	max-width: 449px;
}


/* -----------------------------
よくあるご質問
----------------------------- */
.irFaq__list + .irFaq__list {
	margin-top: 22px;
}
.irFaq__list {
	background: #FFFFFF;
	border: 1px solid #C3CAD6;
}
.irFaq__list_q,
.irFaq__list_a {
	font-size: 16px;
	letter-spacing: 0.03em;
	line-height: 27px;
	word-wrap: break-word;
}
.irFaq__list_q {
	cursor: pointer;
	padding: 20px 80px 22px 110px;
	position: relative;
}
.irFaq__list_a {
	padding: 0 80px 14px 110px;
	position: relative;
}
.irFaq__list_q::before {
	color: #296BAD;
	content: "Q";
	display: block;
	font-size: 28px;
	font-family: "Noto Serif JP";
  font-weight: 500;
	position: absolute;
	left: 30px;
}
.irFaq__list_a::before {
	color: #0062B1;
	content: "A";
	display: block;
	font-size: 28px;
	font-family: "Noto Serif JP";
  font-weight: 500;
	position: absolute;
	left: 30px;
	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: 24px;
	top: 50%;
}
.irFaq__list_more::after {
	width: 1px;
	height: 12px;
	right: 29px;
	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;
}