@charset "utf-8";
/* CSS Document */

@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

body {
	font-family: "Noto Sans Japanese", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
	color:#3e3a3a;
	font-size:16px;
	font-weight:500;
	line-height:1.75;
	letter-spacing:0.05em;
	text-align:justify;
}
a {
	color: #63aa66;
	text-decoration: none;
}
a:hover {
	color:#C0AB9A ;
}
::selection{
	background-color:#99C1DA;
}
::-moz-selection{
	background-color:#99C1DA;
}

body,
#mainvisual .inner,
header,
footer{
	min-width:1200px;
}



/*============================================================================

	header

============================================================================*/

header {
	width:100%;
	position: absolute;
	top:0;
	z-index: 9999;
}
header .inner{
	position:relative;
	width:1200px;
	height: inherit;
	box-sizing:border-box;
	margin:auto;
}
/* ロゴ */
header .header_logo{
	position:absolute;
	top:40px;
}
header .header_logo,
header .header_logo img{
	width:328px;
	height:62px;
}

.header_info{
	display: flex;
	justify-content: flex-end;
}
/* ご予約・お問合せ */
.header_tel{
	float:right;
	text-align:right;
	line-height: 1.4;
	margin-right: 20px;
	padding-top: 16px;
}
.header_tel dt{
	font-size:14px;
	float: left;
	color: #fff;
	line-height: 31px;
	padding-top: 10px;
	margin-right: 30px;
}
.header_tel dd{
	float: right;
}
.header_tel dd a{
	position:relative;
	padding-left:30px;
	font-size:31.63px;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	color:#fff;
	letter-spacing: 6px;
	border-bottom: 3px solid #c8e8bd;
	letter-spacing:0.1em;
}
.header_tel dd a:before{
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	width:20px;
	height:21px;
	margin:auto;
	background-image:url(../images/tel.png);
	background-repeat:no-repeat;
	content:"";
}
.header_tel dd a{
	
}
.header_yoyaku{
	background:/*rgba(67, 149, 64, 0.6);*/rgba(255, 137, 20, 0.8);
	border: 2px solid #fff;
	font-family: 'Roboto', sans-serif;
	width: 100px;
	text-align: center;
	padding: 5px 8px;
	margin-top: 16px;
}
.header_yoyaku a{
	color: #fff;
	font-weight: 700;
	vertical-align: middle;
}

/*============================================================================

	nav

============================================================================*/

nav {
	position: absolute;
	top:83px;/* headerのheightと同じ値にする */
	right: 0;
	width:100%;
	z-index:9999;
}
nav ul{
	text-align:right;
}
nav li {
	display:inline-block ;
	position:relative;
	height:inherit;
}
nav li a{
	display: table;
	padding: 0 12px;
	vertical-align:middle;
	font-family: "FOT-筑紫A丸ゴシック Std B";
	color: #fff;
	font-size:17px;
	text-align:center;
	text-shadow:2px 4px 17px #000000,-4px -4px 17px #000000;
}
nav li:last-child a{
	padding-right: 0;
	
}
nav li a i{
	display: block;
	color: #d9ffe4;
	font-size: 11px;
	font-style: normal;
	font-family: 'Roboto', sans-serif;
}
nav li a:hover,
nav li.active2 a{
	color:#fff;
}
nav li a span{
	display: block;
	position:relative;
	padding-bottom: 10px;
}


/* ホバーのボーダー */
nav li a span::before{
    position: absolute;
	left: 0;
	right:0;
	bottom: 5px;
	width:100%;
	height:2px;
	margin:auto;
	background-color: #fff;
	transition: 0.15s  ease-out;
	transform: scaleX(0);
	content: "";
	z-index: 1;
}
nav li a:hover span::before,
nav li.active2 a span::before{
	transform: scaleX(1);
}

/* ホバーで出てくるメニューを示すアイコン */
.nav_slidebtm{
	background-image: url(../images/arrow02.png);
	background-repeat: no-repeat;
	background-position: center bottom 10px;
	background-size: 8px;
}

/* ホバーで出てくるメニュー */

nav ul li div {
	position: absolute;
	display:none;
	width:150%;
	top: 100%;
	left:0%;
	background-color: rgba(255,255,255,0.7);
	box-shadow: 0 2px 3px rgba(0,0,0,0.05);

}
nav ul li div a{
	display:block;
	position:relative;
	padding: 13px 20px;
	border-bottom: 1px solid #f0f0f0;
	line-height:1.4;
	text-align:left;
	font-size:13px;
	color: #333 !important;
	    text-shadow: none;
}
nav ul li div a::after,
nav ul li div a::before{
	display:none;
}
nav ul li div a:hover {
	background-color: #F0F0F0;
}

/* 矢印 */
.nav_arrow{
}
.nav_arrow img{
	display:block;
	position:absolute;
	top:0;
	right:5%;
	bottom:0;
	margin:auto;
	transition:0.2s ease-in-out;
}
nav ul li div a:hover .nav_arrow img{
	right:3%;
}
/* スクロールで追加されるクラス */
.fixed{
	position:fixed;
	top:0;
	left:0;
	height: 90px;
	background: rgba(255,255,255,0.8);
}

.fixed ul{
	text-align: center;
	margin: 0 auto;
	width: 1200px;
	padding-top: 20px;
}

.fixed ul li a{
	color: #333;
	text-shadow: initial;
}
.fixed ul li a i{
	color: #72ad5e;
}
.fixed li a span::before{
	background: #72ad5e;
}

.header_yoyaku.nav_fixed {
	display: none;
}
.fixed .header_yoyaku.nav_fixed {
	display: inline-block;
	margin-top: 0;
	position: relative;
  	top: -13px;
  	margin-left: 20px;
}
.fixed .header_yoyaku.nav_fixed a {
	color: #fff;
}

.fixed_btn {
	position: fixed;
    top: 50%;
    right: 0;
    z-index: 11;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    gap: 10px;
    transform: translateY(-50%);
}
.fixed_btn a {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    padding: 0 0 0 3px;
    color: #ffffff;
    font-size: 26px;
	transition-duration: 0.3s;	
}
.fixed_btn a.line {
    background: rgba(6, 199, 85, 0.8);
}
.fixed_btn a.sns i {
	font-size: 32px;
}
.fixed_btn a:hover {
	filter: brightness(1.1);
}
/*============================================================================

	#mainvisual

============================================================================*/

/* 下層ページのメインビジュアルの高さ、背景画像（トップページの高さはtop.css参照） */

#mainvisual{
	display:block;
	position:relative;
	height: 440px;
	background-image:url(../images/main01.png);
	background-size: cover;
	background-position:center ;
	background-repeat:no-repeat;
}
#mainvisual .inner{
	/*display:table;*/
	/*position:relative;*/
	height: inherit;
	width:1200px;
	margin: 0 auto;
	background-repeat:no-repeat;
	/*display: flex;
	justify-content: center;
	align-items: center;*/
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
#mainvisual h1{
	position:relative;
}
/* キャッチフレーズ */
.mainvisual_catch{
	position:absolute;
	top:405px;
	text-align: center;
	left: 0;
	right: 0;
	margin: auto;
}
.mainvisual_open{
	position:absolute;
	bottom: 75px;
	left: 0;
}
.main_point{
	position: absolute;
	bottom:70px;
	right: 0;
}
.main_reserv{
	position: absolute;
	bottom:70px;
	right: 260px;
	z-index: 2;
}
.main_reserv a:hover{
	opacity: 0.6;
}
.main_bnr01{
	position: absolute;
	bottom:70px;
	right: 0;
	z-index: 2;
}
.main_bnr01 a:hover{
	opacity: 0.6;
}
.main_bnr02{
	position: absolute;
	bottom:170px;
	right: 125px;
}
.main_bnr02 a:hover{
	opacity: 0.6;
}
.bnr_area{
	display: none;
}
/* マスク着用 */
.pc_mask {
	position: absolute;
	bottom: 344px;
	left: 0;
	
}
.mask_info {
	position: relative;
	font-size: 17px;
	text-align: center;
	display: block;
  background: rgba(229, 11, 24, 0.4);
  box-sizing: border-box;
  padding: 12px 22px 12px;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  border: 1px solid #fff;
  color: #fff;
  font-weight: bold;
}
/* 本の紹介 */
.pc_book_introduction {
	position: absolute;
	bottom: 60px;
	left: 0;
}
.pc_book_introduction:hover {
	opacity: 0.6;
}
.pc_book_introduction a.book_introduction_inner {
	display: block;
	background: rgba(0, 0, 0, 0.4);
	box-sizing: border-box;
	padding: 15px 35px 25px;
	font-family: "FOT-筑紫A丸ゴシック Std B";
	border: 1px solid #fff;
	color: #fff;
	
}
.pc_book_introduction .book_img {
	display: flex;
	margin-top: 10px;
	align-items: flex-end;
}
.pc_book_introduction img {
	height: 180px;
	margin-right: 20px;
	box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.3);
}
.book_info {
	position: relative;
	font-size: 20px;
	text-align: center;
}
.book_info:before,
.book_info:after {
	position: absolute;
	content: "";
	height: 1em;
	width: 1px;
	border-left: 2px dotted #fff;
	bottom: 6px;
	display: block;
}
.book_info:before {
	right: 20px;
	transform: rotate(30deg);
}
.book_info:after {
	left: 20px;
	transform: rotate(-30deg);
}
.book_tit {
	font-size: 22px;
	line-height: 1.5;
}
.book_btn {
	display: block;
	width: 100%;
	color: #fff;
	text-align: center;
	border: 1px solid #fff;
	background: rgba(67, 149, 64, 0.6);
	line-height: 2.6;
  	margin-top: 30px;
}

/* 下層ページの見出し */
.mainvisual_headline {
	padding-bottom:2px;
	/*padding-top: 100px;*/
	padding-top: 220px;
	letter-spacing: 0.15em;
	vertical-align: middle;
	text-align: center;

}
.mainvisual_headline div {
	
}
	
.mainvisual_headline h1{
	font-family: "FOT-筑紫A丸ゴシック Std B";
	font-size: 34px;
	color: #fff;
}
.mainvisual_headline p{
	display:inline-block;
	font-size:15px;
	font-family: 'Roboto', sans-serif;
	color: #d9ffe4;
}



/* 背景変更用 */
#mainvisual.bg01{
	background-image:url(../images/main_bg01.png);
	background-position: center 0%;
	background-size: cover;
}
#mainvisual.bg02{
	background-image:url(../images/main_bg02.png) ;
	background-position: center 0%;
	background-size: cover;
	
}
#mainvisual.bg03{
	background-image:url(../images/main_bg03.png) ;
	background-position: center 0%;
	background-size: cover;
}
#mainvisual.bg04{
	background-image:url(../images/main_bg04.png) ;
	background-position: center 0%;
	background-size: auto;
}
#mainvisual.bg05{
	background-image:url(../images/main_bg05.png);
	background-position: center 0%;
	background-size: cover;
}






/*==================================================================

	#contents

==================================================================*/ 

main{
	display:block;
}
#container{
	padding-bottom: 130px;
}

#contents{
	position:relative;
	width:1200px;
	margin:0 auto;
	padding-top:70px;
	padding-bottom: 100px;
}
#contents::after {
	display: block;
	clear: both;
	content: "";
}



#contents_left{
	float:left;
	width:720px;
}
#contents_right{
	float:right;
	width:280px;
	font-size:15px;
	line-height:1.6;
}
.right_medical h3{
	text-align:center;
}
.right_medical h3 a{
	display:block;
	padding:7px 0;
	background-color:#262e7c;
	color:#fff;
	font-weight:bold;
	font-size:19px;
	transition:0.1s ease-in-out;
}
.right_medical h3 a:hover{
	background-color:#e0d6ce;
	color:#1F2774;
}
.right_medical ul{
	padding:10px;
	background-color:#f0f0f0;
}
.right_medical li{
	margin-bottom:15px;
}
.right_medical li:last-child{
	margin-bottom:0;
}
.right_medical img{
	width:100%;
}







/*============================================================================

	$footer

============================================================================*/

footer {
	position:relative;
	width:100%;
	background:url(../images/bg02.png);
}


/* フッターの医院概要 */
.footer_info{
}
.footer_info .inner{
	width:1200px;
	margin:0 auto;
	padding:105px 0 60px;
}

.footer_left{
	float:left;
	width:560px;
}
.footer_right{
	float: right;
}
.footer_info_overview_logo,
.footer_info_overview_logo img{
	width: 336px;
	height: 63px;
	margin: 0 auto;
}
.footer_info_overview dt{
	margin-bottom:20px;
}
.footer_info_overview dd{
	margin-bottom:12px;
	text-align: center;
	color: #fff;
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
	letter-spacing: 2px;
}
.footer_info_overview dd:after{
	background: url(../images/wave_ad.png) no-repeat;
	width: 511px;
	height: 19px;
	position: absolute;
	bottom:0;
	left: 0;
	right: 0;
	margin: auto;
	content: "";
}

/* 診療時間（医院案内、アクセス共通） */
.footer_info_sche{
	padding-top:8px;
}
.schedule table{
	width:100%;
	color: #fff;
}
.schedule p{
	margin-left:22px;
	margin-bottom:2px;
}
.schedule p strong{
	color:#1F2774;
}
.schedule p:last-child{
	margin-bottom:0;
}
.schedule_note{
}
footer .schedule_note{
	 color: #fff;
}
.footer_tel{
	background: #7fb165;
	height: 79px;
	margin-top: 30px;
}
.footer_tel span{
	color: #fff;
	line-height: 79px;
	padding-left: 60px;
	margin-right: 50px;
}
.footer_tel a{
	position:relative;
	padding-left:30px;
	font-size:31.63px;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	color:#fff;
	letter-spacing: 6px;
	border-bottom: 3px solid #c8e8bd;
	letter-spacing:0.1em;
}
.footer_tel a:before{
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	width:20px;
	height:21px;
	margin:auto;
	background-image:url(../images/tel.png);
	background-repeat:no-repeat;
	content:"";
}

/* フッターのナビ */

.footer_navi{
}
.footer_navi .inner{
	width:1200px;
	margin:0 auto;
	padding:60px 0 40px;
}
.footer_navi ul{
}

.footer_navi ul {
	position:relative;
	width:100%;
	height:80px;
	background-color:rgba(255,255,255,0.5);
	z-index:9999;
}
.footer_navi ul{
	width:1200px;
	height:inherit;
	margin:0 auto;
	text-align:center;
}
.footer_navi ul li {
	display:inline-table ;
	position:relative;
	height:inherit;
}
.footer_navi ul li a{
	display: table-cell;
	padding: 0 29px;
	vertical-align:middle;
	line-height: 1.6;
	font-size:15px;
	font-weight:bold;
	text-align:center;
}
.footer_navi ul li a:hover,
.footer_navi ul li.active2 a{
	color:#1F2774;
}
.footer_navi ul li a span{
	position:relative;
	padding:0 5px;
}

/* 間のボーダー */
.footer_navi ul li a::after{
    content: "";
    position: absolute;
    left: -1px;
	width:0;
	height:15px;
	top:0;
	bottom:0;
	margin:auto;
	border-right:1px dotted #ababab;
    font-weight: 100;
    color: #666;
    font-size: 13px;
}
.footer_navi ul li:first-child a::after{
	display:none;
}

/* ホバーのボーダー */
.footer_navi ul li a span::before{
    position: absolute;
	left: 0;
	right:0;
	bottom: -10px;
	width:100%;
	height:1px;
	margin:auto;
	background-color: #3D4AA5;
	-webkit-transition-duration: 0.15s;
	transition-duration: 0.15s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	transform: scaleX(0);
	content: "";
	z-index: 1;
}
.footer_navi ul li a:hover span::before,
.footer_navi ul li.active2 a span::before{
	transform: scaleX(1);
}

.footer_sns {
	padding: 20px 0;
}
.footer_sns ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer_sns a {
    display: block;
    color: #ffffff !important;
    font-size: 30px;
    line-height: 1;
	transition-duration: 0.3s;
}
.footer_sns a:hover {
    opacity: 0.5;
}

/* コピーライト */
.copy{
	text-align: center;
	padding-top: 10px;
	padding-bottom: 50px;
}
.copy small{
	line-height:1;
	font-size:14px;
	color: #fff;
	letter-spacing:0.1em;
}











/*==================================================================

	タイトル

==================================================================*/
/*中央寄せ*/
h2.tit01 {
	position: relative;
	margin-bottom: 40px;
	padding:14px ;
	letter-spacing: 0.15em;
	line-height: 1.4;
	color: #555;
	font-size: 32px;
	font-family: "FOT-筑紫A丸ゴシック Std B";
	text-align: center;
}

/* 飾りの英語 */
h2.tit01 span{
	display:block;
	position:relative;
	letter-spacing: 2.5px;
	margin-top: 15px;
	color: #8ecd44;
	font-size:18px;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	z-index:2;
}

/*中央寄せ*/
h3.tit01 {
	position: relative;
	margin-bottom: 30px;
	padding:14px ;
	letter-spacing: 0.15em;
	line-height: 1.4;
	color: #555;
	font-size: 32px;
	font-family: "FOT-筑紫A丸ゴシック Std B";
	text-align: center;
}

/* 飾りの英語 */
h3.tit01 span{
	display:block;
	position:relative;
	letter-spacing: 2.5px;
	margin-top: 15px;
	color: #8ecd44;
	font-size:18px;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	z-index:2;
}


/* 左寄せ */
h3.tit02 {
	position: relative;
	margin-bottom: 30px;
	letter-spacing: 0.15em;
	line-height: 1.6;
	color: #72ad5e;
	font-size: 24px;
	font-family: "FOT-筑紫A丸ゴシック Std B";
	text-align:left;
}

h4.tit01 {
	position: relative;
	margin-bottom: 30px;
	letter-spacing: 0.15em;
	line-height: 1.6;
	color: #72ad5e;
	font-size: 24px;
	font-family: "FOT-筑紫A丸ゴシック Std B";
	text-align:left;
}

h5.tit01{
	position: relative;
	margin-bottom: 12px;
	letter-spacing:0.1em;
	color: #efb372;
	font-size: 19px;
	font-family: "FOT-筑紫A丸ゴシック Std B";
}





/*==================================================================

	共通

==================================================================*/

/*院長略歴*/
.list01 {
	margin: 0 0 15px;
	padding: 0;
	border-width: 0 1px 1px;
}
.list01 dt {
	margin: 0;
	padding: 14px 3px 0px;
}
.list01 dd {
	margin: -38px 0 0;
	padding: 12px 4px 10px 100px;
	border-bottom: 1px dotted #ACACAC;
}

/*院長略歴　年月無し*/
.list02 {
	margin: 0 0 15px;
	border-width: 0 1px 1px;
}
.list02 li {
	margin: 0 0px 0px;
	padding: 6px 4px 6px 0;
	border-bottom: 1px dotted #ddd;
}

/*まる*/
.list03{
}
.list03 li{
	position:relative;
	margin-bottom:10px;
	padding-left:15px;
}
.list03 li:last-child{
	margin-bottom:0;
}
.list03 li:before{
	display: block;
	position: absolute;
	top: 10px;
	left: 0;
	width: 3px;
	height: 3px;
	background-color: #63aa66;
	border: 1px solid #63aa66;
	border-radius: 100%;
	content: '';
}
.list03 li i{
	margin-right:8px;
}

/*さんかく*/
.list04 li{
	position: relative;
	margin-bottom:15px;
	padding-left:22px;
	color:#223a70;
}
.list04 li:before{
	position:absolute;
	top:0.5em;
	left:7px;
	width: 0;
	height: 0;
	border:5px solid transparent;
	border-left: 5px solid #4A577F;
	content:"";
}

/*やじるし*/
.list05 li{
	position:relative;
	margin-bottom: 10px;
	line-height:1;
	padding-left:15px;
}
.list05 li:before{
	position:absolute;
	left:0;
	top:0.3em;
	height:5px;
	width:5px;
	transform:rotate(45deg);
	background-color: transparent;
	border-top:1px solid #333;
	border-right:1px solid #333;
	content:"";
}

/* まる & 背景 */
.list06{
	padding:35px 15px 25px 45px;
	background-color:#f7f7f7;
}
.list06:after {
	display: block;
	clear: both;
	content: "";
}
.list06 li{
	position:relative;
	float:left;
	margin-bottom:15px;
	padding-left:0.9em;
	padding-right:5%;
	
}
.list06 li:before{
	display: block;
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 3px;
	height: 3px;
	background-color: #DAC58B;
	border: 1px solid #DAC58B;
	border-radius: 100%;
}

/*まる & 枠 */
.list07{
	border: 3px solid #eee;
	padding: 30px ;
	font-size:14.5px;
}
.list07 li{
	padding-left:0.9em;
	margin-bottom:10px;
	position:relative;
}
.list07 li:last-child{
	margin-bottom:0;
}
.list07 li:before{
	display: block;
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 3px;
	height: 3px;
	background-color: #E0D0BF;
	border: 1px solid #E0D0BF;
	border-radius: 100%;
}
.list07 li i{
	margin-right:8px;
}

/*チェック*/
.list08{
	margin-bottom:30px;
	padding:35px 10px 20px 45px;
	background-color:#f7f7f7;
}
.list08:after{
	display: block;
	clear: both;
	content: "";
}
.list08 li{
	position:relative;
	float:left;
	margin-right: 5%;
	margin-bottom:20px;
	margin-left: 28px;
	border-bottom: 1px dotted #cdcdcd;
}
.list08 li:before{
	display: block;
	position: absolute;
	top: 3px;
	left: -28px;
	width: 20px;
	height: 20px;
	background-image:url(../images/check.svg);
	background-repeat:no-repeat;
	background-position:left center;
	content: '';
}
/*●の数字＋背景色*/
ol.list09 {
	counter-reset: list09;
  padding: 25px;
  background:#f8f6ee;
  overflow: hidden;
}
.list09 li {
	position: relative;
	margin-bottom: 15px;
	padding-left: 3em;
  padding-bottom: 10px;
	line-height: 2;
	border-bottom: #e3ddc9 1px solid;
}
.list09 li:before {
	position: absolute;
	left: 0;
	counter-increment: list09;
	content: counter(list09);
	display: inline-block;
	width: 2em;
	text-align: center;
	font-weight: bold;
	color: #fff;
	background-color: #8ecd44;
	border-radius: 50%;
}





/*ボタン ゴースト*/
.btn01{
	position:relative;
	top:10px;
	margin-bottom:10px;
}
.btn01 a{
	display:inline-block;
	position:relative;
	padding:15px 25px;
	line-height:1;
	border:1px solid #33409a;
	color:#3D4AA5;
	text-align:center;
	font-weight:bold;
	transition:ease-in-out 0.1s;
}
.btn01 a i{
	margin-right:10px;
	color:#33409a;
	transition:ease-in-out 0.1s ;
}
.btn01 a:hover{
	color:#fff;
	background-color:#33409a;
}
.btn01 a:hover i{
	color:#fff;
}
.btn01 a::after{
	display:inline-block;
	position:absolute;
	top:10px;
	left:10px;
	width: 100%;
	height:100%;
	background-image:url(../images/bg03.png);
	transition:0.2s ease-in-out;
	z-index:-1;
	content:"";
}
.btn01 a:hover::after{
	left:0;
	top:0;
}
.btn01_arrow{
	position:relative;
	left:0px;
	margin-right:14px;
	transition:0.2s ease-in, 0.22s ease-out;
}
.btn01_arrow img{
	opacity:1 !important;
}
.btn01_arrow,
.btn01_arrow img{
	width: 18px;
	height: 13px;
}
.btn01 a:hover .btn01_arrow{
	left:4px;
}


/*ボタン 白抜き*/
.btn02{
}
.btn02 a{
	display:inline-block;
	padding:15px 40px;
	border:1px solid #96dfc2;
	color:#96dfc2;
	font-weight:bold;
	transition:ease-in-out 0.2s ;
}
.btn02 a i{
	margin-right:7px;
}
.btn02 a:hover{
	background-color:#96dfc2;
	color:#fff;
}


/* 画像を右寄せ　※画像サイズはhtmlで調整 */
.img_fr{
	display:block;
	position:relative;
	float:right;
	margin-left:30px;
	margin-bottom:0 !important;
	text-align:center;
}
.img_fr img{
	border-radius:3px;
	margin-bottom:7px;
	
}
/* 画像に対して説明文がある場合は、dlで囲い、dtに画像を、ddにテキストを使う */
.img_fr dd{
	padding-left:20px;
	line-height:1.3;
	font-size:15px; 
	font-weight:bold;
	color: #1F2774;
	text-align:left;
}
/* ボタン　文章中 */
.btn03 a {
	display:inline-block;
	background-color: #00984b;
	padding:2px 4px;
	color:#fff;
	transition:ease-in-out 0.2s ;
	border-radius: 4px;
}
.btn03 a:hover {
	background-color: #0f5b14;
}







/*==================================================================

	table

==================================================================*/

.nowrap{
	white-space:nowrap;
}
/*フッターの診療時間*/
.tb01{
	margin-bottom:2px;
	border-spacing: 0;
	border-collapse: collapse;
	white-space:nowrap;
}
.tb01 td,.tb01 th{
	border-bottom:1px solid #fff;
	vertical-align: middle;
	text-align: center;
}
.tb01 tr:last-child td,.tb01 tr:last-child th{
	border:none;
}
.tb01 th:first-child{
	
}
.tb01 th{
	padding:10px 10px;
	line-height:1;
	white-space:nowrap;

}
.tb01 td{
	padding:10px 10px;
}

.doctor .tb01{
	width: 100%;
	border: 1px solid #ccc;
}
.doctor .tb01 td,.doctor .tb01 th{
	border: 1px solid #ccc;
	font-size: 14px;
	width: 12.5%;
}


/*医院概要*/
.tb02{
	border-spacing: 0;
	text-align: left;
}
.tb02 td,.tb02 th{
	border-bottom:#ddd 1px dotted;
	line-height:1.4;
	font-size:15px;
	vertical-align:top;
}
.tb02 th{
	padding:8px 24px 8px 0;
	white-space:nowrap;
	text-align:left;
	font-weight: normal;
	color:#333;
}
.tb02 td{
	padding:8px 0;
	padding-right:0 !important;
	text-align:left;
}
.tb02 tr:last-child td,.tb02 tr:last-child th{
	border:none;
}

/* 料金表 */
.tb03 {
	width:100%;
	border-spacing: 1px;
	border-collapse: separate;
	background-color: #cbc2a5;
	white-space: nowrap;
}
.tb03 td, .tb03 th {
	padding: 12px 36px;
}
.tb03 th {
	font-weight: bold;
	white-space: nowrap;
	text-align: center;
	color: #3e3a3a;
	background-color: #f8f6ee;
	font-size: 18px;
	font-family: "FOT-筑紫A丸ゴシック Std B";
}
.tb03 th span,.tb03 td span {
	font-size: 13px;
}
.tb03 td {
	background-color: #fff;
	text-align: center;
}
.tb03 th.sub{
	background-color: rgba(248,246,238,0.1);
}
.tb03 th p{
	margin-bottom: 0;
}
.tb03 ul li{
	font-size: 15px;
}

/*==================================================================

	アンカーリンンク

==================================================================*/

/* 4個並び */
.ank01{
	margin:0 auto 100px;
}
.ank01 li{
	display:table;
	position:relative;
	float:left;
	width:24%;
	height:66px;
	margin-bottom:1.5%;
	margin-left:1.33%;
	line-height:1.4;
}
.ank01 li:nth-child(1),
.ank01 li:nth-child(5),
.ank01 li:nth-child(9){
	margin-left:0;
}
.ank01 li a{
	display: table-cell;
	padding:12px 5px 15px;
	border:1px solid #a3d194;
	font-weight:bold;
	font-size:17px;
	color:#a3d194;
	text-align:center;
	vertical-align:middle;
	transition:0.1s ease-in-out;
}
.ank01 li a:hover{
	background-color:#a3d194;
	color:#fff;
}
.ank01 li i{
	display:block;
	position:absolute;
	left:0;
	right:0;
	bottom:4px;
	margin:auto;
}

#ank01,#ank02,#ank03,#ank04,#schedule_time {
	padding-top: 100px;
	margin-top: -100px;
}
/*==================================================================

	.price

==================================================================*/

.price{
	display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
	flex-wrap: wrap;
}
.price dl{
	width: 49%;
	border: 4px double #e1c386;
	padding: 30px;
	text-align: center;
	box-sizing: border-box;
	/*margin-bottom: 20px;*/
}
.price dl dt{
	font-family: "FOT-筑紫A丸ゴシック Std B";
	color: #67a024;
	font-size: 18px;
	margin-bottom: 10px;
}
.price dl dd{
	font-weight: bold;
	font-size: 18px;
	border-bottom: 1px dashed #e1c386;
	padding-bottom: 10px;
}
.price dl dd.b_none{
	border: none;
}
.price dl dd span{
	font-weight: 400;
	margin-right: 10px;
	font-size: 14px;
}
.price dl dd img{
	width: 90%;
}
/*==================================================================

	.layout

==================================================================*/

/* 1つ並びのレイアウト。画像は無し、左にタイトル、右に文章 */
.layout01 {
  position: relative;
  margin: 0 0 15px;
}

.layout01:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid #cbc2a5/*#ededed*/;
  content: "";
}

.layout01-flow:before{
border-top: none !important;
}

.layout01 dl {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
}

.layout01-flow dl {
		margin-bottom: 30px;
}

.layout01-flow dl:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid #cbc2a5;
  content: "";
}

.layout01 dl:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #cbc2a5;
  content: "";
}

.layout01 dt {
  width: 30%;
  background-color: #f8f6ee;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 120%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.3;
	font-family: "FOT-筑紫A丸ゴシック Std B";
}

.layout01-flow dt span {
    width: 60px;
    height: 60px;
    border: solid 3px #fff;
    background: #8ecd44;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -10px;
    left: -25px;
    border-radius: 50%;
    font-size: 22px !important;
    font-weight: 600;
				font-family: 'Montserrat', sans-serif;
    color: #fff;
    z-index: 2;
}

.layout01-flow dt:before {
    position: absolute;
    width: 1px;
    height: 105%;
    border-left: dashed 2px #72ad5e;
    left: 7px;
    z-index: 1;
    content: "";
}

.layout01-flow dt:after {
position: absolute;
    width: 15px;
    height: 15px;
    background:#72ad5e;
    clip-path: polygon(50% 80%, 100% 0, 0 0);
    left: 1px;
    bottom: -20px;
    z-index: 1;
    content: "";
}

.layout01-flow dl:last-child dt:before,
.layout01-flow dl:last-child dt:after{
display: none;
}

/* 数字 */
.layout01 dt em {
  display: block;
  width: 100%;
  line-height: 1;
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;  
  font-size: 17px;
  color: #ef7e00;
}

.layout01 dt span,
.layout01 dt i{
	font-size: 75%;
	font-style: normal;
	font-weight: 600;
}
.layout01 dd {
  width: 70%;
  box-sizing: border-box;
  padding: 3%;
}
.layout01 dd p,
.text .layout01 dd p {
    line-height: 1.6;
    margin-bottom: 0.8em;
    font-size: 15px;
}
.layout01 dd p:last-child,
.text .layout01 dd p:last-child {
    margin-bottom: 0;
}
.layout01 dd .org {
    color: #ef7e00;
}
.layout01 dd h4, .layout01 dd h5 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #ef7e00;
}



/* 2つ並びのレイアウト。最初(dt)にタイトル、画像がその下(dd)、画像の下に文章 */
.layout02{
	display:flex;
	flex-wrap:wrap;
}
.layout02::after{
	display: block;
	clear: both;
	content: "";
}
.layout02 dl{
	width:40.2%;
	margin-right:4%;
	margin-bottom:25px;
	padding:3% 3.9% 4%;
	background-color:#F7F7F7;
}
.layout02 dl:nth-child(even){
	margin-right:0;
}
.layout02 dl dt{
	margin-bottom:10px;
	font-weight: bold;
	font-size:18px;
	line-height:1.3;
	text-align:center;
}
/* 数字 */
.layout02 dl dt em{
	margin-right:10px;
	color:#BDA087;
	font-family: "Times New Roman", Times, serif;
	font-size:30px;
	font-weight: normal;
}
.layout02 dl dd{
	line-height:1.6;
	font-size:14.5px;
	text-align:center;
}
.layout02 dl dd img{
	width:160px;
	margin-bottom:15px;
}
.layout02 dl dd p{
	margin-bottom:0;
	text-align:justify;
}




/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章 */
.layout03{
	padding-bottom:20px;
}
.layout03 dl{
	display:table;
	width: 100%;
	position:relative;
	margin-bottom:20px;
	background-color:#f8f6ee;
	padding:2%;
}
.layout03 dt,
.layout03 dd{
	display:table-cell;
	box-sizing:border-box;
	vertical-align:middle;
}
.layout03 dt {
    width: 27%;
    padding: 1%;
    background-color: #fff;
    text-align: center;
}
.layout03 dt img {
    width: 100%;/*
    padding-bottom: 10px;*/
}
.layout03 dd {
    width: 73%;
    padding: 1% 3%;
}
.layout03 dd h4{
	color: #72ad5e;
	font-size:22px;
	font-weight:bold;
}
.layout03 dd h4 em{
	margin-right:10px;
	color:#888;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size:24px;
	font-weight: normal;
}




/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色 */

.layout04{
	padding-bottom:20px;
}
.layout04 dl{
	display:table;
	position:relative;
	margin-bottom:20px;
	background-color:#f7f7f7;
	padding:2%;
}
.layout04 dt,
.layout04 dd{
	display:table-cell;
	box-sizing:border-box;
}
.layout04 dt{
	width:27%;
	padding-right:2%;
	vertical-align:middle;
}
.layout04 dt img{
	width:100%;
}
.layout04 dd{
	width:73%;
	padding:3%;
	background-color:#fff;
	vertical-align:middle;
}
.layout04 dd h5{
	color: #1F2774;
	font-size:18px;
	font-weight:bold;
}
.layout04 dd h5 span{
	margin-right:10px;
	color:#BDA087;
	font-family: "Times New Roman", Times, serif;
	font-size:30px;
	font-weight: normal;
}



/* 1つ並びで3列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章 */
.layout05{
	padding-bottom:20px;
}
.layout05 dl{
	display:table;
	position:relative;
	margin-bottom:20px;
	background-color:#f7f7f7;
	padding:2%;
	font-size:14px;
}
.layout05 dt,
.layout05 dd{
	display:table-cell;
	box-sizing:border-box;

}
.layout05 dt{
	width:25%;
	background-color:#fff;
	text-align:center;
		vertical-align:middle;
}
.layout05 dt img {
    width: 100%;
    padding-bottom: 10px;
}
.layout05 dd{
	padding:1% 3%;
	vertical-align:top;
}
.layout05 dd:nth-child(2){
	width:36.5%;
}
.layout05 dd:nth-child(3){
	width:38.5%;
	border-left:1px solid #e2e2e2;
}

.layout05 dd h5 em{
	margin-right:10px;
	color:#BDA087;
	font-family: "Times New Roman", Times, serif;
	font-size:30px;
	font-weight: normal;
}
.layout05 dd h5{
	font-size:15px;
	font-weight:bold;
}
.layout05_text1{
}

.layout05_text1 ul{
	margin-bottom:15px;
}

.layout05_text1 ul li{
	text-indent:-1em;
	margin-left:1em;
}


/* 1つ並びで3列に区切られたレイアウト。左がタイトル、真ん中と右に文章 */
.layout06{
	padding-bottom:20px;
}
.layout06 dl {
    display: table;
    position: relative;
    padding-bottom: 5px;
    font-size: 14px;
}
.layout06 dl:before{
	position:absolute;
	top:-3px;
	left:0;
	width:100%;
	border-top: 1px solid #ededed;
	content:"";
}
.layout06 dl:last-child:after{
	position:absolute;
	bottom:-3px;
	left:0;
	width:100%;
	border-top: 1px solid #f0f0f0;
	content:"";
}
.layout06 dt,
.layout06 dd{
	display:table-cell;
	box-sizing:border-box;

}
.layout06 dt{
	min-width:28%;
	padding:0 3%;
	background-color:#F7F7F7;
	letter-spacing: 0.1em;
	color: #1F2774;
	font-size:18px;
	font-weight:bold;
	text-align:center;
	vertical-align:middle;
}
/* 数字 */
.layout06 dt em{
	display:block;
	line-height:1;
	margin:0 8px;
	font-family: "Times New Roman", Times, serif;
	font-size:38px;
	font-weight:normal;
	color:#C3AF97;
}
.layout06 dd {
    padding: 2% 3%;
    vertical-align: top;
}
.layout06 dd:nth-child(2){
	width:40%;
}
.layout06 dd:nth-child(3){
	width:35%;
	border-left:1px solid #e2e2e2;
}

.layout06 dd h5{
	font-size:15px;
	font-weight:bold;
}
.layout06_text1{
}
.layout06_text1 ul{
	margin-bottom:15px;
}
.layout06_text1 ul li span{
	display:block;
}


/* 3つ並びのレイアウト。 */
.layout07{
}
.layout07::after{
	display: block;
	clear: both;
	content: "";
}
.layout07 dl{
float: left;
width: 26%;
margin-right: 2%;
margin-bottom:20px;
padding: 3%;
border-radius: 10px;
	background-color:#F7F7F7;
}
.layout07 dl:nth-child(3n){
	margin-right:0;
}
.layout07 dl dt{
	margin-bottom: 7px;
	padding-bottom: 7px;
	border-bottom: 1px dashed #ddd;
	font-size: 17px;
	font-weight: bold;
	text-align: center;
}
.layout07 dl dt em{
	margin-right:8px;
	font-size:24px;
font-family: 'Quicksand', sans-serif;
}
.layout07 dl dd{
	line-height:1.5;
}

/* 3つ並びのレイアウト。矢印付き */
.layout08{
	overflow:hidden;
}
.layout08 dl{
	position:relative;
float: left;
width: 24.6%;
margin-right: 4.1%;
margin-bottom:25px;
padding: 3%;
border-radius: 10px;
	background-color:#F7F7F7;
}
.layout08 dl::before {
    position: absolute;
    right: -17px;
    top: 0;
    height: 7px;
    width: 7px;
    transform: rotate(45deg);
    background-color: transparent;
    border-top: 2px solid #33409A;
    border-right: 2px solid #33409A;
    content: "";
    bottom: 0;
    margin: auto;
}
.layout08 dl:nth-child(3n){
	margin-right:0;
}

.layout08 dl dt{
	margin-bottom: 7px;
	padding-bottom: 7px;
	border-bottom: 1px dashed #ddd;
	font-size: 17px;
	font-weight: bold;
	text-align: center;
}
.layout08 dl dt em{
	margin-right:8px;
	font-size:24px;
font-family: 'Quicksand', sans-serif;
}
.layout08 dl dd{
	line-height:1.5;
}




/*==================================================================

	box

==================================================================*/

.box1{
	position:relative;
	width:1200px;
	margin:0 auto;
}
.box2{
	margin-bottom:100px;
}
.box2.medical{
	position:relative;
	width:1080px;
	margin:0 auto 100px;
}
.text {
	position:relative;
	margin-bottom:50px;
}
.text p {
	margin-bottom:1em;
}
.text:last-child{
	margin-bottom:0;
}

/*==================================================================

	.top_concept

==================================================================*/

.top_concept{
	background:url(../images/bg01.png);
	padding-top: 65px;
	position: relative;
	z-index: 1;
}
.top_concept h3.tit01 span{
	color: #67a024;
}
.top_concept:after{
	background: url(../images/bg_deco.png) no-repeat top center;
	background-size: 100% auto;
	width: 100%;
	height: 105px;
	bottom: 0;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	content: "";
	z-index: -1;
}
.top_concept_img{
	padding-top: 10px;
	position: relative;
	float: left;
}
.top_concept .text{
	width: 615px;
	float: right;
	position: relative;
	z-index: 2;
	margin-top: -472px;
	background: #fff;
	box-shadow: 0 0 30px rgba(114,114,114,0.2);
	box-sizing: border-box;
	padding: 55px;
	font-size: 17px;
	letter-spacing: 2px;
	line-height: 2.1;
	margin-bottom: 60px;
}

.top_menu ul{
	display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
	flex-wrap: wrap;
}
.top_menu ul li{
	width: 300px;
	box-sizing: border-box;
	border: 1px solid #fff;
}
.top_menu ul li a{
	display: block;
	position: relative;
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-family: "FOT-筑紫A丸ゴシック Std B";
	padding-top: 90px;
	background: #72ad5e;
	transition: ease-in-out 0.3s;
	padding-bottom: 20px;
}
.top_menu ul li a:hover{
	background: #ecc96e;
}
.top_menu ul li a:before{
	background: url(../images/top_menu01.png) no-repeat;
	width: 33px;
	height: 44px;
	position: absolute;
	top:30px;
	left: 0;
	right: 0;
	margin: auto;
	content: "";
}
.top_menu ul li:nth-child(2) a:before{
	background: url(../images/top_menu02.png) no-repeat;
	width: 37px;
	height: 33px;
	top:37px;
}
.top_menu ul li:nth-child(3) a:before{
	background: url(../images/top_menu03.png) no-repeat;
	width: 32px;
	height: 38px;
	top:35px;
}
.top_menu ul li:nth-child(4) a:before{
	background: url(../images/top_menu04.png) no-repeat;
	width: 41px;
	height: 40px;
	top:37px;
}


/*==================================================================

	.top_medical

==================================================================*/

.top_medical{
	padding-top: 90px;
}
.top_medical_list{
	display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 20px;
}
.top_medical_list dl{
	width: 388px;
	margin-bottom: 30px;
}
.top_medical_list dl dt a{
	display: block;
	width: 100%;
	height: 202px;
	position: relative;
	text-align: center;
	color: #fff;
	font-size: 27px;
	padding-top: 70px;
	font-family: "FOT-筑紫A丸ゴシック Std B";
	background:rgba(0,0,0,0.5);
	box-sizing: border-box;
	overflow: hidden;
	z-index: 1;
}
.top_medical_list dl dt a:before{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	content: "";
	transition: ease-in-out 0.3s;
}
.top_medical_list dl:nth-child(1) dt a:before{
	background: url(../images/top_medical01.png) no-repeat center;
	background-size: cover;
}
.top_medical_list dl:nth-child(2) dt a:before{
	background: url(../images/top_medical02.png) no-repeat center;
	background-size: cover;
}
.top_medical_list dl:nth-child(3) dt a:before{
	background: url(../images/top_medical03.png) no-repeat center;
	background-size: cover;
}
.top_medical_list dl:nth-child(4) dt a:before{
	background: url(../images/top_medical04.png) no-repeat center;
	background-size: cover;
}
.top_medical_list dl:nth-child(5) dt a:before{
	background: url(../images/top_medical05.png) no-repeat center;
	background-size: cover;
}
.top_medical_list dl:nth-child(6) dt a:before{
	background: url(../images/top_medical06.png) no-repeat center;
	background-size: cover;
}
.top_medical_list dl dt a:hover:before{
	opacity: 0.8;
	-moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.top_medical_list dl dt a span{
	display: block;
	position: relative;
}
.top_medical_list dl dt a span:after{
	background: url(../images/medical_wave.png) no-repeat center;
	width: 100%;
	height: 6px;
	position: absolute;
	bottom:-5px;
	left: 0;
	right: 0;
	margin: auto;
	content: "";
}
.top_medical_list dl dd{
	height: /*238px;*/300px;
	border: 1px solid #e5e5e5;
	box-shadow: 0 0 30px rgba(114,114,114,0.2);
	margin-top: 20px;
	padding-top: 40px;
	padding-left: 30px;
	box-sizing: border-box;
}
.top_medical_list dl:nth-child(4) dd,.top_medical_list dl:nth-child(5) dd,.top_medical_list dl:nth-child(6) dd{
	padding-top: 20px;
}
.top_medical_list dl dd li{
	margin-bottom: 10px;
}
.top_medical_list dl:nth-child(4) dd li,.top_medical_list dl:nth-child(5) dd li,.top_medical_list dl:nth-child(6) dd li{
	margin-bottom: 1px;
}
.top_medical_list dl dd li a{
	position: relative;
	padding-left: 30px;
	padding-right: 30px;
	color: #333;
	font-size: 17px;
	letter-spacing: 2px;
	display: inline-block;
}
.top_medical_list dl dd li a:hover{
	color: #79c262;
}
.top_medical_list dl dd li a:before{
	background: url(../images/top_medical_arrow.png) no-repeat;
	width: 14px;
	height: 14px;
	top:/*5px;*/8px;
	left: 5px;
	position: absolute;
	content: "";
}
a.btn {
  display: block;
  color: #fff;
  font-size: 14px;
  padding: 0.2rem .3rem;
  background-color:#00984b;
  text-decoration: none;
  transition-duration: 0.3s;
  margin-bottom: 5px;
width: 90%;
	border-radius: 4px;
}
a.btn:hover {
  background: #0f5b14;
}
a.btn span {
  position: relative;
  padding-left: 36px;
}
a.btn span:before {
  content: '';
  width: 15px;
  height: 15px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -8px;
}
a.btn span:after {
  content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: 2px solid #188c1f;
  border-right: 2px solid #188c1f;
  transform: rotate(45deg);
  position: absolute;
  top: 56%;
  left: 7px;
  margin-top: -5px;
}
a.btn:hover span:after {
  border-top: 2px solid #0f5b14;
  border-right: 2px solid #0f5b14;
}

/*==================================================================

	.top_greeting

==================================================================*/

.top_greeting{
	background-image: url(../images/top_greeting_bg.png);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-color: #e3f8df;
	position: relative;
	margin-top: 139px;
	padding-top: 60px;
	padding-bottom: 80px;
}
.top_greeting:before{
	background: url(../images/wave.png) repeat-x center top;
	height: 121px;
	width: 100%;
	top:-50px;
	position: absolute;
	content: "";
}

.top_greeting_img{
	position: relative;
	z-index: 2;
	float: right;
	padding-top: 10px;
}

.top_greeting .text{
	float: left;
	width: 678px;
	margin-top: -476px;
	background: #fff;
	box-shadow: 0 0 30px rgba(114,114,114,0.2);
	font-size: 16px;
	padding: 50px 120px 50px 60px;
	line-height: 2.5;
	box-sizing: border-box;
}

/*==================================================================

	.top_features

==================================================================*/

.top_features{
	padding-top: 80px;
}

.top_features01 dt{
	float: left;
}
.top_features01 dd{
	float: right;
	width: 394px;
	padding-top: 75px;
}
.top_features01 dd h4{
	font-size: 24px;
	color: #63aa66;
	font-family: "FOT-筑紫A丸ゴシック Std B";
	margin-bottom: 20px;
}
.top_features01 dl:nth-child(even) dt{
	float: right;
}
.top_features01 dl:nth-child(even) dd{
	float: left;
}
.top_features01 dl:nth-child(2) dd{
	padding-top: 100px;
	
}
.top_features01 dl:nth-child(4) dd{
	padding-top: 100px;
	
}
.top_features01 dl:nth-child(2){
	margin-bottom: 30px;
}


.top_features02{
	display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 15px;
}
.top_features02 dl:nth-child(2){
	margin-top: 20px;
}
.top_features02 dd h4{
	font-size: 24px;
	color: #63aa66;
	font-family: "FOT-筑紫A丸ゴシック Std B";
	text-align: center;
	margin-top: 25px;
	line-height: 1.4;
}

/*==================================================================

	.top_doctor

==================================================================*/

.top_doctor .text{
	position:relative;
	float:left;
	width:750px;
}
.top_doctor_img{
	float:right;
	color:#8ecd44;
	line-height: 1.4;
	font-size: 18px;
	font-family: "FOT-筑紫A丸ゴシック Std B";
}
.top_doctor_img dt{
	margin-bottom:7px;
	font-size:15px;
}
.top_doctor_img dd{
	text-align: center;
	margin-top: 10px;
}
.top_doctor_img dd span{
	display:block;
	letter-spacing:2px;
	font-size:13px;
	font-family: "Times New Roman", Times, serif;
	font-weight:400;
	color:#C3AF97;
}

.top_doctor .btn01{
	float:right;
	width:240px;
}
.top_doctor .btn01 a{
	display:block;
}



















/*==================================================================

	$doctor

==================================================================*/

.doctor_greet .text{
	float:left;
	width:750px;
	line-height: 2.2;
}

.doctor_carr{
	display:flex;
	flex-wrap:wrap;
	  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.doctor_carr h3.tit02{
	margin-bottom:7px;
}
.doctor_carr_sec1{
	width: 100%;
	padding: 20px 30px;
	background-color:#f2efe3;
	font-size:14px;
}
.doctor_carr_sec1:last-child{
	margin-right:0;
}
.doctor_carr .tb02 td,.doctor_carr .tb02 th{
	font-size:14px;
}
.doctor_carr_sec1 table{
	width:100%;
}



/*==================================================================

	.news

==================================================================*/

.top_news{
	background: #f8f6ee;
	padding-top: 60px;
	padding-bottom: 60px;
}
.top_news h3{
	float: left;
	width: 208px;
	text-align: center;
	font-size: 30px;
	padding-top: 10px;
	color: #555;
	font-family: "FOT-筑紫A丸ゴシック Std B";
}
.top_news h3 span{
	display: block;
	font-size: 15px;
	color: #8ecd44;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	margin-top: 5px;
}
.top_news .btn{
	position: absolute;
	left: 0;
	top:115px;
}
.top_news_flame{
	float: right;
	width: 947px;
	box-sizing: border-box;
	position: relative;
	padding:32px 48px;
	background: #fff;
}
.top_news_flame:before{
	background: url(../images/fukidashi.png) no-repeat;
	width: 57px;
	height: 50px;
	left: -46px;
	top:40px;
	position: absolute;
	content: "";
}
.news_text ul li{
	margin-bottom: 6px;
}
.news_text ul li a{
	display: block;
	color: #333;
	line-height: 33px;
	letter-spacing: 1.5px;
	width: 100%;
	white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
	box-sizing:border-box;
}
.news_text ul li a:hover{
	color: #a3d194;
}
.news_text ul li a span{
	display: inline-block;
	width: 124px;
	margin-right: 30px;
	text-align: center;
	background: #a3d194;
	color: #fff;
}
.news_text ul li:nth-child(2n) a span{
	background: #e1c386;
}
.news_text{
}
.news_text p {
	margin-bottom:10px;
}
/* タイトル */
.news_text p strong{
	margin-left:20px;
	font-size:17.5px;
	font-family:  "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
}
/* 日付 */
.date{
	margin-right:10px;
	color: #a3d194;
}
/* お知らせのブロックのボーダー */
.news_text .line{
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom:1px solid #eee;
}
/* お知らせの高さ */
.scroll_area{
	height:111px;
}



/*==================================================================

	$access

==================================================================*/

.access_guide{
	margin-bottom:20px;
	font-weight:bold;
}
.access_map{
	margin-bottom:40px;
}
.access_map dt{
	margin-bottom:10px;
	text-align: center;
}
.access_map dt i{
	margin-right:7px;
}
.access .btn02{
	text-align:center;
	margin-bottom:50px;
}
.access_info{
	border: 4px solid rgb(237, 237, 237);
	padding: 25px 30px 5px;
}
.access_info dt i{
	margin-right:7px;
}
.access_train,.access_bus,.access_car,.access_bike{
	margin-bottom:25px;
}
.access_train dt,.access_bus dt,.access_car dt,.access_bike dt{
	padding-left: 0;
	margin-bottom:5px;
	font-size:17px;
	font-weight:bold;
}
.access_train dd,.access_bus dd,.access_car dd,.access_bike dd{
	font-size:14.5px;
}

.access_list_box{
  display: flex;
	display: -ms-flex;
  flex-wrap: wrap;
  flex-wrap: -ms-wrap;
  margin-bottom: 0px;
}

.access_list_box .list{
  width: 32%;
	margin-right: 2%;
  margin-bottom: 28px;
}
.access_list_box .list:nth-child(3n) {
	margin-right: 0;
}
.access_list_box .list figure{
	width: 100%;
	height: auto;
  margin-bottom: 16px;
	background-color: #D9D9D9;
}
.access_list_box .list p{
  display: flex;
	display: -ms-flex;
  line-height: 1.5;
  margin-bottom: 0;
}

.access_list_box .list p span{
  display: block;
  margin-right: 8px;
  padding: 8px 0;
  min-width: 32px;
  width: 32px;
  height: 32px;
  background: #8ecd44;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-family: adobe-garamond-pro, serif;
  font-weight: 400;
  box-sizing: border-box;
  font-size: 18px;
}

.access_list_box .last_list{
  margin-right: 34%;
}

/*==================================================================

	$clinic

==================================================================*/

/* 院内スライド（サムネイル右、1列） */
.clinic_slides1{
}
.clinic_slides1 .flexslider{
	position:relative;
	float:left;
	width:82%;
}
.clinic_slides1 .flexslider li div{
	display:table;
	position:relative;
	margin-top:-60px;
	margin-left:20px;
	background-color: rgba(255,255,255,0.9);
}
.clinic_slides1 .flexslider p{
	display:table-cell;
	padding:8px 10px;
	vertical-align:middle;
	font-size:16px;
	font-weight:bold;
	color:#002A64;
}

.clinic_slides1 .flex-control-thumbs .flex-active img{
	border: 5px solid #aaa;
}
.clinic_slides1 .flex-control-nav.flex-control-thumbs{
	position:absolute;
	right: -22%;
	top: 0;
	width: 15%;
}
.clinic_slides1 .flex-control-thumbs li {
	position:relative;
	width: 96%;
	margin: 0 0 0 4%;
	background-color:#fff;
}



/* 院内スライド（サムネイル下） */

.clinic_slides2{
	padding-bottom:100px;
}
.clinic_slides2 .flexslider{
	position:relative;
}
.clinic_slides2 .flex-control-thumbs img:hover {
	opacity: 1;
}
.clinic_slides2 .flexslider li div{
	display:table;
	position: absolute;
	margin-top:-60px;
	margin-left:20px;
	background-color: rgba(255,255,255,0.9);
}
.clinic_slides2 .flexslider p{
	display:table-cell;
	padding:8px 10px;
	vertical-align:middle;
	font-size:16px;
	font-weight:bold;
	color:#88bc77;
}
.clinic_slides2 .flex-control-thumbs {
	margin: 10px 0px 0px;
	position: absolute;
	overflow: hidden;
	z-index: 10;
	bottom: -100px;
	width: 100%;
	right: 0px;
	left: 0px;
	padding: 0px 2%;
}
.clinic_slides2 .flex-control-thumbs li {
	width: 15%;
}

.clinic_slides2 .flex-control-thumbs img {
	width: 100%;
	height: auto;
	display: block;
	opacity: 0.5;
	cursor: pointer;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}



/* 院内スライド（サムネイル下、スライドの上にタイトル、説明文） */
.clinic_slides3{
}
.clinic_slides3 .flexslider{
	position:relative;
	float:left;
	width:82%;
}
.clinic_slides3 .flexslider li div{
	display:table;
	position:absolute;
	width:94%;
	height:80px;
	margin-top:-95px;
	margin-right:3%;
	margin-left:3%;
	background-color: rgba(255,255,255,0.9);
}
.clinic_slides3 .flexslider h4,.clinic_slides3 .flexslider p{
	display:table-cell;
	padding:8px 15px;
	box-sizing:border-box;
	vertical-align:middle;
	text-align:left;
}
.clinic_slides3 .flexslider h4{
	width:20%;
	font-size:16px;
	font-weight:bold;
	color:#002A64;
}
.clinic_slides3 .flexslider p{

}

.clinic_slides3 .flex-control-thumbs .flex-active img{
	border: 5px solid #aaa;
}
.clinic_slides3 .flex-control-nav.flex-control-thumbs{
	position:absolute;
	right: -22%;
	top: 0;
	width: 15%;
}
.clinic_slides3 .flex-control-thumbs li {
	position:relative;
	width: 96%;
	margin: 0 0 4% 4%;
	background-color:#fff;
}



/* 院内スライド（サムネイル下、タイトル、説明文下） */

.clinic_slides4{
	padding-bottom:100px;
}
.clinic_slides4 .flex-control-thumbs {
	margin: 10px 0px 0px;
	position: absolute;
	overflow: hidden;
	z-index: 10;
	bottom: -40px;
	width: 100%;
	right: 0px;
	left: 0px;
	padding: 0px 2%;
}
.clinic_slides4 .flex-control-thumbs li {
	width: 15%;
}

.clinic_slides4 .flex-control-thumbs img {
	width: 100%;
	height: auto;
	display: block;
	opacity: 1;
	cursor: pointer;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.clinic_slides4 .flex-control-thumbs img:hover {
	opacity: 1;
}
.clinic_slides4 .flexslider li div{
	display:table;
	position: absolute;
	bottom:-80px;
	margin-left:20px;
	background-color: rgba(255,255,255,0.9);
}
.clinic_slides4 .flexslider h4,.clinic_slides4 .flexslider p{
		display:table-cell;
	padding:8px 10px;
	box-sizing:border-box;
	vertical-align:middle;
}
.clinic_slides4 .flexslider h4{
	width:20%;
	font-size:16px;
	font-weight:bold;
	color:#002A64;
}
.clinic_slides4 .flexslider p{
}
/* 院内スライド（サムネイル下、タイトル、説明文下） */

.clinic_slides5{
	padding-bottom:100px;
}
.clinic_slides5 .flex-control-thumbs {
	margin: 10px 0px 0px;
	position: absolute;
	overflow: hidden;
	z-index: 10;
	bottom: -40px;
	width: 100%;
	right: 0px;
	left: 0px;
	padding: 0px 2%;
}
.clinic_slides5 .flex-control-thumbs li {
	width: 15%;
}

.clinic_slides5 .flex-control-thumbs img {
	width: 100%;
	height: auto;
	display: block;
	opacity: 1;
	cursor: pointer;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.clinic_slides5 .flex-control-thumbs img:hover {
	opacity: 1;
}
.clinic_slides5 .flexslider li div{
	position: absolute;
	bottom:-80px;
	width: 100%;
	margin-left:20px;
	background-color: rgba(255,255,255,0.9);
}

.clinic_slides5 .flexslider h4{
	padding:8px 10px;
	font-size:16px;
	font-weight:bold;
	color:#002A64;
	text-align:center;
}

/* 院内スライド6 */
.clinic_slides6 .flexslider li div{
	position:absolute;
	bottom:0;
	margin:10px;
	padding:10px 20px;
	background:rgba(255,255,255,0.8);
}
.clinic_slides6 .flex-control-thumbs li{
	width:calc(100% / 5 - 5px);
	margin:0;
	padding:6px 6px 0 0;
}
.flex-control-thumbs li:nth-child(5n){
	padding-right:0;
}


/* 医院概要 */

.clinic_sec1{
	position:relative;
}
.clinic_sec1 ul{
	margin-bottom:15px;
}
.clinic_sec1 li{
	padding: 8px 0;
	border-bottom:1px dotted #88bc77;
}
.clinic_sec1 li:first-child{
	padding:0 0 8px 0 ;
}
.clinic_sec1 li:last-child{
	border:none;
}
.clinic_sec1 dl:after {
	display: block;
	clear: both;
	content: "";
}
.clinic_sec1 dt{
	float:left;
	box-sizing:border-box;
	width:25%;
	padding-left:2px;
	font-weight:bold;
	color: #88bc77;
}
.clinic_sec1 dd{
	float:left;
	width:75%;
}
.clinic_sec1 .schedule .tb01{
	width:80%;
	border: 20px solid #88bc77;
	background: #88bc77;
}
.clinic_sec1 .schedule .tb01 tr:first-child th,
.clinic_sec1 .schedule .tb01 tr:first-child td{
	font-weight:bold;
}
.clinic_sec1 .schedule .tb01 tr:first-child{
}
.clinic_sec1 .schedule li{
	border-bottom:none;
	color: #88bc77;
	
}





/*==================================================================

	$facilities

==================================================================*/



/* 機器紹介1 */
.facilities_equip dl{
	float:left;
	width:42.3%;
	min-height:280px;
	margin-bottom:30px;
	margin-left:3.4%;
	padding:3%;
	border-top:4px solid #9397BE;
	background-color:#f7f7f7;
	text-align:justify;
	font-size:14px;
}
.facilities_equip dl:nth-child(odd){
	margin-left:0;
}

/* 機器紹介名前 */
.facilities_equip dt{
	margin-bottom:14px;
	padding-bottom:10px;
	line-height: 1.7;
	font-size:17px;
	font-weight:bold;
	text-align:left;
}
.facilities_equip dt span{
	display:block;
	font-size:15px;
}
.facilities_equip_img{
	float: right;
	width:50%;
	margin-left:20px;
}
.facilities_equip_img img{
	width:100%;
}




/* 機器紹介2 */
.facilities_equip2{
	display:flex;
	flex-wrap:wrap;
}
.facilities_equip2 dl{
	width:31%;
	margin-bottom:30px;
	margin-right:3.5%;
	background-color:#f7f7f7;
	text-align:justify;
	font-size:14px;
}
.facilities_equip2 dl:nth-child(3n){
	margin-right:0;
}

/* 機器紹介名前 */
.facilities_equip2 dt{
}
.facilities_equip2 dt img{
	width:100%;
}
.facilities_equip2 dd{
	padding: 10px 15px 18px;
	line-height: 1.35;
}
.facilities_equip2 dd h4{
	text-align:center;
	font-size:17px;
	font-weight:bold;
}
.facilities_equip2 dd p{
	margin-top:7px;
}



/* 機器紹介3 */
.facilities_equip3{
	display:flex;
	flex-wrap:wrap;
}
.facilities_equip3 dl{
	width:47.5%;
	margin-bottom:35px;
	margin-right:5%;
	background-color:#f7f7f7;
	text-align:justify;
	font-size:14px;
}
.facilities_equip3 dl:nth-child(even){
	margin-right:0;
}

/* 機器紹介名前 */
.facilities_equip3 dt{
}
.facilities_equip3 dt img{
	width:100%;
}
.facilities_equip3 dd{
	padding: 10px 15px 18px;
	line-height: 1.35;
}
.facilities_equip3 dd h4{
	text-align:center;
	font-size:17px;
	font-weight:bold;
}
.facilities_equip3 dd p{
	margin-top:7px;
}





/*==================================================================

	$qa

==================================================================*/

.qa1{
}
.qa1 dl{
	margin-bottom:25px;
	padding-bottom:25px;
	border-bottom:1px dotted #c1c1c1;
}
.qa1 dl dt{
	position:relative;
	margin-bottom: 15px;
	padding-left:40px;
	font-weight:bold;
}
.qa1 dl dt:before{
	position: absolute;
	top:-5px;
	left:0;
	margin-right:7px;
	line-height: 1;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-weight:normal;
	font-size:28px;
	color:#a3d194;
	content:"Q.";
}
.qa1 dl dd{
	position:relative;
	padding-left:40px;
}
.qa1 dl dd:before{
	position: absolute;
	top:-5px;
	left:0;
	margin-right:7px;
	line-height: 1;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size:28px;
	color:#e1c386;
	content:"A.";
}


/*==================================================================

	.breadcrumb（ぱんくず）

==================================================================*/
.breadcrumbs {
	position: relative;
	max-width: 1150px;
    width: auto;
	margin: 0 auto 30px;
	padding: 0 6%;
	font-size: 14px;
	z-index: 998;
}

.breadcrumbs:last-child {
	margin: 0 auto;
}

.breadcrumbs i {
	/*margin-left: 35px;*/
	margin-right: 5px;
}
.breadcrumbs a:hover {
	text-decoration: underline;
}
.breadcrumbs li {
	float: left;
	margin-right: 5px;
}
.breadcrumbs li:after {
    font-family: FontAwesome;
    content: ">";
    padding-left: 10px;
}
.breadcrumbs li:last-child:after {
    content: "";
}
.breadcrumbs li:last-child a{
	color:#d04634 !important;
}
.pink_txt{
	background-color: #f8eeee;
	padding: 10px 20px;
	margin: 15px auto 0;
}
.pink_box{
	border: solid 5px #f5dfdf;
	padding: 10px 20px;
	margin: 15px auto 0;
	color: #f66767;
}
.medical_box{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.medical_box .img_l{
	width: 30%;
}
.medical_box .img_l img{
	width: 100%;
}
.medical_box .text{
	width: 70%;
	padding-left: 30px;
}