@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	position: relative;
	height: 80px;
	padding: 15px;
	font-family: var(--font-sans);
	text-align: left;
}
/* タイトル */
#header h1.title {
	height: 100%;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
}
#header h1.title img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-width: none;
}
/* お問い合わせ */
#header .contact a {
	display: block;
}
#header .contact a img {
	vertical-align: middle;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#header {
		width: 900px;
		margin: 0 auto;
		height: 100px;
		padding: 0;
		position: relative;
		display: block;
		background: url(../img/bg_header.png?202002) no-repeat right 80px top 26px;
	}
	#header h1.title {
		position: absolute;
		top: 11px;
		left: -7px;
		z-index: 1;
	}
	#header h1.title a {
		filter:alpha(opacity=100);
		-moz-opacity: 1;
		opacity: 1;
	}
	#header .contact .mail {
		position: absolute;
		right: 0;
		top: 20px;
	}
	#header .contact .txt {
		position: absolute;
		right: 150px;
		bottom: 12px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn, #header .contact .tel a, #header .contact .mail a {
		background: linear-gradient(180deg, rgba(252, 148, 0, 1) 0%, rgba(253, 169, 51, 1) 14.72%, rgba(253, 169, 51, 1) 89.57%, rgba(252, 148, 0, 1) 100%);
	}
	/* ヘッダ */
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		padding: 0 46px 0 0;
		background: none;
		z-index: 9997;
	}
	#header h1.title {
		width: calc(100% - 138px);
		height: 100%;
		padding: 5px;
	}
	#header h1.title img {
		width: 200px;
		height: auto;
		position: relative;
		top: 14px;
	}
	/* お問い合わせ */
	#header .contact .mail {
		border-right: 1px solid #fff;
		border-left: 1px solid #fff;
	}
	#header .contact .tel a,
	#header .contact .mail a {
		width: 46px;
		height: 50px;
		padding: 0 10px;
		/* 縦方向中央揃え */
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#header .contact .txt,
	#header .contact .tel span,
	#header .contact .btn span {
		display: none;
	}
}
@media only screen and (max-width: 320px){
	#header h1.title img {
		width: 170px;
		top: 9px;
	}
}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu {
	position: relative;
	margin-left: auto;
	background : linear-gradient(180deg, rgba(252, 148, 0, 1) 0%, rgba(253, 169, 51, 1) 14.72%, rgba(253, 169, 51, 1) 89.57%, rgba(252, 148, 0, 1) 100%);
}
#menu::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -23px;
	width: 100%;
	height: 23px;
	background : linear-gradient(0deg, rgba(240, 217, 189, 0) 11.66%, rgba(240, 217, 189, 1) 100%);
}
#menu ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 900px;
	margin: 0 auto;
	padding: 10px 0;
}
#menu li {
	display: inline-block;
	border-left: 4px dotted #fff;
	padding: 0 5px;
}
#menu li:last-of-type {
	border-right: 4px dotted #fff;
}
#menu li a {
	display: block;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	text-decoration: none;
	font-family: var(--font-sans);
	border-radius: 10px;
	padding: 5px 13px 7px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	line-height: 1;
}
#menu li.on a,
#menu li a:hover {
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	background: #eb8300;
}
#menu ul li.dsp_tbs {
	display: none;
}
/*--------------------------------------------------
  ページタイトル
--------------------------------------------------*/
#page_title {
	overflow: hidden;
	position: relative;
	text-align: center;
}
#page_title p {
	text-align: center;
}
#sub_ttl img {
	width: 100%;
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#wrap {
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
#container {
	text-align: left;
	line-height: 1.8;
}
#container p {
	margin-bottom: 1em;
}
#container h3.sub {
	position: relative;
	margin-bottom: 40px;
	font-size: 23px;
	font-family: var(--font-sans);
	font-weight: 500;
	text-align: center;
}
#container h3.sub::after {
	display: block;
	width: 50px;
	height: 2px;
	margin: 15px auto 0;
	background: var(--color-primary);
	content: "";
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#wrap {
		min-width: 900px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#container {
		padding-top: 50px;
	}
	#container h3.sub {
		margin-bottom: 30px;
		font-size: 23px;
	}
	#main, #navi {
		clear: both;
		padding-bottom: 30px;
		padding-left: 15px;
		padding-right: 15px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#wrap, #footer {
		min-width: 320px;
	}
	#container {
		padding-top: 60px;
	}
	#container h3.sub {
		margin-bottom: 20px;
		font-size: 20px;
	}
}
/*--------------------------------------------------
  メイン
--------------------------------------------------*/
.container {
	width: 900px;
	max-width: 100%;
	margin: auto;
	padding-top: 30px;
}
.main {
	width: 900px;
	max-width: 100%;
	margin: auto;
	padding: 0 25px;
}
@media print, screen and (min-width: 769px){
	#main {
		float: left;
		width: 658px;
	}
	#navi {
		float: right;
		width: 218px;
		margin-bottom: 30px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.main {
		padding-left: 20px;
		padding-right: 20px;
	}
	.container {
		padding-top: 10px;
	}
	#navi {
		max-width: 480px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 0 auto;
	}
}
/*--------------------------------------------------
  フッタ
--------------------------------------------------*/
#footer {
	margin-top: auto;
	position: relative;
	clear: both;
	width: 100%;
	background: #FC9400;
	color: #FDB44D;
	font-size: 14px;
	line-height: 1;
}
#footer .box {
	margin: auto;
	text-align: left;
	background: #fdb44d;
	padding: 2px 0;
}
#footer .box .main {
	padding: 0;
}
#footer .box ul {
	padding: 15px 0;
}
#footer .box li {
	float: left;
	margin-left: 35px;
	list-style: none;
}
#footer .box li a {
	color: #FFFFFF;
	text-decoration: none;
}
#footer .box li a:hover {
	text-decoration: underline;
}
/* コピーライト */
#copyright {
	clear: both;
	font-size: 11px;
	text-align: center;
	padding: 5px 0;
}
/* ページトップ */
#page_top {
	clear: both;
	width: 900px;
	margin: auto;
	font-size: 11px;
}
#page_top a {
	display: block;
	float: right;
	width: 115px;
	height: 19px;
	padding: 5px 0px 0px;
	margin-top: -19px;
	background: url(../img/bg_pagetop.gif) no-repeat left top;
	color: #FFFFFF;
	text-decoration: none;
}
#page_top a:hover {
	text-decoration: underline;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#footer .contact li {
		width: 48%;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer .box {
		padding: 10px;
	}
	#footer .box .main {
		display: block;
	}
	#footer .ttl {
		text-align: center;
		margin-bottom: 20px;
	}
	#copyright {
		padding: 10px 0;
		font-size: 10px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer .contact li+li {
		margin-top: 15px;
	}
	#footer .contact li.tel a {
		font-size: 25px;
	}
	#copyright {
		padding: 5px 0;
	}
}
/*--------------------------------------------------
  共通
--------------------------------------------------*/
#top_clinic {
	background: #fff;
	border: 5px solid #EBCDA7;
}
#top_clinic .box {
	padding: 0 10px 10px;
}
#top_clinic .box h4 {
	margin-bottom: 10px;
}
#count {
	background: #F5E6D3;
	padding: 10px;
	margin-top: 30px;
	width: 218px;
	position: relative;
}
#count::before {
	content: url("../img/top/bg-count.png");
	position: absolute;
	right: -2px;
	bottom: -8px;
}
#count dl {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 5px;
}
#count dl+dl {
	background: #fff;
	padding: 0 5px;
}
#count dl:last-of-type {
	margin-bottom: 0;
}
#count dl dd img {
	position: relative;
	top: -5px;
	z-index: 2;
}
.mark {
	padding-left: 13px;
	background: url(../img/p.png) no-repeat 0px 0px;
}
.bottom {
	margin-bottom: 24px;
}
/* 枠のマージン・パディング */
.mt { margin-top: 100px; }
.mb { margin-bottom: 100px; }
.pt { padding-top: 100px; }
.pb { padding-bottom: 100px; }
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#top_schedule {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	#top_clinic {
		width: 100%;
	}
	#count {
		margin: 30px auto;
	}
	.mb { margin-bottom: 50px; }
	.pt { padding-top: 50px; }
	.pb { padding-bottom: 50px; }
}
@media only screen and (max-width: 640px){ /* スマホ */
	#top_contact, #top_coupon, #top_schedule {
		width: 218px;
		margin: 0 auto 20px;
	}
	#top_coupon {
		margin-bottom: 5px;
	}
	#top_schedule {
		display: block;
	}
	.mb { margin-bottom: 40px; }
	.pt { padding-top: 40px; }
	.pb { padding-bottom: 40px; }
}
/*------------------------------------------------*/
/* パンくずリスト */
#page_navi {
	margin-bottom: 30px;
	color: var(--color-thin);
	font-size: 12px;
	line-height: 1;
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
}
#page_navi li+li:before {
	content: ">";
	margin-right: 0.5em;
}
#page_navi a {
	color: var(--color-thin);
	text-decoration: none;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#page_navi {
		margin-bottom: 30px;
		padding-top: 15px;
		font-size: 11px;
	}
}
/*------------------------------------------------*/
/* テーブル */
.tbl {
	width: 100%;
	background: #fff;
}
.tbl th,
.tbl td {
	padding: 14px;
	border: 1px solid var(--color-tbl-border);
}
.tbl th {
	white-space: nowrap;
	background: var(--color-tbl-th);
	font-weight: bold;
	color: #006EDE;
}
/*------------------------------------------------*/
/* 注意書き */
p.attention {
	margin-left: 1em;
	text-indent: -1em;
}
/*------------------------------------------------*/
/* 横100％ */
.w100 {
	width: 100vw;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
}
/*------------------------------------------------*/
/* 横100％背景 */
.bg_wide {
	position: relative;
}
.bg_wide::before,
.bg_wide.bg_after::after {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100vw;
	height: 100%;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
	content: "";
	z-index: -1;
}
@media only screen and (max-width: 1150px) {
	.w100,
	.bg_wide::before,
	.bg_wide.bg_after::after {
		width: calc(100% + 50px);
		margin-left: -25px;
		margin-right: 0;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	.w100,
	.bg_wide::before,
	.bg_wide.bg_after::after {
		width: calc(100% + 40px);
		margin-left: -20px;
		margin-right: 0;
	}
}
/*------------------------------------------------*/
/* フレックスボックス */
.box_flex_sp {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.box_flex_sp.rev { flex-direction: row-reverse; }
.box_flex_sp.vcen { align-items: center; }
.box_flex_sp.vtop { align-items: flex-start; }
.box_flex_sp.htop { justify-content: flex-start; }
.box_flex_sp.hcen { justify-content: center; }
@media print, screen and (min-width: 641px){ /* PC用 */
	.box_flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.box_flex.rev { flex-direction: row-reverse; }
	.box_flex.vcen { align-items: center; }
	.box_flex.vtop { align-items: flex-start; }
	.box_flex.htop { justify-content: flex-start; }
	.box_flex.hcen { justify-content: center; }
}
/*------------------------------------------------*/
/* 箱のパディング */
.box_pad {
	padding: 20px;
}
@media print, screen and (min-width: 641px){ /* PC用 */
	.box_pad { padding: 30px; }
}
