@charset "utf-8";

/*=================================================================================================================================*/
/**  個別指定 for PC	*/
/*=================================================================================================================================*/
@media screen and (min-width: 768px) {

  .only_pc_none{
    display: none !important;
  }
  
  .flex_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
  }
  .flex_item_clounm_1 {
    width: calc(100%);
    max-width: 1200px;
  }
  .flex_item_clounm_2 {
    width: calc(100% / 2 - 20px);
  }
  .flex_item_clounm_3 {
    width: calc(100% / 3 - 30px);
  }
  .flex_item_clounm_4 {
    width: calc(100% / 4 - 30px);
  }


  /*---------------------------------------------
  ** ヘッダー
  ---------------------------------------------*/
  /* tel */
  .tel {
    width: 100%;
    margin: 0 !important;
  }

  .tel ul {
    width: 100%; 
    height: 100%;
    display: block;
    text-align: center;
  }
  .tel li {
    height: 100%;
    list-style: none;
  }
  .tel a {
    text-decoration: none !important;
    color: #ffffff !important;
    width: 100%;
    height: 100%;
    display: block;
  }


  .icon_tel {
    position: relative;
  }
  .icon_tel::before {
    width: 19px;
    height: 30px;
    background: url(../img/common/icon_sp.png) no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    margin-right: 0.5rem;
    position: relative;
    top: 2px;
    left: -3px;
  }

  
  .header_L{
    width: 605px;
    padding: 2rem 0 0 0;
  }
  .header_R{
    width: 605px;
    padding: 0;
  }

  /*---------------------------------------------
 **  ナビゲーション
---------------------------------------------*/
  #nav {
    z-index: 999;
    /* position: relative; */
    margin: 0 auto;
    padding: 15px 0 0 0;
    max-width: 1200px;
    width: calc((100% - 300px));
  }

  .nav_wrapper{
    background: #D7ECFC;
  }
  .menu {
    margin: 0 auto;
    display: flex;
    text-align: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    
  }
  .menu > li {
    padding: 0px 0px 0;
    box-sizing: border-box; /*通常の記述*/
    -webkit-box-sizing: border-box; /*Google ChromeやSafariの機能を利用*/
    -moz-box-sizing: border-box; /*Firefoxの機能を利用*/
  }
  .menu > li:last-of-type {
    margin-right: 0;
  }
  .menu li > a {
    width: 100%;
    height: 100%;
    padding: 8px 16.9px 24px 16.9px;
    position: relative;
    font-size: 1.6rem;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    box-sizing: border-box; /*通常の記述*/
    -webkit-box-sizing: border-box; /*Google ChromeやSafariの機能を利用*/
    -moz-box-sizing: border-box; /*Firefoxの機能を利用*/
    color: #0059AA;
    margin-right: 50px;
  }
  .menu li > a:hover {
    color: #007ac6;
  }

  /*---------------------------------------------
 **  ドロップダウンメニュー
---------------------------------------------*/
  .dropmenu:before,
  .dropmenu:after {
    content: "";
    display: table;
  }
  .dropmenu:after {
    clear: both;
  }

  /* 下層メニュー */
  .sub-menu {
    list-style: none;
    position: absolute;
    z-index: 9999;
    top: 67px;
    padding: 0;
    width: 100%;
    max-width: 300px;
    background: #D7ECFC;
    display: flex;
    justify-content: start;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;

  }

  .sub-menu li {
    width:100%;
    border-bottom:1px solid #C9D8E3;
    text-align:left;
    position:relative;
    margin:0;
  }
  .sub-menu li a{
    padding: 15px 0px 16px 40px;
    margin: 0;
  }

  .sub-menu li:last-of-type {
    width:100%;
    border-bottom:unset;
  }
  .sub-menu li:after {
    position: absolute;
    top: 17px;
    left: 25px;
    content: "●";
    font-size: 9px;
    color: #104583;
  }
  

  /* ドロップメニュー 仕組み */
  #fade-in li .sub-menu {
    visibility: hidden;
    opacity: 0;
    /* transition: 0s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; */
  }
  #fade-in li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    text-align: center;
  }
  #fade-in li .sub-menu li a {
    visibility: hidden;
    opacity: 0;
  }
  #fade-in li:hover .sub-menu li a {
    visibility: visible;
    opacity: 1;
  }  

  /*---------------------------------------------
 疾患・治療リスト
---------------------------------------------*/
  .area-bt-01 {
    padding: 45px 70px 35px 70px;
  }

  /*---------------------------------------------
 **  メイン
---------------------------------------------*/
  #top .main_img {
    height: 450px;
    z-index: -1;
  }

  /*=================================================================================================================================*/
  /**  フッター	*/
  /*=================================================================================================================================*/
  .footer_inner {
    max-width: 1200px;
    _zoom: 1;
    overflow: hidden;
  }

  .map {
    height: 500px;
  }

  .footer_nav_wrapper{
    background: #ffffff;
  }

  /*=================================================================================================================================*/
  /**  1024px ～ 1570px まで	*/
  /*=================================================================================================================================*/
    @media (max-width: 1570px) {
      html {
        font-size: 55%;
      }
    }
    @media (max-width: 1024px) {
      html {
        font-size: 50%;
      }
    }


  /* ヘッダーサブナビ 順番 */
    .header-sub-nav{


}
.header-sub-nav li{
  float: left; 
}
.header-sub-nav li:nth-of-type(1){ width: 21%; float: left; }
.header-sub-nav li:nth-of-type(2){width: 23%;}
.header-sub-nav li:nth-of-type(3){  width: 23%;}
.header-sub-nav li:nth-of-type(4){  width: 28%; margin-bottom:6px; font-size:12px;}


/*---------------------------------------------
 疾患・治療リスト背景
---------------------------------------------*/
.area-bt-01 .clm-4 > .item{
  width: calc((100% - 80px) / 4);
}
.area-bt-01 .clm-3 > .item{
  width: calc((100% - 60px) / 3);
}

.area-bt-01 {
  padding: 45px 70px 35px 70px;
}

.area-bt-01 .btn-02{
  font-size: 2.0rem !important;
  padding: 1.2rem 2.7rem !important;
  margin-right: 10px !important;
  max-width: unset;
}



/*---------------------------------------------
 予約ボックス
---------------------------------------------*/

.treat-time-wrapper{
  margin-left: 1.2rem;
  margin-bottom: 2rem;
  width: 100%;
}

.treat-time-wrapper h4{
  padding: 1rem 0 0.5rem 0 !important;
  font-size: 1.6rem;
  color: #000;
}
.treat-time-wrapper ul{
  margin: 1rem 0 0 1rem;
}

.reservebox{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.reservebox .item:first-child{
  border-right: 2px solid #104583;
  display: flex;
  align-items: center;
  text-align: center;
  width: 20%;
  justify-content: center;
  margin-bottom: unset;
}

.reservebox .item:nth-child(2),
.reservebox .item:nth-child(3){
  display: flex;
  align-items: center;
  width: 38%;
  margin-bottom: unset;
}

.reservebox .item:first-child h3{ display: block;}
.reservebox dl.reserve{ display: flex; align-items: center;}

.reserve-tbl{
  width: 80%;
  display: block;
  margin: 1rem auto;
  border-radius: 10px;
  border: 4px solid #008E6F;
  box-sizing: border-box;
  border-collapse: collapse;
}
.reserve-tbl th{
  background: #008E6F;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding:1rem 0;
  width: 20%;
}

.reserve-tbl tr:first-child{
  border-bottom:2px solid #008E6F;
}
.reserve-tbl td{
  padding: 1rem 0 1rem 3rem;
  width: 35%;
  text-align: left;
  font-size: 2.0rem;
  font-weight: bold;
}
.reserve-tbl td span{
  font-size: 1.6rem;
  font-weight: normal;
}

/*---------------------------------------------
 新導入機器
---------------------------------------------*/
.pickup{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.pickup .left{
  width: 250px;
}
.pickup .covid-wrapper-bdr{
  width: 820px;
  box-sizing: border-box;
  margin: 3rem 0;
}

} /*■■ ここまで ■■*/
