@charset "UTF-8";
/* CSS Document */

@media (max-width: 480px) {

	html, body{
		height: 100%;
		/*font-family: 'Noto Sans JP', sans-serif;*/
		font-family: sans-serif;
		font-size: 18px;
		font-weight: 200;
		font-feature-settings : "palt";
	}
	html *{
		box-sizing: border-box;
	}
	body{
		position: relative;
		width: 100%;
		min-width: initial;	
	}
	a{
		transition: 0.1s linear;
	}
	.f-r{
		font-weight: 400;	
	}
	.f-m{
		font-weight: 500;	
	}
	.f-b{
		font-weight: 700;	
	}
	.clearfix::after{
	  content: "";
	  display: block;
	  clear: both;
	}
	.pc{
		display: none;
	}
	.sp{
		display: inherit;
	}




	body > header{
		height: 72px;
		display: block;
		width: 100%;
		min-width: initial;
		padding-left: initial;
		padding-right: initial;
		/*background: rgba(0,0,255,0.05);*/
		border-bottom: solid 8px #E61673;
	}
	body > header h1{
		float: left;
		width: 40vw;
		height: 100%;
		/*background: rgba(0,255,0,0.5);*/
		margin-left: 68px;
		/**/
		display: flex;
		justify-content: center;
		align-items: center;
	}
	body > header h1 span{
		display: none;
	}
	body > header h1 img#logo{
		width: 100%;
		height: auto;
	}
	body > header .snsbtn{
		position: absolute;
		float: none;
		margin-top: 0px;
		z-index: 6;
		top: 36vh;
		left: 15px;
	}
	.snsbtn{
		width: 170px;
		height: 40px;
	}
	.snsbtn a{
		display: block;
		width: 32px;
		height: 32px;
	}
	.snsbtn a:hover{
		opacity: 0.7;
	}

	.snsbtn a:first-child{
		background: url(../images/icon_fb.png);
		background-size: contain;
		float: left;
		margin-right: 12px;
	}
	.snsbtn a:nth-child(4){
		background: url(../images/icon_tw.png);
		background-size: contain;
		float: left;
		margin-right: 14px;
	}
	.snsbtn a:nth-child(2){
		background: url(../images/icon_ig.svg);
		background-size: contain;
		margin-right: 14px;
		float: left;
	}
	.snsbtn a:nth-child(3){
		background: url(../images/icon_yt.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		float: left;
	}


	nav{
		/*font-family: 'Noto Sans JP', sans-serif;*/
		font-weight: 600;
		font-size: 0.88rem;
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		/*width: 100%;*/
		min-width: initial;
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 8;
	}
	nav.openNav{
		width: 100%;
	}
	nav ul{

	}
	nav li{
		display: inline-block;
		margin-right: 20px;
	}
	nav li:last-child{
		margin-right: 0;
	}
	nav li a{
		text-decoration: none;
		color: #171C61;
	}
	nav li a:hover{
		color: #E61673;
	}
	
	
	/*スマホナビ*/
	#spnavi{
		position: fixed;
		top: 64px;
		/*left: 0;*/
		width: 100%;
		height: calc(100vh - 72px);
		background: rgba(255,255,255,0.9);
		transform: translateX(-200%);
		transition: all .4s;
	}
	.openNav #spnavi{
		transform: translateX(0);
	}
	.openNav #spnavi li{
		display: block;
		line-height: 15%;
		border-bottom: solid 1px #E61673;
		background: white;
		margin: 0;
		padding: 0;
	}
	.openNav #spnavi li:first-child{
		border-top: solid 8px #E61673;
	}
	.openNav #spnavi li a{
		display: block;
		width: 100%;
		height: 100%;
		padding: 8%;
		text-align: center;
	}
	#navToggle{
		display: block;
		width: 32px;
		height: 32px;
		
		position: absolute;
		top: 16px;
		left: 16px;
		
	}
	#navToggle span{
		position: absolute;
		display: block;
		width: 100%;
		height: 4px;
		background: #E61673;
		border-radius: 2px;
		transition: all .4s;
	}
	#navToggle span:nth-child(1){
		top: 0;
	}
	#navToggle span:nth-child(2){
		top: 14px;
	}
	#navToggle span:nth-child(3){
		bottom: 0;
	}
	.openNav #navToggle span:nth-child(1){
		transform: translateY(14px) rotate(45deg);
	}
	.openNav #navToggle span:nth-child(2){
		opacity: 0;
	}
	.openNav #navToggle span:nth-child(3){
		
		transform: translateY(calc(-14px)) rotate(-45deg);
	}


	/*ヘッダ画像とご案内*/
	#headimg{
		background-image: url(../images/BG_headimg.png);
		background-repeat: repeat-x;
		background-position: bottom center;
		background-size: cover;
		width: 100%;
		min-width: initial;
		height: 60vw;
		position: relative;
		top: 0px;
		z-index: 2;
		border-bottom: solid 5px #171C61;
		
		/*overflow-x: hidden;*/
	}
	#headimg:before{
		content: "";
		display: block;
		height: 130%;
		width: 60%;
		background: url(../images/fumoto_headimg_3-2.png) bottom 0 left 20px no-repeat;
		background-size: 130%;
		position: absolute;
		top: -30%;
		right: 0;
	}
	#headimg:after{
        content: "";
        display: block;
        height: 20vh;
        width: 70%;
        background: url(../images/catch8_2.svg) bottom 0px left 0px no-repeat;
        background-size: contain;
        position: absolute;
        top: 20px;
        left: 2%;
    }
	
	#info{
		position: relative;
		top: 0px;
		z-index: 3;
		width: 100%;
		background: #F9F9F9;
		padding: 0;
		
		/*display: none;*/
	}

	#info div.lead{
		width: 100%;
		padding: 3% 3% 3% 3%;
		margin: auto;
		box-sizing: border-box;
		font-size: 1rem;
		color: #E61673;
		position: relative;
		height: auto;
		text-align: justify;
	}
	#info div.lead:before{
		content: "";
		display: block;
		width: 20%;
		height: 30vh;
		background: url(../images/newicon3.svg) center top no-repeat;
		background-size: contain;
		position: absolute;
		top: -15px;
		left: 3%;
	}
	#info div.lead p img{
		width: 100%;
		height: auto;
		margin: 0!important;
		margin-bottom: 10px!important;
	}
	#info div.lead{
		padding: 4%;
		color: #171C61;
	}
	#info div.lead h1{
		font-weight: 700;
		font-size: 1.4rem;
	}
	#info div.lead span{
		line-height: 1.4;
		display: block;
		padding-left: 25%;
		margin-bottom: 20px;
	}
	
	#info div.txt{
		/*padding: 20px 0px 20px 0px;*/
		padding:0 3% 3%;
	}
	table.kouenlist{
		width: 100%;
		margin: 0 auto 3%;
		border-top: solid 1px black;
		border-left: solid 1px black;
		border-right: solid 1px black;
		border-bottom: solid 1px black;
	}
	table.kouenlist th,
	table.kouenlist td{
		border-right: solid 1px black;
		border-bottom: solid 1px black;
		padding: 3px 6px;
		font-size: 0.9rem;
		background: white;
		line-height: 1.2rem
	}
	table.kouenlist th{
		text-align: center;
		background: #E61673;
		font-weight: 700;
		color: white;
	}
	table.kouenlist th:nth-child(1),
	table.kouenlist td:nth-child(1),
	table.kouenlist th:nth-child(2),
	table.kouenlist td:nth-child(2),
	table.kouenlist th:nth-child(3),
	table.kouenlist td:nth-child(3){
		text-align: center;
	}
	table.kouenlist tr.pu1 td{
		/*font-size: 1.0rem;*/
		font-weight: 700;
		background: rgba(252,232,241,1);
	}
	table.kouenlist tr.pu2 td{
		font-size: 1.1rem;
		font-weight: 700;
		background: rgba(251,220,234,1);
	}
	





	/*コンテンツ部*/
	#container{
		margin-top: 0px;
	}
	#container section h1{
		font-size: 1.44rem;
		font-weight: 500;
		
		width: 100%;
		height: auto;
		padding: 10px 0;
		box-sizing: border-box;
		border: none;
		background: #E61673;
		display: flex;
		justify-content: center;
		align-items: center;
		color: white;
		text-align: center;
		line-height: 1.2;
	}
	#c1{ /*ごあいさつ*/
		background: url(../images/BG_C1.png);
		padding: 0 0 4%;
		position: relative;
	}
	#c1 h1{
		position: relative;
		top: 0px;
		margin-bottom: 3%;
	}
	#c1 div.innarbox,
	#c2 div.innarbox,
	.innarbox{
		width: 100%;
		margin: auto;
		position: relative;
	}
	#c1 div.houbun{
		float: none;
		width: 94%;
		background: white;
		
		margin: auto;
		margin-top: 0;
		padding: 8% 0px 0px;
		color: #171C61;
		box-shadow: 0px 2px 2px 2px rgba(0,0,0,0.1);
	}
	#c1 div.houbun h2{
        margin-left: 0px;
        font-size: 1.78rem;
        font-family: serif;
        font-feature-settings: "palt";
		/*height: 28px;*/
		/*background: url("../images/c1_h2_2.svg") top center no-repeat;*/
		
		height: auto;
		padding: 0 3%;
		text-align: center;
		line-height: 1.1;
    }
	#c1 div.houbun h2 span{
		display: none;
	}
	#c1 div p{
		padding: 15px;
		line-height: 2;
		text-align: justify;
	}


	#c2{ /*政治信条*/
		background:#FFF;
		padding: 0 0 1% 0;
		position: relative;
		height: auto;
		box-sizing: border-box;
	}
	#c2 h1{
		margin-top: 0px;
	}
	#c2 .innarbox{
		height: auto;
		/*background: rgba(149,64,65,0.07);*/
	}
	#c2 .innarbox:before{
		content: none;
		
	}
	
	#c2 #kohyaku{
		padding-top: 5%;
	}
	#c2 #kohyaku div{
		width: 100%;
		margin: 0;
	}
	#c2 #kohyaku div h2{
		width: 95%;
		margin-left: 5%;
	}
	#c2 #kohyaku div p{
		width: 100%;
	}
	
	#c2 #kohyaku div:nth-child(1) h2{
		content: url("../images/2024kouyaku_ttl2_1.svg");
	}
	#c2 #kohyaku div:nth-child(2) h2{
		content: url("../images/2024kouyaku_ttl2_2.svg");
	}
	#c2 #kohyaku div:nth-child(3) h2{
		content: url("../images/2024kouyaku_ttl2_3.svg");
	}
	#c2 #kohyaku div:nth-child(4) h2{
		content: url("../images/2024kouyaku_ttl2_4.svg");
	}
	#c2 #kohyaku div:nth-child(5) h2{
		content: url("../images/2024kouyaku_ttl2_5.svg");
	}
	#c2 #kohyaku div:nth-child(6) h2{
		content: url("../images/2024kouyaku_ttl2_6.svg");
	}
	#c2 #kohyaku div:nth-child(7) h2{
		content: url("../images/2024kouyaku_ttl2_7.svg");
	}
	#c2 #kohyaku div:nth-child(8) h2{
		content: url("../images/2024kouyaku_ttl2_8.svg");
	}
	#c2 #kohyaku div:nth-child(9) h2{
		content: url("../images/2024kouyaku_ttl2_9.svg");
	}
	#c2 #kohyaku div:nth-child(10) h2{
		content: url("../images/2024kouyaku_ttl2_10.svg");
	}
	#c2 #kohyaku h2 span{
		display: none;
	}
	#c2 #kohyaku p{
		display: block;
		padding: 0% 5% 20px;
		font-size: 1.55;
		font-weight: 500;
		line-height: 1.8;
	}
	


	#c2 #sinjowrapper{
		width: 94%;
		margin: 3%;
		height: auto;
		box-sizing: border-box;
		padding: 100px 5% 3%;
		background: url(../images/c2_sengen_title.svg) top 25px center no-repeat white;
		background-size: 85%;
		border-radius: 20px;
		position: relative;
		top: auto;
		right: auto;
	}
	.sinjo{
		width: 100%;
		background-position: center left;
		background-repeat: no-repeat;
		background-size: 12%;
		color: #171C61;
		font-weight: 700;
		font-size: 1.11rem;
		padding: 12px 0px 8px 55px;
		/*min-height: 80px;*/
		border-top: dotted 1px #171C61;
	}
	#s1{
		background-image: url(../images/icon_sengen1.svg);
	}
	#s2{
		background-image: url(../images/icon_sengen2.svg);
	}
	#s3{
		background-image: url(../images/icon_sengen3.svg);
	}
	#s4{
		background-image: url(../images/icon_sengen4.svg);
	}
	#s5{
		background-image: url(../images/icon_sengen5.svg);
	}





	#c2-2{ /*ビジョン*/
		position: relative;
		background: none;
		background-size: 100% 345px;
	}
	#c2-2 .innarbox{
		min-height: initial;
		position: relative;
	}

	#c2-2 .innarbox:before{
		content: "";
		display: block;
		width: 100%;
		height: 120px;
		background: url(../images/c2-2_title_sp.svg) top center no-repeat;
		background-size: contain;
		position: relative;
		top: 0px;
		left: 0px;
		z-index: 2;
	}

	#c2-2 #visionwrapper{
		width: 100%;
		margin: auto;
		padding-top: 20px;
		
	}

	.vision{
		width: 100%;
		background-position: top left 5%;
		background-repeat: no-repeat;
		background-size: 70px;
		min-height: initial;
		float: none;
		
		padding: 0 5% 2rem;
	}
	.vision li{
		list-style: disc;
		margin-left: 20px;
	}
	#v1{
		background-image: url(../images/icon_vision1.svg);

	}
	#v2{
		background-image: url(../images/icon_vision2.svg);
		clear: none;
		margin-right: 8%;
	}
	#v3{
		background-image: url(../images/icon_vision3.svg);

	}
	#v4{
		background-image: url(../images/icon_vision4.svg);
		margin-right: 8%;
	}
	#v5{
		background-image: url(../images/icon_vision5.svg);
		margin-bottom: 0px;
	}
	.vision h2{
		font-weight: 700;
		color: #171C61;
		font-size: 1.3rem;
		line-height: 1.5;
		padding-left: 78px;
		padding-top: 2px;
		padding-bottom: 0px;
		margin-bottom: 10px;
	}
	#v5.vision  h2{
		/*padding-top: 0px;
		line-height: 1.1;*/
	}
	.vision p{
		text-align: justify;
	}
	#c2-2 .fumoto{
		position: absolute;
		top: 50px;
		
	}


	#c3{ /*プロフィール*/
		background:#F2F2F2;
		padding:0;
		position: relative;
		padding-bottom: 0px;
		box-sizing: border-box;
	}
	#c3 .innarbox{
        /* height: 1480px; */
        position: relative;
        padding: 1%;
        padding-top: 220px;
    }
	#c3 h1{
		position: absolute;
		top: 0px;
		left: 0;
	}
	#c3 .honbun{
		position: relative;
		width: 100%;
		margin: auto;
		line-height: 1.6;
	}
	#c3 .honbun:before{
        content: "";
        display: block;
        position: absolute;
        top: -200px;
        right: 0;
        width: 100%;
        height: 100vw;
        margin: auto;
        background: url(../images/c3_illust_2024.svg) top center no-repeat;
        background-size: contain;
    }
	#c3 h2{
		background: #E61673;
		line-height: 40px;
		border-radius: 20px;
		color: white;
		padding-left: 20px;
		font-size: 1.167rem;
		margin-bottom: 20px;
	}
	#c3 .txtbox{
		margin:0 16px 20px;
	}
	#c3 li{
		list-style: disc;
		margin-left: 20px;
	}


	#c4{ /* 後援会 */
		background: white;
		padding:0;
		position: relative;
		padding-bottom: 3%;
		box-sizing: border-box;
	}
	#c4 h1{
		position: absolute;
		top: 0px;
		left: 0;
	}
	#c4 .innarbox{
		position: relative;

	}
	#c4 .honbun{
		padding-top: 42px;
		position: relative;
		width: 94%;
		margin: auto;
	}
	#c4 .honbun:before{
		content: "";
		position:relative;
		/*top: 50px;*/
		right: auto;
		background: url(../images/c4_title_2024.svg) top center no-repeat;
		background-size: 110%;
		display: block;
		width: 100%;
		height: 120px;
		margin: auto;
	}
	#mailform{
		width: 100%;
	}

	#mfwrapper{
		padding-bottom: 50px;
	}

	#mailform label{
	display: block;
	margin-top: 20px;
	margin-bottom: 5px;
	}	
	#mailform label span{
		display: inline-block;
		color: #E61673;
		margin-left: 1em;
		font-size: 0.9rem;
	}
	#mailform input, textarea{
		display: block;
		width: 100%!important;
		box-sizing: border-box;
		border: solid 1px #E61673;
		height: 34px;
		padding: 3px 6px;
	}

	#submitset{
		margin: 30px 0;
		text-align: center;
	}

	#mailform input[type="button"],
	#mailform input[type="submit"],
	#mailform input[type="reset"]{
		display: inline-block;
		width: 45%!important;
		height: 50px;
		color: white;
		background: #E61673;
		/*margin: auto 10px;*/
	}
	#mailform input[name="郵便番号"]{
        width: 160px!important;
        display: inline-block;
    }
	#mailform input[type="button"]{
        width: 120px!important;
        height: 34px;
        margin-left: 10px;
        font-size: 0.8rem;
    }

	.excuse{
		width: 90%;
		display: block;
		text-align: left;
		margin: auto;
	}


	#kaisoku{
		display: block;
		width: 100%;
		text-align: center;
	}
	#kaisoku #frame{
		height: 100px;
		border: solid 1px #CCC;
		padding: 20px 24px;
		overflow-y: scroll;
		text-align: left;
		font-size: 0.88rem;
	}
	#kaisoku h2{
		font-weight: 600;
		font-size: 1.1rem;

	}
	#kaisoku h2 + div{
		margin-bottom: 10px;
	}
	#kaisoku #frame h3{
		font-weight: 600;

	}
	#kaisoku #frame p{
		margin: 5px auto 10px;
	}
	#kaisoku #frame p:last-child{
	margin-bottom: 0;
	}
	
	#c5 .honbun{
		padding: 3%;
	}


	/*フッター*/
	footer{
		min-height: 220px;
		background: #E61673;
		color: white;
		text-align: center;
		box-sizing: border-box;
	}
	footer #signature{
		background: #F2F2F2;
		height: 120px;
		padding: 20px 3% 0;
		text-align: left;
		color: black;
		margin-bottom: 10px;
		font-size: 0.9rem;
		box-sizing: border-box;

	}
	footer #signature .wrapper{
		width: 100%;
		margin: auto;
		position: relative;
	}
	footer #signature .wrapper .snsbtn{
		position: absolute;
		right: 0;
		top: 40px;
	}
	footer #signature .wrapper .go2top{
		display: block;
		width: 50px;
		height: 50px;
		line-height: 50px;
		border-radius: 4px;
		background: url(../images/go2top.png) center center;
		color: white;
		position: fixed;
		right: 3px;
		bottom: 3px;
		text-align: center;
		border: solid 1px white;
		box-sizing: border-box;
		
		opacity: 0;
		transition: 0.2s linear;
	}
	footer #copyrights{
		font-size: 0.85rem;
		letter-spacing: 0.05em;
	}

}







