@charset "UTF-8";
@import url("event.css");
/* -----------------------------------------------
	トップページ共通
--------------------------------------------------*/
/* *{
	border: solid 1px #ccc;
} */
/* セクションごとの見出し */
.bl_sectionTitle{
font-size: 2.4444444444444rem;
margin-bottom: 2rem;
letter-spacing: 1.2px;
}
.bl_sectionTitle{
	position: relative;
}
.bl_sectionTitle::before,.bl_sectionTitle::after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 66px;
	background: url(../img/home/hline.svg) center no-repeat;
}
.bl_sectionTitle::before{
	right: 50%;
	margin-right: 5em;
	transform: translateY(-50%) scale(-1, 1);
}
.bl_sectionTitle::after{
	left: 50%;
	margin-left: 5em;
}
.h2entitle {
    color: var(--mainColor);
    display: block;
    font-size: 1.6666666666667rem;
    font-family: "Dosis", serif;
    letter-spacing: 2.5px;
    font-weight: 600;
}

/* ボタン */

.bl_btn{
    display: grid;
    place-items: center;
    width: calc(100% / 2 - .5rem);
    text-align: center;
    padding: .75rem 1rem .75rem 3rem;
    background-color: var(--mainColor);
    color: #fff;
    font-family: "Shippori Mincho", serif;
    font-size: 1.3333333333333rem;
    box-shadow: var(--btn-shadow);
    position: relative;
    border-radius: 5px;
    font-weight: bold;
    box-sizing: border-box;
    min-height: 100px;
    /* max-width: 400px; */
    width: 400px;
	border: solid 1px #032b17;
}
.bl_btn:hover{
	background-color: #075730;
}

.bl_btn::after{
	mask-image: url(../img/icon/search.svg);
    content: "";
    display: inline-block;
    position: absolute;
    top: 1px;
    bottom: 0;
    margin: auto;
    left: .75rem;
    width: 2.5rem;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    font-weight: 500;
    z-index: 1;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 54px;
    mask-size: 2.5rem;
    -webkit-mask-position: left 50% top 50%;
    mask-position: left 50% top 50%;
}

.bl_ichiran-btn{
	background-color: #fff;
	border: solid 1px var(--mainColor);
	color: var(--baseBlack);
	padding: 0 3rem;
}

.bl_ichiran-btn:hover{
	background-color: #eaf3ef;
}
.bl_ichiran-btn::before{
		content: "";
		display: inline;
		background-image: url(../img/icon/light.png);
		width: 3rem;
		height: 3rem;
		background-size: contain;
		background-repeat: no-repeat;
		position: absolute;
		left: .25rem;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		background-color: transparent;
	}

	.bl_btn.bl_ichiran-btn::after{
		content: "";
		display: inline;
		background-image: url(../img/icon/parsons.png);
		width: 3rem;
		height: 3rem;
		background-size: contain;
		background-repeat: no-repeat;
		position: absolute;
		bottom: -10px;
		mask-image: none;
		left: initial;
		right: .25rem;
		background-color: transparent;
	}
	



/* ベースのボタン */
.base-btn {
	background-color:var(--mainColor);
	color: #fff;
	font-family: "Shippori Mincho", serif;
	font-size: 1.25rem;
	color: #fff;
	font-weight: bold;
	display: block;
	position: relative;
	text-align: center;
	font-size: 1.3888888888889rem;
	border-radius: 5px;
	border: solid 1px var(--mainColor);
	max-width: 27rem;
	margin: 0 auto;
	height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
	box-shadow: var(--btn-shadow);
	padding: 0 3.5rem;
	font-weight: bold;

}
.base-btn a {
    display: block;
    color: #fff;
    /* padding: .85rem 0; */
    text-align: center;
    /* padding-left: 1.5rem; */
	height: 100%;
    width: 100%;
    display: grid;
    place-items: center;
}
.base-btn a::before{
	-webkit-mask-image: url(../img/icon/search.svg);
    mask-image: url(../img/icon/search.svg);
    content: "";
    display: inline-block;
    position: absolute;
    top: 1px;
    bottom: 0;
    margin: auto;
    left: 1rem;
    width: 40px;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    font-weight: 500;
    z-index: 1;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 54px;
    mask-size: 40px;
    -webkit-mask-position: left 50% top 50%;
    mask-position: left 50% top 50%;
}

/* 団体情報の登録・削除ボタン */
.add-btn, .del-btn {
    padding: 1.5rem .75rem;
    padding-left: 3.75rem;
    background-color: var(--accentColor);
    color: var(--baseBlack);
    position: relative;
    border-radius: 5px;
    font-weight: bold;
	box-shadow: var(--btn-shadow);
    width: calc(100% / 2 - .5rem);
	/* max-width: 400px; */
	width: 400px;
	display: grid;
	align-items: center;
}
.add-btn{
	border: solid 1px #e5c99e;
}
.add-btn:hover{
	background-color: #f5d4a1;
}
.del-btn{
	border: solid 1px #cfcfcf;
}
.del-btn:hover{
	background-color: #dfdddd;
}


.add-btn::before,.del-btn::before{
	content: "";
    display: inline;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 1rem;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}
.add-btn::before{
	background-image: url(../img/icon/danntaiadd.png);
}

.del-btn::before{
	background-image: url(../img/icon/danntaidel.png);
}

.del-btn{
	background-color: #ececec;
}
/* ======================================================================
    1200px以下
====================================================================== */
@media screen and (max-width: 1200px){
.bl_btn{
	max-width: initial;
}
.add-btn, .del-btn{
	max-width: initial;
}
}
/* ======================================================================
    992px以下
====================================================================== */
@media screen and (max-width: 992px){
	.bl_btn{
		max-width:initial;
	}
}
/* ======================================================================
    768px以下
====================================================================== */
@media screen and (max-width: 768px){
.bl_sectionTitle{
	font-size: 1.4444444444444rem;
}
.h2entitle {
    font-size:1.25rem;
}
.bl_sectionTitle::before, .bl_sectionTitle::after {
    content: "";
    display: block;
    position: absolute;
    width: 28px;
    height: 42px;
    background-size: contain;
    background-image: url(../img/home/hline.svg);
    background-repeat: no-repeat;
}
.bl_sectionTitle::before{
left: 0;
}
.bl_sectionTitle::after{
right: 0;
left: initial;
}

}

/* ======================================================================
  576px以下
====================================================================== */
@media screen and (max-width:576px){
	.bl_btn{
		min-height: 85px;
	}
}




/* -----------------------------------------------
	メインビジュアル・市民団情報
--------------------------------------------------*/
.visual {
background-color: #fff;
margin-bottom: 6.5rem;
}

.visual_wrap{
	display: flex;
	min-height: 650px;

}

.bl_visual_slider,.bl_visual_text{
	width: 50%;
}
/* .bl_visual_slider{
	width: calc(100% - 950px);
}
.bl_visual_text{
	width: 950px;
} */

.bl_visual_text {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual .bl_sectionTitle{
	text-align: center;
}

.bl_intro{
	text-align: center;
	padding-bottom: 1.5rem;
}

/* 団体一覧・さまざまな条件で市民団体を検索のボタン */
.bl_bannerWrap{
	display: flex;
	margin-bottom: 3rem;
	/* max-width: 860px; */
	/* flex-wrap: wrap; */
	justify-content: center;
	row-gap: 1rem;
	column-gap: 1rem;
}
/* .bl_bannerWrapItem{
flex: 1;
} */
.ichiran-btn{
    background-color: #fff;
    color: var(--baseBlack);
    font-family: "Shippori Mincho", serif;
    font-size: 1.25rem;
    font-weight: bold;
    display: block;
    position: relative;
    text-align: center;
    font-size: 1.3888888888889rem;
    border: solid 1px var(--mainColor);
    text-align: center;
    border-radius: 5px;
    position: relative;
	box-sizing: var(--btn-shadow);
	padding: 0 3rem;
}
.ichiran-btn::before {
    content: "";
    display: inline;
    background-image: url(../img/icon/light.png);
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 1rem;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}
.ichiran-btn::after{
    content: "";
    display: inline;
    background-image: url(../img/icon/parsons.png);
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 1rem;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}


.ichiran-btn a{
	color: var(--baseBlack);
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
}

.bl_visual_text h3{
	text-align: center;
	font-size: 1.3333333333333rem;
}

.bl_visual_text h3 span{
	display: inline-block;
	position: relative;
	padding-left: 2.5rem;
	margin-bottom: 1.5rem;
}
.bl_visual_text h3 span::before{
	-webkit-mask-image: url(../img/icon/pen.svg);
    mask-image: url(../img/icon/pen.svg);
    content: "";
    display: inline-block;
 position: absolute;
 top: 0;
 bottom: 0;
 left: 0;
 margin: auto;
    margin: auto;
    width: 30px;
    aspect-ratio: 1 / 1;
    background-color: var(--mainColor);
    font-weight: 500;
    z-index: 1;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 28px;
    mask-size: 45px;
    -webkit-mask-position: left 50% top 50%;
    mask-position: left 50% top 50%;
}

/*スライドする画像*/
.center-item {
	margin:0;
	padding:0;
}

/* メインビジュアルスライダー slick */
.slick-slide div {
    height: 100%;
}
.slick-slider,.slick-slider .slick-track, .slick-slider .slick-list {
    height: 100%;
}
.slick-slide li{
	height: 100%;
}

.center-item img {
	width: 100%;
	height: 100%;
	/* aspect-ratio: 16 / 9; */
	object-fit: cover;
}
_:-ms-lang(x)::-ms-backdrop,
.center-item img { /*IE11*/
    height: auto;
}


/* ======================================================================
メインビジュアル・市民団情報 	1366px以下
====================================================================== */
@media screen and (max-width: 	1366px){
	/* .visual_wrap {
		flex-direction: column;
		height: auto;
		gap: 1rem;
	}
	.center-item img{
aspect-ratio: 2 / 1;
max-height: 45vh;
}

	.bl_visual_slider, .bl_visual_text {
		width: 100%;
	} */
}

/* ======================================================================
メインビジュアル・市民団情報 1280px以下
====================================================================== */
@media screen and (max-width: 1280px){

.visual_wrap {
	flex-direction: column;
	height: auto;
	gap: 1rem;
}
.center-item img{
aspect-ratio: 2 / 1;
max-height: 45vh;
}

	.bl_visual_slider, .bl_visual_text {
		width: 100%;
	}
/* 
	.visual .bl_bannerWrap{
		margin: 0 auto;
		margin-bottom: 3rem;
		width: 1000px;
		max-width: calc(100% - 2rem);
	} */

}


/* ======================================================================
メインビジュアル・市民団情報 992px以下
====================================================================== */
@media screen and (max-width: 992px){

	/* ボタン */
	.bl_btn {
        width: calc(100% - 4rem);
		margin: 0 auto;
    }
	.bl_btn + .bl_btn {
        margin-left: auto;
    }
		/* 登録・修正ボタン */
		.add-btn, .del-btn {
			width: calc(100% - 4rem);
			margin: 0 auto;
		}

}

/* ======================================================================
メインビジュアル・市民団情報 768px以下
====================================================================== */
@media screen and (max-width: 768px){
	.visual{
		margin-bottom: 5rem;
	}

	.bl_visual_text{
		padding: 2rem 1rem;
	}

	.bl_bannerWrap {
		flex-direction: column;
		row-gap: 1rem;
	}

	/* .bl_btn + .bl_btn {
		margin-left: 0;
	}

	.bl_bannerWrapItem + .bl_bannerWrapItem{
		margin-left: 0;
	} */
	.visual .bl_bannerWrapbtm{
		margin-bottom: 0;
	}

}


/* ======================================================================
メインビジュアル・市民団情報 567px以下
====================================================================== */
@media screen and (max-width: 567px){
	.bl_btn {
        width: 100%;
    }
	.add-btn, .del-btn {
        width: 100%;
    }

	.bl_visual_text h3{
		font-size: 1.2rem;
	}

	.bl_visual_text h3 span{
		padding-left: 2rem;
	}
}



/* -----------------------------------------------
  市からのお知らせ
-------------------------------------------------- */
.bl_topics {
    margin-bottom: 8rem;
}
.bl_topics .bl_sectionTitle{
text-align: center;
}
/* 見出し横の装飾は不要 */
.bl_topics .bl_sectionTitle::before, .bl_topics .bl_sectionTitle::after {
    content: none;
}

/*投稿リスト*/
.bl_topics-list-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1.75rem;
	line-height: 1.5rem;
}
.bl_topics-list-item:last-child {
	margin-bottom: 0;
}
.bl_topics-list-item time {
	width: 10rem;
	color: #666;
	white-space: nowrap;
}
.bl_topics-list-title {
	width: calc(100% - 10rem - 3rem);
}
.bl_topics-list-title a {
	color: var(--baseBlack);
	text-decoration: none;
	/* text-decoration: underline; */
}
.bl_topics-list-title a:hover {
	text-decoration: underline;
}
.bl_topics-list {
		margin: 0 auto;
		margin-bottom: 4rem;
		max-width: 100%;
		width: 1000px;
}
.bl_topics .base-btn{
	margin: 0 auto;
	/* max-width: 27rem; */
}
.bl_topics .base-btn a{
    padding: 1.5rem 0 1.5rem 1.5rem;
}

.bl_topics .bl_btn{
	margin: 0 auto;
}

/* ======================================================================
市からのお知らせ 1200px以下
====================================================================== */
@media screen and (max-width: 1200px){

}
/* ======================================================================
市からのお知らせ 992px以下
====================================================================== */
@media screen and (max-width: 992px){

	.visual_wrap {
		flex-direction: column;
		height: auto;
	}
	.center-item img{
aspect-ratio: 2 / 1;	}

	.bl_visual_slider, .bl_visual_text {
		width: 100%;
	}
}
/* ======================================================================
市からのお知らせ 768px以下
====================================================================== */
@media screen and (max-width: 768px){
	/* お知らせの時間と記事タイトルを1カラムに */
	.bl_topics-list-item {
		flex-direction: column;
	}
	.bl_topics-list-title {
		width:100%;
	}
	.bl_topics-list-item time{
		width: 100%;
	}
}


/* -----------------------------------------------
  新着情報
-------------------------------------------------- */
.membership {
	/* display: none; */
	
	border: 1px solid #fff;
	background-color: rgba(255,255,255,0.9);
	
	transition: all 0.3s;
}

.membership a {
	display: block;
	padding: 1rem 5rem 1rem 2rem;
	position: relative;
}
.membership a:hover {
	background-color: #eee;
}
.membership--text {
	font-weight: bold;
	color: #000;
}
.membership--sub {
	font-size: 0.7rem;
	color: var(--mainColor);
}
/*アイコン*/
.membership--class {
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 3rem;
	padding: 0 0.25rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
	background-color: #eee;
	transition: all 0.3s;
}
/*アイコン*/
.membership--class img {
	width: 1rem;
	height: 1rem;
}
	/* -------------------------------------------
		新着情報 > SP small
	--------------------------------------------- */
	@media (min-width:0px) {
		.membership {
			border-top: 2px solid #eee;
		}
	}
	/* -------------------------------------------
		新着情報 > SP
	--------------------------------------------- */
	@media (min-width:576px) {}
	/* -------------------------------------------
		新着情報 > TABLET
	---------------------------------------------- */
	@media (min-width:768px) {
		
	}
	/* -------------------------------------------
		新着情報 > PC
	---------------------------------------------- */
	@media (min-width:980px) {
		.membership {
			border-top: none;
			position: fixed;
			height: auto;
			top: auto;
			right: auto;
			bottom: 1rem;
			left: -12.5rem;
			margin: auto;
			
		}
		.membership:hover {
			left: 0;
			box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.1);
		}
		.membership:hover .membership--class {
			background-color: #20688c;
		}
	}
	/* -------------------------------------------
		新着情報 > wide PC
	---------------------------------------------- */
	@media (min-width:1200px) {}