/* ---------------------------------------------------------------------------------------
	common
--------------------------------------------------------------------------------------- */

.postCONTENT {
	display: flex;
	justify-content: space-between;
}
.postCONTENT-MAIN {
	width: 69%;
}

.postCONTENT-SIDE {
	width: 28%;
}


.postCONTENT-SIDE h3 {
	text-align: left !important;
	font-size: clamp(1.6rem, 1.9vw, 2.2rem);
	line-height: 1.4 !important;
	border-bottom: 3px solid  #62b9a8 !important;
	padding-bottom: 10px;
	position: relative;
	margin-bottom: 15px;
}
.postCONTENT-SIDE h3:before {
    position: absolute;
    content: '';
    width: 30%;
    left: 0;
    bottom: -3px;
    border-bottom: 3px solid #dc8a32;
}

.columnLIST .item {
	box-sizing: border-box;
	margin-bottom: 10px;
	position: relative;
}
.columnLIST .item a {
	display: flex;
	justify-content: space-between;
	padding: 15px;
}
.columnLIST .item .ph {
	width: 27%;
}
.columnLIST .item .ph img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border: 3px solid #fff;
	box-sizing: border-box;
}

.columnLIST .item .txt .categoy {
	position: absolute;
	background: #292113;
	color:#fff;
	font-size: 1.3rem;
	padding: 5px 15px 7px 15px;
	line-height: 1;
	right:10px;
	top:10px;
	width: 100px;
	box-sizing: border-box;
	text-align: center;
}

.columnLIST .item .txt {
	width: 70%;
}
.columnLIST .item .txt .date {
	font-size: 1.4rem;
	line-height: 1.5;
	margin-bottom: 5px;
}
.columnLIST .item .txt h4 {
	padding: 0;
	margin: 0;
   font-size: 2rem;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 5px;
	border-bottom: 0px;
}
.columnLIST .item .txt p {
	padding: 0;
	margin: 0;
   font-size: 1.4rem;
	line-height: 1.7;
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.sidelistBOX {
	margin-bottom: 40px;
}

.sidelist {
	border-bottom: 1px dotted #afaeaa;
	padding-bottom: 8px;
	margin-bottom: 8px;
}

.sidelist a {
	display: flex;
	justify-content: space-between;
}
.sidelist.newsSIDE a {
	display: block;
	justify-content: space-between;
}
.sidelist .ph {
	width: 25%;
}
.sidelist .txt {
	width: 70%;
}
.sidelist.newsSIDE .txt {
	width: 100%;
}
.sidelist .ph img {
	width: 100%;
	height: 60px;
	object-fit: cover;
}
.sidelist .txt .date {
	font-size: 1rem;
}
.sidelist .txt h4 {
	font-size: 1.4rem;
	line-height: 1.5;
	font-weight: normal;
	color:#1b2b3a;
	font-weight: 600;
}
.sidelist .txt p {
	font-size: 1.2rem;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}



.catelink {
	margin-bottom:40px;
}
.catelink li {
	position:relative;
	border-bottom: 1px dashed #bfbfbf;
}
.catelink li a {
	display: block;
	padding: 5px 0;
}
.catelink li:after{
   position: absolute;
  content: '';/*何も入れない*/
  display: inline-block;
  width: 18px;/*画像の幅*/
  height: 18px;/*画像の高さ*/
  background:url("../../images/common/next.png") ;
  background-size: contain;
	right: 5px;
	top:27%;
}



@media screen and (max-width: 768px) {
	
 .postCONTENT {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.postCONTENT-MAIN {
	width: auto;
	margin-bottom: 20px;
}

.postCONTENT-SIDE {
	width: auto;
}


.postCONTENT-SIDE h3 {
	text-align: left !important;
	font-size: clamp(1.7rem, 1.9vw, 2.2rem);
	line-height: 1.4 !important;

	padding-bottom: 10px;
	position: relative;
	margin-bottom: 15px;
}
.postCONTENT-SIDE h3:before {
    position: absolute;
    content: '';
    width: 20%;
    left: 0;
  
}

.columnLIST .item {
	box-sizing: border-box;
	margin-bottom: 10px;
	position: relative;
}
.columnLIST .item a {
	display: flex;
	justify-content: space-between;
	padding: 0px;
}
.columnLIST .item .ph {
	width: 27%;
}
.columnLIST .item .ph img {
	width: 100%;
	height: 60px;
	object-fit: cover;
	border: 0 solid #fff;
	box-sizing: border-box;
}

.columnLIST .item .txt .categoy {
	position: absolute;
	background: #292113;
	color:#fff;
	font-size: 1rem;
	padding: 5px 10px 7px 10px;
	line-height: 1;
	right:10px;
	top:-2px;
	width: 100px;
	box-sizing: border-box;
	text-align: center;
}

.columnLIST .item .txt {
	width: 70%;
}
.columnLIST .item .txt .date {
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 5px;
}
.columnLIST .item .txt h4 {
	padding: 0;
	margin: 0;
   font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 5px;
	border-bottom: 0px;
}
.columnLIST .item .txt p {
	padding: 0;
	margin: 0;
   font-size: 1.3rem;
	line-height: 1.6;
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.sidelistBOX {
	margin-bottom: 30px;
}

.sidelist {
	border-bottom: 1px dotted #afaeaa;
	padding-bottom: 8px;
	margin-bottom: 8px;
}

.sidelist a {
	display: flex;
	justify-content: space-between;
}
.sidelist .ph {
	width: 25%;
}
.sidelist .txt {
	width: 70%;
}
.sidelist .ph img {
	width: 100%;
	height: 60px;
	object-fit: cover;
}
.sidelist .txt .date {
	font-size: 1rem;
}
.sidelist .txt h4 {
	font-size: 1.4rem;
	line-height: 1.5;
	font-weight: normal;
	color:#1b478e;
	font-weight: 600;
}
.sidelist .txt p {
	font-size: 1.2rem;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}



.catelink {
	
}
.catelink li {
	position:relative;
	border-bottom: 1px dashed #bfbfbf;
}
.catelink li a {
	display: block;
	padding: 5px 0;
	font-size: 1.5rem;
}
.catelink li:after{
   position: absolute;
  content: '';/*何も入れない*/
  display: inline-block;
  width: 18px;/*画像の幅*/
  height: 18px;/*画像の高さ*/
  background:url("../../images/common/next.png") ;
  background-size: contain;
	right: 5px;
	top:27%;
}

}


/* ---------------------------------------------------------------------------------------
	記事詳細
--------------------------------------------------------------------------------------- */



.column-single h1 {
	text-align: left !important;
	font-size: clamp(1.8rem, 2.6vw, 2.8rem);
	line-height: 1.4 !important;
	border-bottom: 3px solid  #62b9a8 !important;
	padding: 10px 0;
	position: relative;
margin-bottom:30px;
}
.column-single h1:before {
    position: absolute;
    content: '';
    width: 15%;
    left: 0;
    bottom: -3px;
    border-bottom: 3px solid #dc8a32;
}

.column-single .date {
	font-size: 1.4rem;
}

.column-single .categoy {
	background: #1b2b3a;
	color:#fff;
	font-size: 1.3rem;
	padding: 5px 15px 7px 15px;
	line-height: 1;
	right:10px;
	top:10px;
	width: auto;
	box-sizing: border-box;
	text-align: center;
	float: left;
	margin-right: 15px;
}

.post-box h2 {
	background: #1b2b3a;
	border-left: 8px solid #20acb2;
	padding: 10px 15px;
	box-sizing: border-box;
	font-size: clamp(1.6rem, 1.9vw, 2.2rem);
	font-weight: normal;
	margin: 20px 0 20px 0;
	font-weight: bold;
	color:#fff;
}

.post-box h3 {
	background: #ebf6f6;
	font-size: clamp(1.6rem, 1.7vw, 2rem);
	padding: 10px 15px;
	margin: 20px 0 20px 0;
	border-top: 3px solid #1b2b3a;
	
}
.post-box h4 {
	font-size: clamp(1.5rem, 1.6vw, 1.8rem);
	margin: 20px 0 20px 0;
	border-bottom: 3px dotted #1b2b3a;
	padding-bottom: 10px;
	margin-bottom: 15px;
}


.post-box img {
	max-width: 80%;
	height: auto;
	margin: 40px auto 40px auto;
	display: block;
	
}




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

.column-single h1 {
	text-align: left !important;
	font-size: clamp(1.8rem, 2.6vw, 2.8rem);
	line-height: 1.4 !important;

	padding: 10px;
	position: relative;
margin-bottom:20px;
}
.column-single h1:before {
    position: absolute;
    content: '';
    width: 20%;
    left: 0;
   
}

.column-single .date {
	font-size: 1.2rem;
}

.column-single .categoy {
	color:#fff;
	font-size: 1.2rem;
	padding: 5px 15px 7px 15px;
	line-height: 1;
	right:10px;
	top:10px;
	width: 120px;
	box-sizing: border-box;
	text-align: center;
	float: left;
	margin-right: 15px;
	margin-bottom: 10px;
}

.post-box h2 {
	background: #1b2b3a;
	border-left: 6px solid #20acb2;
	padding: 10px 15px;
	box-sizing: border-box;
	font-size: clamp(1.6rem, 1.9vw, 2.2rem);
	font-weight: normal;
	margin: 20px 0 15px 0;
	font-weight: bold;
	color:#fff;
}

.post-box h3 {
	background: #ebf6f6;
	font-size: clamp(1.6rem, 1.7vw, 2rem);
	padding: 10px 15px;
	margin: 20px 0 15px 0;
	border-top: 3px solid #1b2b3a;
	
}
.post-box h4 {
	font-size: clamp(1.6rem, 1.6vw, 1.8rem);
	margin: 20px 0 20px 0;
	border-bottom: 3px dotted #1b2b3a;
	padding-bottom: 10px;
	margin-bottom: 15px;
}
.post-box img {
	max-width: 80%;
	height: auto;
	margin: 40px auto 40px auto;
	display: block;
	
}
	
.button_short {
	width: 80%;
	margin: 50px auto;
}

	
}



/* ---------------------------------------------------------------------------------------
	NEWS 一覧
--------------------------------------------------------------------------------------- */

.newsCONTENT  {
	margin-top: -20px;
}
.newsCONTENT li  {
	border-bottom: 1px dotted #1b2b3a;
}
.newsCONTENT li a  {
	display: block;
	padding: 20px 0;
	position: relative;
	
}
.newsCONTENT li .date  {
	background: #1b2b3a;
	color:#fff;
	padding:8px 20px 10px 20px;
	display: inline-block;
	line-height: 1;
	margin-bottom: 10px;
	font-size: clamp(1.2rem, 1.25vw, 1.4rem);
}
.newsCONTENT li h3  {
	font-size: clamp(1.6rem, 1.6vw, 1.8rem);
	font-weight: 500;
	width: 90%;
	line-height: 1.7;
}
.newsCONTENT li a:after  {
	content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px #1b2b3a;
  border-right: solid 2px #1b2b3a;
  transform: translateY(-50%) rotate(45deg);
}
.newsCONTENT li a:hover:after {
  right: 1.4rem;
}

@media screen and (max-width: 834px) {
	
.newsCONTENT  {
	margin-top: -15px;
}
.newsCONTENT li  {
	border-bottom: 1px dotted #1b2b3a;
}
.newsCONTENT li a  {
	display: block;
	padding: 15px 0;
	position: relative;
	
}
.newsCONTENT li .date  {
	background: #1b2b3a;
	color:#fff;
	padding:8px 15px 10px 15px;
	display: inline-block;
	line-height: 1;
	margin-bottom: 5px;
	font-size: clamp(1.2rem, 1.25vw, 1.4rem);
}
.newsCONTENT li h3  {
	font-size: clamp(1.5rem, 1.6vw, 1.8rem);
	font-weight: 500;
	width: 90%;
	line-height: 1.5;
}
.newsCONTENT li a:after  {
	content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px #1b2b3a;
  border-right: solid 2px #1b2b3a;
  transform: translateY(-50%) rotate(45deg);
}
.newsCONTENT li a:hover:after {
  right: 1.4rem;
}

	
}






