/* CSS Document */

.newsCONTENT {
	padding: 60px 0% 80px 0%;
	box-sizing: border-box;
}



.newsCONTENT .topTOPICSLIST li a {
	color:#222;
}

.newsCONTENT .topTOPICSLIST li figure img {
	border-radius: 6px;
	height: 160px;
	object-fit: cover;
}

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

.postCONTENT-SIDE {
	width: 28%;
}

.postHEADER {
	
}

.postHEAD h1 {
	text-align: left !important;
	font-size: clamp(1.6rem, 1.9vw, 5rem);
	line-height: 1.4 !important;
	border-bottom: 4px solid  #1b2b3a !important;
	padding-bottom: 10px;
	position: relative;
	margin-bottom: 15px;
}
.postHEAD h1:before {
    position: absolute;
    content: '';
    width: 30%;
    left: 0;
    bottom: -4px;
    border-bottom: 4px solid #00b6c9;
}

.postHEAD .date {
	font-size: 1.4rem;
}
.postHEAD .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 {
	border-bottom: 1px solid #d0d0d0;
	padding-bottom: 40px;
	margin-bottom: 40px;
}
.post-box img {
	max-width: 80%;
	height: auto;
	margin: 40px auto 40px auto;
	display: block;
	
}
.post-box h2 {
	background: #ebf7f8;
	border-left: 8px solid #00b6c9;
	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;
}

.post-box h3 {
	background: #ebf7f8;
	font-size: clamp(1.6rem, 1.7vw, 2rem);
	padding: 10px 15px;
	margin: 20px 0 20px 0;
	border-top: 3px solid #00b6c9;
	
}
.post-box h4 {
	font-size: clamp(1.5rem, 1.6vw, 1.8rem);
	margin: 20px 0 20px 0;
	border-bottom: 3px dotted #00b6c9;
	padding-bottom: 10px;
	margin-bottom: 15px;
}
.post-box p a {
	color:#035fae;
}

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

.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: clamp(1.4rem, 1.4vw, 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;
	font-size: clamp(1.5rem, 1.5vw, 1.6rem);
}
.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: 834px){
	
.newsCONTENT {
	padding: 30px 0% 40px 0%;
	box-sizing: border-box;
}

.newsCONTENT .topTOPICSLIST li a {
	color:#222;
}
	
.newsCONTENT .topTOPICSLIST li figure img {
	border-radius: 6px;
	height: 110px;
	object-fit: cover;
}

.postCONTENT {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.postCONTENT-MAIN {
	width: auto;
	margin-bottom: 30px;
}

.postCONTENT-SIDE {
	width: auto;
}

.postHEADER {
	
}

.postHEAD h1 {
	text-align: left !important;
	font-size: clamp(1.8rem, 1.9vw, 5rem);
	line-height: 1.4 !important;
	border-bottom: 4px solid  #1b2b3a !important;
	padding-bottom: 10px;
	position: relative;
	margin-bottom: 15px;
}
.postHEAD h1:before {
    position: absolute;
    content: '';
    width: 30%;
    left: 0;
    bottom: -4px;
    border-bottom: 4px solid #00b6c9;
}

.postHEAD .date {
	font-size: 1.4rem;
	position: relative;
	top: -3px;
}
.postHEAD .categoy {
	background: #1b2b3a;
	color:#fff;
	font-size: 1rem;
	padding: 5px 15px 7px 15px;
	line-height: 1;
	right:10px;
	top:0px;
	width: auto;
	box-sizing: border-box;
	text-align: center;
	float: left;
	margin-right: 15px;
}

.post-box {
	border-bottom: 1px solid #d0d0d0;
	padding-bottom: 25px;
	margin-bottom: 25px;
}
.post-box img {
	max-width: 80%;
	height: auto;
	margin: 25px auto 25px auto;
	display: block;
	
}
.post-box h2 {
	background: #ebf7f8;
	border-left: 8px solid #00b6c9;
	padding: 10px 15px;
	box-sizing: border-box;
	font-size: clamp(1.7rem, 1.9vw, 2.2rem);
	font-weight: normal;
	margin: 20px 0 20px 0;
	font-weight: bold;
}

.post-box h3 {
	background: #ebf7f8;
	font-size: clamp(1.6rem, 1.7vw, 2rem);
	padding: 10px 15px;
	margin: 20px 0 20px 0;
	border-top: 3px solid #00b6c9;
	
}
.post-box h4 {
	font-size: clamp(1.5rem, 1.6vw, 1.8rem);
	margin: 20px 0 20px 0;
	border-bottom: 3px dotted #00b6c9;
	padding-bottom: 10px;
	margin-bottom: 15px;
}
.post-box p a {
	color:#035fae;
}

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

.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.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%;
}
	
}






















