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



body {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
	color:#212121;
	font-size:16px;
	font-weight:500;
	line-height:1.75;
	letter-spacing:0.05em;
	text-align:justify;
	word-wrap: break-word;
  overflow-wrap: break-word;
}
a {
	color: #89765C;
	text-decoration: none;
}
a:hover {
	color:#212121 ;
}
::selection{
	background-color:#99C1DA;
}
::-moz-selection{
	background-color:#99C1DA;
}

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



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

	header

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

header {
	width:100%;
	height: 155px;
}
header .inner{
	position:relative;
	width:1080px;
	height: inherit;
	box-sizing:border-box;
	margin:auto;
	display: flex;
	z-index: 1;
}
/* ロゴ */
header .header_logo{
}
header .header_logo{

	padding: 15px;
}
header img{
	height:auto;
	width:141px;
}
.header_logo img {
	width: 141px;
	height: 121px;
}
.nav_inner{
	display: block;
}

.header_web {
	position: absolute;
	top: 20px;
	right: 0;
}
.header_web a {
	display: block;
	position: relative;
	padding: 19px 37px;
	background-color: #99896f;
	color: #fff;
	/*border: #89765C solid 1px;*/
	font-size: 18px;
	font-family: 'EB Garamond', serif;
	text-align: center;
}
.header_web a:hover {
	background-color: #B4A693;
}
.header_web a span {
	display: inline-block;
	position: relative;
	top: -5px;
	margin-right: 8px;
}
.header_web a span img {
	width: 21px;
	height: auto;
}
.header_line {
	position: absolute;
	top: 20px;
	right: 195px;
}
.header_line a {
	display: block;
	position: relative;
	padding: 5px 20px;
	background-color: #00B900;
	color: #fff;
	/*border: #fff solid 1px;*/
	font-size: 18px;
	font-family: 'EB Garamond', serif;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.header_line a:hover {
	background-color: #77d077;
}
.header_line a span {
	display: inline-block;
	position: relative;
	top: -4px;
	margin-right: 8px;
}
.header_line a span img {
	width: 21px;
	height: auto;
}
img.line{
	width: 60px!important;
	margin-left: 10px;
}
.header_instagram {
	position: absolute;
	top: 20px;
	right: 434px;
}
.header_instagram img{
	width: 185px;
}
.header_youtube {
	position: absolute;
	top: 20px;
	right: 640px;
}
.header_youtube img{
	width: 185px;
}
.header_instagram a:hover {
	opacity: 0.5;
}
/*============================================================================

	nav

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

nav {
	position: absolute;
	height:70px;
	z-index:9999;
	top: 80px;
}
nav ul{
	width:910px;
	height: inherit;
	margin:0 auto;
	text-align:center;
	display: flex;
	justify-content: flex-end;
}
nav li {
	position:relative;
	height:inherit;
}
nav li a{
	display: table;
	padding: 0 17px;
	vertical-align:middle;
	line-height: 85px;/* 上下中央寄せのためにnavのheightと同じ値にする */
	font-size:16px;
	font-weight:bold;
	text-align:center;
	color: #212121;
	font-family: 'EB Garamond', serif;
	text-shadow: 0 0 1px #212121, 0 0 3px #fff, 0 0 6px #fff,0 0 10px #fff,0 0 15px #fff;
}
nav li span {
	display: table;
	padding: 0 17px;
	vertical-align:middle;
	line-height: 85px;/* 上下中央寄せのためにnavのheightと同じ値にする */
	font-size:16px;
	font-weight:bold;
	text-align:center;
	font-family: 'EB Garamond', serif;
	text-shadow: 0 0 1px #212121, 0 0 3px #fff, 0 0 6px #fff,0 0 10px #fff,0 0 15px #fff;
}
nav li a:hover,
nav li.active2 a{
	color:#AEA38A;
}
nav li a span{
	position:relative;
}

/* ホバーのボーダー */
nav li a span::before{
    position: absolute;
	left: 0;
	right:0;
	bottom: -7px;
	width:100%;
	height:1px;
	margin:auto;
	background-color: #3D4AA5;
	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.fixed{
	background-color:rgba(255,255,255,0.5);
	width: 100%;
	text-shadow: none!important;
}
nav.fixed ul{
	justify-content: center;
}


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

nav ul li div {
	position: absolute;
	display:none;
	width:250%;
	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;
	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;
}



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

	#mainvisual

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

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

#mainvisual{
	display:block;
	position:relative;
	height: 240px;
	background-image:url(../images/slider01.png);
	background-color:#f0f0f0;
	background-position:center ;
	background-repeat:no-repeat;
}
#mainvisual .inner{
	display:table;
	position:relative;
	height: inherit;
	width:1080px;
	margin: 0 auto;
	background-repeat:no-repeat;
	/*z-index: 100;*/
}

/* medical11*/
#mainvisual.medical11{
	height: 280px;
	background-image:url("../images/medical11_bg.png");
}
.mainvisual_headline h1.medical11{
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
	color: #fff;
}
.mainvisual_headline p.medical11 {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
	color: #fff;
}
/* キャッチフレーズ */
.mainvisual_catch {
	position:absolute;
	top: 260px;
	bottom:0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 100;
}
.mainvisual_catch h2 {
	margin-bottom: 20px;
	color: #89765C;
	text-align: center;
	font-size: 27px;
	font-family: 'EB Garamond', serif;
	text-shadow:0 0 5px rgba(255,255,255,0.7);
	line-height: 2;
}

.mainvisual_open{
	position:absolute;
	bottom: 26px;
	right: 17px;
	width: 347px;
	z-index: 100;
}
.mainvisual_open img{
	width:100%;
	height: auto;
}
.mainvisual_doctor {
	position: absolute;
	bottom: 100px;
	left: 16px;
	z-index: 100;
	width: 315px;
}
.mainvisual_doctor img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}
.only_sp_area {
	display: none;
}

.top_bnr_doctor {
	position: absolute;
	left: 0;
	right: 0;
	width: 1080px;
	margin: -7.5rem auto 0;
	text-align: right;
}
.top_bnr_doctor img {
	width: 250px;
}

.slide-img {
	position: relative;
}

.sp{
	
	display:none;
	
}


.main_point {
	position: absolute;
	bottom: 18px;
	left: 15px;
	display: flex;
}
.main_point h3 {
	padding: 14px 37px;
	font-family: 'EB Garamond', serif;
	font-size: 21px;
	color: #89765C;
	text-align: center;
	background-color: rgba(174,163,138,0.7);
}
.main_point p {
	padding: 14px 37px;
	font-family: 'EB Garamond', serif;
	font-size: 21px;
	color: #fff;
	text-align: center;
	background-color: rgba(33,33,33,0.7);
}

/* 下層ページの見出し */
.mainvisual_headline {
	display: table-cell;
	padding-bottom:2px;
	letter-spacing: 0.15em;
	vertical-align: middle;
	text-align: center;
	text-shadow: 0 0 5px rgba(255,255,255,0.7);
}
.mainvisual_headline h1{
	font-weight:bold;
	font-size: 27px;
	color: #212121;
	font-family: 'EB Garamond', serif;
}
.mainvisual_headline p{
	display:inline-block;
	font-size:15px;
	color: #C1A566;
	font-family: 'EB Garamond', serif;
}

/* 飾りの英語の棒 */
.mainvisual_headline p::before,
.mainvisual_headline p::after{
	position: relative;
	content:"-";
}
.mainvisual_headline p::before{
	left:-0.5em;
}
.mainvisual_headline p::after{
	right:-0.5em;
}

/* 背景変更用 */
#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-top:100px;
	padding-bottom: 152px;
	background-color: #fff;
	position: relative;
}

#contents{
	position:relative;
	width:1080px;
	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:#AEA38A;
}
.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-color:#fff;
}


/* フッターの医院概要 */
.footer_info{
	background-color:#EEEBE6;
}
.footer_info .inner{
	width:1080px;
	margin:0 auto;
	padding:76px 0 55px;
}
.footer_logo {
	text-align: center;
	margin-bottom: 21px;
}
.footer_logo a img {
	width: 154px;
	height: auto;
}
.footer_message {
	width: 81%;
	margin: 0 auto 50px auto;
	background-color: #AEA38A;
	color: #fff;
	text-align: center;
	box-sizing: border-box;
	padding: 15px 20px 17px;
}
.footer_message p {
	font-size: 14px;
	line-height: 2.2;
}

.footer_info_wrap {
	display: flex;
	justify-content: space-between;
}
.footer_info_left {
	width: 41% ;
}
.footer_info_right {
	width: 49.5%;
}

.footer_tel_wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}
.footer_tel_wrap li.footer_tel {
	width: 48%;
}
.footer_tel_wrap li.footer_web {
	width: 41%;
}
.footer_tel a {
	position: relative;
	padding-left: 43px;
	font-family: 'EB Garamond', serif;
	font-size: 30px;
	letter-spacing: 0;
	color: #89765C;
}
.footer_tel a:before {
	position: absolute;
	top: 4px;
	left: 0;
	content: "";
	background: url(../images/top_info_tel_icon.png) no-repeat top center;
	width: 33px;
	height: 32px;
}
.footer_web a {
	display: block;
	position: relative;
	padding: 9px 37px;
	background-color: #89765C;
	color: #fff;
	font-size: 18px;
	font-family: 'EB Garamond', serif;
	text-align: center;
}
.footer_web a:hover {
	background-color: #B4A693;
}
.footer_web a span {
	display: inline-block;
	position: relative;
	top: -5px;
	margin-right: 8px;
}
.footer_web a span img {
	width: 21px;
	height: auto;
}
.footer_desc {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 21px;
}
.footer_desc dt {
	width: 21%;
}
.footer_desc dd {
	width: 79%;
	line-height: 2;
}

/* 診療時間（医院案内、アクセス共通） */
.footer_info_sche .tb01 {
	width: 100%;
}
.footer_info_sche .tb01 th,
.footer_info_sche .tb01 td {
	color: #888888;
	border: 1px solid #888888;
}

.footer_info_sche .tb01 td {
	padding: 5px 10px 3px 10px;
}
.schedule p{
	margin-left:22px;
	margin-bottom:2px;
}
.schedule p strong{
	color:#AEA38A;
}
.schedule p:last-child{
	margin-bottom:0;
}
.footer_info_sche .schedule_note {
	color: #888888;
}
.schedule_note{
	margin-left:15px;
}
.schedule_note li{
	display:inline-block;
	margin-right:2em;
	font-size: 15px;
}

/* google-map */
.google-map iframe {
  width:100%;
	height: 229px;
  vertical-align: bottom;
}
.google-map {
  position: relative;
	margin-bottom: 9px;
}

.footer_toho {
	padding: 13px;
	text-align: center;
	border: 1px solid #888888;
}
.footer_toho p {
	color: #888888;
}
/* フッターのナビ */
.footer_navi{
	background: url(../images/footer_navi_bg.png) no-repeat top center; 
	background-size: cover;
}
.footer_navi .inner{
	width:1080px;
	margin:0 auto;
	padding:60px 0 43px;
}
.footer_navi ul{
}

.footer_navi ul {
	position:relative;
	width:100%;
	z-index:9999;
}
.footer_navi ul{
	width:1080px;
	display: flex;
	justify-content: center;
	height:inherit;
	margin: 0 auto 45px auto;
	text-align:center;
}
.footer_navi ul li {
	position:relative;
	height:inherit;
}
.footer_navi ul li a{
	padding: 0 17px;
	vertical-align:middle;
	line-height: 1;
	font-size:18px;
	font-family: 'EB Garamond', serif;
	text-align:center;
	color: #212121;
}
.footer_navi ul li a:hover,
.footer_navi ul li.active2 a{
	color:#212121;
}
.footer_navi ul li a span{
	position:relative;
	padding:0 5px;
}

/* ホバーのボーダー */
.footer_navi ul li a span::before{
    position: absolute;
	left: 0;
	right:0;
	bottom: -10px;
	width:100%;
	height:1px;
	margin:auto;
	background-color: #212121;
	-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);
}
/* ページトップ */
.pagetop,
.pagetop img{
	width:50px;
	height:25px;
}
.pagetop{
	position:relative;
	margin:20px auto 20px;
	text-align:center;
	cursor:pointer;
	
}
.pagetop img{
	display:inline-block;
	position:relative;
	top:0; 
	transition:0.5s ease-in-out;
}
.pagetop:hover img{
	top:-5px;
	padding-bottom:5px;
	transform: rotateY(180deg);
}

/* コピーライト */
.copy{
	text-align: center;
}
.copy small{
	line-height:1;
	font-size:15px;
}


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

	タイトル

==================================================================*/
h2.tit01 {
	position: relative;
	margin-bottom: 47px;
	line-height: 1.6;
	color: #AEA38A;
	font-size: 20px;
	font-family: 'EB Garamond', serif;
	text-align: center;
}
h2.tit01 span {
	display: block;
	color: #212121;
	font-size: 70px;
	text-align: center;
	font-family: 'EB Garamond', serif;
	line-height: 1.2;
}
h2.tit02 {
	position: relative;
	margin-bottom: 47px;
	line-height: 1.6;
	color: #AEA38A;
	font-size: 20px;
	font-family: 'EB Garamond', serif;
	text-align: center;
}
h2.tit02 span {
	display: block;
	color: #212121;
	font-size: 48px;
	text-align: center;
	font-family: 'EB Garamond', serif;
	line-height: 1.2;
}
/*中央寄せ*/
h3.tit01 {
	position: relative;
	margin-bottom: 25px;
	padding:7px 10px 10px 15px;
	line-height: 1.4;	
	font-size: 22px;
	font-family: 'EB Garamond', serif;
	border-left:10px solid #C1A566;
	border-bottom: 1px solid #C1A566;
}


/* 左寄せ */
h3.tit02 {
	position: relative;
	margin-bottom: 30px;
	padding:14px 0;
	letter-spacing: 0.15em;
	color: #AEA38A;
	font-size: 22px;
	font-family: 'EB Garamond', serif;
	font-weight:bold;
	line-height: 1.4;
	text-align: left;
}
/* アイコンの余白 */
h3.tit02 i{
	margin-right:7px;
}
/* 飾りの英語 */
h3.tit02 span{
	display:inline-block;
	position:relative;
	letter-spacing: 2.5px;
	color: #C0AB9A;
	font-size:14.5px;
	font-family: 'EB Garamond', serif;
	font-weight: 400;
	z-index:2;
}
h3.tit02 span::before{
	margin-left:15px;
	margin-right:15px;
	content:"/";
}

h4.tit01 {
	position: relative;
	margin-bottom: 18px;
	letter-spacing: 0.15em;
	line-height: 1.4;
	color: #212121;
	font-size: 19.5px;
	font-weight:bold;
	text-align:left;
}
h4.tit01 span{
	background: linear-gradient(transparent 50%, #f9fae7 50%);
}

h4.tit02 {
	position: relative;
	margin-bottom: 18px;
	letter-spacing: 0.15em;
	line-height: 1.4;
	color: #212121;
	font-size: 19.5px;
	font-weight:bold;
	text-align:left;
	font-family: 'EB Garamond', serif;
}
h5.tit01{
	position: relative;
	margin-bottom: 12px;
	letter-spacing:0.1em;
	color: #AEA38A;
	font-size: 16px;
	font-weight: bold;
}





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

	共通

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

/*院長略歴*/
.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: #E0D0BF;
	border: 1px solid #E0D0BF;
	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:#EEEBE6;
}
.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 #EEEBE6;
	margin: 0 0 15px 0;
	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: #AEA38A;
	border: 1px solid #AEA38A;
	border-radius: 100%;
}
.list07 li i{
	margin-right:8px;
}

/*チェック*/
.list08{
	margin-bottom:30px;
	padding:35px 10px 20px 45px;
	background-color:#EEEBE6;
}
.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;
}
.list09 li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 3em;
	line-height: 2;
}
.list09 li:before {
	position: absolute;
	left: 0;
	counter-increment: list09;
	content: counter(list09);
	display: inline-block;
	width: 2em;
	background: #c1a566;
	text-align: center;
	color: #fff;
	font-weight: bold;
}



/*ボタン ゴースト*/
.btn01{
	margin-bottom:10px;
}
.btn01 a{
	display:inline-block;
	width: 100%;
	max-width: 231px;
	position:relative;
	box-sizing: border-box;
	padding:16px 40px;
	line-height:1;
	border:1px solid #89765C;
	color:#89765C;
	transition:ease-in-out 0.2s;
	font-family: 'EB Garamond', serif;
	font-size: 18px;
}
.btn01 a:hover{
	background-color:rgba(210,198,180,0.3);
}
.btn01 a::after{
	display:inline-block;
	position:absolute;
	top:20px;
	right:29px;
	width: 15px;
	height:11px;
	background-image:url(../images/arrow04.png);
	transition:0.2s ease-in-out;
	content:"";
}
.btn01 a:hover::after{
	right:21px;
}

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

.btn03{
	display: inline-block;
    width: 100%;
    max-width: 415px;
    position: relative;
    box-sizing: border-box;
    padding: 16px 30px;
    line-height: 1;
    border: 1px solid #89765C;
    color: #89765C;
    transition: ease-in-out 0.2s;
    font-family: 'EB Garamond', serif;
    font-size: 18px;
	
	
	
	
}

.btn03 a::after{
	
	display: inline-block;
    position: absolute;
    top: 20px;
    right: 29px;
    width: 15px;
    height: 11px;
    background-image: url(../images/arrow04.png);
    transition: 0.2s ease-in-out;
    content: "";
}
	
	
	




/* 画像を右寄せ　※画像サイズは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: #AEA38A;
	text-align:left;
}









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

	table

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

.nowrap{
	white-space:nowrap;
}
/*フッターの診療時間*/
.tb01{
	width: 100%;
	margin-bottom:15px;
	border-spacing: 0;
	border-collapse: collapse;
	white-space: nowrap;
}
.tb01 td,.tb01 th{
	border: 1px solid #AEA38A;
	vertical-align: middle;
	text-align: center;
	font-size: 15px;
}
.tb01 tr:first-child td {
	font-weight: normal;
}
.tb01 th{
	padding:10px 5px 9px 5px;
	line-height:1;
	white-space:nowrap;
	color: #AEA38A;
}
.tb01 td{
	padding:5px 5px 3px 5px;
}


/*医院概要*/
.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: #f0f0f0;
	white-space: nowrap;
}
.tb03 td, .tb03 th {
	padding: 12px 36px;
}
.tb03 th {
	font-weight: bold;
	white-space: nowrap;
	text-align: left;
	color: #666;
	background-color: #FAFAFA;
	font-size: 16px;
}
.tb03 th span {
	font-size: 13px;
}
.tb03 td {
	background-color: #ffffff;
	color: #666666;
	text-align: center;
}



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

	アンカーリンンク

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

/* 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 #00408f;
	font-weight:bold;
	font-size:13px;
	color:#00408f;
	text-align:center;
	vertical-align:middle;
	transition:0.1s ease-in-out;
}
.ank01 li a:hover{
	background-color:#00408f;
	color:#fff;
}
.ank01 li i{
	display:block;
	position:absolute;
	left:0;
	right:0;
	bottom:4px;
	margin:auto;
}



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

	.layout

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

/* 1つ並びのレイアウト。画像は無し、左にタイトル、右に文章 */

.layout01{
	padding-bottom:20px;
}
.layout01 dl {
    display: table;
    position: relative;
    top: 5px;
    width: 100%;
    margin-bottom: 5px;
}
.layout01 dl:before{
	position:absolute;
	top:-3px;
	left:0;
	width:100%;
	border-top: 1px solid #ededed;
	content:"";
}
.layout01 dl:last-child:after{
	position:absolute;
	bottom:-3px;
	left:0;
	width:100%;
	border-top: 1px solid #f0f0f0;
	content:"";
}
.layout01 dt,
.layout01 dd{
	display:table-cell;
	box-sizing:border-box;
}

.layout01 dt{
	width:200px;
	padding:0 3%;
	background-color:#F7F7F7;
	letter-spacing: 0.1em;
	color: #212121;
	font-size:18px;
	font-weight:bold;
	text-align:center;
	vertical-align:middle;
}
/* 数字 */
.layout01 dt em{
    display: block;
    line-height: 1;
	margin:0 8px;
	font-family: 'EB Garamond', serif;
	font-size:38px;
	font-weight:normal;
	color:#C1A566;
}
.layout01 dd{
		padding:3%;
}




/* 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:#C1A566;
	font-family: 'EB Garamond', 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;
	position:relative;
	margin-bottom:20px;
	background-color:#EEEBE6;
	padding:2%;
}
.layout03 dt,
.layout03 dd{
	display:table-cell;
	box-sizing:border-box;
	vertical-align:middle;
}
.layout03 dt {
    width: 27%;
    padding: 3%;
    background-color: #fff;
    text-align: center;
}
.layout03 dt img {
    width: 100%;
    padding-bottom: 10px;
}
.layout03 dd {
    width: 73%;
    padding: 1% 3%;
}
.layout03 dd h3,
.layout03 dd h4{
	color: #212121;
	font-size:18px;
	font-weight:bold;
}
.layout03 dd h3 em,
.layout03 dd h4 em{
	margin-right:10px;
	color:#C1A566;
	font-family: 'EB Garamond', serif;
	font-size:30px;
	font-weight: normal;
}




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

.layout04{
	padding-bottom:20px;
}
.layout04 dl{
	display:table;
	position:relative;
	margin-bottom:20px;
	background-color:#EEEBE6;
	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 h4{
	color: #212121;
	font-size:18px;
	font-weight:bold;
}
.layout04 dd h4 span{
	margin-right:10px;
	color:#C1A566;
	font-family: 'EB Garamond', serif;
	font-size:30px;
	font-weight: normal;
}



/* 1つ並びで3列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章 */
.layout05{
	padding-bottom:20px;
}
.layout05 dl{
	display:table;
	position:relative;
	margin-bottom:20px;
	background-color:#EEEBE6;
	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 h4 em{
	margin-right:10px;
	color:#C1A566;
	font-family: 'EB Garamond', serif;
	font-size:30px;
	font-weight: normal;
}
.layout05 dd h4{
	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: #AEA38A;
	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: 'EB Garamond', serif;
	font-size:38px;
	font-weight:normal;
	color:#C1A566;
}
.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;
}



/*medical11で使ってる*/

.layout09{
	padding-bottom:20px;
}
.layout09 dl {
    display: table;
    position: relative;
    top: 5px;
    width: 100%;
	background: #eeebe6;
	margin-bottom: 12px;
}
/*.layout09 dl:before{
	position:absolute;
	top:-3px;
	left:0;
	width:100%;
	border-top: 1px solid #ededed;
	content:"";
}
.layout09 dl:after{
	position:absolute;
	bottom:-3px;
	left:0;
	width:100%;
	content:"";
	border-bottom: 1px solid #ededed;
}*/
.layout09 dt,
.layout09 dd{
	display:table-cell;
	box-sizing:border-box;
}

.layout09 dt{
	width:200px;
	background-color:#89765c;
	letter-spacing: 0.1em;
	font-size:23px;
	text-align:center;
	vertical-align:middle;
	font-weight:bold;
	color:#fff;
}
/* 数字 */
.layout09 dt em{
    /*display: block;*/
    line-height: 1;
	/*margin:0 8px;
	font-family: 'EB Garamond', serif;*/
	font-size:55px;
	font-weight:bold;
	color:#fff;
}
.layout09 h4{
	font-size: 23px;
	margin-bottom: 5px;
	font-weight: bold;
	color: #5a4f41;
}
.layout09 dd{
	padding:2%;
	font-weight: bold;
}
.layout09 dd p {
    margin-bottom: 0;
	color: #212121;
}
/*==================================================================

	box

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

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

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

	.top_info

==================================================================*/
.top_news_wrap {
	padding: 49px 0 95px 0;
}
.top_news_wrap .box1 {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0;
}
.top_info {
	width: 41%;
	color: #AEA38A;
}
.top_info_wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 24px;
}
.top_info_add {
	width: 48%;
	padding: 5px 0 0 0;
}
.top_info_add p {
	font-size: 13px;
	line-height: 2;
}
.top_info_tel {
	width: 46%;
	padding: 5px 0 0 0;
}
.top_info_tel a {
	position: relative;
	padding-left: 43px;
	font-family: 'EB Garamond', serif;
	font-size: 30px;
	letter-spacing: 0;
	color: #89765C;
}
.top_info_tel a:before {
	position: absolute;
	top: 4px;
	left: 0;
	content: "";
	background: url(../images/top_info_tel_icon.png) no-repeat top center;
	width: 33px;
	height: 32px;
}

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

	.news

==================================================================*/
.top_news{
	width: 49.5%;
	box-sizing: border-box;
	padding-left: 14px;
	font-size:15px;
}
.top_news_title {
	position: relative;
}
.top_news_title h3 {
	font-size: 53px;
	font-family: 'EB Garamond', serif;
	border-bottom: 1px solid #888;
	line-height: 1;
	padding-bottom: 7px;
}
.top_news_title .top_news_more {
	position: absolute;
	top: 17px;
	right: 0;
}
.top_news_title a {
	position: relative;
	padding-right: 44px;
	font-family: 'EB Garamond', serif;
	font-size: 18px;
	color: #89765C;
}
.top_news_title a:after {
	position: absolute;
	top: 7px;
	right: 16px;
	content: "";
	background: url(../images/arrow01.png) no-repeat top center;
	width: 15px;
	height: 11px;
	transition: 0.2s ease-in-out;
}
.top_news_title a:hover:after {
	right: 8px;
}
.top_news_flame{
	padding: 0 0;
}
.news_text ul {
	padding: 23px 0 0 0;
}
.news_text li {
	padding: 12px 0;
}
.news_text li a {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	box-sizing: border-box;
	white-space: nowrap;
	color: #212121;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
}
.news_text p {
	margin-bottom:10px;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
		word-wrap: break-word;
  overflow-wrap: break-word;
}
/* タイトル */
.news_text p strong{
	margin-left:20px;
	font-size:17.5px;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
	color:#AEA38A;
}
/* 日付 */
.date{
	margin-right:10px;
	color: #212121;
}
/* お知らせのブロックのボーダー */
.news_text .line{
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom:1px solid #eee;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
}
/* お知らせの高さ */
.scroll_area{
	height:200px;
}

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

	.top_doctor

==================================================================*/
.top_concept {
	background: url(../images/top_concept_bg.png) no-repeat top center;
	background-size: cover;
	height: 411px;
}
.top_concept .box1 {
	width: 100%;
	max-width: 1080px;
	height: 411px;
	margin: 0 auto 0;
	position: relative;
		box-sizing: border-box;
	padding: 112px 0 0 0;
}
.top_concept h3 {
	position: absolute;
	top: -76px;
	left: 15px;
	font-size: 115px;
	font-family: 'EB Garamond', serif;
	line-height: 1;
}
.top_concept h4 {
	font-family: 'EB Garamond', serif;
	font-size: 25px;
	line-height: 2.2;
}
.top_concept h4 span {
	display: inline-block;
	padding-left: 25px;
}

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

	.top_reason

==================================================================*/
.top_reason {
	padding: 113px 0 195px 0;
}
.top_reason .box1 {
	margin-bottom: 0;
}
.top_reason h3 {
	font-family: 'EB Garamond', serif;
	line-height: 1;
	font-size: 70px;
	text-align: center;
}
.top_reason h3 + p {
	margin-bottom: 60px;
	font-family: 'EB Garamond', serif;
	font-size: 25px;
	color: #AEA38A;
	text-align: center;
	line-height: 1;
}
.top_reason h3 + p span {
	font-size: 40px;
	color: #C1A566;
}
.top_reason_list {
	display: flex;
}
.top_reason_list li {
	width: 33.33333333333333%;
}
.top_reason_list li a,
.top_reason_list02 li a {
	display: block;
	position: relative;
		overflow: hidden;
}
.top_reason_text {
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.3);
	width: 100%;
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
/* hoverでズーム */
.top_reason_list li a img.zoom,
.top_reason_list02 li a img.zoom{
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;	
}
.top_reason_list li a:hover img.zoom,
.top_reason_list02 li a:hover img.zoom{
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.top_reason_text_inner {
	position: relative;
	width: 91%;
	height: 91%;
	box-sizing: border-box;
	border: 1px solid #fff;
	transition: .2s;
	padding: 55px 0 0 0;
}
/* hoverでborderのアニメーション */
.top_reason_text_inner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 0;
    height: 0;
    border: 2px solid transparent;
}
.top_reason_text_inner::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 0;
    height: 0;
    border: 2px solid transparent;
}
.top_reason_text_inner:hover::before {
    width: 100%;
    height: 100%;
    border-top-color: #AEA38A;
    border-right-color: #AEA38A;
    transition: width .20s ease-out, height .20s ease-out .20s;
}
.top_reason_text_inner:hover::after {
    width: 100%;
    height: 100%;
    border-bottom-color: #AEA38A;
    border-left-color: #AEA38A;
    transition: border-color 0s ease-out .5s, width .20s ease-out .5s, height .20s ease-out .70s;
}
.top_reason_text_inner .number {
	font-family: 'EB Garamond', serif;
	font-size: 40px;
	text-align: center;
	color: #fff;
	line-height: 1;
	margin-bottom: 7px;
}
.top_reason_text_inner h4 {
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-family: 'EB Garamond', serif;
	margin-bottom: 36px;
}
.top_reason_text_inner h4 span.toho {
	position: relative;
	top: 4px;
	font-size: 11px;
	-webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}
.top_reason_text_inner .arrow {
	text-align: center;
}
.top_reason_list02 {
	display: flex;
}
.top_reason_list02 li {
	width: 25%;
}
.top_reason_list02 li a {
	display: block;
	position: relative;
}
.top_reason_list02 .top_reason_text_inner {
	width: 90%;
	height: 91%;
}
.top_reason_list02 .top_reason_text_inner .number {
	margin-bottom: 9px;
}
.top_reason_list02 .top_reason_text_inner h4 {
	line-height: 1.6;
	margin-bottom: 7px;
}
.top_reason_list02 li:first-child .top_reason_text_inner h4 {
	margin-bottom: 39px;
}

.anchor {
	margin-top: -100px!important;
	padding-top: 100px!important;
}
.anchor2 {
	margin-top: -100px;
	padding-top: 100px;
}
/*==================================================================

	.top_commitment

==================================================================*/
.top_commitment {
	background: url(../images/top_commit_bg.png) no-repeat top left;
	padding: 122px 0 103px 0;
}
.top_commitment .box1 {
	position: relative;
	margin-bottom: 0;
}
.top_commitment h3 {
	position: absolute;
	top: -197px;
	right: 10px;
	font-family: 'EB Garamond', serif;
	font-size: 115px;
	color: #C1A566;
	line-height: 1;
}
.top_commit_item {
	position: relative;
	padding: 60px 0 0 0;
}
.top_commit_item01 {
	margin-bottom: 67px;
}
.top_commit_img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 625px;
}
.top_commit_item02 .top_commit_img {
	right: 0;
	left: auto;
}
.top_commit_text {
	width:100%;
	max-width:898px;
	box-sizing: border-box;
	border: 1px solid #fff;
	margin-left: auto;
	padding: 69px 30px 80px 498px;
}
.top_commit_item02 .top_commit_text {
	margin-right: auto;
	margin-left: 0;
	padding: 40px 498px 80px 81px;
}
.top_commit_text .top_commit_en {
	margin-bottom: 9px;
	font-family: 'EB Garamond', serif;
	font-size: 15px;
	color: #AEA38A;
}
.top_commit_text h4 {
	margin-bottom: 33px;
	font-family: 'EB Garamond', serif;
	font-size: 25px;
	color: #fff;
}
.top_commit_desc {
	color: #888888;
	font-size: 15px;
	margin-bottom: 40px;
}
.top_commit_item02 .top_commit_desc {
	margin-bottom: 42px;
}
.top_commit_text .btn01 a {
	border: 1px solid #fff;
	color: #fff;
}
.top_commit_text .btn01 a::after {
	background-image: url(../images/arrow03.png);
}

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

	.top_orthodontics

==================================================================*/
.top_orthodontics {
	padding: 228px 0 0;
}
.top_orth_inner {
	padding: 68px 0 46px 0;
	background-color: #EEEBE6;
}
.top_orth_inner .box1 {
	position: relative;
	margin-bottom: 0;
}
.top_orth_text {
	position: relative;
	padding: 0 0 0 27px;
}
.top_orth_text h3 {
	position: absolute;
	top: -140px;
	left: 20px;
	font-family: 'EB Garamond', serif;
	font-size: 115px;
	line-height: 1;
}
.top_orth_text h4 {
	margin-bottom: 33px;
	font-family: 'EB Garamond', serif;
	font-size: 25px;
	color: #AEA38A;
}
.top_orth_text p {
	margin-bottom: 39px;
	font-size: 15px;
}
.top_orth_img {
	position: absolute;
	top: -163px;
	right: 20px;
}

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

	.top_medical

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

.top_medical {
	padding: 73px 0 0 0;
}
.top_medical .box1 {
	margin-bottom: 0;
}
.top_medical .text p {
	text-align:center;
}
.top_medical_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.top_medical_list a {
	display: block;
	width: 21%;
	height: 228px;
	box-sizing: border-box;
	margin-bottom: 28px;
	text-align: center;	
	background: url(../images/top_medical_bg.png) repeat top center;
}
.top_medical_list dl {
	width:100%;
	height: 100%;
}
.top_medical_list dl dt {
	margin-bottom: 12px;
	padding: 28px 0 0 0;
}
.top_medical_item02 dl dt {
	margin-bottom: 10px;
	padding: 34px 0 0 0;
}
.top_medical_item03 dl dt {
	margin-bottom: 18px;
	padding: 34px 0 0 0;
}
.top_medical_item04 dl dt {
	margin-bottom: 16px;
	padding: 31px 0 0 0;
}
.top_medical_item05 dl dt {
	margin-bottom: 21px;
	padding: 35px 0 0 0;
}
.top_medical_item06 dl dt {
	margin-bottom: 23px;
	padding: 36px 0 0 0;
}
.top_medical_item07 dl dt {
	margin-bottom: 15px;
	padding: 28px 0 0 0;
}
.top_medical_item08 dl dt {
	margin-bottom: 23px;
	padding: 36px 0 0 0;
}
.top_medical_item09 dl dt {
	margin-bottom: 1px;
	padding: 29px 0 0 0;
}
.top_medical_item10 dl dt {
	margin-bottom: 16px;
	padding: 29px 0 0 0;
}
.top_medical_list dl dd {
	margin-bottom: 12px;
	font-weight:bold;
}
.top_medical_list dl dd h4 {
	font-family: 'EB Garamond', serif;
	color: #212121;
	font-size: 20px;
}
.top_medical_item01 dl dd h4 {
	margin-bottom: 16px;
}
.top_medical_item02 dl dd h4 {
	margin-bottom: 5px;
}
.top_medical_item03 dl dd h4 {
	margin-bottom: 15px;
}
.top_medical_item04 dl dd h4 {
	margin-bottom: 15px;
}
.top_medical_item05 dl dd h4 {
	margin-bottom: 15px;
}
.top_medical_item06 dl dd h4 {
	margin-bottom: 15px;
}
.top_medical_item07 dl dd h4 {
	margin-bottom: 15px;
}
.top_medical_item08 dl dd h4 {
	margin-bottom: 15px;
}
.top_medical_item09 dl dd h4 {
	margin-bottom: 10px;
}
.top_medical_item10 dl dd h4 {
	margin-bottom: 15px;
}
.top_medical_list dl dd p {
	color: #212121;
	font-weight: normal;
}
.top_medical_list a:hover .bounce {
  animation: bounce_1620 2s ease infinite;
  transform-origin: 50% 50%;
}
@keyframes bounce_1620 {
  0% { transform:translateY(0) }
  15.38462% { transform:translateY(0) }
  30.76923% { transform:translateY(-15px) }
  38.46154% { transform:translateY(0) }
  46.15385% { transform:translateY(-15px) }
  61.53846% { transform:translateY(0) }
  100% { transform:translateY(0) }
}

.medi_case{
	
	display:flex;
	justify-content: space-between;
	flex-wrap:wrap;
}

.medi_case img{
		
	padding:15px;
}



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

	$doctor

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

.doctor_greet_wrap {
	display: flex;
	justify-content: space-between;
}
.doctor_greet_wrap .text {
	width: 60%;
}
.top_doctor_img {
	width: 36%;
}
.top_doctor_img img {
	width: 100%;
	height: auto;
}
.top_doctor_img dt {
	margin-bottom: 10px;
}
.top_doctor_img dd {
	text-align: center;
	font-family: 'EB Garamond', serif;
}
.doctor_carr{
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
}
.doctor_carr h3.tit01{
	margin-bottom: 20px;
	border: none;
	padding: 0;
	text-align: center;
}
.doctor_carr_sec1{
	width: 43%;
	margin-right: 20px;
	padding: 20px 30px;
	background-color:#EEEBE6;
	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%;
}

.doctor_staff_img img {
	width: 100%;
	height: auto;
}

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

	$medical13

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

.medical13_box{
	
	display: flex;
	justify-content: space-between;
	margin:20px;
	
}
.medical13_img{
	
	display:block;
	position:relative;
	float:right;
	margin-left:30px;
	margin-bottom:0 !important;
	text-align:center;
	
	
	
}


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

	$access

==================================================================*/
.access_wrap {
	width: 100%;
	max-width: 800px;
	margin: auto;
	text-align: center;
}
.access_guide{
	margin-bottom:20px;
	font-weight:bold;
}
.access_map{
	margin-bottom:40px;
}
.access_map dt{
	margin-bottom:10px;
}
.access_map dt i{
	margin-right:7px;
	color: #AEA38A;
}
.access_map img {
	width: 100%;
	height: auto;
}
.access .btn01{
	text-align:center;
}
.access .btn01 a {
	text-align: left;
}
.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;
}

/* route */
.route_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.route_wrap dl {
	width: 30%;
	margin-bottom: 40px;
}
.route_wrap dl dt {
	margin-bottom: 10px;
}
.route_wrap dl dt img {
	width: 100%;
	height: auto;
}

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

	$line

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

.list10{
	background-color: #EEEBE6;
	border-radius: 10px;
}

.border_tit01{
	
	border: 5px solid #EEEBE6;
	padding:30px;
	margin-bottom:100px;
}

.line_note{
	
	background-color:#C1A566;
	width:200px;
	border-radius: 10px;
	padding:10px;
	text-align:center;
}

.line_step img{

	margin-top:35px;
	
}

.line_step01 img{

	margin-top:70px;
	
}

.line_yoyaku p{
	
	margin-bottom:70px;
	
}

.line_qr{
	
	display:inline-block;
    
}

.line_qr a{
	
    padding: 5px 37px;
    background-color: #00B900;
    color: #fff;
    /* border: #fff solid 1px; */
    font-size: 18px;
    font-family: 'EB Garamond', serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
	
	
}
.line02_item {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #eeebe6;
	box-sizing: border-box;
	padding: 30px 20px 20px;
}


.line_item07 h3 {
	padding: 13px 0 22px;
}


.line_list02 {
	display: flex;
	justify-content: space-between;
}

.line_list02 .anchor2 {
	width: 30%;
}


.line_point {
	position: absolute;
	top: -28px;
	left: 10px;
	font-size: 46px;
	font-family: 'EB Garamond', serif;
	line-height: 1;
}


.line_point {
	position: absolute;
	top: -28px;
	left: 0;
	right: 0;
	margin: auto;
	display: inline-block;
	text-align: center;
}

.line_list02{
	width: 30%;
}
.line-img{
	
    text-align: center;
}


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

	$reason

==================================================================*/
.reason_list01 {
	margin-bottom: 100px;
}
.reason_item {
	position: relative;
	height: 349px;
	margin-bottom: 50px;
}
.reason_img {
	position: absolute;
	top: 0;
	right: 0;
	width: 594px;
}
.reason_img img {
	width: 100%;
	height: auto;
}
.reason_text_wrap {
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	width: 540px;
	text-align: right;
}
.reason_item02 .reason_img,
.reason_item04 .reason_img{
	top: 0;
	left: 0;
	right: auto;
}
.reason_item02 .reason_text_wrap,
.reason_item04 .reason_text_wrap{
	right: 0;
	left: auto;
	text-align: left;
}
.reason_title {
	position: relative;
	display: inline-block;
	background-color: #eeebe6;
	margin: 0 0 20px 0;
	padding: 20px 40px 10px;
}
.reason_point {
	position: absolute;
	top: -28px;
	left: 10px;
	font-size: 46px;
	font-family: 'EB Garamond', serif;
	line-height: 1;
}
.reason_item02 .reason_point,
.reason_item04 .reason_point{
	right: 10px;
	left: auto;
}
.reason_title h3 {
	font-size: 24px;
	font-family: 'EB Garamond', serif;
}
.reason_text {
	background-color: #eeebe6;
	padding: 20px 40px 20px;	
}
.reason_text p {
	text-align: left;
}
.reason_list02 {
	display: flex;
	justify-content: space-between;
}
.reason_list02 .anchor2 {
	width: 30%;
}

.reason_item01 .reason_title {
	padding: 5px 40px 10px;
}
.reason_item01 .reason_title h3 {
	white-space:nowrap;
}
.reason_item01 .reason_title h3 .toho {
	position: relative;
	top: 4px;
	font-size: 11px;
	-webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}
.reason_item01 .reason_title h3 .gofun {
	display: inline-block;
	font-size: 38px;
	color: #c1a16d;
}
.reason02_item {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #eeebe6;
	box-sizing: border-box;
	padding: 30px 20px 20px;
	text-align:center;
}
.reason02_item .reason_point {
	position: absolute;
	top: -28px;
	left: 0;
	right: 0;
	margin: auto;
	display: inline-block;
	text-align: center;
}
.reason02_item h3 {
	margin-bottom: 15px;
	font-size: 20px;
	font-family: 'EB Garamond', serif;
	text-align: center;
}
.reason_item05 h3,
.reason_item07 h3 {
	padding: 13px 0 22px;
}

/* Commitment */
.commit_item {
	margin-bottom: 80px;
}
.commit_title {
	margin-bottom: 15px;
	font-family: 'EB Garamond', serif;
	font-size: 90px;
	color: rgba(61,61,61,0.14);
	line-height: 1;
	text-align: center;
}
.commit_img_wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.commit_img {
	width: 48%;
}
.commit_img_wrap img {
	width: 100%;
	height: auto;
}
.commit_text {
	padding: 30px 40px;
	background-color: #eeebe6;
}
.commit_text h4 {
	font-size: 24px;
	font-family: 'EB Garamond', serif;
	margin-bottom: 20px;
}

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

	$first

==================================================================*/
.liner {
	font-weight: bold;
	background: linear-gradient(transparent 50%, #ffdfea 50%);
}

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

	$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{
	width:100%;
	max-width: 800px;
	margin: auto;
	padding-bottom:265px;
}
.clinic_slides2 .flexslider{
	position:relative;
}
.clinic_slides2 .flex-control-thumbs img:hover {
	opacity: 1;
}
.clinic_slides2 .flexslider li div{
	position: absolute;
	margin-top:-60px;
	margin-left:20px;
	background-color: rgba(255,255,255,0.9);
}
.clinic_slides2 .flexslider p{
	padding:8px 10px;
	vertical-align:middle;
	font-size:16px;
	font-weight:bold;
	color:#002A64;
}
.clinic_slides2 .flex-control-thumbs {
	margin: 10px 0px 0px;
	position: absolute;
	overflow: hidden;
	z-index: 10;
	bottom: -100px;
	width: 100%;
	right: 0px;
	left: 0px;
	bottom: -189px;
	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;
	font-size:14.5px;
}
.clinic_sec1 a {
	color: #89765C;
}
.clinic_sec1 ul{
	margin-bottom:15px;
}
.clinic_sec1 li{
	padding: 8px 0;
	border-bottom:1px solid #E5E6EF;
}
.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: #AEA38A;
}
.clinic_sec1 dd{
	float:left;
	width:75%;
}
.clinic_sec1 .schedule .tb01{
	border: 1px solid #AEA38A;
	width:100%;
	font-size:14px;
}
.clinic_sec1 .schedule .tb01 th,
.clinic_sec1 .schedule .tb01 td{
	color:#AEA38A;
}
.clinic_sec1 .schedule .tb01 tr:first-child{
}
.clinic_sec1 .schedule li{
	border-bottom:none;
	
}





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

	$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:#EEEBE6;
	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:#EEEBE6;
	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:#EEEBE6;
	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:"Times New Roman", Times, serif;
	font-weight:normal;
	font-size:28px;
	color:#262E7C;
	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:"Times New Roman", Times, serif;
	font-weight:normal;
	font-size:28px;
	color:#C0AB9A;
	content:"A.";
}

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

	$medical

==================================================================*/
.text .img_fr img {
	width: 100%;
	max-width: 300px;
	height: auto;
}




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

	$medical07

==================================================================*/
.medical07_img{
	display: flex;
	justify-content: space-between;
}

.medical07_img img{
	margin:10px 10px 30px;
}





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

	$case

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

.case_list{
	display: flex;
	justify-content: flex-start;
	margin: 20px auto 50px;
}
.case_list li{
	width: 32%;
	margin-right: 2%;
}
.case_list li:nth-child(3n){
	margin-right: 0;
}
.case_list li img{
	width: 100%;
}
.anchor{
	display: block;
	margin-top: -70px;
	padding-top: 70px;
}

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

	.インビザラインページ

==================================================================*/
.invisalign_box{
	width: 980px;
	margin: 0 auto;
}
.invisalign_box dl{
	display:table;
	position:relative;
	margin-bottom:80px;
	padding:20px 70px;
	border: 1px solid #666;
}
.invisalign_box dt,
.invisalign_box dd{
	display:table-cell;
	box-sizing:border-box;
	vertical-align:middle;
}
.invisalign_box dt {
    width: 27%;
    background-color: #fff;
    text-align: center;
}
.invisalign_box dt img {
    width: 85%;
}
.invisalign_box dd {
    width: 73%;
    padding: 1% 3%;
	text-align: center;
}
.invisalign_box dd h3{
	font-weight:bold;
	font-family: 'EB Garamond', serif;
	line-height: 1.2;
	padding: 2% 1%;
	color: #fff;
	background: #333;
	font-size: 28px;
	margin-bottom: 20px;
}
.invisalign_box dd p{
	color:#000;
	font-family: 'EB Garamond', serif;
	font-size:23px;
	font-weight: normal;
}
.marker{
	background: linear-gradient(transparent 30%, #faffa3 70%);
	font-family: 'EB Garamond', serif;
	font-size: 20px;
}
.list08.invisalign_list {
    border: 1px solid #666;
	background-color: #fff;
}
.list08.invisalign_list li {
    border-bottom: none;
	margin-bottom: 30px;
}
/*==================================================================

	.感染症対策について

==================================================================*/
.box2.corona {
	background-color: #fff;
	box-sizing: border-box;
	width: 950px;
	margin: 0 auto;
	border: 1px solid #d3d4d4;
	padding: 60px;
}
/*==================================================================

	.breadcrumb（ぱんくず）

==================================================================*/
.breadcrumbs {
	position: relative;
	max-width: 1150px;
    width: auto;
	margin: 0 auto 30px;
	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;
}






#parallax {
height:100vh;
overflow-x:hidden;
overflow-y:auto;
	-webkit-perspective:300px;
	-moz-perspective:300px;
	-ms-perspective:300px;
	-o-perspective:300px;
	perspective:300px;
}

.layer-fore {
	-webkit-transform:translateZ(90px) scale(.7);
	-moz-transform:translateZ(90px) scale(.7);
	-ms-transform:translateZ(90px) scale(.7);
	-o-transform:translateZ(90px) scale(.7);
	transform:translateZ(90px) scale(.7);
z-index:4;
}

.layer-base {
	-webkit-transform:translateZ(0);
	-moz-transform:translateZ(0);
	-ms-transform:translateZ(0);
	-o-transform:translateZ(0);
	transform:translateZ(0);
z-index:3;
}

.layer-back {
	-webkit-transform:translateZ(-300px) scale(2);
	-moz-transform:translateZ(-300px) scale(2);
	-ms-transform:translateZ(-300px) scale(2);
	-o-transform:translateZ(-300px) scale(2);
	transform:translateZ(-300px) scale(2);
z-index:2;
}

.layer-deep {
	-webkit-transform:translateZ(-600px) scale(3);
	-moz-transform:translateZ(-600px) scale(3);
	-ms-transform:translateZ(-600px) scale(3);
	-o-transform:translateZ(-600px) scale(3);
	transform:translateZ(-600px) scale(3);
z-index:1;
}




.toho_movie{
	width: 100%;
	max-width: 675px;
	height: 380px;
	margin: 0 auto;
}
@media screen and (max-width: 640px){
	.toho_movie{
		height: 330px;
	}
}
@media screen and (max-width: 480px){
	.toho_movie{
		height: 250px;
	}
}

.youtube-wrapper{
  width:100%;
  height:0;
  padding-bottom:56.25%;
  position:relative;
	margin: -20px auto 0;
}

.youtube-wrapper p {
	text-align: center;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	font-family: 'EB Garamond', serif;
	font-size: 24px;
	color: #AEA38A;
}


.youtube-wrapper iframe{
  width:80%;
  height:80%;
  position:absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 640px){
	.youtube-wrapper{
		margin: 0 auto 20px;
	}

	.youtube-wrapper p {
		font-size: 18px;
		top: -40px;
	}

	.youtube-wrapper iframe{
		width:100%;
		height:100%;
	}
}

/*news*/
.txt_right{
	text-align: right;
}
.l-blog-pagenation{
	text-align: center;
}
.page-numbers{
	padding: 5px 10px;
	border: solid 1px #eee;
}
.page-numbers.current{
	background: #eee;
}
.l-single-pagenation{
	margin-bottom: 50px;
	text-align: center;
}
@media screen and (max-width: 640px){
	.l-post-list,
	.c-post-news-list{
		margin: 0 6% 50px;
	}
}