/* -----------------------------------------------
= block
----------------------------------------------- */
.block {
	margin-top: 60px;
	scroll-margin-top: 90px;
}
.block:first-child {
	margin-top: 0;
}
.block .text {
	margin-bottom: 20px;
	font-size: calc(1.3rem / 1.6);
	line-height: calc(27 / 13);
}
.block .note {
	margin-bottom: 20px;
	color: var(--black);
	font-size: calc(1.1rem / 1.6);
	line-height: calc(24 / 11);
}
.block .list {
	margin-left: 20px;
	margin-bottom: 30px;
	color: var(--red);
	list-style-type: disc;
	font-size: calc(1.3rem / 1.6);
	line-height: calc(27 / 13);
}
.block .list li > span {
	color: var(--black);
}
.block a {
	text-decoration: underline;
}
@media print, screen and (min-width: 768px) {/* PC */
.block {
	margin-top: 100px;
	scroll-margin-top: 118px;
}
.block .text {
	margin-bottom: 30px;
	font-size: calc(1.5rem / 1.6);
	line-height: calc(34 / 15);
}
.block .note {
	margin-bottom: 40px;
	font-size: calc(1.1rem / 1.6);
	line-height: calc(24 / 11);
}
.block .list {
	font-size: calc(1.5rem / 1.6);
	line-height: calc(34 / 15);
}
}/* @media */
@media (hover: hover) {
.block a:hover {
	text-decoration: none;
}
}/* @media */
/* -----------------------------------------------
= status
----------------------------------------------- */
.status {
	background: #f7f7f7;
	border: 1px solid var(--border-gray);
	border-radius: 4px;
}
.status button {
	position: relative;
	width: 100%;
	padding: 16px 15px;
	font-size: calc(1.4rem / 1.6);
}
.status button::before,
.status button::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 15px;
	width: 16px;
	height: 2px;
	background: var(--red);
}
.status button::after {
	transform: rotate(90deg);
}
.status button[aria-expanded="true"]::after {
	display: none;
}
.status .detail {
	padding: 20px 15px;
	border-top: 1px solid var(--border-gray);
	font-size: calc(1.2rem / 1.6);
	line-height: calc(25 / 12);
}
.status .text {
	font-size: calc(1.2rem / 1.6);
	line-height: calc(25 / 12);
}
.status .list {
	margin-bottom: 20px;
}
.status li + li {
	margin-top: 2em;
}
.status .list table {
	margin-top: 20px;
}
.status th,
.status td {
	padding: 15px;
	color: var(--black);
	border: 1px solid var(--border-gray);
	vertical-align: top;
}
.status thead th {
	background: var(--border-gray);
}
.status tbody th,
.status tbody td {
	background: #fff;
}
.status tbody td.center {
	text-align: center;
}
@media print, screen and (min-width: 768px) {/* PC */
.status {
	margin-top: 50px;
}
.status button {
	padding: 30px;
	font-size: calc(1.7rem / 1.6);
}
.status button::before,
.status button::after {
	right: 30px;
}
.status .detail {
	padding: 20px 30px;
	font-size: calc(1.5rem / 1.6);
	line-height: calc(34 / 15);
}
.status .text {
	font-size: calc(1.5rem / 1.6);
	line-height: calc(34 / 15);
}
.status th,
.status td {
	padding: 12px 30px;
}
}/* @media */

