@charset "utf-8";

/* ------------------------------------------------------------
	全体 
   ------------------------------------------------------------ */
#wrapper {
	width: 100%;
	margin: 0 auto;
	/*min-width:1000px;*/
}
@media screen and (max-width:640px) {
	#wrapper {
		min-width: 100%;
	}
}


/* ------------------------------------------------------------
	header 
   ------------------------------------------------------------ */

.header {
	width: 100%;
	height: 156px;
	border-bottom: 2px solid #D2D2D2;
}
.headerInner {
    width: 100%;
    height: 100%;
	display: flex;
}
.headerInner::after {
	content: "";
	display: block;
	clear: both;
	overflow: hidden;
}
.headerLogo {
	margin-left: 25px;
    align-self:center;
}
.headerLogo img{
	max-height: 120px;
}

@media screen and (max-width:640px) {
	.header {
		border-bottom: 1px solid #D2D2D2;
    	height: 75px;
	}
	.headerInner {
		width: 100%;
		padding: 14px 70px 14px 14px;
	}
	.headerLogo {
		margin-left: 0;
	}
	.headerLogo img {
		max-height: 36px;
		max-width: 100%;
	}
}

/* ------------------------------------------------------------
	ハンバーガーメニュー
   ------------------------------------------------------------ */
.headerMenuBtn{
	width: 100px;
    height: 100px;
    position: fixed;
    background: #006AB4;
    border-radius: 100%;
    z-index: 1000;
    right: 20px;
    top: 25px;
	cursor:pointer;
}
.headerMenuBtn_item{
	width: 56px;
    height: 5px;
	background:#fff;
	display:block;
	margin:0 auto;
	position:absolute;
	left:50%;
	margin-left:-28px;
    transition: all 0.3s;
}
.headerMenuBtn_item:nth-child(1){
	top:38px;
}
.headerMenuBtn_item:nth-child(2){
	top:48px;
}
.headerMenuBtn_item:nth-child(3){
	top:58px;
}
.headerMenuBtn-open .headerMenuBtn_item:nth-child(1){
	top:47px;
	transform: rotate(-225deg);
}
.headerMenuBtn-open .headerMenuBtn_item:nth-child(2){
	display:none;
}
.headerMenuBtn-open .headerMenuBtn_item:nth-child(3){
	top: 47px;
	transform: rotate(225deg);
}

html.hidden {
  overflow: hidden;
}

.headerMenu{
	display:none;
	background:rgba(0, 0, 0, 0.3);
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	z-index:999;
}
.headerMenu::after{
	content:"";
	display:block;
	clear:both;
	overflow:hidden;
}
.headerMenuNavi{
	background:#fff;
	width:400px;
	height:100%;
	padding:160px 0 0;
	float:right;
	overflow-y: scroll;
}
.headerMenuNaviList{
	border-bottom:1px solid #D2D2D2;
}
.headerMenuNaviList_item{
	border-top:1px solid #D2D2D2;
}
.headerMenuNaviList_item_link{
	display:block;
	width:100%;
	height:100%;
	padding:20px 30px;
	text-decoration:none;
    color: #006AB4;
	position:relative;
    transition: all 0.3s;
}
.headerMenuNaviList_item_link:hover{
	background:#f0f6fb;
}
.headerMenuNaviList_item_link::after{
	content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #b2b2b2;
    border-right: 2px solid #b2b2b2;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -3px;
}
.headerMenuNaviList_item_accordion{
	display:block;
	width:100%;
	height:100%;
	padding:20px 30px;
	text-decoration:none;
    color: #006AB4;
	position:relative;
    transition: all 0.3s;
}
/*
.headerMenuNaviList_item_accordion::before{
	content: "";
	position: absolute;
    right: 26px;
	width: 2px;
	height: 16px;
	background-color: #b2b2b2;
	-webkit-transform: translateY(5px);
		  transform: translateY(5px);
    transition: all 0.3s;
}
.headerMenuNaviList_item_accordion::after{
	content: "";
	position: absolute;
	width: 16px;
	height: 2px;
	right: 19px;
	top: 50%;
	background-color:  #b2b2b2;
}
*/
.headerMenuNaviList_item_accordion-currentOn::before{
	-webkit-transform: translateY(5px) rotate(90deg);
		  transform: translateY(5px) rotate(90deg);
    transition: all 0.3s;
}
.headerMenuNaviList_childList{
	overflow: hidden;
	box-sizing: content-box;
	padding-bottom: 10px;
}
.headerMenuNaviList_childList_item{
	display: block;
	padding: 0 30px 10px 30px;
}
.headerMenuNaviList_childList_item_link{
	display: block;
	text-decoration: none;
	font-size: 14px;
	padding-left: 20px;
	position: relative;
	word-wrap: break-word;
}
.headerMenuNaviList_childList_item_link:hover{
	text-decoration: underline;
}
.headerMenuNaviList_childList_item_link::after{
	content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #b2b2b2;
    border-right: 2px solid #b2b2b2;
    transform: rotate(45deg);
    position: absolute;
	left: 0;
	top: 6px;
}

@media screen and (max-width:640px) {
	.headerMenuBtn{
		width: 54px;
		height: 54px;
		right: 14px;
		top: 10px;
	}
	.headerMenuBtn_item{
		width: 26px;
		height: 3px;
		margin-left: -13px;
	}	
	.headerMenuBtn_item:nth-child(1){
		top: 20px;
	}
	.headerMenuBtn_item:nth-child(2){
		top: 26px;
	}
	.headerMenuBtn_item:nth-child(3){
		top: 32px;
	}
	.headerMenuBtn-open .headerMenuBtn_item:nth-child(1){
		top:25px;
	}
	.headerMenuBtn-open .headerMenuBtn_item:nth-child(3){
		top:25px;
	}
	.headerMenuNavi{
		background:#fff;
		width:100%;
		height:100%;
    	padding: 75px 0 0;
		float:none;
	}
}


/* ------------------------------------------------------------
	トップへ戻る 
   ------------------------------------------------------------ */

.toTop {
	border-top: 1px solid #D2D2D2;
}
.toTop_link {
	height:98px;
	display: block;
	text-align: center;
    transition: all 0.3s;
	line-height: 0;
}
.toTop_link:hover{
	background-position:center 20px;
}
.toTop_link > svg{
	height: 34px;
	margin-top: 30px;
    transition: all 0.3s;
}
.toTop_link:hover > svg{
	margin-top: 20px;
}

@media screen and (max-width:640px) {
	.toTop_link {
		height:56px;
		background-size: 24px;
	}
	.toTop_link > svg{
		height: 20px;
		margin-top: 19px;
		transition: all 0.3s;
	}
	.toTop_link_floating {
		padding: 15px 0;
    	height: 54px;
	}

}


/* ------------------------------------------------------------
	フローティングメニュー 
   ------------------------------------------------------------ */
.floatingMenuWapper {
	height: 120px;
	z-index:998;
    position: relative;
}
.floatingMenu {
	background: #02528a;
	bottom: 0;
	padding: 30px;
	width: 100%;
	height: 120px;
}
.floatingMenuList {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.floatingMenuListBtn {
	width: 42%;
	height: 60px;
}
.floatingMenuListBtn:last-child {
	width: 10%;
}
.floatingMenuListBtn_link {
	display: block;
	line-height: 60px;
	border-radius: 100px;
	color: #fff;
	background: #FE9B00;
	text-align: center;
	text-decoration: none;
	font-size: 20px;
}
.floatingMenuListBtn_link:hover {
	opacity: 0.6;
}
.toTop_link_floating {
	display: block;
    height: 60px;
	padding: 16px 0;
	border-radius: 100px;
	text-align: center;
	text-decoration: none;
	background: #FE9B00 no-repeat center center / 30px;
}
.toTop_link_floating > svg{
	height: 28px;
}
.toTop_link_floating:hover {
	opacity: 0.6;
}
@media screen and (max-width:640px) {
	.floatingMenuWapper {
		height: 94px;
	}
	.floatingMenu {
		padding: 20px 10px;
		height: 94px;
	}
	.floatingMenuList {
		width: 100%;
	}
	.floatingMenuListBtn {
		width: 39%;
	}
	.floatingMenuListBtn:last-child {
		width: 16%;
	}
	.floatingMenuListBtn_link {
		line-height: 1.2;
		font-size: 16px;
		padding: 8px 2px;
	}
	.floatingMenuListBtn_link:hover {
		opacity: 1;
	}
	.toTop_link_floating img {
		width: 20px;
	}
}


/* ------------------------------------------------------------
	議決権を行使する 
   ------------------------------------------------------------ */
#voteModalContents,
#correctionModalContents{
	width: 1080px;
}
#voteModalContents .outlineModalContentsInner{
	text-align: center;
}
.voteModalBtn {
	width: 440px;
	height: 90px;
	margin: 60px auto 0;
}
.voteModalBtnLink {
	display: block;
	line-height: 90px;
	border-radius: 100px;
	color: #fff;
	background: #02528a;
	text-align: center;
	text-decoration: none;
	font-size: 30px;
}
.outlineModalContentsInner{
    text-align: left;
    padding: 50px;
    background: #fff;
    border-radius: 2px;
}

.voteModalContents_mail{
	display: flex;
    justify-content: center;
}
.voteModalContents_mail_icn{
    width: 90px;
    height: 100px;
	align-self:center;
	margin-right: 20px;
	display: block;
}
.voteModalContents_mail_text{
	align-self:center;
}

#correctionModalContents a {
	color: #006AB4;
}
.modalClose{
    position: absolute;
    top: 10px;
    right: 11px;
    border: 1px solid #d0cece;
    padding: 7px 13px 10px;
    line-height: 1em;
    font-size: 12px;
    cursor: pointer;
    background: #ffffff;
    color: #828282;
}
@media screen and (max-width:640px) {
	#voteModalContents,
	#correctionModalContents{
		width: 90%;
	}
	.voteModalBtn {
		max-width: 218px;
		width: 100%;
		height: auto;
		margin: 20px auto 0;
	}
	.voteModalBtnLink {
		line-height: 1em;
		font-size: 14px;
		padding: 14px 10px;
	}
	.outlineModalContentsInner {
		text-align: left;
		padding: 20px;
		overflow-y: scroll;
		max-height: 400px;
	}
	#correctionModalContents a {
		color: #006AB4;
	}
	.voteModalContents_mail{
		display: block;
	}
	.voteModalContents_mail_icn{
		margin: 0 auto;
	}
	.voteModalContents_mail_text{
		margin-top: 10px;
	}
}
/* ------------------------------------------------------------
	議決権を行使する (スマート行使) 
    ※PC・レスポンシブ用（SP表示用は exercise.css に記述有り）
   ------------------------------------------------------------ */
.fileRedTex{
	color: #BF0508;
	font-weight: bold;
}
.fileTitle{
	color: #FFF;
	position: relative;
	padding: 10px 20px 10px 20px;
	font-size: 26px;
	margin: 16px 0 0;
	background: #006AB4;
	line-height: 1.3;
	text-align: center;
}
.fileTitle.old{
	text-align: center;
}
.fileFlame{
	border: 1px solid #006AB4;
	padding: 20px 30px;
	margin-bottom: 10px;
}
.fileTitle_sub{
	font-size: 26px;
	font-weight: bold;
	margin: 0 0 10px;
}
.fileTitle_sub_svg{
    width: 44px;
    height: 56px;
    display: inline-block;
    vertical-align: middle;
	margin-right: 10px;
}
.fileSentence{
	text-align: center;
}
.sectonImg.fileSectonImg{
	width: 100%;
	max-width: 325px;
	margin: 10px auto;
}
.fileSectonImg img{
	width: 100%;
}
.fileReadBtn{
	display: block;
	text-align: center;
	color: #fff;
	width: 100%;
	max-width: 300px;
	margin: 10px auto 0;
	padding: 15px 0;
    background: #006AB4;
	cursor: pointer;
}
.fileReadBtn_text::before{
    content: "";
    display: inline-block;
    width: 22px;
    height: 19px;
    background: url(../img/parts/icn_file4.png) no-repeat;
    background-size: 100%;
    vertical-align: middle;
    margin: -4px 10px 0 0;
}
.fileReadBtn:hover {
	opacity: 0.6;
}
.fileAttention{
	display: flex;
	margin-top: 10px;
}
.fileAttentionTitle{
    width: 150px;
    text-align: center;	
}
.fileAttention_text{
	display: block;
    font-size: 20px;
    background: #ecbb00;
	font-weight: bold;
	padding: 10px 0;
	line-height: 1em;
}
.fileAttention_contens{
	margin-left: 30px;
	text-align: left;
}
.noteListFile_item{
	text-align: left;
}

@media screen and (max-width: 640px){
	.fileTitle{
		font-size: 20px;
		text-align: left;
	}
	.fileFlame{
		padding: 16px;
	}
	.fileTitle_sub{
		font-size: 20px;
	}
	.fileTitle_sub::before{
		width: 24px;
		height: 32px;
	}
	.sectonImg.fileSectonImg{
		margin: 14px auto 0;
	}
	.fileAttention{
		display: block;
	}
	.fileAttentionTitle{
		width: 100%;
	}
	.fileAttention_text{
		font-size: 16px;
		padding: 8px 0;
		margin-bottom: 10px;
	}
	.fileAttention_contens{
		margin-left: 0;
	}
	.fileSentence{
		text-align: left;
	}
}

/* ------------------------------------------------------------
	footer 
   ------------------------------------------------------------ */

.footer {
	background: #EEEEEE;
	padding: 50px 0 36px;
	text-align: center;
}
.footerMenu {
	text-align: center;
}
.footerMenu_item+.footerMenu_item {
	margin-top: 4px;
}
.footerMenu_item_link {
	color: #707070;
	font-size: 19px;
	text-decoration: none;
	font-weight: 200;
}
.footerMenu_item_link:hover {
	text-decoration: underline;
}
.copyright {
	font-size: 16px;
	font-weight: 200;
	margin-top: 30px;
	display: block;
}
@media screen and (max-width:640px) {
	.footer {
		padding: 15px 0;
	}
	.footerMenu_item_link {
		color: #707070;
		font-size: 14px;
	}
	.copyright {
		font-size: 8px;
		margin-top: 15px;
	}
}



/* ------------------------------------------------------------
	閲覧環境について 
   ------------------------------------------------------------ */
.spec{
	text-align: left;
}
.spec .hd__h2{
    border-left: #006AB4 solid 5px;
	color: #006AB4;
    font-size: 2rem;
    padding-left: 20px;
}
.spec .hd__h3{
	color: #006AB4;
    margin-top: 18px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.spec .fs__4 {
    font-size: 0.9rem;
}


/* ------------------------------------------------------------
	株主総会会場ご案内図
   ------------------------------------------------------------ */
.modal_map .map_image img{
	max-width: 100%;
}


/* ------------------------------------------------------------
	同意
   ------------------------------------------------------------ */
.consentModal_btn {
	text-align: center;
	margin-top: 30px;
}
.consentModal_btn a {
    display: inline-block;
    line-height: 60px;
    border-radius: 100px;
    color: #fff;
	background: #006AB4;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    padding: 0 90px;
}
.consentModal_note {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 8px;
  font-size: 0.8rem;
}
/*.consentModal_expired{
  display: none;
}
.consentModal_expired.is-show{
  display: block;
}*/


/* ------------------------------------------------------------
	以下カラバリ用 / .color_green（緑）
   ------------------------------------------------------------ */
/* 文字色 */
.color_green .headerMenuNaviList_item_link  {
    color: #1BBF20;
}

/* 背景色 */
.color_green .headerMenuBtn,
.color_green .voteModalBtnLink,
.color_green .fileTitle,
.color_green .fileReadBtn{
    background-color: #1BBF20;
}  
.color_green .floatingMenu {
    background-color: #149018;
}
.color_green .headerMenuNaviList_item_link:hover {
    background-color: #edfaed;
}

/* 線色 */
.color_green .fileFlame{
	border-color: #1BBF20;
}

/* 推奨環境モーダル */
.color_green .spec .hd__h2{
    border-left-color: #1BBF20;
	color: #1BBF20;
}
.color_green .spec .hd__h3{
	color: #1BBF20;
}
.color_green .consentModal_btn a{
	background-color: #1BBF20;
}



/* ------------------------------------------------------------
	以下カラバリ用 / .color_red（赤）
   ------------------------------------------------------------ */
/* 文字色 */
.color_red .headerMenuNaviList_item_link,
.color_red .floatingMenuListBtn_link{
    color: #D3023C;
}

/* 背景色 */
.color_red .headerMenuBtn,
.color_red .voteModalBtnLink,
.color_red .fileTitle,
.color_red .fileReadBtn{
    background-color: #D3023C;
}
.color_red .floatingMenu {
    background-color: #90042b;
}
.color_red .headerMenuNaviList_item_link:hover {
    background-color: #fff0f4;
}
.color_red .floatingMenuListBtn_link,
.color_red .toTop_link_floating{
    background-color: #fff;
}

/* 線色 */
.color_red .fileFlame{
	border-color: #D3023C;
}

/* 推奨環境モーダル */
.color_red .spec .hd__h2{
    border-left-color: #D3023C;
	color: #D3023C;
}
.color_red .spec .hd__h3{
	color: #D3023C;
}
.color_red .consentModal_btn a{
	background-color: #D3023C;
}

/* ------------------------------------------------------------
	以下カラバリ用 / .color_white（白）
   ------------------------------------------------------------ */
/* 文字色 */
.color_white .headerMenuNaviList_item_link,
.color_white .floatingMenuListBtn_link,
.color_white .sectionTitle_text{
    color: #434343;
}

/* 背景色 */
.color_white .headerMenuBtn,
.color_white .voteModalBtnLink{
    background-color: #bfbfbf;
}
.color_white .floatingMenu,
.color_white .fileReadBtn,
.color_white .fileTitle {
    background-color: #434343;
}
.color_white .headerMenuNaviList_item_link:hover {
    background-color: #f5f5f5;
}
.color_white .floatingMenuListBtn_link,
.color_white .toTop_link_floating{
    background-color: #fff;
}

/* 線色 */
.color_white .fileFlame{
	border-color: #434343;
}

/* 推奨環境モーダル */
.color_white .spec .hd__h2{
	border-left-color: #434343;
	color: #434343;
}
.color_white .spec .hd__h3{
	color: #434343;
}
.color_white .consentModal_btn a{
	background-color: #434343;
}




/* ------------------------------------------------------------
	以下カラバリ用 / 全色
   ------------------------------------------------------------ */
.headerMenuNaviList_item_link.headerMenuNaviList_item_link-noLink:hover{
	background: #FFF;
}
.headerMenuNaviList_item_link.headerMenuNaviList_item_link-noLink::after{
	display: none;
}