@charset "utf-8";


.content{
  padding: 160px 0 50px;
  max-width:800px;
  width: 84vw;
  margin:auto;
}
.content img{
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}
.main_view{
  width:100%;
  height:50vw;
  max-height:500px;
  overflow: hidden;
  margin-bottom:20px;
  animation: fadeIn 2s ease forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.single_ttl{
  font-weight: 500;
  font-size: clamp(16px,3vw,24px);
  margin-bottom:10px;
	line-height: 1.4em;
	letter-spacing: 0.02em;
}
.year_month{
  font-size: clamp(11px,1.5vw,16px);
}
.main_view img{
  object-fit: cover;
  object-position: center;
  height: 100%;
}


.content p{
  font-size: clamp(13px,1.5vw,16px);
  text-align:justify;
	color:#6a3906;
	letter-spacing: 0.02em;
}
.year_month {
  font-size: clamp(10px, 0.8vw, 14px);
  opacity: 0.5;
}
.separator {
	display: block;
	margin: 50px 0;
	width:100%;
	height:1px;
	background: #6a3906;
  opacity:.3;
}
.readmore {
  text-align:center;
}

@media screen and (min-width:768px) {
  .main_view{
    margin-bottom:20px;
  }
	.separator {
		margin: 50px 0;
	}
}