@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;
}

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

/* ------------------------------------------------------------
	ハンバーガーメニュー
   ------------------------------------------------------------ */
.headerMenuBtn{
	width: 100px;
    height: 100px;
    position: fixed;
    background: #002b9f;
    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 100px;
	float:right;
}
.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: #002b9f;
	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;
}

@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;
	}
}

/* ------------------------------------------------------------
	議決権を行使する 
   ------------------------------------------------------------ */
#voteModalContents{
	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;
}
#correctionModalContents a {
	color: #002b9f;
}
.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{
		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: #002b9f;
	}
}
/* ------------------------------------------------------------
	議決権を行使する (スマート行使) 
   ------------------------------------------------------------ */
.fileRedTex{
	color: #BF0508;
	font-weight: bold;
}
.fileTitle{
	color: #FFF;
	position: relative;
	padding: 10px 20px 10px 20px;
	font-size: 26px;
	margin: 16px 0 0;
	background: #002b9f;
	line-height: 1.3;
}
.fileFlame{
	border: 1px solid #002b9f;
	padding: 20px 30px;
	margin-bottom: 10px;
}
.fileTitle_sub{
	font-size: 26px;
	font-weight: bold;
	margin: 0 0 10px;
}

.sectonImg.fileSectonImg{
	width: 460px;
	margin: 14px auto 0;
}
.fileSectonImg img{
	width: 100%;
}
.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;
	}
	.fileFlame{
		padding: 16px;
	}
	.fileTitle_sub{
		font-size: 20px;
	}
	.fileTitle_sub::before{
		width: 24px;
		height: 32px;
	}
	.sectonImg.fileSectonImg{
		width: 100%;
		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;
	}
	
}

/* ------------------------------------------------------------
	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;
	}
}












































   
   
   
   
   
   
   
   