@charset "UTF-8";

/*----------------------------------------
	- base
-----------------------------------------*/

/*=======================================
	base
=======================================*/
/* 幅 */
.w1060 {
	max-width: 1060px;
	width: 90%;
	margin: 0 auto;
}

/*=======================================
	mv_wrap
=======================================*/
#mv_wrap .mv_bg {
	margin: 80px 0 130px;
	width: 100%;
	background: url(../../image/diary/main.jpg) no-repeat center;
	background-size: cover;
	height: 150px;
}
#mv_wrap .mv_bg .contents {
	display: flex;
	align-items: center;
	height: 100%;
}
#mv_wrap .mv_bg .contents .title {
	font-size: 28px;
	letter-spacing: 0.15em;
	color: #fff;
	padding-left: 50px;
	font-weight: 500;
}
@media screen and (max-width: 768px) {
	#mv_wrap .mv_bg {
		margin: 50px 0 80px;
		width: 100%;
		background: url(../../image/diary/main_sp.jpg) no-repeat center;
		background-size: cover;
		height: 110px;
	}
	#mv_wrap .mv_bg .contents .title {
		font-size: 23px;
		letter-spacing: 0.15em;
		padding-left: 28px;
	}
}


/*=======================================
	news_wrap
=======================================*/
#news_wrap {
	margin-bottom: 175px;
}
#news_wrap ul.contents {
	display: flex;
	flex-direction: column;
	margin-bottom: 70px;
}
#news_wrap ul.contents li {
	width: 100%;
}
#news_wrap ul.contents li a {
	width: 100%;
	display: block;
	padding: 28px 33px;
	border-bottom: 1px solid #707070;
}
#news_wrap ul.contents li:first-child a {
	border-top: 1px solid #707070;
}
#news_wrap ul.contents li:first-child a p.date {
	margin-bottom: 5px;
}
#news_wrap ul.contents li:first-child a p time {
	font-size: 16px;
	font-weight: 400;
}
#news_wrap ul.contents li a .box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#news_wrap ul.contents li a .box p {
	font-size: 18px;
	font-weight: 500;
}
#news_wrap ul.contents li a .box .arrow {
	width: 42px;
	position: relative;
	padding-right: 8px;
	transition: all .3s ease;
}
#news_wrap ul.contents li a .box .arrow span {
	display: block;
}
#news_wrap ul.contents li a .box .arrow span.line01 {
	width: 100%;
	height: 1px;
	background-color: #707070;
}
#news_wrap ul.contents li a .box .arrow span.line02 {
	position: absolute;
  top: 0;
  right: 8px;
  transform-origin: right bottom;
  width: 8px;
  height: 1px;
  background-color: #000;
  transform: rotate(40deg);
	transition: all .3s ease;
}

@media (hover: hover) {
	#news_wrap ul.contents li a:hover .box .arrow {
		padding-right: 0;
	}
	#news_wrap ul.contents li a:hover .box .arrow span.line02 {
		right: 0;
	}
}

/* ページャー */
#news_wrap .page-nation ul {
	width: fit-content;
	margin: 0 auto;
	display: flex;
	gap: 10px 22px;
}
#news_wrap .page-nation ul li a {
	display: block;
	padding: 0 4px 8px;
	font-family: 'Old Standard TT', serif;
	color: rgba(0, 0, 0, 0.5);
	font-size: 16px;
}
#news_wrap .page-nation ul li a.active {
	border-bottom: 1px solid #707070;
	color: #000;
}

@media screen and (max-width: 768px) {
	#news_wrap {
		margin-bottom: 80px;
	}
	#news_wrap ul.contents {
		mix-blend-mode: 60px;
	}
	#news_wrap ul.contents li {
		position: relative;
	}
	#news_wrap ul.contents li a {
		padding: 30px 28px;
	}
	#news_wrap ul.contents li a .box .arrow {
		content: '';
		position: absolute;
		top: 50%; right: 28px;
		transform: translateY(-50%);
	}

	/* ページャー */
	#news_wrap .page-nation ul {
		position: relative;
		flex-wrap: wrap;
		padding: 0 55px;
		gap: 20px 15px;
		max-width: 290px;
	}
	#news_wrap .page-nation ul li {
		width: 23px;
	}
	#news_wrap .page-nation ul li.pager {
		content: '';
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		display: flex;
		justify-content: center;
	}
	#news_wrap .page-nation ul li.pager a {
		font-size: 12px;
		display: inline;
		padding: 8px;
	}
	#news_wrap .page-nation ul li.prev-page {
		left: 0;
	}
	#news_wrap .page-nation ul li.next-page {
		right: 0;
	}
	#news_wrap .page-nation ul li a {
		text-align: center;
		padding: 0 0 5px;
		font-size: 20px;
	}
}

/*=======================================
	detail_area
	（管理画面での編集時のスタイルに関与しない箇所）
=======================================*/
.detail_area .contents {
	padding-bottom: 125px;
}
.detail_area .contents .wp-content .date  {
	margin-bottom: 13px;
}
.detail_area .contents .wp-content .date time {
	font-weight: 400;
	font-size: 16px;
}

.detail_area .contents .wp-content h1.detail_title {
	font-size: 26px;
	font-weight: 500;
	line-height: 1.26;
	margin-bottom: 40px;
}

.detail_area .contents .wp-content .img {
	margin-bottom: 50px;
}
.detail_area .contents .wp-content .img p {
	text-align: center;
}
.detail_area .contents .btn a {
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.detail_area .contents .btn a p {
	transition: all .3s ease;
}
.detail_area .contents .btn a .arrow_line {
	width: 42px;
	content: '';
	position: absolute;
	top: calc(50% + 2px); left: 80px;
	transform: translateY(-50%);
}
.arrow_line span {
	display: block;
}
.arrow_line span.line01 {
	width: 100%;
	height: 1px;
	background-color: #707070;
	transition: all .3s ease;
}
.arrow_line span.line02 {
position: absolute;
	top: 0;
	left: 0;
	transform-origin: left bottom;
	width: 8px;
	height: 1px;
	background-color: #707070;
	transform: rotate(-40deg);
	transition: all .3s ease;
}

@media (hover: hover) {
	.detail_area .contents .btn a:hover p {
		color: #fff;
	}
	.detail_area .contents .btn a:hover .arrow_line span.line01 {
		background-color: #fff;
	}
	.detail_area .contents .btn a:hover .arrow_line span.line02 {
		background-color: #fff;
	}
}

@media screen and (max-width: 1160px) {
	.detail_area .contents {
		padding-bottom: 10.75vw;
	}
	.detail_area .contents .wp-content h1.detail_title {
		font-size: calc((26 / 1160)* 100vw);
		margin-bottom: 45px;
	}
}

@media screen and (max-width: 768px) {
	.detail_area .contents {
		padding-bottom: 135px;
	}
	.detail_area .contents .wp-content h1.detail_title {
		font-size: 20px;
		line-height: 1.85;
	}
	.detail_area .contents .wp-content .img {
		margin-bottom: 30px;
	}
	.detail_area .contents .btn a .arrow_line {
		left: 35px;
	}
	.detail_area2 .contents .btn a {
		position: relative;
	}
	.detail_area2 .contents .btn a .arrow_line {
		content: '';
		position: absolute;
		top: 50%; left: 40px;
		transform: translateY(-50%);
	}
}