@charset "UTF-8";

/*ヘッダ*/
header {
	position: fixed;
	top: 0;
	height: 60px;
	width: 100%;
	z-index: 6;
  background: #FFF;
  transition: all 1s;
}
.top header {
	top: -60px;
  transition: all 1s;
}
.top header.eon {
  top: 0;
}
.logo {
	width: 168px;
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 1001;
}
.logo-text {
  font-family: 'Noto Serif JP', serif;
  color: #707070;
  font-size: 18px;
  position: absolute;
  left: 200px;
  top: 22px;
  line-height: 1em;
}

/* メニュー */
.menu {
    position: absolute;
		right: 140px;
		top: 0;
    width: 100%;
    height: 60px;
    max-width: calc(100% - (300px + 140px));
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		gap: 22px;
		margin-right: 30px;
}

.menu > li {
		display: inline-block;
    height: 60px;
		position: relative;
    line-height: 60px;
}
.menu > li:before {
  opacity: 0;
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #296EAD;
}
.menu > li:hover:before {
	opacity: 1;
}
.message .menu > li:nth-child(1):before, .company .menu > li:nth-child(2):before, .people .menu > li:nth-child(3):before, .movie .menu > li:nth-child(4):before, .info .menu > li:nth-child(5):before {
  opacity: 1;
}
.menu > li a, .menu > li p {
    display: block;
    color: #22304F;
		font-size: 16px;
		font-weight: 400;
		text-decoration: none;
}
.menu > li p {
	line-height: 60px;
	cursor: pointer;
}
.menu > li a:hover {
    color: #22304F;
}

ul.menu_second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    zoom: 1;
}

li.menu_mega ul.menu_second-level {
    position: absolute;
    top: 50px;
    left: 50%;
		transform: translate(-50%, 0);
    box-sizing: border-box;
    width: 100%;
    padding: 25px 20px 10px 25px;
    background: #041A4B;
    transition: all .2s ease;
}
li.menu_mega ul.menu_second-level a {
	color: #FFF;
	line-height: 1.4em;
	font-size: 14px;
	padding-left: 15px;
	position: relative;
	transition: all .3s;
}
li.menu_mega ul.menu_second-level a:hover {
	color: #3A82F3;
}
li.menu_mega ul.menu_second-level a:before {
	width: 5px;
	height: 1px;
	background: #3A82F3;
	content: "";
	position: absolute;
	left: 0;
	top: .7em;
}
li.menu_mega ul.menu_second-level a[target="_blank"] span::after {
	width: 10px;
  height: 10px;
  content: "";
	display: inline-block;
  background: url("../img/new-win_blue.png") no-repeat center center;
  background-size: contain;
	margin-left: 10px;
}
li.menu_mega ul.menu_second-level.type01 {
	width: 250px;
	display: flex;
	flex-wrap: wrap;
}
li.menu_mega:hover ul.menu_second-level {
    top: 60px;
    visibility: visible;
    opacity: 1;
}
li.menu_mega ul.menu_second-level.type01 > li:nth-child(1) {
	width: 100%;
}
li.menu_mega ul.menu_second-level.type01 > li {
    width: 100%;
		margin-bottom: 15px;
    border: none;
}
li.menu_mega:hover .spmc {
 display: block;
}
.entry-btn {
  width: 140px;
  height: 60px;
  background: linear-gradient(-90deg, #65e7ff 0%, #00509a 100%);
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.entry-btn p {
  text-align: center;
  line-height: 60px;
  color: #FFF;
  font-weight: 500;
}
.entry-btn::after {
  width: 10px;
  height: 10px;
  content: "";
	display: inline-block;
  background: url("../img/new-win.png") no-repeat center center;
  background-size: contain;
  margin-left: 5px;
}


/* アクティブ付与 */
.page_irnews .menu > li:nth-child(1):before,
.page_management .menu > li:nth-child(2):before,
.page_highlight .menu > li:nth-child(3):before,
.page_library .menu > li:nth-child(4):before,
.page_stock .menu > li:nth-child(5):before,
.page_calendar .menu > li:nth-child(6):before,
.page_faq .menu > li:nth-child(7):before,
.page_notice .menu > li:nth-child(8):before,
.page_disclosure .menu > li:nth-child(9):before,
.page_disclaimer .menu > li:nth-child(10):before {
  opacity: 1;
}


.page_irtop .logo a {
	pointer-events: none;
}