@charset "UTF-8";

/* ----------------------------------------------- CSS Information
 Style Info:     お知らせ
 Notes:          
--------------------------------------------------------------- */
table {
	border-spacing: 0;
	border-top: 1px solid #505050;
	border-left: 1px solid #505050;
}
table th {
	border-spacing: 0;
	border-right: 1px solid #505050;
	border-bottom: 1px solid #505050;
}
table td {
	border-spacing: 0;
	border-right: 1px solid #505050;
	border-bottom: 1px solid #505050;
}
.container {
	width: 80%;
	max-width: 950px;
	margin: 0 auto 5%;
	padding: 5% 0;
	display: flex;
	justify-content: space-between;
}
.headline-wrap {
	margin: 0 0 2%;
	border-bottom: 1px solid #ff79A2;
}
.headline-wrap .explain {
	display: flex;
	justify-content: space-between;
}
.headline-wrap .day {
	widows: 10em;
}
.headline-wrap .category {}
.headline-wrap .headline {
	font-size: 1.5em;
	/* line-height: 1.3; */
	font-family: 'A1 Mincho', serif;
}
.contents-wrap {
	margin: 0 0 10%;
	display: flex;
	position: relative;
	justify-content: space-between;
	flex-wrap: wrap;
}
.contents-wrap .main-image {
	width: 40%;
	position: relative;
}
.contents-wrap .main-image::before {
	content: '';
	display: block;
	padding-top: 100%;
}
.contents-wrap .main-image img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	object-fit: cover;
}
.archive .contents {
	width: 55%;
	font-size: 1.2em;
}
.contents-wrap .btn {
  margin: 0 1em;
	position: absolute;
	bottom: 0;
	right: 0;
  text-align: center;
}
.contents-wrap .btn a {
  padding: 0.2em 1em;
  display: block;
  font-size: 1.2em;
  border: 1px solid #ff79a2;
  background: #fff;
  border-radius: 100px;
}
.contents-wrap .btn a:hover {
	color: #fff;
	background: #ff79a2;
	opacity: 1;
}
.single .contents {
	margin: 0 auto 10%;
	font-size: 1.2em;
}
/* ================= smartphone ================= */
@media only screen and (max-width:699px) {
.container {
  width: 90%;
  display: block;
}
.container .sidebar {
  width: 100%;
	margin: 0 auto;
}
.container main.main {
  width: 100%;
}
.headline-wrap .explain {
  font-size: 12px;
}
.headline-wrap .headline {
  font-size: 16px;
}
.archive .contents {
  width: 55%;
  font-size: 13px;
	word-wrap: break-word;
}
.contents-wrap .btn {
  margin: 3% 0 15% auto;
  display: table;
  position: unset;
  bottom: 0;
  right: 0;
  text-align: center;
}
.contents-wrap .btn a {
  font-size: 13px;
}
}