@charset "utf-8";
/* お知らせのアーカイブ・個別ページ用 */



/* レイアウト 
*****************************************************/
.news .content_inner_01 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 3rem;
}
.news .list_main,
.news .post_main {
	width: 65%;
}
.news .post_content {
	margin-bottom: 4rem;
}
.news .post_content a {
	text-decoration: underline;
	color: #1fb3e4;
}
@media screen and (max-width: 1110px) {
	.news .list_main,
	.news .post_main {
		width: 65%;
	}
}
@media screen and (max-width: 960px) {
	.news .content_inner_01 {
		padding: 1.5rem;
	}
}
@media screen and (max-width: 768px) {
	.news .content_inner_01 {
		flex-wrap: wrap;
		padding-top: 1.5rem;
	}
	.news .list_main,
	.news .post_main {
		width: 100%;
		margin-bottom: 25px;
		margin-right: 0;
	}
	.news .post_content {
		padding: 0;
	}
}
@media only screen and (max-width:480px) {
	.news .content_inner_01 {
		 padding: 0 0 1.5rem;
	}
}





/* アーカイブページ　.archive_list_wrap
*****************************************************/
.news .archive_title {
	font-weight: bold;
	font-size: 1.1rem;
	color: #000;
}
.news .archive_list_wrap ul.archive_list {
	margin-bottom: 40px;
}
.news .archive_list_wrap ul.archive_list li:has( > :not(a) ),
.news .archive_list_wrap ul.archive_list li a {
	display: flex;
  align-items: flex-start;
  padding: 15px 10px;
  border-bottom: 1px dotted #e6e6e6;
	font-size: 14px;
	
}
.news .archive_list_wrap ul.archive_list li a .img_box {
	margin-right: 30px;
	width: 150px;
	height: 150px;
}
.news .archive_list_wrap ul.archive_list li a .img_box span.mask {
  display: block;
  overflow: hidden;/*拡大してはみ出る要素を隠す*/
}
.news .archive_list_wrap ul.archive_list li a .img_box span.mask img {
	/*width: 150px;
	height: 150px;*/
	object-fit: cover;
	transform: scale(1);
  transition: 0.3s ease-in-out;
}
.news .archive_list_wrap ul.archive_list li a:hover .img_box span.mask img {
	/*hover*/
  transform: scale(1.2);
}
.news .archive_list_wrap ul.archive_list li .box_wrap {
	/*flex-grow: 1;*/
	/*width: 70%;*/
	margin-top: 0.5rem;
	display: flex;
    align-items: flex-start;
    flex-grow: 2;
}
.news .archive_list_wrap ul.archive_list li .box_wrap .meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.0rem;
}
.news .archive_list_wrap ul.archive_list li .box_wrap .date_wrap {
	margin-right: 0.5rem;
	width: 18%;
}
.news .archive_list_wrap ul.archive_list li .box_wrap .date_wrap p.date {
	font-size: 0.9rem;
	color: #000;
}
.news .archive_list_wrap ul.archive_list li .box_wrap .cat span {
	background-color: var(--key-color);
    color: #fff;
    padding: 0.2rem 0.3rem;
    margin-right: 15px;
    font-size: 0.8rem;
}
.news .archive_list_wrap ul.archive_list li .box_wrap .title {
  margin: 0;
	font-weight: 400;
  line-height: 1.6;
	color: #000;
	width: 64%;
}
.news .archive_list_wrap ul.archive_list li a:hover .box_wrap .title {
	color: #999;
}
@media only screen and (max-width:764px) {
	.news .archive_list_wrap ul.archive_list {
		margin-bottom: 0;
	}
	.news .archive_list_wrap ul.archive_list li a {
		padding: 15px 0;
	}
	.news .archive_list_wrap ul.archive_list li a .img_box {
		margin-right: 1rem;
		width: 120px;
		height: 120px;
	}
	.news .archive_list_wrap ul.archive_list li a .img_box img {
		height: auto;
	}
	.news .archive_list_wrap ul.archive_list li .box_wrap {
		margin-top: 0;
	}
	.news .archive_list_wrap ul.archive_list li .box_wrap .date_wrap {
		margin-bottom: 0;
	}
	.news .archive_list_wrap ul.archive_list li .box_wrap .date_wrap p.date {
		padding-bottom: 0;
	}
	.news .archive_list_wrap ul.archive_list li .box_wrap .title {
  	font-size: 16px;
	}
	.news .archive_list_wrap ul.archive_list li .box_wrap .meta {
		margin-bottom: 0.1rem;
		flex-wrap: wrap;
	}
	.news .archive_list_wrap ul.archive_list li .box_wrap .meta .category {
		padding: 2px 8px;
	}
}
@media only screen and (max-width:480px) {
	.news .archive_list_wrap ul.archive_list li a {
		padding: 10px 15px;
		font-size: 13px;
	}
	.news .archive_list_wrap ul.archive_list li .box_wrap .date_wrap {
	    width: 34%;
	}
	.news .archive_list_wrap ul.archive_list li .box_wrap {
		width: 70%;
		flex-wrap: wrap;
	}
	.news .archive_list_wrap ul.archive_list li .box_wrap .date_wrap p.date {
		font-size: 13px;
	}
	.news .archive_list_wrap ul.archive_list li .box_wrap .date_wrap span {
		font-size: 12px;
	}
	.news .archive_list_wrap ul.archive_list li .box_wrap .title {
		font-size: 14px;
		width: 100%;
    	padding-top: 5px;
    	line-height: 1.75;
	}
	.news .archive_list_wrap ul.archive_list li .box_wrap .meta .category {
		font-size: 10px;
	}
}



/*++++++++++++++++++++++++++++++++++++++++++++++++
アーカイブページ　サイドバー　アコーディオン
++++++++++++++++++++++++++++++++++++++++++++++++*/
.acc-container {
  position: relative;
  width: 100%;
	cursor: pointer
}
.acc-container .acc-title {
  display: block;
  position: relative;
  cursor: pointer;
}
.accordion-title{
  position: relative;
}
.acc-title:after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.acc-title.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}
.acc-content {
  display: none;
}




/* 個別ページ　.post_main
*****************************************************/
.single-news .news_content_inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-top: 50px;
}
.news .post_main .post_meta {
	display: flex;
	align-items: flex-start;
	color: #666;
	text-indent: 0.1rem;
}
.news .post_main .post_meta .entry_date {
	margin-right: 1rem;
	text-indent: 0.5rem;
}
.news .post_main .post_meta .category a {
	padding: 5px 10px;
	border: 1px solid var(--key-color);
	font-size: 12px;
	color: var(--key-color);
}
.news .post_main .post_title {
	margin-bottom: 2.0rem;
	padding: 0.3em 0;
	border-bottom: 2px solid #f0f0f0;
	font-size: 1.8rem;
	text-indent: 0.4rem;
	color: #000;
	font-weight: 600;
}
.news .post_main .post_content {
	padding: 0 0.4rem;
	color: #000;
}
@media only screen and (max-width:768px) {
	.news .post_main .post_title {
		margin-bottom: 1.5rem;
		font-size: 20px;
		line-height: 1.4;
	}
}
@media only screen and (max-width:480px) {
	.single-news .news_content_inner,
	.news .post_main .post_meta {
		display: block;
	}
	.single-news .news_content_inner {
		padding-top: 25px;
	}
	.news .post_main .post_meta .entry_date {
		text-indent: 0.2rem;
		margin-bottom: 5px;
	}
	.news .post_main .post_title {
		margin-bottom: 1.0rem;
		font-size: 18px;
		margin-top: 5px;
	}
}

/* 個別ページ ブロックエディタ　.post_content
*****************************************************/
.post_content h2 {
	padding: .4rem .5rem;
	font-size: 1.25rem;
	font-weight: bold;
}
.post_content h3 {
	margin-bottom: 0;
	padding: .4rem .5rem;
	font-size: 1.15rem;
	font-weight: bold;
	text-align: left;
	letter-spacing: 0.06em;
}
.post_content h4 {
	padding: .4rem .5rem;
	font-size: 1.05rem;
	font-weight: bold;
}
.post_content h5,
.post_content h6 {
	padding: .4rem .5rem;
	font-size: 1.0rem;
	font-weight: bold;
}
.post_content ul {
	margin-left: 1.5rem;
}
.post_content ul li {
	list-style: disc;
}
.post_content ul li ul li {
	list-style: circle;
}


/* 個別ページ パスワード保護時の入力欄　form.post-password-form
*****************************************************/
form.post-password-form > p {
	margin-bottom: 1rem;
	font-weight: bold;	
}
form.post-password-form input[name="post_password"] {
	margin: 0.3rem;
	border: 1px solid #999;
}
form.post-password-form input[type="submit"] {
	padding: 0 1rem;
	background-color: #007130;
  border-radius: 6px;
  color: #fff;
}

    





/* .btn_wrapper　個別ページ用ボタン
*****************************************************/
.btn_wrapper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.btn_wrapper .c-btn {
	margin: 0;
}
.btn_wrapper .c-btn a {
	width: 240px;
	margin: 0 2rem;
	border: 1px solid var(--key-color);
	background-color: var(--key-color);
	color: #fff;
	font-size: 0.9rem;
    	line-height: 48px;
    	letter-spacing: 0.1rem;
    	text-align: center;
	display: block;

}
.btn_wrapper .c-btn a:hover {
	background-color: transparent;
	color: var(--key-color);

}
.btn_wrapper.back_list .c-btn a {
	width: 360px;
}
@media only screen and (max-width:768px) {
	.btn_wrapper .c-btn a {
    	width: 110px;
    	margin: 0 1rem;
    }
    .btn_wrapper.back_list .c-btn a {
		width: 330px;
	}
}



/* #side_bar
*****************************************************/
#side_bar {
	position: relative;
	width: 30%;
}
#side_bar .widget_wrapper {
	margin-bottom: 2rem;
	padding: 1.0rem;
	background-color: #f5f5f5;
}
#side_bar .widget_wrapper:last-of-type {
	margin-bottom: 0;
}
#side_bar p.side_title {
	margin-bottom: 0;
	padding: 0.1rem 0.5rem;
	position: relative;
	border-bottom: 2px solid #333;
  font-weight: 400;
	color: #000;
}
#side_bar ul.side_list li {
	border-bottom: 1px solid #fff;
}
#side_bar ul.side_list li a {
  display: block;
}
@media screen and (max-width:1110px) {
	#side_bar {
		width: 28%;
	}
}
@media screen and (max-width:768px) {
	#side_bar {
		width: 100%;
	}
	#side_bar .widget_wrapper {
		margin-bottom: 1rem;
	}
}


/* 年別・月別アーカイブ
*****************************************************/
#side_bar ul.side_list.archive_list.acc-content li a {
	padding: 12px;
}

/* 最近の投稿
*****************************************************/
#side_bar ul.side_list.recent { 
	/*margin-top: 10px;*/
}
#side_bar ul.side_list.recent li {
} 
#side_bar ul.side_list.recent li a {
	padding: 10px;
	font-size: 14px;
}
#side_bar ul.side_list.recent li a .date {
	margin:  0.4rem 0 0.5rem 0;
	font-size: 0.85rem;
	color: #666;
	line-height: 1;
}
#side_bar ul.side_list.recent li a .title {
	color: #000;
	font-weight: 400;
	font-size: 0.9rem;
	line-height: 1.6;
}
#side_bar ul.side_list.recent li a:hover .title {
	color: #999;
}
@media screen and (max-width:768px) {
	#side_bar ul.side_list.recent { 
		margin-top: 0;
	}
	#side_bar ul.side_list.recent li a {
		padding: 8px;
	}
}
@media screen and (max-width:480px) {
	#side_bar ul.side_list.recent { 
		margin-top: 0;
	}
	#side_bar ul.side_list.recent li a {
		padding: 10px 20px;;
	}
	#side_bar ul.side_list.recent li a .date {
		line-height: 1.0;
	}
}


/* カテゴリーリスト
*****************************************************/ 
#side_bar ul.side_list.archive_list li a {
	padding: 10px;
	font-weight: 400;
	font-size: 0.9rem;
	color: #000;
}
@media screen and (max-width:768px) {
	#side_bar ul.side_list.archive_list { 
		margin-top: 0;
	}
	#side_bar ul.side_list.archive_list li a {
		padding: 8px;
	}
}
@media screen and (max-width:480px) {
	#side_bar ul.side_list.archive_list { 
		margin-top: 0;
	}
	#side_bar ul.side_list.archive_list li a {
		padding: 10px 20px;
	}
}

#pagenation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 0;
}
#pagenation ol.pagenation_body {
    display: flex;
    margin: 0;
    padding: 0;
}
#pagenation ol.pagenation_body a, #pagenation ol.pagenation_body li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
}
#pagenation ol.pagenation_body li {
    width: 40px;
    height: 40px;
    margin: 0 5px;
    overflow: hidden;
}
#pagenation ol.pagenation_body a {
    width: 40px;
    height: 40px;
    background: #fff;
    text-decoration: none;
}
#pagenation ol.pagenation_body .current {
    width: 40px;
    height: 40px;
    background-color: #1fb3e4;
    color: #fff;
}
#pagenation .pagenation_next a, #pagenation .pagenation_prev a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 40px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}
#pagenation .pagenation_next a::before, #pagenation .pagenation_prev a::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 0;
    width: 6px;
    height: 12px;
    margin: auto;
    background-image: url(data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%208%2016%22%3E%3Cdefs%3E%3Cstyle%3E.f%2C.g%7Bfill%3Anone%3B%7D.g%7Bstroke%3A%23000%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22a%22%2F%3E%3Cg%20id%3D%22b%22%3E%3Cg%20id%3D%22c%22%3E%3Cg%20id%3D%22d%22%3E%3Cg%20id%3D%22e%22%3E%3Cpath%20class%3D%22f%22%20d%3D%22M0%2C0H8V16H0V0Z%22%2F%3E%3Cpath%20class%3D%22g%22%20d%3D%22M1%2C2l6%2C6L1%2C14%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E);
    background-repeat: no-repeat;
    background-size: cover;
}
#pagenation .pagenation_next a::before {
    right: 6px;
}
#pagenation .pagenation_prev a::before {
    left: 6px;
    transform: rotate(180deg);
}


