@charset "utf-8";


.content{
  padding:100px 0;
  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:#666;
	letter-spacing: 0.02em;
}
.year_month {
  font-size: clamp(10px, 0.8vw, 14px);
  font-family: "Yu Gothic Medium", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  opacity: 0.5;
}
.separator {
	display: block;
	margin: 25px 0 50px;
	width:100%;
	height:1px;
	background: #e3e3e3;
}
.back_bt {
	text-align: center;
}
.back_bt a {
	display: inline-block;
	background: #ea5514;
	color: #fff;
	padding: 0 1em;
	line-height: 2.4em;
	font-size: clamp(14px, 1.5vw, 18px);
	border-radius: 30px;
}
.back_bt a::before {
	content:"";
	display: inline-block;
  width:0.7em;
  height:0.7em;
  background-image: url(../images/arw_wh.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 0.5em 0 0;
	transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.back_bt a:hover::before {
	transform: rotate(180deg) translateX(0.2em);
}

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