@charset "utf-8";
/* CSS Document */



body {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
	color:#3f3f3f;
	font-size:16px;
	font-weight:500;
	line-height:1.75;
	letter-spacing:0.05em;
	text-align:justify;
  font-feature-settings : "palt";
}
body.date {
    color: #3f3f3f;
}

a {
	text-decoration: none;
  color:#3f3f3f;
}
a:hover {
	color:#bfa46d;
}

body,
header,
footer{
	min-width:1200px;
}



/*============================================================================

	header

============================================================================*/
.fix_header_heigh_wrap{
  height: 188px;
}


header {
	width:100%;
  margin-bottom: 15px;
}
header .inner{
  display: flex;
	display: -ms-flex;
	justify-content: space-between;
	justify-content: -ms-space-between;
  
	position:relative;
	width:1200px;
  padding-top: 28px;
	box-sizing:border-box;
	margin:auto;
}
/* ロゴ */
header h1{
}
header h1{
	width:350px;
	height:63px;
}

header h1 a{
  display: block;
}
.inner.tel_web {
    position: inherit;
    align-items: center;
    justify-content: flex-end;
    width: 70%;
    margin-right: auto;
    padding-top: 10px;
}
.header_tel{
  /*width: 27.5%;
  padding-top: 7px;*/
  margin-left: auto;
  /*text-align: center;*/
  text-align: right;
}

.header_tel dt{
  padding-bottom: 3px;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: bold;
}


.header_tel dt span.text_icon{
  margin-right: 10px;
  position: relative;
  top: -2px;
  padding:6px 5px 3px 7px;
  font-size: 13px;
  border: 1px solid #454545;
  border-radius: 3px;
  line-height: 1;
  letter-spacing: 0.15em;
}

.header_tel dd a{
  color: #bfa46d;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-size: 33px;
  line-height: 1;
  letter-spacing: 0.13em;
  font-style: normal;
}
.inner.tel_web .web{
	margin-left: 30px;
	/*margin-left: 14px;*/
    background-color: #BFA46D;
    color: #fff;
    width: 200px;
	height: 50px;
	display: inline-grid;
    align-items: center;
    text-align: center;
    font-size: 20px;
	border-radius: 3px;
}
.inner.tel_web .web a{
	color: #fff;
}
.inner.tel_web .web:hover,.clinic_info dl p:hover{
	background: rgba(10,45,86,0.8);
	transition: 0.2s ease-in-out;
}
.inner.tel_web .web a::after{
	display: inline-block;
    top: 0px;
    position: relative;
    width: 7px;
    height: 12px;
    margin-left: 20px;
    content: "";
	background: url("../images/arrow04.svg") no-repeat;
    transition: ease-in-out 0.2s;
}
.access_walk{
	color: #fff;
	font-size: 14px;
    margin-top: 26px;
	margin-right: 13px;
    background: #a18546;
    padding: 2.5px 14px;
    border-radius: 5px;  
}
/*============================================================================

	nav

============================================================================*/

nav {
	z-index:9999;
}
nav ul{
  position: relative;
	width:1200px;
	margin: auto;
	text-align:right;
  z-index: 2;
}
nav li {
	display:inline-block ;
	position:relative;
	height:inherit;
}
nav li a{
	display: table;
	padding: 18px 33px;
	vertical-align:middle;
	font-size:16px;
  letter-spacing: 0.1em;
	font-weight:bold;
	text-align:center;
}

nav li:last-child a{
  padding-right: 0;
}
nav li a:hover,
nav li.active2 a{
	color:#3f3f3f;
}
nav li a span{
	position:relative;
}

/* ホバーのボーダー */
nav li a span::before{
  position: absolute;
	left: 0;
	right:0;
	bottom: -7px;
	width:100%;
	height:2px;
	margin:auto;
	background-color: #bfa46d;
	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 ul li div {
	position: absolute;
	display:none;
	width:350%;
	top: 100%;
	left:-100%;
	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;
  width: 33%;
  float: left;
	padding: 13px 20px;
	border-bottom: 1px solid rgba(191,164,109,0.4);
	line-height:1.4;
	text-align:left;
	font-size:13px;
  box-sizing: border-box;
}
nav ul li div a::after,
nav ul li div a::before{
	display:none;
}
nav ul li div a:hover {
	background-color: rgba(191,164,109,0.2);
}

/* 矢印 */
.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;
  width: 100%;
	top:0;
	left:0;
  z-index: 99999;
  background: rgba(255,255,255,0.8);
}

.fixed header .inner{
  padding-top: 6px;
}

.fixed header{
  margin-bottom: -8px;
}

.fixed .header_tel dt{
  display: none;
}

.fixed header h1{
  height: 50px;
  width: 280px;
}

.fixed  nav li a{
  padding: 0px 33px 8px;
}

.fixed .nav_slidebtm a{
  padding-top: 12px;
  padding-bottom: 12px;
}




/*============================================================================

	#mainvisual

============================================================================*/

/* 下層ページのメインビジュアルの高さ、背景画像（トップページの高さはtop.css参照） */
#mainvisual{
	position:relative;
  padding-top: 80px;
}

#mainvisual h2{
	position:relative;
}
/* キャッチフレーズ */
.mainvisual_catch{
	position:absolute;
  top: 170px;
  margin: auto;
	left: calc(calc(100vw - 1200px) / 2);
  letter-spacing: 0.2em;
  z-index: 1;
  animation: fade_in 0.7s 2.3s ease-in-out both;
}

.mainvisual_catch .en_tit{
  margin-bottom: 29px;
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  color: #bfa46d;
}
.mainvisual_catch h2{
  position: relative;
	/*margin-bottom: 38px;*/
	margin-bottom: 28px;
	color:#303030;
	font-size:37px;
  line-height: 1.78;
  letter-spacing: 0.2em;
}

.mainvisual_catch h2::before{
  position: absolute;
  left: -23px;
  top: 14px;
  width: 16px;
  height: 19px;
  background: url("../images/double-quotation01.svg") no-repeat;
  content: "";
}

.mainvisual_catch h2 span{
  position: relative;
  padding-left: 24px;
}

.mainvisual_catch h2 span::before{
  position: absolute;
  right: 47px;
  top: 18px;
  width: 16px;
  height: 19px;
  background: url("../images/double-quotation02.svg") no-repeat;
  content: "";
}

.mainvisual_catch p{
  letter-spacing: 0.15em;
    font-size: 20px;
    line-height: 2;
    background-color: #fffffff0;
    display: inline-block;
    padding: 10px 30px;
    /*border-top: 2px solid #c5b084;*/
    /*border-bottom: 2px solid #c5b084;*/
	color: #c5b084;
	font-weight: bold;
	border-radius: 15px;
}
.mainvisual_open{
	position:absolute;
	/*top: 150px;
	right: 0;
	width:250px;*/
	top: 465px;
    left: calc(calc(100vw - 1200px) / 2);
    width: 340px;
    z-index: 1;
    animation: fade_in 0.7s 2.3s ease-in-out both;
}
.mainvisual_open img{
	width:100%;
}


.mainvisual_schedule{
  position: relative;
  width: 465px;
  margin-top: -120px;
  margin-left: auto;
  padding: 50px calc(calc(100vw - 1200px) / 2) 63px 0;
  background: #fff;
  z-index: 1;
  animation: fade_in 1s 2.5s ease-in-out both;
}

.mainvisual_schedule .schedule{
  width: 407px;
  font-size: 14px;
  margin-left: auto;
}

.mainvisual_schedule .tb01{
  margin-bottom: 8px;
}

.mainvisual_schedule .tb01 tr:first-child th{
  text-align: left;
  letter-spacing: 0.075em;
}

.mainvisual_schedule .tb01 th{
  padding: 0 1% 0 3px;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.15em;
}

.mainvisual_schedule .tb01 tr{
  border-bottom: 1px solid #dddddd;
}

.mainvisual_schedule .tb01 td{
  padding: 1.2% 2%;
  border: none;
}

.mainvisual_schedule .tb01 tr:last-child td, .mainvisual_schedule .tb01 tr:last-child th{
 border: none; 
}

.mainvisual_schedule .tb01 th{
  border:none;
}

.mainvisual_schedule .tb01 tr:first-child td:last-child{
  padding: 1.2% 0 1.2% 2%;
}

.mainvisual_schedule span.mainvisual_schedule_none{
  display: none;
}

.mainvisual_schedule .tb01 td:last-child{
  padding-right: 0;
}

.mainvisual_slide{
  height: 635px;
  width: 71.5vw;
  margin-left: auto;
  background: url("../images/mainvisual_slide1.png") no-repeat center;
  background-size: cover;
}

/* 下層ページの見出し */
#mainvisual::after{
  position: absolute;
  top: 0px;
  right: 0;
  width: 72.5vw;
  height: 370px;
  background: url(../images/mainvisual_slide1.png) no-repeat center;
  background-size: cover;
  content: "";
  z-index: 1;
}

#mainvisual .inner{
  display:flex;
  align-items: center;
  height: 365px;
  width: 100%;
  margin-left: auto;
  background: #f4f1eb;
}
.mainvisual_headline {
  position: relative;
  left: calc(calc(100vw - 1080px) / 2);
	padding-bottom:2px;
	letter-spacing: 0.15em;
	text-shadow: 0 0 5px rgba(255,255,255,0.7);
  z-index: 2;
}
.mainvisual_headline h2{
    font-size: 37px;
    letter-spacing: 0.2em;
    color: #303030;
}
.mainvisual_headline p{
    display:inline-block;
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 12px;
    color: #bfa46d;
    letter-spacing: 0.2em;
}

/* 背景変更用 */
#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{
}

#contents{
	position:relative;
	width:1080px;
	margin:0 auto;
}
#contents::after {
	display: block;
	clear: both;
	content: "";
}



#contents_left{
	float:left;
	width:720px;
}
#contents_right{
	float:right;
	width:280px;
  padding-top: 120px;
	font-size:15px;
	line-height:1.6;
}
.right_medical h3{
	text-align:center;
}
.right_medical h3 a{
  position: relative;
	display:block;
	margin-bottom: 16px;
	font-weight:bold;
	font-size:18px;
  letter-spacing: 0.2em;
	transition:0.1s ease-in-out;
}

.right_medical h3 a::after{
  position: relative;
  display: block;
  width: 23px;
  height: 8px;
  margin: auto;
  margin-top: 16px;
  background: url(../images/h3_bg.svg) no-repeat;
  content: "";
}
.right_medical ul{
}
.right_medical li{
	margin-bottom:15px;
  padding-bottom: 12px;
  font-weight: bold;
  border-bottom: 1px solid #dddddd;
}

.right_medical li a{
  display: flex;
  display: -ms-flex;
  align-items: center;
  align-items: -ms-center;
  position: relative;
}
.right_medical li a:hover::after{
  transform: translateX(8px);
}
.right_medical li a::after{
  position: absolute;
  display: inline-block;
  right: 3px;
  width: 7px;
  height: 12px;
  background: url(../images/arrow03.svg) no-repeat;
  content: "";
  transition:ease-in-out 0.2s ;
}
.right_medical li:last-child{
	margin-bottom:0;
}
.right_medical img{
	width: 32px;
  height: 36px;
  margin-right: 28px;
}





/*============================================================================

	$footer

============================================================================*/

footer {
	position:relative;
	width:100%;
  padding-top: 158px;
  background: #bfa46d;
}

.footer_inner{
  display: flex;
	display: -ms-flex;
	justify-content: space-between;
	justify-content: -ms-space-between;
  
  width: 1200px;
  margin: auto;
}

.footer_inner .logo{
  width: 163px;
  height: 117px;
}


.schedule table{
	width:100%;
}
.schedule table tr:first-child td{
}
.schedule p{
	margin-left:22px;
	margin-bottom:2px;
}
.schedule p strong{
	color:#1F2774;
}
.schedule p:last-child{
	margin-bottom:0;
}
.schedule_note{
  display: flex;
	display: -ms-flex;
	/*justify-content: space-between;
	justify-content: -ms-space-between;*/
  flex-wrap: wrap;
  flex-wrap: -ms-wrap;
	gap: 0 25px;
}
.schedule_note li:first-child, .schedule_note li:nth-child(2){
	display:inline-block;	
  padding-bottom: 8px;
  font-feature-settings : "palt";
  line-height: 1;
}

.schedule_note .schedule_number{
  font-size: 16px;
  line-height: 1;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  font-style: normal;
}

.schedule_note li:nth-child(2) span{
  color: #bfa46d;
}


/* フッターのナビ */

.footer_navi{
  width: 62.5%;
}

.footer_navi ul{
  display: flex;
	display: -ms-flex;
	justify-content: space-between;
	justify-content: -ms-space-between;
  margin-bottom: 82px;
}

.footer_navi ul li{
  line-height: 1;
}
.footer_navi ul li a{
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
}

.footer_navi ul li a span{
  position: relative;
}

/* ホバーのボーダー */
.footer_navi ul li a span::before{
  position: absolute;
	left: 0;
	right:0;
	bottom: -10px;
	width:100%;
	height:2px;
	margin:auto;
	background-color: #fff;
	-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{
	margin-bottom:45px;
  padding-right: 10px;
	text-align: right;
  color: #fff;
}
.copy small{
	line-height:1;
	font-size:12px;
	letter-spacing:0.15em;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
}











/*==================================================================

	タイトル

==================================================================*/

/*中央寄せ*/
h3.tit01 {
	position: relative;
	margin-bottom: 64px;
	letter-spacing: 0.25em;
	font-weight: bold;
}

/* 背景画像 */
h3.tit01::after{
	position: relative;
  display: block;
  width: 23px;
  height: 8px;
  margin-top: 16px;
	background: url("../images/h3_bg.svg") no-repeat;
	content: "";
}
/* 飾りの英語 */
h3.tit01 span{
  display: block;
  margin-bottom: 12px;
  font-size: 60px;
  letter-spacing: 0.1em;
  font-family: futura-pt, sans-serif;
  font-weight: 300;
  line-height: 1;
  word-break: break-all;
}

h3.center::after{
  margin: 16px auto 0;
}

/* 左寄せ */
h3.tit02 {
	position: relative;
	margin-bottom: 30px;
	padding:14px ;
	letter-spacing: 0.15em;
	color: #1F2774;
	font-size: 24px;
	font-weight:bold;
	line-height: 1.4;
	text-align: left;
}
h3.tit02::before{
	position: absolute;
	width: 40px;
	height: 62px;
	top:0;
	bottom: 0;
	left:0;
	margin: auto ;
	background-image:url(../images/tit02_bg.png);
	background-repeat:no-repeat;
	background-position: center ;
	background-size:cover;
	z-index: -1;
	content: "";
}
/* アイコンの余白 */
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: "Times New Roman", Times, serif;
	font-weight: 400;
	z-index:2;
}
h3.tit02 span::before{
	margin-left:15px;
	margin-right:15px;
	content:"/";
}

h4.tit01 {
	position: relative;
	margin-bottom: 16px;
	letter-spacing: 0.15em;
	line-height: 1.4;
	font-size: 22px;
	font-weight:bold;
}
h4.tit01 i{
	margin-right:7px;
}
h4.tit01 span{
	display:inline-block;
	position:relative;
	letter-spacing: 2.5px;
	color: #C0AB9A;
	font-size:14.5px;
	font-family: "Times New Roman", Times, serif;
	font-weight: 400;
}
h4.tit01 span::before{
	margin-left:15px;
	margin-right:15px;
	content:"/";
}

h5.tit01{
	position: relative;
	margin-bottom: 12px;
	letter-spacing:0.15em;
	color: #bfa46d;
	font-size: 18px;
	font-weight: bold;
}





/*==================================================================

	共通

==================================================================*/

/*院長略歴*/
.list01 {
	margin: 0 0 15px;
	padding: 0;
	border-width: 0 1px 1px;
}

.list01  li{
  padding: 6px 0 6px;
  border-bottom: 1px dashed #e5e5e5;
}
.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:#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:#f7f5f0;
}
.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: '';
}

/*ボタン ゴースト*/
.btn01{
	position:relative;
}
.btn01 a{
  position: relative;
	display:inline-block;
  color: #0a2d56;
  padding-bottom: 10px;
	border-bottom: 1px solid;
	font-weight:bold;
  letter-spacing: 0.1em;
	transition:ease-in-out 0.1s ;
}

.btn01 a::after{
	display:inline-block;
  top: 2px;
	position:relative;
  width: 7px;
  height: 12px;
  margin-left: 20px;
	background: url("../images/arrow02.svg") no-repeat;
	content:"";
  transition:ease-in-out 0.2s ;
}

.btn01 a:hover{
  opacity: 0.6;
}

.btn01 a:hover::after {
  transform: translateX(8px);
}


/*ボタン 白抜き*/
.btn02{
}
.btn02 a{
	display:inline-block;
	padding:8px 20px;
	border:1px solid #00408f;
	color:#00408f;
	font-weight:bold;
	transition:ease-in-out 0.2s ;
}
.btn02 a i{
	margin-right:7px;
}
.btn02 a:hover{
	background-color:#00408f;
	color:#fff;
}


/* 画像を右寄せ　※画像サイズはhtmlで調整 */
.img_fr{
	display:block;
	position:relative;
	float:right;
	margin-left:50px;
	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;
}

.under{
  padding-bottom: 3px;
  border-bottom: 1px solid;
}





/*==================================================================

	table

==================================================================*/

.nowrap{
	white-space:nowrap;
}
/*フッターの診療時間*/
.tb01{
	margin-bottom:23px;
	border-spacing: 0;
	border-collapse: collapse;
	white-space:nowrap;
}
.tb01 td,.tb01 th{
	border-bottom:1px solid #dddddd;
	vertical-align: middle;
}
.tb01 tr:last-child td,.tb01 tr:last-child th{
	border:none;
  border-right: 1px solid #d3d3d3;
}
.tb01 th:first-child{
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.15em;
}
.tb01 th{
	padding:8px 6px 6px 8px;
  border-right: 1px solid #d3d3d3;
	line-height:1;
	white-space:nowrap;
	font-weight:bold;
	text-align:left;
}

.tb01 tr:first-child td:last-child{
  padding: 8px 0px 6px 0px;
}
.tb01 td{
	padding:8px 14px 8px 15px;
  border-right: 1px solid #d3d3d3;
}

.tb01 tr:nth-child(2) td,.tb01 tr:nth-child(3) td{
  color: #bfa46d;
}

.tb01 tr td:last-child{
  border:none;
  border-bottom:1px solid #dddddd;
}
/*医院概要*/
.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;
	font-weight:bold;
	font-size:13px;
  background-color: #BFA46D;
  color: #fff;
	text-align:center;
	vertical-align:middle;
	transition:0.1s ease-in-out;
  border-radius: 3px;
}
.ank01 li a:hover{
	background: rgba(10,45,86,0.8);
}
.ank01 li i{
	display:block;
	position:absolute;
	left:0;
	right:0;
	bottom:4px;
	margin:auto;
}

.anchor{
  margin-top: -120px !important;
  padding-top: 120px !important;
}

/*==================================================================

	.layout

==================================================================*/
.layout_tit{
 letter-spacing: 0.15em;
  color: #bfa46d;
  font-size: 18px;
  font-weight: bold;
}
/* 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:25%;
	padding:0 3%;
	background-color:#f4f1eb;
	letter-spacing: 0.1em;
	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: futura-pt, sans-serif;
  font-weight: 400;
  color: #bfa46d;
	font-size:38px;
}
.layout01 dd{
		padding:3%;
}




/* 2つ並びのレイアウト。最初(dt)にタイトル、画像がその下(dd)、画像の下に文章 */
.layout02{
}
.layout02::after{
	display: block;
	clear: both;
	content: "";
}
.layout02 dl{
	width:40.2%;
	float:left;
	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;
	position:relative;
	margin-bottom:20px;
  background: #f4f1eb;
  padding: 3% 4% 4%;
}

.layout03 dl:nth-child(even) {
  background: #e8e5de;
}
.layout03 dt,
.layout03 dd{
	display:table-cell;
	box-sizing:border-box;
	vertical-align:middle;
}
.layout03 dt {
    width: 27%;
    padding-right: 5%;
    text-align: center;
}
.layout03 dt img {
    width: 100%;
}
.layout03 dd {
    width: 73%;
}
.layout03 dd h5{
	font-size:18px;
	font-weight:bold;
}
.layout03 dd h5 em{
	margin-right:10px;
	font-family: futura-pt, sans-serif;
  font-weight: 400;
	font-size:30px;
  color: #bfa46d;
}




/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色 */

.layout04{
	padding-bottom:20px;
}
.layout04 dl{
	display:table;
	position:relative;
	margin-bottom:20px;
  padding-bottom: 20px;
  border-bottom:1px solid #e5e5e5;
}
.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{
	font-size:20px;
	font-weight:bold;
}
.layout04 dd h5 span{
	margin-right:10px;
	font-family: futura-pt, sans-serif;
  font-weight: 400;
	font-size:30px;
	font-weight: normal;
  color: #bfa46d;
}



/* 1つ並びで3列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章 */
.layout05{
	padding-bottom:20px;
}
.layout05 dl{
	display:table;
	position:relative;
	margin-bottom:20px;
	background-color:#f3f0ea;
	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:#f4f1eb;
	letter-spacing: 0.1em;
	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: futura-pt, sans-serif;
  font-weight: 400;
	font-size:38px;
	color:#bfa46d;
}
.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 dt{
  margin-bottom: 0;
	text-align: center;
}
.layout07 dl dt img{
  width: 100px;
  
}
.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;
}


.layout09 dl{
  display: flex;
	display: -ms-flex;
  box-sizing: border-box;
  background: #f4f1eb;
  padding: 3%;
  margin-bottom: 30px;
}

.layout09 dl:nth-child(even){
  background: #f3f3f3;
}

.layout09 dl dt{
  display: flex;
  display: -ms-flex;
  justify-content: center;
  justify-content: -ms-center;
  align-items: center;
  align-items: -ms-center;

  width: 26%;
  box-sizing: border-box;
  padding: 3% 0;
  background: #fff;
}

.layout09 dl dt img{
  width: 100%;
}

.layout09 dl dd{
  width: 74%;
  margin-left: 5%;
}

.layout09 dd h5 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: bold;
}
/* layout10 */
.layout10{
  position: relative;
}
.layout10 .flow_box{
  position: relative;
  display: flex;
  padding: 32px;
  background: #fff;
}
.layout10 .flow_box::before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  margin: auto;
  width: 4px;
  height: calc(100% - 4px);
  border-right: var(--sub-color) dotted 4px;
  box-sizing: border-box;
  content: "";
}
.layout10 .flow_box:first-child::before{
  top: 32px;
  bottom: auto;
  height: calc(100% - 34px);
}
.layout10 .flow_box:last-child::before{
  top: 2px;
  bottom: auto;
  height: 86px;
}
.layout10 .flow_box:nth-child(even){
  background: #e8e5de;
}
.layout10 .flow_box:nth-child(odd){
  background: #f4f1eb;
}
.layout10 .flow_box p:last-child{
    margin-bottom: 0;
}
.layout10 .flow_box .number{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  margin-bottom: 0;
  margin-right: 4%;
  background: #bfa46d;
  border-radius: 50%;
  line-height: 1;
  color: #fff;
  font-size: 28px;
}
.layout10 .flow_box .layout10_box{
  width: 90%;
}

.layout10 .flow_box .layout10_text .title{
  background: var(--main-color);
  margin-top: 24px;
  padding: 12px 18px;
  border-radius: 6px;
  color: #fff;
  line-height: 1;
  font-size: 18px;
  letter-spacing: 0.12em;
	font-family: zen-maru-gothic, sans-serif;
}
.layout10 .flow_box .layout10_text .title span{
  position: relative;
}
.layout10 .flow_box .layout10_text .title span::after{
  display: inline-block;
  content: "|";
  margin: 0 12px;
}
.layout10 .flow_box .layout10_text .title2{
  padding-bottom: 2px;
  padding-top: 16px;
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px dashed rgba(35,24,21,0.4);
}
.layout10 .flow_box .layout10_text .list03{
  margin-top:8px;
}
.layout10 .flow_box .layout10_text .list03 li{
  margin-bottom: 0;
}
.layout10 .flow_box .layout10_text .list03 li::before{
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}

.layout10 .flow_box .layout10_text .list_column{
  display: flex;
  flex-wrap: wrap;
}
.layout10 .flow_box .layout10_text .list_column li{
  margin-right: 5%;
}

/*==================================================================

	box

==================================================================*/

.box1{
	position:relative;
	margin:0 auto 0px;
}
.box2{
	padding-top: 120px;
  padding-bottom: 100px;
}

.bg_box1{
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
  
  margin-top: 180px;
  padding-top: 60px;
  padding-bottom: 90px;
  background: #f4f1eb;
}

.bg_box1 h3{
  margin-top: -145px;
}

.bg_box2{
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
  
  padding-top: 120px;
  padding-bottom: 90px;
  background: #bfa46d; 
}

.last_box{
  margin-bottom: 180px;
  padding-bottom: 0;
}

.flex_box1{
  display: flex;
	display: -ms-flex;
	justify-content: space-between;
	justify-content: -ms-space-between;
}

.box_w{
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.text {
	position:relative;
	margin-bottom:70px;
}
.text p {
	margin-bottom:1em;
}
.text:last-child{
	margin-bottom:0;
}

/*==================================================================

	.top_news

==================================================================*/

.top_news .box1{
  display: flex;
	display: -ms-flex;
	justify-content: space-between;
	justify-content: -ms-space-between;
  
  width: 1200px;
  padding-top: 114px;
  padding-bottom: 190px;
}

.top_news_flame{
  width: 72.5%;
  height: 218px;
}
.news_text{
}

.ticker li{
  padding: 32px 0px 24px;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1;
  letter-spacing: 0.1em;
}
.ticker li:first-child{
  border-top: 1px solid #e5e5e5;
}

.ticker li:hover{
  text-decoration: underline;
}

.ticker li a::after{
  position: absolute;
  display: inline-block;
  right: 3px;
  width: 7px;
  height: 12px;
  background: url("../images/arrow02.svg") no-repeat;
  content: "";
}

.ticker li span{
  margin-right: 30px;
  color: #898989;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
}

.ticker li a{
  position: relative;
  display: block;
}



/*==================================================================

	.top_other

==================================================================*/

.top_content_wrap{
  position: relative;
}

.top_content_wrap::before{
  position: absolute;
  top: 84px;
  width: 72.5vw;
  min-width: 1135px;
  height: 100%;
  background: #f7f5f0;
  content: "";
  pointer-events: none;
}

/*==================================================================

	.top_features

==================================================================*/

.top_feature .box1{
  width: 1200px;
  padding-bottom: 78px;
}

.top_feature .text{
  text-align: center;
  margin-bottom: 72px;
}

.feature_list_box{
  display: flex;
	display: -ms-flex;
	justify-content: space-between;
	justify-content: -ms-space-between;
  flex-wrap: wrap;
  flex-wrap: -ms-wrap;
}

.feature_list_box .list{
  width: 27.5%;
  margin-bottom:110px;
}

.feature_list_box .list figure{
  margin-bottom: 30px;
}

.feature_list_box .list dt{
  margin-bottom: 12px;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.feature_list_box .list dd{
  line-height: 1.6;
}


/*==================================================================

	.top_medical

==================================================================*/


.top_medical{
  position: relative;
}

.top_medical::before{
  position: absolute;
  width: calc(100% - calc(calc(100vw - 1200px) / 2));
  height: 583px;
  margin-left: calc(calc(100vw - 1200px) / 2);
  background: #bfa46d;
  content: "";
}

.top_medical .box1{
  width: 1200px;
  padding: 102px 0 174px 6%;
  box-sizing: border-box;
  color: #fff;
}
.top_medical h3{
  margin-bottom: 20px;
  font-size: 37px;
  letter-spacing: 0.15em;
  line-height: 1.7;
}

.top_medical h3 span{
  display: block;
  margin-bottom: 25px;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.15em;
}

.top_medical .text{
  margin-bottom: 64px;
  text-align: left;
  letter-spacing: 0.1em;
}

.top_medical .medical_list_box{
  display: flex;
	display: -ms-flex;
	justify-content: space-between;
	justify-content: -ms-space-between;
  flex-wrap: wrap;
  flex-wrap: -ms-wrap;
  box-shadow:  3px 3px 6px rgba(0,0,0,0.15);
}

.top_medical .medical_list_box .list{
  width: 20%;
  height: 170px;
  background: rgba(10,45,86,0.8);
}

.top_medical .medical_list_box .list a{
  display: flex;
  display: -ms-flex;
  justify-content: center;
  justify-content: -ms-center;
  align-items: center;
  align-items: -ms-center;
  flex-direction: column;
  flex-direction: -ms-column;
  
  height: inherit;
  background: #fff;
  box-sizing: border-box;
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  transition:ease-in-out 0.15s ;
}

.top_medical .medical_list_box .list:hover a{
  transform: translate(-8px,-8px);
}

.top_medical .medical_list_box .list .icon{
  width: 32px;
  height: 46px;
  margin-bottom: 14px;
}

.top_medical .medical_list_box .list:nth-child(2) .icon{
  width: 56px;
  height: 47px;
}

.top_medical .medical_list_box .list:nth-child(3) .icon{
  width: 44px;
  height: 42px;
}

.top_medical .medical_list_box .list:nth-child(4) .icon{
  width: 54px;
  height: 42px;
}

.top_medical .medical_list_box .list:nth-child(5) .icon{
  width: 69px;
  height: 38px;
  margin-bottom: 18px;
}

.top_medical .medical_list_box .list:nth-child(6) .icon{
  width: 49px;
  height: 49px;
}

.top_medical .medical_list_box .list:nth-child(7) .icon{
  width: 57px;
  height: 53px;
  margin-bottom: 10px;
}

.top_medical .medical_list_box .list:nth-child(8) .icon{
  width: 39px;
  height: 42px;
}

.top_medical .medical_list_box .list:nth-child(9) .icon{
  width: 34px;
  height: 52px;
  margin-bottom: 15px;
}

.top_medical .medical_list_box .list:nth-child(10) .icon{
  width: 69px;
  height: 43px;
  margin-bottom: 19px;
}

.top_medical .medical_list_box .list h4{
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1
}

.top_medical .medical_list_box .list h4 span{
  padding-top: 4px;
  display: block;
  font-size: 14px;
  font-weight: 400;
}


/*==================================================================

	.top_doctor

==================================================================*/

#contents.top_doctor {
    width: 100%; 
}
.top_doctor{
  position: relative;
  padding-top: 98px;
  padding-bottom: 96px;
}

.top_doctor .box1{
  position: relative;
  width: 716px;
  margin-right: calc(calc(100vw - 1200px) / 2);
  padding-left: 114px;
  padding-top: 112px;
  background: #fff;
  box-sizing: border-box;
  text-align: left;
  z-index: 1;
}

.top_doctor .text{
  text-align: left;
  letter-spacing: 0.1em;
  font-size: 16px;
  line-height: 1.875;
}

.top_doctor h3.tit01{
  margin-bottom: 53px;
}

.top_doctor h4{
  margin-bottom: 25px;
  font-size: 26px;
  letter-spacing: 0.15em;
  line-height: 1.92;
}

.top_doctor .text p{
  margin-bottom: 28px;
}

.top_doctor .text p:last-of-type{
  margin-bottom: 40px;
}

.doctor_img{
  position: absolute;
  top: 0;
  width: 50vw;
  height: 776px;
  background: url("../images/doctor_img.png") no-repeat center;
  background-size: cover;
}



/*==================================================================

	.top_info

==================================================================*/
.top_info{
  padding-bottom: 193px;
}
.top_info .box1{
  width: 1200px;

}

.top_info .box1 h3.tit01{
  margin-bottom: 73px;
}

.top_info .google_map{
  width: 100%;
  height: 355px;
  margin-bottom: 60px;
}

.top_info .google_map iframe{
  width: inherit;
  height: inherit;
  border:none;
}

.top_info .clinic_info{
  display: flex;
	display: -ms-flex;
	justify-content: space-between;
	justify-content: -ms-space-between;
}

.clinic_info dl{
  display: flex;
	display: -ms-flex;
  flex-wrap: wrap;
  flex-wrap: -ms-wrap;
  
  width: 44.5%;
}

.clinic_info dl dt{
  position: relative;
  width: 21%;
  font-weight: bold;
  letter-spacing: 0.175em;
  line-height: 1;
}

.clinic_info dl dt::after{
  position: absolute;
  right: 0;
  content: ":"
}

.clinic_info dl dd{
  width: 79%;
  margin-bottom: 16px;
  padding-left: 6%;
  line-height: 1;
  letter-spacing: 0.075em;
  box-sizing: border-box;
  line-height: 1.5;
}
.clinic_info dl p{
  margin: auto;
  width: 200px;
  height: 50px;
  display: inline-grid;
  align-items: center;
  border-radius: 3px;
  text-align: center;
  font-size: 20px;
  background-color: #BFA46D;
}
.clinic_info dl p a{
  color: #fff;
}
.clinic_info dl p a::after{
  display: inline-block;
  top: 0px;
  position: relative;
  width: 7px;
  height: 12px;
  margin-left: 20px;
  content: "";
  background: url("../images/arrow04.svg") no-repeat;
  transition: ease-in-out 0.2s;
}
.clinic_info  .schedule{
  width: 50%;
}

.clinic_info .tb01{
  text-align: center;
  border: 1px solid #d3d3d3;
}

.clinic_info .tb01 th{
  text-align: center;
}





/*==================================================================

	.ieハック

==================================================================*/


@media all and (-ms-high-contrast: none){
  .top_medical::before{
    width: 92%;
    right: 0;
  }
  
  .mainvisual_catch{
    left: 20%;
  }
  
  .mainvisual_schedule{
    padding:50px 10% 63px 0;
  }
  
  .top_doctor .box1{
    margin-right: 3%;
  }
  
  .mainvisual_headline{
    left: 5%;
  }
}




/*==================================================================

	$doctor

==================================================================*/


.doctor{
  margin-top: 160px;
}

.doctor .text{
  padding-bottom: 48px;
}

.doctor .doctor_img{
  background: url(../images/doctor_img02.png) no-repeat center;
}

.doctor_carr{
	display: flex;
	display: -ms-flex;
	justify-content: space-between;
	justify-content: -ms-space-between;
  padding-bottom: 90px;
  margin-top: 0;
}

.doctor_carr_sec1{
	width: 48%;
	padding: 32px 30px;
	background-color:#fff;
	font-size:14px;
	box-sizing: border-box;
}

.basic_principle{
  position: relative;
}

.basic_principle::after{
  position: absolute;
  transform: rotate(15deg);
  bottom: -16%;
  right: 0;
  background: url("../images/logo_icon.svg") no-repeat;
  width: 29%;
  height: 60%;
  opacity: 0.2;
  content: "";
}

.basic_principle ul{
  display: flex;
	display: -ms-flex;
  padding: 4px 0 20px;
  letter-spacing: 0.15em;
}

.basic_principle ul li{
  padding-right: 20px;
  font-weight: bold;
  font-size: 18px;
}


/*==================================================================

	.news

==================================================================*/


.news_text p {
	margin-bottom:10px;
}
/* タイトル */
.news_text p strong{
	margin-left:20px;
	font-family:  "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
}
/* 日付 */
.date{
	margin-right:10px;
	color: #C0AB92;
}
/* お知らせのブロックのボーダー */
.news_text .line{
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom:1px solid #f4f1eb;
}




/*==================================================================

	$access

==================================================================*/

.access_guide{
  width: 80%;
  margin: auto;
	margin-bottom:60px;
  padding: 2% 2%;
  text-align: center;
  background: #f6f4f0;
}
.access_map{
	margin-bottom:40px;
}
.access_map dt{
	margin-bottom:10px;
}
.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 .clinic_sec1{
  width: 58%;
}


.map{
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
  height: 420px;
}

.map iframe{
  width: inherit;
  height: inherit;
  border:none;
}

/*==================================================================

	$clinic

==================================================================*/

/* 院内スライド（サムネイル右、1列） */
.clinic_slides1{

}

.flexslider_wrap{
  width: 80%;
  margin: auto;
}
.clinic_slides1 .flexslider{
	position:relative;
	float:left;
	width:86%;
}
.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: #bfa46d;
}

.clinic_slides1 .flex-control-thumbs .flex-active img{
	border: 5px solid #aaa;
}
.clinic_slides1 .flex-control-nav.flex-control-thumbs{
	position:absolute;
	right: -18%;
	top: 0;
	width: 15%;
}
.clinic_slides1 .flex-control-thumbs li {
	position:relative;
	width: 86%;
	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:#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;
	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;
}




/* 医院概要 */

.clinic_sec1{
	position:relative;
	font-size:15px;
  width: 70%;
}
.clinic_sec1 ul{
	margin-bottom:15px;
}
.clinic_sec1 li{
	padding: 8px 0;
	border-bottom:1px dashed #e5e5e5;
}
.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;
}
.clinic_sec1 dd{
	float:left;
	width:75%;
}
.clinic_sec1 .schedule .tb01{
  width: 90%;
	border: 1px solid #e4e4e4;
	font-size:14px;
  text-align: center;
}

.schedule_note{
  width: 90%;
}
.clinic_sec1 .schedule .tb01 tr:first-child th,
.clinic_sec1 .schedule .tb01 tr:first-child td{
}
.clinic_sec1 .schedule .tb01 tr:first-child{
}
.clinic_sec1 .schedule li{
	border-bottom:none;
	
}

.clinic_sec1  .tb01 th{
  text-align: center;
}

.clinic_sec1 .schedule_note li{
  padding: 0;
}





/*==================================================================

	$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 dl{
	float:left;
	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 dl{
	float:left;
	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:"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

==================================================================*/

.strong{
  color: #bfa46d;
}

.under_line{
  padding-bottom: 2px;
  border-bottom: 1px solid;
}

.medical .text{
  width: 80%;
  margin: auto;
  padding: 5%;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 3px 3px 6px rgba(0,0,0,0.15);
  box-sizing: border-box;
}

.medical h4{
  display: inline-flex;
  display: -ms-inline-flex;
  align-items: center;
  align-items: -ms-center;
  line-height: 1;
}

.medical h4 img{
  width: 36px;
  height: 30px;
  padding-right: 12px;
}

.medical .btn01{
  text-align: right;
}
/*==================================================================

	$recruit

==================================================================*/
.recruit .ank01{
  margin-bottom: 1em;
}

/*recruitの時のlayout*/
.recruit .layout03 dl:nth-child(2n){
  background: #f4f1eb;
}
.recruit .layout07{
    display: flex;
    flex-wrap: wrap;
}
.recruit .layout07 dl{
    float: none;
    background: #f4f1eb;
}
.recruit .layout07 dl em{
    color: #bfa46d;
}
.recruit .tb03 th{
  width: 25%;  
}
.recruit .tb03 td{
  text-align: left;
}
.tb04 {
	width:100%;
	border-spacing: 1px;
	border-collapse: separate;
	background-color: #f0f0f0;
}
.tb04 td, .tb04 th {
	padding: 12px 36px;
}
.tb04 th {
	font-weight: bold;
	text-align: left;
	color: #666;
	background-color: #FAFAFA;
	font-size: 16px;
	word-wrap: break-word;
  width: 40%;
}
.tb04 th span {
	font-size: 13px;
}
.tb04 td {
	background-color: #ffffff;
	color: #666666;
}

.tb04 tbody tr:first-child th{
}

.table_note{
	font-size: 90%;
	padding-top: 40px;
}

.table_note li{
	line-height: 1.8;
}

.table_note li:before{
	top:10px;
}

.tb04 input {
    width: 90%;
}

.tb04 .contact_radio input{
	margin-right: 20px;
	height: auto;
	width: auto;
}
form .choise label{
  display: block;
  padding-right: 15px;
}
form .choise input,
form .several input{
  margin-right: 3px;
  width: fit-content;
}

form input{
  width: 80%;
  padding: 8px;
}
form textarea {
    border: 1px solid #ccc;
    width: 80%;
}
.submit_btn{
	padding-top: 40px;
	text-align: center;
	font-size: 16px;
}

.submit_btn input[type="reset"]{
	display: inline-block;
	width: 200px;
	height: 44px;
	margin-right: 40px;
	border: solid 1px #bfa46d;
	color: #bfa46d;
	transition: ease-in-out 0.3s;
}

.submit_btn input[type="reset"]:hover{
  border: solid 1px rgba(10,45,86,0.8);
	background-color: rgba(10,45,86,0.8);
  color: #fff;
  transition: ease-in-out 0.3s;
}

.submit_btn input[type="submit"]{
	display: inline-block;
	width: 300px;
	height: 44px;
	margin-right: 40px;
	border: solid 1px #bfa46d;
	background-color: #bfa46d;
	transition: ease-in-out 0.3s;
	color: #fff;
}

.submit_btn input[type="submit"]:hover{
  border: solid 1px rgba(10,45,86,0.8);
	background-color: rgba(10,45,86,0.8);
  color: #fff;
  transition: ease-in-out 0.3s;
}

.required {
    margin-left: 20px;
    padding: 6px 10px;
    background-color: #f0ada5;
    border-radius: 3px;
    color: #fff;
}
.orthodontic .tb03 td{
	text-align: left;
} 
.implant_price{
	background-color: #E2E2E2;
    padding: 10px 10px 5px;
}
/*==================================================================

	$アンカーリンク

==================================================================*/
.ank_single ul{
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.anklink li{
	width: 32.5%;
    display: flex;
    align-items: center;
    align-content: flex-start;
    justify-content: space-between;
    position: relative;
    margin: 0 0 20px;
}
.anklink li a{
	width: 100%;
    height: 80%;
    padding: 10px;
    border: 1px solid #C9AC6F;
    font-family: var(--mam);
    text-align: center;
    vertical-align: middle;
    transition: 0.1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
	color: #bfa46d;
}
.anklink li a:hover{
	background-color: #bfa46d;
    color: #fff;
}
*[id*="link"]{
	margin-top: -120px !important;
    padding-top: 120px !important;
}
html {
	scroll-behavior: smooth;
}