@charset "UTF-8";
/* ------------------------------------------------------------
	00. RESET SETTING CSS
   ------------------------------------------------------------ */

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, figure {
	margin: 0;
	padding: 0;
}
html {
	/*overflow-y: scroll;*/
}
body {
	-webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}
ol, ul {
	list-style: none;
}
fieldset, img {
	border: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th {
	text-align: left;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}
/* ------------------------------------------------------------
	01. FONT SETTING CSS
   ------------------------------------------------------------ */

body {
	font-family: 'Noto Sans JP', 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', arial, helvetica, clean, sans-serif;
	font-weight: 400;
	/*font-size: 16px;*/
	font-size: 13px;
	color: #434343;
}
table {
	font-size: inherit;
	font: 100%;
}
* {
	max-height: 999999px;
	box-sizing: border-box;
}

.articleInner p + *{
	margin-top: 16px;
}

/* ------------------------------------------------------------
	もっと読む
   ------------------------------------------------------------ */
.paragraph{
	text-indent: 1em;
}
.readMoreBtn {
	display: none;
}
@media screen and (min-width:640px) {
	.readMoreContents {
		display: block !important;
	}
}
@media screen and (max-width:640px) {
	.readMoreContents {
		display: none;
	}
	.readMoreBtn {
		display: block;
		padding-right: 10px;
    	padding-left: 10px;
		margin: 20px auto 0px;
		border-radius: 10px;
		color: #fff;
		background: no-repeat 95% center, linear-gradient(to bottom, #002b9f 0%,#3355b2 100%);
		border-radius: 10px;
		font-size: 1.3125rem;
    	line-height: 2;
		line-height: 60px;
		width: 255px;
		cursor: pointer;
		position: relative;
	}
	.readMoreBtn {
		display: none;
	}
	.readMoreBtn::after{
		position: absolute;
		content: '';
		display: inline-block;
		width: 30px;
		height: 30px;
		background: url(../imgs/sp/icn_plus01.png) no-repeat;
		background-size: 30px auto;
		top: 25%;
    	right: 15px;
	}
	.readMoreBtn.openMode::after{
		position: absolute;
		content: '';
		display: inline-block;
		width: 30px;
		height: 30px;
		background: url(../imgs/sp/icn_plus02.png) no-repeat;
		background-size: 30px auto;
		top: 25%;
    	right: 15px;
	}
	.readMoreBtn::before{
		position: absolute;
		content: '';
		display: block;
		padding: 100% 0;
		margin: 0 auto 60px auto;
		bottom: 0;
		left: -9%;
		background: url(../imgs/sp/bg_grad.png) repeat-x center bottom;
		cursor: pointer;
		line-height: 60px;
		width: 300px;
		box-sizing: border-box;
		background-size: auto 50px;
	}
	.readMoreBtn.openMode::before{
		display: none;
	}

}
/* ------------------------------------------------------------
	FAQリスト
   ------------------------------------------------------------ */

.faqBox {
	border: 1px solid #002b9f;
}
.faqBox_question {
	padding: 16px 60px 16px 40px;
	position: relative;
}
.faqBox_answer {
	padding: 16px 28px 16px 40px;
	position: relative;
}
.faqBox_answer+.faqBox_question {
	border-top: 1px solid #002b9f;
}
.faqBox_answer {
	background: #e7f3fb;
}
.faqBox_question::before,
.faqBox_answer::before {
	content: "";
	display: block;
	position: absolute;
	top: 16px;
	left: 16px;
    font-weight: bold;
    font-size: 18px;
}
.faqBox_question::before {
	content: "Q.";
	color: #FE9B00;
}
.faqBox_answer::before {
	content: "A.";
	color: #002b9f;
}
.faqBox_question::after {
	content: "－";
	display: block;
	position: absolute;
	top: 50%;
	right: 16px;
	margin-top: -0.5em;
	font-size: 40px;
	line-height: 1em;
	color: #a9a9a9;
}
.open.faqBox_question::after {
	content: "＋";
}
@media screen and (max-width:640px) {
	.faqBox_question {
		padding: 16px 40px 16px 40px
	}
	.faqBox_question::after {
		font-size: 20px;
	}
}
/* ------------------------------------------------------------
	前の議案・次の議案
   ------------------------------------------------------------ */

.guideBtn {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 300px;
	margin: 50px auto 0;
}
.guideBtnItem {
	width: 140px;
}
.guideBtnItem_next, .guideBtnItem_prev {
	display: block;
	border-radius: 100px;
	color: #fff;
	background: #002b9f;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	padding: 4px 4px;
}
.guideBtnItem_prev {
	border-top-left-radius: 100px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 100px;
}
.guideBtnItem_next {
	border-top-left-radius: 0;
	border-top-right-radius: 100px;
	border-bottom-right-radius: 100px;
	border-bottom-left-radius: 0;
}
.guideBtnItem_disab {
	background: #ced0d2;
}
.guideBtnItem_next:hover, .guideBtnItem_prev:hover {
	opacity: 0.6;
}
.guideBtnItem_disab:hover {
	opacity: 1;
}
@media screen and (max-width:750px) {
	.guideBtn {
		width: 100%;
		margin-top: 30px;
		padding: 0 20px;
	}
	.guideBtnItem {
		width: 50%;
	}
}
@media screen and (max-width:364px) {
	.sectionTopTitle {
		font-size: 30px;
	}
	.sectionTopTitle-big {
		font-size: 56px;
	}
}
/* ------------------------------------------------------------
	議案　補足資料ボタン
   ------------------------------------------------------------ */
.explanationBtn {
    width: 300px;
    margin: 40px auto;
}
.explanationBtn_link {
	display: block;
    line-height: 50px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
	border: 3px solid #002b9f;
	color: #002b9f;
}
.explanationBtn_link:hover{
	opacity: 0.6;
}
@media screen and (max-width:640px) {
.explanationBtn {
	width: 100%;
    height: auto;
    padding: 0 20px;
    margin: 30px auto;
}
.explanationBtn_link {
    line-height: 1em;
    font-size: 14px;
    padding: 12px 10px;
}
}
/* ------------------------------------------------------------
	議案　略歴の表
   ------------------------------------------------------------ */
.electionList{
	margin-bottom: 20px;
}
.electionListItem {
	position: relative;
	padding: 42px 42px 42px 56px;
	border: 3px solid #002b9f;
	counter-increment: number;
}
.electionListItem+.electionListItem {
	margin-top: 40px;
}
.electionListItem:last-child{
	margin-bottom: 10px;
}
.electionListItem::before {
	content: counter(number);
	display: block;
	position: absolute;
	top: 8px;
	left: 0;
	width: 46px;
	color: #fff;
	font-size: 40px;
	line-height: 1em;
	text-align: center;
	z-index: 10;
}
.electionListItem::after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 94px 84px 0 0;
	border-color: #002b9f transparent transparent transparent;
	top: 0;
	left: 0;
	z-index: 0;
}
.electionListItem-noNum {
	position: relative;
	padding: 42px 42px 42px 56px;
	border: 3px solid #002b9f;
	counter-increment: number;
}
.electionListItem-noNum::before{
	content: "";
}
.electionListItem-noNum::after{
	display: none;
}
.electionListItem_inner {
	display: flex;
	justify-content: space-between;
}
.electionListItem_person {
	width: 220px;
}
.electionListItem_person img {
	width: 220px;
	vertical-align: bottom;
}
.electionListItem_person_name {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 0px !important;
	font-size: 30px;
	font-weight: bold;
}
.electionListItem_person_icn {
	margin: 0 auto;
	text-align: center;
	margin-top: 5px !important;
	margin-bottom: 0px !important;
	font-size: 15px;
	width: 190px;
	padding: 2px;
}
.icn_sainin {
	background: #002b9f;
	border: 1px solid #002b9f;
	color: #fff;
}
.icn_shinnin {
	background: #ffffff;
	border: 1px solid #002b9f;
	color: #002b9f;
}
.icn_syagai,
.icn_doku {
	background: #f2f5fa;
	border: 1px solid #002b9f;
	color: #002b9f;
}
.electionListItem_detail {
	width: 640px;
}
.electionList_table {
	width: 100%;
}
.electionList_table th {
	padding: 13px 20px;
	font-weight: bold;
	line-height: 1.75;
	vertical-align: top;
	width: 185px;
	border: 1px solid #002b9f;
	background: #f2f5fa;
	color: #002b9f;
	border-collapse: collapse;
}
.electionList_table td {
	padding: 13px 20px;
	line-height: 1.75;
	vertical-align: top;
	border: 1px solid #002b9f;
	border-collapse: collapse;
}
.electionBioBtn,
.electionBioBtn-close {
	display: none;
}

.electionBioList_event{
	margin-left: 1em;
}


@media screen and (min-width: 640px) {
	.electionListItem_detail {
		display: block !important;
	}
}
@media screen and (max-width:640px) {
	.electionListItem::before {
		font-size: 24px;
		width: 40px;
	}
	.electionListItem::after {
		border-width: 84px 74px 0 0;
	}
	.electionListItem {
		padding: 42px 16px 30px;
	}
	.electionListItem-noNum{
		padding: 42px 16px 30px;
	}
	.electionListItem_inner {
		display: block;
	}
	.electionListItem_person {
		text-align: center;
        margin: 0 auto;
	}
	.electionListItem_detail {
		display: none;
		margin-top: 20px;
		width: 100%;
	}
	.electionList_table th {
		display: block;
		width: 100%;
		border-top: none;
	}
	.electionList_table tr:first-child th {
		border-top: 1px solid #002b9f;
	}
	.electionList_table td {
		display: block;
		width: 100%;
		border-top: none;
	}
	.electionBioBtn {
		display: block;
		background: #002b9f;
		border-radius: 100px;
		font-size: 20px;
		color: #fff;
		text-align: left;
		line-height: 70px;
		margin-top: 20px;
		padding-right: 10px;
   	    padding-left: 10px;
		cursor: pointer;
		position: relative; /*追加*/
	}
	.active .electionBioBtn-open {
		display: none;
	}
	.active .electionBioBtn-close {
		display: inline-block;
	}
	
	/* 追記 */
	.electionBioBtn::before{
		display: block;
		content: "";
		position: absolute;
		width: 30px;
		height: 30px;
		border: 1px solid #fff;
		top: 25%;
		right: 14px;
	}
	.electionBioBtn-open::before{
		display: block;
		content: "";
		position: absolute;
		width: 20px;
		height: 1px;
		background: #fff;
		top: 50%;
    	right: 20px;
	}
	.electionBioBtn-open::after{
		display: block;
		content: "";
		position: absolute;
		width: 20px;
		height: 1px;
		background: #fff;
		top: 50%;
		right: 20px;
		transform: rotate(90deg);
   	    -moz-transform: rotate(90deg);
		transform-origin: center center;
		animation: 0.6s;
	}
	.electionBioBtn-close::before{
		display: block;
		content: "";
		position: absolute;
		width: 20px;
		height: 1px;
		background: #fff;
		top: 50%;
    	right: 20px
	}
	.electionBioBtn-close::after{
		display: block;
		content: "";
		position: absolute;
		width: 20px;
		height: 1px;
		background: #fff;
		top: 50%;
    	right: 20px;
	}
}



/* 追記 */
body {
	font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', arial, helvetica, clean, sans-serif;
	font-size: 13px;
	*font-size:small;
	*font:x-small;
	overflow-x: hidden;
}
body.modern {
	font-family: YuGothic, '游ゴシック','メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', arial, helvetica, clean, sans-serif;
	font-size: 13px;
	overflow-x: hidden;
}
.mainContents {
    padding: 0;
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.7;
}

.guideBtn {
	margin: 50px auto 50px;
}
.title-h2 {
    clear: both;
    position: relative;
    padding: 10px 20px 10px 40px;
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.6;
    margin-bottom: 1.14286rem;
}
.mt___M{
	margin-top: 16px;
    margin-top: 1.14286rem !important;
}
.mt__0{
	margin-top: 0px !important;
}
.pl__1hem{
	padding-left: 1.5em;
}
.pl__2hem{
	padding-left: 2.5em;
}
.pl__3hem{
	padding-left: 3.5em;
}

@media screen and (max-width:640px) {
	.mainContents {
		font-size: 16px;
		font-size: 1rem;
	}
	.title-h2{
		position: relative;
		padding: 15px 20px 15px 23px;
		font-size: 21px;
		font-size: 1.3125rem;
		line-height: 1.2;
		margin-bottom: 1.14286rem;
	}
	.title-h2:before {
		content: '';
		display: block;
		position: absolute;
		background: #fff;
		width: 4px;
		height: 1em;
		left: 10px;
		top: .75em;
	}
	.electionListItem::before{
		font-size: 30px;
	}
	.electionBioBtn{
		background: no-repeat 95% center, linear-gradient(to bottom, #002b9f 0%,#3355b2 100%);
    	border-radius: 10px;
		line-height: 60px;
	}
}

/* ------------------------------------------------------------
	剰余金処分
   ------------------------------------------------------------ */
.surplusArea{
}
.surplusArea_ttl{
	font-weight: bold;
	margin-top: 1em;
}
.surplusArea_dateil{
	padding-left: 2em; 
}   

/* ------------------------------------------------------------
	定款一部変更
   ------------------------------------------------------------ */


