@charset "utf-8";
/* ============================================================================
	parts.css => コンテンツ用 汎用ブロック追加CSS

	本体サイト共通の base.css / template.css / contents.css を土台に、
	不足するパーツのみを追加するファイルです。既存クラスは上書きしません。

	・コンテンツ表示幅	PC 726px（.side_nav_area .contents）／ SP 全幅
	・ブレイクポイント	680px
	・基準カラー		見出し #5C442E ／ アクセント #D49332 ／ ベージュ #F1ECDE
	・接頭辞			blk_（既存クラスと衝突させないための接頭辞）
	・font-size			px と rem を併記。rem 側が「文字サイズ 大」に追従します
============================================================================ */


/* 01. セクション
============================================================================================================ */
.blk_sec {
	margin: 60px 0;
}
.blk_sec:first-child {
	margin-top: 0;
}
/* 薄グレー背景 */
.blk_sec_gray {
	padding: 40px 35px;
	background: #f5f4f1;
}
/* ベージュ背景（既存 .panel と同色） */
.blk_sec_beige {
	padding: 40px 35px;
	background: #f1ecde;
}
/* 罫線で区切るだけの軽い版 */
.blk_sec_line {
	padding-top: 55px;
	border-top: 1px solid #e3dacb;
}

@media screen and (max-width: 680px) {
	.blk_sec {
		margin: 40px 0;
	}
	.blk_sec_gray,
	.blk_sec_beige {
		padding: 25px 20px;
	}
	.blk_sec_line {
		padding-top: 35px;
	}
}


/* 02. 見出しセット（ラベル＋大見出し＋リード文）
============================================================================================================ */
/* 大見出しの上に置く小ラベル。h2 には既存の .title_l.bot_left を使います */
.blk_label {
	position: relative;
	margin-bottom: 12px;
	padding-left: 34px;
	color: #d49332;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: bold;
	letter-spacing: .12em;
	line-height: 1.4;
}
.blk_label:before {
	content: "";
	position: absolute;
	top: .7em;
	left: 0;
	width: 24px;
	border-top: 1px solid #d49332;
}
/* 見出し直下のリード文 */
.blk_lead {
	margin-bottom: 25px;
	color: #5c442e;
	font-size: 17px;
	font-size: 1.7rem;
	line-height: 1.9;
}

@media screen and (max-width: 680px) {
	.blk_label {
		margin-bottom: 8px;
		padding-left: 26px;
		font-size: 1.2rem;
		text-align: left;
	}
	.blk_label:before {
		width: 18px;
	}
	.blk_lead {
		margin-bottom: 18px;
		font-size: 1.4rem;
		line-height: 1.8;
	}
}


/* 03. 本文テキスト
============================================================================================================ */
.blk_txt {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 2;
}
.blk_txt + .blk_txt {
	margin-top: 1.5em;
}
/* 注釈 */
.blk_note {
	margin-top: 10px;
	color: #6b6152;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.7;
}
/* 強調（引用風） */
.blk_catch {
	margin-bottom: 15px;
	color: #5c442e;
	font-family: "Yu Mincho", "YuMincho", serif;
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.8;
}

@media screen and (max-width: 680px) {
	.blk_txt {
		font-size: 1.3rem;
		line-height: 1.9;
	}
	.blk_catch {
		font-size: 1.6rem;
	}
}


/* 04. 画像＋テキスト 2カラム
============================================================================================================ */
.blk_media {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.blk_media + .blk_media {
	margin-top: 40px;
}
/* 画像を右に置く */
.blk_media_rev {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.blk_media_img {
	width: 40%;
	-webkit-flex: 0 0 40%;
	flex: 0 0 40%;
}
.blk_media_img img {
	width: 100%;
	height: auto;
}
.blk_media_txt {
	width: 56%;
	-webkit-flex: 0 0 56%;
	flex: 0 0 56%;
}
/* 画像側を広くしたいとき */
.blk_media_wide .blk_media_img {
	width: 56%;
	-webkit-flex: 0 0 56%;
	flex: 0 0 56%;
}
.blk_media_wide .blk_media_txt {
	width: 40%;
	-webkit-flex: 0 0 40%;
	flex: 0 0 40%;
}
/* 画像内キャプション */
.blk_caption {
	margin-top: 8px;
	color: #6b6152;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.6;
}

@media screen and (max-width: 680px) {
	.blk_media,
	.blk_media_rev {
		display: block;
	}
	.blk_media + .blk_media {
		margin-top: 30px;
	}
	.blk_media_img,
	.blk_media_txt,
	.blk_media_wide .blk_media_img,
	.blk_media_wide .blk_media_txt {
		width: auto;
	}
	.blk_media_txt {
		margin-top: 15px;
	}
}


/* 05. カード（番号付き対応）
============================================================================================================ */
.blk_cards {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style: none;
}
.blk_cards > li {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 20px;
	padding: 20px;
	background: #fff;
	border: 1px solid #e3dacb;
	border-radius: 5px;
}
/* 2列 */
.blk_cards_col2 > li {
	width: 48.5%;
	margin-right: 3%;
}
.blk_cards_col2 > li:nth-child(2n) {
	margin-right: 0;
}
/* 3列 */
.blk_cards_col3 > li {
	width: 32%;
	margin-right: 2%;
	padding: 15px;
}
.blk_cards_col3 > li:nth-child(3n) {
	margin-right: 0;
}
/* カード内の各要素 */
.blk_card_img {
	margin-bottom: 12px;
}
.blk_card_img img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	object-position: center;
	font-family: 'object-fit: cover; object-position: center;';
	border-radius: 3px;
}
.blk_card_num {
	margin-bottom: 6px;
	color: #d49332;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing: .12em;
	line-height: 1.4;
}
.blk_card_ttl {
	margin-bottom: 10px;
	color: #5c442e;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6;
}
.blk_card_txt {
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 1.9;
}

@media screen and (max-width: 680px) {
	.blk_cards > li,
	.blk_cards_col2 > li,
	.blk_cards_col3 > li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 15px;
		padding: 18px;
	}
	.blk_card_img img {
		height: auto;
	}
	.blk_card_ttl {
		font-size: 1.5rem;
	}
	.blk_card_txt {
		font-size: 1.3rem;
	}
}


/* 06. ステップ／フロー
============================================================================================================ */
.blk_step {
	list-style: none;
}
.blk_step > li {
	position: relative;
	padding: 20px 20px 20px 80px;
	background: #fff;
	border: 1px solid #e3dacb;
	border-radius: 5px;
}
/* 下向き矢印 */
.blk_step > li + li {
	margin-top: 32px;
}
.blk_step > li + li:before {
	content: "";
	position: absolute;
	top: -22px;
	left: 40px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 8px 0 8px;
	border-color: #d49332 transparent transparent transparent;
}
.blk_step_num {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 44px;
	height: 44px;
	background: #d49332;
	border-radius: 50%;
	color: #fff;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 44px;
	text-align: center;
}
.blk_step_ttl {
	margin-bottom: 8px;
	color: #5c442e;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6;
}
.blk_step_txt {
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 1.9;
}

@media screen and (max-width: 680px) {
	.blk_step > li {
		padding: 15px 15px 15px 62px;
	}
	.blk_step > li + li {
		margin-top: 26px;
	}
	.blk_step > li + li:before {
		top: -19px;
		left: 30px;
	}
	.blk_step_num {
		top: 15px;
		left: 15px;
		width: 34px;
		height: 34px;
		font-size: 1.3rem;
		line-height: 34px;
	}
	.blk_step_ttl {
		font-size: 1.5rem;
	}
}


/* 07. ページ内CTAバンド
============================================================================================================ */
.blk_cta {
	margin: 50px 0;
	padding: 30px;
	background: #f1ecde;
	border-radius: 5px;
	text-align: center;
}
.blk_cta_ttl {
	margin-bottom: 10px;
	color: #5c442e;
	font-family: "Yu Mincho", "YuMincho", serif;
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.6;
}
.blk_cta_txt {
	margin-bottom: 20px;
	color: #5c442e;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.8;
}
/* 電話番号 */
.blk_cta_tel {
	margin-bottom: 20px;
	color: #5c442e;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.4;
}
.blk_cta_tel a {
	color: #5c442e;
	font-size: 28px;
	font-size: 2.8rem;
	font-weight: bold;
	margin-left: 5px;
	text-decoration: none;
}
/* ボタン。既存の .box_link をそのまま使えます。
   ※ ラッパーに既存の .btn は使わないこと。template.css の SP 用ルール
      「.btn { width:210px !important; }」に当たり、幅210px・左寄せに固定されます。 */
.blk_cta_btn {
	text-align: center;
}
.blk_cta .box_link {
	margin: 0 auto;
}

@media screen and (max-width: 680px) {
	.blk_cta {
		margin: 35px 0;
		padding: 22px 18px;
	}
	.blk_cta_ttl {
		font-size: 1.6rem;
	}
	.blk_cta_txt {
		margin-bottom: 15px;
		font-size: 1.3rem;
	}
	.blk_cta_tel a {
		font-size: 2.2rem;
	}
	.blk_cta .box_link {
		width: 100%;
	}
}


/* 08. 画像
============================================================================================================ */
/* 全幅1枚 */
.blk_img {
	margin: 25px 0;
}
.blk_img img {
	width: 100%;
	height: auto;
}
/* 横並びグリッド（2〜3枚） */
.blk_imglist {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 25px 0 0;
	list-style: none;
}
.blk_imglist > li {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 15px;
}
.blk_imglist > li img {
	width: 100%;
	height: 170px;
	object-fit: cover;
	object-position: center;
	font-family: 'object-fit: cover; object-position: center;';
}
.blk_imglist_col2 > li {
	width: 49%;
	margin-right: 2%;
}
.blk_imglist_col2 > li:nth-child(2n) {
	margin-right: 0;
}
.blk_imglist_col3 > li {
	width: 32%;
	margin-right: 2%;
}
.blk_imglist_col3 > li:nth-child(3n) {
	margin-right: 0;
}
.blk_imglist_col3 > li img {
	height: 130px;
}

@media screen and (max-width: 680px) {
	.blk_img {
		margin: 18px 0;
	}
	.blk_imglist_col2 > li,
	.blk_imglist_col3 > li {
		width: 49%;
		margin-right: 2%;
		margin-bottom: 2%;
	}
	.blk_imglist_col2 > li:nth-child(2n),
	.blk_imglist_col3 > li:nth-child(2n) {
		margin-right: 0;
	}
	.blk_imglist_col3 > li:nth-child(3n) {
		margin-right: 2%;
	}
	.blk_imglist_col3 > li:nth-child(6n) {
		margin-right: 0;
	}
	.blk_imglist > li img,
	.blk_imglist_col3 > li img {
		height: 110px;
	}
}


/* 09. PDFリンクボタン／書類ブロック
============================================================================================================ */
/*
	運営規程・重要事項説明書などのPDFへ誘導するボタンです。
	患者様・ご利用者様がご覧になるため、次の点に配慮しています。
	・タップ領域を大きく（PC/SPとも縦60px以上、SPは全幅）
	・アイコンだけに頼らず「PDF」の文字とファイルサイズを併記
	・別ウィンドウで開くことを明記（target="_blank" rel="noopener" を必ず付ける）
	・アイコンは data URI のSVG。画像ファイルの追加アップロード不要、拡大しても滲みません
*/
.blk_pdf {
	margin: 20px 0;
}
.blk_pdflist {
	margin: 20px 0;
	list-style: none;
}
.blk_pdflist > li + li {
	margin-top: 10px;
}
.blk_pdf > a,
.blk_pdflist > li > a {
	position: relative;
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 60px;
	padding: 17px 45px 17px 76px;
	background-color: #fff;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewBox='0 0 40 48'%3E%3Cpath d='M2 2h24l12 12v32H2z' fill='%23ffffff' stroke='%23c9bfae' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M26 2l12 12H26z' fill='%23e8e2d6'/%3E%3Crect x='1' y='26' width='32' height='14' rx='2' fill='%23c8102e'/%3E%3Ctext x='17' y='37' font-family='Arial,Helvetica,sans-serif' font-size='10' font-weight='bold' fill='%23ffffff' text-anchor='middle'%3EPDF%3C/text%3E%3C/svg%3E");
	background-position: 22px 50%;
	background-repeat: no-repeat;
	-webkit-background-size: 32px auto;
	background-size: 32px auto;
	border: 1px solid #d9cfbd;
	border-radius: 5px;
	color: #5c442e;
	text-decoration: none;
	-webkit-transition: background-color .2s, border-color .2s;
	transition: background-color .2s, border-color .2s;
}
/* 右端の矢印 */
.blk_pdf > a:after,
.blk_pdflist > li > a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 22px;
	width: 7px;
	height: 7px;
	margin-top: -5px;
	border-top: 2px solid #d49332;
	border-right: 2px solid #d49332;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.blk_pdf > a:hover,
.blk_pdflist > li > a:hover {
	background-color: #f7f3e9;
	border-color: #d49332;
}
/* 書類名 */
.blk_pdf_ttl {
	display: block;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.5;
}
/* ファイル形式・容量など
   色は #6b6152（白背景でコントラスト比 6.07:1）。
   他の補助テキストで使う #857a6c は 4.20:1 で、小さい文字の基準 4.5:1 を下回るため
   患者様・ご利用者様が読む箇所ではこちらを使います */
.blk_pdf_meta {
	display: block;
	margin-top: 4px;
	color: #6b6152;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.5;
}
/* 主要な書類を目立たせたいとき */
.blk_pdf_main > a,
.blk_pdflist > li.blk_pdf_main > a {
	background-color: #f7f3e9;
	border-color: #d49332;
	border-width: 2px;
}
/* 2列で並べたいとき（書類が多い場合。1列のほうが読みやすいので基本は1列を推奨） */
.blk_pdflist_col2 {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.blk_pdflist_col2 > li {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 49%;
	margin-right: 2%;
	margin-bottom: 10px;
}
.blk_pdflist_col2 > li:nth-child(2n) {
	margin-right: 0;
}
.blk_pdflist_col2 > li + li {
	margin-top: 0;
}
/* 一覧の下に添える案内文 */
.blk_pdf_note {
	margin-top: 12px;
	color: #6b6152;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.8;
}
.blk_pdf_note a {
	color: #6b6152;
}

/* 書類ブロック（小見出し＋PDF一覧をひとまとまりで置くとき）
   表や本文の下に「パンフレット・各種書類」などの見出しを付けて書類を並べる用途です。
   もとは事業所概要ページ専用の outline.css に置いていたものを、
   どのページからも使えるようにこのファイルへ移しました（クラス名は blk_ 接頭辞に統一）。 */
.blk_doc {
	margin: 35px 0 40px;
}
/* 小見出し。h3（既存の .title_m など）より一段小さく、左に区切りの縦線を置いています */
.blk_doc_ttl {
	position: relative;
	margin-bottom: 5px;
	padding-left: 14px;
	color: #5c442e;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6;
}
.blk_doc_ttl:before {
	content: "";
	position: absolute;
	top: .25em;
	bottom: .25em;
	left: 0;
	border-left: 3px solid #d49332;
}
/* 注記の色は上の .blk_pdf_note のまま。ボタンとの間隔だけ少し広げます */
.blk_doc .blk_pdf_note {
	margin-top: 15px;
}
/* ベージュ地（既存 .panel＝#f1ecde）の中に置いたときの微調整。
   白背景用の枠線 #d9cfbd はベージュ地の上でコントラストが落ちるため、枠線だけ少し濃くします。
   背景色・文字色・アイコンは白背景のときと同じです */
.panel .blk_pdf > a,
.panel .blk_pdflist > li > a {
	border-color: #d3c7b1;
}
.panel .blk_pdf > a:hover,
.panel .blk_pdflist > li > a:hover {
	border-color: #d49332;
}

@media screen and (max-width: 680px) {
	.blk_pdf > a,
	.blk_pdflist > li > a {
		min-height: 56px;
		padding: 14px 34px 14px 60px;
		background-position: 15px 50%;
		-webkit-background-size: 28px auto;
		background-size: 28px auto;
	}
	.blk_pdf > a:after,
	.blk_pdflist > li > a:after {
		right: 15px;
	}
	.blk_pdf_ttl {
		font-size: 1.5rem;
	}
	/* SPは書類名が折り返しやすいので常に1列 */
	.blk_pdflist_col2 > li {
		width: 100%;
		margin-right: 0;
	}
	.blk_doc {
		margin: 25px 0 30px;
	}
	.blk_doc_ttl {
		padding-left: 11px;
		font-size: 1.5rem;
	}
	.blk_doc .blk_pdf_note {
		margin-top: 12px;
	}
}


/* 10. 定義リスト（事業所概要など）
============================================================================================================ */
/*
	項目名と内容を並べる表組みです。事業所概要・施設概要・料金の内訳などに使います。

	既存の .gaiyo_list との違い：
	.gaiyo_list は罫線の色が #fff（白）で定義されており、ベージュ地の .panel の中に
	置かれることを前提にしたパーツです。白背景のセクションに置くと罫線が見えず、
	項目名と内容の区切りが分からなくなります。
	.blk_deflist は罫線・項目名の背景色を入れ、どの背景色の上でも読めるようにしています。

	マークアップは .gaiyo_list と同じ ul > li > div + div の形なので、
	クラス名を差し替えるだけで置き換えられます。
*/
.blk_deflist {
	margin: 20px 0;
	background: #fff;
	border: 1px solid #ddd3c0;
	border-radius: 4px;
	list-style: none;
	/* 角丸から項目名セルの背景がはみ出さないように */
	overflow: hidden;
}
.blk_deflist > li {
	display: -webkit-flex;
	display: flex;
	color: #5c442e;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.7;
}
.blk_deflist > li + li {
	border-top: 1px solid #ddd3c0;
}
/* 項目名セル */
.blk_deflist_item {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 30%;
	-webkit-flex: 0 0 30%;
	flex: 0 0 30%;
	padding: 14px 18px;
	background: #f5f2ea;
	border-right: 1px solid #ddd3c0;
	font-weight: bold;
}
/* 内容セル */
.blk_deflist_text {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 70%;
	-webkit-flex: 0 0 70%;
	flex: 0 0 70%;
	padding: 14px 18px;
}
.blk_deflist a {
	color: #5c442e;
}
/* 電話番号のセル（.tel）。代表番号だけを大きくし、FAX等は通常サイズにして
   どれが電話番号か一目で分かるようにしています。
   複数の番号をすべて同じ大きさにしたい場合は :first-of-type を外してください */
.blk_deflist_text.tel a {
	text-decoration: none;
}
.blk_deflist_text.tel a:first-of-type {
	font-size: 17px;
	font-size: 1.7rem;
	font-weight: bold;
}
/* 項目名を広くしたいとき（「提供サービス」など長い項目名がある場合） */
.blk_deflist_wide .blk_deflist_item {
	width: 40%;
	-webkit-flex: 0 0 40%;
	flex: 0 0 40%;
}
.blk_deflist_wide .blk_deflist_text {
	width: 60%;
	-webkit-flex: 0 0 60%;
	flex: 0 0 60%;
}

@media screen and (max-width: 680px) {
	/* SPは横並びだと内容セルが狭くなりすぎるため、項目名を見出し帯にして縦積み */
	.blk_deflist > li {
		display: block;
		font-size: 1.3rem;
	}
	.blk_deflist_item,
	.blk_deflist_text,
	.blk_deflist_wide .blk_deflist_item,
	.blk_deflist_wide .blk_deflist_text {
		width: auto;
	}
	.blk_deflist_item {
		padding: 9px 14px;
		border-right: 0;
		border-bottom: 1px solid #e6ddcd;
	}
	.blk_deflist_text {
		padding: 12px 14px;
	}
	.blk_deflist_text.tel a {
		font-size: 1.5rem;
	}
}


/* 11. 記号付き小見出しのボックス
============================================================================================================ */
/*
	施設パンフレットの「◎○○○」「〇○○○」形式の小見出しブロックです。
	セクション内で複数の特長を並べるときに使います。

	記号は文字ではなくCSSの図形で描いています。
	content:"◎" のように文字を使うと、読み上げソフトが「二重丸」と読んでしまうためです。

	・既定は ◎（輪＋中心の点）
	・.blk_point_maru を足すと 〇（輪のみ）になります
	・見出しをリンクにすると自動で矢印が付きます
*/
.blk_point {
	margin-top: 30px;
	padding: 25px 28px;
	background: #fff;
	border: 1px solid #e3dacb;
	border-radius: 5px;
}
.blk_point_ttl {
	position: relative;
	margin-bottom: 16px;
	padding-left: 28px;
	color: #5c442e;
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.5;
}
/* 外側の輪 */
.blk_point_ttl:before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 16px;
	height: 16px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 2px solid #d49332;
	border-radius: 50%;
}
/* 中心の点（◎） */
.blk_point_ttl:after {
	content: "";
	position: absolute;
	top: 11px;
	left: 4px;
	width: 8px;
	height: 8px;
	background: #d49332;
	border-radius: 50%;
}
/* 〇（輪のみ）にする */
.blk_point_maru .blk_point_ttl:after {
	display: none;
}
/* 見出し自体をリンクにする場合 */
.blk_point_ttl a {
	color: #5c442e;
	text-decoration: none;
}
.blk_point_ttl a:after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: -2px 0 0 12px;
	vertical-align: middle;
	border-top: 2px solid #d49332;
	border-right: 2px solid #d49332;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.blk_point_ttl a:hover {
	color: #d49332;
	text-decoration: underline;
}

@media screen and (max-width: 680px) {
	.blk_point {
		margin-top: 22px;
		padding: 18px 16px;
	}
	.blk_point_ttl {
		margin-bottom: 12px;
		padding-left: 24px;
		font-size: 1.6rem;
	}
	.blk_point_ttl:before {
		top: 5px;
		width: 14px;
		height: 14px;
	}
	.blk_point_ttl:after {
		top: 9px;
		left: 4px;
		width: 6px;
		height: 6px;
	}
}


/* 12. 施設ページのリード（キャッチコピー＋施設名＋メイン写真）
============================================================================================================ */
/*
	施設パンフレット表紙の見せ方に合わせた、ページ冒頭のブロックです。
	明朝体・広い字間のキャッチコピーの下に施設名、その下にメイン写真を置きます。
	明朝体は既存の .mincho クラスを HTML 側で併記してください。
*/
.blk_mv {
	margin-bottom: 55px;
	text-align: center;
}
.blk_mv_catch {
	color: #4a3a2a;
	font-size: 34px;
	font-size: 3.4rem;
	font-weight: bold;
	letter-spacing: .16em;
	line-height: 1.6;
	/* letter-spacing で右側に余る分を打ち消し、見た目の中央を保つ */
	text-indent: .16em;
}
/* 施設名。左右に細い罫線を添える */
.blk_mv_name {
	position: relative;
	display: inline-block;
	margin-top: 16px;
	padding: 0 32px;
	color: #7b6a55;
	font-size: 15px;
	font-size: 1.5rem;
	letter-spacing: .14em;
	line-height: 1.6;
}
.blk_mv_name:before,
.blk_mv_name:after {
	content: "";
	position: absolute;
	top: 50%;
	width: 20px;
	border-top: 1px solid #c9b189;
}
.blk_mv_name:before {
	left: 0;
}
.blk_mv_name:after {
	right: 0;
}
.blk_mv_img {
	margin-top: 30px;
}
.blk_mv_img img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 680px) {
	.blk_mv {
		margin-bottom: 35px;
	}
	.blk_mv_catch {
		font-size: 2.2rem;
		letter-spacing: .1em;
		text-indent: .1em;
	}
	.blk_mv_name {
		margin-top: 12px;
		padding: 0 24px;
		font-size: 1.3rem;
	}
	.blk_mv_name:before,
	.blk_mv_name:after {
		width: 14px;
	}
	.blk_mv_img {
		margin-top: 20px;
	}
}


/* 13. ページ全体の微調整（.contents に .blk_page を付けたときだけ効きます）
============================================================================================================ */
/* 明朝の大見出しをパンフレットの字間に寄せる。
   .blk_page 配下に限定しているため、この class を付けていない既存ページには影響しません */
.blk_page .title_l {
	letter-spacing: .06em;
}
/* 見出し直後の本文が詰まって見えないように */
.blk_page .title_l + .blk_txt {
	margin-top: 5px;
}


/* 14. 補助
============================================================================================================ */
/* 中身のないパーツ集の見本枠。実ページでは使いません */
.blk_demo_label {
	margin: 45px 0 12px;
	padding: 4px 10px;
	background: #5c442e;
	color: #fff;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing: .05em;
	line-height: 1.6;
}
.blk_demo_note {
	margin-bottom: 15px;
	color: #857a6c;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.7;
}
