
/* CSS Document */
@media (min-width: 641px) and (max-width: 1024px) {
  body,
  .nav_wrap.fixed,
  .mainvisual_wrap,
  #mainvisual,
  header,
  footer {
    min-width: 1300px;
  }

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

@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;
}

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

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

.nav_wrap .header_logo img {
  width: 100%;
  height: 45px;
}

/* ハンバーガーボタン */
.btn_tgl_menu {
  position: relative;
  right: 0;
  color: #fff;
  width: 55px;
  background: #6fb544;
  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: #6fb544;
  padding: 15px;
}

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

.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;
  font-size: 16px;
}

.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;
  overscroll-behavior-y: none;
  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;
}

.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.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 .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 .nav_mega_menu .mega_menu_inner .menu_list p {
  display: none;
}

.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;
}

.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.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_ft {
  width: /*100%*/ 98%;
  position: fixed;
  bottom: 3px;
  left: 0;
  right: 0;
  z-index: 10000;
  border-radius: 5px;
  background: #fff;
  margin: 0 auto;
}

.btn_area_ft ul {
  display: flex;
  padding: 5px 2.5px;
}
	
.btn_area_ft ul.up {
  padding: 5px 2.5px 0;
}
	
.btn_area_ft ul.up li {
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
  font-size: 13px;
  font-family: "丸フォーク M";
}
	
.btn_area_ft ul.up li:first-child {
  border-right: 1px solid #c4c3c3;
  border-radius: 0;
}
	
.btn_area_ft ul.up li.up_yoyaku-morinomiya {
  color: #79b143;
  font-size: 80%;
}
	
.btn_area_ft ul.up li.up_yoyaku-fujimidai {
  color: #a190c7;
  font-size: 80%;
}

.btn_area_ft li.btn {
  width: 100%;
  border-radius: 5px;
  margin: 0 2.5px;
}
	
.btn_area_ft li.btn_yoyaku-morinomiya {
  background: #79b143;
  color: #fff;
}
	
.btn_area_ft li.btn_yoyaku-fujimidai {
  background: #a190c7;
  color: #fff;
}

.btn_area_ft li.btn a {
  position: relative;
  display: block;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 7px 2%;
  line-height: 1.3;
  font-size: 13px;
  font-family: "丸フォーク M";
}

.btn_area_ft li.btn a i {
  width: 15px;
  margin-right: 3px;
}
.btn_area_ft li.btn a span {
display: block;

width: 100%;
}

.btn_area_ft li.btn_tel {
  background: #007ABA;
}

.btn_area_ft li.btn_yoyaku-fujimidai {
  background: #a190c7;
  color: #fff;
}
.btn_area_ft li.btn_yoyaku-morinomiya {
  background: #79b143;
  color: #fff;
}

.btn_area_ft li.btn_monshin {
  background: #69a52f;
}

.btn_area_ft li.btn_access {
  background: #00C7A3;
}

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

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

.btn_area_ft li.btn.coming a::before {
  content: "（準備中）";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 90%;
}
/*============================================================================

#mainvisual

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

#mainvisual {
  background-position: center;
  background-attachment: scroll;
  height: 200px;
  margin-top: 60px;
}

#mainvisual .inner {
  display: block;
  width: auto;
  height: inherit;
}

/* 下層ページヘッドライン */
#mainvisual h2 {
  font-size: 22px;
}

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

#contents

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

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

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

#contents {
  width: auto;
}

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

#contents_right {
  width: auto;
  padding: 0 6%;
  float: none;
}
#container {
  padding-top: 0;
}
/*============================================================================

footer

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



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

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

.footer_info_left {
  margin-bottom: 20px;
}

.footer_info_logo,
.footer_info_logo img {
  width: 222px;
  height: 148px;
}

.footer_info_sche {
  float: none;
  width: 100%;
}

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

.footer_info_sche p {
  margin: 0;
}

.footer_navi .inner {
  width: 100%;
  padding: 30px 0;
}

.footer_navi ul {
  width: 100%;
  padding: 0 15px;
  display: block;
}

.footer_navi ul li {
  display: block;
  border-bottom: 1px dotted #6fb544;
}

.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;
  text-align: center;
}

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

.footer_navi ul li a span::before {
  display: none;
}

.copy {
  margin-top: 35px;
  margin-bottom: 85px;
}

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

$top

============================================================================*/
.contact_us{
  padding-top: 40px;
}
.contact_us_tit {
  font-size: 36px
}
.contact_us_bnr_list {
  display: block;
}
.contact_us_bnr_item {
  width: 100%;
  font-size: 18px;
  margin-bottom: 15px;
}
.contact_us_bnr_item a {
  padding-left: 38%;
  text-align: center;
  line-height: 1.7;
  padding-bottom: 10px;
}
.contact_us_bnr_item span {
  font-size: 16px;
}
.contact_us_sns_list {
  display: block;
}
.contact_us_bnr_item span::before {
padding-left: 0;
  width: 35px;
  height: 35px;
  background-size: 100%;
  left: 0;
  right:0;
  margin: auto;
  top: -70px
}
.contact_us_sns_list {
  padding: 4% 5% 5%;
}
.contact_us_sns_tit {
  text-align: center;
  font-size: 28px;
  padding: 20px 0;
}
.contact_us_sns_tit {
  background-size: 100%;
  margin-bottom: 15px;
}
.contact_us_sns_item_clinic_name {
  font-size: 15px;
}
.contact_us_sns_item_insta_icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
}
.contact_us_sns_item {
  margin-top: 10px;
}
.contact_us_sns_item i {
  font-size: 20px;
  text-align: left;
  padding-top: 4px;
}

/* .top_concerns */
.top_concerns {
  padding-bottom: 60px;
  padding-top:/*144px*/185px;
  background-size: 140%;
}

.top_concerns .tit01 {
  font-size: 22px;
  margin-bottom: 20px;
}
.top_concerns .tit01::before {
  zoom: 0.8;
}
.top_concerns .tit01 span {
  font-size: 26px;
}
.top_concerns_text {

  margin-bottom: 20px;
  width: 90%;
  font-size: 15px;
  padding-bottom: 0;
}
.top_concerns_text::before {
  top: -290px;
  width: 44%;
  background-size: 100%;
  right:  -8%;
  background-position: top center;
}
.top_concerns_text::after{
  top: -290px;
  left: -5%;
  width: 40%;
  background-size: 100%;
  background-position: top center;
}
.top_concerns_img_wrap {
  display: block;
  width: 92%;
  margin: auto;
}
.top_concerns_img {
  width: 100%;
  margin-bottom: 14px;
  display: flex;
}
.top_concerns_img:last-child {
  margin-bottom: 10px;
}
.top_concerns_img img {
  width: 38%;
  height: auto;
  margin-right: 14px;
}
.top_concerns_img_caption {
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}
.top_concerns_img_caption::before {
  width: 30px;
  height: 40px;
  background-size: 100%;
  top: -14px;
  left: -33px;

}
.top_concerns_ending {
  font-size: 18px;
  padding: 0 10px;
  margin-top: 50px;

}


/* .top_treatment */
.top_treatment {
  padding-top: 50px;
}
.top_treatment_tit {
  font-size: 23px;
}
.top_treatment_sub_tit {
  font-size: 15px;
  padding: 4%;
  width: 90%;
  margin: auto;
  line-height: 1.7;
  margin-bottom: 15px;
  min-width: 90%;
  border-radius:30px;
}

.top_treatment_sub_tit span {
  display: inline-block;
  font-size: 20px;
  line-height: 1.5;
}
.top_treatment_item_contents {
  width: 100%;
}



/* .top_treatment_point */

.top_treatment_point_wrap {
  padding-bottom: 1px;
}
.top_treatment_point {
  display: flex;
  flex-wrap: wrap;
  width: 100%
}
.top_treatment_point_list {
  width: 100%
}
.top_treatment_point_item {
  padding-top: 40px;
  padding-left: 0;
  width: 88%;
  margin: 10px auto 40px;
}
.top_treatment_point_item:last-child {
  margin-bottom: 38px;
}
.top_treatment_point_item::before {
  width: 20%;
  background-size: 100%;
  left: -3%;
  top: -30px;
}
.top_treatment_point_item_tit {
  font-size: 20px;
  padding-top: 40px;
  padding-bottom: 19px;
}
.top_treatment_point_item_tit span{
    font-size: 14px;
  } 
	
.top_treatment_point_item_sub_tit {
  font-size: 17px;
  padding-top: 10px;
}
.top_treatment_point_item_text {
  font-size: 15px;
  margin: 0;
}
	
.top_treatment_point_item:nth-child(7),.top_treatment_point_item:nth-child(8){
	height: inherit;
}
	
.top_treatment_point_img {
  width: 100%;
  margin: 15px auto 30px;
  order: -1;
  position: relative;
  top: 0;
}
.top_treatment_point_img01 {
  position: static;
  width: 100%;
  text-align: center;
}
/*.top_treatment_free_insurance*/
.top_treatment_free_insurance {
  padding-top: 50px;
}
.top_treatment_free_insurance_list {
  display: block;
}
.top_treatment_free_insurance_item {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 24px
}
.top_treatment_free_insurance_tit_wrap {
  display: block;
}
.top_treatment_free_insurance_tit_wrap h4 {
  padding-left: 0;
  font-size: 20px;
}
.top_treatment_free_insurance_item_text {
  font-size: 15px;
  width: 90%;
  margin: auto;
  letter-spacing: 0;
}
/* .top_treatment_flow */
.top_treatment_flow {

  padding: 30px 5% 30px
}
.top_treatment_flow .tit01 {
  margin-bottom: 30px
}
.top_treatment_flow_tit {
  font-size: 15px
}
.top_treatment_flow_list {
  flex-wrap: wrap;
  margin-top: 0;
}
.top_treatment_flow_item {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}
.top_treatment_flow_item_content {
  height: auto;
  padding: 5% 3%;
}
.top_treatment_flow_item_content > img {
  width: 45%;
}
.top_treatment_flow_item_num {
  width: 80%;
  margin: 0 auto 15px;
  background-size: 90%;
  width: 80px;
  padding-top:34px;
  font-size: 33px;
  height: 110px;
  background-position: bottom center;
}
.top_treatment_flow_item_num span {
  font-size: 17px;
}
.top_treatment_flow_item_text {
  font-size: 16px;
  margin-top: 0;
}
.top_treatment_flow_item_caption {
  line-height: 1.2;
  top: 0;
  margin-top: 24px;
}

/* top_treatment_case */
.top_treatment_case {
  padding-top: 45px;
  padding-bottom: 10px;
}
.top_treatment_case .tit01 {
  margin-bottom: 0;
}
.top_treatment_case .slick-next {
  right: 0;
}
.top_treatment_case .slick-prev {
  left: 0;
}
.top_treatment_case .slick-next::before {
  zoom: 0.45;
  right: 10px;
}
.top_treatment_case .slick-prev::before {
  zoom: 0.45;
  left: 10px;
}
.top_treatment_case_tit {
  font-size: 21px;
  padding-top: 25px;
  width: 90%;
  margin: auto;
}
.top_treatment_case_tit::before {
  width: 20%;
  background-size: 100%;
  background-position: bottom 12px center;
  z-index: -1;
  left: -4%;
  width: 15%;
}

.top_treatment_case_tit::after {
width: 15%;
  z-index: -1;
  right: -4%;
  background-position: bottom 12px center;
}

.top_treatment_case_tit_text {  
  font-size: 16px;
  margin-bottom: 80px;
}
.top_treatment_case_img {
  width: 44%;
}
.top_treatment_case_img::before {
  font-size: 30px;
  top: -25px;
  left: 0;
}
.top_treatment_case_img:not(:last-child)::after {
  zoom: 0.45;
}

.top_treatment_case_item {
  width: 100vw !important;
  margin: auto;
  margin-top: 70px;
  padding-top: 100px;
  padding-bottom: 20px;
}
.top_treatment_case_item.adj {
  padding-top: 120px;
}
.top_treatment_case_detail_list,
.top_treatment_case_img_wrap {
  width: 85% !important;
  margin: 0 auto 14px;
}
.top_treatment_case_detail_tit {
  font-size: 14px;
}
.top_treatment_case_detail_text {
  font-size: 14px;
  padding-top: 7px;
  padding-bottom: 8px;
}
.top_treatment_case_item-img03 .top_treatment_case_img {
  width: 25%
}

.top_treatment_case_caption{
  margin-bottom: 30px;
}
.top_treatment_case_caption strong {
  font-size: 22px;
}
.top_treatment_case_caption i::before {
  /* width: 25%; */
  background-size: 100%;
  top: -40px;
}
.top_treatment_case_caption span {
  display: block;
  font-size: 20px;
}
.top_treatment_case_caption span::before {
  left: 3%;
    width: 8%;
  background-size: 100%;
  bottom: 10px;
}
.top_treatment_case_caption span::after {
  right: 3%;
  width: 8%;
  background-size: 100%;
  bottom: 10px;
}
.top_treatment_case_s_item_tit {
  font-size: 22px;
  /* top: 30px; */
  padding: 3% 5%;
  /* margin-top: 0; */
  line-height: 1.5;
}
.top_treatment_case_s_item_tit span{
  font-size: 14px;
}
.top_treatment_case_img p {
  font-size: 14px;
}
.top_treatment_case_list {
  margin-bottom: 90px !important;
}


/* .top_reason */
.top_reason {
  padding-top: 120px;
  padding-bottom: 10px;
}
.top_reason .tit01::before {
  width: 76px;
  background-size: 100%;
  background-position: center;
}
.top_reason_item {  
  margin-bottom: 30px !important
}
.top_reason_item_tit {
  font-size: 19px;
  padding-top: 30px;
}
.top_reason_item_text {
  font-size: 15px;
}
.top_reason_item {
  display: block;
  margin-bottom: 40px;
}
.top_reason_item_img {
  width: 100%;
  right: 0;
  left: 0;
  overflow: hidden;
}
.top_reason_item_detail  {
  width: 100%;
  margin-top: 40px;
  padding: 30px 4% 4% !important;
}
.top_reason_item_detail::before {
  zoom:0.6;
  top: -260px !important;

}
.top_reason_item_num {
  font-size: 45px;
  left: 0;
  position: absolute;
  top: 0 !important;
  text-align: left;
  bottom: auto !important;
  width: 100%;
  right: 0 !important;
  padding: 0 3%
}
.top_reason_item_num span {
  font-size: 36px;
  padding-right: 15px;
}
.top_reason_item_num::before {
  left: auto;
  right: -4%;
  width: 140px;
  height: 3px;
  z-index: -1;
}
.top_reason_item:nth-child(even) .top_reason_item_num {
  left: auto;
  text-align: right;
}
.top_reason_item:nth-child(even) .top_reason_item_num::before {
  right: auto;
  left: -4%;
  width: 130px;
  height: 3px;
}
/* top_doctor */
.top_doctor {
  padding-top: 50px;
  background-size: 300%;
  padding-bottom: 75px;
}
.doctor_img {
  float: none;
  width: 90%;
  margin: 0 auto 0;
}
.doctor_name {
  font-size: 15px;
}
.doctor_clinic_logo {
  width: 80%;
  margin-bottom: 0;
  margin-top: 25px;
}
.doctor_sub_tit {
  font-size: 20px;
  margin-bottom: 21px;
  line-height: 2.4;
}
.doctor_sub_tit span {
  padding-bottom: 19px;
}
.doctor_text {
  font-size: 16px;
}
.doctor_box {
  padding-bottom: 20px;
}
.doctor_btn {
  padding: 0;
}
.doctor_btn a {
  height: 60px;
  line-height: 60px;
  font-size: 18px;
}
.doctor_btn a::before {
    top: 24px;
    left: 39px;
}

.top_qa {
  padding-top: 90px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.top_qa .tit01::before {
  zoom: 0.8
}
.qa1 {
  padding-top: 0;
}
.qa1 dl dt {
  padding-left: 35px;
  font-size: 17px;
  padding-top: 13px;
  padding-right: 24px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.qa1 dl dt:before,
.qa1 dl dd:before {
  font-size: 34px;
}
.qa1 dl dd {
 padding-left: 35px;
  margin-top:0px;
  font-size: 17px;
  padding-top: 0;
  padding-bottom: 10px;
  margin-bottom: 10px;
  
}

/* .top_clinic_info */
.top_clinic_info {
  padding-top: 40px;
}
.top_clinic_info_list {
  display: block;
  width: 94%;
  margin: 0 auto 35px;
}
.top_clinic_info_item {
  width: 100%;
  padding: 5%;
}
.top_clinic_info_item::before {
  width: 100%;
  left: 0 !important;
  right: 0 !important;
  margin: auto;
}
.top_clinic_info_item_access::before {
  left: 24px;
}
.top_clinic_info_item_add {
  font-size: 15px;
}
.top_clinic_info .contact_us_bnr_item a {
  padding-left: 43%;
  
}
.top_clinic_info .contact_us_bnr_item a span {
  font-size: 14px;
}
.top_clinic_info_gmap iframe {
  height: 300px !important;
}


.schedule_note {
  flex-wrap: wrap;
  font-size: 13px;
}
.schedule_note dt {
  width: 100%;
  text-align: left;
}
.tb01 th,
.tb01 td {
  font-size: 13px;
}
.tb01 tr:first-child td:last-child {
  letter-spacing: -0.2em;
}

/* .top_infection_control */
.top_infection_control {
  padding: 120px 0 50px;
  margin-bottom: 4px;
}
.top_infection_control_tit {
  font-size: 24px;
}
.top_infection_control_tit::before {
  zoom: 0.8;
}
.top_infection_control_text {
  font-size: 15px;
  letter-spacing: 0.03em;
}
/*============================================================================

$breadcrumbs ぱんくず

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

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

.breadcrumbs li {
  display: inline-block;
}

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

$共通

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

#contents {
  padding-bottom: 70px;
}

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

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

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

$見出し

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

h1 {
  font-size: 11px;
  line-height: 1.3;
  width: auto;
  padding: 0 10px;
  text-align: left;
  position: relative;
  margin-top: 0 !important;
  z-index: 3;
  top: 0;
  margin-top: -30px;
  background: #cee190;
  padding-bottom: 10px;
}
.tit01 {
  font-size: 24px;
  padding-bottom: 25px;
  margin-bottom: 30px;
}
.tit01_subtitle {
  font-size: 15px;
}
.tit01::after {
  width: 80%;
  margin: auto;
  background-size: 100%;
}
.tit02 {
  font-size: 21px;
}
.tit02::after {
  right: -36px;
  top: 2px;
  width: 30px;
  background-size: 100%;
}
.tit02::before {
  left: -37px;
  top: 2px;
  width: 30px;
  background-size: 100%;
}

.nowrap {
  white-space: normal;
}



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

.tb01 th {
  width: 25%;
  font-size: 14px;
}

.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;
}

/* 横スクロール */
.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%;
}

/* ボタン */
.btn01 a {
  display: block;
}



/* アンカーリンク */
.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;
}

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

$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;
}

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

$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 #6fb544;
  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

==================================================================*/
.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: 6%;
}

.layout10 .flow_box::before {
  display: none;
}

.layout10 .flow_box .number {
  width: 42px;
  height: 42px;
  margin-right: 0;
  font-size: 20px;
}

.layout10 .flow_box .layout10_box {
  width: 80%;
}

.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";
}

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

$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;
}


/*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) {
  .contact_us_bnr_item span {
    font-size: 15px;
  }
  .top_concerns .tit01 {
  font-size: 19px;
 
  }
  .top_concerns_text {
    font-size: 12px;
  }
  .top_concerns_img_caption {
    font-size: 14px;
  }
  .top_treatment_sub_tit { 
    font-size: 14px;
  }
  .top_treatment_sub_tit span  {
    font-size: 18px;
  }
  .top_reason_item_num::before {
    width: 80px;
  }
 .top_reason_item:nth-child(even) .top_reason_item_num::before {
    width: 70px;
  }
  .top_reason_item_text {
    font-size: 13px;
  }
  .top_treatment_point_item_tit {
    font-size: 17px;
  } 
  .top_clinic_info_item_tel a {
    font-size: 34px;
  }
  .top_infection_control_tit {
    font-size: 20px;
  }
  .top_infection_control_text {
    font-size: 13px;
  }
  .top_treatment_flow_item_caption {
    font-size: 16px;
  }
  
  .sp_inline_iP {
    display: inline !important
  }
  .tit02 {
    font-size: 16px;
  }
}
