
/* CSS Document */
@media (max-width: 1320px){
	h1{
	      right: 0;
    left: 0;
	  width: 1240px;
    /*padding: 0 60px 0 0;*/
	}
	.nav_wrap {
		left: 0;
		transform: unset;
	}
}
@media (min-width: 641px) and (max-width: 1024px) {
  body,
  .nav_wrap.fixed,
  #mainvisual,
  header,
  footer {
    min-width: 1300px;
  }

  .tgl_menu_list ul li.nav_mega_menu .mega_menu_wrap {
    width: 1300px;
  }
	
	.tgl_menu_list{
	  padding:0;
	}
}

@media screen and (max-width:640px) {
body {
  font-size: 14px;
}

body,
.nav_wrap.fixed,
#mainvisual .inner,
header,
footer {
  min-width: 100%;
}

/* ナビ展開時スクロール禁止処理 */
body.nav-open {
  overflow: hidden !important;
}

/*============================================================================

  header

============================================================================*/

  header {
    display: none;
  }

/*============================================================================

  nav

============================================================================*/

.nav_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
  min-width:auto;
}

.nav_wrap .header_logo {
  width: calc(100% - 56px);
}

.nav_wrap .header_logo a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 3px 0;
}

.nav_wrap .header_logo img {
  width: auto;
  height: 49px;
}

/* ハンバーガーボタン */
.btn_tgl_menu {
  position: relative;
  right: 0;
  color: #fff;
  width: 55px;
  background: #000;
  border: none;
  padding: 0;
  margin: 0;
  text-align: center;
  transition: right 0.6s cubic-bezier(.19, 1, .22, 1);
}

.btn_tgl_menu i {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  margin: auto;
  font-style: normal;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.btn_tgl_menu span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 35px;
  height: 2px;
  background: #fff;
  transition: all 0.6s cubic-bezier(.19, 1, .22, 1);
  opacity: 1;
}

.btn_tgl_menu span:nth-of-type(1) {
  top: 10px;
}

.btn_tgl_menu span:nth-of-type(2) {
  top: 20px;
}

.btn_tgl_menu span:nth-of-type(3) {
  top: 30px;
}

/* MENUボタン押下時 */
.btn_tgl_menu.active {
  right: 16.25rem;
}

.btn_tgl_menu.active span:nth-of-type(1) {
  top: 20px;
  transform: rotate(225deg);
}

.btn_tgl_menu.active span:nth-of-type(2) {
  opacity: 0;
}

.btn_tgl_menu.active span:nth-of-type(3) {
  top: 20px;
  transform: rotate(-225deg);
}

/* ドロップダウンメニュー */
.tgl_menu_list {
  position: fixed;
  top: 0;
  right: 0;
  right: -16.25rem;
  z-index: 2;
  overflow: hidden;
  width: 16.25rem;
  height: 100%;
  transition: right 0.6s cubic-bezier(.19, 1, .22, 1);
  background: #000;
  padding: 15px;
}

.tgl_menu_list ul {
  flex-flow: column wrap;
  gap:0;
}

.tgl_menu_list ul li {
  display: block;
  border-bottom: 1px solid #fff;
  width: 100%;
}

.tgl_menu_list ul li:first-child {
  border-top: 1px solid #fff;
}

.tgl_menu_list ul li::after {
  display: none;
}

.tgl_menu_list ul li a,
.tgl_menu_list ul li p {
  display: block;
  text-align: left;
  padding: 15px 10px;
  width: auto;
  color: #fff;
  font-weight: normal;
}

.tgl_menu_list ul li a span,
.tgl_menu_list ul li p span {
  display: none;
}

.tgl_menu_list ul li a:hover {
  color: #fff;
}

body.nav-open .tgl_menu_list {
  overflow-y: scroll;
  right: 0;
}

/* ------- スライドメニュー シングル------- */
.tgl_menu_list ul li.nav_single_menu div {
  position: static;
  opacity: 1;
  visibility: visible;
  width: 100%;
  padding-bottom: 10px;
  box-shadow: none;
}

.tgl_menu_list ul li.nav_single_menu div a {
  margin-left: 15px;
  background: none;
  padding: 3px;
  line-height: 2;
  text-indent: -1.2em;
  padding-left: 1.2em;
  border-bottom: none;
  color:#fff;
}

.tgl_menu_list ul li.nav_single_menu div a::before {
  position: static;
  display: inline;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  margin-right: 10px;
}

.tgl_menu_list ul li.nav_single_menu div a i.nav_arrow {
  display: none;
}

.tgl_menu_list ul li.nav_single_menu div a:hover {
  color: #fff;
  background: none;
}

/* ------- スライドメニュー メガ------- */
.tgl_menu_list .nav_mega_menu {
  position: relative;
}

.tgl_menu_list .nav_mega_menu p::before {
  position: absolute;
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  border: none;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f067";
}

.tgl_menu_list .nav_mega_menu .mega_menu_wrap {
  display: none;
  position: static;
  opacity: 0;
  visibility: hidden;
  background: none;
  box-shadow: none;
  transition: height 0.5s cubic-bezier(.19, 1, .22, 1);
}
	.tgl_menu_list .nav_mega_menu.medical .mega_menu_wrap{
		visibility: inherit;
	  opacity: 1;
	  display: block !important;
	  margin:0 0 0 15px;
	}

.tgl_menu_list .nav_mega_menu.active .mega_menu_wrap {
  opacity: 1;
  visibility: visible;
}

.tgl_menu_list .mega_menu_inner {
  display: block;
  padding: 0 0 10px 0;
  width: 100%;
}
	
	.tgl_menu_list .menu_list{
	  width:100%;
	}

.tgl_menu_list .mega_menu_top a {
  padding: 12px 12px 12px 0;
}

.tgl_menu_list .mega_menu_top a::before {
  position: static;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  border: none;
  margin-right: 10px;
}

.tgl_menu_list .menu_list {
  margin-left: 0;
}
	.tgl_menu_list .menu_list ul{
	  gap:0;
	}

.tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list p {
  color: #fff;
	margin-bottom: 5px;
	border-bottom: 1px solid #fff;
}

.tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list li {
  border: none !important;
}
.tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list li a{
  padding: 3px;
  padding-left: 1.2em;
 color:#fff;
  margin:0 0 5px 15px;
}
	.tgl_menu_list .nav_mega_menu.medical div a{
	  color:#fff;
	  border:none;
	  width:100%;
	}
	.tgl_menu_list .menu_list ul li a::before, .tgl_menu_list .nav_mega_menu.medical div a::before{
	  color:#fff;
	}

.tgl_menu_list .nav_mega_menu div a {
  margin-left: 15px;
  background: none;
  padding: 3px;
  line-height: 2;
  text-indent: -1.2em;
  padding-left: 1.2em;
}
	.tgl_menu_list .nav_mega_menu div a{
	  color:#fff;
	  border:none;
	}


/* メガメニュー展開時 */
.tgl_menu_list .nav_mega_menu.active p::before {
  content: "\f068";
}

/* ナビ展開時の後ろの背景 */
.nav_overlay {
  display: none;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

body.nav-open .nav_overlay {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* ヘッダー固定ボタンエリア */
.btn_area {
  position:fixed;
  bottom:0;
  width: 100%;
}

.btn_area ul {
  display: flex;
  background: #fff;
}

.btn_area li.btn {
  width: 100%;
}

.btn_area li.btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 10px 2%;
  line-height:18px;
}

.btn_area li.btn a i {
  width: 15px;
  margin-right: 3px;
}

.btn_area li.btn_tel {
  background: #c5ac4d;
}

.btn_area li.btn_yoyaku {
  background: #000;
	font-size: 11px;
	width: 105%;
}

.btn_area li.btn_monshin {
  background: #888;
}

.btn_area li.btn_access {
  background: #888;
}

/* 準備中用のクラス */
.btn_area li.btn.coming {
  background: #aaa !important;
}

.btn_area li.btn.coming a {
  pointer-events: none;
  padding: 2px 2% 18px;
}

.btn_area li.btn.coming a::before {
  content: "（準備中）";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 90%;
}
	
	.nav_wrap.fixed{
	  padding:0;
	}
	
	.nav_wrap.fixed .tgl_menu_list ul li a, .nav_wrap.fixed .tgl_menu_list ul li p{
	  color:#fff;
	}
	.tgl_menu_list ul li p::after{
		display: none;
	}
	
	.sp_caution_text {
  position: absolute;
  top: -50px;
  font-size: 10px;
  width: 235px;
  background: #fff;
  border: 2px solid #888;
  padding: 5px;
  line-height: 1.5;
  border-radius: 5px;
  left: 10px;
  font-weight: 700;
}
	.sp_caution_text::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 30px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: solid 12px transparent;
    border-top-color: transparent;
    border-top-style: solid;
    border-top-width: 12px;
  border-top: solid 12px #666;
}
	.sp_caution_text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 30px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: solid 14px transparent;
    border-top-color: transparent;
    border-top-style: solid;
    border-top-width: 14px;
  border-top: solid 14px #fff;
  margin-top: -5px;
}
/*============================================================================

#mainvisual

============================================================================*/

#mainvisual {
  background-position: center;
  background-attachment: scroll;
  background-size:cover;
  height: 200px;
  margin-top: 55px;
    padding:0 20px;
  width:100%;
}

#mainvisual .inner {
  width: auto;
  height: inherit;
}
/* 下層ページヘッドライン */
#mainvisual h2 {
  font-size: 22px;
}
	.mainvisual_headline{
	  padding:0;
	}
/*============================================================================

#contents

============================================================================*/

.box1 {
  width: auto;
  margin: 0 4% 80px;
}

.box2 {
  width: auto;
  margin: 0 6% 50px;
}

	#container{
	  padding-top:30px;
	}
	
#contents {
  width: auto;
}

#contents_left {
  width: auto;
  float: none;
  margin-right: 0;
}

#contents_right {
  width: auto;
  padding: 0 6%;
  float: none;
}

/*============================================================================

footer

============================================================================*/

	.footer_access{
	 width:100%;
	  padding: 40px 6%;
	}
	.footer_access figure{
	  width:100%;
	}
	.footer_access_desc{
	  flex-direction: column;
	}
	.footer_access_list{
	  width:100%;
	  flex-direction: column;
	}
	.footer_access_list li.walk,.footer_access_list li.taxi,.footer_access_list li.bus{
	  margin:0 0 0 25px;
	}
	.footer_access_list li.walk::before{
	  left:-20px;
	}
	.footer_access_list li.taxi::before{
	  left:-26px;
	}
	.footer_access_list li.bus::before{
	  left:-26px;
	}

.footer_info {
  width: auto;
  padding: 40px 6%;
}

.footer_info_left,
.footer_info_right {
  width: 100%;
}

.footer_info_left {
  margin-bottom: 20px;
  flex-direction: column;
  align-items: center;
}
.footer_info_left .btn02 a {
	width: 100%;
}
.footer_info_sche {
  float: none;
  width: 100%;
}

.footer_info_sche .tb01 :is(th td) {
  font-size: 13.5px;
}

.footer_info_sche p {
  margin: 0;
}
	
	.banner_list{
	  gap:30px;
	}

.footer_navi .inner {
  width: 100%;
  padding: 30px 0;
  flex-direction: column;
}
	
	.footer_navi_info{
	  text-align:center;
	  margin:0 0 20px;
	}
	
	.footer_navi .logo{
	  margin:0 auto;
	}

.footer_navi ul {
  width: 100%;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
}

.footer_navi ul li {
  display: block;
}

.footer_navi ul li:last-child {
  border-bottom: none;
}

.footer_navi ul li a {
  display: block;
  padding: 5px;
  line-height: 1.5;
  font-size: 15px;
  font-weight: bold;
}
	.footer_navi ul.innerNav li{
	  width:50%;
	}
	.footer_navi ul.innerNav li a{
	}

.footer_navi ul li a::after {
  display: none;
}

.footer_navi ul li a span::before {
  display: none;
}
	
	.footer_navi ul.subNav{
	  flex-direction: column;
	  align-items: center;
	  gap:20px;
	}
	
	.footer_navi ul li.medical_nav,.footer_navi ul li.column_nav{
	  width:100%;
	  maz-width:350px;
	}
	.footer_navi ul li.column_nav ul{
	  flex-direction: column;
	}

.copy {
	padding:20px 0 140px/*70px*/;
}
	
	.pagetop{
	  bottom:80px;
	}

/*============================================================================

$top

============================================================================*/
	/* ----- グリッドバナー ----- */
      .banner_grid .inner {
        padding: 30px 20px;
    }
  .banner_grid ul li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
	.top_info_flex{
	  flex-direction: column;
	}
	.top_info2 .box1{
	  margin:0 4% 50px;
	}
	.top_info_flex.top_news{
	  padding: 20px 15px;
	}
	.top_news_headline{
	  margin:0;
	}
	.top_news_headline .tit_en{
	  text-align:center;
	}
	.top_news_headline .tit01{
	  text-align:center;
	  margin:0 0 20px;
	}
	.top_news_frame{
	  width:100%;
	  padding: 20px 20px 10px;
	}
	.top_info_left,.top_info_right{
	  width:100%;
	}
	.top_info_left_flex {
		display: block;
		text-align: center;
	}
	.top_info_left_flex figure {
		margin: 8px 0 30px;
	}
	.top_info_left .btn02 a {
		width: 100%;
	}
	.map .btn01{
	  margin:20px 0 0;
	}
	
	.map .btn01 a{
	  position:static;
	}

.top_info .top_news .scroll_area {
  height: 200px;
}
	
	.top_info_access li,.top_info_access li:first-child{
	  padding:0 0 0 30px;
	}
	.top_info_access li.walk::before{
	  left:7px;
	}
	.top_info_access li.taxi::before,.top_info_access li.bus::before{
	  left:0;
	}
	
	.top_concept{
	  padding:200px 0 120px;
	}
	
	.top_concept::before{
	  height:309px;
	  background-size:cover;
    background-position: right top;
	}
	
	.top_concept .box1{
	  margin:0 4%;
	  padding:60px 35px 70px;
	}
	
	.concept_verticle{
	  top:21px;
	  left:6px;
	}
	.concept01{
	  font-size:64px;
	}
	.concept03{
	  left:0;
	  right:0;
	  bottom:-85px;
	  margin:auto;
	}
	.concept_text{
	  font-size:15px;
	  line-height:32px;
	}
	.top_doctor{
	  background:url("../images/doctor_bg_sp.jpg");
	  padding:80px 0 15px;
	}

	.top_doctor .box1{
	  margin:0 4% 50px;
	}
.doctor_flex {
  flex-direction: column-reverse;
}

.top_doctor .text {
  width: auto;
}
	
	.doctor_flex p{
	  width:100%;
	}
	.doctor_flex .text h3{
	  font-size:20px;
	}

.top_doctor_img {
  width: auto;
  margin-bottom: 15px;
}

.top_doctor_img p {
  text-align: center;
}

.top_doctor_img p img {
  width: 100%;
  margin: 0 auto 15px;
  display: block;
}

.top_doctor_img dt {
  margin-bottom: 17px;
  padding: 0 10%;
  text-align: center;
}

.top_doctor_img dd {
  text-align: center;
}
	.doctor_name{
	  flex-direction: column;
	}
	.top_feature{
	  padding:80px 0 28px;
	}
	
	.top_feature .tit01 {
	  font-size:28px;
	  line-height:1.5;
	}
	.top_feature .tit01 span{
	  font-size:30px;
	}
	
	.top_feature_list{
	  margin:40px 0 0;
	}
	
	.top_feature_item{
	  flex-direction: column;
	  margin:0 0 50px;
	}
	.top_feature_item:nth-child(even){
	  flex-direction: column;
	}
	.top_feature_item:nth-child(3),.top_feature_item:nth-child(4),.top_feature_item:nth-child(2),.top_feature_item:nth-child(5){
	  margin:0 0 50px;
	}
	
	.top_feature_img,.top_feature_item:nth-child(4) .top_feature_img{
	  margin:0 0 75px;
	}
	.top_feature_item:nth-child(3) .top_feature_img{
	  margin:0 0 50px;
	}
	
	.top_feature_img,.top_feature_text{
	  width:100%;
	}
	
	.top_feature_text h3,.top_feature_item:nth-child(2) .top_feature_text h3, .top_feature_item:nth-child(4) .top_feature_text h3,.top_feature_item:nth-child(3) .top_feature_text h3{
	  padding:0;
	  font-size:24px;
	  margin:0 0 15px;
	}
	.top_feature_item:nth-child(2) .top_feature_text h3, .top_feature_item:nth-child(4) .top_feature_text h3{
	  padding:0;
	  line-height:1.5;
	}
	.top_feature_text h3 span{
	  font-size:28px;
	}
	.top_feature_text h3::before{
	  height:50px;
	  bottom:auto;
	  top:-50px;
	}
	.top_feature_item:first-child .top_feature_text h3::before{
	  width:72px;
	  top:-50px;
	}
	.top_feature_item:nth-child(2) .top_feature_text h3::before{
	  width:72px;
	  top:-50px;
	}
	.top_feature_item:nth-child(3) .top_feature_text h3::before{
	  width:72px;
	  top:-50px;
	}
	.top_feature_item:nth-child(4) .top_feature_text h3::before{
	  width:72px;
	  top:-50px;
	}
	.top_feature_item:nth-child(5) .top_feature_text h3::before{
	  width:72px;
	  top:-50px;
	}
	.top_feature_item:nth-child(6) .top_feature_text h3::before{
	  width:72px;
	  top:-50px;
	}
	
	.top_wants{
	  background:url("../images/wants_bg_sp.jpg");
	  padding:80px 0 20px;
	}
	
	.top_wants .tit01{
	  font-size:32px;
	}
	.wants_list{
    position: relative;
    z-index: 1;
	  gap:50px 0;
	}
	
/*
	.wants_list::before{
	  content:none;
	}
*/
  .wants_list::before{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -75%);
    opacity: .1;
    z-index: -1;
  }
	.wants_item{
	  width:100%;
	}
	.wants_box{
	  height:140px;
	  gap:12px;
	}
	.wants_box .wants_item_tit{
	  width:130px;
	  height:130px;
	}
	.wants_box .wants_item_tit h3{
	  font-size:20px;
	}
	.wants_box a{
	  padding:0 0 0 30px;
	  font-size:16px;
        font-weight: 600;
        text-decoration: underline;
	}
	.wants_box a::before{
	  right:-17px;
	}
	.wants_item_text,.wants_item:nth-child(even) .wants_item_text,.wants_item:nth-child(3) .wants_item_text{
	  padding:0;
	}
	.tit_en_big{
	  font-size:26vw;
      left: 30px;
      right: 0;
      margin: auto;
      bottom: -19px;
	}
	
	.top_trouble{
	  padding:0 0 130px;
	}
	.top_trouble::after{
	  height:154px;
	}
	.trouble_tit{
	  height:260px;
	  display:flex;
	  flex-direction: column;
	  align-items: center;
	  justify-content: center;
	  padding:0 4%;
	}
	.trouble_list{
	  margin:25px 0 0;
	}
	.trouble_item{
	  width:45%;
	  height:auto;
	  padding:30px 0px 70px;
	}
	.trouble_item:not(:nth-child(4n))::before{
	  content:none;
	}
  .trouble_item h3::before{
    width: 127px;
    background-position: right;
  }
  .trouble_item h3{
    padding-right: 0px;
    font-size: 15px;
  }
	.trouble_item.siz_s h3 {
	font-size: 0.95em;
}
	.trouble_item.line_2 h3 {
  font-size: 12px;
		margin: 0 0 13px;
}
	.trouble_item.line_2 h3::before {
  top: 60px;
}
	.trouble_item ul{
	  padding: 7px 10px 10px 7px;
	  display: flex;
	  flex-wrap: wrap;
	  gap:0 13px;
	}
  .trouble_item li{
    font-size: 14px;
  }
	.trouble_item .btn05 a{
	  top:auto;
	  bottom:10px;
	}
	
	.top_medical{
	  padding:80px 0 24px;
	}
	
	.top_medical .box1{
	  margin:0 4%;
	}
	
	.top_medical_list{
	  padding:0;
	  justify-content: space-around;
	}
	
	.top_medical_list a{
	  width:144px;
	  display: flex;
	  flex-direction: column;
	  margin:0 0 40px;
	}
	
	.top_medical_list a p{
	  margin:auto auto 0;
	}
	
	.top_medical_list dl dd{
	  font-size:18px;
	}
	.top_medical_list dl dd.line_2 {
  font-size: 14px;
}
	.top_column{
	  padding:80px 0 2px;
	}

	.top_column_list{
	  flex-wrap: wrap;
	  justify-content:space-between;
	  gap:0;
	}
	
	.top_column_list dl{
	  width:48%;
	  margin:0 0 20px;
	}
	
	.top_column_list dt{
	  margin:0 0 10px;
	}
	
	.top_column_list dt a{
	  font-size:16px;
	}
	
	.top_column_list dd li a{
      font-size:14px;
	  padding:0;
	}
	
	.top_column_list dd li a::before{
	  content:none;
	}
	
	.top_recruit{
	  /*padding:70px 0;*/
		padding:180px 0 20px;	
		background: url(../images/top_recruit_bg_sp.jpg) no-repeat top center;
		background-size:cover;
		
	}

	.top_recruit .box3{
	  width:auto;
	  height:auto;
	  margin:90px 4% 0;
	  padding:50px 35px;
	}
	
	.top_recruit h2{
	  text-align:center;
	}
	.recruit_content{
	  flex-direction: column;
	  align-items: center;
	  gap:30px;
	}
	.recruit_content p{
	  font-size:15px;
	  line-height:32px;
	}
	
	.loop_slide_wrap .slick-initialized .slick-slide img{
	  width:280px;
	}

/*============================================================================

$breadcrumbs ぱんくず

============================================================================*/

.breadcrumbs {
  width: 90%;
  margin: 0 5% 40px;
}

.breadcrumbs li {
  display: inline-block;
}

/*============================================================================

$共通

============================================================================*/

#contents {
  padding-bottom: 20px;
}

.box {
  width: auto;
  padding: 0 6% 8%;
}

.text {
  float: none;
  width: auto;
  padding: 0;
  border: none;
}

/*============================================================================

$見出し

============================================================================*/

h1 {
  font-size: 12px;
  width: auto;
  padding: 5px 15px;
  text-align: center;
  position: static;
  margin-top: 0 !important;
  min-width:auto;
  color:#333;
}

.tit01,
.tit02,
.tit03 {
  width: 100%;
  margin-bottom: 25px;
  text-align: center;
}


	.tit01{
	  line-height:1.3;
	  margin:0 0 8px;
	}

.tit02::before {
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 40px;
  height: 57px;
  background-image: url(../images/tit02_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}



.nowrap {
  white-space: normal;
}



/* テーブル */
.tb01 {
  white-space: inherit;
}

.tb01 th {
  width: 30%;
  font-size: 14px;
  letter-spacing: 0;
}
	
	.tb02{
	  width:32%;
	}

.tb01 td {
  font-size: 14px;
  text-align: center;
}


.tb03,
.tb03 th {
  white-space: inherit;
}

.tb03.w075par {
  width: 100%;
}

/* 縦積みにした時 */
.tb03.ver th,
.tb03.ver td {
  display: block;
  width: 100%;
}

.tb03.ver td {
  border-top: none;
}

.tb03.ver th:not(:first-child) {
  border-top: none;
}
	
	.price_tb th,.price_tb td{
	  display:block;
	  width:100%;
	}
	.price_tb th.price_sub_tit{
  width:100%;
  background:#c2a1637a;
	}
	
.bnr_links_box {
	display: block;
    padding: 30px;
	text-align: center;
}
.bnr_links_box p:first-child{
	margin-bottom: 20px;
}
	.tb05 {
		width: 100%;
		border: 1px solid #e0e0e0;
	}
	.tb05 th,
	.tb05 td {
		display: block;
		width: 100%;
		border: none;
	}
	.tb05 td {
		padding-bottom: 10px;
	}

/* 横スクロール */
.scroll_tb {
  overflow-x: scroll;
}

.scroll_tb table {
  width: 816px;
}

.scroll_tb table th {
  position: sticky;
  left: 0;
}

.scroll_tb table th::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 1px solid #00408f;
}

.tb04,
.tb04 th {
  white-space: normal;
}

.tb04 th {
  font-size: 13px;
}

.tb04 td,
.tb04 th {
  padding: 2%;
}

/* ボタン */



/* アンカーリンク */
.ank02 {
  width: 100%;
}

.ank02 li {
  width: 100%;
}

.ank03 {
  width: 100%;
}

.ank03 li {
  width: 100%;
}

.ank04 {
  width: 100%;
}

.ank04 li {
  width: 100%;
}



/* 画像右寄せ */
.img_fr {
  float: none;
  margin-left: 0;
  text-align: center;
  max-width: 100%;
}

.img_fr img {
  margin-bottom: 15px;
}

/*============================================================================

$doctor

============================================================================*/

/* ごあいさつ */
.doctor_greet .text {
  float: none;
  width: auto;
}

/* 経歴、資格 */
.doctor_carr_sec1 {
  float: none;
  width: 100%;
  margin-right: 0;
  margin-bottom: 30px;
}

	.doctor_carr_sec1 h3::before{
	 content:none;
	}

/*============================================================================

$clinic

============================================================================*/
.clinic_sec1 {
  max-width: 100%;
}

/* 医院概要 */
.clinic_sec1 dt {
  width: 30%;
}

.clinic_sec1 dd a:hover {
  color: inherit;
}

.clinic_sec1 .schedule {
  width: 100%;
  margin: auto;
}

.clinic_sec1 .schedule .tb01 {
  width: 100%;
}

[class^="clinic_slide_wrap"]:not(.clinic_slide_wrap_flex) {
  max-width: 100%;
}

/* 院内スライド横 */
.clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-slider {
  display: block !important;
}

.clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-list {
  width: 100%;
}

.clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-dots {
  margin-top: 20px;
  width: 100%;
  justify-content: space-between;
}

.clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-dots li {
  width: 15%;
  margin-bottom: 10px;
}

/*============================================================================

$facilities

============================================================================*/


.facilities_equip dl {
  width: 100%;
  margin-left: 0;
  padding: 6% 10% 10%;
}

.facilities_equip_img {
  width: 100%;
  margin-bottom: 8%;
  margin-left: 0;
}

.facilities_equip2 dl,
.facilities_equip2 dl:nth-child(3n) {
  width: 90%;
  margin: 0 5% 30px;
}

.facilities_equip2 dl:nth-child(even) {
  margin-right: 5%;
}

.facilities_equip3 dl {
  width: 90%;
  margin: 0 5% 30px;
}

.facilities_equip3 dl:nth-child(even) {
  margin-right: 5%;
}

.facilities_equip3 dl,
.facilities_equip3 dl:nth-child(3n) {
  width: 90%;
  margin: 0 5% 30px;
}
/*============================================================================

$recruit

============================================================================*/	
	.recruit .doctor_catch {
		font-size: 18px;
		line-height: 1.75;
	}
	.layout_rec_box {
		width: 100%;
		padding: 20px;
	}	
	.layout_rec_title {
		width: 100%;
		font-size: 17px;
	}
/*============================================================================

$access

============================================================================*/
.access_wrap [class^="access"] {
  margin-bottom: 40px;
  width: 100%;
}

.access_wrap [class^="access"]:last-child {
  margin-bottom: 0;
}

.access_wrap [class^="access"] iframe {
  height: 300px;
}

.access_list {
  padding: 30px 15px 0;
}

.access_list dl {
  width: 100%;
  margin-bottom: 30px;
}




/*============================================================================

$first

============================================================================*/





/*============================================================================

$medical

============================================================================*/

/*============================================================================

$contact

============================================================================*/
.contact th,
.contact td {
  display: block;
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #1F2774;
  padding: 10px 5%;
}

.contact tr:last-child td {
  border-bottom: none;
}

.contact input[type="date"] {
  display: block;
  margin-bottom: 10px;
}

.contact select {
  display: block;
  margin-bottom: 20px;
}

.submit_btn input {
  max-width: 110px;
}

/*==================================================================

.layout

==================================================================*/
	
	.step_item p:first-child{
	  width:100px;
	}
.layout_tit {
  font-size: 18px;
}

.layout_tit em {
  font-size: 24px;
}

/* 1つ並びのレイアウト。画像は無し、左にタイトル、右に文章 */
.layout01 .layout01_box {
  display: block;
}

.layout01 .layout01_title {
  width: 100%;
}

.layout01 .layout01_text {
  width: 100%;
}

.layout01 .layout01_text img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

/* 2つ並びのレイアウト。最初(dt)にタイトル、画像がその下(dd)、画像の下に文章 */
.layout02 {
  display: block;
}

.layout02 .layout02_box {
  width: 100%;
}

.layout02 .layout02_box img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章 */
.layout03 {
  margin: 0 0 15px;
}

.layout03 .layout03_box {
  display: block;
}

.layout03 .layout03_title {
  width: 100%;
}

.layout03 .layout03_title img {
  width: 70%;
  margin: 0 auto;
  display: block;
  padding: 0;
}

.layout03 .layout03_text {
  width: 100%;
  padding: 15px 3% 1%;
}


/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色 */
.layout04 .layout04_box {
  display: block;
}

.layout04 .layout04_title {
  width: 100%;
  padding: 2%;
}

.layout04 .layout04_title img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

.layout04 .layout04_text {
  width: 100%;
}


/* 1つ並びで3列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章 */
.layout05 .layout05_box {
  display: block;
}

.layout05 .layout05_title {
  width: 100%;
  text-align: center;
  display: block;
}

.layout05 .layout05_title img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

.layout05 .layout05_text1:nth-child(2) {
  width: 100%;
  margin-top: 10px;
}

.layout05 .layout05_text1:nth-child(3) {
  width: 100%;
  border-left: none;
}

/* 1つ並びで3列に区切られたレイアウト。左がタイトル、真ん中と右に文章 */
.layout06 {
  margin: 0 0 15px;
}

.layout06 .layout06_box {
  display: block;
}

.layout06 .layout06_title {
  width: 100%;
  padding: 3%;
  display: block;
  text-align: center;
}

.layout06 .layout06_title img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

/* 数字 */
.layout06 .layout06_text1:nth-child(2) {
  width: 100%;
  margin-top: 10px;
}

.layout06 .layout06_text1:nth-child(3) {
  width: 100%;
  border-left: none;
}

/* 3つ並びのレイアウト。 */
.layout07 {
  display: block;
}

.layout07 .layout07_box {
  display: block;
  width: 100%;
}

/* layout09 */
.layout09 .layout09_box {
  display: block;
}

.layout09 .layout09_title {
  width: 100%;
  text-align: center;
  display: block;
}

.layout09 .layout09_title img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

.layout09 .layout09_text1 {
  width: 100%;
  margin-top: 10px;
}

/* layout10 */
.layout10 .flow_box {
  justify-content: space-between;
  padding: 40px 6%;
}

.layout10 .flow_box .number {
  width: 42px;
  height: 42px;
  top:-21px;
}

.layout10 .flow_box .layout10_text .title {
  font-size: 14px;
  line-height: 1.4;
}

.layout10 .flow_box .layout10_text .title span {
  display: block;
  padding-bottom: 8px;
  font-weight: bold;
}

.layout10 .flow_box .layout10_text .title span::after {
  display: none;
}

.course_ablation::before {
  display: none;
}

/* layout11 */
[class^="layout11_text"] dl dt,
[class^="layout11_text"] dl dd {
  margin-left: 0;
  width: 100%;
}

[class^="layout11_text"] dl dt {
  margin-bottom: 0;
}

[class^="layout11_text"] dl dd {
  margin-bottom: 10px;
}

.layout11_image02 {
  flex-wrap: wrap;
}

.layout11_image02 span {
  width: 100%;
}

.layout11_image02 span:last-child {
  margin-top: 40px;
}

.layout11_image02 span:last-child::before {
  top: -32px;
  bottom: auto;
  left: 0;
  right: 0;
  justify-content: center;
  content: "\f078";
}
	
	
	.layout12{
	  padding:20px;
	}
	.layout_flex{
	  gap:40px;
	  flex-direction: column;
	}

/*============================================================================

$news

============================================================================*/

.news_list li a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*============================================================================

$mpcloud_schedule

============================================================================*/

#mpcloud_schedule {
  width: 100%;
  right: 0;
  left: 0;
  border-radius: 0;
}

.time_close {
  right: 20px;
  font-size: 17px;
}

.schedule_time {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.schedule_time dt {
  width: 35%;
  margin-bottom: 5px;
}

.schedule_time dd {
  width: 65%;
  margin-bottom: 5px;
}

.schedule_time dd i {
  margin: 0 3px 0 15px;
  vertical-align: text-bottom;
}
	
/*btn06*/
	.btn06 {
		width: 100%;
	}
.btn06 a {
  width:100%;
  height:auto;
  display:inline-block;
  padding:10px 0;
  font-size:1.2em;
  border-radius:200vh;
  transition:none;
}
.btn06 a::before{
	display: none;
}
.btn06 a::after{
	background: url(../images/arr07.svg);
	content: "";
	display: inline-block;
	position:absolute;
	top: 50%;
	margin:auto;
	width:37px;
	height:14px;
	margin-left: 15px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

/*common*/
.pc{display:none!important}.sp{display:block!important}.pc_inline{display:none!important}.sp_inline{display:inline!important}.pc_table{display:table!important}.sp_table{display:table!important}img{max-width:100%;height:auto}.sp_mb00{margin-bottom:0!important}.sp_mr00{margin-right:0!important}.sp_ml00{margin-left:0!important}.sp_mt00{margin-top:0!important}.sp_pb00{padding-bottom:0!important}.sp_pr00{padding-right:0!important}.sp_pl00{padding-left:0!important}.sp_pt00{padding-top:0!important}.sp_center{text-align:center}
}



@media screen and (max-width:320px) {
.main_open {
  position: absolute;
  top: auto;
  bottom: 50px;
  right: 0;
  left: 0;
  width: 50%;
  margin: auto;
}

.sp_inline_iP {
  display: inline !important
}
}
