/*
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) {}

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) {}

// Large devices (desktops, 992px and up)
@media (min-width: 992px) {}

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) {}
*/

html { 
  font-size: 62.5%;
  height: 100%;
   }

body {
     font-size: 1.5rem;
     line-height: 2.2;
     color: #333;
     height: 100%;
     position: relative;
     font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
     font-style: normal;
     font-weight: 400;
     letter-spacing: 0.05em;
     -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

body a {
  color: inherit;
}

body a:hover {
  color: inherit;
  text-decoration: none;
}
  
body a,
body button {
  transition: ease .3s opacity !important;
  backface-visibility: hidden;
}

body a:hover,
body button:hover {
  opacity: .7;
}

body ul {
  padding-left: 0;
  list-style: none;
}

body .btn {
	text-decoration: none !important;
}

body p {
	margin-bottom: 2em;
}


body input:focus,
body .btn:focus,
body button {
  outline: none !important;
  box-shadow: none !important;
  border-color: #ced4da !important;
}

.main_contents a:hover {
  color: #0057A6;
  text-decoration: underline;
}


.main_contents h1 a:hover,
.main_contents h2 a:hover,
.main_contents h3 a:hover,
.main_contents h4 a:hover,
.main_contents dt a:hover {
  color: inherit;
  text-decoration: none;
}


body area{
  border:none;
  outline:none;
}

@media (min-width: 992px) {
	body {
		font-size: 1.6rem;
	}
}


/*main_contents*/

section.main {
	background: url(../images/bg_main.jpg) center center no-repeat;
	background-size: cover;
	padding-top: 70px;
	
}

section.main .container-fluid {
	max-width: 1280px;
}

section.main .logo {
	padding-bottom: 70px;
}

section.main .logo h1 {
	width: 124px;
	margin-left: auto;
	margin-right: auto;
}

section.main .text {
	padding-right: 15px;
	padding-top: 30px;
	padding-bottom: 15px;
}

section.main .text .inner {
	background-color: #fff;
	padding: 40px;
	width: 100%;
}

section.main .text .inner h2 {
	margin-top: 0;
    margin-bottom: 1.5em;
    font-size: 2.1rem;
    font-weight: 400;
}

section.main .text .inner p {
	text-indent: 1em;
}


section.main .text .inner p.name {
	line-height: 2.0;
	text-align: end;
	margin-bottom: 0;
	text-indent: 0;
}

section.main .text .inner p.name span {
	display: inline-block;
	text-align: start;
}

@media (min-width: 576px) {
	section.main {
		padding-top: 40px;		
	}
	
	section.main .logo {
		padding-bottom: 40px;
	}
	
	section.main .logo h1 {
		width: auto;
	}
	
	section.main .text {
    padding-right: 0;
    padding-bottom: 0;
	}
	
	section.main .text .inner {
		padding: 30px;
	}
	
	section.main .text .inner h2 {
	    font-size: 2.4rem;
	    letter-spacing: .3em;
	}
	
	section.main .text .inner p {
		/*margin-bottom: 0;*/
		margin-block-start: 0;
	}


}

@media (min-width: 768px) {
	section.main {
		padding-top: 60px;		
	}
	
	section.main .logo {
		padding-bottom: 60px;
	}
	
	section.main .text {
		padding-right: 0;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		text-orientation: upright;
		padding-top: 30px;
	}
	
	section.main .text .inner {
		padding: 70px;
		height: 940px;
	}
	
	section.main .text .inner h2 {
		margin-right: 0;
	    margin-left: 1.5em;
	    margin-bottom: 0;
	    font-size: 2.8rem;
	}
	
	section.main .text .inner p {
		letter-spacing: .3em;
	}


}

@media (min-width: 992px) {
	
	section.main {
		padding-top: 70px;		
	}
	
	section.main .logo {
		padding-bottom: 100px;
	}
	
	section.main .logo h1 {
		width: 124px;
	}
	
	section.main .text .inner {
		height: 700px;
	}
	
	section.main .text .inner h2 {
		font-size: 3.0rem;
	}
	
	section.main .text .inner p {
		font-size: 1.7rem;
	}
}

@media (min-width: 1200px) {
	section.main {
		padding-top: 140px;		
	}
	
	section.main .text .inner {
		height: 610px;
	}
}


section.modal_nav {
	padding-top: 60px;
	padding-bottom: 50px;
}

section.modal_nav .container-fluid {
	max-width: 910px;
}

section.modal_nav ul {
	display: flex;
	flex-wrap: wrap;
}

section.modal_nav ul li {
	width: 48%;
	margin-right: 4%;
	display: flex;
	position: relative;
	margin-bottom: 35px;
}

section.modal_nav ul li a {
	display: block;
	background-color: #000;
}

section.modal_nav ul li a img {
	transition: ease .3s all;	
}

section.modal_nav ul li a:hover {
	opacity: 1 !important;
}

section.modal_nav ul li a:hover img {
	opacity: .6;
}

section.modal_nav ul li:nth-child(2n) {
	margin-right: 0;
}

section.modal_nav ul li a span {
	display: block;
	position: absolute;
	width: 100%;
	text-align:center;
	top: 50%;
	transform: translateY(-50%); 
	color: #fff;
	opacity: 0;
}

section.modal_nav ul li a:hover span {
	opacity: 1;
}

section.modal_nav .btn_wrapper {
	text-align: center;
}

section.modal_nav .btn_wrapper .btn {
	background-color: #AA833D;
	color: #fff;
	width: 100%;
	border-radius: 0;
	padding: 1.5em;
}

section.modal_nav .btn_wrapper .btn * {
	display: block;
	text-align: center;
}

section.modal_nav .btn_wrapper .btn span {
	font-size: 1.7rem;;
}

section.modal_nav .btn_wrapper .btn em {
	font-size: 1.3rem;
	font-style: normal;
}

.touch section.modal_nav ul li a {
	background-color: transparent;
}

.touch section.modal_nav ul li a span {
	position: static;
	transform: none;
	color: #333;
	opacity: 1;
}


@media (min-width: 576px) {
	section.modal_nav {
		padding-top: 80px;
	}
	
	section.modal_nav ul li {
		width: 30.33333%;
		margin-right: 4.5%;
	}
	
	
	section.modal_nav ul li:nth-child(2n) {
		margin-right: 4.5%;
	}
	
	section.modal_nav ul li:nth-child(3n) {
		margin-right: 0;
	}

	section.modal_nav .btn_wrapper .btn {
		width: 367px;
	}
}

@media (min-width: 992px) {
	section.modal_nav {
		padding-top: 120px;
	}
}


.modal.show .modal-dialog {
    margin: 0;
    width: 100%;
    max-width: none;
    height: 100%;
}

.modal-content {
	height: 100%;
}

.modal-body {
	overflow-y: auto;
	position: static;
}

.modal-dialog-fluid {
  width: 100%;
  height: 100vh;
  max-width: 100%;
  margin: 0;
  max-height: none !important;
}

.modal-dialog-fluid .modal-content {
  max-height: none !important;
}

.modal-dialog-fluid .modal-body {
  position: static;
}


.modal-body h2 {
	writing-mode: vertical-rl;
    text-orientation: upright;
    background-color: #f2f2f2;
	margin-right: 20px;
	margin-left: 0;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 2.5rem;
	letter-spacing: .5em;
	font-weight: 400;
	padding-top: 1em;
	padding-bottom: 1em;
	white-space: nowrap;
}

.modal-body h2 span {
	right: -1.8rem;
	display: block;
	position: relative;
}

.modal-body section {
	margin-left: 40px;
	padding-top: 40px;
}

.modal-body section .container-fluid {
	max-width: 880px;
}

.modal-body .close_btn_area {
	position: absolute;
	right: 10px;
	top: 10px;
}

.modal-body .close_btn_area .close {
	font-size: 40px;
}

.modal-body span.blue {
	color: #2F4BC1;
}

.modal-body span.red {
	color: #A53131;
}

@media (min-width: 576px) {
	.modal-body section {
		margin-left: 70px;
	}
}

@media (min-width: 768px) {
	.modal-body h2 {
		margin-right: 50px;
		font-size: 3.5rem;
		width: 85px;
		padding-top: 3em;
		padding-bottom: 3em;
	}
	
	.modal-body section {
		margin-left: 135px;
		padding-top: 100px;
	}
}

@media (min-width: 992px) {
	.modal-body h2 {
		margin-right: 100px;
		font-size: 3.5rem;
		width: 125px;
		padding-top: 3em;
		padding-bottom: 3em;
	}
	
	.modal-body section {
		margin-left: 185px;
		padding-top: 100px;
	}
}



@media (min-width: 1200px) {
	.modal-body h2 {
		margin-right: 100px;
		font-size: 3.5rem;
		width: 175px;
		padding-top: 3em;
		padding-bottom: 3em;
	}
	
	.modal-body section {
		margin-left: 275px;
		padding-top: 100px;
	}
}

/*about-clinic*/

#about-clinic h3 {
	font-size: 2.0rem;
	margin-bottom: 1em;
}

#about-clinic .slick-wrap {
	padding: 1em;
	padding-top: 0;
}

#about-clinic .slick-slide {
	background-color: #fff;
}

#about-clinic .slick-slide img {
	height: 50vw;
	object-fit: cover;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}

#about-clinic .slide .slick-slide img {
	min-height: 300px;
}

#about-clinic .slide-nav .slick-slide img {
	max-width: 100%;
	height: 100%;
}

#about-clinic .slide-nav .slick-slide {
	height: 65px;
	overflow: hidden;
	margin: 0 5px;
	display: flex;
	align-items: center;
	opacity: .5;
}

#about-clinic .slide-nav .slick-current {
	opacity: 1;
}

#about-clinic .slick-prev, 
#about-clinic .slick-next {
	width: 30px;
	height: 30px;
}

#about-clinic .slick-prev {
	left: -30px;
}

#about-clinic .slick-next {
	right: -30px;
}


#about-clinic .slick-prev:before,
#about-clinic .slick-next:before {
	font-family: "Font Awesome 5 Free";
  font-weight: 900;
	color: #AA833D;
	font-size: 30px;
}

#about-clinic .slick-prev:before {
	content: '\f053'
}

#about-clinic .slick-next:before {
	content: '\f054'
}

#about-clinic .sec02 h4 {
	font-size: 1.8rem;
	margin-bottom: 1.2em;
	text-align: center;
}

#about-clinic .sec02 .clinic_img {
	display: flex;
	flex-wrap: wrap;
}

#about-clinic .sec02 .clinic_img li {
	width: 100%;
	margin-bottom: 1em;
}
@media (min-width: 576px) {
	#about-clinic .sec02 .clinic_img li {
		width: 31.333%;
		margin-right: 3%;
		margin-bottom: 1em;
	}

	#about-clinic .sec02 .clinic_img li:nth-child(3n) {
		margin-right: 0;
	}
}

@media (min-width: 768px) {
	#about-clinic .sec01 {
		margin-right: 30px;
	}

	#about-clinic h3 {
    font-size: 2.4rem;
	}

	#about-clinic .sec02 h4 {
		font-size: 2.0rem;
	}
}

@media (min-width: 992px) {
	#about-clinic h3 {
    font-size: 2.8rem;
	}

	#about-clinic .slick-slide img {
		height: auto;
	}

	#about-clinic .sec02 h4 {
		font-size: 2.4rem;
	}

	#about-clinic .sec02 .clinic_img {
		padding: 0 40px;
	}

}

@media (min-width: 1200px) {
	#about-clinic .sec01 {
		margin-right: 0;
	}
}

/*about-doctor*/

#about-doctor .sec01 .inner {
	width: 100%;
}

#about-doctor .sec01 .inner .img {
	text-align: center;
	line-height: 1.5;
	padding: 0 2em;
}

#about-doctor .sec01 .inner .img p {
	margin-bottom: 0;
	margin-top: 1em;
	font-size: 1.5rem;
	font-weight: 600;
	text-align: end;
}

#about-doctor .sec01 .inner .img span {
	display: block;
	font-size: 1.2rem ;
	text-align: end;
	font-weight: 600;
}

#about-doctor .sec01 .inner .img em {
	font-size: 1.2rem;
	font-style: normal;
	padding-right: 1em;
}

#about-doctor .sec01 .inner .img .link_profile {
	margin-top: 1.5em;
}

#about-doctor .sec01 .inner .img .link_profile a:after {
	content: "\f054";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	color: #AA833D;
	display: inline-block;
	vertical-align: middle;
	margin-left: .3em;
}

#about-doctor .sec01 .inner .img .link_profile a span {
	display: inline-block;
	vertical-align: middle;
}

#about-doctor .sec02 {
	padding-top: 60px;
}

#about-doctor .sec03 h3 {
	font-size: 2.0rem;
	margin-bottom: 1em;
	text-align: center;
	font-weight: 600;
}

#about-doctor .sec03 h4 {
	font-size: 1.6rem;
	border-bottom: 1px solid #000;
	padding-bottom: 1em;
	margin-bottom: 1em;
	font-weight: 600;
}

#about-doctor .sec03 table {
	margin-bottom: 7em;
	display: block;
	line-height: 1.5;
}

#about-doctor .sec03 table tr,
#about-doctor .sec03 table th,
#about-doctor .sec03 table td {
	display: block;
}

#about-doctor .sec03 table th {
	padding-bottom: 0;
	white-space: nowrap;
	font-weight: 400;
}

#about-doctor .scroll {
	font-size: 1.3rem;
	color: #AA833D;
	text-align: center;
	padding: 0 0 4em;
}

#about-doctor .scroll span:before {
	content: "\f078";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	display: block;
  line-height: 1;
}

#about-doctor .scroll span {
	display: block;
	line-height: 1;
}


@media (min-width: 576px) {
	#about-doctor .sec01 .inner {
		display: flex;
	}
	
	#about-doctor .sec01 .inner .img {
		width: 40%;
	}
	
	#about-doctor .sec01 .inner .text {
		width: 60%
	}
	
	#about-doctor .sec03 table {
		display: table;
	}
	
	#about-doctor .sec03 table tr {
		display: table-row;
	}

	#about-doctor .sec03 table tr th {
		width: 20%;
		white-space: nowrap;
	}
	
	#about-doctor .sec03 table tr th,
	#about-doctor .sec03 table tr td {
		display: table-cell;
		padding: .8em;
	}
}

@media (min-width: 768px) {
	#about-doctor .sec01 .inner .img p {

	}

	#about-doctor .sec01 .inner .img span,
	#about-doctor .sec01 .inner .img em {
		font-size: 1.4rem ;
	}

	#about-doctor .sec02 {
		padding-top: 0;
	}

	#about-doctor .sec03 h3 {
		font-size: 2.4rem;
	}

	#about-doctor .sec03 h4 {
		font-size: 1.8rem;
	}

}



@media (min-width: 992px) {
	#about-doctor .sec01 .inner > div {
		flex: 1;
	}
}


#access {
	line-height: 1.5;
}

#access .address {
	margin-bottom: 60px;
}

#access .address span {
	display: block;
	margin-bottom: .5em;
}

#access .map .link_wrapper {
	text-align: right;
	margin-top: 20px;
}

#access .map .link_wrapper a {
	font-size: 1.2rem;
	font-weight: 600;
}

#access .map .link_wrapper a span {
	display: inline-block;
	vertical-align: middle;
	margin-right: .5em;
}

#access .map .link_wrapper a:after {
	content: '>';
	display: inline-block;
	vertical-align: middle;
}

#access .map p {
	text-align: center;
	margin-top: 60px;
}

#access .map p span {
	display: inline-block;
	margin-right: 1em;
	margin-bottom: 1em;
	font-size: 1.5rem;
	text-align: left;
	padding-left: 30px;
}

#access .map p span.metro {
	background: url(../images/icon_metro.png) left center no-repeat;
	background-size: 25px auto;
}

#access .map p span.bus {
	background: url(../images/icon_bus.png) left center no-repeat;
	background-size: 25px auto;
}

#access table {
	border-bottom: 1px solid #dee2e6;
}

#access table th,
#access table td {
	font-weight: 400;
	text-align: center;
	padding: 1em;
	white-space: nowrap;
}

#access table thead th {
	background-color: #f2f2f2;
	border-bottom: 0;
	border-top: 0;
}

#access table tbody tr:first-child th,
#access table tbody tr:first-child td {
	border-top: 0;
}

#access table tr th:first-child {
	padding-left: 1.5em;
	padding-right: 1.5em;
}

#access .table-responsive {
	position: relative;
	margin-top: 40px;
}

#access .swipe {
	position: absolute;
	margin: auto;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	opacity: .5
}

#access .swipe i {
	font-size: 4.0rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#access .note {
	font-size: 1.5rem;
	margin-top: 2em;
}

#access .note p {
	margin-bottom: 0;
	text-indent: -1em;
	padding-left: 1em;
}

#access .note p:before {
	content: '※';
}

#access .note dl {
	margin-bottom: 0;
}

#access .note dl + dl {
	margin-top: 2em;
}

#access .note dl dt {
	margin-bottom: .5em;
}

#access .note dl dd {
	list-style-type: disc;
  display: list-item;
  margin-left: 1em;
}

#access .btn_wrapper {
	text-align: center;
	margin-top: 60px;
}

#access .btn_wrapper .btn {
	font-size: 1.7rem;
	color: #fff;
	background-color: #AA833D;
	border-radius: 0;
	padding: .75em;
	width: 280px;
	border: 0;
}

#access .btn_wrapper .btn span {
	font-size: 1.3rem;
	display: block;
}

@media (min-width: 576px) {
	#access .map p span.metro {
		background: url(../images/icon_metro.png) left center no-repeat;
		background-size: contain;
	}
	
	#access .map p span.bus {
		background: url(../images/icon_bus.png) left center no-repeat;
		background-size: contain;
	}
	
	#access .swipe {
		display: none !important;
	}
}

@media (min-width: 768px) {
	#access table {
		margin-top: 80px;
	}	
}



#voice h4 {
	background-color: #f2f2f2;
	font-size: 1.5rem;
	font-weight: 600;
	padding: .75em 1em;
	margin-bottom: 1.5em;
	line-height: 1.5;
}

#voice h4 span {
	padding-right: 1em;
	display: inline-block;
}

#voice h4 span:last-child {
	padding: 0;
}

@media (min-width: 992px) {
	#voice h4 {
		font-size: 1.6rem;
	}
}


#introduce .hukidashi {
	border-radius: 18px;
	background-color: #F5F5F5;
	width: 220px;
	margin-left: auto;
	margin-right: auto;
	padding: 1.5em;
	position:relative;
	margin-bottom: 1.5em;
}

#introduce .hukidashi p {
	margin-bottom: 0;
	font-size: 1.7rem;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	text-indent: 0;
}

#introduce .hukidashi p span {
	font-size: 1.4rem;
	padding-right: 1em;
}

#introduce .hukidashi p em {
	font-style: normal;
}

#introduce .hukidashi:after{
	border: solid transparent;
	content:'';
	height:0;
	width:0;
	pointer-events:none;
	position:absolute;
	border-color: rgba(245, 245, 245, 0);
	border-top-width:12px;
	border-bottom-width:12px;
	border-left-width:7px;
	border-right-width:7px;
	margin-left: -7px;
	border-top-color:#F5F5F5;
	top:100%;
	left:50%;
}

#introduce p {
	text-indent: 1em;
}

@media (min-width: 576px) {
	#introduce .hukidashi {
		float: right;
		margin-bottom: 0;
		margin-left: 1em;
	}

	#introduce .hukidashi:after{
		border: solid transparent;
    border-top-width:7px;
    border-bottom-width:7px;
    border-left-width:12px;
    border-right-width:12px;
    margin-top: -7px;
    border-right-color:#F5F5F5;
    right:100%;
    top:50%;
		left: auto;
}
}
@media (min-width: 768px) {
	#introduce .hukidashi {
		margin-left: 2em;
		margin-bottom: 2em;
	}
}
@media (min-width: 992px) {
	#introduce .hukidashi {
		width: 288px;
		margin-left: 3em;
	}
}





#contact .inner {
	text-align: center;
	background-color: #FAFAFA;
	padding: 20px;
	max-width: 660px;
}

#contact h3 {
	font-size: 1.6rem;
	line-height: 1;
	margin-bottom: 1.5rem;
}

#contact h3:before {
	content: '\f095';
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	vertical-align: middle;
	margin-right: .2em;
	transform: rotate(90deg)
}

#contact h3 span {
	display: inline-block;
	vertical-align: middle;
}

#contact .tel {
	font-size: 2.1rem;
	color: #AA833D;
	font-weight: 600;
}

#contact .opentime {
	font-size: 1.3rem;
	line-height: 1.5;
	margin: 0;
}

#contact .opentime .title {
	display: block;
}

#contact .opentime span {
	display: inline-block;
}

#contact .mail {
	font-size: 1.3rem;
	color: #fff;
	background-color: #4B4B4B;
	border-radius: 0;
	padding: 1em 1.5em;
}

#contact .mail:before {
	content: '\f0e0';
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	vertical-align: middle;
	margin-right: .2em;
}

@media (min-width: 576px) {
	#contact .inner {
		padding: 60px;
	}
	
	#contact h3 {
		font-size: 2.1rem;
	}
	
	#contact .tel {
		font-size: 3.2rem;
	}
	
	#contact .opentime {
		font-size: 1.6rem;
	}
	
	#contact .opentime span.time:after {
		content: ' / ';
		display: inline-block;
		padding-left: .5em;
		padding-right: .5em;
	}
	
	#contact .mail {
		font-size: 1.9rem;

	}

}

@media (min-width: 768px) {
	#contact .opentime .title {
	    display: inline-block;
	    margin-right: 1em;
	}	
}

#care .nav-tabs {
	margin-bottom: 1em;
	border: 0;
}

#care .nav-tabs .nav-item {
	margin-right: 3px;
}
#care .nav-tabs .nav-item:last-child {
	margin: 0;
}

#care .nav-tabs .nav-link {
	border: 0;
	border-radius: 0;
	font-size: 1.2rem;
	padding: .5rem;
	border-bottom: 3px solid #D6D6D6;
	line-height: 1;
}

#care .nav-tabs .nav-item.show .nav-link,
#care .nav-tabs .nav-link.active {
	border-color: #AA833D;
}

#care .img {
	margin-bottom: 2em;
}

#care h3 {
	font-size: 2.2rem;
	margin-bottom: .5em;
}

@media (min-width: 576px) {

	#care .nav-tabs {
		margin-bottom: 2em;
	}

	#care .nav-tabs .nav-link {
		font-size: 1.5rem;
		margin-right: 10px;
	}

}

@media (min-width: 768px) {

	#care .nav-tabs {
		margin-bottom: 3em;
	}

	#care h3 {
		font-size: 2.8rem;
	}

	#care .img {
		margin-bottom: 3em;
	}

}

@media (min-width: 1200px) {


	#care h3 {
		font-size: 3.2rem;
		margin-bottom: .5em;
	}

}



/*footer*/

footer {
	text-align: center;
	background-color: #F9F9F9;
	padding: 1.5em;
}

footer p {
	margin-bottom: 0;
}

