@charset "utf-8";
/* ===================================================================
CSS information
 style info :独自CSS
 製作者  :takagi
=================================================================== */

/*
 * 要素の設定
 * ------------------------------------ */

body {
	/* 背景が切れるのを回避 */
	/*  min-width: ***px; コンテンツの幅を指定 */
	overflow: hidden;
}

/* ヘディングタグ */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: bold;
	color: #6a3906;
}
h1,
h2,
h3,
h4,
h5 {
	font-size: 2.1rem;
}
h6 {
	font-size: 1.8rem;
}
h1 {
	padding: 12px 10px;
	border-color: #ffb6b6;
	border-style: solid;
	border-width: 0 0 0 10px;
}
h2 {
	color: #ffffff;
	background-image: url(../images/green_backgrouond_img.png);
	padding: 15px 20px;
	border-radius: 35px;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
}
h3 {
	font-weight: normal;
}
h3::after {
	content: "";
	background-image: url(../images/green_backgrouond_img.png);
	display: block;
	margin-top: 5px;
	height: 3px;
}
h4 {
	position: relative;
	padding-left: 30px;
}
h4::before {
	content: url(../images/h4decoration.png);
	padding-right: 5px;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

section {
}
main {
}

/* アンカータグの設定 */
a {
	color: #e9528e;
}
a:link {
	color: #e9528e;
}
a:visited {
	color: #e9528e;
}
a:active {
	color: #e9528e;
}
a:focus {
	text-decoration: none;
}
a:hover {
	color: #ffb6b6;
}
/* ----------- 色メモ -----------
///文字色
#6a3906 濃茶
#e9528e 濃いピンク
///ベタ塗り
#ffb6b6 薄ピンク
#7ac943 薄いグリーン
#b28850 濃い茶色
#c7b299 濃い目の茶色
#ead9c3 薄めの茶色
#c9c9c9 薄めのグレー
#fafafa 白に近いグレー
///アイコンの色
#ff7bac 保険
#f7931e 実費
#29abe2 最先端
#39b54a 無料
#a67c52 予約
  ----------------------------- */

/*
 * グローバルなクラスの設定
 * ------------------------------------ */

/* ------ クリア設定 ------ */

/* フロートしているコンテンツを内包しているボックス要素に適応 */
.clear_wrap::after {
	content: "";
	display: block;
	clear: both;
}
/* ------ 横センタリング用 ------ */
.side_center {
	text-align: center;
}

/* ------ 縦センタリング用 ------ */

/* センタリングさせたいbox要素の親に適応 */
.leng_center_p {
	display: table;
	/* 個別に高さを設定する */
}
/* センタリングしたいbox要素に適応 */
.leng_center {
	display: table-cell;
	vertical-align: middle;
}

/* ------ 非表示 ------ */
.display_none {
	display: none;
}

/* ------ ホバーエリア設定 ------ */

/* ホバーエリア内の文字の設定 */
.hover_area a {
	color: #3a3a3a;
	text-decoration: none;
}

/* ホバーアクションの設定(透過) */
.hover_area:hover {
	filter: alpha(opacity=60);
	-khtml-opacity: 0.6;
	-moz-opacity: 0.6;
	opacity: 0.6;
}
/* ホバーエフェクトをじわっとする */
.hover_area,
.hover_area::before,
.hover_area::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

/* ホバー内のアンカータグをエリアサイズのbox要素に */
.hover_area a {
	width: 100%;
	height: 100%;
	display: block;
}

/* ------ フォームデザイン ------ */

form input,
form textarea,
form select {
	/* basic setting */
	border: 0;
	padding: 10px;
	font-size: 1.3em;
	font-family: Arial, sans-serif;
	border: solid 1px #ccc;
	margin: 0 0 20px;
	/* 角丸 */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	/* シャドー内側 */
	-moz-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
	box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
}
/* フォーカス時の色 */
form textarea:focus,
form input:focus {
	border: solid 1px #eea34a;
}

/* ------ ボックスシャドウ ------ */
.box_shadow {
	-moz-box-shadow: 0 0 10px #cbcbcb;
	-webkit-box-shadow: 0 0 10px #cbcbcb;
	box-shadow: 0 0 10px #cbcbcb;
}
/* ------ 角丸ボックス ------ */
.round_box {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

/* ------ 電話番号ボタンデザイン ------ */
.btn_telephone {
	font-size: 3rem;
	font-weight: bold;
	padding: 2px;
	width: 260px;
	text-align: center;
	border: solid 1px #e9528e;
	line-height: 3rem;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}
.btn_telephone a:hover {
	color: #e9528e;
}
.btn_telephone .icon-telphone:before {
	padding-right: 5px;
	font-size: 2.6rem;
}

/* ------ Instagram ボタンデザイン ------ */
.container .btn_instagram,
.container .bana_instagram {
	background: linear-gradient(
		45deg,
		rgba(254, 212, 117, 1) 0%,
		rgba(229, 61, 93, 1) 50%,
		rgba(194, 49, 134, 1) 70%,
		rgba(156, 56, 187, 1) 100%
	);
	color: #fff;
	text-align: center;
}
.container .btn_instagram {
	border-radius: 5px;
	display: inline-block;
	transition: all 0.2s linear;
	padding: 0 25px;
}

/* ------ Instagram バナー ------ */
.bana_instagram {
	border-radius: 10px;
	padding: 30px 0;
	width: 340px; /* Facebookウィジェットに合わせてる */
	margin-bottom: 2rem;
	font-size: 2rem;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-family: "Pacifico", cursive;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bana_instagram:hover {
	cursor: pointer;
}
.bana_instagram .icon_instagram {
	width: 40px;
	margin: 0 8px;
}
.bana_instagram .text {
	margin: 0 8px;
}

/* ------ facebookボタン ------ */
a.custom-facebook-btn {
	display: block;
	background: #1877f2;
	border: medium none;
	border-radius: 5px;
	color: #ffffff;
	padding: 0 25px;
}
.custom-facebook-btn:hover {
	background: #4267b2;
}

/* content link ボタン */

.btn-content-link {
	padding: 0;
	width: 100%;
	display: flex;
	align-items: center;
	border: 3px solid #B28850;
	border-radius: 5px;
	background-color: white;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
}

.btn-icon-box {
	background-color: #B28850;
	height: 85px;
	width: 85px;
	display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
  	color: #B28850;
}

.btn-text {
	width: calc(100% - 80px);
	text-align: center;
	color: #B28850;
}

/* ------ グリーンのアンダーラインのリストと強みボタンのデザイン ------ */
.advan_info_box_height {
	height: 100%;
}
.inner_box {
	margin-bottom: 20px;
}
.link_list_box,
.advan_link_box,
.policy_link_box {
	padding: 15px;
	border: solid 1px #ccc;
}
.advan_link_box,
.policy_link_box {
	margin-bottom: 20px;
}
.link_list_box dt,
.advan_link_box dt,
.link_list_box .link_list_title,
.advan_link_box .link_list_title {
	font-size: 2.1rem;
	font-weight: normal;
	text-align: center;
	border-bottom: solid 3px;
	margin-bottom: 10px;
}
h2.link_list_title {
	margin-top: 0;
	color: #6a3906;
	background: none;
	padding: 0;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	line-height: 30px;
}
.link_list_box dd,
.link_list_box .link_list_li {
	margin: 5px 0;
	padding: 3px 0;
	border-bottom: dashed 1px #b28850;
}
.link_list_box dd::before,
.link_list_box .link_list_li::before {
	content: "»";
	float: left;
	padding-right: 5px;
}
.advan_link_box.btn_style dl {
	margin-bottom: 0;
}
.advan_link_box dd {
	text-align: center;
}
.advan_link_box ul,
.advan_link_box li {
	display: inline-block;
}
.advan_link_box li {
	padding: 2px 5px 0;
	margin: 0 5px;
	color: #ffffff;
}
/* アイコンの色 */
.advan_link_box .reservation,
.link_list_box .reservation {
	background-color: #a67c52;
}
.advan_link_box .insurance,
.link_list_box .insurance {
	background-color: #ff7bac;
}
.advan_link_box .actual_cost,
.link_list_box .actual_cost {
	background-color: #f7931e;
}
.advan_link_box .machine,
.link_list_box .machine {
	background-color: #29abe2;
}
.advan_link_box .free_service,
.link_list_box .free_service {
	background-color: #39b54a;
}
.advan_link_box .care_insurance,
.link_list_box .care_insurance {
	background-color: #7ac943;
}
/* ------ アーカイブ ------ */

/* -- カード・リスト 共通デザイン -- */
.post_info .post_cat {
	font-size: 1.4rem;
	color: #fff;
	padding: 0 10px;
	margin-left: 5px;
	line-height: 2.6rem;
}
/*/// カテゴリーの色 ///*/
.post_cat.info {
	background-color: #ff7bac;
} /*お知らせ※廃止*/
.post_cat.lol {
	background-color: #ff7bac;
} /*爆笑*/
.post_cat.s_blog {
	background-color: #ff931e;
} /*スタッフブログ*/
.post_cat.m_report {
	background-color: #29abe2;
} /*施術レポート*/
.post_cat.seminar {
	background-color: #39b54a;
} /*無料セミナー※廃止*/
.post_cat.y_condition {
	background-color: #39b54a;
} /*あなたの症状は？※廃止*/
.post_cat.action {
	background-color: #a67c52;
} /*院外活動*/
.post_cat.ayumi {
	background-color: #7ac943;
} /*デイサービス歩*/

/* -- リストデザイン -- */
.lists_style section {
	padding: 10px 0;
	border-bottom: dashed 1px #b28850;
}
.lists_style img {
	float: left;
	margin: 0 10px 0 0;
}
/*
.lists_style h1 {
    border: none;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    line-height: 2.4rem;
    min-height: 54px;
    color: #333;
    font-weight: normal;
}
*/
.lists_style h2,
.lists_style h3 {
	/* h1が引っかかる問題 */
	border: none;
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
	line-height: 2.4rem;
	min-height: 54px;
	color: #333;
	font-weight: normal;
	border-radius: inherit;
	background-image: url();
}
.lists_style h3 {
	height: 75px;
	position: static;
	overflow: hidden;
}
.lists_style h3::after {
	content: none;
}
.post_type {
	font-size: 1.2rem;
	color: #666666;
	position: absolute;
	right: 15px;
	bottom: 10px;
	background-color: #fff;
	line-height: 1.2rem;
}
.lists_style .post_info {
	display: inline-block;
	float: right;
}
.lists_style .post_info .post_date,
.lists_style .post_info .post_cat {
	display: inline-block;
}
.lists_style .post_info .post_date {
	font-size: 1rem;
}
/* - リスト２ */
.lists_style.lists_2line h2 {
	height: 4.8rem;
}

/* -- カードデザイン -- */
li.card_style {
	margin-bottom: 30px;
}
/*.card_style h1
{
    border: none;
    padding: 0;
    margin: 0;
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 2.8rem;
    overflow: hidden;
    height: 85px;
    color: #333;
}
*/
.card_style h2 /* h1が引っかかる問題 */ {
	border: none;
	padding: 0;
	margin: 0;
	font-weight: normal;
	font-size: 1.6rem;
	line-height: 2.8rem;
	overflow: hidden;
	height: 85px;
	color: #333;
	border-radius: inherit;
	background-image: none;
}
.card_style .news_caption {
	padding: 10px;
}
.card_style .post_info .post_cat {
	float: right;
}
.card_style .post_info .post_date {
	font-size: 1rem;
}

/* ------ もっと見るボタン ------ */
.more_btn {
	text-align: center;
	padding: 5px;
	border: solid 1px #e9528e;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	width: 290px;
	margin: 30px auto;
	font-weight: bold;
}
.more_btn a {
	color: #e9528e;
}

/* ------ SP用カテゴリー一覧用デザイン ------ */
ul.cat_lists_sp li {
	float: left;
	width: 50%;
	text-align: center;
}
ul.cat_lists_sp li {
	border-bottom: solid 1px #b28850;
	border-right: solid 1px #b28850;
}
ul.cat_lists_sp li:nth-child(odd) {
	border-left: solid 1px #b28850;
}
ul.cat_lists_sp li:nth-child(1),
ul.cat_lists_sp li:nth-child(2) {
	border-top: solid 1px #b28850;
}
ul.cat_lists_sp li a {
	color: #6a3906;
	font-weight: bold;
	line-height: 4rem;
}
/* ------ 画像の表示関係 ------ */
.img_medium_box {
	margin: 15px 0;
}
.img_medium_box img {
	width: 100%;
	height: 100%;
}

/*
 * クリア関係
 * ====================================== */

/* ------ bxslider クリア ------ */
.bx-wrapper .bx-viewport {
	border: none;
	left: 0;
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	bottom: -40px;
}
#slider .bx-viewport {
	height: 100% !important;
}

/* ------ Bootstrap クリア ------ */
.navbar-default {
	background-color: #ffffff;
	border: none;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
	/* ちょっと力技 */
	border: none;
}
.navbar-default .navbar-toggle:hover {
	background-color: #ffffff;
}
.navbar-default .navbar-toggle {
	border: none;
}
.navbar-toggle {
	padding: 0;
	margin: 0;
	position: absolute;
	bottom: 3px;
	right: 0;
}
.navbar {
	margin-bottom: 0;
}
/* タブ関係 */
#top_news .nav-tabs > li {
	margin-bottom: -2px;
}
#top_news .nav > li > a {
	padding: 10px 10px;
}
#top_news .nav-tabs > li > a {
	border: solid 1px #a67c52;
	font-weight: bold;
	color: #c7b299;
	border-radius: 10px 10px 0 0;
	border-bottom: none;
}
#top_news .nav-tabs > li {
	margin-left: 1px;
}
#top_news .nav-tabs > li.active > a,
#top_news .nav-tabs > li.active > a:focus,
#top_news .nav-tabs > li.active > a:hover {
	color: #fff;
	background-color: #a67c52;
	border-bottom-color: #a67c52;
	border-bottom: none;
}
#top_news .nav-tabs {
	border-bottom: 2px solid #a67c52;
}
#top_news .nav-tabs {
	margin-bottom: 20px;
}
#top_news .nav-tabs > li > a:hover {
	background-color: #fff;
}
/* --- ページャーのキャンセル --- */
.pager li > a,
.pager li > span {
	padding: 0;
	border: none;
	border-radius: 0;
	background-color: transparent;
}
.pager li > a:focus,
.pager li > a:hover {
	background-color: transparent;
}

/*
 * Layout
 * /////////////////////////////////////////////////////////////////// */

/*
 * header
 * ====================================== */
header #top_belt,
header #top_belt h1 {
	background-color: #ffb6b6;
	color: #ffffff;
	font-weight: bold;
	min-height: 10px;
	line-height: 2.8rem;
	padding: 0;
	margin: 0;
	border: none;
}
header #header_cont {
	padding: 10px 0;
}
header #header_cont .logo_top_l {
	width: 100%;
}
header nav .navbar-header button {
	color: #996c33;
	font-weight: bold;
}
.wp_site_description {
	margin: 0;
}
nav .navbar-header {
	position: relative;
}
nav div#gnavi li {
	margin: 10px 0;
}
nav div#gnavi li::before {
	content: "»";
	float: left;
}
nav div#gnavi li a {
	margin: 0 15px;
}

/* ------ PC用メニュー ------ */
#pc_menu_area .btn_telephone {
	float: right;
}
div#pc_menu_area ul {
	float: right;
}
div#pc_menu_area li {
	float: left;
	font-weight: bold;
	font-size: 1.5rem;
	margin: 5px 4px;
	border-bottom: dotted 2px #7ac943;
	line-height: 1.8rem;
}
div#pc_menu_area li a::before {
	content: "»";
	float: left;
}
div#pc_menu_area li a {
	color: #6a3906;
}

/* ------ パンくずリスト ------ */

#path_list {
	margin-bottom: 15px;
	border-bottom: solid 1px #b28850;
	color: #6a3906;
}
div#path_list .top_page .icon-home {
	padding-right: 5px;
}
#path_list li {
	display: inline-block;
}
#path_list li.child_path::before {
	content: "»";
	display: inline-block;
	padding: 0 5px;
}

/* ------ 診療時間表・ショックマスター治療料金表 ------ */

.clinic_info_open_time {
	width: 100%;
	color: #6a3906;
	background-color: #fafafa;
}
.clinic_info_open_time tr,
.clinic_info_open_time th.week {
	text-align: center;
	padding: 0 5px;
}
.clinic_info_open_time td {
	vertical-align: text-top;
}

.clinic_info_open_time .first_column {
	padding: 0 10px;
}
.clinic_info_open_time .top_row {
	background-color: #c7b299;
}
.clinic_info_open_time .time_cell {
	background-color: #ead9c3;
}

/* お問い合わせ先（主にショートコード） */
.contact_box .logo_bottom {
	max-width: 100%;
	height: auto;
}
.contact_box .logo_bottom,
.contact_box .telephone_area {
	margin: 10px 0;
}

/* ------ ページャー ------ */
.pager li {
	display: inline-block;
	background-color: #ffffff;
	border: 1px solid #ff7bac;
	border-radius: 0;
	width: 36px;
	line-height: 36px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	margin: 5px 3px;
}
.pager li a {
	color: #e9528e;
	font-weight: bold;
	width: 100%;
	height: 100%;
	display: block;
}
.pager li a:hover {
	color: #ffffff;
}
.pager li.here_now {
	color: #ffffff;
	font-weight: bold;
}
.pager li.here_now,
.pager li:hover {
	background-color: #ff7bac;
}
.pager li.no_link {
	color: #dddddd;
	border-color: #c9c9c9;
}
.pager li.no_link:hover {
	background-color: #fff;
}
/* ホバーエフェクトをじわっとさせる */
.pager li,
.pager li::before,
.pager li::after,
.pager li a,
.pager li a::before,
.pager li a::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.pager span.ommited_btn {
	color: #ff7bac;
	font-size: 20px;
	padding: 5px;
	line-height: 36px;
}
/* ------ SP用ページャー ------ */
.pager .pager_sp li {
	width: 135px;
	line-height: 40px;
	margin: 5px 2px;
}
/*
 * footer
 * ====================================== */
footer {
	color: #6a3906;
}

footer .btn_page_top {
	border-bottom: solid 1px #b28850;
	text-align: right;
	font-weight: bold;
}
footer .btn_page_top a,
footer .btn_page_top a:link,
footer .btn_page_top a:visited,
footer .footer_link a,
footer .footer_link a:link,
footer .footer_link a:visited {
	color: #6a3906;
}
footer #clinic_lead {
	padding-top: 15px;
}
footer #clinic_lead .footer_link {
	border-top: solid 1px #b28850;
	padding-top: 5px;
	margin-top: 5px;
}
footer .footer_link li::before {
	content: "»";
	float: left;
	padding-right: 5px;
}
footer #clinic_info .clinic_info_open_time {
	margin: 20px 0;
}

footer #clinic_lead .logo_bottom {
	max-width: 100%;
}
footer .address,
footer .telephone_area {
	padding: 5px 0;
}
#footer_facebook {
	margin-top: 20px;
}

#copylight {
	background-color: #ffb6b6;
	color: #ffffff;
	text-align: center;
	font-size: 1.4rem;
}

#footer_inner .sns_area {
	padding: 10px 0;
}
#footer_inner .sns_area .facebook_btn {
	float: left;
	margin-right: 15px;
}
#footer_inner .sns_area .facebook_btn iframe {
	height: 28px;
}
/*
 * サイドバー
 * ====================================== */
#side_area {
	margin: 20px 0 0 0;
}
#side_menu {
	text-align: center;
	padding: 0 20px;
	margin-bottom: 30px;
}
#side_menu::before {
	content: "";
	display: block;
	background-color: #ffb6b6;
	height: 5px;
}
#side_menu h2 {
	background: none;
	color: #6a3906;
	font-size: 2rem;
	font-weight: normal;
	margin: 0;
	padding: 25px 0;
}
#side_menu ul {
	padding-bottom: 20px;
}
#side_menu li {
	font-size: 1.8rem;
	padding: 5px 0;
}
.service_cat_wrap,
.service_cat_before {
	display: none;
}
#side_advan dl,
#side_advan > div {
	padding: 20px;
}
#side_advan a,
.link_list_box dd::before {
	color: #6a3906;
}
#side_advan .link_list_box dt,
#side_advan .link_list_box .link_list_title {
	color: #6a3906;
	border-color: #7ac943;
}
/*
 * home
 * ====================================== */

/* ------ スライダー ------ */
li.img_behind {
	display: none;
}
li.bx-clone {
	display: list-item;
}

/* ------ スライダー脇インフォメーションボタン ------ */
div#about_info .about_info_lits > li {
	margin-bottom: 15px;
	position: relative;
}
div#about_info li img {
	width: 100%;
	height: auto;
}
div#about_info li img.icon_time {
	width: 32.88%;
	border-radius: 5px 0 0 5px;
}
div#about_info .about_info_lits a.info_time {
	display: flex;
    align-items: center;
}

div#about_info .about_info_lits > li ul.information_text {
	text-align: center;
	font-weight: bold;
	line-height: 2.3rem;
	padding: 5px;
}
div#about_info .open_time {
	color: #2aa738;
	font-size: 1.8rem;
}
div#about_info .open_add_text {
	color: #603813;
	font-size: 1.2rem;
	line-height: 1.5rem;
}
.h1style {
	/* h1問題 */
	padding: 12px 10px;
	border-color: #ffb6b6;
	border-style: solid;
	border-width: 0 0 0 10px;
	color: #6a3906;
	border-radius: inherit;
	background-image: url();
}
/* ------ イレギュラーメモ ------ */
#home .irregular_memo {
	margin-top: 0px;
	border-top: 0px;
	border-top-right-radius: 0px;
	-webkit-border-top-right-radius: 0px;
	-moz-border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	-webkit-border-top-left-radius: 0px;
	-moz-border-top-left-radius: 0px;
}
.irregular_memo_title {
	text-align: center;
	font-size: 2rem;
	line-height: 3.5rem;
	font-weight: bold;
	color: #ffffff;
	background-color: #ffb6b6;
	border-bottom-right-radius: 0px;
	-webkit-border-bottom-right-radius: 0px;
	-moz-border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-bottom-left-radius: 0px;
}

/* ------ 当院の特徴・強み ------ */
#campaign {
	margin: 20px 0;
}

#advantage_info,
#advantage_info a {
	color: #6a3906;
}
#advantage_info .link_list_box dt,
#advantage_info .link_list_box .link_list_title {
	border-color: #7ac943;
}
#advantage_info #clinic_policy_link dd,
#advantage_info #clinic_policy_link .link_list_li {
	line-height: 2.4rem;
}

#advantage_info .advan_info_link dt {
	border-color: #b28850;
}
.link_list_li {
	line-height: 1.42857143;
}
#advantage_info .advantage_pc_list dd ul,
#advantage_info .advantage_pc_list dd li,
#advantage_info .advantage_pc_list .link_list_li ul,
#advantage_info .advantage_pc_list .link_list_li li {
	display: inline-block;
}
#advantage_info .advantage_pc_list dd li,
#advantage_info .advantage_pc_list .link_list_li li {
	margin: 0 2px;
	padding: 2px 2px 0;
	color: #ffffff;
}
#advantage_info .advantage_pc_list dd,
#advantage_info .advantage_pc_list .link_list_li {
	width: 49%;
	display: inline-block;
}
#advantage_info .advantage_pc_list dd:nth-child(even),
#advantage_info .advantage_pc_list .link_list_li:nth-child(odd) {
	margin-right: 1%;
}
#advantage_info .advantage_pc_list.link_list_box dd,
#advantage_info .advantage_pc_list.link_list_box .link_list_li {
	margin-top: 0;
}

/* ------ おすすめ記事の見出し ------ */
#recommended_link_lists {
	border: none;
	color: #a67c52;
	margin-top: 0;
	border-bottom: solid 2px #a67c52;
	padding: 0;
	line-height: 4.1rem;
	font-size: 1.7rem;
	font-weight: bold;
}

/*
 * about
 * ====================================== */
#tmpl_about .clinic_info_wrap {
	margin-top: 15px;
	margin-bottom: 15px;
}
#tmpl_about .clinic_info_wrap strong {
	text-decoration: underline;
}
.irregular_memo {
	padding: 20px;
	border: solid 3px #ffb6b6;
	text-align: center;
	color: #e9528e;
	font-size: 2rem;
	line-height: 3.5rem;
	margin: 30px 0;
}
.row-eq-height {
	display: flex;
	flex-wrap: wrap;
}
.inner {
	display: flex;
}
#tmpl_about .advan_link_box {
	margin-top: 20px;
	margin-bottom: 10px;
	width: 100%;
}

#tmpl_about .advan_link_box dt {
	border-color: #b28850;
	color: #6a3906;
}
#tmpl_about .clinic_time_info {
	color: #2aa738;
}
/*
 * policy
 * ====================================== */
#tmpl_policy .policy {
	text-align: center;
}
#tmpl_policy .policy .policy_title {
	font-size: 3.2rem;
	font-weight: bold;
	color: #e9528e;
	margin: 50px 0 30px;
}
#tmpl_policy .policy .policy_text {
	font-size: 2.1rem;
	line-height: 3.7rem;
	color: #6a3906;
	margin: 30px;
}
#tmpl_policy .policy .policy_sign {
	color: #6a3906;
	margin: 0 0 50px;
}
#machine_info .machine_info_box {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border: solid 1px #ccc;
}
#machine_info .machine_info_box .row {
	margin-right: 0; /* bootstrap のクリア */
	margin-left: 0; /* bootstrap のクリア */
}
#machine_info .machine_info_box .machine_info_box_inner {
	margin-top: 20px;
}

#machine_info .machine_info_box a {
	position: relative;
	display: block;
}
#machine_info .machine_info_box dl {
	margin-bottom: 0; /*bootstrap のクリア */
}
#machine_info .machine_info_box dd,
#machine_info .machine_info_box dt {
	color: #6a3906;
}
#machine_info .machine_info_box p {
	color: #333333;
	margin: 0;
	padding-top: 20px;
}
#machine_info .machine_info_box dd {
	border: none;
	font-weight: bold;
	font-size: 1.6rem;
	padding-top: 12px;
	padding-bottom: 20px;
	line-height: 170%;
}
#machine_info .machine_info_box dd::before {
	content: none;
}
#machine_info .machine_info_box dt {
	font-weight: normal;
	border-bottom: solid 3px #ffb6b6;
	font-size: 1.8rem;
	padding: 20px 0 4px 0;
}
#machine_info .machine_info_box span {
	position: absolute;
	bottom: 0;
	color: #6a3906;
	line-height: 100%;
	width: 100%;
	text-align: center;
	display: block;
	padding-right: 15px;
	padding-left: 15px;
}
#machine_info .machine_info_box a[aria-expanded^="true"] span {
	-ms-transform: rotateZ(180deg);
	-webkit-transform: rotateZ(180deg);
	transform: rotateZ(180deg);
}

#tmpl_policy .link_list_box dt {
	color: #6a3906;
	border-color: #7ac943;
}
.machine a,
.machine .link_list_box dd::before {
	color: #6a3906;
}
.machine_link_box {
	margin-top: 15px;
}

/*
 * Staff
 * ====================================== */
.profile_img {
	text-align: center;
}
.profile_img img {
	max-width: 100%;
	height: auto;
}
.staff_img {
	text-align: center;
	margin-top: 50px;
}
.staff_img img {
	max-width: 100%;
	height: auto;
}

/*
 * faq
 * ====================================== */
.highlight_text {
	font-weight: bold;
	color: #6a3906;
	font-size: 2.1rem;
	display: block;
}
.highlight_text + p {
	margin-top: 0;
}
#tmpl_faq .contact_box {
	padding-bottom: 15px;
}
.h3style {
	margin-top: 35px;
	margin-bottom: 20px;
	font-weight: normal;
	font-size: 2.1rem;
	color: #6a3906;
}
.h3style::after {
	content: "";
	background-image: url(../images/green_backgrouond_img.png);
	display: block;
	margin-top: 5px;
	height: 3px;
}

/*
 * single
 * ====================================== */
.post_insert_area img {
	max-width: 100%;
	height: auto;
}
.post_insert_area iframe {
	max-width: 100%;
}
#post_content dl,
#post_content ol {
	margin: 0;
	padding: 0;
}
/* インデントを左にはみ出ないようにする*/
#post_content ul li,
#post_content ol li {
	padding-left: 2.5rem;
	text-indent: -2rem;
	list-style-position: inside;
}
#single h1 .post_title_area,
#single h1 .sub_title_area {
	display: block;
}
.sub_title_area {
	font-size: 1rem;
	padding-top: 10px;
}
/*/// カテゴリーの色 ///*/
h1 .post_category_info.info {
	color: #ff7bac;
} /*お知らせ*/
h1 .post_category_info.s_blog {
	color: #ff931e;
} /*スタッフブログ*/
h1 .post_category_info.m_report {
	color: #29abe2;
} /*施術レポート*/
h1 .post_category_info.seminar {
	color: #39b54a;
} /*無料セミナー*/
h1 .post_category_info.action {
	color: #a67c52;
} /*院外活動*/
h1 .post_category_info.ayumi {
	color: #7ac943;
} /*デイサービス歩*/

#single article {
	margin-top: 15px;
	margin-bottom: 15px;
}
.eye_catch_area {
	margin: 15px 0;
	text-align: center;
}

/*
 * 当院の強み single-advan
 * ====================================== */
.advan_contact_box.link_list_box {
	color: #6a3906;
	text-align: center;
}
.advan_contact_box dt {
	border-color: #7ac943;
}
.advan_contact_box.link_list_box dd::before {
	content: "";
}
.contact_content_box {
	padding-top: 20px;
}
.contact_content_box img {
	max-width: 260px;
	height: auto;
}
.link_list_box .contact_content_box dd {
	border: none;
}
.advan_contact_box .telephone_area {
	margin-top: 10px;
}
.advan_contact_box .btn_telephone {
	margin: auto;
}

/*
 * サイトマップ
 * ====================================== */
#tmpl_sitemap main ul {
	margin: 20px;
}
#tmpl_sitemap main li::before {
	content: "»";
	display: inline-block;
	padding-right: 5px;
}

/*
 * Media queries
 * /////////////////////////////////////////////////////////////////// */

nav .navbar-header {
	padding-bottom: 10px;
	border-bottom: solid 1px #b28850;
}

@media screen and (max-width: 480px) {
	/* デフォルト：479px以下用（スマートフォン用）の記述 */
	nav .logo_top_s {
		width: 70%;
	}
	/* ヘディング */
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-size: 1.6rem;
		line-height: 2.4rem;
	}
	/* スライダー */
	div#slider {
		padding: 0;
	}
	.bx-controls-direction {
		display: none;
	}
	.bx-wrapper {
		margin: 0 auto 45px;
	}
	/* スライダー脇インフォボタン */
	div#about_info .about_info_lits > li ul.information_text {
		width: 67%;
		padding: 10px 0;
	}
	div#about_info .open_time {
		font-size: 1.6rem;
		line-height: 2rem;
	}
	div#about_info .open_add_text {
		font-size: 1.2rem;
		line-height: 1.6rem;
	}
	#about_info {
		margin-bottom: 30px;
	}
	/* index.php キャンペーンエリア */
	#campaign {
		margin-bottom: 0px;
	}
	/* footer */
	footer .btn_page_top {
		text-align: center;
		border: none;
		background-color: #ffb6b6;
		line-height: 50px;
	}
	footer .btn_page_top a,
	footer .btn_page_top a:link,
	footer .btn_page_top a:visited {
		color: #ffffff;
	}
	/* policy.php */
	#tmpl_policy .policy .policy_title {
		font-size: 2.4rem;
		margin: 30px 0 15px;
	}
	#tmpl_policy .policy .policy_text {
		font-size: 1.6rem;
		line-height: 2.8rem;
		margin: 20px 0;
	}
	#tmpl_policy .policy .policy_sign {
		margin-bottom: 30px;
	}
	/* faq */
	.highlight_text {
		font-size: 1.6rem;
	}
	/* single タイトル */
	.sub_title_area {
		padding-top: 0;
	}
	/* single おすすめ記事 */
	.lists_style.lists_2line h2 {
		height: auto;
	}
	/* 当院の強み */
	.advan_contact_box dt {
		font-weight: bold;
		font-size: 1.6rem;
	}
}

@media screen and (min-width: 480px) {
	/* 480px以上用（タブレット／スマートフォン用）の記述 */

	h2,
	h3,
	h4,
	h5 {
		margin-top: 35px;
		margin-bottom: 20px;
	}

	nav .logo_top_s {
		width: 30%;
	}
	nav .navbar-header {
	}

	/* スライダー脇インフォボタン */
	div#about_info .about_info_lits > li ul.information_text {
		width: 67%;
		padding: 5px 0;
	}
	div#about_info .open_time {
		font-size: 2.8rem;
		line-height: 3.6rem;
	}
	div#about_info .open_add_text {
		font-size: 1.6rem;
		line-height: 2.4rem;
	}

	/* single タイトル */
	.sub_title_area {
		font-size: 1.2rem;
	}
}
@media screen and (min-width: 768px) {
	/* 768px以上用（タブレット用）の記述 */
	/* ヘディング */
	h1 {
		border-width: 0 0 0 15px;
		padding: 27px 10px;
	}
	nav .logo_top_s {
		width: 30%;
	}
	header #top_belt,
	header #top_belt h1 {
		font-size: 1.2rem;
	}
	.navbar-toggle {
		display: block; /* bootstrap のクリア */
	}
	.navbar-collapse.collapse {
		display: none !important; /* bootstrap のクリア */
	}
	.navbar-collapse.collapse.in {
		display: block !important; /* bootstrap のクリア */
	}
	.navbar-header {
		float: none; /* bootstrap のクリア */
	}
	nav .navbar-header {
		text-align: center;
		width: 100%;
	}
	div#about_info .about_info_lits > li {
		margin-bottom: 19px;
	}
	/* スライダー脇インフォボタン */
	div#about_info .about_info_lits > li ul.information_text {
		width: auto;
	}
	div#about_info .open_time {
		font-size: 1.4rem;
		line-height: 1.6rem;
	}
	div#about_info .open_add_text {
		font-size: 1rem;
		line-height: 1rem;
	}
	/* アーカイブリストの画像の高さを固定 */
	#news_area li section img,
	#news_arc li section img {
		height: 146px;
	}
	/* 当院の強み */
	.contact_content_box dd {
		margin: 20px;
	}
	.advan_contact_box.link_list_box {
		padding: 30px;
		margin-top: 10px;
	}
	.kata_machine .inner_head .title {
		font-size: 2.1rem;
		line-height: 3.7rem;
	}
	#machine_info .machine_info_box dl {
		padding-left: 0;
	}
	#machine_info .machine_info_box dt,
	#machine_info .machine_info_box dd {
		text-align: left;
	}
	#machine_info .machine_info_box dt {
		font-size: 2.4rem;
		padding-top: 0;
	}
	#machine_info .machine_info_box dd {
		padding-bottom: 0;
	}
	#machine_info .machine_info_box span {
		text-align: right;
	}
	#machine_info .machine_info_box a[aria-expanded^="true"] span {
		text-align: left;
	}
	#machine_info .machine_info_box {
		padding-bottom: 15px;
	}
	#machine_info .machine_info_box .machine_info_box_inner {
		margin-top: 15px;
	}
}
@media print, screen and (min-width: 992px) {
	/* 990px以上用（PC用）の記述 */
	nav div#gnavi li a,
	nav div#gnavi li {
		margin: 0;
	}
	nav div#gnavi li::before {
		content: "";
	}
	header #top_belt,
	header #top_belt h1 {
		font-size: 1.6rem;
	}
	div#about_info .about_info_lits > li {
		margin-bottom: 22px;
	}
	header #header_cont {
		padding-bottom: 0;
	}
	/* スライダー脇インフォボタン */
	div#about_info .about_info_lits > li ul.information_text {
		padding: 0 14px;
	}
	div#about_info .open_time {
		font-size: 1.8rem;
		line-height: 2.3rem;
	}
	div#about_info .open_add_text {
		font-size: 1.1rem;
		line-height: 1.5rem;
	}
	/* アーカイブリストの画像の高さを固定 */
	#news_area li section img,
	#news_arc li section img {
		height: 141px;
	}
}
@media screen and (min-width: 1200px) {
	div#about_info .about_info_lits > li {
		margin-bottom: 26px;
	}
	/* スライダー脇インフォボタン */
	div#about_info .about_info_lits > li ul.information_text {
		width: 68%;
	}
	div#about_info .open_time {
		font-size: 2rem;
		line-height: 2.5rem;
	}
	div#about_info .open_add_text {
		font-size: 1.2rem;
		line-height: 1.5rem;
	}
	/* PC用メニュー */
	div#pc_menu_area li {
		font-size: 1.6rem;
		margin: 10px;
		line-height: 2.3rem;
	}
	/* アーカイブリストの画像の高さを固定 */
	#news_area li section img,
	#news_arc li section img {
		height: 174px;
	}
}

/*
 * フッターの下対策
 * ====================================== */
html {
	background-color: #ffb6b6; /*フッターの色を指定*/
}
body {
	background-color: #ffffff;
}
