@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: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.4rem;
	font-weight: normal;
	font-style: normal;
	color: #333333;
}
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: #106396;
}
.bg-color1{
	background: #106396;
}
.color2 {
	color: #e7211a;
}
.bg-color2{
	background: #e7211a;
}
.wid {
	width: 100%;
}
.pad10 {
	padding: 10px;
}
.pad20 {
	padding: 20px;
}
.margin-b20{
	margin-bottom: 20px;
}
.margin-b40{
	margin-bottom: 40px;
}
.margin-b80{
	margin-bottom: 80px;
}
.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;
}
.flex4{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
hr{
	width: 80%;
	height: 1px;
	background-color: #dcc48d;
	border: none;
	margin-bottom: 40px;
}
.lineheight24{
	line-height: 2.4;
}
/* -----Basic styleここまで----- */


/* -----Common style----- */
.wrapper {
	width: 100%;
	height: 100vh;
}
header {
	height: 80px;
	background: #fff;
}
header h1{
	text-align: center;
    height: 80px;
    display: flex;
    justify-content: center;
	align-items: center;
	padding-top: 8px;
}
header h1 img{
	width: 100%;
    height: auto;
}
#main {
	margin-bottom: 80px;
}
#main h2{
	font-size: 2.8rem;
}
#main h3{
	font-size: 1.8rem;
	font-weight: bold;
}
.container {
	/*width: 980px;
	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 #333;
	/*border: 1px solid #a5a5a5;*/
}
.button-1 a{
    display: block;
    font-size: 1.6rem;
    color: #333;
    /*color: #a5a5a5;*/
    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: #333;
    /*background: #a5a5a5;*/
    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{
	padding-bottom: 20px;
}
footer nav{
	/*width: 980px;*/
    margin: 0 auto 20px;
    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{
	color: #333333;
	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 h2 img{
	width: 20%;
	height: auto;
}
footer .footervis ul{
	display: block;
	text-align: center;
}
footer .footervis ul li{
	font-weight: bold;
}
footer .footervis ul li a{
	color: #333;
}
/* popup */
#popup {
	position: fixed;
	bottom: 80px;
	right: 20px;
}
#popup a {
	display: block;
	z-index: 999;
}
#popup a:hover {
	text-decoration: none;
	opacity: 0.7;
}

/* 閉じるボタン */
.close-button {
	width: 30px;
    height: 30px;
    background: #fff;
    border: 1px solid #333;
    padding: 0px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
	top: -20px;
	left: -16px;
   /*width: 10px;
    height: 10px;
    background: #fff;
    border: 1px solid #333;
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;*/
}
.close-button:hover {
  background: #fff;
}
/* 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 .mainvis{
	height: 80%;
	/*margin-top: 80px;*/
	margin-bottom: 80px;
	margin-left: 80px;
	margin-right: 80px;
}
#top .visual {
	position: relative;
	width: 100%;
	height: 80vh;
	/*height: 100vh;*/
}
#top .movie {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*z-index: 1;*/
}
#top .movie video {
	position: absolute;
	top: 50%;
	left: 50%;
	/*display: block;*/
	/*width: auto;*/
	width: 100%;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%,-50%);
}

#top p.name_txt img{
	position: absolute;
	top: -320px;
    right: 40px;
    width: 36%;
    height: auto;
}
#top .main-contents .top-contents-box{
	/*margin-bottom: 40px;*/
}
#top .main-contents .top-contents-box:last-child{
	margin-bottom: 0;
}
#top .box-l,
#top .box-r{
	width: 48%;
}
#top .box-l 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 .top-contents-box h2.title{
    line-height: 1.6rem;
    margin-bottom: 20px;
	text-align: center;
}
#top .top-contents-box h2.title img{
	padding-bottom: 10px;
}
#top .top-contents-box h2.title span{
	display: block;
    /*color: #a5a5a5;*/
    font-size: 1.4rem;
}
#top .top-contents-box h2.title span.fs24 {
	font-size: 2.4rem;
}
#top .greeting{
	/*margin-bottom: 80px;*/
	padding: 80px 0 40px 0;
	background: #eeeeee;
}
#top .news{
	/*margin-bottom: 80px;*/
	padding: 40px 0;
	background: #eeeeee;
}
#top .news .inner{
	width: 980px;
	margin: 10px auto; 
}
#top .news h2.title{
	line-height: 3.2rem;
	margin-bottom: 40px;
}
#top .news ul{
	margin-bottom: 40px;
	padding: 0 80px;
}
#top .news ul li{
	margin-bottom: 16px;
	font-size: 1.6rem;
}
#top .news ul li a{
	position: relative;
	display: inline-block;
	transition: all .3s ease 0s;
}
#top .news ul li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	height: 1px;
	background-color: #000;
	transition: all .3s ease 0s;
}
#top .news ul li a:hover::after {
	width: 100%;
}
#top .philo{
	/*margin-bottom: 80px;*/
	padding: 40px 0 0;
}
#top .philo .inner{
	width: 980px;
	margin: 10px auto; 
}
#top .philo h2.title{
	line-height: 2.4rem;
	margin-bottom: 40px;
}
#top .philo_vis{
	width: 32%;
}
#top .philo_vis p img{
	width: 100%;
	height: auto;
}




#top .chara{
	/*margin-bottom: 80px;*/
	padding: 40px 0;
}
#top .chara .inner{
	width: 980px;
	margin: 10px auto; 
}
#top .chara h2.title{
	line-height: 2.4rem;
	margin-bottom: 40px;
}
#top .chara_vis{
	width: 22%;
}
#top .chara_vis p img{
	width: 100%;
	height: auto;
}

#top .media{
	/*margin-bottom: 80px;*/
	padding: 40px 0;
}
#top .media .inner{
	width: 980px;
	margin: 10px auto; 
}
#top .media h2.title{
	line-height: 2.4rem;
	margin-bottom: 40px;
}
#top .media_vis{
	width: 22%;
}
#top .media_vis a{
	display: block;
}
#top .media_vis a img{
	width: 100%;
	height: auto;
	border: 4px solid #ccc;
}
#top .top-contents-box .box-01{
	background: url("../img/top/subvis_01.jpg") no-repeat;
	background-size: cover;
	width: 50%;
	height: 80vh;
}
#top .top-contents-box .box-02{
	background: url("../img/top/subvis_02.jpg") no-repeat;
	background-size: cover;
	width: 50%;
	height: 80vh;
}
#top .top-contents-box .box-03{
	background: url("../img/top/subvis_03.jpg") no-repeat;
	background-size: cover;
	width: 50%;
	height: 80vh;
}
#top .top-contents-box .box-04{
	background: url("../img/top/subvis_04.jpg") no-repeat;
	background-size: cover;
	width: 50%;
	height: 80vh;
}
#top .top-contents-box .about{
	display: flex;
	justify-content: center;
	align-items: center;
}
#top .top-contents-box .about a{
	display: block;
	transition: all .3s ease 0s;
}
#top .top-contents-box .about a:hover{
	opacity: .8;
}
#top .top-contents-box .about .inner{
	background: rgba(255,255,255,0.84);
    width: 80%;
    height: 80%;
    /*height: 50vh;*/
    padding: 32px;
	margin: 0 auto;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/*#top .top-contents-box .about .inner h2 img,
#top .top-contents-box .medicalinfo .inner h2 img{
	width: 60%;
    height: auto;
}*/
#top .top-contents-box .about .inner h2 span{
	/*color: #a5a5a5;*/
}
#top .top-contents-box .about .inner p{
	text-align: center;
    /*color: #a5a5a5;*/
	margin-bottom: 20px;
}
#top .top-contents-box .about .inner p img{
	width: 32%;
    height: auto;
}
#top .orthopedics{
    position: relative;
	margin-bottom: 80px;
}
#top .orthopedics .inner{
	width: 70%;
}
#top .orthopedics .titlebox_01{
	display: flex;
    padding: 0 80px 80px;
}
#top .orthopedics .titlebox_01 .box_icon p{
	padding-top: 12px;
}
#top .orthopedics .titlebox_01 .box_icon p img{
	width: 80%;
    height: auto;
}
#top .orthopedics .titlebox_01 .box_title h2 span{
	display: block;
	font-size: 1.6rem;
    line-height: 1;
}
#top .con_box{
	margin-bottom: 80px;
}
#top .con_box .inner{
	width: 80%;
    margin: 0 auto;
}
#top .con_box .inner h2{
	line-height: 3.2rem;
	margin-bottom: 40px;
}
#top .con_box .inner p{
	margin-bottom: 40px;
	text-align: center;
}
#top .con_box .inner2{
	width: 100%;
    margin: 0 auto;
}
#top .con_box .inner2 h2{
	line-height: 2.4rem;
	margin-bottom: 40px;
}
#top .con_box .inner2 p{
	margin-bottom: 40px;
	text-align: center;
}
/*#top .sdgs-box{
	width: 48%;
	padding: 0 32px;
}
#top .sdgs-box .img-sdgs img{
	width: 100%;
	height: auto;
}*/
#top .contact-box{
	width: 100%;
	padding: 0 32px;
	position: relative;
}
#top .contact-box a{
	display: block;
	text-align: center;
}
#top .contact-box a img{
	width: 90%;
	height: auto;
}
/*#top .contact-box::after{
	position: absolute; /*--positionを追加--*/
	/*top: 0;
	left: 100%;
	margin: 0 1rem;
	content: "";
	width: 1px; /*--縦線の太さ(幅)--*/
	/*height: 100%;
	background-color: #a5a5a5; /*--縦線の色--*/
/*}*/
#top .greeting .contact-box{
	width: 50%;
	padding: 0 32px;
	position: relative;
}
#top .greeting .contact-box p img{
	width: 100%;
	height: auto;
}
#top .greeting .sdgs-box{
	width: 50%;
	padding: 0 32px;
	position: relative;
}
#top .greeting .sdgs-box p{
	text-align: left;
	font-size: 1.6rem;
	line-height: 3rem;
}
#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 .common_info_inner {
    width: 100%;
}
#top .common_info .box-l,
#top .common_info .box-r{
	padding: 0 80px;
}
#top .info_calendar {
    width: 100%;
    margin: 0 auto 15px;
    border-collapse: collapse;
    border-top: 3px solid #a5a5a5;
    border-bottom: 3px solid #a5a5a5;
}
#top .info_calendar tr {
    border-bottom: 1px dotted #a5a5a5;
}
#top .info_calendar tr td {
    color: #333;
	text-align: center;
}
#top .info_calendar tr th,
#top .info_calendar tr td {
    padding: 5px 0;
}
#top .info_calendar tr.r1 th {
    color: #333;
}
#top .info_calendar tr.r1 th.sat {
    color: #0f90d3;
}
#top .info_calendar tr.r1 th.sun {
    color: #ff0000;
}
#top .info_calendar tr.r2 th {
	width: 30%;
}
#top .reception-time{
	background: #EAE4D6;
    padding: 10px;
    margin-bottom: 20px;
}
#top .reception-time h3{
	padding: 0 10px;
    border-bottom: 1px solid #fff;
    margin-bottom: 5px;
}
#top .reception-time p{
	padding: 0 20px 0 10px;
    margin-bottom: 0;
}
#top .pv01{
	width: 80%;
	height: auto;
	margin: 0 auto 80px;
}
/* -----topここまで----- */

/* -----subpage Common style----- */
.second .container{
	width: 980px;
	margin: 0 auto;
	font-size: 1.6rem;
}
.second .container p,
.second .container li{
	font-size: 1.6rem;
}
.second .mainvis-sub_01{
	background: url("../img/second/mainvis_sub_01.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: 64%;
    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: .5px solid #333333;
    margin-bottom: 40px;
    padding-bottom: 5px;
}
.second .titlebox img{
	width: 4%;
    margin-right: 10px;
}
.second .main-contents .top-contents-box{
	margin-bottom: 40px;
}
/* -----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%;
	vertical-align: middle;
}
.second .access table td{
	width: 70%;
}
/* -----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: 48%;
	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;
}
/* -----newsここまで----- */

/* -----media----- */
.second .media_box::before{
  content:"";
  display: block;
  width:22%;
  order:1;
}
.second .media_box::after{
  content:"";
  display: block;
  width:22%;
}
.second .media_box .media_vis{
	margin-bottom: 24px;
}
/* -----mediaここまで----- */

/* -----access----- */
.second .map2 p{
	text-align: center;
}
.second .map2 p img{
	width: 80%;
	height: auto;
}
/* -----accessここまで----- */

/* -----recruit----- */
.second .titlebox-recruit{
	margin: 80px 0;
}
.second .titlebox-recruit h2{
	text-align: center;
}
.second .titlebox-recruit h2 img{
	width: 32%;
	padding-bottom: 40px;
}
.second .titlebox-recruit p{
	text-align: center;
	font-size: 2rem;
}
/* -----recruitここまで----- */

/* -----about----- */
.second .iso-con img{
	width: 40%;
	height: auto;
}
.second .iso-con2 img{
	width: 40%;
	height: auto;
}
/* -----aboutここまで----- */

/* -----process----- */
.second .box-process {
	width: 30%;
	margin-bottom: 40px;
}
.second .box-process:last-child {
  margin-bottom: 0;
}
.second .box-process img{
	width: 100%;
	height: auto;
}
.second .box-process p.ttl img{
	width: 50%;
	height: auto;
}
/* -----processここまで----- */

/* -----estimate----- */
.estimate .box-process {
	width: 30%;
	margin-bottom: 40px;
	border: 1px solid #ccc;
	padding: 16px;
	height: 50vh;
}
.estimate .box-process h2{
	font-size: 2.4rem!important;
    border-bottom: 2px solid #ccc;
    margin-bottom: 8px;
}
.estimate .box-process img{
	width: 100%;
	height: auto;
}
.estimate .box-process p.ttl img{
	width: 50%;
	height: auto;
}
.second .estimate_box::before{
  content:"";
  display: block;
  width:30%;
  order:1;
}
.second .estimate_box::after{
  content:"";
  display: block;
  width:30%;
}

/* -----estimateここまで----- */


/* -----contact----- */
select{
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-indent: 1em;
    background: url(../img/contact/arw-select-down.png) no-repeat;
    background-size: 20px;
    background-position: right center;
    height: 40px;
    line-height: 3rem;
    font-size: 1.4rem;
    vertical-align: middle;
    border:1px solid #CCC;
    margin-bottom:20px;
	border-radius: 0px;
	width: 100%;
}
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{
    text-indent: 1em;
    height: 140px;
    line-height: 3rem;
    font-size: 1.4rem;
    vertical-align: middle;
    border:1px solid #CCC;
    margin-bottom:20px;
	border-radius: 0px;
	width: 100%;
}
.contact table{
	margin: 20px auto;
	width: 80%;
}
.contact th{
	font-size: 1.4rem;
	text-align: left;
	vertical-align: top;
	width: 30%;
}
.contact 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;
    border:1px solid #333333;
}
p.form-btn input:hover{	
	background: #fff;
	border: 4px solid #333333;
	color: #333333;
}
.check{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.check label {
    font-size: 1.4rem;
    padding: 10px;
    transition: .3s ease-in-out;
}
.check input {
    height: auto;
    margin-bottom: 0;
    vertical-align: baseline;
    width: auto;
}
/* -----contactここまで----- */

/* -----responsive----- */
@media only screen and (max-width: 1023px) {
	header h1 img {
		/*width: 40%;*/
		width: 80%;
	}
	#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 .mainvis {
		height: 40%;
		/* margin-top: 80px; */
		margin-bottom: 0px;
		margin-left: 0px;
		margin-right: 0px;
	}
	#top .visual {
		position: relative;
		width: 100%;
		height: 39vh;
		/* height: 100vh; */
	}
	#top .greeting .contact-box {
		width: 100%;
		padding: 0px;
		position: relative;
	}
	#top .greeting .sdgs-box {
		width: 100%;
		padding: 0px;
		position: relative;
	}
	#top .common_info .box-l, #top .common_info .box-r {
		padding: 0 10px;
	}
	#top .top-contents-box .box-01{
		height: 50vh;
	}
	#top .top-contents-box .box-02{
		height: 50vh;
	}
	#top .top-contents-box .box-03{
		height: 50vh;
	}
	#top .top-contents-box .box-04{
		height: 50vh;
	}
	#top .top-contents-box .about .inner p, #top .top-contents-box .medicalinfo .inner p {
		text-align: left;
	}
	#top .news .inner {
		width: 100%;
		padding: 0 40px;
	}
	#top .contact-box {
		width: 100%;
		padding: 0px;
		position: relative;
	}
	#top .contact-box a img {
		width: 100%;
		height: auto;
	}
	.second .mainvis-sub {
		height: 24vh;
	}
	.second .container {
		width: 96%;
	}
	.second .staffbox {
		width: 48%;
	}
	.estimate .box-process h2 {
		font-size: 1.8rem !important;
		border-bottom: 2px solid #ccc;
		margin-bottom: 8px;
	}
	.contact table {
		width: 100%;
	}
	p.policy-link{
		text-align: left;
	}
}
@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: 56%;
		height: auto;
	}
	#main{
		margin: 0 10px 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;*/
		flex-wrap: wrap;
	}
	.flex2 {
		flex-direction: column;
	}
	.flex3 {
		flex-direction: column;
	}
	footer .footervis {
		background: url("../img/common/footervis_01_smp_re.jpg") no-repeat;
		background-size: cover;
	}
	footer .footervis h2 {
		margin-bottom: 0px;
	}
	footer .footervis h2 img {
		width: 72%;
	}
	footer .footervis ul {
		padding: 0px;
	}
	footer .footervis ul li{
		border: none;
	}
	footer nav {
		width: 100%;
		border-bottom: none;
	}
	.footer_fix_btn {
		position:fixed;
		bottom:0;
		width:100%;
		text-align:center;
		background:#106396;
		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: #106396;
	}
	.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: 60%;
		height: auto;
	}
	.pankuzu {
		padding: 0 8px;
	}
	.spview {
		display: block;
	}
	.pcview {
		display: none!important;
	}	
	#pageTop {
		position: fixed;
		bottom: 80px;
		right: 20px;
	}
	#top .mainvis {
		height: 80% !important;
		/*margin-top: 50px;
		margin-bottom: 20px;*/
		margin: 0 0 60px 0;
	}
	#top .visual {
        position: relative;
        width: 100%;
        height: 82vh;
        /* height: 100vh; */
    }
	#top .vegas-wrapper {
		width: 90%;
		margin: auto;
	}
	#top .mainvis .inner h2 {
		margin-bottom: 40px;
	}
	#top .mainvis .inner h2 img{
		width: 64%;
	    height: auto;
	}
	#top .mainvis .inner p {
		font-size: 1.2rem;
		width: 95%;
	    margin-bottom: 20px;
	}

	#top p.name_txt img {
		top: -110px;
		right: 20px;
		width: 40%;
	}
	#top p.sub_txt {
		width: 90%;
		margin: 0 auto 60px;
	}
	#top .top-contents-box h2.title span.fs24 {
		font-size: 2rem;
	}
	#top .news {
		background: url("../img/top/subvis_01_smp.jpg") no-repeat;
		margin-bottom: 40px;
	}
	#top .news .inner {
		width: 90%;
		padding: 0;
		margin: 0 auto;
	}
	#top .news ul {
		padding: 0;
	}
	#top .contact-box {
		width: 90%;
		padding: 0px;
		margin: 0 auto 40px;
		border-bottom: 1px solid #cccccc;
	}
	#top .contact-box::after {
		display: none;
	}
	#top .sdgs-box {
		width: 90%;
		padding: 0;
		margin: 0 auto;
	}
	#top .philo_vis {
		width: 100%;
	}
	#top .chara_vis {
		width: 48%;
	}
	#top .media_vis {
		width: 48%;
	}
	#top .about_medicalinfo {
		margin-bottom: 30px;
	}
	#top .top-contents-box h2.title {
		margin-bottom: 20px;
	}
	#top .top-contents-box h2.title img {
		width: 80%;
	}
	#top .top-contents-box .box-01 {
		width: 100%;
		height: 90vh;
		/*height: 72vh;*/
		margin-bottom: 20px;
	}
	#top .top-contents-box .box-02 {
		width: 100%;
		height: 90vh;
		/*height: 72vh;*/
		margin-bottom: 20px;
	}
	#top .top-contents-box .box-03 {
		width: 100%;
		height: 90vh;
		/*height: 72vh;*/
		margin-bottom: 20px;
	}
	#top .top-contents-box .box-04 {
		width: 100%;
		height: 90vh;
		/*height: 72vh;*/
		margin-bottom: 20px;
	}
	#top .top-contents-box .about .inner,
	#top .top-contents-box .medicalinfo .inner {
		height: 80vh;
		/*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 .con_box {
		margin-bottom: 20px;
	}
	#top .con_box .inner {
		width: 90%;
	}
	#top .con_box .inner .guide_box {
		width: 100%;
		display: flex;
		flex-direction: column-reverse;
		margin-bottom: 20px;
	}
	#top .con_box .inner .guide_box .under_box_01 {
		padding: 30px 0;
	}
	#top .con_box .inner .guide_box .under_box_01 h2{
		margin-bottom: 20px;
	}
	#top .con_box .inner .guide_box .under_box_01 h2 img{
		width: 50%;
	}
	#top .con_box .inner .guide_box .under_box_01 p.arrow_02 img {
		width: 12%;
	}
	#top .con_box .inner .gallery_box {
		width: 100%;
		margin-bottom: 20px;
	}
	#top .con_box .inner .gallery_box .upper_box_01 {
		padding: 30px 0;
	}
	#top .con_box .inner .gallery_box .upper_box_01 h2{
		margin-bottom: 20px;
	}
	#top .con_box .inner .gallery_box .upper_box_01 h2 img{
		width: 50%;
	}
	#top .con_box .inner .gallery_box .upper_box_01 p.arrow_02 img {
		width: 12%;
	}
	#top .con_box .inner .qa_box {
		width: 100%;
		display: flex;
		flex-direction: column-reverse;
		margin-bottom: 20px;
	}
	#top .con_box .inner .qa_box .under_box_01 {
		padding: 30px 0;
	}
	#top .con_box .inner .qa_box .under_box_01 h2{
		margin-bottom: 20px;
	}
	#top .con_box .inner .qa_box .under_box_01 h2 img{
		width: 50%;
	}
	#top .con_box .inner .qa_box .under_box_01 p.arrow_02 img {
		width: 12%;
	}
	#top .gmap {
		margin-bottom: 40px;
	}
	#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 .s-box {
		width: 100%;
		margin-bottom: 40px;
	}
	#top .s-box2 {
		width: 100%;
	}
	#top .info_calendar tr.r2 th {
		width: 20%;
	}
	#top .pv01{
		width: 100%;
	}
	.cd-breadcrumb {
		padding: 0 10px;
	}
	.second .mainvis-sub {
		/*margin-top: 50px;*/
	}
	.second .main-title h1 {
		/*font-size: 2rem;*/
	}
	.second .main-title h1 img {
		width: 38%;
	}
	.second .titlebox {
		margin-bottom: 20px;
	}
	.second .titlebox img {
		width: 8%;
	}
	.second .titlebox-recruit h2 img {
		width: 80%;
	}
	.second .titlebox-recruit p {
		font-size: 1.8rem;
	}
	.second .gmap iframe {
		width: 100%;
	}
	.second .access table th {
		text-align: left;
	}
	.second .access table td,
	.second .access table th {
		display: block;
		border: none;
	}
	.second .access table th{
		width: 100%;
	}
	.second .access table td{
		width: 100%;
	}
	.second .gallery ul li {
		width: 49%;
	}
	.second .map2 p img{
		width: 100%;
	}
	.second .staffbox {
		width: 100%;
	}	
	.second .iso-con img{
		width: 100%;
		height: auto;
	}	
	.second .iso-con2 img{
		width: 100%;
		height: auto;
	}
	.second .box-process {
		width: 100%;
		margin-bottom: 40px;
	}
	.second .box-process p.ttl {
		padding-bottom: 8px;
	}
	.second .box-process p.ttl img {
		width: 32%;
		height: auto;
	}
	.estimate .box-process {
		width: 100%;
		margin-bottom: 40px;
		border: 1px solid #ccc;
		padding: 16px;
		height: auto;
	}
	.estimate .box-process p.ttl {
		padding-bottom: 8px;
	}
	.estimate .box-process p.ttl img {
		width: 32%;
		height: auto;
	}
	.contact th {
		display: block;
		width: 100%;
	}
	.contact td {
		display: block;
		width: 100%;
	}
	p.policy-link{
		text-align: left;
	}
	p.form-btn {
		flex-direction: column;
	}
	input {
		margin-bottom: 0px;
	}
	/*hover解除*/
	.eff-0,
	.eff-1,
	.eff-2{
		display: none;
	}
}
/* ---------------------------------------------------------------------------------------responsiveここまで */
