@charset "utf-8";
/* --------------------------------------------------------- */
/* 居場所詳細編集 */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* 基本 */
/* --------------------------------------------------------- */
#edit {
	border-top: 1px solid #747F7F;
	padding: 30px 0 0 0;
	margin: 30px 0 0 0;
}
#edit p {
	line-height: 1.7;
	margin: 20px 3%;
}
@media screen and (max-width:600px) {
	#edit p {
		line-height: 1.7;
		margin: 10px 2%;
	}
}
#edit hr {
	height: 1px;
	background-color: #333333;
	border: none;
	margin: 40px 0;
}
#edit a {
	color: #FF4858;
	text-decoration: underline;
	line-height: 1.7;
	margin: 0 10px;
}
#edit a::before {
	content: '';
	display: inline-block;
	width: 26px;
	height: 18px;
	background-image: url("../img/common/arrow_red.svg");
	background-repeat: no-repeat;
	background-size: 26px 16px;
	vertical-align: middle;
	margin-right: 5px;
}
#edit a:has(> img)::before { /* 画像に設定するリンクには矢印を表示しない */
	background-image: none;
}
/* --------------------------------------------------------- */
/* 文書構造 */
/* --------------------------------------------------------- */
#edit h1, #edit h2, #edit h3, #edit h4, #edit h5, #edit h6 {
	font-weight: bold;
	line-height: 1.3;
	margin: 20px 0;
}
#edit h1 {
	font-size: 1.5em;
}
#edit h2 {
	font-size: 1.3em;
}
#edit h3 {
	font-size: 1.1em;
}
#edit h4 {
	font-size: 1em
}
#edit h5 {
	font-size: 1em
}
#edit h6 {
	font-size: 1em
}
@media screen and (max-width:600px) {
	#edit {
		font-size: 14px;
	}
}
/* --------------------------------------------------------- */
/* リスト */
/* --------------------------------------------------------- */
#edit ul {
	list-style: disc;
	margin: 20px 0 20px 20px;
}
#edit ol {
	list-style: decimal;
	margin: 20px 0 20px 30px;
}
#edit li {
	margin-bottom: 10px;
	line-height: 1.7;
}
/* --------------------------------------------------------- */
/* 画像・キャプション */
/* --------------------------------------------------------- */
#edit img {
	max-width: 600px;
}
#edit figure {
	margin-bottom: 20px;
}
#edit figure img {
	margin: 0 auto 20px;
}
#edit figure figcaption {
	line-height: 1.7;
}
#edit .mt-figure-center figcaption {
	text-align: center;
}
/* --------------------------------------------------------- */
/* 表 */
/* --------------------------------------------------------- */
#edit table, #edit thead, #edit tbody, #edit tr, #edit th, #edit td { /* CMSで自動で高さが指定されることを回避 */
	height: auto !important
}
#edit table {
	border: 1px solid #666666;
	margin-bottom: 20px;
}
#edit table th {
	border: 1px solid #666666;
	padding: 10px;
}
#edit table td {
	border: 1px solid #666666;
	padding: 10px;
}