@charset "utf-8";

/* ******************************************
	General
****************************************** */





/* *******************
	news_blog
******************* */
#news_blog {}
#news_blog .wrap {
	text-align: left;
}
#news_blog .wrap p {
	margin-bottom: 25px;
}
.tabs .tabs__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  background-color: #e6e6e6;
  color: #313332;
  /* font-size: clamp( 11px, 3.5vw, 16px ); */
  /* font-weight: bold; */
  transition: all 0.2s ease;
  cursor: pointer;
}
.tabs.tabs--type .tabs__list {
  width: 100%;
  border-bottom: 1px solid #313332;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.tabs.tabs--type .tabs__item {
  position: relative;
  overflow: hidden;
	width: 50%;
}
.tabs.tabs--type .tabs__item:hover,
.tabs.tabs--type .tabs__item:has(input:focus) {
  background-color: #dddddd;
}
.tabs.tabs--type input {
  border: 0 !important;
  clip: rect( 0, 0, 0, 0 ) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.tabs.tabs--type .tabs__content {
  overflow: hidden;
  position: absolute;
  height: 0;
}

.tabs.tabs--type .tabs__list:has(#type-news > input:checked) ~ #type-news__content,
.tabs.tabs--type .tabs__list:has(#type-blog > input:checked) ~ #type-blog__content {
  overflow: visible;
  position: static;
  height: auto;
  padding: 2rem 0;
}

.tabs.tabs--type .tabs__item:has(input:checked),
.tabs.tabs--type .tabs__item:has(input:focus:checked) {
  background-color: #313332;
  color: #fff;
}

@media screen and (max-width:1024px) {
}
@media screen and (max-width:768px) {
}
@media screen and (max-width:600px) {
}
@media screen and (max-width:450px) {
	.tabs.tabs--type .tabs__item {
/* 		width: 50%; */
	}
}






/* *******************
	news_post
******************* */
#news_post {
	padding-top: 100px;
}
#news_post h2 {
  text-align: left;
  border-bottom: 1px solid #000000;
  margin-bottom: 10px;
}
#news_post .cate {
	display: flex;
	justify-content: flex-end;
	align-items: center;
  margin-bottom: 50px;
}
#news_post .update {
  text-align: right;
}
#news_post .news_contents {
	text-align: left;
  padding-top: 65px;
}
#news_post .news_contents img {
  max-width: 100%;
  margin: 0 auto 40px;
}

#news_post .btn_more {
  margin: 80px auto 0;
}

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