@charset "utf-8";

/*==============================================

	topics

==============================================*/

.topics_list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  padding: 0 50px;
  margin: 0 auto;
}
.topics_list li {
  width: 100%;
}
.topics_list li a {
  display: flex;
  gap: 0px;
  align-items: center;
}
.topics_list li a .img {
  width: 30%;
}
.topics_list li a .img {
  width: 293px;
  aspect-ratio: 293 / 220;
  background-image: url(../../common/img/logo_w.svg);
  background-size: 65%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #B4A698;
}
.topics_list li a .img img{
	object-fit: cover;
	aspect-ratio: 293 / 220;
}
.topics_list li a .exp {
	width: calc(100% - 293px);
	padding-left: 90px;
}
.topics_list li a .exp .title {
	color:  #4C4A4A;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 3.3rem; /* 206.25% */
	letter-spacing: 0.08rem;
	margin-bottom: 10px;
}
.topics_list li a .exp .cat {
	margin: 10px 0;
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}
.topics_list li a .exp .cat span {
	font-size: 1.1rem;
    line-height: 1rem;
    color: #9DA49E;
    letter-spacing: 0.055rem;
    border: 1px solid #9DA49E;
    border-radius: 5px;
    padding: 6px 15px;
    white-space: nowrap;
}
.topics_list li a .exp .excerpt {
	margin-top: 20px;
}
.topics_list li a .exp .view_more {
	margin-top: 20px;
}

.topics_single {
	/* background-image: url(../img/topics_bg.png); */
	/* background-repeat: no-repeat; */
	/* background-size: 758px; */
	/* background-position: right bottom; */
	padding: 40px 0 160px;
	border-bottom: 1px solid #C9C9C4;
}
.back_to_list {
	margin-top: 70px;
	text-align: center;
} 
.back_to_list a {
	color: #9DA49E;
	text-align: center;
	font-size: 1.3rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem; /* 184.615% */
	letter-spacing: 0.065rem;
	display: inline-block;
	max-width: 328px;
	width: 100%;
	border-bottom: 1px solid;
	padding: 6px 0;
	position: relative;
}
.back_to_list a::after {
    content: '';
    width: 8px;
    height: 10px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0px;
    margin: auto 0;
    background-image: url(../../common/img/btn_arrow2.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(180deg);
}
.topics_single .topics_single_inner {
	max-width: 900px;
	padding: 0 50px;
	margin: 0 auto;
}
.topics_single .title {
	color:  #4C4A4A;
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 3rem; /* 166.667% */
	letter-spacing: 0.09rem;
	margin-bottom: 20px;
}
.topics_single .meta {
	display: flex;
	gap: 10px;
	margin-bottom: 40px;
	flex-wrap: wrap;
	border-bottom: 1px solid #C9C9C4;
	padding-bottom: 20px;
}

.topics_single .content p {
	margin: 20px 0 10px;
    font-size: 1.3rem;
    line-height: 2.2em;
	text-align: left;
	word-break: break-all;
}
.topics_single .content a {
	text-decoration: underline;
	font-size: inherit;
	color: inherit;
	line-height: inherit;
}

.topics_single .meta .cat {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}
.topics_single .meta .cat a {
    font-size: 1.1rem;
    line-height: 1rem;
    color: #9DA49E;
    letter-spacing: 0.055rem;
    border: 1px solid #9DA49E;
    border-radius: 5px;
    padding: 6px 15px;
    white-space: nowrap;
}
.latest_topics {
	max-width: 900px;
	padding: 0 50px;
	margin: 80px auto 0;
}
.latest_topics .sec_heading {
	margin-bottom: 40px;
}
.latest_topics .sec_heading .en {
	color:  #B4A698;
		font-size: 1.3rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2rem;
	letter-spacing: 0.13rem;
}
.latest_topics .sec_heading h2 {
	color: 	 #B4A698;
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 2.4rem; /* 184.615% */
	letter-spacing: 0.065rem;
}
.latest_topics .topics_list {
	padding: 0;
	gap: 40px;
}
.latest_topics .topics_list li a {
	align-items: center;
}
.latest_topics .topics_list .img {
	width: 200px;
	aspect-ratio: 200 / 150;
}
.latest_topics .topics_list .exp {
	width: calc(100% - 200px);
	padding-left: 50px;
}
.latest_topics .topics_list .exp .title {
	font-size: 1.5rem;
	line-height: 2.4rem;
}
.latest_topics .topics_list li a .exp .view_more {
	margin-top: 5px;
}
@media screen and (max-width: 736px) {

	.topics_list {
		padding: 0 30px;
	}
	.topics_list li a {
		flex-direction: column;
	}
	.topics_list li a .img {
		width: 100%;
	}
	.topics_list li a .exp {
		width: 100%;
		padding-left: 0;
		margin-top: 20px;
	}
	.topics_list li a .exp .title {
		margin-bottom: 5px;
	}
	
	.topics_list li a .exp .view_more {
		margin-top: 0;
	}


	.topics_single {
		background-size: 536px;
		background-position: calc(100vw - 490px) bottom;
		padding-bottom: 100px;
	}
	.topics_single .topics_single_inner {
		padding: 0 30px;
	}
	.topics_single .title {
		font-size: 1.6rem;
	}
	.back_to_list a {
		width: 100%;
		max-width: unset;
	}

	.latest_topics {
		padding: 0 30px;
		margin-bottom: 50px;
	}
	.latest_topics .topics_list li a {
		flex-direction: row;
		align-items: flex-start;
		position: relative;
		padding-bottom: 40px;
	}
	.latest_topics .topics_list li a .img {
		width: 130px;
	}
	.latest_topics .topics_list .exp {
		padding-left: 20px;
		width: calc(100% - 130px);
		margin-top: 0;
	}
	.latest_topics .topics_list .exp .title {
		font-size: 1.3rem;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
	}
	.latest_topics .topics_list .exp .cat {
		margin-top: 0;
		margin-bottom: 5px;
	}
	.latest_topics .topics_list li a .exp .cat span {
		padding: 6px 6px;
	}
	.latest_topics .topics_list .exp .view_more {
		margin-top: 0;
		text-align: right;
		padding-right: 20px;
		position: absolute;
		right: 0;
		bottom: 0;
		width: 100%;
	}
	
}