@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.4;
	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: #ff9888;
}
.bg-color1{
	background: #ff9888;
}
.wid {
	width: 100%;
}
.pad10 {
	padding: 10px;
}
.pad20 {
	padding: 20px;
}
.margin-b20{
	margin-bottom: 20px;
}
.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-wrap: wrap;
}
.flex3{
	display: flex;
	justify-content: flex-start;
}
hr{
	width: 80%;
	height: 1px;
	background-color: #ff9888;
	border: none;
	margin-bottom: 40px;
}
.lineheight24{
	line-height: 2.4;
}
/* -----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: 18%;
    height: auto;
}
#main {
	/*margin-bottom: 40px;*/
}
#main h2{
	font-size: 2.2rem;
}
#main h3{
	font-size: 1.8rem;
	font-weight: bold;
}
.container {
	/*width: 980px;
	margin: 0 auto;*/
}
.main-contents {
	width: 100%;
}
.inner980{
	width: 980px;
	margin: auto;
}
/* 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 #ff9888;
}
.button-1 a{
    display: block;
    font-size: 1.6rem;
    color: #ff9888;
    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: #ff9888;
    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;
	border: 4px solid;	
	border-image: linear-gradient(to right, rgba(250, 154, 140, 1), rgba(106, 207, 255, 1))1;
}
.button-2 a{
    display: block;
    font-size: 1.4rem;
    text-decoration: none;
    line-height: 40px;
    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:#ff9888;
}
footer{
	padding-bottom: 20px;
}
footer .inner{
	width: 980px;
	margin: auto;
	text-align: center;
}
footer .inner h2{
	font-size: 2.2rem;
	font-weight: bold;
	color: #fff;
}
footer .inner p{
	color: #fff;
	margin-bottom: 20px;
}
footer .flex2 .map,
footer .flex2 .info{
	width: 50%;
}
footer .flex2 .map iframe{
	width: 100%;
}
footer .flex2 .info{
	padding: 40px;
}
footer .flex2 .info h2{
	border-bottom: 1px solid #ff9888;
}
footer .flex2 .info p{
	margin-bottom: 20px;
}
footer p.copyright{
	background: #ff9888;
	color: #fff;
	padding: 10px 0;
	text-align: center;
}
footer .footervis{
	background: url("../img/top/vis_08_footer.jpg") no-repeat;
	background-size: cover;
	padding: 40px 0 60px;
}
/* pagetop */
#pageTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
}
#pageTop a {
	display: block;
	z-index: 999999;
	padding: 6px;
	border-radius: 30px;
	width: 40px;
	height: 40px;
	background-color: #ff9888;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
}
#pageTop a:hover {
	text-decoration: none;
	opacity: 0.7;
}
/* entry */
#entry {
	position: fixed;
	top: 160px;
	right: 0px;
}
#entry a {
	display: block;
	z-index: 999999;
	padding: 6px;
	width: 50px;
	height: 240px;
	background-color: #ff9888;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	writing-mode: vertical-rl;
    text-orientation: sideways-right;
}
#entry a:hover {
	text-decoration: none;
	opacity: 0.7;
}
/* pankuzu */
.pankuzu{
	/*margin-bottom: 40px;*/
	background-color: #efefef;
	border-bottom: 1px solid #fff;
}
.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: #ff9888;
}
.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: #ff9888;
}
/*.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;
}

h1.test{
	display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}
/* -----Common styleここまで----- */

/* -----top----- */
#top .mainvis{
	height: 80%;
	/*margin-top: 80px;*/
	margin-bottom: 80px;
	margin-left: 80px;
	margin-right: 80px;
}
#top .vegas-wrapper{
	display: flex;
    align-items: flex-end;
    width: 100%;
}
#top .mainvis .inner h2{
	margin-bottom: 40px;
	padding: 8px 48px;
	background: #fff;
}
#top .mainvis .inner h2 img{
	vertical-align: top;
	width: 88%;
}
#top p.name_txt{
	position: relative;
}
#top p.name_txt img{
	position: absolute;
	top: -620px;
    left: 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 .box_n01{
	margin-bottom: 80px;
}
#top .box_n01 .heading{
	text-align: center;
}
#top .box_n01 h3{
	text-align: center;
	font-weight: bold;
	font-size: 3.2rem;
	padding-bottom: 16px;
}
#top .box_n01 p{
	text-align: center;
}
#top .box_n02{
	background: #efefef;
	margin-bottom: 80px;
	padding: 80px;
}
#top .box_n02 .heading{
	margin-bottom: 40px;
}
#top .box_n02 .heading h2{
}
#top .box_n02 .heading h2 img{
	width: 40%;
	height: auto;
}
#top .box_n02 .heading h3{
	display: inline-block;
	border-bottom: 4px solid;
	border-image: linear-gradient(to right, rgba(250, 154, 140, 1), rgba(106, 207, 255, 1))1;
	padding-bottom: 8px;
}
#top .box_n02 .point_contents{
	margin-bottom: 80px;
}
#top .box_n02 .point_contents .point_box{
	width: 30%;
}
#top .box_n02 .flex2 .point_box{
	margin-bottom: 40px;
}
#top .box_n02 .point_contents .point_box img.point_vis{
	width: 100%;
	height: auto;
}
#top .box_n02 .point_contents .point_box h3 img{
	padding-right: 8px;
}
#top .box_n03{
	margin-bottom: 80px;
}
#top .box_n03 .heading h2{
	text-align: center;
}
#top .box_n03 h3{
	text-align: center;
	margin-bottom: 40px;
}
#top .box_n03 .greeting_contents .greeting_box{
	width: 48%;
}
#top .box_n03 .greeting_contents .greeting_box img{
	width: 100%;
	height: auto;
}
#top .box_n04{
	background: #efefef;
	margin-bottom: 80px;
	padding: 80px;
}
#top .box_n04 .heading{
	margin-bottom: 40px;
}
#top .box_n04 .heading h2{
}
#top .box_n04 .heading h2 img{
	width: 40%;
	height: auto;
}
#top .box_n04 .heading h3{
	display: inline-block;
	border-bottom: 4px solid;
	border-image: linear-gradient(to right, rgba(250, 154, 140, 1), rgba(106, 207, 255, 1))1;
	padding-bottom: 8px;
}
#top .box_n04 .job_contents{
	margin-bottom: 80px;
}
#top .box_n04 .job_contents .job_box{
	width: 48%;
}
#top .box_n04 .job_contents .job_box img.job_vis{
	width: 100%;
	height: auto;
}
#top .box_n04 .job_contents .job_box h3{
	border-bottom: 1px solid rgba(250, 154, 140, 1);
	margin-bottom: 16px;
}
#top .box_n04 .job_contents .job_box h3 img{
	padding-right: 8px;
}
#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 .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 .about_medicalinfo{
	margin-bottom: 80px;
}
#top .top-contents-box .box-01{
	background: url("../img/top/subvis_02.jpg") no-repeat;
	background-size: cover;
	width: 50%;
	height: 80vh;
}
#top .top-contents-box .box-02{
	background: url("../img/top/subvis_03.jpg") no-repeat;
	background-size: cover;
	width: 50%;
	height: 80vh;
}
#top .top-contents-box .about,
#top .top-contents-box .medicalinfo{
	display: flex;
	justify-content: center;
	align-items: center;
}
#top .top-contents-box .about a,
#top .top-contents-box .medicalinfo a{
	display: block;
	transition: all .3s ease 0s;
}
#top .top-contents-box .about a:hover,
#top .top-contents-box .medicalinfo a:hover{
	opacity: .8;
}
#top .top-contents-box .about .inner,
#top .top-contents-box .medicalinfo .inner{
	background: #fff;
    width: 80%;
    height: 50vh;
    padding: 50px;
	margin: 0 auto;
}
#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,
#top .top-contents-box .medicalinfo .inner h2 span{
	color: #a5a5a5;
}
#top .top-contents-box .about .inner p,
#top .top-contents-box .medicalinfo .inner p{
	text-align: center;
}
#top .top-contents-box .about .inner p img,
#top .top-contents-box .medicalinfo .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 .orthopedics .txtbox_01{
	background: #EAE4D6;
	padding: 80px;
}
#top .orthopedics .txtbox_01 p{
	width: 60%;
	margin-bottom: 40px;
}
#top .orthopedics .txtbox_01 a{
	display: block;
}
#top .orthopedics_img{
	position: absolute;
    top: 40px;
    right: 0;
}
#top .con_box{
	margin-bottom: 80px;
}
#top .con_box .inner{
	width: 80%;
    margin: 0 auto;
}
#top .con_box .inner h2 span{
	color: #a5a5a5;
}
#top .con_box .inner .guide_box{
	width: 30%;
	background: #BBFFD0;
}
#top .con_box .inner .guide_box p img{
	display: block;
	width: 100%;
	height: auto;
}
#top .con_box .inner .guide_box .under_box_01{
	padding: 40px 24px 24px;
	height: 50%;
}
#top .con_box .inner .guide_box .under_box_01 a{
	display: block;
	transition: all .3s ease 0s;
}
#top .con_box .inner .guide_box .under_box_01 a:hover{
	opacity: .4;
}
#top .con_box .inner .guide_box .under_box_01 p.arrow_02 img{
	width: 20%;
	height: auto;
	margin: 0 auto;
}
#top .con_box .inner .gallery_box{
	width: 30%;
	background: #D5FFF3;
}
#top .con_box .inner .gallery_box p img{
	display: block;
	width: 100%;
	height: auto;
}
#top .con_box .inner .gallery_box .upper_box_01{
	padding: 40px 24px 24px;
	height: 50%;
}
#top .con_box .inner .gallery_box .upper_box_01 a{
	display: block;
	transition: all .3s ease 0s;
}
#top .con_box .inner .gallery_box .upper_box_01 a:hover{
	opacity: .4;
}
#top .con_box .inner .gallery_box .upper_box_01 p.arrow_02 img{
	width: 20%;
	height: auto;
	margin: 0 auto;
}
#top .con_box .inner .qa_box{
	width: 30%;
	background: #E7FFAB;
}
#top .con_box .inner .qa_box p img{
	display: block;
	width: 100%;
	height: auto;
}
#top .con_box .inner .qa_box .under_box_01{
	padding: 40px 24px 24px;
	height: 50%;
}
#top .con_box .inner .qa_box .under_box_01 a{
	display: block;
	transition: all .3s ease 0s;
}
#top .con_box .inner .qa_box .under_box_01 a:hover{
	opacity: .4;
}
#top .con_box .inner .qa_box .under_box_01 p.arrow_02 img{
	width: 20%;
	height: auto;
	margin: 0 auto;
}
#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 .news-box{
	margin: 40px 0;
}
#top .news-box ul li a{
	display: block;
    font-size: 1.4rem;
    border-bottom: 1px dotted #ccc;
    padding: 20px 20px;
	transition: all .3s ease 0s;
}
#top .news-box ul li a:hover{
	color: #fff;
	background: #ff9888;
	border-bottom: 1px solid #ff9888;
}

/* -----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: 40vh;
}
.second h2.name_txt {
}
.second h2.name_txt img {
    /*width: 32%;
    height: auto;*/
	padding-bottom: 20px;
}
.second .main-title{
	padding: 40px 0;
}
.second .main-title p{
	font-size: 1.8rem;
	font-weight: bold;
}
.second h2.title img{
	vertical-align: bottom;
	margin-right: 8px;
}
.second .titlebox{
	display: flex;
    border-bottom: 2px dotted #ff9888;
    margin-bottom: 40px;
    padding-bottom: 5px;
}
.second .titlebox img{
	width: 4%;
    margin-right: 10px;
}
.second .main-contents .top-contents-box{
	margin-bottom: 40px;
}
.second .box_n02{
	background: #fff !important;
	margin-bottom: 80px;
	padding: 80px;
}
/* -----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{
	margin-bottom: 40px;
}
.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%;
}
/* -----accessここまで----- */

/* -----landscape----- */
.second .gallery{
	margin-top: 40px;
}
.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{
	margin: 40px 0;
}
.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: #ff9888;
	border-bottom: 1px solid #ff9888;
}

/*カレンダー*/
#top .calendar-container {
	width: 100%;
	margin: 0 auto 20px;
	padding: 40px;
	border-radius: 5px;
	background: #f6f5f4;
	color: #1a1a1a;
}
#top .calendar-container h2 {
	height: 80px;
	line-height: 80px;
	text-align: center;
	font-size: 24px;
	margin: 0;
}
#top .calendar {
	padding: 0 30px 30px 30px;
}
#top .calendar-container table {
	width: 100%;
}
#top .calendar-container th,
#top .calendar-container td {
	text-align: center;
	padding: 10px;
}
#top .calendar-container td {
	font-weight: bold;
}
#top .calendar-container .rest {
	color: #ff838b;
}
#top .calendar-container .sat {
	color: #669900;
}
#top .calendar-container .half {
	color: #6fb5ff;
}
#top .calendar-container .day *:first-child {
	color: #ff838b;
}
/*#top .calendar-container .day *:last-child {
	color: #6fb5ff;
}*/
#top .calendar-container p {
	text-align: center;
	padding: 16px 0 0 0;
}


/* -----newsここまで----- */

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

/* -----recruit----- */
.recruit .box_n04{
	background: #fff !important;
}
/* -----recruitここまで----- */

/* -----doctor----- */
.doctor .box_n03{
	padding: 80px 0 0;
}
/* -----doctorここまで----- */

/* -----interview----- */
.interview .box_n03{
	padding: 80px 0 0;
}
.interview_contents{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-bottom: 16px;
}
.interview_contents .interview_box01{
	width: 20%;
	padding: 16px;
}
.interview_contents .interview_box01 img{
	width: 100%;
	height: auto;
}
.interview_contents .interview_box02{
	width: 80%;
	padding: 16px;
	background: #efefef;
}
/* -----doctorここまで----- */

/* -----contact----- */
select{
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-indent: 1em;
    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: #ff9888;
	color: #fff;
    transition: all .2s ease;
    border:1px solid #ff9888;
}
p.form-btn input:hover{	
	background: #fff;
	border: 4px solid #ff9888;
	color: #ff9888;
}
.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: 24%;
	}
	#main{
		margin: 0 10px;
	}
	.container{
		width: 100%;
		flex-direction: column;
	}
	.main-contents{
		width: 100%;
	}
	.inner980 {
		width: 96%;
	}
	#pagetop{
		margin-bottom: 0;
	}
	footer .inner {
		width: 90%;
	}
	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: 50%;
		margin-left: 0px;
		margin-right: 0px;
	}
	#top .mainvis .inner h2 img {
		width: 72%;
	}
	#top .box_n02 {
		margin-bottom: 40px;
	}
	#top .box_n02 {
		padding: 40px 20px 8px;
	}
	#top .box_n04 {
		padding: 80px 20px 8px;
	}
	#top .box_n04 {
		margin-bottom: 40px;
	}
	#top p.name_txt img {
		top: -570px;
		width: 48%;
	}
	#top .common_info .box-l, #top .common_info .box-r {
		padding: 0 10px;
	}
	.second .mainvis-sub {
		height: 32vh;
	}
	.second .container {
		width: 96%;
		margin: auto;
	}
	.second .staffbox {
		width: 48%;
	}
	.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: 40%;
		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;
	}
	.flex2 {
		flex-direction: column;
	}
	.flex3 {
		flex-direction: column;
	}
	footer .footervis {
		background: url("../img/top/vis_08_footer_smp.jpg") no-repeat;
		background-size: cover;
	}
	footer .inner p {
		text-align: left;
	}
	footer .flex2 .map,
	footer .flex2 .info {
		width: 100%;
	}
	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:#ff9888;
		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: #ff9888;
	}
	.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: 80%;
		height: auto;
	}
	.pankuzu {
		padding: 0 8px;
	}
	.spview {
		display: block;
	}
	.pcview {
		display: none!important;
	}	
	#pageTop {
		position: fixed;
		bottom: 80px;
		right: 8px;
		z-index: 9999;
	}
	#top .mainvis {
		height: 56% !important;
		/*margin-top: 50px;
		margin-bottom: 20px;*/
		margin: 0 0 60px 0;
	}
	#top .vegas-wrapper {
		width: 100%;
		margin: auto;
	}
	#top .vegas-wrapper .inner{
		width: 64%;
	}
	#top .mainvis .inner h2 {
		margin-bottom: 24px;
		padding: 8px 24px;
	}
	#top .mainvis .inner h2 img{
		width: 72%;
		vertical-align: middle;
	}
	#top .mainvis .inner p {
		font-size: 1.2rem;
		width: 95%;
	    margin-bottom: 20px;
	}
	#top p.name_txt {
		/*display: none;*/
	}
	#top p.name_txt img {
		top: -390px;
		left: 20px;
		width: 56%;
	}
	#top p.sub_txt {
		width: 90%;
		margin: 0 auto 40px;
	}
	#top .news {
		background: url("../img/top/subvis_01_smp.jpg") no-repeat;
		margin-bottom: 20px;
	}
	#top .news .inner {
		width: 90%;
	}
	#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 .con_box {
		margin-bottom: 20px;
	}
	#top .con_box .inner {
		width: 100%;
	}
	#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: 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 .s-box {
		width: 100%;
		margin-bottom: 40px;
	}
	#top .s-box2 {
		width: 100%;
	}
	#top .info_calendar tr.r2 th {
		width: 20%;
	}

	#top .box_n01 h3 {
		font-size: 1.8rem;
	}
	#top .box_n01 p {
		text-align: left;
	}
	#top .box_n02 .heading h2 img {
		width: 90%;
	}
	#top .box_n02 .point_contents .point_box{
		width: 100%;
	}
	#top .box_n02_smp{
		background: #efefef;
		margin-bottom: 80px;
	}
	#top .box_n02_smp .inner{
		width: 90%;
		margin: 0 auto;
		padding: 40px 0 20px;
	}
	#top .box_n02_smp .heading{
		margin-bottom: 40px;
	}
	#top .box_n02_smp .heading h2 img{
		width: 90%;
		height: auto;
	}
	#top .box_n02_smp .heading h3{
		display: inline-block;
		border-bottom: 4px solid;
		border-image: linear-gradient(to right, rgba(250, 154, 140, 1), rgba(106, 207, 255, 1))1;
		padding-bottom: 8px;
	}
	#top .box_n02_smp .inner .box_n02_smp-contents{
		margin-bottom: 30px;
	}
	#top .box_n02_smp .inner .box_n02_smp-contents .point_box{
		padding: 10px;
	}
	#top .box_n02_smp .inner .box_n02_smp-contents .point_box img.point_vis{
		width: 100%;
		height: auto;
		padding-bottom: 20px;
	}
	#top .box_n02_smp .inner .box_n02_smp-contents .point_box h3 img{
		display: inline-block;
		padding-right: 8px;
	}
	#top .box_n03 .greeting_contents .greeting_box {
		width: 100%;
		margin-bottom: 20px;
	}
	#top .box_n04 .heading h2 img {
		width: 90%;
		height: auto;
	}
	#top .box_n04 .job_contents {
		margin-bottom: 20px;
	}
	#top .box_n04 .job_contents .job_box {
		width: 100%;
		margin-bottom: 20px;
	}


	.cd-breadcrumb {
		padding: 0 10px;
	}
	.second .mainvis-sub {
		/*margin-top: 50px;*/
	}
	.second .mainvis-sub .inner980{
		width: 90%;
	}
	.second .mainvis-sub .inner980 h2.name_txt img{
		width: 50%;
		padding-bottom: 0px;
	}
	.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 .gmap iframe {
		width: 100%;
	}
	.second .access table th {
		text-align: left;
	}
	.second .access table td,
	.second .access table th {
		display: block;
		border: none;
	}
	.second .gallery ul li {
		width: 49%;
	}
	.second .map2 p img{
		width: 100%;
	}
	.second .staffbox {
		width: 100%;
	}
	
	.second .box_n02_smp{
		background: #fff !important;
		margin-bottom: 80px;
	}
	.second .box_n02 .access{
		margin-bottom: 40px;
	}
	.second .access table th{
		width: 100%;
	}
	.second .access table td{
		width: 100%;
	}
	.recruit .box_n02_smp{
		margin-bottom: 0px !important;
	}
	.recruit .box_n04{
		padding: 40px 20px 8px !important;
	}
	.doctor .box_n03{
		margin-bottom: 0px !important;
	}
	.interview_contents .interview_box01{
		width: 40%;
	}
	.interview_contents .interview_box02{
		width: 60%;
	}
	.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;
	}
	/*カレンダー*/
	#top .calendar-container {
		padding: 20px;
	}
	#top .calendar-container h2 {
		font-size: 16px;
	}
	#top .calendar-container th, #top .calendar-container td {
		padding: 6px;
	}
}
/* ---------------------------------------------------------------------------------------responsiveここまで */
