/*
クリニック＆体質改善特集　css
*/

/* -------------------------
    タイトル部分
---------------------------- */
.clinic_special_head {
  margin-bottom: 20px;
}
.clinic_special_read {
  text-align: center;
}
.support_name {
  margin-bottom: 1em;
  margin-top: -0.7em;
  padding-right: 20px;
  color: #999;
  text-align: right;
}
.link_btn {
  text-align: center;
}
/* -------------------------
    クリニック一覧
---------------------------- */
.clinic_special_wrap {
  line-height: 1.8;
  margin: 0 0 40px;
  padding: 20px 0;
}
/*h2タイトル*/
.clinic_special_wrap h2 {
  font-size: 22px;
  font-weight: bold;
  margin: 0 20px 20px;
  padding: 5px 12px;
  color: #f76288;
  text-align: left;
  border-left: 6px solid #f76288;
  background: #f1f1f1;
}

.clinic_special_list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 20px 20px;
}
/*各ボックス*/
.clinic_special_list .list_block {
  width: 48.5%;
  margin: 0 0 30px 0;
  border: 1px solid #d9d9da;
  border-radius: 5px;
  box-shadow: 2px 2px 3px #f1f1f1;
  box-sizing: border-box;
  transition: 0.5s;
}
.clinic_special_list .list_block a {
  position: relative;
  display: block;
  padding: 20px;
  border-right: 47px solid #f9dce0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  text-decoration: none !important;
}
.clinic_special_list .list_block a::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 0px;
  border-top: solid 4px #b6b5b5;
  border-right: solid 4px #b6b5b5;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: -28px;
  margin-top: -8px;
}
.clinic_special_list .list_block:hover {
  background: #fcf5f6;
}
.clinic_special_list_col2 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.clinic_special_list_col2 figure {
  width: 130px;
  height: 125px;
}
.clinic_special_list_col2 h3 {
  font-size: 16px;
  font-weight: bold;
  width: 260px;
  padding-left: 10px;
  text-align: left;
}
.clinic_special_list_facilityname {
  font-size: 14px;
  line-height: 1.5;
  padding-top: 10px;
  text-align: right;
  border-top: 1px solid #d9d9da;
}
/* -------------------------
    タブ
---------------------------- */
.tab_wrap {
  width: 100%;
  margin: 32px auto 0
}
.tab_wrap .tabItem {
  width: 30.5%;
  height: 50px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.09em;
  line-height: 50px;
  text-align: center;
  background: #c1c1c1;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.tab_wrap .tabItem:hover { background: #f76288 }
.tab_wrap input[name="tabItem"] { display: none }
.tab_wrap .tabContent {
  width: 100%;
  margin-top: 60px;
  display: none;
  overflow: hidden
}
.tab_wrap #clinic_tab + label,
.tab_wrap #taishitsu_tab + label {
  margin-left: 20px
}
.tab_wrap #all_tab:checked ~ #all_tab_content,
.tab_wrap #clinic_tab:checked ~ #clinic_tab_content,
.tab_wrap #taishitsu_tab:checked ~ #taishitsu_tab_content {
  display: block
}
.tab_wrap input:checked + .tabItem { background: #f76288 }
.tab_wrap input:checked + .tabItem:after {
  position: absolute;
  content: "";
  top: 100%;
  left: calc(50% - 10px);
  width: 0;
  height: 0;
  margin-top: -1px;
  border: 10px solid transparent;
  border-top: 10px solid #f76288;
}
/* -------------------------
    バナー
---------------------------- */
.bn_box {
  padding: 50px;
  display:flex;
  justify-content:space-between;
  background: #f1f1f1;
}
.bn_box_list {
  width: 48%;
  box-shadow: 2px 2px 3px #f1f1f1;
  box-sizing: border-box;
}
.bn_box_list a img{
	position:relative;
	top:0;
}
.bn_box_list a img:hover{
	top:-2px;
	transition:0.3s;
}