@charset "UTF-8";
/*--------------------
    import
--------------------*/
#top-to-button {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 999;
}

/*--------------------
    フォローボタン
--------------------*/
/*--------------------
    フォローボタン
--------------------*/
/*--------------------
    一覧ページ
--------------------*/
/*--------------------
    font-family
--------------------*/
/*--------------------
    import
--------------------*/
/*--------------------
    font-family
--------------------*/
/*--------------------
    変数
--------------------*/
/*--------------------
    dashboard
--------------------*/
/*--------------------
    変数
--------------------*/
/*--------------------
    mixin
--------------------*/
/*--------------------
    companies_detail
--------------------*/
#companies_detail {
  padding-bottom: 100px;
}
#companies_detail .company_frame {
  padding-top: 60px;
}
#companies_detail .company_frame .company_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 765px;
  height: 104px;
  margin: 0 auto;
}
#companies_detail .company_frame .company_inner_left {
  display: flex;
  justify-content: flex-start;
}
#companies_detail .company_frame .company_icon {
  width: 104px;
  height: 104px;
}
#companies_detail .company_frame .company_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
     border-radius:50%;
}
#companies_detail .company_frame .company_inner_info {
  display: flex;
  flex-flow: column;
  justify-content: center;
  row-gap: 7px;
  padding-left: 20px;
}
#companies_detail .company_frame .company_inner_info .company_title {
  font-size: 12px;
  color: #888888;
}
#companies_detail .company_frame .company_inner_info .company_name {
  font-size: 18px;
}
#companies_detail .company_frame .company_inner_info .location {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  font-size: 12px;
}
#companies_detail .company_frame .company_inner_info .company_count {
  /* display: flex; */
  justify-content: flex-start;
  gap: 20px;
  /*211206　sato 目とハートのアイコン非表示 */
  display:none;
}
#companies_detail .company_frame .company_inner_info .view {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  font-size: 12px;
}
#companies_detail .company_frame .company_inner_info .nice {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  font-size: 12px;
}
#companies_detail .company_frame .company_follow {
  display: flex;
  flex-flow: column;
  justify-content: center;
  row-gap: 15px;
}
#companies_detail .company_frame .follow_btn_common {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 31px;
  border-radius: 20px;
  font-size: 12px;
  color: #fff;
}
#companies_detail .company_frame .follow_btn_common:hover {
  cursor: pointer;
  opacity: 0.7;
}
#companies_detail .company_frame .follow_btn_on {
  position: relative;
  background: #58DBB3;
}
#companies_detail .company_frame .follow_btn_on:after {
  position: absolute;
  content: "✔︎";
  top: 4px;
  right: 15px;
  bottom: 0;
  margin: auto;
  font-size: 18px;
  font-weight: normal;
  color: #fff;
}
#companies_detail .company_frame .follow_btn_off {
  position: relative;
  background: #5694FF;
}
#companies_detail .company_frame .follow_btn_off:before {
  position: absolute;
  content: "+";
  top: 4px;
  left: 20px;
  bottom: 0;
  margin: auto;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
}
#companies_detail .company_frame .company_member {
  display: flex;
  justify-content: flex-end;
}
#companies_detail .company_frame .company_member .if_img {
  margin-left: -10px;
  width: 39px;
  height: 39px;
}
#companies_detail .company_frame .company_member .if_img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #fff;
  border-radius: 50%;
}
#companies_detail .company_cover_img {
  padding-top: 30px;
}
#companies_detail .company_cover_img .company_cover_img_inner {
  width: 1280px;
  height: 451px;
  margin: 0 auto;
}
#companies_detail .company_cover_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#companies_detail .company_profile {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}
#companies_detail .company_profile .company_profile_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  row-gap: 30px;
  width: 758px;
}
#companies_detail .company_profile .profile_edit_title {
  font-size: 30px;
  font-weight:600;
  text-align: center;
}
#companies_detail .company_profile .profile_edit_intro {
  line-height: 25px;
  font-size: 14px;
}
/* 2021-12-21 11:12:49 inoue S #1361 過去記事一覧 */
#companies_detail .past_article p{
  padding-top: 30px;
  position: relative;
  /* text-align: center; */
  font-size: 14px;
  margin-bottom: -10px;
  padding-bottom: 10px;
  width: 695px;
  margin: 0 auto;
  /* padding-left: 18px; */
  display: flex;
  justify-content: flex-end;
}
/* 矢印の先端 */
#companies_detail .past_article p::before{
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: #000;
  transition: 0.3s;
}
/* 矢印の下の線 */
#companies_detail .past_article p::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(-50%);
  width: 15%;
  height: 2px;
  background-color: #000;
  transition: 0.3s;
}
/* 2021-12-21 11:12:49 inoue #1361 E */
#companies_detail .company_values {
  padding-top: 70px;
}
#companies_detail .company_values .company_values_frame {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 30px;
  background: #FBFBFB;
}
#companies_detail .company_values .company_values_inner {
  width: 862px;
  margin: 0 auto;
}
#companies_detail .company_values h2 {
  font-size: 35px;
  text-align: center;
  font-family: dunbar-low,'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-style: italic;
}
#companies_detail .company_values h3 {
  padding-top: 10px;
  font-size: 15px;
  text-align: center;
}
#companies_detail .company_values .company_values_txt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding:20px;
  row-gap:20px;
  margin-top:20px;
}
#companies_detail .company_values .company_values_txt .company_value {
  width: 48%;
}
#companies_detail .company_values .company_values_txt .company_value_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
margin-bottom: 20px;
 
  border-left: 7px solid #A8C5ED;
  border-image: linear-gradient(to bottom, #A8C5ED 0%, #7BD5AE 100%);
  border-image-slice: 1;
  padding:5px 10px;

}
#companies_detail .company_values .company_values_txt .cvalue_no {
  font-size: 15px;
}
#companies_detail .company_values .company_values_txt .cvalue_category {
  font-size: 20px;
  font-weight:600;
}
#companies_detail .company_values .company_values_txt .cvalue_textarea {
  font-size: 14px;
  word-break: break-all;
  line-height:1.7em;
}
#companies_detail .author_related_news {
  padding-top: 70px;
}
#companies_detail .author_related_news .title h2 {
  display: flex;
  justify-content: center;
  font-size: 35px;
  font-family: dunbar-low,'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-style: italic;
}
#companies_detail .author_related_news .title h3 {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  font-size: 15px;
}
#companies_detail .author_related_news .tns_frame {
  position: relative;
  max-width: 825px;
  margin: 0 auto;
  padding-top: 30px;
}
#companies_detail .author_related_news .tns_frame .tns-outer {
  margin: 0 auto;
}
#companies_detail .author_related_news .tns_frame .tns-inner {
  position: relative;
  z-index: 98;
}
#companies_detail .author_related_news .tns_frame .tns-nav {
  text-align: center;
}
#companies_detail .author_related_news .tns_frame .tns-nav > [aria-controls] {
  width: 9px;
  height: 9px;
  margin: 0 5px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #dddddd;
}
#companies_detail .author_related_news .tns_frame .tns-nav > [aria-selected=true] {
  background: #999999;
}
#companies_detail .author_related_news .tns_frame [data-controls=prev],
#companies_detail .author_related_news .tns_frame [data-controls=next] {
  position: absolute;
  z-index: 10;
  top: 55%;
  width: 34px;
  height: 34px;
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
  opacity: 0.9;
  background: #333333;
  color: #ffffff;
  line-height: 34px;
  text-align: center;
  font-weight: bold;
  border-radius: 50px;
}
#companies_detail .author_related_news .tns_frame [data-controls=prev]:hover,
#companies_detail .author_related_news .tns_frame [data-controls=next]:hover {
  opacity: 0.6;
}
#companies_detail .author_related_news .tns_frame [data-controls=prev] {
  left: 0px;
}
#companies_detail .author_related_news .tns_frame [data-controls=next] {
  right: 0px;
}
#companies_detail .author_related_news .tns_frame #customizeControls {
  max-width: 825px;
  z-index:999;
}
#companies_detail .author_related_news .tns_frame #customizeControls2 {
  max-width: 825px;
    z-index:999;

}
#companies_detail .author_related_news .tns_frame .controls {
  position: absolute;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  background: #333;
  width: 100%;
  top: 55%;
  transform: translatey(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#companies_detail .author_related_news .tns_frame .controls:focus {
  outline: none;
}
#companies_detail .author_related_news .tns_frame .controls li:hover {
  cursor: pointer;
}
#companies_detail .author_related_news .tns_frame .slider_frame {
  width: 730px;
  margin: 0 auto;
}
#companies_detail .author_related_news .slider .s_one .s_one_frame {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner {
  display: flex;
  justify-content: space-between;
  width: 708px;
  height: 182px;
  margin: 0 auto;
  padding: 30px;
  background-color: #FBFBFB;
  box-shadow: 3px 3px 5px 1px rgba(0, 0, 0, 0.1);
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_img {
  width: 120px;
  height: 120px;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: 77%;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_category {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_category .s_news {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
  font-size: 10px;
  background-color: #FF9c50;
  padding: 0 7px;
  border-radius: 20px;
  border: 2px solid #FF9c50;
  color: #ffffff;
  transition: 0.3s;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_category .s_news:hover {
  background-color: #fff;
  border-color: #FF9c50;
  color: #FF9c50;
  transition: 0.3s;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_category .s_date {
  font-size: 11px;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_body {
  font-size: 14px;
  font-weight: bold;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_username {
  font-size: 14px;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_vni_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 12px;
  width: 520px;
  padding-right: 25px;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_vni_flex .s_user_info {
  display: flex;
  justify-content: flex-start;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_vni_flex .s_user_info img{
  margin-right:3px;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_vni_flex .s_user_info .s_location {
  display: flex;
  justify-content: flex-start;
  padding-right: 10px;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_vni_flex .s_user_info .s_location img {
  width: 12px;
  height: 12px;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_vni_flex .s_user_info .s_view {
  display: flex;
  justify-content: flex-start;
  padding-right: 10px;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_vni_flex .s_user_info .s_view img {
  width: 12px;
  height: 12px;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_vni_flex .s_user_info .s_nice {
  /* display: flex; */
  justify-content: flex-start;
  /* 211206 ハートアイコン非表示　sato S */
  display:none;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_vni_flex .s_icon_all {
  display: flex;
  justify-content: flex-end;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_vni_flex .s_icon_all .if_img {
  margin-left: -7px;
  width: 25px;
  height: 25px;
}
#companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_vni_flex .s_icon_all .if_img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #fff;
  border-radius: 50%;
}
#companies_detail .leisure_specials {
  padding-top: 70px;
}
#companies_detail .leisure_specials .title h2 {
  display: flex;
  justify-content: center;
  font-size: 35px;
  font-family: dunbar-low,'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-style: italic;
}
#companies_detail .leisure_specials .title h3 {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  font-size: 15px;
}
#companies_detail .leisure_specials .tns_frame {
  position: relative;
  max-width: 825px;
  margin: 0 auto;
  padding-top: 30px;
}
#companies_detail .leisure_specials .tns_frame .tns-outer {
  margin: 0 auto;
}
#companies_detail .leisure_specials .tns_frame .tns-inner {
  position: relative;
  z-index: 98;
}
#companies_detail .leisure_specials .tns_frame .tns-nav {
  text-align: center;
}
#companies_detail .leisure_specials .tns_frame .tns-nav > [aria-controls] {
  width: 9px;
  height: 9px;
  margin: 0 5px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #dddddd;
}
#companies_detail .leisure_specials .tns_frame .tns-nav > [aria-selected=true] {
  background: #999999;
}
#companies_detail .leisure_specials .tns_frame [data-controls=prev],
#companies_detail .leisure_specials .tns_frame [data-controls=next] {
  position: absolute;
  z-index: 10;
  top: 55%;
  width: 34px;
  height: 34px;
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
  opacity: 0.9;
  background: #333333;
  color: #ffffff;
  line-height: 34px;
  text-align: center;
  font-weight: bold;
  border-radius: 50px;
}
#companies_detail .leisure_specials .tns_frame [data-controls=prev]:hover,
#companies_detail .leisure_specials .tns_frame [data-controls=next]:hover {
  opacity: 0.6;
}
#companies_detail .leisure_specials .tns_frame [data-controls=prev] {
  left: 0px;
}
#companies_detail .leisure_specials .tns_frame [data-controls=next] {
  right: 0px;
}
#companies_detail .leisure_specials .tns_frame #customizeControls {
  max-width: 825px;
}
#companies_detail .leisure_specials .tns_frame #customizeControls2 {
  max-width: 825px;
}
#companies_detail .leisure_specials .tns_frame .controls {
  position: absolute;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  background: #333;
  width: 100%;
  top: 55%;
  transform: translatey(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index:999;
}
#companies_detail .leisure_specials .tns_frame .controls:focus {
  outline: none;
}
#companies_detail .leisure_specials .tns_frame .controls li:hover {
  cursor: pointer;
}
#companies_detail .leisure_specials .tns_frame .slider_frame {
  width: 730px;
  margin: 0 auto;
}
#companies_detail .leisure_specials .ls_ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#companies_detail .leisure_specials .ls_ul .ls_li {
  margin-bottom: 10px;
  height: 258px;
  box-shadow: 3px 3px 5px 1px rgba(0, 0, 0, 0.1);
}
@media(min-width:680px){
  #companies_detail .leisure_specials .ls_ul .ls_li {
  width: 214px !important;
  }
}
#companies_detail .leisure_specials .ls_ul .ls_li .ls_img {
  position: relative;
  width: 100%;
  height: 139px;
}
#companies_detail .leisure_specials .ls_ul .ls_li .ls_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#companies_detail .leisure_specials .ls_ul .ls_li .ls_img .category {
  position: absolute;
  top: 5px;
  right: 5px;
  text-align: center;
  font-size: 10px;
  background-color: #FF9c50;
  border-radius: 20px;
  border: 2px solid #FF9c50;
  padding: 3px;
  color: #ffffff;
  transition: 0.3s;
}
#companies_detail .leisure_specials .ls_ul .ls_li .ls_img .category:hover {
  background-color: #fff;
  border-color: #FF9c50;
  color: #FF9c50;
  transition: 0.3s;
}
#companies_detail .leisure_specials .ls_ul .ls_li .ls_img .au_icon {
  position: absolute;
  max-width: 54px;
  left: 0;
  right: 0;
  bottom: -27px;
  margin: auto;
  border: 3px solid #fff;
  border-radius: 50%;
}
#companies_detail .leisure_specials .ls_ul .ls_li .ls_inner {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 119px;
  padding: 5px 5px 15px;
}
#companies_detail .leisure_specials .ls_ul .ls_li .uptime {
  font-size: 10px;
  text-align: right;
  width: 207px;
  padding-right:7px;
}
#companies_detail .leisure_specials .ls_ul .ls_li .user_n {
  font-size: 10px;
  text-align: center;
}
#companies_detail .leisure_specials .ls_ul .ls_li .title {
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}
#companies_detail .leisure_specials .ls_ul .ls_li .loca_frame {
  display: flex;
  justify-content: center;
}
#companies_detail .leisure_specials .ls_ul .ls_li .location {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-right: 20px;
  font-size: 11px;
}
#companies_detail .members {
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 80px;
}
#companies_detail .members .members_title h2 {
  display: flex;
  justify-content: center;
  font-size: 35px;
  font-family: dunbar-low,'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-style: italic;
}
#companies_detail .members .members_title h3 {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  font-size: 15px;
}
#companies_detail .members .members_frame {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  max-width: 832px;
  margin: 0 auto;
  padding-top: 33px;
}
#companies_detail .members .members_frame .member {
  width: 108px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  gap:10px;
}
#companies_detail .members .members_frame .member_img {
  width: 100px;
  height: 100px;
}
#companies_detail .members .members_frame .member_img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
     border-radius: 50%;
}
#companies_detail .members .members_frame .member_name {
  font-size: 14px;
  text-align:center;
}
#companies_detail .members .members_frame .member_work {
  font-size: 12px;
  color: #757575;
}
#companies_detail .company_info {
  display: flex;
  justify-content: center;
  padding-top: 70px;
}
#companies_detail .company_info .company_info_frame {
  width: 765px;
  background: #FBFBFB;
  border-radius: 20px;
  box-shadow: 1px 2px 5px 0 rgba(0, 0, 0, 0.2);
}
#companies_detail .company_info .company_info_inner {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  row-gap: 30px;
  width: 100%;
  height: 100%;
  padding: 40px;
}
#companies_detail .company_info h3 {
  font-size: 20px;
  font-weight: bold;
}
#companies_detail .company_info .company_info_name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
#companies_detail .company_info .company_info_name .company_info_icon {
  width: 70px;
  height: 70px;
}
#companies_detail .company_info .company_info_name .company_info_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
#companies_detail .company_info .company_info_name .company_name {
  font-size: 17px;
}
#companies_detail .company_info .company_info_label {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  row-gap: 20px;
  height: 100%;
}
#companies_detail .company_info .company_info_label_inner {
  display: flex;
  justify-content: flex-start;
  font-size: 14px;
}

@media(max-width:1000px){
  #companies_detail .company_frame .company_inner,
  #companies_detail .company_cover_img .company_cover_img_inner,
  #companies_detail .company_values .company_values_inner{
    width:100%;
  }
}

@media(max-width:680px){
  #companies_detail .company_frame .company_inner,
  #companies_detail .company_frame .company_inner_left{
    flex-direction: column;
    height:auto;
    gap:10px;
  }

  
  #companies_detail .company_frame .company_icon{
    margin: 0 auto;
  }

  #companies_detail .company_frame{
    padding-top:20px;
  }
  #companies_detail .company_frame .company_follow{
    align-items: center;
  }
  #companies_detail .company_cover_img .company_cover_img_inner{
    height:250px;
  }
  #companies_detail .company_values .company_values_txt .company_value{
    width:100%;
  }
  #companies_detail .author_related_news .slider .s_one .s_one_inner{
    padding:15px;
    height:auto;
        flex-direction: column;
    gap:10px;

  }
  #companies_detail .author_related_news .slider .s_one .s_one_frame{
    height:auto;
  }
  #companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag{
    gap:5px;
    width:100%;
  }

  #companies_detail .author_related_news .slider .s_one .s_one_inner .s_img{
    margin:0 auto;
  }
 .title > a{
    line-height:1.6em;
  }

  #companies_detail .tns-nav{
    margin-top:10px;
  }
  
  #companies_detail .company_info .company_info_name{
    flex-direction: column;
    gap:10px;
  }
  #companies_detail .company_info .company_info_inner{
    padding:20px;
  }
  #companies_detail .company_info .company_info_name .company_info_icon img{
    margin:0 auto;
  }
  #companies_detail .members .members_frame{
    justify-content: flex-start;
    gap:0;
    row-gap:30px;
  }
  #companies_detail .members .members_frame .member{
    height:auto;
    gap:10px;
    width:33%;
    padding:10px;
  }
  #companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_vni_flex{
    padding-right:0;
  }
  #companies_detail .author_related_news .slider .s_one .s_one_inner .s_tag .s_vni_flex .s_icon_all .if_img:first-of-type{
    margin-left:0;
   
  }
  #companies_detail .leisure_specials .ls_ul .ls_li .uptime{
    width:100%;
  }
  

}