@charset "utf-8";

.page-mv .btn-area {
  width: 322px;
  margin: 33px 48px 0 0;
}

.page-mv .btn-area a {
  display: block;
  transition: .3s;
}

.cont-area::after {
  background-position: right 0;
}

.cont-area::before {
  background-position: left 0 bottom -300px;
}

.sect-inner {
  width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.is-remove {
  display: none;
}

.speaker-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.speaker-item {
  border-radius: 0 0 40px 0;
  background: #fff;
  width: 49.5%;
  margin-bottom: 12px;
}

.speaker-item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #000;
  text-decoration: none;
  position: relative;
  padding: 30px 30px 35px 45px;
  cursor: pointer;
}

.speaker-item .session-type {
  position: absolute;
  top: 30px;
  right: 30px;
}

.speaker-item .name {
  display: flex;
  align-items: center;
}

.speaker-item .name figure {
  width: 120px;
  margin-right: 18px;
  flex-shrink: 0;
}

.speaker-item .name figure img {
  border-radius: 0 0 30px 0;
}

.speaker-item .name dt {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.speaker-item .name dt span {
  font-size: 2.3rem;
  font-weight: bold;
}

.speaker-item .name dd {
  font-size: 1.5rem;
  line-height: 1.5;
}

.speaker-item .session-tit {
  padding: 0;
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 15px 0 23px 0;
}


.empty {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 20px 0 60px;
  animation: tileFadeIn 1s forwards;
}

.empty em {
  font-family: "Poppins";
  font-weight: bold;
  font-size: 3rem;
}

.empty span {
  font-weight: bold;
  font-size: 1.6rem;
}


.bt-sort {
  position: fixed;
  top: 42%;
  right: 0;
  width: 40px;
  z-index: 1;
}

.bt-sort a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  background: #000;
  width: 100%;
  font-weight: bold;
  font-size: 1.4rem;
  writing-mode: vertical-rl;
  padding: 13px 0 13px;
  border-radius: 10px 0 0 10px;
  z-index: 1;
  border: 1px solid #9a9a9a;
  border-right: none;
}




/*  絞り込み
============================================================================= */
.sort-wrap {
  padding: 70px 55px;
  background: #fff;
  border-radius: 40px;
}

.sort-head {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 11px;
  width: 100%;
  margin-bottom: 45px;
}

.sort-head::before {
  content: "";
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #d9d9d9;
  border-radius: 60px;
}

.sort-ttl {
  font-size: 3rem;
  font-weight: bold;
}

.sort-clear {
  margin-left: 20px;
}

.sort-clear button {
  cursor: pointer;
  padding: 7px 14px 10px;
  border-radius: 3px;
  border: solid 1px #000;
  color: #000;
  margin-top: 1px;
}

.sort-session {
  flex-grow: 1;
  text-align: right;
  font-size: 1.6rem;
}

.sort-session em {
  margin-right: 7px;
  font-size: 3.6rem;
  font-weight: 600;
  font-family: "Poppins";
}

.sort-check dt {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 40px;
}

.sort-check dd {
  margin-top: 20px;
}

.sort-list {
  display: flex;
  flex-wrap: wrap;
  margin: -10px 0 0 -10px;
}

.sort-list li {
  margin: 10px 0 0 10px;
}

.sort-list__input {
  display: none;
}

.sort-list__label {
  cursor: pointer;
  display: block;
  padding: 8px 18.3px 10px;
  font-size: 1.6rem;
  border-radius: 3px;
  color: #fff;
  background: #b3b3b3;
  font-weight: 500;

}

.sort-list__input:checked+.sort-list__label {
  background: #000;
}

.sort-wrap .btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 310px;
  height: 63px;
  font-size: 1.6rem;
  color: #fff;
  border-radius: 80px;
  background: linear-gradient(to right, #015eea, #058bf5);
  cursor: pointer;
  text-decoration: none;
  z-index: 1;
  font-weight: 500;
  margin: 60px auto 0;
  transition: .3s;
  position: relative;
}

.sort-wrap .btn::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 16px;
  inset: 0 23px 0 auto;
  margin: auto;
  background: url(../img/ico_search.svg) 0 0 / contain no-repeat;

}

/* ----------------------------------------------------
hover
---------------------------------------------------- */
@media (hover: hover) {

  .speaker-item a,
  .bt-sort a,
  .sort-clear button,
  .conference-share li a {
    transition: 0.3s;
  }

  .speaker-item a:hover,
  .sort-clear button:hover,
  .conference-share li a:hover,
  .sort-wrap .btn:hover,
  .page-mv .btn-area a:hover,
  .speaker-item.pickup:hover {
    opacity: 0.7;
  }

  .speaker-item.pickup a:hover {
    opacity: 1;
  }

  .bt-sort a:hover {
    background: #444;
  }
}

/* ----------------------------------------------------
メディアクエリ設定 (smartPhone only)   0～768px
---------------------------------------------------- */
@media screen and (max-width: 768px) {
  .wapper {
    position: relative;
  }

  .content {
    overflow: hidden;
  }


  .page-mv .btn-area {
    width: 68.75vw;
    margin: 10vw auto 0;
  }

  .cont-area::after {
    top: 0;
    left: 0;
    height: 100%;
    background: url(../../timetable/img/bg_time_sp.webp) 0 0 / 100% auto repeat-y;
  }

  .cont-area::before {
    display: none;
  }

  .speaker-sect h1 {
    width: 61.4093vw;
  }

  .sect-inner {
    width: 100%;
    padding: 9.375vw 6.25vw 35vw;
  }


  .speaker-item {
    width: 100%;
    border-radius: 0 0 9.375vw 0;
    margin-bottom: 0;
  }

  .speaker-item+.speaker-item {
    margin-top: 3.125vw;
  }

  .speaker-item a {
    padding: 4.6875vw 4.6875vw 3.125vw !important;
  }

  .speaker-item .session-type {
    position: relative;
    top: auto;
    right: auto;
  }

  .speaker-item .name figure {
    width: 25vw;
    margin-right: 4.6875vw;
    align-self: flex-start;
  }

  .speaker-item .name figure img {
    border-radius: 0 0 4.6875vw 0;
  }

  .speaker-item .name dt {
    font-size: 3.4375vw;
    margin-bottom: 3vw;
  }

  .speaker-item .name dt span {
    font-size: 4.6875vw;
  }

  .speaker-item .name dd {
    font-size: 3.4375vw;
  }

  .speaker-item .session-tit {
    font-size: 3.75vw;
    margin: 2vw 0 4vw;
  }

  .empty {
    font-size: 4vw;
    padding: 1vw 0 6vw;
  }

  .empty em {
    font-size: 7vw;
  }

  .empty span {
    font-size: 3vw;
  }


  .bt-sort {
    position: absolute;
    top: initial;
    right: 3.125vw;
    width: 46.875vw;
  }

  .sort-fixed {
    position: fixed;
  }

  .bt-sort a {
    writing-mode: horizontal-tb;
    padding: 3.125vw 0;
    border-radius: 1.875vw 1.875vw 0 0;
    font-size: 3.75vw;
    text-align: center;
    font-weight: bold;
    border: 1px solid #9a9a9a;
    border-bottom: none;
  }


  /*  絞り込み
	============================================================================= */

  .sort-wrap {
    padding: 7.8125vw 4.6875vw 10.9375vw;
    border-radius: 6.25vw;
  }

  .sort-head {
    padding-bottom: 3.125vw;
    margin-bottom: 5.625vw;
  }

  .sort-head:before {
    height: 0.625vw;
    border-radius: 0;
  }

  .sort-ttl {
    font-size: 5.625vw;
  }

  .sort-clear {
    position: absolute;
    top: 13.75vw;
    left: 0;
    margin: 0;
  }

  .sort-clear button {
    font-size: 3.75vw;
    font-weight: 500;
    border-radius: 0.9375vw;
    padding: 3.125vw 3.90625vw;
    font-feature-settings: normal;
  }

  .sort-session {
    margin-bottom: -0.7vw;
    font-size: 3.4375vw;
  }

  .sort-session em {
    font-size: 6.875vw;
    position: relative;
    bottom: -0.5vw;
    margin-right: 0.8vw;
  }

  .sort-check {
    margin-top: 21.875vw;
  }

  .sort-check dt {
    margin-top: 4vw;
    font-size: 4.375vw;
  }

  .sort-check dd {
    margin-top: 3vw;
  }

  .sort-list {
    margin: 0;
  }

  .sort-list li {
    margin: 0 2vw 2vw 0;
  }

  .sort-list__label {
    font-size: 3.75vw;
    padding: 2vw 3.75vw;
    border-radius: 0.9375vw;
  }

  .sort-wrap .btn {
    width: 62.5vw;
    height: 13.75vw;
    font-size: 4.375vw;
    margin-top: 6.25vw;
  }

  .sort-wrap .btn::before {
    width: 3.4375vw;
    height: 3.75vw;
    right: 4.6875vw;
  }

  .f-bot .f-inner {
    padding-bottom: 20vw;
  }
}