@charset "UTF-8";

/* ==========================================================
timetable
========================================================== */
/* sitenaviスタイル上書き */
body.is-fixed {
  padding-top: 0;
}
/* sticky有効化するためにoverflowをvisibleに変更 */
.wrapper {
  overflow: visible;
}
/* マージン相殺回避のためにoverflowをvisibleに変更 */
.section-hero {
  overflow: hidden;
}
/* セクションタイトルスタイル上書き */
.section-title-box {
    & .section-title-set {
        .section-desc {
          max-width: none;
        }
    }
}
.timetable-set {
  position: relative;
  width: 100%;
  border: solid 2px var(--gr-250);
  border-radius: 20px;

  .timetable-title {
    display: block;
    position: sticky;
    top: 80px;
    border-radius: 20px 20px 0 0;
  }
  .timetable-body {
    display: block;
    width: 100%;
    border-radius: 0 0 20px 20px;
  }

  @media screen and (max-width: 768px) {
    border-radius: 8px;

    .timetable-title {
      top: 70px;
      border-radius: 8px 8px 0 0;
    }

    .timetable-body {
      border-radius: 0 0 8px 8px;
    }
  }
}
.section-booths {
  background: url(/facetofes/2026/img/timetable/timetable-booths-back.png) center top / cover no-repeat;
  padding: 64px 0 150px 0;
  overflow: hidden;

  @media screen and (max-width: 768px) {
    padding: 0 0 60px 0;
  }
}
.hall-set {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;

  > .item {
    width: 110px;
    height: auto;

    @media screen and (max-width: 768px) {
      width: 80px;

    }
  }
}
.booths-loop {
  .card.booth {
    display: block;
    flex-shrink: 0;
    width: 360px;
    height: 500px;
    position: relative;
    transition-property: transform;
    margin: 0 20px;
  }
  @media screen and (max-width: 768px) {
    .card.booth {
      width: 280px;
      height: 440px;
      margin: 0 10px;
    }

  }
}

.meetup-cafe {
  position: relative;
  width: 100%;
  background: #FFEECA url(/facetofes/2026/img/timetable/meetup-cafe-back.png) center center / 100% 100% no-repeat;
  border-radius: 20px;
  padding: 60px;
  margin-top: 100px;

  &::before {
    content: "";
    position: absolute;
    display: block;
    width: 100px;
    height: 100px;
    top: -10px;
    right: 24px;
    background: url(/facetofes/2026/img/timetable/meetup-cafe-deco-1.png) center center / contain no-repeat;

    @media screen and (max-width: 768px) {
      width: 60px;
      height: 60px;
      top: 40px;
      right: -14px;
    }
  }
  &::after {
    content: "";
    position: absolute;
    display: block;
    width: 420px;
    height: 420px;
    bottom: -100px;
    left: -240px;
    background: url(/facetofes/2026/img/timetable/meetup-cafe-deco-2.png) center center / contain no-repeat;

    @media screen and (max-width: 768px) {
      display: none;

    }
  }
  @media screen and (max-width: 768px) {
    margin-top: 40px;
    padding: 20px;
    background-image: url(/facetofes/2026/img/timetable/timetable-booths-back-sp.png);

  }
  .cafe-title {
    position: absolute;
    display: block;
    width: 500px;
    height: auto;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);

    @media screen and (max-width: 768px) {
      width: 320px;

    }
  }

  .cafe-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;

    > .item {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 340px;
      min-height: 230px;
      text-align: center;
      background: url(/facetofes/2026/img/timetable/meetup-cafe-list-back.png) center center / contain no-repeat;
      padding: 16px;

      .cafe-time {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        font-family: var(--inter);
        font-size: 18px;
        font-weight: bold;
        color: #fff;
        line-height: 1;
        white-space: nowrap;
        padding: 8px 16px;
        background-color: var(--pa-600);
        border-radius: 30px;
      }
      .cafe-time.free {
        background-color: #fff;
        border: solid 2px var(--pa-600);
        color: var(--pa-600);
      }
      .cafe-desc {
        font-size: 18px;
        font-weight: bold;
      }

    }
    > .mentaro {
      position: absolute;
      bottom: 0;
      right: 20px;
      width: 160px;
      height: auto;

      @media screen and (max-width: 768px) {
        width: 100px;
        right: -16px;
      }
    }
  }
}
/* ガイドセクション */
.section-guide {
  background-image: url("/facetofes/2026/img/icon/icon-round.svg"), url("/facetofes/2026/img/icon/icon-sankaku.svg"), linear-gradient(180deg, var(--white) 30%, var(--blue-accent) 100%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position:
    right 7% top 18%,
    left 7% bottom 7%,
    center center;
  background-size:
    36px 36px,
    44px 46px,
    100% 100%;
  @media screen and (max-width: 768px) {
    background-image: url("/facetofes/2026/img/icon/icon-round.svg"), url("/facetofes/2026/img/icon/icon-sankaku.svg"), linear-gradient(180deg, var(--white) 20%, var(--blue-accent) 100%);
    background-position:
      right 7% top 20%,
      left 7% bottom 2%,
      center bottom;
    background-size:
      28px 28px,
      32px 34px,
      100% 100%;
  }
}
/* モーダル上書き */
.speaker-modal-contents .session-info .text-link {
    &.program {
        display: inherit;
    }
    &.timetable {
        display: none;
    }
}
