/* CSS Document */
html{
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color:#1F1F21;
}
*{
	font-size:100%;
	margin:0;
	padding:0;
	line-height:100%;
}

/*
ヘッダー
*/
header#header{
	background: #CD1A15;
}
.headerTitle{
	padding:10px;
}
.headerTitle span{
	display:block;
	color:#fff;
	text-align:center;
}
.headerTitle .text1{
	font-size:12px;	
	font-weight:400;
	padding-bottom:5px;
	letter-spacing:0.1em;
}
.headerTitle .text2{
	font-size:32px;
	font-weight:700;
}
.headerTitle .text3{
	font-size:16px;	
	font-weight:700;
	padding-top:5px;
}





/*
ナビゲーション
*/
nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background: #fff;
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
}
 
nav.globalMenuSp ul {
    background: #CD1A15;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
 
nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #fff;
}
 
/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
 
nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
		text-decoration:none;
}
 
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateY(0%);
}

/* ハンバーガーメニュー */
.navToggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 13px;
    top: 18px;
    width: 56px;/*48*/
    height: 57px;
    cursor: pointer;
    z-index: 3;
    background: #CD1A15;
    text-align: center;
}
 
.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
  	width: 44px;/*  width: 30px;	*/
    border-bottom: solid 3px #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
}
 
.navToggle span:nth-child(1) {
    top: 9px;
}
 
.navToggle span:nth-child(2) {
    top: 21px;
}
 
.navToggle span:nth-child(3) {
    top: 33px;
}
 
.navToggle span:nth-child(4) {
    border: none;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    top: 40px;
}
/* タップ後のCSS */
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*
TOPページ
*/
#topMain{
	width:100%;
	height:320px;
	position:relative;
	background: url(./assets/img/main_bg.jpg) no-repeat;
	background-position:bottom ;
	background-size:cover;
	background-color:#f9f5f7;
}
#topMainCopy{
	top:10px;
	left:30px;
	height:264px;
	position:absolute;
}
#topMainCopy img{
	height:100%;
}
#topMainLogoRikken{
	bottom:8px;
	left:8px;
	width:120px;
	position:absolute;
}
#topMainLogoRikken img{
	width:100%;
}


@media (min-width: 700px) {
	#topMain{
		height:500px;
		background-size:contain;
		background-color:#f4f2f0;
		background-position:bottom center;
	}
	#topMainCopy{
		top:30px;
		left:30%;
		height:400px;
	}
	#topMainLogoRikken{
		left:30%;
	}
}

/* 各コンテンツ */
.row{
	width:90%;
	max-width:1000px;
	margin:0 auto;
	padding:30px 0 30px;
}
.mycontent--bg_gray{
	background-color:#eee;
}
.mycontent--bg_red{
	background-color:#CD1A15;
}
a:hover{
	opacity:0.8;
}


.myh2{
	padding:30px 0;
	text-align:center;
}
.myh2_title{
	font-size:30px;
}
.myh2_title_en{
	font-size:10px;
	background-color:#999999;
	width:11em;
	margin:0 auto;
	padding:5px 0;
	font-weight:700;
	color:#fff;
	letter-spacing:0.1em;
	margin-top:5px;
}
.myhr1{
	width:30%;
	margin:25px auto;
	height:3px;
	border:none;
	background-color:#CD1A15;
}
.myhr2{
	width:80%;
	margin:5px auto;
	height:2px;
	border:none;
	background-color:#eee;
}

.news .date{
	font-size:12px;
	color:#999;
}
.news .text{
	font-size:16px;
	line-height:130%;
}
@media (min-width: 700px) {
	.news .date{
		font-size:20px;
		color:#999;
	}
	.news .text{
		font-size:30px;
		line-height:120%;
	}
}



#contactBox1{
	text-align:center;
}
.contact_copy{
	font-size:34px;
	font-weight:700;
	color:#CC1914;
	margin:40px 0 30px;
}
.contact_link img{
	margin:0 12px;
	width:32px;
}
.contact_text{
	font-size:27px;
	font-weight:700;
	margin:20px 0 30px;
}

@media (min-width: 700px) {
	.contact_copy{
		font-size:50px;
	}
	.contact_link img{
		margin:0 15px;
		width:65px;
	}
}

.flex{
	box-sizing:border-box;
	display:flex;
}


.menu_item_icon_box{
	width:15%;
	padding:10px;
	margin-left:10px;
	margin-bottom:-20px;
}
.menu_item_icon{
	color:#CD1A15;
	background-color:#fff;
	font-size:10px;
	padding:5px;
	text-align:center;
	font-weight:700;
	margin-right:-5px;
}
.mycontent--menu{
	padding:20px 0;
}
.menu_item{
	color:#fff;
	margin:20px 10px;
}
.menu_item_left{
	width:15%;
	text-align:right;
	padding:10px;
	border-right:2px solid #fff;
	font-size:26px;
	font-weight:700;
	display:flex;
	flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
	justify-content: center; /* 子要素をflexboxにより中央に配置する */
}
.menu_item_right{
	width:85%;
	font-size:15px;
	display:flex;
	flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
	justify-content: center; /* 子要素をflexboxにより中央に配置する */
}
.menu_item a{
	display:block;
	padding:20px 40px 20px 10px;
	color:#fff;
	background:url(./assets/img/icon_menu_arrow.png) no-repeat;
	background-position:right;
	background-size:30px 30px;
	text-decoration:none;
	font-weight:700;
}
@media (min-width: 700px) {
	.menu_item_icon_box{
		width:20%;
	}
	.menu_item_icon{
		width:5em;
		font-size:15px;
	}
	.menu_item_left{
		width:20%;
		font-size:47px;
	}
	.menu_item_right{
		width:80%;
		font-size:24px;	
	}
	.menu_item a{
		padding:20px;
	}
}


.topTitleBox{
	padding:75px 20px 20px;
}
@media (min-width: 700px) {
	.topTitleBox{
		justify-content: center;
	}
}
.topTitle_no{
	font-size:36px;
	font-weight:700;
	color:#D7000E;
	display:flex;
	flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
	justify-content: center; /* 子要素をflexboxにより中央に配置する */
}
.topTitle_content{
	display:flex;
	flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
	justify-content: center; /* 子要素をflexboxにより中央に配置する */
}
.topTitle_en{
	background-color:#999;
	font-size:10px;
	color:#fff;
	padding:2px;
	width:6em;
	text-align:center;
	margin-bottom:3px;
}
.topTitle_text{
	font-size:18px;
	font-weight:700;
}

/* 01 */

#topContent01{
	background:url(./assets/img/top_img2.jpg) no-repeat;
	background-size:cover;
	position:relative;
}
.img_menu1_copy{
	display:block;
	width:90%;
	max-width:590px;
	margin: 20px auto;
	padding-bottom:80px;
}

a.readmore_btn{
	color:#1F1F20;
	font-weight:700;
	font-size:14px;
	text-decoration:none;
	background:url(./assets/img/icon_link_arrow.png) no-repeat;
	text-align:center;
	background-position:right 10px center;
	padding:15px ;
}
a.readmore_btn--bottom{
	position:absolute;
	width:6em;
	padding-left:3em;
	padding-right:4em;
	bottom:0;
	left: 0;
	right: 0;
	margin:auto;
	background-color:#fff;
	border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

/* 02 */
.profile_box::before{
	display:block;
	content:"";
	background:url(./assets/img/top_profile.png) no-repeat;
	background-size:contain;
	background-position:right;
	width:100%;
	height:100px;
	margin-top:-120px;
}
.profile_box h3{
	color:#fff;
	background-color:#D7000F;
	padding:25px 10px 20px;
	font-size:30px;
	text-align:center;
}
.profile_box h3 span{
	display:block;
	font-size:55%;
	line-height:150%;
}
.profile_box p{
	background-color:#F8D1D4;
	line-height:180%;
	padding:20px 20px 45px;
	font-size:15px;
}
#topContent02 .profile_box p{
	position:relative;
}


/* 03 */
.policy_item--rev{
	flex-direction : row-reverse;
}
.policy_img{
	width:50%;
	position:relative;
	min-height:180px;
}
.policy_content{
	box-sizing:border-box;
	padding:10px;
	width:50%;
	display:flex;
	flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
	justify-content: center; /* 子要素をflexboxにより中央に配置する */
}
.policy_img--1{
	background:url(./assets/img/top_link1.jpg) no-repeat center center;
	background-size:cover;
}
.policy_img--2{
	background:url(./assets/img/top_link2.jpg) no-repeat center center;
	background-size:cover;
}
.policy_img--3{
	background:url(./assets/img/top_link3.jpg) no-repeat center center;
	background-size:cover;
}
.policy_img--4{
	background:url(./assets/img/top_link4.jpg) no-repeat center center;
	background-size:cover;
}
.policy_min{
	color:#D7000F;
	font-size:13px;
}
.policy_content h3{
	font-size:18px;
	padding:5px 0 5px;
	line-height:110%;
}
.policy_text{
	color:#666;
	font-size:14px;
	line-height:120%;
}
.policy_item--rev .policy_content{
	text-align:right;
}
a.readmore_btn--img_middle{
	box-sizing:border-box;
	display:flex;
	flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
	justify-content: center; /* 子要素をflexboxにより中央に配置する */
	width:100%;
	height:100%;
	padding:0 2em 0 1em;
	color:#fff;
	background-color:rgba(0,0,0,0.5);
}
a.readmore_btn--img_middle:hover{
	opacity:0.5;
}


/* 04 */
.top_reportbox{
	background-color:#eee;
	padding:0 5px;
	flex-wrap:wrap;
	position:relative;
}
.report_item{
	background-color:#fff;
	width:calc(100% - 10px);
	padding-bottom:5px;
	margin:10px 5px 10px;
	display:flex;
	box-sizing:border-box;
	flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
}
@media (min-width: 700px) {
	.report_item{
		width:calc(25% - 10px);
	}
}
.report_img img{
	width:100%;
	display:block;
}
.report_date{
	font-size:16px;
	color:#aaa;
	padding:20px 20px 10px;
}
.report_date span{
	color:#D7000F;
	padding-left:10px;
}
.report_text{
	font-size:20px;
	font-weight:700;
	padding:0 20px 15px;
}
.report_text a{
	color:#1F1F21;
	text-decoration:none;
}
.report_p{
	padding:0 20px 15px;
}
a.readmore_btn--report{
	display:block;
	width:50%;
	padding-left:3em;
	padding-right:4em;
	text-align:center;
	margin:0 auto;
}
@media (min-width: 700px) {
	a.readmore_btn--report{
		width:40%;
	}
}
.report_item .myhr2{
	width:80%;
	margin:auto auto 5px;
	height:2px;
	border:none;
	background-color:#eee;
}
.top_reportbox--all{
	height:50px;
}
a.readmore_btn--reportall{
	position:absolute;
	width:6em;
	padding-left:3em;
	padding-right:4em;
	bottom:0;
	left: 0;
	right: 0;
	margin:auto;
	background-color:#fff;
	border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}



/* 05 */
.top_contactmessage{
	border:8px solid #D7000F;
	padding:20px 10px;
	width:80%;
	max-width:500px;
	margin:10px auto;
	box-sizing:border-box;
}
.top_contactmessage p{
	color: #D7000F;
	font-weight:700;
	font-size:30px;
	text-align:center;
}
.top_contactmessage p span{
	font-size:120%;
}
.top_contactread{
	padding:20px 0;
	width:80%;
	max-width:540px;
	margin:10px auto;
	font-size:16px;
	font-weight:700;
}
.top_contactread p{
	line-height:180%;
}
.top_contactbox{
	background-color:#eee;
	padding:9px 9px;
	flex-wrap:wrap;
	position:relative;
}
.contact_item{
	background-color:#fff;
	width:calc(50% - 2px);
	padding-bottom:5px;
	margin:1px 1px 1px;
	display:flex;
	box-sizing:border-box;
	flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
}
.contact_icon{
	display:flex;
	justify-content: center; 
	align-items: center;
	margin-top:20px;
	font-size:13px;
	font-weight:700;
}
.contact_value{
	text-align:center;
	font-size:13px;
	font-weight:700;
	margin:5px 0 15px;
}
.contact_value--min{
	font-size:11px;
	font-weight:700;
}

/*
個別ページ
*/
.page_main_box{
	box-sizing: border-box;
	height: 50vh;
	padding: 40vh 0 0;
	background:url(./assets/img/top_img4.jpg) no-repeat center center;
	background-size:cover;
}
@media (min-width: 700px) {
	.page_main_box{
		height: 33vh;padding: 27vh 0 0;
	}
}
/* プロフィール */
.page-id-2 .page_main_box{
	background:url(./assets/img/top_img5.jpg) no-repeat center center ;
	background-size:cover;
}
/* 活動報告 */
.page-id-28 .page_main_box{
	background:url(./assets/img/top_img4.jpg) no-repeat center center ;
	background-size:cover;
}
/* 区議会議員としての使命 */
.page-id-14 .page_main_box{
	background:url(./assets/img/top_img3.jpg) no-repeat center center ;
	background-size:cover;
}

.page_main_box--mission{

}
.page_main_box h1,.page_main_box p{
	background-color: #CD1A15;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.1em;
	width: 80%;
	max-width: 400px;
	padding: 20px 10px;
	margin: 0 auto 0;
	text-align: center;
}

.mypage{
	padding: 0px 0px 80px;
}
.mypage .mycontainer{
	max-width: 680px;
	margin: 0 auto;
}
.mypage h2{
	text-align: center;
	font-size: 22px;
	padding: 10px 10px;
	line-height: 140%;
}
.mypage h2:before{
	content:"";
	display: block;
	height: 2px;
	background-color: #CD1A15;
	width: 50%;
	margin: 0 auto;
	margin-top: 80px;
	margin-bottom: 24px;
}
.mypage h2:after{
	content:"";
	display: block;
	height: 2px;
	background-color: #CD1A15;
	width: 50%;
	margin: 0 auto;
	margin-top: 24px;
	margin-bottom: 36px;
}
.mypage h3{
	text-align: center;
	font-size: 18px;
	padding: 10px 10px;
	margin-top: 50px;
	margin-bottom: 30px;
	line-height: 140%;
}
.mypage h2+h3{
	margin-top: 20px;
}
.mypage h4{
	text-align: center;
	font-size: 15px;
	padding: 10px 10px;
	margin-top: 30px;
	margin-bottom: 10px;
	line-height: 140%;
}
.mypage p{
	text-align: left;
	font-size: 15px;
	line-height: 180%;
	padding: 10px 15px;
}

.mypage td{
	padding: 10px;
	font-size: 15px;
	min-width: 5em;
	line-height: 180%;
	vertical-align: top;
}

.prof_img_box{
	display: flex;
}
.prof_img_box img{
	width: 180px;
}

.prof_img_box img.vertical{
	width: 120px;
}
.prof_img_box img.radio{
	width: 300px;
}

.readtextbox{

}
.local_manifesto_box{
	background-color: #f1f0da;
	padding: 15px;
}
.local_manifesto_box h2{
	text-align: left;
	margin: 10px 0 20px;
	padding: 10px;
	border-bottom: 1px solid #333;
}
.local_manifesto_box p+h2{
	margin-top: 80px;
}
.local_manifesto_box h2:before,.local_manifesto_box h2:after{
	display: none;
						}
.local_manifesto_box h3{
	text-align: left;
	margin: 20px 0 15px;
	padding: 0;
}
.local_manifesto_box h4{
	text-align: left;
	margin: 15px 0 15px;
	padding: 0;
}
.local_manifesto_box p{
	text-align: left;
	margin: 15px 0 15px;
	padding: 0;
}
@media (min-width: 700px) {
	.local_manifesto_box{
		padding: 45px;
	}
}

.myblog{
	padding: 40px 10px 80px;
	background-color: #f0f0f0;
	margin-bottom: 30px;
}
.myblog_content{
	max-width: 680px;
	margin: 0 auto;
	background-color: #fff;
	padding: 15px;
}
.myblog_content h1{
	font-size: 200%;
	margin-bottom: 30px;
}
.myblog_content p{
	font-size: 16px;
	line-height: 180%;
}

@media (min-width: 700px) {
	.myblog_content{
		padding: 45px;
	}
}

.post-navigation{
	margin-top: 30px;
}
.post-navigation a{

	line-height: 150%;
}
.screen-reader-text{
	display: none;
}


/* pager */
.pager{
	width: 100%;
	padding: 15px;
	display: flex;
}
.pager_prev{
	text-align: left;
	width: 50%;
}
.pager_next{
	text-align: right;
	width: 50%;
}
.nav-links{
	width: 100%;
	padding: 15px;
	display: flex;
	border-top:1px solid #333;
}
.nav-previous{
	text-align: left;
	width: 50%;
}
.nav-next{
	text-align: right;
	width: 50%;
}

#topOshieteLink{
	margin:30px 10px 0;
	text-align:center;
}
#topOshieteLink img{
	width:100%;
	max-width:750px;
}
