/* -----------------------------------------------
= page-title
----------------------------------------------- */
.page-title .set {
	position: relative;
}
.page-title .set h1 {
	position: absolute;
	left: 25px;
	right: 15px;
	bottom: 10px;
}
.page-title .set h1 span {
	display: block;
}
.page-title .set h1 span:first-child {
	color: var(--red);
	font-size: calc(1.2rem / 1.6);
	letter-spacing: .04em;
}
.page-title .set h1 span:last-child {
	color: #fff;
	font-family: var(--zen);
	font-size: calc(2rem / 1.6);
	letter-spacing: .02em;
}
@media print, screen and (min-width: 768px) {/* PC */
.page-title .set {
	max-width: 1300px;
	margin-inline: auto;
}
.page-title .set h1 {
	left: 40px;
	right: 40px;
	bottom: 40px;
}
.page-title .set h1 span:first-child {
	margin-bottom: 5px;
	font-size: calc(1.8rem / 1.6);
}
.page-title .set h1 span:last-child {
	font-size: calc(2.4rem / 1.6);
	letter-spacing: .08em;
}
}/* @media */
/* -----------------------------------------------
= other
----------------------------------------------- */
.other {
	margin-inline: 32px;
}
.other li {
	padding: 13px;
	background: #f0f0f0;
}
.other li + li {
	margin-top: 15px;
}
.other li a {
	display: block;
	padding: 17px;
	color: #fff;
	background: #787878;
	border: 0.5px solid var(--red);
	font-size: calc(1.4rem / 1.6);
	text-align: center;
}
.other li a::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-right: 5px;
	background: var(--red);
}
@media print, screen and (min-width: 768px) {/* PC */
.other {
	max-width: 1260px;
	margin-inline: auto;
	padding: 0 30px 85px;
}
.other ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
	gap: 25px;
}
.other li {
	padding: 28px;
}
.other li + li {
	margin-top: 0;
}
.other li a {
	padding: 30px;
	border-width: 1px;
	font-size: calc(2.4rem / 1.6);
}
.other li a::before {
	width: 18px;
	height: 18px;
	margin-right: 10px;
}
}/* @media */
@media (hover: hover) {
.other a {
	transition: .3s;
}
.other a:hover {
	background: var(--red);
	border-color: #787878;
}
.other a::before {
	transition: background .3s;
}
.other a:hover::before {
	background: #787878;
}
}/* @media */
