@charset "UTF-8";
/*TAB*/
.schedule-tabs {margin: 120px auto 0;}

.schedule-tabs__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  width: min(680px, calc(100% - 40px));
  margin: 0 auto 170px;
  padding: 6px;

  /*background: #1a2b41;*/
  background: rgba(235, 246, 255, .1);
  border-radius: 999px;
}

.schedule-tab {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;

  min-height: 74px;
  padding: 10px 24px;

  color:#BFBFBF;
  background: transparent;
  border: 0;
  border-radius: 999px;

  font: inherit;
  cursor: pointer;
}
.schedule-tab:hover{
  color: #fff;
}

.schedule-tab[aria-selected="true"] {
  color: #fff;
  background: #0076D6;
}

.schedule-tab__day {
  font-size: 26px;
  font-weight: 500 !important;
      display: flex;
    justify-content: center;
    align-items: center;
}

.schedule-tab__date {
  font-size: 46px;
  font-weight: 500 !important;
}

.schedule-tab__week {
  font-size: 20px;
  font-weight: 500 !important;
}

.schedule-tab:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.schedule-panel{padding: 0 0 0 6%;}
.schedule-panel[hidden] {
  display: none;
}

/**/

.schedule-scroll {
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  /*background: #03152f;*/
  background: transparent;
}
/*
 * マウスでドラッグ可能であることを
 * カーソルで示します。
 */
@media (hover: hover) and (pointer: fine) {
  .schedule-scroll.is-mouse-draggable {
    cursor: grab;
  }

  /*
   * ボタンとリンクは通常の操作対象であることを示します。
   */
  .schedule-scroll.is-mouse-draggable
    :is(
      a[href],
      button,
      [role="button"],
      [role="link"]
    ) {
    cursor: pointer;
  }

  .schedule-scroll.is-dragging {
    cursor: grabbing;
    -webkit-user-select: none;
    user-select: none;
  }

  .schedule-scroll.is-dragging * {
    cursor: grabbing !important;
  }
}

/*
 * キーボードでスクロール領域へ
 * フォーカスしたことを明示します。
 */
.schedule-frame {
  --time-width: 88px;
  --stage-width: clamp(600px, 34vw, 800px);

  /* スケジュールの高さ */
  --slot-height: 36px;
  --hour-height: 432px;

  /*
   * タイムテーブルは9:30開始なので、
   * 1時間ごとの背景を30分ぶん上へずらす
   */
  --hour-bg-offset: -216px;

  --schedule-head-height: 145px;

  display: grid;
  grid-template-columns:
    var(--time-width) minmax(0, 1fr);
  align-items: start;
  width: 100%;
  max-width: 100%;
}

/* 横スクロール領域から独立した固定時刻列 */
.schedule-time-column {
  position: relative;
  z-index: 10;
  width: var(--time-width);
  min-width: 0;
  color: #fff;
}

/* ステージヘッダーと同じ高さの空欄 */
.schedule-time-head {
  box-sizing: border-box;
  height: var(--schedule-head-height);
}

/* 時刻表示部分。行高はJSでステージ側と同じ値を設定します。 */
.schedule-time-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  visibility: hidden;
}

.schedule {
  width: max-content;
  max-width: 2086px;
  color: #fff;
}

/*
 * ヘッダーとタイムラインで、まったく同じ列幅を使用します。
 * 時刻列は横スクロール領域の外へ分離しているため、
 * ここでは3ステージ分だけを定義します。
 * ステージが4つならrepeat(4, ...)に変更します。
 */
.schedule__heads,
.schedule__grid {
  display: grid;
  grid-template-columns:
    repeat(3, var(--stage-width));
}
.schedule__grid {
  position: relative;
  isolation: isolate;
  visibility: hidden;
}

.schedule-frame.is-ready .schedule__grid,
.schedule-frame.is-ready .schedule-time-grid {
  visibility: visible;
}

.schedule__heads {
  position: sticky;
  top: 0;
  z-index: 20;
}

.schedule__head {
  box-sizing: border-box;
  min-height: 145px;
  margin: 0;
  padding: 34px 20px;
  text-align: center;
  /*background-color: #123f4c;*/
  background-color:rgba(64 235 237 / 0.2);
}
.schedule__head:nth-child(1){ border-radius: 20px 0 0 0;}
.schedule__head:nth-child(2) { /*background: #282047;*/background-color:rgba(176 96 200 / 0.2);}
.schedule__head:nth-child(3) { /*background: #35172f;*/background-color:rgba(230 61 87 / 0.2); border-radius: 0 20px 0 0;}

.schedule__head span,
.schedule__head small {
  display: block;
  position: relative;
}

.schedule__head span {
  font-size: 40px;
  font-weight: 500;
      padding-bottom: .4em;
}
.schedule__head span::after{
  content: "";
    display: block;
    width: 80px;
    height: 0.04em;
    background: #299899;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 0;
}
.schedule__head#day1-stage-sub span::after,
.schedule__head#day2-stage-sub span::after{background: #B060C8;}

.schedule__head#day1-stage-workshop span::after,
.schedule__head#day2-stage-workshop span::after{background: #99293A;}

.schedule__head small {
  margin-top: 20px;
  font-size: 15px;
}

/* 行数はJSから設定します */
.schedule__grid {
  position: relative;
  isolation: isolate;
}

/* 各ステージの背景 */
.schedule__track {
  z-index: 0;
  min-width: 0;

  /*
   * 1時間ごとに濃淡を交互にしています。
   * 横線自体はJSで別途配置します。
   */
  background-image:
    repeating-linear-gradient(
      to bottom,
      rgb(255 255 255 / 0.02) 0,
      rgb(255 255 255 / 0.02) var(--hour-height),
      rgb(255 255 255 / 0.1) var(--hour-height),
      rgb(255 255 255 / 0.1)
        calc(var(--hour-height) + var(--hour-height))
    );
    background-position: 0 var(--hour-bg-offset);
}

.schedule__track--main {
  /*background-color: #123f4c;*/
  background-color:rgb(64 235 237 / 0.2);
}

.schedule__track--sub {
  /*background-color: #282047;*/
  background-color:rgb(176 96 200 / 0.2);
}

.schedule__track--workshop {
  /*background: #35172f;*/background-color:rgb(230 61 87 / 0.2);
}


/* 1時間ごとの横線 */
.schedule__hour-line {
  z-index: 1;
  align-self: start;
  height: 1px;
  /*border-top: 1px solid rgb(255 255 255 / 0.14);*/
  pointer-events: none;
}

/* 左側の時刻 */
.schedule__time-label {
  z-index: 5;
  align-self: start;
  box-sizing: border-box;
  width: 100%;
  padding: 0 14px;
  font-weight: 700;
  text-align: right;
  background: transparent;
  transform: translateY(-50%);
}

.schedule__time-label.is-first {
  /*transform: none;*/
}


/*
 * スクリーンリーダー用のステージ見出し。
 * 見た目には表示せず、アクセシビリティツリーには残します。
 * display:none / visibility:hidden は使用しません。
 */
.schedule__stage-heading-a11y {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(100%);
  white-space: nowrap;
  border: 0;
}



/* イベントカード */
.program {
  position: relative;
  z-index: 3;
  box-sizing: border-box;

  /*
   * 横方向の余白のみ付けます。
   * margin-blockを付けると、開始・終了位置が時刻線からずれます。
   */
  margin-inline: 14px;
  min-width: 0;
  min-height: 0;
  padding: 18px 22px;

  overflow: hidden;
  /*overflow: auto;*/
  color: #111744;
  background: #fff;
  border-radius: 7px;
}

.program__time {
  display: block;
  /*margin-bottom: 8px;
  font-weight: 700;*/
}

.program__title {
  margin: 0;
  font-size: 16px;
}

.program__description {
  margin: 2px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

.program__detail {
  position: absolute;
  right: 14px;
  bottom: 14px;

  width: 32px;
  height: 32px;
  padding: 0;

  color: #17176a;
  background: #f2f3f8;
  border: 0;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.program--all {
  z-index: 2;
  text-align: center;
  margin-inline: unset;
  /*background: #0d1930;*/
  background:rgb(12 21 40 / 0.8);
  /*background:rgb(235 246 255 / 0.05);*/
  color: #fff;
  border-radius: unset;
}

.program__stage {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
}
.program.is-card-clickable {
  cursor: pointer;
}

@media screen and (min-width: 0px) and (max-width: 767.98px){

  /*TAb*/
  .schedule-tabs__list {
    width: 85%;
        margin-bottom: 10%;
        padding: 1vw;
  }


.schedule-panel{padding: 0 0 0 0;}

.schedule__head:nth-child(1){ border-radius: 4vw 0 0 0;}
.schedule__head:nth-child(2) { /*background: #282047;*/background:rgb(176 96 200 / 0.2);}
.schedule__head:nth-child(3) { /*background: #35172f;*/background:rgb(230 61 87 / 0.2); border-radius: 0 4vw 0 0;}



.schedule-tab {
    display: block;
    align-items: baseline;
    
    min-height: unset;
    padding: .6em;


}

.schedule-tab__day {  font-size: 4.4vw; display: block; line-height: 1;        margin-bottom: .2em;}
.schedule-tab__date {  font-size: 8vw; line-height: 8vw;}
.schedule-tab__week {  font-size: 4vw;}

/**/
  .schedule-frame {
    --time-width: 10vw;
    --stage-width: 75vw;

    --slot-height: 5.6vw;
    --hour-height: 67.2vw;

    /* 30分ぶん */
    --hour-bg-offset: -33.6vw;

    --schedule-head-height: 100px;
  }

  .schedule__head {
    min-height: 100px;
            padding: 5% 2%;
  }

  .schedule__head span {
    font-size: 5vw;
  }

  .schedule__head small {
    margin-top: 1em;
    font-size: 3vw;
  }

  .program {
          margin-inline: .5em;
        padding: 5%;
  }

  .schedule__time-label {
    padding-inline: 1.2vw;
    font-size: 2.6vw;
  }
}

/*各講演のレイアウト*/
.schedule-panel .program{
color: #222;
text-align: left;
}
.schedule-panel .program .tag{
font-weight: bold;
    color: #fff;
    background: #0E0D6A;
    padding: .5em;
    border-radius: 4px;
    display: inline-block;
    position: absolute;
    top: 1em;
    right: 1em;
    line-height: 1.2;
    text-align: center;
}
.schedule-panel .program .boxTime{
  font-size: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #0E0D6A;
  margin: 0 0 0.4em 0;
  line-height: 1;
}
.schedule-panel .program.type01 .boxTime{  margin: 0 0 1.8em 0;}
.schedule-panel .program .boxTime .program__time{margin-bottom: 0; font-weight: 500 !important;}
.schedule-panel .program .boxTime .program__time.end{font-weight: 500 !important;}
.schedule-panel .program .boxTime span{font-weight: 500 !important;margin: 0 .2em 0;}


.schedule-panel .program h3.program__title{font-weight: bold; margin: 0;}
.schedule-panel .program.type01 h3.program__title{font-size: 28px; font-weight: bold; margin: 0;}
.schedule-panel .program .program__description{ font-size: 14px;}
.schedule-panel .program .program__description.note{color: #222 !important;}
.schedule-panel .program .dlSpeaker{
  margin: 1em 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: start;
}

.schedule-panel .program .dlSpeaker > dt{width: 16%; margin-bottom: .4em;}
.schedule-panel .program .dlSpeaker > dd{width: 84%; margin-bottom: .4em;}

.schedule-panel .program .dlSpeaker.name5 > dt{ width: 20%;}
.schedule-panel .program .dlSpeaker.name5 > dd{width: 80%; line-height: 1.6;}

.schedule-panel .program.type01 .boxSpeaker{ margin: 30px 0 0;}
.schedule-panel .program.type02 .boxSpeaker{ margin: 20px 0 0;}

.schedule-panel .program.type01 .boxSpeaker .ulSpeaker > li:not(:last-child){margin-bottom: 20px;}
.schedule-panel .program.type01 .boxSpeaker .wrapFlex .speaker__img{width:260px; line-height: 0;}
.schedule-panel .program.type01 .boxSpeaker .wrapFlex .boxTxt{width: calc(100% - 280px);}


.schedule-panel .program.type01 .boxSpeaker .wrapFlex,
.schedule-panel .program.type02 .boxSpeaker .wrapFlex{display: flex; justify-content: space-between; align-items:start;}
.schedule-panel .program.type02 .boxSpeaker .wrapFlex .speaker__img{width:70px; line-height: 0;}
.schedule-panel .program.type01 .boxSpeaker .wrapFlex .speaker__img img,
.schedule-panel .program.type02 .boxSpeaker .wrapFlex .speaker__img img{width: 100%; height: auto; border-radius: 4px;}
.schedule-panel .program.type02 .boxSpeaker .wrapFlex .boxTxt{width: calc(100% - 85px);}
.schedule-panel .program.type01 .boxSpeaker .wrapFlex .speaker__jobtitle,
.schedule-panel .program.type02 .boxSpeaker .wrapFlex .speaker__jobtitle{font-size: 12px; margin-bottom: .4em;}
.schedule-panel .program.type01 .boxSpeaker .wrapFlex .speaker__name,
.schedule-panel .program.type02 .boxSpeaker .wrapFlex .speaker__name{font-size: 14px; font-weight: bold;}

.schedule-panel .program .speaker__jobtitle{font-size: 12px;}
.schedule-panel .program .speaker__name{font-size: 14px; font-weight: bold;}
.schedule-panel .program .program__img{ margin: 20px 0 0;}
.schedule-panel .program .program__img img{width: 100%; height: auto; border-radius: 4px;}
.schedule-panel .program .program__detail{}

/*
.schedule-panel .program.program--all{
  display: flex;
  justify-content: center;
  align-items: center;  
  color: #fff;
  text-align: center;
}
.schedule-panel .program.program--all .innerProgramAll{}*/
.schedule-panel .program.program--all {
  position: relative;
  display: block;

  color: #fff;
  text-align: center;
}

.schedule-panel
  .program.program--all
  .innerProgramAll {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;

  width: max-content;
  max-width: calc(100% - 24px);

  text-align: center;
  transform: translate(-50%, -50%);

  /*
   * JSで初期位置が決まる前の表示ずれを防止
   */
  visibility: hidden;
}

.schedule-panel
  .program.program--all.is-center-ready
  .innerProgramAll {
  visibility: visible;
}
.schedule-panel .program.program--all .program__time{line-height: 1; font-size: 17px;  font-weight: 500 !important; margin-bottom: .8em;}
.schedule-panel .program.program--all .program__title{font-size: 21px; font-weight: bold;}

@media screen and (min-width: 768px) and (max-width: 1000px){
}

@media screen and (min-width: 0px) and (max-width: 767.98px){

/*各講演のレイアウト*/
.schedule-tabs {
    margin: 15% auto 0;
}
.schedule-panel .program{
color: #222;
text-align: left;
}
.schedule-panel .program .tag{
font-weight: bold;
    color: #fff;
    background: #0E0D6A;
    padding: .5em;
    border-radius: .8vw;
    display: inline-block;
    position: absolute;
    top: .5em;
    right: .5em;
    line-height: 1.2;
    text-align: center;
}
.schedule-panel .program .boxTime{
  font-size: 3.4vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #0E0D6A;
  margin: 0 0 0.4em 0;
  line-height: 1;
}
.schedule-panel .program.type01 .boxTime,.schedule-panel .program.type02  .boxTime{  margin: 0 0 0.8em 0;}
.schedule-panel .program .boxTime .program__time{margin-bottom: 0; font-weight: 500 !important;}
.schedule-panel .program .boxTime .program__time.end{font-weight: 500 !important;}
.schedule-panel .program .boxTime span{font-weight: 500 !important;margin: 0 .2em 0;}


.schedule-panel .program h3.program__title{font-weight: bold; margin: 0;}
.schedule-panel .program.type01 h3.program__title{font-size: 5.4vw; font-weight: bold; margin: 0;}
.schedule-panel .program .program__description{ font-size: 3vw;}
.schedule-panel .program .program__description.note{    font-size: 2.4vw !important;    line-height: 1.2; color: #222 !important;}

.schedule-panel .program:not(.type01) .dlSpeaker,
.schedule-panel .program:not(.type01) .boxSpeaker{display: none;}

.schedule-panel .program.type01 .boxSpeaker{ margin: 5% 0 0;}
.schedule-panel .program.type01 .boxSpeaker .wrapFlex{display: flex; justify-content: space-between; align-items:top;}
.schedule-panel .program.type01 .boxSpeaker .wrapFlex .speaker__img{display: none; width:50%; line-height: 0;}
.schedule-panel .program.type01 .boxSpeaker .wrapFlex .speaker__img img{width: 100%; height: auto; border-radius: .8vw;}
.schedule-panel .program.type01 .boxSpeaker .wrapFlex .boxTxt{width:100%;        padding-top: .5em;}
.schedule-panel .program.type01 .boxSpeaker .wrapFlex .speaker__jobtitle{font-size: 3vw; margin-bottom: .4em;}
.schedule-panel .program.type01 .boxSpeaker .wrapFlex .speaker__name{font-size: 3.2vw; font-weight: bold;}


.schedule-panel .program .speaker__jobtitle{font-size: 3vw;}
.schedule-panel .program .speaker__name{font-size: 3.2vw; font-weight: bold;}
.schedule-panel .program .program__img{ margin: 5% 0 0;}
.schedule-panel .program .program__img img{width: 100%; height: auto; border-radius: .8vw;}
.schedule-panel .program .program__detail{}


.schedule-panel .program.program--all .program__time{line-height: 1; font-size: 3.4vw;  font-weight: 500 !important; margin-bottom: .8em;}
.schedule-panel .program.program--all .program__title{font-size: 5vw; font-weight: bold;}
}
.schedule-scroll {
  overflow-x: auto;

  /* Firefox */
  scrollbar-width: none;

  /* 旧Edge / IE */
  -ms-overflow-style: none;
}

/* Chrome / Edge / Safari */
.schedule-scroll::-webkit-scrollbar {
  display: none;
}

.schedule-panel {
  position: relative;
  padding: 0 0 0 6%;
}

/*
 * タイムテーブルの横スクロール案内
 */
.schedule-scroll-guide {
  position: absolute;
  top: 45vh;
  left: 50%;
  z-index: 30;

  width: 160px;
  height: 160px;

  transform: translateX(-50%);

  pointer-events: none;
  user-select: none;

  opacity: 1;
  visibility: visible;

  transition:
    opacity .25s ease,
    visibility 0s linear 0s;
}

/*
 * 2つのSVGは同じ位置に重ねる
 */
.schedule-scroll-guide__icon {
  position: relative;
  display: block;

  width: 160px;
  height: 160px;

  background: rgba(3 20 51 / 0.9);
  border-radius: 8px;
}

.schedule-scroll-guide__arrow{
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 124px;
    height: 124px;
    transform: translate(-50%, -10%);
}
.schedule-scroll-guide__hand {
  position: absolute;
  top: 65%;
  left: 50%;
  display: block;
  width: 96px;
  height: 96px;
  transform: translate(-50%, -65%);
}

/*
 * 横スクロールが一度でも行われたら非表示
 */
.schedule-panel.is-scroll-guide-hidden
  .schedule-scroll-guide {
  opacity: 0;
  visibility: hidden;

  transition:
    opacity .25s ease,
    visibility 0s linear .25s;
}

/*
 * スクリーンリーダー用説明

.schedule-scroll-guide__a11y {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(100%);
  white-space: nowrap;
  border: 0;
} */

@media screen and (max-width: 767.98px) {
  .schedule-panel {
    padding: 0;
  }

  .schedule-scroll-guide {
    top: 33vh;
        width: 24vw;
        height: 24vw;
  }

  .schedule-scroll-guide__icon {
    width: 24vw;
    height: 24vw;
  }

  .schedule-scroll-guide__arrow {
    width: 18vw;
    height: 18vw;

  }
  .schedule-scroll-guide__hand {
    width: 16vw;
    height: 16vw;
    top: 68%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .schedule-scroll-guide {
    transition: none;
  }
}