
.l_sejyutu_clinic {
  justify-content: center;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0;
  text-align: center;
  padding: 1em 0;
}
@media (max-width:960px) {
  .l_sejyutu_clinic {
    display: block;
  }
}
/*tabの形状*/
.mokuji_sinhiryo_menu {
margin-top: 1em;
	display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  padding-bottom: 10px;
}
.mokuji_sinhiryo_menu li {
  width: 100%;
  text-align: center;
  margin: 1em auto;
	box-shadow: 0px 7px 10px 0px rgba(95, 142, 168, 0.4);
	border-radius: 10px;
}
.mokuji_sinhiryo_menu li a {
  padding: .3em 0 .1em 0;
 font-size: clamp(1.063rem, 0.994rem + 0.34vw, 1.25rem);
  width: 100%;
  height: 100%;
	font-weight: 500;
  display:flex;
	align-items: center;
	align-content: center;
	justify-content: center;
  background: #EFF4F7;
  text-decoration: none;
	border-radius: 10px;
  color: rgba(67, 134, 183, 1.00) !important;
	gap:1em;
}
.mokuji_sinhiryo_menu li a .tag_yoyaku {
	margin: 0;
}
/*----------*/
.unit_title_box {
  max-width: auto;
  margin: 0 auto;
  width: auto;
}
.unit_title_box p {
  text-align: center;
}
/*自由診療のパネル*/
.l_panel_menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}
.l_panel_menu img {
  width: 100%;
  height: 130px;
  -o-object-fit: cover;
  object-fit: cover;
}
.l_panel_menu h5 {
  font-size: 1.2em;
  text-align: center;
  padding-bottom: 1em;
	line-height: 1.4;

}
.l_panel_menu span.tag_yoyaku {
  font-size: .65em !important;
  font-weight: normal;
	margin: .4em auto;
}
.l_panel_menu a {
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.l_panel_menu a:hover {
  background: rgba(230, 238, 243, 1.00);
  opacity: .7;
}
/*点滴領域*/
.l_tenteki_area {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.l_tenteki_area > div {
  margin: 0 auto;
  width: 100%;
}
.l_tenteki_area > div img {
  max-width: 500px;
  width: 100%;
}
@media (max-width:960px) {
  /*自由診療のパネル*/
  .l_panel_menu {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
  .l_panel_menu img {
    height: 190px;
  }
  .l_panel_menu h5 {
    font-size: 1em;
  }
  /*点滴領域*/
  .l_tenteki_area {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    grid-gap: 30px;
    gid-template-rows: 50% 50%;
  }
}
.l_mincho {
  font-size: 1.1em;
  font-weight: bold;
  padding-top: .5em;
  padding-bottom: .5em;
  padding-left: 1.4em;
  margin: 1.5em 0 0.5em 0;
  position: relative;
  line-height: 1.4;
  color: #606060; /*フォント色*/
}
.l_komidashi {
  color: #4F8FC1;
  margin: 2em 0 .5em 0;
  font-size: 1.2em;
  border-bottom: 1px dashed #C7CECF;
}

@media (max-width:960px) {
  .l_artmake {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
/*検査*/
.l_hitsuyou_list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
  text-align: center;
  margin-bottom: 4em;
}
.l_hitsuyou_list li a {
  height: 100%;
  display: block;
  background: #fff;
  display: flex;
  border: 3px solid #3BBD93;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1em;
  line-height: 1.5;
  text-decoration: none;
  color: #1D5F49 !important;
  transition: .4s;
  padding-top: 1em;
}
.l_hitsuyou_list li a:hover {
  background: #DBF3EB;
}
.l_hitsuyou_list li a span {
  background: #46B792;
  color: #fff;
  display: block;
  width: 100%;
  padding: 1em 0;
  font-weight: bold;
  position: relative;
  transition: ease .2s;
	font-size: .9em;
}
/* 矢印が右に移動 */
.l_hitsuyou_list li a span::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 42%;
  right: 16px;
  /*矢印の形状*/
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all .3s;
}
/*hoverした際の移動*/
.l_hitsuyou_list li a span:hover::after {
  right: 11px;
}
@media screen and (max-width:960px) {
  .l_hitsuyou_list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px;
  }
}
.l_osmr_test {
  border: 3px solid #3BBD93;
  padding: 1em;
}
.l_osmr_test h5.title_green {
  margin-top: 1.2em;
  font-size: 1.1em;
  color: #3BBD93;
}

.pricelist_ttl {
  letter-spacing: 0.1em;
  color: #6D92B7;
  margin: 55px 0 20px;
}
.unit_table_department {
  border: none;
}
.unit_table_department tr:nth-child(odd) td {
  background-color: #f6f9fc;
}
.unit_table_department .menu_name {
  width: 40%;
  text-align: left!important;
  padding-left: 25px;
}
.unit_table_department a {
  color: #4386B7!important;
  position: relative;
}
.unit_table_department a::after {
  content: '\f138';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
  position: absolute;
}
.unit_table_department th.price, .unit_table_department th.price2 {
  text-align: center;
}
.unit_table_department tbody th {
  color: #000!important;
}
.unit_table_department td, .unit_table_department th {
  width: 40%;
  line-height: 1.65;
  padding: 10px 15px;
}
.unit_table_department .ttl {
  width: 180px;
}
.unit_table_department .price {
  width: 160px;
}
.unit_table_department .price2 {
  min-width: 160px;
  width: 160px;
}
.unit_table_department tbody td {
  border-left: none;
}
.table-btn {
  margin-top: 1em;
  display: block;
}
.unit_table_department td.price{
	text-align: left;
	border-left: 1px solid #C3CCD5;
	border-right: 1px solid #C3CCD5;
}
.unit_table_department td.price a{
	display: block;
	margin-bottom: .5em;
	background: #AEC1D4;
	text-align: center;
	text-decoration: none;
	font-size: .9em;
	color: #fff!important;
	transition: .4s;
}
.unit_table_department td.price a:hover{
	opacity: .8;
}
.unit_table_department td.price a:after{
	content: none;
}
@media screen and (max-width:960px) {
  .pricelist_ttl {
    font-size: 1.1em;
    margin: 40px 0 15px;
  }
  table.unit_table_department {
    min-width: 550px;
    width: auto;
  }
  .unit_table_department .menu_name {
    width: 30%;
    padding-left: 15px;
  }
  table.unit_table_department thead {
    width: auto;
    height: auto;
    position: relative;
  }
  table.unit_table_department tr {
    margin-bottom: 0;
  }
  table.unit_table_department tr.line, table.unit_table_department tr.menu {
    border-top: none;
  }
  table.unit_table_department th, table.unit_table_department td {
    width: 200px;
    padding: 0.75em;
    border-bottom: none;
    display: table-cell;
  }
  .col_tablearea_normal {
    overflow: scroll;
  }
  .unit_table_department .ttl {
    width: 140px;
  }
  .unit_table_department .price {
    width: 120px;
  }
  .unit_table_department .price2 {
    min-width: 60px;
    width: 60px;
  }
}
/* nutritional-guidance.shtml */
.ng-table{
  width: 90%!important;
  margin: 0 auto;
}
.ng-table th, .ng-table td {
  padding: 0.75em 10px 0.75em 1em;
}
.ng-table th:nth-child(1), .ng-table td:nth-child(1) {
  width: 3em;
  text-align: center;
}
.ng-table-txt {
  text-align: center;
}