@charset "utf-8";

#fv::after {
	background: url(../../img/mv/mv_blog.jpg) center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.director #fv::after {
	background: url(../../img/mv/mv_director.jpg) center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.secondee #fv::after {
	background: url(../../img/mv/mv_secondee.jpg) center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.committee #fv::after {
	background: url(../../img/mv/mv_committee.jpg) center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}


/* RESPONSIVE */
/* -------------------------------------------------- */
@media screen and (min-width: 1024px) {

	.sp {
		display: none !important;
	}

	.tablet {
		display: none !important;
	}

	/* 一覧 */
	/* -------------------------------------------------- */
	#blogWrap {
		padding: 50px 0;
		margin-bottom: 0;
		display: flex;
		align-items: stretch;
	}

	#blogMain {
		width: 730px;
		padding: 30px;
		background: #FFFFFF;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	#blogSide {
		width: 270px;
		padding: 30px;
		background: #FFFFFF;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.blog {
		border: 1px #DDDDDD solid;
		margin-bottom: 20px;
		position: relative;
		width: 100%;
		display: table;
	}

	.blogImg {
		width: 20%;
		height: auto;
		aspect-ratio: 3/4;
	}

	.blogImg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		font-family: 'object-fit: cover;';
	}

	.blogTitWrap {
		width: 80%;
		padding: 15px 20px;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.blog a {
		transition: all 0.3s ease-in-out 0s;
	}

	.blog a:hover .blogDate {
		color: #000;
	}

	.blogDate {
		font-size: 1.3rem;
		font-weight: 500;
		color: #999999;
		display: block;
		vertical-align: middle;
	}

	.blogEventDate {
		padding-top: 10px;
		font-size: 1.3rem;
		font-weight: 500;
		color: #999999;
		vertical-align: middle;
		text-align: right;
		transition: all 0.3s ease-in-out 0s;
	}

	.blog a:hover .blogEventDate {
		color: #000;
	}

	.blogCat {
		display: inline-block;
		font-size: 1.3rem;
		padding-bottom: 5px;
		vertical-align: middle;
		display: none;
	}

	.blogCat li,
	.blogCat ul {
		display: inline-block;
		vertical-align: middle;
	}

	.blogCat li {
		padding: 0 10px;
		background: #dcdcdc;
		font-size: 1.2rem;
		margin-right: 5px;
	}

	.blog a:hover .blogCat ul:before {
		background: #2abc42;
	}

	.blogTit {
		line-height: 1.2;
		padding: 5px 0 10px;
		font-size: 1.6rem;
		font-weight: 600;
	}

	.blogdesc {
		line-height: 1.2;
		font-size: 1.2rem;
	}

	.new {
		width: 50px;
		height: 50px;
		line-height: 50px;
		text-align: center;
		color: #FFFFFF;
		background: #C71818;
		position: absolute;
		top: 10px;
		left: 10px;
	}

	.eventDate {
		font-weight: 600;
	}

	.eventPlace {
		font-size: 1.2rem;
		color: #666666;
	}

	.sdgsIcon {
		padding: 10px 0 0 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
	}

	.sdgsIcon li {
		width: 30px;
		margin: 0 3px 3px 0;
	}

	.sdgsIcon li img {
		width: 100%;
		height: auto;
	}

	.newsName {
		display: inline-block;
		padding: 3px 10px;
		margin: 0 10px 10px 0;
		background: #b70000;
		color: #fff;
		font-size: 1.2rem;
	}

	.newsCategoryName {
		display: inline-block;
		padding: 3px 10px;
		margin: 0 10px 10px 0;
		background: #000;
		color: #fff;
		font-size: 1.2rem;
	}

	/* 擬似要素の共通スタイル */
	.changeBorder {
		display: block;
		position: relative;
	}


	.changeBorderIn {
		width: 100%;
		height: auto;
		display: flex;
	}

	.changeBorder::after,
	.changeBorder::before,
	.changeBorderIn::after,
	.changeBorderIn::before {
		background-color: #b70000;
		content: '';
		display: block;
		position: absolute;
		z-index: 10;
		transition: all .3s ease;
		-webkit-transition: all .3s ease;
	}


	/* 左上へ配置 */

	.changeBorder::after {
		height: 2px;
		left: -2px;
		top: -2px;
		width: 0px;
	}


	/* 右下へ配置 */

	.changeBorder::before {
		bottom: -2px;
		height: 2px;
		right: -2px;
		width: 0px;
	}


	/* 左下へ配置 */

	.changeBorderIn::after {
		bottom: -2px;
		height: 0px;
		left: -2px;
		width: 2px;
	}


	/* 右下へ配置 */

	.changeBorderIn::before {
		height: 0px;
		right: -2px;
		top: -2px;
		width: 2px;
	}


	/* hover */

	.changeBorder:hover::after,
	.changeBorder:hover::before {
		width: 100%;
		width: calc(100% + 2px);
	}

	.changeBorder:hover .changeBorderIn::after,
	.changeBorder:hover .changeBorderIn::before {
		height: 100%;
		height: calc(100% + 2px);
	}

	#blogInfoCat {
		border-bottom: 3px #EFEFEF solid;
		margin-bottom: 30px;
	}

	#jciNav {
		width: 1000px;
		margin: 0 auto;
		padding-bottom: 80px;
	}


	/* -------------------------------------------------- */
	/* サイドバー */
	/* -------------------------------------------------- */

	.sideIn {
		padding: 20px 0 0;
		margin: 0 0 50px 0;
		border-top: solid 2px #b70000;
		border-bottom: solid 2px #b70000;
	}

	.sideParts {
		margin-bottom: 20px !important;
	}

	.sideTit1 {
		display: inline-block;
		width: 100%;
		font-size: 2.3rem;
		font-weight: 600;
		line-height: 1;
		letter-spacing: 0.050em;
		text-align: center;
		padding-bottom: 15px;
		color: #000;
	}

	.sideTit2 {
		font-size: 1.6rem;
		line-height: 1;
		letter-spacing: 0em;
		margin-bottom: 5px;
		font-weight: 600;
		color: #333333;
	}

	.sideTit3 {
		font-size: 1.8rem;
		font-weight: 600;
		line-height: 1.033;
		letter-spacing: 0.050em;
		text-align: center;
		display: block;
		width: 100%;
		padding-bottom: 15px;
		color: #000;
	}

	.sideTit4 {
		font-size: 1.6rem;
		line-height: 1;
		letter-spacing: 0em;
		padding-bottom: 5px;
		margin-bottom: 5px;
		font-weight: 600;
		color: #333333;
		border-bottom: 1px #999999 dotted;
	}

	.sideTit5 {
		font-size: 1.6rem;
		line-height: 1;
		letter-spacing: 0em;
		margin-bottom: 5px;
		font-weight: 600;
		color: #0068b7;
	}

	.blogNaviPulldown {
		width: 100%;
	}

	/* プルダウン */
	.blogNaviPulldown select {
		cursor: pointer;
		position: relative;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		display: block;
		width: 100%;
		border: none;
		background: url(../../img/common/arrow_down_black.png) no-repeat right 15px center;
		background-size: 10px 6px;
		color: #333333;
		height: 54px;
		line-height: 52px;
		padding: 0 15px;
		border: 1px solid #dcdcdc;
		font-family: inherit;
		font-size: 1.4rem;
	}

	::-ms-expand {
		display: none;
	}

	/* 最新の記事 */
	.blogBlock {
		border: none;
		margin-bottom: 10px;
	}

	.blogBlock:last-child {
		margin-bottom: 20px;
	}

	.newBlog {
		padding-bottom: 5px;
		margin-bottom: 5px;
		border-bottom: 1px #999999 dotted;
		letter-spacing: -0.4em;
	}

	.newBlog a {
		display: flex;
		align-items: flex-start;
	}

	#newEvent .newBlog {
		padding-top: 5px;
		border-top: 1px #999999 dotted;
	}

	.blogSideImg {
		display: inline-block;
		vertical-align: middle;
		letter-spacing: normal;
		width: 50px;
		height: 50px;
		border: 1px solid #e5e5e5;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.blogSideImg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.blogCont {
		display: inline-block;
		vertical-align: middle;
		letter-spacing: normal;
		width: 160px;
		/* padding: 5px; */
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.blogHead {
		display: block;
		border-bottom: 1px #999999 dotted;
		margin-bottom: 10px;
	}

	.blogLabel {
		display: inline-block;
		color: #403c35;
		border: none;
		padding: 0;
		padding-bottom: 5px;
		font-weight: 600;
		background: none;
		font-size: 1.5rem;
	}

	.blogCont {
		line-height: 1.3077;
		padding-left: 5px;
	}

	.sideDate {
		display: inline-block;
		padding: 0;
		font-size: 1rem;
		letter-spacing: 0em;
		color: #686767;
		margin-bottom: 2px;
		line-height: 1;
	}

	.blogTitle {
		font-size: 1.2rem;
		letter-spacing: 0.0em;
		line-height: 1;
	}

	.newBlog a:hover,
	.newBlog a:hover .sideDate {
		color: #000;
	}

	.blogNopost {
		color: #999;
	}

	#announce {
		text-align: center;
		font-size: 1.8rem;
	}


	/* サイドボタン */
	#blogSide .colorBtn {
		margin-bottom: 0;
	}

	#blogSide .colorBtn a {
		letter-spacing: 0;

	}

	#blogSide .sideBtn {
		width: 100%;
		margin: 0 0 5px 0;
		background-color: #fff;
		display: inline-block;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	#blogSide .sideBtn a {
		display: block;
		color: #000;
		padding: 15px;
		border: 1px solid #CCC;
		background: url(../../img/common/arrow_right_b.svg) no-repeat 95% center #fff;
		background-size: 6%;
		transition: all 0.3s ease-in-out 0s;
	}

	#blogSide .sideBtn a:hover {
		color: #fff;
		background: url(../../img/common/arrow_right.svg) 95% center no-repeat #b70000;
		background-size: 6%;
	}

	#blogSide .sideBtn:last-child {
		margin-bottom: 0;
	}


	/* -------------------------------------------------- */
	/* 行事 */
	/* -------------------------------------------------- */
	.upcoming-event {
		padding: 3px 10px;
		position: absolute;
		top: 10px;
		left: 10px;
		background: #ffe600;
		color: #000;
	}

	.end-event {
		padding: 3px 10px;
		position: absolute;
		top: 10px;
		left: 10px;
		background: #666666;
		color: #FFFFFF;
	}

	/* -------------------------------------------------- */
	/* 人気のブログ記事をご紹介 */
	/* -------------------------------------------------- */
	#popularblog {
		width: 100%;
		padding-top: 65px;
		padding-bottom: 50px;
	}

	#popularblogHead {
		font-size: 1.8rem;
		line-height: 1;
		letter-spacing: 0.050em;
		margin-bottom: 15px;
	}

	#popularblogList {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 0 calc(4%/3);
		letter-spacing: -.4em;
	}

	#popularblogList>* {
		letter-spacing: normal;
	}

	#popularblogList li {
		width: 24%;
		border: 1px #DDDDDD solid;
		box-sizing: border-box;
		letter-spacing: normal;
		position: relative;
	}

	#popularblogList li a {
		transition: all 0.3s ease-in-out 0s;
		display: block;
		position: relative;

		& .changeBorderIn {
			flex-direction: column;
		}
	}

	.popularblogImg {
		height: 100px;
		width: auto;
		aspect-ratio: 3 / 4;
	}

	.popularblogImg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		font-family: 'object-fit: cover;';
	}

	.popularblogBody {
		padding: 10px;
		color: #888;
	}

	#popularblogList li a:hover .popularblogBody {
		color: #000;
	}

	.popularblogDate {
		font-size: 1.0rem;
		line-height: 1;
		letter-spacing: 0.050em;
		margin-bottom: 5px;
	}

	.popularblogTit {
		font-size: 1.2rem;
		line-height: 1.05;
		letter-spacing: 0.050em;
		margin-bottom: 15px;
	}

	.popularblogName {
		font-size: 1.0rem;
		line-height: 1;
		letter-spacing: 0.050em;
		text-align: right;
		position: absolute;
		bottom: 10px;
		right: 10px;
		color: #999;
	}

	/* -------------------------------------------------- */
	/* 福岡JCチャンネル */
	/* -------------------------------------------------- */
	#movieList {
		letter-spacing: -.4em;
		margin-left: -5px;
		margin-right: -5px;
	}

	#movieList li {
		letter-spacing: normal;
		display: inline-block;
		vertical-align: top;
		margin: 0 5px 10px;
		width: calc(50% - 5px*2);
	}

	.movieListTxt {
		font-size: 1.2rem;
	}

}

@media screen and (min-width: 768px) and (max-width: 1023px) {
	/* メインビジュアル */
	/* .news #fv::after {
		background: url(../../img/mv/mv_news.jpg) center center no-repeat;
		-webkit-background-size: cover;
		background-size: cover;
	}

	.movie #fv::after {
		background: url(../../img/mv/mv_movie.jpg) center center no-repeat;
		-webkit-background-size: cover;
		background-size: cover;
	}

	.director #fv::after {
		background: url(../../img/mv/mv_director.jpg) center center no-repeat;
		-webkit-background-size: cover;
		background-size: cover;
	}

	.staff #fv::after {
		background: url(../../img/mv/mv_staff.jpg) center center no-repeat;
		-webkit-background-size: cover;
		background-size: cover;
	}

	.committee #fv::after {
		background: url(../../img/mv/mv_committee.jpg) center center no-repeat;
		-webkit-background-size: cover;
		background-size: cover;
	}

	.event #fv::after {
		background: url(../../img/mv/mv_event.jpg) !important;
		-webkit-background-size: cover;
		background-size: cover;
	} */

	.pc {
		display: none !important;
	}

	body {
		-webkit-text-size-adjust: 100%;
	}

	p,
	li,
	dt,
	dd {
		/*Androidブラウザフォントバグ対策*/
		max-height: 999999px;
	}

	/* 一覧 */
	/* -------------------------------------------------- */
	#blogWrap {
		margin-bottom: 0;
		padding: 0;
	}

	#blogMain {
		width: 100%;
		background: #FFFFFF;
		box-sizing: border-box;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 1em 1%;
	}

	#blogSide {
		width: 100%;
		margin: 30px 0;
		box-sizing: border-box;
	}

	.blog {
		border: 1px #DDDDDD solid;
		margin-bottom: 10px;
		position: relative;
		width: 49%;
		display: table;
		box-sizing: border-box;
	}

	.blogImg {
		width: 180px;
		height: 180px;
		display: table-cell;
	}

	.blogImg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.blogTitWrap {
		width: -webkit-calc(100% - 180px);
		width: calc(100% - 180px);
		border-left: 1px #DDDDDD solid;
		padding: 10px 3%;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		display: table-cell;
		vertical-align: top;
	}

	.blogTitWrap a {
		transition: all 0.3s ease-in-out 0s;
	}

	.blogDate {
		font-size: 1rem;
		color: #999999;
		transition: all 0.3s ease-in-out 0s;
		display: inline-block;
		vertical-align: baseline;
	}

	.blogTitWrap a:hover .blogDate {
		color: #0068b7;
	}

	.blogTit {
		padding-bottom: 10px;
		font-size: 1.3rem;
		line-height: 1.2;
		font-weight: 600;
	}

	.blogdesc {
		display: none;
	}

	.new {
		padding: 2px 5px;
		position: absolute;
		top: 5px;
		left: 5px;
		background: #C71818;
		color: #FFFFFF;
		font-size: 1rem;
	}


	.changeBorderIn {
		display: table;
		width: 100%;
	}

	.newsName {
		display: inline-block;
		padding: 2px 8px;
		margin: 0 10px 10px 0;
		background: #b70000;
		color: #fff;
		font-size: 1rem;
	}

	.newsCategoryName {
		display: inline-block;
		padding: 2px 8px;
		margin: 0 10px 10px 0;
		background: #000;
		color: #fff;
		font-size: 1rem;
	}

	.blogCat li,
	.blogCat {
		display: inline-block;
		vertical-align: baseline;
		line-height: 1.1;
		display: none;
	}

	.blogCat li {
		padding: 2px 5px;
		background: #dcdcdc;
		font-size: 1rem;
		margin-right: 5px;
	}

	#jciNav {
		width: 94%;
		margin: 0 auto;
		padding-bottom: 50px;
	}

	#announce {
		text-align: center;
		font-size: 1.8rem;
	}

	/* -------------------------------------------------- */
	/* サイドバー */
	/* -------------------------------------------------- */

	.sideIn {
		padding: 20px 0 0;
		margin: 0 0 50px 0;
		border-top: solid 2px #b70000;
		border-bottom: solid 2px #b70000;
	}

	.sideParts {
		margin-bottom: 20px !important;
	}

	.sideTit1 {
		display: inline-block;
		width: 100%;
		font-size: 2.3rem;
		font-weight: 600;
		line-height: 1;
		letter-spacing: 0.050em;
		text-align: center;
		padding-bottom: 15px;
		color: #000;
	}

	.sideTit2 {
		font-size: 1.6rem;
		line-height: 1;
		letter-spacing: 0em;
		margin-bottom: 10px;
		font-weight: 600;
		color: #333333;
	}

	.sideTit3 {
		font-size: 1.8rem;
		font-weight: 600;
		line-height: 1.033;
		letter-spacing: 0.050em;
		text-align: center;
		display: block;
		width: 100%;
		padding-bottom: 15px;
		color: #000;
	}

	.sideTit4 {
		font-size: 1.6rem;
		line-height: 1;
		letter-spacing: 0em;
		margin-bottom: 10px;
		font-weight: 600;
		color: #333333;
	}

	.sideTit5 {
		font-size: 1.6rem;
		line-height: 1;
		letter-spacing: 0em;
		margin-bottom: 5px;
		font-weight: 600;
		color: #0068b7;
	}

	.blogNaviPulldown {
		width: 100%;
	}

	/* プルダウン */
	.blogNaviPulldown select {
		cursor: pointer;
		position: relative;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		display: block;
		width: 100%;
		border: none;
		background: url(../../img/common/arrow_down_black.png) no-repeat right 15px center;
		background-size: 10px 6px;
		font-size: 1.4rem;
		color: #333333;
		height: 54px;
		line-height: 52px;
		padding: 0 15px;
		border: 1px solid #dcdcdc;
		font-family: inherit;
	}

	::-ms-expand {
		display: none;
	}

	/* 最新の記事 */
	.blogBlock {
		border: none;
		margin-bottom: 0;
		padding: 10px 0;
	}

	.newBlog {
		padding-top: 5px;
		padding-bottom: 5px;
		margin-bottom: 5px;
		background: #fff;
		border-top: 1px #999999 dotted;
		border-bottom: 1px #999999 dotted;
		letter-spacing: -0.4em;
	}

	#newEvent .newBlog {}

	.blogSideImg {
		display: inline-block;
		vertical-align: middle;
		letter-spacing: normal;
		width: 50px;
		height: 50px;
		border: 1px solid #e5e5e5;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.blogSideImg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.blogCont {
		display: inline-block;
		vertical-align: middle;
		letter-spacing: normal;
		padding: 5px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.blogHead {
		display: block;
		border-bottom: 1px #999999 dotted;
		margin-bottom: 10px;
	}

	.blogLabel {
		display: inline-block;
		color: #403c35;
		border: none;
		padding: 0;
		padding-bottom: 5px;
		font-weight: 600;
		background: none;
		font-size: 1.5rem;

	}

	.blogCont {
		line-height: 1.3077;
		padding-left: 5px;
	}

	.sideDate {
		display: inline-block;
		padding: 0;
		font-size: 1rem;
		letter-spacing: 0em;
		color: #686767;
		margin-bottom: 2px;
		line-height: 1;
	}

	.blogTitle {
		font-size: 1.2rem;
		letter-spacing: 0.0em;
		line-height: 1;
	}

	.blogNopost {
		color: #999;
	}


	/* サイドボタン */
	#blogSide .colorBtn {
		margin-bottom: 0;
		padding: 0 0 0 0;
	}

	#blogSide .colorBtn a {
		letter-spacing: 0;
	}

	#blogSide .sideBtn {
		display: inline-block;
		width: 100%;
		letter-spacing: 0;
		padding: 0 0 10px 0;
	}

	#blogSide .sideBtn a {
		display: block;
		color: #000;
		padding: 15px;
		border: 1px solid #CCC;
		background: url(../../img/common/arrow_right_b.svg) no-repeat 95% center #fff;
		transition: all 0.3s ease-in-out 0s;
	}

	#blogSide .sideBtn:last-child {
		margin-bottom: 0;
	}

	/* -------------------------------------------------- */
	/* 事業 */
	/* -------------------------------------------------- */
	.upcoming-event {
		padding: 3px 10px;
		position: absolute;
		top: 10px;
		left: 10px;
		background: #ffe600;
		color: #000;
		font-size: 1.2rem;
	}

	.end-event {
		padding: 3px 10px;
		position: absolute;
		top: 10px;
		left: 10px;
		background: #666666;
		color: #FFFFFF;
		font-size: 1.2rem;
	}

	.eventDate {
		font-size: 1.2rem;
	}

	.eventPlace {
		font-size: 1.1rem;
		color: #666666;
	}

	.sdgsIcon {
		padding: 10px 0 0 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
	}

	.sdgsIcon li {
		width: 30px;
		margin: 0 3px 3px 0;
	}

	.sdgsIcon li img {
		width: 100%;
		height: auto;
	}

	/* -------------------------------------------------- */
	/* 人気のブログ記事をご紹介 */
	/* -------------------------------------------------- */
	#popularblog {
		width: 100%;
		padding-top: 45px;
		padding-bottom: 30px;
	}

	#popularblogHead {
		font-size: 1.8rem;
		line-height: 1;
		letter-spacing: 0.050em;
		margin-bottom: 15px;
	}

	#popularblogList {
		letter-spacing: -.4em;
		margin-left: -8px;
		margin-right: -8px;
	}

	#popularblogList li {
		letter-spacing: normal;
		display: inline-block;
		vertical-align: top;
		margin: 0 8px;
		width: calc(25% - 8px*2);
		border: 1px #DDDDDD solid;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		position: relative;
	}

	#popularblogList li a {
		transition: all 0.3s ease-in-out 0s;
		display: block;
		position: relative;
	}

	.popularblogImg {
		height: 120px;
	}

	.popularblogImg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		font-family: 'object-fit: cover;';
	}

	.popularblogBody {
		padding: 10px;
		color: #333333;
	}

	.popularblogDate {
		font-size: 1.0rem;
		line-height: 1;
		letter-spacing: 0.050em;
		margin-bottom: 5px;
	}

	.popularblogTit {
		font-size: 1.2rem;
		line-height: 1.05;
		letter-spacing: 0.050em;
		margin-bottom: 15px;
	}

	.popularblogName {
		font-size: 1.0rem;
		line-height: 1;
		letter-spacing: 0.050em;
		text-align: right;
		position: absolute;
		bottom: 10px;
		right: 10px;
		color: #999;
	}


	/* -------------------------------------------------- */
	/* 福岡JCチャンネル */
	/* -------------------------------------------------- */
	#movieList {
		letter-spacing: -.4em;
		margin-left: -5px;
		margin-right: -5px;
	}

	#movieList li {
		letter-spacing: normal;
		display: inline-block;
		vertical-align: top;
		margin: 0 5px 10px;
		width: calc(50% - 5px*2);
	}

	.movieListTxt {
		font-size: 1.2rem;
	}

}

@media screen and (max-width: 767px) {

	.pc {
		display: none !important;
	}

	body {
		-webkit-text-size-adjust: 100%;
	}

	p,
	li,
	dt,
	dd {
		/*Androidブラウザフォントバグ対策*/
		max-height: 999999px;
	}

	/* 一覧 */
	/* -------------------------------------------------- */
	#blogWrap {
		margin-bottom: 0;
		padding: 0;
	}

	#blogMain {
		width: 100%;
		background: #FFFFFF;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	#blogSide {
		width: 100%;
		margin: 30px 0;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.blog {
		border: 1px #DDDDDD solid;
		margin-bottom: 10px;
		position: relative;
		width: 100%;
		display: table;
	}

	.blogImg {
		width: 24%;
		height: auto;
		aspect-ratio: 3/4;
		position: relative;
	}

	.blogImg.event {}

	.blogImg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.blogTitWrap {
		width: 76%;
		border-left: 1px #DDDDDD solid;
		padding: 5px 3%;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		display: table-cell;
		vertical-align: middle;
	}

	.blogTitWrap a {
		transition: all 0.3s ease-in-out 0s;
	}

	.blogDate {
		font-size: 1rem;
		color: #999999;
		transition: all 0.3s ease-in-out 0s;
		display: inline-block;
		vertical-align: baseline;
		line-height: 1.1;
	}

	.blogCat li,
	.blogCat {
		display: inline-block;
		vertical-align: baseline;
		line-height: 1.1;
		display: none;
	}

	.blogCat li {
		padding: 2px 5px;
		background: #dcdcdc;
		font-size: 1rem;
		margin-right: 5px;
	}

	.blogTitWrap a:hover .blogDate {
		color: #0068b7;
	}

	.blogTit {
		padding-bottom: 0px;
		font-size: 1.2rem;
		line-height: 1.1;
		font-weight: 600;
	}

	.blogdesc {
		display: none;
	}

	.new {
		padding: 2px 5px;
		position: absolute;
		top: 5px;
		left: 5px;
		background: #C71818;
		color: #FFFFFF;
		font-size: 1rem;
	}

	.changeBorderIn {
		width: 100%;
		height: 100px;
		position: relative;
		display: flex;
		align-items: stretch;
		justify-content: space-between;
	}

	.newsName {
		display: inline-block;
		padding: 3px 6px;
		margin: 0 5px 5px 0;
		background: #b70000;
		color: #fff;
		font-size: 1rem;
	}

	.newsCategoryName {
		display: inline-block;
		padding: 3px 6px;
		margin: 0 5px 5px 0;
		background: #000;
		color: #fff;
		font-size: 1rem;
	}

	#jciNav {
		width: 94%;
		margin: 0 auto;
		padding-bottom: 50px;
	}

	#announce {
		text-align: center;
		font-size: 1.6rem;
	}

	/* -------------------------------------------------- */
	/* サイドバー */
	/* -------------------------------------------------- */

	.sideIn {
		padding: 20px 0 0;
		margin: 0 0 50px 0;
		border-top: solid 2px #b70000;
		border-bottom: solid 2px #b70000;
	}

	.sideParts {
		margin-bottom: 20px !important;
	}

	.sideTit1 {
		display: inline-block;
		width: 100%;
		font-size: 2.3rem;
		font-weight: 600;
		line-height: 1;
		letter-spacing: 0.050em;
		text-align: center;
		padding-bottom: 15px;
		color: #000;
	}

	.sideTit2 {
		font-size: 1.6rem;
		line-height: 1;
		letter-spacing: 0em;
		margin-bottom: 5px;
		font-weight: 600;
		color: #333333;
	}

	.sideTit3 {
		font-size: 1.8rem;
		font-weight: 600;
		line-height: 1.033;
		letter-spacing: 0.050em;
		text-align: center;
		display: block;
		width: 100%;
		padding-bottom: 15px;
		color: #000;
	}

	.sideTit4 {
		font-size: 1.6rem;
		line-height: 1;
		letter-spacing: 0em;
		padding-bottom: 5px;
		margin-bottom: 5px;
		font-weight: 600;
		color: #333333;
		border-bottom: 1px #999999 dotted;
	}

	.sideTit5 {
		font-size: 1.6rem;
		line-height: 1;
		letter-spacing: 0em;
		margin-bottom: 5px;
		font-weight: 600;
		color: #0068b7;
	}

	.blogNaviPulldown {
		width: 100%;
	}

	/* プルダウン */
	.blogNaviPulldown select {
		cursor: pointer;
		position: relative;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		display: block;
		width: 100%;
		border: none;
		background: url(../../img/common/arrow_down_black.png) no-repeat right 15px center;
		background-size: 10px 6px;
		font-size: 1.4rem;
		color: #333333;
		height: 54px;
		line-height: 52px;
		padding: 0 15px;
		border: 1px solid #dcdcdc;
		font-family: inherit;
	}

	::-ms-expand {
		display: none;
	}

	/* 最新の記事 */
	.blogBlock {
		border: none;
		margin-bottom: 0;
		padding: 10px 0;
	}

	.newBlog {
		padding-bottom: 5px;
		margin-bottom: 5px;
		background: #fff;
		border-bottom: 1px #999999 dotted;
		letter-spacing: -0.4em;
	}

	#newEvent .newBlog:first-child {
		padding-top: 5px;
		border-top: 1px #999999 dotted;
	}

	.blogSideImg {
		display: inline-block;
		vertical-align: middle;
		letter-spacing: normal;
		width: 14%;
		max-width: 50px;
		height: auto;
		border: 1px solid #e5e5e5;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.blogSideImg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.blogCont {
		display: inline-block;
		vertical-align: middle;
		letter-spacing: normal;
		width: 85%;
		padding: 0 0 0 5px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.blogHead {
		display: block;
		border-bottom: 1px #999999 dotted;
		margin-bottom: 10px;
	}

	.blogLabel {
		display: inline-block;
		color: #403c35;
		border: none;
		padding: 0;
		padding-bottom: 5px;
		font-weight: 600;
		background: none;
		font-size: 1.5rem;

	}

	.blogCont {
		line-height: 1.3077;
		padding-left: 5px;
	}

	.sideDate {
		display: inline-block;
		padding: 0;
		font-size: 1rem;
		letter-spacing: 0em;
		color: #686767;
		margin-bottom: 2px;
		line-height: 1;
	}

	.blogTitle {
		font-size: 1.2rem;
		letter-spacing: 0.0em;
		line-height: 1;
	}

	.blogBlock a:hover,
	.blogBlock a:hover .sideDate {
		color: #000;
	}

	.blogNopost {
		color: #999;
	}


	/* サイドボタン */
	#blogSide .colorBtn {
		margin-bottom: 0;
		padding: 0 0 0 0;
	}

	#blogSide .colorBtn a {
		letter-spacing: 0;
	}

	#blogSide .sideBtn {
		display: block;
		width: 100%;
		letter-spacing: 0;
		padding: 0 0 10px 0;
	}

	#blogSide .sideBtn a {
		display: block;
		color: #000;
		padding: 15px 20px;
		border: 1px solid #ccc;
		background: url(../../img/common/arrow_right_b.svg) no-repeat 95% center #fff;
		transition: all 0.3s ease-in-out 0s;
	}

	#blogSide .sideBtn:last-child {
		margin-bottom: 0;
	}


	/* -------------------------------------------------- */
	/* 行事 */
	/* -------------------------------------------------- */
	.upcoming-event {
		padding: 3px 5px;
		position: absolute;
		top: 0px;
		left: 0px;
		background: #ffe600;
		color: #000;
		font-size: 0.9rem;
	}

	.end-event {
		padding: 3px 10px;
		position: absolute;
		top: 0px;
		left: 0px;
		background: #666666;
		color: #FFFFFF;
		font-size: 1rem;
	}

	.eventDate {
		font-size: 1.1rem;
		font-weight: 600;
		line-height: 1.2;
	}

	.eventPlace {
		font-size: 1rem;
		color: #666666;
	}

	.blogEventDate {
		font-size: 0.9rem;
		text-align: right;
		color: #999999;
	}

	.sdgsIcon {
		padding: 10px 0 0 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
	}

	.sdgsIcon li {
		width: 30px;
		margin: 0 3px 3px 0;
	}

	.sdgsIcon li img {
		width: 100%;
		height: auto;
	}

	/* -------------------------------------------------- */
	/* 人気のブログ記事をご紹介 */
	/* -------------------------------------------------- */
	#popularblog {
		width: 100%;
		padding-top: 30px;
	}

	#popularblogHead {
		font-size: 1.4rem;
		line-height: 1;
		letter-spacing: 0.050em;
		margin-bottom: 15px;
		text-align: center;
	}

	#popularblogList {
		/*		list-style: -0.4em;*/
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	#popularblogList li {
		border: 1px #DDDDDD solid;
		width: 49%;
		margin-bottom: 10px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		display: inline-block;
		list-style: normal;
		vertical-align: top;
	}

	#popularblogList li a {
		display: table;
		width: 100%;

		& .changeBorderIn {
			height: auto;
			flex-direction: column;
		}
	}

	.popularblogImg {
		width: 100%;
		height: 30vw;
		overflow: hidden;
	}

	.popularblogImg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		font-family: 'object-fit: cover;';
		vertical-align: middle;
	}

	.popularblogBody {
		vertical-align: top;
		padding: 5px 3%;
		color: #333333;
	}

	.popularblogDate {
		font-size: 1rem;
		line-height: 1;
		letter-spacing: 0.050em;
		margin-bottom: 2px;
	}

	.popularblogTit {
		font-size: 1.1rem;
		line-height: 1.05;
		letter-spacing: 0.050em;
		margin-bottom: 2px;
	}

	.popularblogName {
		width: 100%;
		font-size: 0.9rem;
		line-height: 1;
		letter-spacing: 0.050em;
		text-align: right;
		color: #999;
	}

	/* -------------------------------------------------- */
	/* 福岡JCチャンネル */
	/* -------------------------------------------------- */
	#movieList {
		letter-spacing: -.4em;
		margin-left: -5px;
		margin-right: -5px;
	}

	#movieList li {
		letter-spacing: normal;
		display: inline-block;
		vertical-align: top;
		margin: 0 5px 10px;
		width: calc(50% - 5px*2);
	}

	.movieListTxt {
		font-size: 1.2rem;
	}

}