@charset "UTF-8";
@import url("./config.php");
*:focus {
  outline: none;
}
a,
.video_cnt,
.logos .swiper-slide a{
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
}
/* swiper共通 */
.sw_loading::before{
  content: '';
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background-image: url('../../img/common/loading.png');
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 0;
  animation: loading 800ms infinite linear;
}
.sw_loading.is-loading .swiper-wrapper{
  opacity: 0;
}
.sw_loading.is-loading .swiper-button-prev,
.sw_loading.is-loading .swiper-button-next{
  opacity: 0;
}
.sw_loading.is-loading::before{
  opacity: 1;
}
@keyframes loading {
  0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(-360deg);
      transform: rotate(-360deg);
  }
}

.swiper-container-horizontal{
  /*position: relative;*/
}
.swiper-wrapper{
  position: relative;
  left: 0;
  height: 100%;
}
.prev_btn,
.next_btn{
  position: absolute;
  height:100%;
  top: 22px;
  background: none;
}
.prev_btn{
  left: 0;
}

.logos .prev_btn {
  left: -50px;
}

.next_btn{
  right: 0;
}
.prev_btn::before,
.next_btn::before{
  content: "";
  position: absolute;
  width: 150px;
  height:100%;
  background: none;
  z-index: 20;
  transition: .5s;
  pointer-events: none;
}
.prev_btn::before{
  background: linear-gradient(to left, rgba(255,255,255,0), #fff);
  left: 0;
}
.next_btn::before{
  background: linear-gradient(to right, rgba(255,255,255,0), #fff);
  right: 0;
}
.prev_btn:after,
.next_btn:after{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  width: 56px;
  height: 56px;
  padding: 8px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 4px 24px rgba(72, 88, 102, 0.16);
  z-index: 50;
}
.prev_btn:after{
  background: url(../../img/top/btn_prev.svg) center no-repeat #fff;
  background-size: 40px 40px;
  /* left: 30px; */
  left: 5px;
}
.logos .prev_btn:after {
  left: 30px;
}

.next_btn:after{
  background: url(../../img/top/btn_next.svg) center no-repeat #fff;
  background-size: 40px 40px;
  /* right: 30px; */
  right: 5px;
}

.arrow_hidden .next_btn:after,
.arrow_hidden .next_btn:before,
.arrow_hidden .prev_btn:after,
.arrow_hidden .prev_btn:before {
  display: none;
}

.btn_min:after{
  width: 32px;
  height: 32px;
  background-size: 20px 20px;
}

.arrow_hidden .swiper-wrapper {
  /* transform: translate3d(5px, 0, 0)!important; */
}
.swiper-button-disabled{
  display: none;
}

.swiper_nav_hidden {
  display: none;
}

.swiper-container {
  /* padding-top: 5px;
  margin-top: -10px;
  padding-bottom: 5px;
  padding-left: 6px; */
  padding-top: 15px;
  margin-top: -20px;
  padding-bottom: 5px;
  padding-left: 8px;
}
/* /swiper共通 */

/* .panel */
.panel{
  /* border-radius: 10px; */
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(72, 88, 102, 0.2);
  overflow: hidden;
  background: #fff;
  position: relative;
}
.panel:hover{
  opacity: 0.6;
}
/* /.panel */


/* 急上昇ランキング */
.ranking{
  background: #FFFAF4;
  width: 100%;
  min-height: 449px;
}
.ranking.parts_content{
  margin-top: 0;
  /* padding: 56px 0 56px 48px; */
  padding: 56px 0 30px 48px;
}
.ranking_ttl{
  font-weight: bold;
  font-size: 18px;
  align-items: flex-end;
  display: flex;
  padding: 0 13px;
  /* margin-bottom: 28px; */
  /* line-height: 130%; */
  margin-bottom: 26px;
  line-height: 160%;
}
.ranking_ttl svg{
  margin-right: 10px;
}
.ranking_swiper{
  width: 100%;
  position: relative;
  overflow: hidden;
  /* overflow: initial; */
}
.ranking .swiper-slide a {
  display: block;
  height: 100%;
}
.ranking .swiper-container{
  padding-top: 8px;
  margin-top: -8px;
}
.ranking .swiper-container-horizontal::after{
  background: linear-gradient(to right, rgba(255,250,244,0), #FFFAF4);
  top: 0;
  right: 0;
}
.ranking .prev_btn::before{
  background: linear-gradient(to left, rgba(255,250,244,0), #FFFAF4);
}
.ranking .next_btn::before{
  background: linear-gradient(to right, rgba(255,250,244,0), #FFFAF4);
}
.ranking .swiper-slide{
  width: 208px;
  height: auto;
  margin-bottom: 20px;
}
.ranking .swiper-slide a {
  display: block;
  height: 100%;
}
.ranking .ranking_swiper .swiper-wrapper{
  width: 100%;
}
.ranking .ranking_swiper .swiper-slide{
  width: 216px;
  /* min-height: 321px; */
}
.ranking .swiper-slide .rank{
  position: absolute;
  display: flex;
  font-weight: bold;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #121212;
  border-radius: 50%;
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
  border: 2px solid #d0d0d0;
  z-index: 90;
  margin-top: -8px;
  font-size: 14px;
}
.ranking .swiper-slide .rank.rank_1{
  background: #BB9717;
  border: 2px solid #BB9717;
  color: #fff;
}
.ranking .swiper-slide .rank.rank_2{
  background: #44698B;
  border: 2px solid #44698B;
  color: #fff;
}
.ranking .swiper-slide .rank.rank_3{
  background: #B87B21;
  border: 2px solid #B87B21;
  color: #fff;
}
.ranking .panel{
  width: 208px;
  height: 100%;
  /* min-height: 293px; */
  margin-left: 8px;
}
.ranking .panel .panel_img{
  width: 208px;
  height: 115px;
}
.ranking .panel .panel_img .img{
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.ranking .panel .panel_img.is-logo{
  padding: 10px;
}
.ranking .panel .panel_img.is-logo .img{
  background-size: contain;
}
.ranking .panel .panel_img img{
  width: 208px;
  height: 115px;
  object-fit: cover;
}
.ranking .panel .panel_detail .company {
  display: flex;
  padding: 12px;
  align-items: center;
}
.ranking .panel .panel_detail .company .company_icon{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 8px;
  border: 1px solid #F2F2F4;
}
.ranking .panel .panel_detail .company .company_icon_img{
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.ranking .panel .panel_detail .company .company_icon img{
  width: 34px;
  height: 34px;
  object-fit: cover;
  padding: 4px;
}
.ranking .panel .panel_detail .company .company_name{
  max-width: 132px;
  font-size: 12px;
  font-weight: bold;
  margin-top: 5px;
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 150%;
}
.ranking .panel .panel_detail .description{
  font-size: 12px;
  padding: 0 12px 20px;
  line-height: 19.2px;
  color: #4d4d4d;
}

.ranking .next_btn::after {
  top: calc(50% - 5px);
}

.swiper-slide.ranking_booth {
  position: relative;
}

.swiper-slide.ranking_booth::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  background-image: url(../../img/icons/ranking_icon.svg);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  width: 32px;
  height: 32px;
  z-index: 3;
  padding: 10px;
  background-color: #FFEDED;
  border-radius: 30px;
}


.ranking_icon_area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 12px 8px 12px;
  background: #FFEDED;
  border-radius: 40px;
  margin-left: 14px;
  width: 112px;
  white-space: nowrap;
}

.ranking_icon_txt p {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
}

/* /急上昇ランキング */

/* コンテント */
.parts_content{
  padding: 20px 0 0 50px;
  margin-top: 40px;
}



.content_ttl{
  font-weight: bold;
  font-size: 18px;
  /* margin-bottom: 20px; */
  margin-bottom: 24px;
  padding-left: 6px;
}
/* /コンテント */

/* 横画像のみスライド */
.only_img{
  width: 100%;
  position: relative;
  overflow: hidden;
}
.only_img .swiper-slide{
  width: 280px;
  height: 157px;
  /* margin-bottom: 8px; */
}
.only_img .panel{
  width: 280px;
  height: 157px;
}

/* /横画像のみスライド */

/* ロゴスライド */
.logos{
  width: 100%;
  position: relative;
  /* overflow: hidden; */
  overflow: initial;
  padding-top: 5px;
  margin-top: -5px;
  padding-left: 6px;
}
.logos .swiper-wrapper{
  width: 100%;
}
.logos .swiper-slide{
  width: 131px;
  height: auto;
  margin-bottom: 7px;
}
.logos .swiper-slide a {
  height: 100%;
  display: block;
}

.logos .panel{
  width: 131px;
  height: 100%;
  min-height: 156px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
}
.logos .panel .thumbnail{
  width: 80px;
  height: 80px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 0 auto;
}
.logos .panel .thumbnail img{
  display: none;
}
.logos .panel img{
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 12px;
}
.logos .panel .company_name{
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  line-height: 15.6px;

  height: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* /ロゴスライド */

/* あなたにオススメのセミナー */
.your_recommended .panel img{
  width: 280px;
  height: 157px;
  object-fit: cover;
}
.your_recommended .panel .thumbnail{
  width: 280px;
  height: 157px;
  background-size: cover;
  background-position: center;
}
/* /あなたにオススメのセミナー */

/* ピッチから企業を探す */
.pitch_serch.parts_content {
  margin-top: 26px;
}

.pitch_serch .content_ttl {
  margin-bottom: 20px;
}

.pitch_serch {
  width: 100%;
}
.p_s_swiper{
  overflow: hidden;
}
.pitch_serch .swiper-wrapper{
  width: 100%;
}
.pitch_serch .swiper-slide{
  position: relative;
  height: auto;
  width: 208px;
  z-index: 2;

}
.sli_disno,
.pitch_serch .company_name .btns{
  display: none;
}
.pitch_serch .panel{
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  height: auto;
  box-shadow: none;
}
.pitch_serch{
  height: auto;
}
.pitch_serch .swiper-container{
  overflow: initial;
  height: auto;
  padding: 0;
  margin: 0;
}
.pitch_serch .panel .video_cnt{
  min-height: 370px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  height: 370px;
}
.pitch_serch .panel video{
  border-radius: 10px;
}
.panel_inner .booth_logo_img {
  width: 48px;
  height: 48px;
  border: 1px solid #F2F2F4;
  border-radius: 50%;
  margin-right:0px;
  overflow: hidden;
}

.panel_inner .imgs {
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 50%;
}

.pitch_serch .sub_info .cmp_name{
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  text-decoration: none;
  width: calc(100% - 44px);
}

.pitch_serch .sub_info .flex_area{
    flex-wrap: nowrap;
    align-items: center;

}
.pitch_serch .prev_btn,.pitch_serch  .next_btn{
  /* cursor: default; */
  width: 140px;
}

.pitch_serch .prev_btn:after{
  left: 80px;
}

.pitch_serch .prev_btn {
  left: -51px;
  width: 235px;
}

/* PC版 768px以上に適応 */
@media screen and (min-width: 768px) {
  .pitch_mdl .sli_disno{
    display: block;
  }

}
@media screen and (max-width: 767px) {
.pitch_serch .swiper-slide{
box-shadow: 0px 2px 8px rgb(72 88 102 / 20%);


}
.pitch_serch .swiper-slide .company_name {
 padding: 12px 12px 20px;
}
}
.pitch_mdl{
  display: none;
  position: fixed;
  z-index: 222222;
  height: 100%;
  width: 100vw;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6)
}
.pitch_mdl .box video,
.pitch_mdl .box .video_cnt,
.pitch_mdl .box,
.pitch_mdl .box .box_inner{
  height: 100%;
  width: 100%;
}
.pitch_mdl .box .video_cnt{
  /* max-width: 405px; */
      width: 100%;
      /* min-width: 307px; */
      height: 100%;
      /* position: relative; */
      z-index: 0;
      /* overflow: hidden; */
      height: 100%;
      display: block;
      margin-left: 0;
      text-align: center;
      width: 100%;

}

.pitch_mdl .box .vertical_type{
  background: none !important;
  width: auto;
  height: 100%!important;
}
.pitch_mdl .box .wide_type{
  overflow: hidden;
  position: relative;
  max-width: 405px;
}
.pitch_mdl .box .wide_type video{
width: 100%;
}
.pitch_mdl .box .wide_type:before{
  content: '';
  background: inherit;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}
.pitch_mdl .box .box_inner{
  display: flex;
  align-items: center;
  padding: 0;
  /* text-align: center; */
  justify-content: center;
}
.pitch_mdl .box .panel_inner{
  display: flex;
      width: 100%;
      height: 100%;
      margin: 0 auto;
      position: relative;
      align-items: center;
      justify-content: center;
      min-width: 561px;
      position: absolute;
      margin: auto;
      left: 0;
      right: 0;
      max-width: 1168px;
      padding: 0px 104px;
  }
.pitch_mdl .company_name .btns{
  display: block;
}
.pitch_mdl .box .dtl{
  margin-top: 15px;
}
.pitch_mdl .box .dtl p{
  line-height: 150%;
}
.pitch_mdl .sec_inner{
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* バー周り何か進捗あれば復活 */
/* .pitch_mdl .sec_inner:before,
.pitch_mdl .sec_inner:after{
  content: "";
  height: 25px;
  display: block;
  width: 100%;
  background: #000;
  position: absolute;
  left: 0;
  z-index: 2;

}
.pitch_mdl .sec_inner:before{
  top: 0;
}
.pitch_mdl .sec_inner:after{
  bottom: 0;
} */
.pitch_mdl .sec_inner .close_area{
     position: absolute;
     left: 24px;
     top:24px;
     z-index: 222;

}
.pitch_mdl .bgs{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}
.pitch_mdl .bgs::before {
    content: '';
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    background-image: url(../../img/common/loading.png);
    background-repeat: no-repeat;
    background-size: 100%;
    opacity: 0;
    animation: loading 800ms infinite linear;
}

.pitch_mdl.loading_now .bgs::before {
  opacity: 1;
}

.pitch_mdl .sec_inner .close_area a{
  background: #000;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.pitch_mdl .company_name {
 color: #000;
 right: 0;
 width: 100%;
 background: #fff;
 max-width: 400px;
 border-radius: 10px;
 padding: 24px;
 margin-left: 30px;
 min-width: 230px;
 z-index: 1;
  }
 #web_booth .pitch_mdl .company_name{
  padding: 24px 24px 25px;
  }
.pitch_mdl .company_inner{
  width: 100%;
}
.pitch_mdl .sub_info {
      /* width: calc(100% - 112px); */
      width: 100%;
 }
.pitch_mdl .company_name .btns{
  width: 112px;
  height: 33px;
  border: 2px solid #0034BB;
  border-radius: 42px;
  background: #FFFFFF;
  color: #0034BB;
  text-align: center;
  margin-left: auto;
 margin-top: 13px;
 display: flex;
  align-items: center;
}
.pitch_mdl .company_name a{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;

}

.pitch_mdl .company_name .btns a{
  display: block;
  text-align: center;
  line-height: 100%;
  font-size: 12px;
  line-height: 130%;
  font-family: 'Noto Sans JP';
}
.pitch_mdl .company_name .btns object{
  display: block;
  width:100%;
}
.pitch_mdl .sub_info .flex_area{
    justify-content: start;
    align-items: center;
    width: 100%;
}
.pitch_mdl .panel_inner .cmp_name{
  margin-left: 8px;
  width: calc(100% - 56px);
  font-family: Noto Sans JP;
  font-weight: bold;
  font-size: 16px;
  line-height: 130%;
}
.pitch_mdl .overray{
  display: none;
}

.video_cnt{
  position: relative;
}
@media screen and (min-width: 768px) {
  .pitch_mdl .box .video_cnt{
    display: flex;
    align-items: center;
    height: 100% !important;
  }
  .pitch_mdl .box video{
  width: auto;
/*   height: 100%;
      width: auto;
      margin-left: auto; */
  }

}

@media screen and (max-width: 767px){
  .pitch_serch .sub_info .cmp_name{
    width: calc(100% - 0px);
  }
  .pitch_serch .panel .video_cnt{
    min-height: 308px;
    height: 308px;
  }
  .pitch_serch .swiper-slide{
   width: 173px;
  }
  .pitch_mdl .box .panel_inner{
    display: block;
  }
  .pitch_mdl .company_name {
  color: #000;
  right: 0;
  width: 100%;
  background: #fff;
  max-width: initial;
  border-radius: 0px;
  margin-left: 0;
  min-width: initial;
  position: absolute;
  left: 0;
  top: 0;
  height: 57px;
  padding: 0;

  }
  .pitch_mdl .sli_disno{
    display: none;
  }

  .pitch_mdl .company_inner {
      width: 100%;
      height: 100%;
  }
  .pitch_mdl .sub_info {
      width: 100%;
      display: flex;
      align-items: center;
      height: 100%;
  }
  .pitch_mdl .company_inner{
    width: 92.6%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
  }
  .pitch_mdl .panel_inner .cmp_name {
    margin-left: 35px;
    width: 175px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  .pitch_mdl .sec_inner .close_area a{
    background: #fff;
    width: 47px;
    height: 57px;
  }
  .pitch_mdl .sec_inner .close_area path{
    fill: #000;
  }
  .pitch_mdl .sec_inner .close_area {
      left: 0;
      top: 0;
  }
  .pitch_mdl .box .panel_inner {
      display: flex;
      width: 100%;
      height: 100%;
      margin: 0 auto;
      position: relative;
      align-items: center;
      justify-content: center;
      min-width: initial;
      position: static;
      margin: auto;
      left: 0;
      right: 0;
      max-width: initial;
      padding: 0;
  }
  .pitch_mdl .company_name .btns{
    margin-top: 0;
    width: 160px;
  }
  #web_booth .pitch_mdl .company_inner,
  #web_booth .pitch_mdl .sub_info .flex_area{
    justify-content: start;
  }
  #web_booth .pitch_mdl .panel_inner .cmp_name{
    text-align: left;
    width: 100%;
    margin-left: 15px;
  }


}

.pitch_serch .panel:hover{
  opacity: 1;
  cursor: pointer;
}
.pitch_serch .company_name{
  margin-top: 0;
  padding: 14px 0px 21px;
  }
.pitch_serch .company_name a{
  font-size: 12px;
      line-height: 1.6;
      font-weight: 700;
      text-decoration: none;
      display: block;
      width: 100%;
}
.pitch_serch .sub_info .flex_area,
.pitch_serch .company_name,
.pitch_serch .company_name .company_inner,
.pitch_serch .sub_info {
  width: 100%;
}

.pitch_serch .company_name a:hover{
  text-decoration: none;
}
.pitch_serch .video_cnt .overray {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 9px;
  transition: all 0.3s;
  justify-content: center;
  align-items: center;
}
.pitch_serch .video_cnt.playing .overray {
  opacity: 0;
}
.pitch_serch .video_cnt .overray img {
  width: 50px;
  height: 50px;
}
.pitch_serch .prev_btn:after,
.pitch_serch .next_btn:after{
  top: 184px;
}
/* /ピッチから企業を探す */

/* あなたにオススメのビジネスパーソン */
.business_person {
  width: 100%;
}
.b_p_swiper{
  overflow: hidden;
}
.business_person .swiper-slide{
  width: 280px;
  height: 264px;
}
.business_person .panel{
  width: 280px;
  height: 264px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.business_person .panel {
  padding: 24px;
}
.business_person .panel .icon{
  width: 110px;
  height: 110px;
  min-width: 110px;
  min-height: 110px;
  max-width: 110px;
  max-height: 110px;
  border-radius: 50%;
  overflow: hidden;
}
.business_person .panel .icon img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.business_person .panel .name{
  padding: 10px;
  font-size: 14px;
  font-weight: 900;
}
.business_person .panel .company{
  display: flex;
}
.business_person .panel .company .logo img{
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.business_person .panel .company .info{
  margin-left: 12px;
  padding-top: 3px;
}
.business_person .panel .company .info .role,
.business_person .panel .company .info .company_name{
  font-size: 12px;
  font-weight: bold;
}
.business_person .panel .company .info .where{
  margin-top: 10px;
  font-size: 12px;
  color: #717171;
}
/* /あなたにオススメのビジネスパーソン */

/* 閲覧した企業ブース */
.v_c_swiper{
  width: 100%;
}

.visited_company.parts_content {
  margin-bottom: 70px;
  margin-top: 4px;
}

.visited_company .swiper-slide{
  width: 208px;
  height: auto;
  margin-bottom: 7px;
}

.visited_company .swiper-slide a {
  display: block;
  height: 100%;
}

.visited_company .panel{
  width: 208px;
  height: 100%;
  min-height: 293px;
}
.visited_company .panel .panel_img{
  width: 208px;
  height: 115px;
}
.visited_company .panel .panel_img .img{
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.visited_company .panel .panel_img.is-logo{
  padding: 10px;
}
.visited_company .panel .panel_img.is-logo .img{
  background-size: contain;
}
.visited_company .panel .panel_detail .company {
  display: flex;
  padding: 12px;
  align-items: center;
}
.visited_company .panel .panel_detail .company .company_icon{
  width: 36px;
  height: 36px;
  border: 1px solid #F2F2F4;
  border-radius: 50%;
  margin-right: 8px;
  overflow: hidden;
}
.visited_company .panel .panel_detail .company .company_icon_img{
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.visited_company .panel .panel_detail .company .company_icon img{
  width: 34px;
  height: 34px;
  object-fit: cover;
  padding: 4px;
}
.visited_company .panel .panel_detail .company .company_name{
  max-width: 132px;
  font-size: 12px;
  font-weight: bold;
  margin-top: 5px;
}
.visited_company .panel .panel_detail .description{
  font-size: 12px;
  padding: 0 12px 20px;
  line-height: 19.2px;
  color: #4d4d4d;
}
/* /閲覧した企業ブース */

/* 同時開催の展示会 */
.concurrent_hold.parts_content{
  /* height: 517px; */
  height: auto;
  display: block;
  /* margin-top: 96px; */
  /* margin-top: 89px; */
  padding-top: 36px;
  margin-top: 20px;
  margin-bottom: 0;
  padding-bottom: 80px;
  width: 100%;
}
.concurrent_hold.parts_content p{
  font-size: 16px;
  margin-bottom: 34px;
  line-height: 180%;
  padding-left: 6px;
}
.concurrent_hold.parts_content .content_ttl {
  line-height: 130%;
  margin-bottom: 4px;
  line-height: 180%;
  font-weight: 600;
}


.c_h_swiper,
.c_h_swiper .swiper-wrapper{
  width: 100%;
  padding: 5px 0 10px 2px;
}
.c_h_swiper .swiper-slide{
  width: 302px;
  height: auto;
}
.concurrent_hold.parts_content .panel{
  width: 302px;
  /* height: 329px; */
  height: 100%;
  padding: 32px 24px;
  position: relative;
}



.concurrent_hold.parts_content .panel:hover{
  opacity: 1;
}
.concurrent_hold.parts_content .panel_ttl{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 24px;
}
.concurrent_hold.parts_content .panel .overview{
  font-size: 14px;
  /* line-height: 21px; */
  line-height: 180%;
  color: #333;
  margin-bottom: 57px;
}
.concurrent_hold.parts_content .panel .in_btn{
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 32px;
  left: 0;
}
.concurrent_hold.parts_content .panel .in_btn a{
  font-size: 16px;
  color: #fff;
  background: #0034BB;
  border-radius: 33px;
  width: 178px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* position: absolute;
  bottom: 32px; */
  z-index: 50;
  font-weight: 600;
}
.concurrent_hold.parts_content .panel .in_btn a:hover{
  opacity: 0.6;
}
/* /同時開催の展示会 */

/* /メインコンテンツ */


/* 関連企業ブース */
.same_category_swiper{
  width: 100%;
}

.same_category_swiper.parts_content {
  margin-bottom: 80px;
}

.same_category_swiper .swiper-slide{
  width: 208px;
  height: auto;
  margin-bottom: 7px;
}

.same_category_swiper .swiper-slide a {
  display: block;
  height: 100%;
}

.same_category_swiper .panel{
  width: 208px;
  height: 100%;
  min-height: 293px;
}
.same_category_swiper .panel .panel_img{
  width: 208px;
  height: 115px;
}
.same_category_swiper .panel .panel_img .img{
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.same_category_swiper .panel .panel_img.is-logo{
  padding: 10px;
}
.same_category_swiper .panel .panel_img.is-logo .img{
  background-size: contain;
}
.same_category_swiper .panel .panel_detail .company {
  display: flex;
  padding: 12px;
  align-items: center;
}
.same_category_swiper .panel .panel_detail .company .company_icon{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 8px;
  border: 1px solid #f3f3f3;
  padding: 5px;
}
.same_category_swiper .panel .panel_detail .company .company_icon_img{
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.same_category_swiper .panel .panel_detail .company .company_icon img{
  width: 34px;
  height: 34px;
  object-fit: cover;
  padding: 4px;
}
.same_category_swiper .panel .panel_detail .company .company_name{
  max-width: 132px;
  font-size: 12px;
  font-weight: bold;
  margin-top: 5px;
}
.same_category_swiper .panel .panel_detail .description{
  font-size: 12px;
  padding: 0 12px 20px;
  line-height: 19.2px;
  color: #4d4d4d;
}
/* /閲覧した企業ブース */

/* v18.1 topスポンサー枠 */
.PR {
  font-weight: 700;
  font-size: 10px;
  line-height: 100%;
  color: #717171;
  border-width: 1px;
  border-color: #717171;
  border-style: solid;
  padding: 4px 6px;
  border-radius: 2px;
  margin-left: 8px;
}

#slider {
  padding: 40px 0 40px 0px;
  background-color: #ffffff;
  min-height: unset;
}

#slider.smartphone {
  padding-bottom: 48px;
}

#slider.ranking .prev_btn::before {
  background: linear-gradient(to left, rgba(255, 250, 244, 0), #ffffff)
}

#slider.ranking .next_btn::before {
  background: linear-gradient(to right, rgba(255, 250, 244, 0), #ffffff);
}

#slider.ranking .prev_btn.hidden,
#slider.ranking .next_btn.hidden {
  display: none;
}

#slider.ranking .swiper-slide {
  margin-bottom: 0;
}


#slider .ranking_ttl {
  /* padding: 0 16px; */
  align-items: center;
  line-height: 130%;
  margin-bottom: 24px;
  margin-left: 56px;
}

.fist_item {
  margin-left: 48px;
}

#slider .swiper-container {
  padding-left: -8px;
}

#slider .panel {
  width: 100%;
}

#slider .panel .panel_img {
  width: 100%;
  overflow: hidden;
}

.panel_img_baner {
  border-radius: 5px;
}

.add_padding_only_item {
  padding: 26px 11px;
}
#slider .ranking .panel {
  height: unset;
}

#slider .panel .panel_detail {
  padding: 12px 12px 20px;
}

#slider .panel .panel_detail .company {
  padding: 0 0 12px;
}

#slider .panel .panel_detail .company .company_icon {
  background-size: 100% 100%;
}

#slider .panel .panel_img .img {
  background-size: 100% 100%;
}

#slider .panel .panel_img .img_movie {
  display: none;
}

#slider .panel .panel_detail .company i {
  display: flex;
  align-items: center;
}

#slider .panel .panel_detail .company .company_name {
  font-weight: 600;
  line-height: 150%;
}

#slider .panel .panel_detail .description {
  padding: 0;
  font-weight: 400;
  line-height: 160%;
}

#slider .panel.add_padding_only_item .panel_img {
  padding-bottom: 3px;
}

#slider .panel.add_padding_only_item .panel_img .img {
  width: 490px;
  border-radius: 7px;
  float: left;
}

#slider .panel.add_padding_only_item .panel_img .img_movie {
  display: block;
  width: 152px;
  height: 100%;
  float: right;
}

#slider .panel.add_padding_only_item .panel_detail {
  padding: 11px 0 0 15px;
}

#slider .panel.add_padding_only_item .panel_detail .company {
  padding-bottom: 0;
  align-items: unset;
}

#slider .panel.add_padding_only_item .panel_detail .company .company_icon {
  width: 40px;
  height: 40px;
  margin-right: 16px;
}

#slider .panel.add_padding_only_item .panel_detail .company .company_name {
  margin-top: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  color: #121212;
  max-width: unset;
}

#slider .panel.add_padding_only_item .panel_detail .description {
  font-size: 12px;
  color: #717171;
  line-height: 150%;
  margin-left: 56px;
}

@media screen and (min-width: 768px) {
  /* width */
  .sponsor_count_1 #sponsor .swiper-slide,
  .sponsor_count_2 #sponsor .swiper-slide{
    width: 680px;
  }

  .sponsor_count_3 #sponsor .swiper-slide{
    width: 306px;
  }

  /* heightImage */
  .sponsor_count_1 #sponsor.panel_img,
  .sponsor_count_2 #sponsor .panel_img {
    height: 275px;
  }

  .sponsor_count_3 #sponsor .panel_img {
    height: 153px;
  }


  /* paddingBottomSlider */
  .sponsor_count_1 #sponsor,
  .sponsor_count_2 #sponsor {
    padding-bottom: 48px;
  }


}

/* v18.1 topスポンサー枠ここまで */

/* ======================================== SP版 768px未満に適応 ======================================== */
@media screen and (max-width: 767px) {
  .sp{
    display: block;
  }
  .pc{
    display: none;
  }
  /* swiper共通 */
  .swiper-wrapper {
    padding-left: 16px;
  }
  .prev_btn,
  .next_btn {
    pointer-events: none;
  }
  .prev_btn::before,
  .next_btn::before {
    width: 60px;
    background: none;
  }
  .prev_btn::after,
  .next_btn::after{
    content: none;
    background: #fff;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 2px 8px rgba(72, 88, 102, 0.2);
    border-radius: 50px;
    z-index: 50;
  }
  .prev_btn::after{
    background: url(../../img/top/btn_prev.svg) center no-repeat #fff;
    background-size: 25px 25px;
    left: 10px;
  }
  .next_btn::after{
    background: url(../../img/top/btn_next.svg) center no-repeat #fff;
    background-size: 25px 25px;
    right: 10px;
  }
  .swiper-container-horizontal::after{
    width: 100px;
    height:100%;
  }
  .swiper-container-horizontal::after{
    opacity: 1;
    transition: .5s;
  }
  .swiper-container-horizontal:hover::after{
    opacity: 0;
  }

  .arrow_hidden .swiper-wrapper {
    /*
    justify-content: center;
    */
  }

  .arrow_hidden .swiper-slide:last-child {
    margin-right: 0!important;
  }
  /* /swiper共通 */


  .ch_ttl{
    font-size: 14px;
    font-weight: bold;
    padding: 0 10px;
    min-width: calc(5em + 20px);
  }
  .ch_swiper .swiper-slide a{
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid #e5e5e5;
    height: 40px;
    width: 100%;
    padding: 5px;
  }
  .ch_swiper .next_btn.btn_min{
    background: url(../../img/top/btn_next.svg) center no-repeat transparent;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    box-shadow: none;
    right: 5px;
  }
  .concurrent_hold .swiper-container-horizontal::after{
    opacity: 1;
  }
  /* /ヘッダー */

  /* コンテント */
  .parts_content{
    padding: 20px 0 0 0px;
    /* margin-top: 20px; */
    /* margin-top: 36px; */
    margin-top: 40px;
  }

  .content_ttl {
    padding: 0 22px;
  }

  .concurrent_hold.parts_content {
    /* margin-bottom: 36px; */
  }
  /* /コンテント */


  /* メインコンテンツ */
  #top .prev_btn::before{
    background: none;
    left: 0;
  }
  #top .next_btn::before{
    background: none;
    right: 0;
  }

  .main_contents{
    overflow: hidden;
    width: 100%;
    margin-right: 0;
    margin-right: 0;
  }
  .main_contents.timeline_lock{
    margin-right: 0;
  }
  .main_contents.close{
    margin-right: 0;
  }
  /* .panel */
  .panel::after{
    display: none;
  }
  .panel:hover{
    opacity: 1;
  }
  /* /.panel */

  .ranking.parts_content{
    margin-top: 0;
    padding-left: 0;
    padding-top: 44px;
  }

  .ranking_ttl {
    /* padding: 0 22px; */
    padding: 0 25px;
    align-items: center;
    margin-bottom: 4px;
  }
  .ranking .swiper-container.ranking_swiper {
    /* margin-top: 24px; */
    margin-top: 18px;
  }

  .ranking .ranking_swiper .swiper-slide {
    transform: translateX(-4px);
  }

  .concurrent_hold.parts_content p {
    padding: 0 22px;
    font-size: 14px;
    line-height: 150%;
  }

  .ranking .panel .panel_detail .description {
    padding: 0 12px 26px;
  }

  .ranking .prev_btn::before{
    background: none;
  }
  .ranking .next_btn::before{
    background: none;
  }

  /* /メインコンテンツ */

  /* 同時開催の展示会 */
  .c_h_swiper,
  .c_h_swiper .swiper-wrapper{
    padding: 5px 0 10px 12px;
  }

  .concurrent_hold.parts_content .panel {
    padding: 32px;
  }

  /* 追従フッター */
  /*
  // v16のためにとっておく
  .foot_fixed{
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    height: 59px;
    padding: 12px 15px;
    display: flex;
    z-index: 100;
  }
  .foot_fixed.lock{
    position: relative;
  }
  .foot_fixed.open .serch_engin{
    display: none;
  }
  .foot_fixed .serch_engin input{
    background: url(../../img/top/search_icon.svg) left 5px center no-repeat #f3f3f3;
    background-size: 16px 16px;
    padding: 0 25px;
    width: 260px;
    height: 35px;
    font-size: 16px;
    border-radius: 5px;
    border: 0 none;
  }
  .timeline_btn{
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: url(../../img/top/timeline_btn_close.svg) center top 21px no-repeat #0033BB;
    background-size: 60px 60px contain;
    position: absolute;
    right: 15px;
    bottom: 12px;
  }
  */
  /*  /追従フッター */

  /* フッター */
  /*
  // v16のためにとっておく
  footer{
    flex-direction: column;
    padding: 32px 26px 23px;
  }
  footer .page_top {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 36px;
  }
  footer .page_top a{
    color: #fff;
  }
  footer .logo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 26px;
  }
  footer .logo img{
    width: 137px;
  }
  footer .copyright{
    margin: 0 auto;
  }
  footer .foot_nav{
    display: none;
  }
  */
  /* /フッター */

  /* v18微調整 */
  .your_interesting.parts_content {
    margin-top: 34px;
  }
  .organizer_recommended.parts_content {
    margin-top: 28px;
  }
  .visited_company.parts_content {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  /* v18微調整ここまで */

  /* v18.1 topスポンサー枠 */
  #slider {
    padding: 40px 0 40px 0px;
  }

  .fist_item {
      margin-left: 12px;
  }

  #slider .ranking_ttl {
      margin-bottom: 17px;
      padding: 0;
      margin-left: 20px;
  }

  #slider.ranking .swiper-container.ranking_swiper {
      margin-top: -8px;
  }

  #slider.ranking .swiper-wrapper {
      padding-left: 0;
  }

  /* width */
  .sponsor_count_1 #sponsor .swiper-slide{
    width: calc(100% - 20px);
  }

  .sponsor_count_2 #sponsor .swiper-slide,
  .sponsor_count_3 #sponsor .swiper-slide,
  .sponsor_count_4 #sponsor .swiper-slide,
  .sponsor_count_5 #sponsor .swiper-slide {
    width: 208px;
  }

  /* heightImage */
  .sponsor_count_1 #sponsor.panel_img {
    height: 185.22px;
  }

  /* paddingBottomSlider */
  #slider #sponsor {
    padding-bottom: 40px;
  }


  /* v18.1 topスポンサー枠ここまで */
}