@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');

:root{
	--main-color:#000;
	--sub-color:#F5F2EB;
}

/* ------------------------------------
	html,body
------------------------------------ */
html * {
	font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック", YuGothic, "メイリオ", "Meiryo", "Osaka", "MS Pゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
html,
body {
	font-size: 10px;
	display: flex;
	-webkit-print-color-adjust: exact;
}
body{
	line-height: 2;
	color: #333;
	text-align: left;
	background: #fff;
	font-size: 1.6rem;
	padding: 110px 0 0;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
	overflow: hidden;
}
.is-fixed {
	height: 100%;
    overflow: hidden;
}
a{
	text-decoration:none;
	color: #333;
	transition: opacity 0.2s;
	line-height:inherit;
}
a:hover,
a:hover::after{
	opacity:.7;
	-webkit-transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	transition: opacity 0.2s ease-out;
}
/* min-769px */
@media only screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
/* 768px */
@media only screen and (max-width: 768px) {
	body{
		padding: 80px 0 0;
	}
	.pc,
	.hamburger.sp{
		display: none !important;
	}
	.gnav .hamburger.sp {
		display: block !important;
	}
}
/* ------------------------------------
	html,body end
------------------------------------ */



/* ------------------------------------
	global_header
------------------------------------ */
#global_header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 1000;
}
#global_header .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 110px;
	font-size: 1.4rem;
	width:95%;
	max-width: 1280px;
	margin: 0 auto;
}
#global_header .info{
	display: flex;
	align-items: flex-end;
	gap:30px;
}
/* logo */
#global_header .info .name img {
	max-height: 60px;
}
/* 証券コード */
#global_header .info .code {
	line-height: 1;
}
/* sub_menu */
.sub_menu,
.sub_menu > ul {
	display: flex;
	gap:10px;
}
.sub_menu > ul li a {
	display: flex;
	align-items: center;
	justify-content:center;
	background:var(--main-color);
	gap:20px;
	color: #fff;
	width: 165px;
	height: 50px;
	padding:15px;
	font-size:1.2rem;
}
.sub_menu > ul li a.link::after{
	content:url(../img/link_icon.png);
	display: inline-block;
	margin-top:7px;
}
.sub_menu > ul li a.ir{
	gap:10px;
}
.sub_menu > ul li a.ir img{
	margin-bottom:7px;
    width:22px;
    height:24px;
}
/* hamburger */
.hamburger {
	display : block;
	position: relative;
	z-index : 3;
	width : 60px;
	height: 60px;
	cursor: pointer;
	text-align: center;
	background: #fff;
}
.hamburger span {
	display : block;
	position: absolute;
	width   : 34px;
	height  : 1px ;
	left    : 12px;
	background :var(--main-color);
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition   : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
	top: 23px;
}
.hamburger span:nth-child(2) {
	top: 30px;
}
.hamburger span:nth-child(3) {
	top: 37px;
}
/* hamburger open */
.hamburger.active span:nth-child(1) {
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-46deg);
	-moz-transform: translateY(-50%) rotate(-46deg);
	transform: translateY(-50%) rotate(-46deg);
  }
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(46deg);
	-moz-transform   : translateY(-50%) rotate(46deg);
	transform        : translateY(-50%) rotate(46deg);
}
/* global_menu_sp */
.global_menu_sp {
	position: fixed;
	z-index : 2;
	top: 80px;
	left: 100vw;
	background: #fff;
	width: 100%;
	height: 100vh;
	opacity: 0;
	transition: opacity .6s ease, visibility .6s ease;
}
.global_menu_sp ul {
	margin: 40px 0 auto;
	padding: 0;
	width: 100%;
	height:100vh;
}
.global_menu_sp ul li {
	list-style-type: none;
	margin: 0 auto;
	width: 90%;
	color: #333;
	border-bottom: solid 1px var(--main-color);
	transition: .4s all;
	font-size: 1.4rem;
}
.global_menu_sp ul li:first-child {
	padding: 15px 0;
	font-size: 1.8rem;
}
.global_menu_sp ul li a {
	display: block;
	padding: 22px 0;
	text-align: left;
}

/* このクラスを、jQueryで付与・削除する */
 .global_menu_sp.active {
	opacity: 100;
}

/* 768px */
@media only screen and (max-width: 768px) {
	#global_header .wrap {
		font-size: 1.2rem;
		height: 80px;
	}
	#global_header .info {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	#global_header .info .name {
		margin:0;
	}
	#global_header .info .name img {
		max-height: 30px;
		margin: 5px 0;
	}
	.sub_menu,
	.sub_menu > ul{
		gap:3px;
	}
	.sub_menu > ul li a {
		width: 60px;
		height:60px;
		flex-direction: column-reverse;
		padding:8px !important;
		font-size: 1rem;
		gap:2px !important;
		text-align: center;
		line-height: 14px;
	}
	.sub_menu > ul li:last-child a{
		flex-direction: column;
	}
	.global_menu_sp.active {
		left: 0;
	}
}
/* ------------------------------------
	global_header end
------------------------------------ */



/* ------------------------------------
	globalNav
------------------------------------ */
body.gnav {
	padding-top: 160px;
}
#global_nav {
	position: fixed;
	top: 110px;
	left: 0;
	background: #fff;
	z-index: 1000;
	width: 100%;
	height: 50px;
	border-top: 1px solid #707070;
	text-align: left;
	overflow: hidden;
}
body.gnav #global_nav {
	border-top: none;
}
#global_nav ul {
	position: relative;
	display:flex;
	justify-content: center;
	list-style: none;
	width: 90%;
	max-width: 1280px;
    height: 50px;
	margin: 0 auto;
	-webkit-flow-scrolling: touch;
}
#global_nav ul li {
	letter-spacing: 0;
	display: inline-block;
	position: relative;
	margin: 0 1.4em;
}
#global_nav ul li::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 4px;
	left: 0;
	bottom: 0;
	background-color: rgba(0,45,120,0);
	-webkit-transition: background-color 0.2s ease-out;
    -moz-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out;
}
#global_nav ul li:hover::after {
	background-color:var(--main-color);
}
#global_nav a{
	line-height: 50px;
	position: relative;
}
#global_nav a:hover{
	opacity:1;
}
#global_nav a.active:after {
	content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: -15px;
    background-color:var(--main-color);
    -webkit-transition: background-color 0.2s ease-out;
    -moz-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out;
}
/* 768px */
@media only screen and (max-width: 768px) {
	body.gnav {
		padding-top: 80px;
	}
	#global_nav {
		display: none;
	}
}
/* ------------------------------------
	globalNav end
------------------------------------ */



/* ------------------------------------
	main
------------------------------------ */
main {
	flex: 1 0 auto;
	min-height: 1px;
	width: 100%;
}
main section,
main article{
	width: 100%;
	margin: 0 auto 100px;
}
main > article{
	margin:0 auto 90px;
}
h1 {
	font-size:5rem;
	font-weight: 500;
	line-height: normal;
}
h2 {
	font-size:1.8rem;
	font-weight: bold;
	margin: 0 0 30px;
}
h3 {
	font-weight: bold;
	margin: 0 0 45px;
}
main .flex{
	display: flex;
}
main .grid{
	display: grid;
}
main p {
	margin: 0 0 10px;
}
main p:last-child {
	margin: 0;
}
main img {
	width: 100%;
	max-width: 100%;
}
figure {
	margin: 30px auto;
	text-align: center;
}
figure img{
	width:auto;
}
figcaption{
	font-weight: bold;
    font-size: 1.8rem;
	line-height: normal;
	text-align: left;
}
.contents_wrap {
	width: 94%;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}
/* 768px */
@media only screen and (max-width: 768px) {
	main > section,
	main > article {
		margin:0 auto !important;
	}
	h2 {
		font-size: 1.8rem;
		margin: 0 0 26px;
	}
	h3 {
		padding: 10px 0 0;
	}
	main .flex,
	main .grid{
		display: flex;
		flex-direction: column;
	}
}


/* ------------------------------------
	cont_header
------------------------------------ */
.cont_header .wrap {
	width: 92%;
	max-width: 800px;
	margin: 0 auto;
	padding: 30px 0;
}
/* cont_header visual */
.cont_header.visual {
	display: flex;
	align-items: center;
	margin: 0 0 100px;
	position: relative;
}
.cont_header.visual .wrap {
	max-width: 1100px;
}
.cont_header.visual h1 small {
	display: block;
	font-size: 2rem;
	padding: 0.5em 0 0.2em;
	font-weight: normal;
}
/* cont_header visual background-image*/
.cont_header.visual::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
/* 768px */
@media only screen and (max-width: 768px) {
	.cont_header,
	.cont_header.visual {
		margin: 0 0 30px;
	}
	.cont_header.visual .wrap{
		padding:0;
	}
	.cont_header.visual h1 {
		font-size: 2.8rem;
	}
	.cont_header.visual h1 small {
		font-size: 1.6rem;
	}
}
/* ------------------------------------
	cont_header
------------------------------------ */



/* ------------------------------------
	btn_area
------------------------------------ */
.btn_area {
	text-align: center;
	margin: 20px auto;
}
.btn_area a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height:initial;
	padding: 0 15px;
	max-width: 350px;
	width: 100%;
	height:53px;
	background:var(--main-color);
	color: #fff;
	font-size:1.8rem;
	position: relative;
}
.btn_area a::after{
	content:url(../img/arrow.png);
	position: absolute;
	right:15px;
	top:10px;
}
/* ------------------------------------
	btn_area end
------------------------------------ */



/* ------------------------------------
	footer
------------------------------------ */
#global_footer {
	margin-top: auto;
	text-align: center;
	line-height: 1.1;
}
/* cont_menu */
#cont_menu {
	width: 100%;
	max-width: 830px;
	margin: 0 auto 90px;
	text-align: left;
}
.issue {
	font-size: 2rem;
	line-height: 2;
	margin: 0 0 27px;
	border-bottom: 1px solid var(--main-color);
}
#cont_menu ul {
	display: flex;
	flex-wrap: wrap;
}
#cont_menu ul li{
	flex:1;
}
#cont_menu ul li:nth-of-type(2),
#cont_menu ul li:nth-of-type(3){
	text-align: center;
}
#cont_menu ul li:last-child{
	text-align: right;
}
#cont_menu ul li a {
	position: relative;
	padding: 0 0 0 20px;
	line-height: 1.4;
}
#cont_menu ul li a::before {
	content: '';
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 10px;
	height: 0;
	border-top: 2px solid var(--main-color);
}
/* banner */
.banner{
	display: flex;
	place-content: center;
	gap:25px;
}
.banner li{
	max-width:350px;
	width:100%;
	height:60px;
}
.banner a{
	height:60px;
	border: 1px solid var(--main-color);
	background:transparent;
	color:#333;
}
#global_footer .banner li:first-child a{
	background: url(../img/banner.png) center center no-repeat;
    background-size: 350px;
}
.banner a::after{
	content: url(../img/link_icon_bk.png) !important;
	top:inherit;
}
/* home_area */
.home_area{
	padding: 90px 0 20px;
}
.home_are a {
	display:inline-block;
}
.home_area img {
	max-height: 60px;
}
/* ft_menu */
.ft_menu {
	background:#F2F4F5;
	padding: 21px 20px;
}
.ft_menu li{
	overflow: hidden;
	padding: 0 20px;
}
.ft_menu li,
.ft_menu li a{
	display: inline-block;
}
.ft_menu li a::after {
	content:url(../img/arrow_bk.png);
    width: 16px;
	display: inline-block;
	margin:0 10px;
	vertical-align: text-top;
}
.ft_menu li a::after {
	-webkit-transition: margin 0.2s ease-out;
	-moz-transition: margin 0.2s ease-out;
	transition: margin 0.2s ease-out;
}
.ft_menu li a:hover::after {
	margin: 0 5px 0 15px;
}
/* copy */
.copy {
	padding: 24px 20px;
	background:var(--main-color);
	color: #fff;
	font-size: 1.2rem;
}
/* 768px */
@media only screen and (max-width: 768px) {
	#global_footer{
		margin-top:80px;
	}
	#cont_menu {
		width: 100%;
		margin-bottom: 40px;
		background:#fff;
	}
	#cont_menu .issue {
		padding: 15px 25px;
        margin: 0 3%;
	}
	#cont_menu ul {
		display: block;
		padding: 0 3%;
	}
	#cont_menu ul li {
		width: 100%;
		margin: 0;
		padding: 0;
		border-bottom: 1px solid var(--main-color);
	}
	#cont_menu ul li a {
		width: 100%;
		padding: 1.3em 0 1.3em 1.5em;
		text-align: left;
		display: block;
	}
	#cont_menu ul li a::before {
		content: none;
	}
	#global_footer .banner{
		flex-direction: column;
		align-items: center;
		gap:20px;
	}
	#global_footer .banner li{
		height:26px;
	}
	#global_footer .banner a{
		border:none;
		height:100%;
	}
	#global_footer .banner a::after{
		right:75px;
	}
	#global_footer .banner li:first-child a{
		background-position: left -27px center;
	}
	#global_footer .banner li:not(:first-child) a::after{
		position: static;
		display: inline-block;
		margin-left: 15px;
	}
	.home_area{
		padding:40px 0;
	}
	.ft_menu {
		padding: 21px 3%;
	}
}
/* ------------------------------------
	footer end
------------------------------------ */



/* ------------------------------------
	PAGE TOP
------------------------------------ */
#page_top {
	position: fixed;
	bottom: 40px;
	right: 40px;
	width: 50px;
	height: 50px;
	background:#fff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
	border: 1px solid #acacac;
}
#page_top:before {
	content: '';
	position: absolute;
	width:20px;
	height:20px;
	border: 0 solid var(--main-color);
	border-top-width: 1px;
	border-left-width: 1px;
	top: 40%;
	right:29%;
	transform: rotate(45deg);
}
/* 768px */
@media only screen and (max-width: 768px) {
	#page_top {
		right: 0;
	}
}
/* ------------------------------------
	PAGE TOP end
------------------------------------ */


/* all */
/* =====================================
	ClearFixElements
===================================== */
.cf:after {
	content: "";
	clear: both;
	display: block;
}
.f_bold {
    font-weight: bold;
}

/* ------------------------------------
	print
------------------------------------ */
@media print{
	* {
		-webkit-print-color-adjust: exact;
		font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	}
	body{
		zoom:.7;
	}
	#global_header,
	#global_nav{
		position: static;
	}
    #global_header {
		position: absolute;
	}
	.global_menu_sp{
		display: none;
	}
	.cont_header,
	.cont_header.visual {
		margin: 0 0 30px;
	}
	.cont_header.visual::after{
		background-size: cover;
	}
	#page_top,
	.sp,
	.hamburger{
		display: none !important;
	}
}