@charset "UTF-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

/* -----Basic style----- */
html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
}
body {
	line-height: 2;
	max-width: 1600px;
	margin:0 auto;
	-webkit-text-size-adjust: 100%;
}
body, th, td, h1, h2, h3, h4, h5, h6, pre, input, textarea, option, div, p, dt, dd, li, address {
	font-family: 'Noto Sans Japanese',sans-serif;
	/*font-family: 'Noto Serif JP', serif;*/
	font-size: 1.4rem;
	font-weight: normal;
	font-style: normal;
	color: #333333;
	letter-spacing: .2rem;
}
a {
	color: #333333;
	text-decoration: none;
}
.tx-s {
	font-size: 1.2rem;
}
.tx-m {
	font-size: 1.8rem;
}
.fw-b {
	font-weight: bold;
}
.color1 {
	color: #0e1937;
}
.bg-color1{
	background: #0e1937;
}
.wid {
	width: 100%;
}
.pad10 {
	padding: 10px;
}
.pad20 {
	padding: 20px;
}
.pad40 {
	padding: 40px;
}
.margin-b20{
	margin-bottom: 20px;
}
.margin-b40{
	margin-bottom: 40px;
}
.display-none {
	display: none;
}
.imgtxt {
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
.clr,
.clear {
	clear: both;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}
.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.flex{
	display: flex;
	justify-content: space-between;
}
.flex2{
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.flex3{
	display: flex;
	justify-content: flex-start;
}
hr{
	width: 80%;
	height: 1px;
	background-color: #dcc48d;
	border: none;
	margin-bottom: 40px;
}
.lineheight24{
	line-height: 2.4;
}
.img{
	width: 100%;
	height: auto;
}
/* -----Basic styleここまで----- */


/* -----Common style----- */
.wrapper {
	width: 100%;
	height: 100vh;
}
header {
	height: 80px;
}
header h1{
	text-align: center;
    height: 80px;
    display: flex;
    justify-content: center;
}
header h1 img{
	width: 14%;
    height: auto;
}
#main {
	margin-bottom: 40px;
}
#main h2{
	font-size: 2.2rem;
}
#main h3{
	font-size: 1.8rem;
	font-weight: bold;
}
.container {
	width: 80%;
	margin: 0 auto;
}
.main-contents {
	width: 100%;
	margin-bottom: 60px;
}
/* button */
.button-1{
	/*width: 98%;*/
	width: 100%;
    height: 50px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    /*box-shadow: 8px 8px 0px 0px #dcc48d;*/
    background: #fff;
	border: 1px solid #B89B81;
}
.button-1 a{
    display: block;
    font-size: 1.6rem;
    color: #B89B81;
    text-decoration: none;
    line-height: 50px;
    transition: all .5s ease;
    z-index: 2;
    position: relative;
}
.eff-1{
	width: 100%;
    height: 50px;
    left: -320px;
    top: -50px;
    background: #B89B81;
    position: absolute;
    transition: all .2s ease;
    z-index: 1
}
.button-1:hover .eff-1{
	left:0;
	top:0;
}
.button-1:hover a{
	color:#fff;
}
.button-2{
	width: 98%;
    height: 50px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 8px 8px 0px 0px #dcc48d;
    background: #B89B81;
	border: 1px solid #fff;
}
.button-2 a{
    display: block;
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    line-height: 50px;
    transition: all .5s ease;
    z-index: 2;
    position: relative;
}
.eff-2{
	width: 100%;
    height: 50px;
    left: -320px;
    top: -50px;
    background: #fff;
    position: absolute;
    transition: all .2s ease;
    z-index: 1
}
.button-2:hover .eff-2{
	left:0;
	top:0;
}
.button-2:hover a{
	color:#B89B81;
}
footer{
}
footer nav{
    margin: 0 auto;
    padding: 10px 0;
	background: #eeeeee;
}
footer ul{
	display: flex;
	justify-content: space-around;
}
footer ul li a{
	position: relative;
	display: inline-block;
	transition: all .3s ease 0s;
	color: #333333;
}
footer ul li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	height: 1px;
	background-color: #a5a5a5;
	transition: all .3s ease 0s;
}
footer ul li a:hover::after {
	width: 100%;
}
footer p.copyright{
	background: #333333;
	color: #FFFFFF;
	padding: 10px 0;
	text-align: center;
}
footer .footervis{
	background: url("../img/common/footervis_01.jpg") no-repeat;
	background-size: cover;
	padding: 40px 0;
}
footer .footervis h2{
	text-align: center;
	margin-bottom: 20px;
}
footer .footervis ul{
	display: block;
	text-align: center;
}
footer .footervis ul li{
	color: #ffffff;
}
footer .footervis ul li a{
	color: #ffffff;
}
/* pagetop */
#pageTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
}
#pageTop a {
	display: block;
	z-index: 999;
	padding: 6px;
	border-radius: 30px;
	width: 40px;
	height: 40px;
	background-color: #333333;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
}
#pageTop a:hover {
	text-decoration: none;
	opacity: 0.7;
}
/* pankuzu */
.pankuzu{
	margin-bottom: 40px;
	background-color: #efefef;
}
.cd-breadcrumb {
	width: 100%;
	max-width: 980px;
	padding: 0;
	margin: 0 auto;
}
.cd-breadcrumb::after {
	content: "";
	display: table;
	clear: both;
}
.cd-breadcrumb li {
	display: inline-block;
	float: left;
	margin: 0.5rem 0;
}
.cd-breadcrumb li::after {
	display: inline-block;
	content: '\00bb';
	margin: 0 .6rem;
	color: #B89B81;
}
.cd-breadcrumb li:last-of-type::after {
	display: none;
}
.cd-breadcrumb li > * {
  display: inline-block;
  font-size: 1.4rem;
  color: #333333;
}
.cd-breadcrumb li.current > * {
	color: #333333;
}
.cd-breadcrumb a {
	transition: all .3s ease 0s;
}
.cd-breadcrumb a:hover {
	color: #B89B81;
}
/*.address{
	background: #0e1937;
	padding: 40px 20px;
}
.address h2{
	border-bottom: 1px solid #dcc48d;
	margin-bottom: 10px;
}
.address h2 img{
	width: 80% !important;
	height: auto;
}
.address p{
	color: #fff;
	margin-bottom: 20px;
}*/
p.contact-tel{
	margin-bottom: 5px !important;
}
a.contact-tel{
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
	color: #0e1937;
    text-align: center;
    padding: 10px;
    border: 1px solid #0e1937;
}
/* web-interview */
#web-interview {
	position: fixed;
	bottom: 60px;
	left: 20px;
}
#web-interview a {
	display: block;
	z-index: 999;
	padding: 6px;
	text-decoration: none;
	text-align: center;
}
#web-interview a:hover {
	text-decoration: none;
	opacity: 0.7;
}
.spview {
	display: none;
}
.pcview {
	display: block;
}
/* -----Common styleここまで----- */

/* -----top----- */
#top .mainbox{
	display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
#top .mainvis{
	height: 80vh;
	/*margin-top: 80px;*/
	margin-bottom: 80px;
	/*margin-left: 80px;*/
	margin-right: 80px;
	width: 60%;
}
#top .maintext{
	width: 40%;
	padding: 80px;
}
#top .maintext h2{
	margin-bottom: 40px;
	text-align: center;
}
#top .maintext p.tx{
	margin-bottom: 40px;
}
#top .maintext p.link{
	text-align: center;
}
#top .maintext p.link a{
	position: relative;
	display: inline-block;
	font-weight: bold;
}
#top .maintext p.link a:before{
	content: '';
	position: absolute;
	bottom: -8px;
	display: inline-block;
	width: 60px;
	height: .5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #333333;
}
#top .maintext p.link a:hover{
	transition: all .3s ease 0s;
	opacity: .5;
}
#top .vegas-wrapper{
	display: flex;
    align-items: flex-end;
    width: 86%;
    margin: 0 40px;
}
#top p.name_txt{
	position: relative;
}
#top p.name_txt img{
	position: absolute;
	top: -320px;
    right: 40px;
    width: 36%;
    height: auto;
}
#top .main-contents .top-contents-box{
	margin-bottom: 80px;
}
#top .main-contents .top-contents-box:last-child{
	margin-bottom: 0;
}
#top .b01 .box-l{
	width: 32%;
	padding: 40px 0;
}
#top .b01 .box-r{
	width: 64%;
}
#top .b03 .box-l{
	width: 32%;
	padding: 40px;
	border-left: .5px solid #333333;
}
#top .b03 .box-l h2{
	text-align: center;
	margin-bottom: 40px;
}
#top .b03 .box-l p.tx{
	text-align: center;
	margin-bottom: 40px;
}
#top .b03 .box-l p.link{
	text-align: center;
	margin-bottom: 40px;
}
#top .b03 .box-l p.link a{
	position: relative;
	display: inline-block;
	font-weight: bold;
}
#top .b03 .box-l p.link a:before{
	content: '';
	position: absolute;
	bottom: -8px;
	display: inline-block;
	width: 60px;
	height: .5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #333333;
}
#top .b03 .box-l p.link a:hover{
	transition: all .3s ease 0s;
	opacity: .5;
}
#top .b03 .box-r{
	width: 64%;
}
#top .b04 .box-l{
	width: 32%;
	padding: 40px;
	border-right: .5px solid #333333;
}
#top .b04 .box-l h2{
	text-align: center;
	margin-bottom: 40px;
}
#top .b04 .box-l p.tx{
	text-align: center;
	margin-bottom: 40px;
}
#top .b04 .box-l p.link{
	text-align: center;
	margin-bottom: 40px;
}
#top .b04 .box-l p.link a{
	position: relative;
	display: inline-block;
	font-weight: bold;
}
#top .b04 .box-l p.link a:before{
	content: '';
	position: absolute;
	bottom: -8px;
	display: inline-block;
	width: 60px;
	height: .5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #333333;
}
#top .b04 .box-l p.link a:hover{
	transition: all .3s ease 0s;
	opacity: .5;
}
#top .b04 .box-r{
	width: 64%;
}
#top .box-l p{
	margin-bottom: 20px;
}
#top .box-r p{
	margin-bottom: 20px;
}
#top .box-r img{
	width: 100%;
	height: auto;
}
#top .s-box{
	width: 30%;
}
#top .s-box p{
	margin-bottom: 20px;
}
#top .s-box2{
	width: 49%;
}
#top .s-box2 p{
	margin-bottom: 20px;
}
#top .b02 .service_box{
	width: 48%;
	background: #eeeeee;
}
#top .b02 .service_box .upper_box p img{
	width: 100%;
	height: auto;
}
#top .b02 .service_box .under_box{
	padding: 40px;
}
#top .b02 .service_box .under_box h2.title{
	margin-bottom: 20px;
}
#top .b02 .service_box .under_box h2.title span{
	color: #333333;
	font-size: 2rem;
}
#top .b02 .service_box .under_box h2.title img{
	width: 40%;
	height: auto;
}
#top .b02 .service_box .under_box p.tx01{
	text-align: center;
	margin-bottom: 20px;
}
#top .b02 .service_box .under_box p.tx02{
	text-align: center;
	margin-bottom: 20px;
}
#top .b02 .service_box .under_box p.tx02 a{
	position: relative;
	display: inline-block;
	font-weight: bold;
}
#top .b02 .service_box .under_box p.tx02 a:before{
	content: '';
	position: absolute;
	bottom: -8px;
	display: inline-block;
	width: 60px;
	height: .5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #333333;
}
#top .b02 .service_box .under_box p.tx02 a:hover{
	transition: all .3s ease 0s;
	opacity: .5;
}
#top .news{
	background: url("../img/top/vis_05.jpg") no-repeat;
	/*padding: 40px 0;
	height: 72vh;*/
}
#top .news .inner{
	width: 980px;
	margin: 0 auto;
	padding: 39px 0;
}
#top .news h2.title img {
	width: 3%;
	padding: 0;
}
#top .news .inner .news-contents{
	margin-bottom: 30px;
}
#top .news .inner .news-list{
	border-left: 1px solid #fff;
}
#top .news .inner .news-list a{
	display: block;
	padding: 20px;
	transition: all .3s ease 0s;
}
#top .news .inner .news-list a:hover{
	opacity: .5;
}
#top .news .inner .news-text ul{
	margin-bottom: 20px;
}
#top .news .inner .news-text ul li,
#top .news .inner .news-text p{
	color: #fff;
}
#top .news .inner p.news-link{
	text-align: center;
	font-weight: bold;
}
#top .news .inner p.news-link a{
	color: #fff;
}
#top .slick-dots {
	display: none !important;
}
#arrow {
	display: none !important;
}
#top .top-contents-box h2.title{
    line-height: 2.4rem;
    margin-bottom: 40px;
	text-align: center;
}
#top .gmap{
	margin-bottom: 80px;
}
#top .gmap .inner iframe{
	width: 100%;
}
#top .top-contents-box h3.title{
	padding-bottom: .5rem;
    line-height: 1.8rem;
    margin-bottom: 10px;
	text-align: center;
}
#top .top-contents-box h3.title span{
	display: block;
    color: #dcc48d;
    font-size: 1.2rem;
}
/* -----topここまで----- */

/* -----subpage Common style----- */
.second .container{
	width: 980px;
	margin: 0 auto;
}
.second .mainvis-sub{
	background: url("../img/second/mainvis_sub.jpg") no-repeat center center;
	background-size: cover;
	height: 32vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.second .main-title{
	text-align: center;
}
.second .main-title p{
	color: #68696B;
	/*line-height: 0.6rem;*/
}
.second .main-title h1{
	/*font-size: 2.8rem;
	color: #0e1937;
	position: relative;
	display: inline-block;
	padding: 0 72px;*/
}
.second .main-title h1 img{
	width: 112%;
    height: auto;
}
/*.second .main-title h1:before,
.second .main-title h1:after{
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 60px;
	height: 1px;
	background-color: #0e1937;
}
.second .main-title h1:before {
	left:0;
}
.second .main-title h1:after {
	right: 0;
}*/
.second h2.title img{
	vertical-align: bottom;
	margin-right: 8px;
}
.second .titlebox{
	display: flex;
    border-bottom: 2px dotted #333333;
    margin-bottom: 40px;
    padding-bottom: 5px;
}
.second .titlebox img{
	width: 4%;
}
.second .main-contents .top-contents-box{
	margin-bottom: 40px;
}
.second .box-l{
	width: 48%;
}
.second .box-l img{
	width: 100%;
	height: auto;
}
.second .box-r{
	width: 48%;
}
.second .box-r img{
	width: 100%;
	height: auto;
}
/* -----subpage Common styleここまで----- */

/* -----rehabilitation----- */
.second .staff{
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
}
.second .staff::after{
	display: block;
	content:"";
	width: 32%;
}
.second .staffbox{
	width: 32%;
	background: #eeeeee;
    padding-bottom: 10px;
	margin-bottom: 20px;
}
.second .staffbox .staffbox-txt{
	padding: 0 10px;
}
.second .staffbox .staffbox-txt p.name{
	font-size: 2rem;
    font-weight: bold;
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
}
.second .staffbox img{
	width: 100%;
	height: auto;
}
/* -----rehabilitationここまで----- */


/* -----access----- */
.second .access table{
	width: 100%;
}
.second .access table,
.second .access table td,
.second .access table th{
	border: 1px solid #ccc;
}
.second .access table td,
.second .access table th{
	padding: 10px 20px;
}
.second .access table th{
	background: #efefef;
	width: 30%;
}
.second .access table td{
	width: 70%;
}
.second .access table td img{
	width: 100%;
	height: auto;
	padding: 10px 0;
}
/* -----accessここまで----- */

/* -----landscape----- */
.second .gallery ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;	
}
.second .gallery ul::after {
	display: block;
	content:"";
	width: 32%;
}
.second .gallery ul li{
	width: 32%;
	margin-bottom: 10px;
}
.second .gallery ul li a{
	display: block;
	transition: all .3s ease 0s;
}
.second .gallery ul li a:hover{
	opacity: .5;
}
.second .gallery ul li a img{
	width: 100%;
	height: auto;
}
/* -----landscapeここまで----- */

/* -----news----- */
.second .news-box ul li a{
	display: block;
    font-size: 1.4rem;
    border-bottom: 1px dotted #ccc;
    padding: 20px 20px;
	transition: all .3s ease 0s;
}
.second .news-box ul li a:hover{
	color: #fff;
	background: #333333;
	border-bottom: 1px solid #333333;
}
.second p.news-img img{
	width: 100%;
	height: auto;
}
/* -----newsここまで----- */

/* -----access----- */
.second .map2 p{
	text-align: center;
}
.second .map2 p img{
	width: 80%;
	height: auto;
}
/* -----accessここまで----- */
/* -----kito----- */
.second .kigan-list ul,
.second .kigan-list p{
	text-align: center;
}
.second .kigan-list ul li{
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #eeeeee;
}
/* -----kitoここまで----- */

/* -----contact----- */
input{
    text-indent: 1em;
    height: 40px;
    line-height: 3rem;
    font-size: 1.4rem;
    vertical-align: middle;
    border:1px solid #ccc;
    margin-bottom:20px;
	border-radius: 0px;
	width: 100%;
}
textarea{
    height: 140px;
    line-height: 2rem;
    font-size: 1.4rem;
    vertical-align: middle;
    border:1px solid #ccc;
    margin-bottom:20px;
	border-radius: 0px;
	width: 100%;
}
p.contact-tx-01{
	width: 100%;
	margin: 0 auto 40px;
}
.contact-box{
	width: 100%;
	margin: 0 auto 60px;
}
.contact-box table{
	margin: 20px auto;
	width: 100%;
}
.contact-box th{
	font-size: 1.4rem;
	text-align: left;
	vertical-align: top;
	width: 30%;
}
.contact-box td{
	width: 70%;
}
p.policy-link{
	margin-bottom: 20px;
	text-align: center;
}
p.form-btn{
	display: flex;
	justify-content: space-between;
}
p.form-btn input{	
	background: #333333;
	color: #fff;
    transition: all .2s ease;
}
p.form-btn input:hover{	
	background: #fff;
	border: 1px solid #333333;
	color: #333333;
}
/* -----contactここまで----- */

/* -----responsive----- */
@media only screen and (max-width: 1023px) {
	header h1 img {
		width: 24%;
	}
	#main{
		margin: 0 10px;
	}
	.container{
		width: 100%;
		flex-direction: column;
	}
	.main-contents{
		width: 100%;
	}
	#pagetop{
		margin-bottom: 0;
	}
	footer ul{
		flex-direction: column;
		text-align: center;
	}
	footer ul li{
		width: 96%;
		margin: 0 auto;
		padding: 10px 0;
		border-bottom: 1px dotted #ccc;
	}
	.pankuzu {
		padding: 0 40px;
	}
	#top .common_info .box-l, #top .common_info .box-r {
		padding: 0 10px;
	}
	.second .mainvis-sub {
		height: 24vh;
	}
	.second .container {
		width: 96%;
	}
	.second .staffbox {
		width: 48%;
	}
	.contact-box {
		width: 90%;
	}
	p.contact-tx-01 {
		width: 100%;
	}
	.contact table {
		width: 100%;
	}
}
@media only screen and (max-width: 767px) {
	.mb0{
		margin-bottom: 0 !important;
	}
	.mb40{
		margin-bottom: 40px;
	}
	header {
		height: 60px;
	}
	header h1 {
		height: 60px;
	}
	header h1 img {
		width: 40%;
		height: auto;
	}
	#main{
		margin: 0 20px 40px;
	}
	#main h2{
		font-size: 1.8rem;
	}
	#main h3{
		font-size: 1.6rem;
	}
	.button-1 {
		width: 100%;
		/*width: 70%;*/
	}
	.button-1 a {
		font-size: 1.2rem;
	}
	.flex {
		flex-direction: column-reverse;
	}
	.flex2 {
		flex-direction: column-reverse;
	}
	.flex3 {
		flex-direction: column;
	}
	footer .footervis {
		background: url("../img/common/footervis_01_smp.jpg") no-repeat;
	}
	footer .footervis ul li{
		border: none;
		padding: 10px 0 0;
	}
	footer nav {
		width: 100%;
		border-bottom: none;
	}
	footer p.copyright {
		font-size: 1rem;
	}
	.footer_fix_btn {
		position:fixed;
		bottom:0;
		width:100%;
		text-align:center;
		background:#333333;
		box-shadow: 0px -2px 11px 0px #ccc;
	}
	.footer_fix_btn ul{
		display: flex;
	}
	.footer_fix_btn ul li {
		width:100%;
		border-right: 1px solid #eeeeee;
		background-color: #333333;
	}
	.footer_fix_btn ul li+ li {
		border-right: 1px solid #eeeeee;
	}
	.footer_fix_btn ul li a {
		display:block;
		padding:10px 0 0;
		width:100%;
		text-decoration:none;
	}
	.footer_fix_btn ul li a img{
		width: 64%;
		height: auto;
	}
	.pankuzu {
		padding: 0 8px;
	}
	.spview {
		display: block;
	}
	.pcview {
		display: none!important;
	}	
	#pageTop {
		position: fixed;
		bottom: 80px;
		right: 20px;
	}
	#top .mainbox {
		flex-direction: column;
		margin-bottom: 80px;
	}
	#top .mainvis {
		height: 56vh !important;
		width: 100%;
		margin: 0 0 60px 0;
	}
	#top .maintext {
		width: 100%;
		padding: 0 40px;
	}
	#top .maintext h2 img{
		width: 50%;
	}
	#top .vegas-wrapper {
		width: 90%;
		margin: auto;
	}
	#top .b01 .box-l {
		width: 100%;
		padding: 40px 0 0 0;
	}
	#top .b01 .box-r {
		width: 100%;
	}
	#top .b02 .service_box {
		width: 100%;
	}
	#top .b02 .service_box .under_box h2.title img{
		width: 56%;
		height: auto;
	}
	#top .b03 .box-l {
		width: 100%;
		padding: 40px 40px 0;
		border-left: none;
	}
	#top .b03 .box-l p.link {
		margin-bottom: 0px;
	}
	#top .b03 .box-r {
		width: 100%;
	}
	#top .b04 .box-l {
		width: 100%;
		padding: 40px 40px 0;
		border-right: none;
	}
	#top .b04 .box-l p.link {
		margin-bottom: 0px;
	}
	#top .b04 .box-r {
		width: 100%;
	}
	#top .news {
		background: url("../img/top/vis_05_smp.jpg") no-repeat;
		margin-bottom: 20px;
	}
	#top .news .inner {
		width: 90%;
	}
	#top .news h2.title img {
		width: 8%;
		padding-bottom: 20px;
}
	#top .about_medicalinfo {
		margin-bottom: 30px;
	}
	#top .top-contents-box h2.title {
		margin-bottom: 0px;
	}
	#top .top-contents-box h2.title img {
		/*width: 80%;*/
	}
	#top .top-contents-box .box-01 {
		width: 100%;
		height: 50vh;
		margin-bottom: 20px;
	}
	#top .top-contents-box .box-02 {
		width: 100%;
		height: 50vh;
	}
	#top .top-contents-box .about .inner,
	#top .top-contents-box .medicalinfo .inner {
		height: 40vh;
		/*height: 30vh;
		height: 40vh;*/
	}
	#top .top-contents-box .about .inner p img,
	#top .top-contents-box .medicalinfo .inner p img {
		width: 24%;
	}
	#top .top-contents-box .about .inner h2.title,
	#top .top-contents-box .medicalinfo .inner h2.title {
		margin-bottom: 20px;
	}
	#top .orthopedics {
		position: unset;
		margin-bottom: 20px;
	}
	#top .orthopedics .inner {
		width: 100%;
		margin-bottom: 20px;
	}
	#top .orthopedics .titlebox_01 {
		padding: 0px;
		margin-bottom: 20px;
	}
	#top .orthopedics .titlebox_01 .box_icon p {
		text-align: center;
	}
	#top .orthopedics .titlebox_01 .box_icon p img {
		width: 60%;
		height: auto;
	}
	#top .orthopedics .titlebox_01 .box_title h2 img {
		width: 72%;
		height: auto;
	}
	#top .orthopedics .txtbox_01 {
		padding: 20px;
	}
	#top .orthopedics .txtbox_01 p {
		width: 100%;
		margin-bottom: 20px;
	}
	#top .orthopedics_img {
		position: unset;
	}
	#top .orthopedics_img img{
		width: 100%;
		height: auto;
	}
	#top .gmap {
		margin-bottom: 20px;
	}
	#top .common_info .box-l,
	#top .common_info .box-r {
		padding: 0;
	}
	#top .common_info .box-l h2,
	#top .common_info .box-r h2{
		margin-bottom: 20px;
	}
	#top .box-l,
	#top .box-r {
		width: 100%;
	}
	#top .box-l {
		/*margin-bottom: 20px;*/
	}
	#top .box-l p {
		margin-bottom: 20px;
	}
	#top .box-r p {
		margin-bottom: 20px;
	}
	#top .s-box {
		width: 100%;
		margin-bottom: 40px;
	}
	#top .s-box2 {
		width: 100%;
	}
	#top .info_calendar tr.r2 th {
		width: 20%;
	}
	.cd-breadcrumb {
		padding: 0 10px;
	}
	.second .mainvis-sub {
		/*margin-top: 50px;*/
	}
	.second .main-title h1 {
		/*font-size: 2rem;*/
	}
	.second .main-title h1 img {
		width: 80%;
	}
	.second .titlebox {
		margin-bottom: 20px;
	}
	.second .titlebox img {
		width: 8%;
	}
	.second .gmap iframe {
		width: 100%;
	}
	.second .access table th {
		text-align: left;
	}
	.second .access table td,
	.second .access table th {
		display: block;
		border: none;
		width: 100%;
	}
	.second .gallery ul li {
		width: 49%;
	}
	.second .map2 p img{
		width: 100%;
	}
	.second .staffbox {
		width: 100%;
	}
	.second .kigan-list ul{
		text-align: left;
	}
	.contact-box th {
		display: block;
		width: 100%;
	}
	.contact-box td {
		display: block;
		width: 100%;
	}
	p.policy-link{
		text-align: left;
	}
}
/* ---------------------------------------------------------------------------------------responsiveここまで */
