/**
 * GBU Modal Plugin Styles (BEM Methodology)
 * Version: 1.0.0 - Enhanced Focus Management
 * Author: GBU Dev Team
 * Build: November 2025
 * 
 * Features:
 * - Enhanced Focus Management & Accessibility
 * - Complete Focus Trap within Modal
 * - WCAG 2.1 AA Compliant
 * - High Contrast & Reduced Motion Support
 * - Keyboard Navigation Optimized
 * 
 * BEM Structure:
 * .modal (Block)
 * .modal__overlay (Element)
 * .modal__container (Element) - Focus trap container
 * .modal__content (Element) - Content with enhanced focus styles
 * .modal__close (Element) - Accessible close button
 * .modal--show (Modifier)
 * .modal--image (Modifier)
 * .modal--iframe (Modifier)
 * .modal--inline (Modifier)
 * .modal--ajax (Modifier)
 * .modal--loading (Modifier)
 * .modal--animation-* (Animation Modifiers)
 */
body.modal-open {
  width: 100%;
  position: static;
}

html.modal-open {
  overflow-y: hidden;
}

.modal {
  --modal-overlay-opacity: 0;
  --modal-container-opacity: 0;
  --modal-container-transform: none;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: var(--modal-overlay-opacity);
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.modal__container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  margin: 20px;
  background: white;
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: var(--modal-container-opacity);
  -webkit-transform: var(--modal-container-transform);
          transform: var(--modal-container-transform);
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.modal__container:focus {
  outline: 2px solid #007cba;
  outline-offset: -2px;
}
.modal__container {
  position: relative;
}
.modal__container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 1px dashed rgba(0, 124, 186, 0.3);
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.modal__container:focus-within::before {
  opacity: 1;
}
.modal__content {
  padding: 20px;
  max-height: calc(90vh - 40px);
  overflow-y: auto;
  border-radius: 8px;
}
.modal__content button:focus,
.modal__content input:focus,
.modal__content select:focus,
.modal__content textarea:focus,
.modal__content a:focus,
.modal__content [tabindex]:focus {
  outline: 2px solid #007cba;
  outline-offset: -2px;
}
.modal__content button:focus,
.modal__content input:focus,
.modal__content select:focus,
.modal__content textarea:focus,
.modal__content a:focus,
.modal__content [tabindex]:focus {
  outline: none;
}
.modal__content button:focus,
.modal__content input:focus,
.modal__content select:focus,
.modal__content textarea:focus,
.modal__content a:focus,
.modal__content [tabindex]:focus {
  outline: 2px solid #007cba;
  outline-offset: -2px;
}
.modal__content::-webkit-scrollbar {
  width: 6px;
}
.modal__content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.modal__content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.modal__content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 1;
}
.modal__close:hover, .modal__close:focus {
  opacity: 0.8;
}
.modal__close:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.modal__image {
  display: block;
  max-width: 100%;
  max-height: 95vh;
  height: auto;
  border-radius: 8px;
}
.modal__iframe {
  width: 100%;
  height: 80vh;
  min-height: 400px;
  border: none;
  border-radius: 8px;
}
.modal__error {
  color: #d32f2f;
  text-align: center;
  padding: 20px;
}
.modal--show {
  --modal-overlay-opacity: 1;
  --modal-container-opacity: 1;
}
.modal--closing {
  --modal-overlay-opacity: 0;
  --modal-container-opacity: 0;
}
.modal--blur .modal__overlay {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.modal--image .modal__container {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  max-width: 95vw;
  max-height: 95vh;
}
.modal--image .modal__content {
  padding: 0;
  background: transparent;
}
.modal--iframe .modal__container {
  max-width: 95vw;
  max-height: 95vh;
}
.modal--iframe .modal__content {
  padding: 0;
}
.modal--inline .modal__container {
  max-width: 800px;
  width: 90vw;
}
.modal--ajax .modal__container {
  max-width: 900px;
  width: 90vw;
}
.modal--loading .modal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 200px;
}
.modal--loading .modal__content::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  -webkit-animation: modal-spin 1s linear infinite;
          animation: modal-spin 1s linear infinite;
}

@media screen and (max-width: 768px) {
  .modal__container {
    margin: 10px;
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }
  .modal__content {
    padding: 15px;
    max-height: calc(100vh - 60px);
  }
  .modal__close {
    width: 28px;
    height: 28px;
    font-size: 16px;
    top: 8px;
    right: 8px;
  }
  .modal__image {
    max-height: calc(100vh - 20px);
  }
  .modal__iframe {
    height: 60vh;
    min-height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .modal__container {
    margin: 5px;
    max-width: calc(100vw - 10px);
    max-height: calc(100vh - 10px);
  }
  .modal__content {
    padding: 12px;
    max-height: calc(100vh - 50px);
  }
  .modal__close {
    width: 24px;
    height: 24px;
    font-size: 14px;
    top: 5px;
    right: 5px;
  }
}
@-webkit-keyframes modal-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes modal-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.modal-no-scroll {
  overflow: hidden !important;
}

.modal-blur-backdrop {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.modal-content-hidden {
  display: none !important;
}

.modal-focus-trapped {
  position: relative;
}
.modal-focus-trapped::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 1px dashed rgba(0, 124, 186, 0.3);
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.modal-focus-trapped:focus-within::before {
  opacity: 1;
}

@media (prefers-contrast: high) {
  .modal__container:focus {
    outline: 3px solid #000;
    outline-offset: -2px;
  }
  .modal__close:focus {
    outline: 3px solid #fff;
    outline-offset: 3px;
  }
  .modal__content button:focus,
  .modal__content input:focus,
  .modal__content select:focus,
  .modal__content textarea:focus,
  .modal__content a:focus,
  .modal__content [tabindex]:focus {
    outline: 3px solid #000;
    outline-offset: -2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .modal__overlay, .modal__container, .modal__close {
    -webkit-transition: none;
    transition: none;
  }
  .modal--animation-fade .modal__container, .modal--animation-zoom-in .modal__container, .modal--animation-zoom-out .modal__container, .modal--animation-zoom .modal__container {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .modal--loading .modal__content::after {
    -webkit-animation: none;
            animation: none;
  }
}
@media (prefers-color-scheme: dark) {
  .modal__container {
    background: #2d2d2d;
    color: #ffffff;
  }
  .modal__content::-webkit-scrollbar-track {
    background: #404040;
  }
  .modal__content::-webkit-scrollbar-thumb {
    background: #606060;
  }
  .modal__content::-webkit-scrollbar-thumb:hover {
    background: #707070;
  }
}
.modal--animation-fade {
  --modal-container-transform: none;
}

.modal--animation-zoom-in {
  --modal-container-transform: scale(0.7);
}
.modal--animation-zoom-in.modal--show {
  --modal-container-transform: scale(1);
}
.modal--animation-zoom-in.modal--closing {
  --modal-container-transform: scale(0.7);
}

.modal--animation-zoom-out {
  --modal-container-transform: scale(1.3);
}
.modal--animation-zoom-out.modal--show {
  --modal-container-transform: scale(1);
}
.modal--animation-zoom-out.modal--closing {
  --modal-container-transform: scale(1.3);
}

.modal--animation-zoom {
  --modal-container-transform: scale(0.8);
}
.modal--animation-zoom.modal--show {
  --modal-container-transform: scale(1);
}
.modal--animation-zoom.modal--closing {
  --modal-container-transform: scale(0.8);
}

.Page-Sessions .ActionsNote {
  font-size: 0.75rem;
  line-height: 1.5 !important;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-align: center;
  position: relative;
  width: 100%;
  display: none;
}
.Page-Sessions .ActionsNote.Is-Show {
  display: block;
}
.Page-Sessions .ActionsNote span {
  background-color: #fff;
  display: inline-block;
  padding: 0 0.5rem;
  position: relative;
  z-index: 1;
}
.Page-Sessions .Sessions-Hero {
  background: url("/image/jp/r1/hsif26/sessions/bg_title_red.jpg") no-repeat center bottom;
  background-size: cover;
  padding: 5.125rem 0 1.25rem;
}
@media (max-width: 767px) {
  .Page-Sessions .Sessions-Hero {
    background-image: url("/image/jp/r1/hsif26/sessions/bg_title_red_sp.jpg");
    padding: 3.3125rem 0 0;
  }
}
.Page-Sessions .Sessions-Hero__Inner {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .Page-Sessions .Sessions-Hero__Inner {
    width: 75rem;
    max-width: calc(100% - 2.5rem);
  }
}
.Page-Sessions .Sessions-Hero__Title {
  text-align: left;
  color: #ffffff;
}
@media (max-width: 767px) {
  .Page-Sessions .Sessions-Hero__Title {
    padding: 0 1.5rem;
  }
}
.Page-Sessions .Sessions-Hero__Title h1 {
  font-family: "hitachifont", "Noto Sans JP", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .Page-Sessions .Sessions-Hero__Title h1 {
    font-size: 2.5rem;
  }
}
.Page-Sessions .Sessions-Hero__Title p {
  margin-top: 0.375rem;
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .Page-Sessions .Sessions-Hero__Title p {
    margin-top: 0.6875rem;
    font-size: 1rem;
  }
}
.Page-Sessions .Sessions-Hero__Feature {
  margin-top: 3rem;
  padding: 2.5rem 1.5rem;
  border-radius: 0.5rem;
  background-color: #A60000;
}
@media (max-width: 767px) {
  .Page-Sessions .Sessions-Hero__Feature {
    margin-top: 2.5rem;
  }
}
.Page-Sessions .Sessions-Hero__Feature h2 {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
}
.Page-Sessions .Featured-Session {
  position: relative;
  max-width: 100%;
  margin: 1.5rem auto 0;
  padding: 1.5rem 4rem 2.8125rem;
  border-radius: 0.5rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .Page-Sessions .Featured-Session {
    width: 60rem;
  }
}
@media (max-width: 767px) {
  .Page-Sessions .Featured-Session {
    padding: 1.5rem 1.5rem 2.75rem;
  }
}
.Page-Sessions .Featured-Session__Body {
  min-width: 0;
}
@media (min-width: 768px) {
  .Page-Sessions .Featured-Session__Body {
    width: 36.25rem;
    max-width: 69.7115384615%;
  }
}
.Page-Sessions .Featured-Session__Brand {
  padding-bottom: 0.4375rem;
  border-bottom: 1px solid #d9d9d9;
  color: #B3B3B3;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-family: "hitachifont", "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .Page-Sessions .Featured-Session__Brand {
    font-size: 0.75rem;
    padding-bottom: 0.3125rem;
  }
}
.Page-Sessions .Featured-Session__Meta {
  margin-top: 1.5rem;
  color: #CC0000;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-family: "hitachifont", "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .Page-Sessions .Featured-Session__Meta {
    margin-top: 1rem;
    font-size: 0.9375rem;
  }
}
.Page-Sessions .Featured-Session__Label {
  color: #222222;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .Page-Sessions .Featured-Session__Label {
    font-size: 0.75rem;
  }
}
.Page-Sessions .Featured-Session__DateTime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4375rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .Page-Sessions .Featured-Session__DateTime {
    margin-bottom: 0.625rem;
  }
}
.Page-Sessions .Featured-Session__Date, .Page-Sessions .Featured-Session__Time {
  position: relative;
  display: block;
}
.Page-Sessions .Featured-Session__Date {
  padding-left: 1.625rem;
}
.Page-Sessions .Featured-Session__Date::before {
  content: "";
  background: url("/image/jp/r1/hsif26/sessions/icn_time.svg") no-repeat center center/100% auto;
  width: 1.375rem;
  height: 1.375rem;
  margin-right: 0.25rem;
  display: inline-block;
  position: absolute;
  top: 0.0625rem;
  left: 0;
}
@media (max-width: 767px) {
  .Page-Sessions .Featured-Session__Date::before {
    top: 0;
  }
}
.Page-Sessions .Featured-Session__Date small {
  font-size: 0.75rem;
}
.Page-Sessions .Featured-Session__Time::before {
  content: "|";
  margin-right: 0.75rem;
  color: #CC0000;
}
.Page-Sessions .Featured-Session__Title {
  margin-top: 0.3125rem;
  color: #222222;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .Page-Sessions .Featured-Session__Title {
    font-size: 0.9375rem;
    margin-top: 0.1875rem;
  }
}
.Page-Sessions .Featured-Session__Speaker {
  margin-top: 0.9375rem;
  padding: 1rem 1.5rem;
  border-radius: 0.25rem;
  background-color: #f5f5f5;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .Page-Sessions .Featured-Session__Speaker {
    margin: 0.625rem 0;
    padding: 0.625rem 1rem;
  }
}
.Page-Sessions .Featured-Session__Speaker strong {
  display: block;
  color: #222222;
  font-size: 0.875rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .Page-Sessions .Featured-Session__Speaker strong {
    font-size: 0.75rem;
  }
}
.Page-Sessions .Featured-Session__Speaker p {
  margin-top: 0.125rem;
  color: #737373;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .Page-Sessions .Featured-Session__Speaker p {
    font-size: 0.75rem;
  }
}
.Page-Sessions .Featured-Session__Actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  margin-top: 2.625rem;
}
@media (max-width: 767px) {
  .Page-Sessions .Featured-Session__Actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    margin-top: 0.9375rem;
  }
}
.Page-Sessions .Featured-Session__Actions .Btn-Button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .Page-Sessions .Featured-Session__Actions .Btn-Button {
    max-height: 3rem !important;
    min-height: 3rem !important;
    line-height: 1.5 !important;
    padding: 0.8125rem 0;
    font-size: 0.875rem;
  }
}
.Page-Sessions .Featured-Session__Actions > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  max-width: 20rem;
}
@media (max-width: 767px) {
  .Page-Sessions .Featured-Session__Actions > div {
    max-width: 21.0625rem;
  }
}
.Page-Sessions .Featured-Session__Actions > div .ActionsNote {
  margin-top: 0.3125rem;
}
.Page-Sessions .Featured-Session__Thumb {
  background: #D4D4D8;
}
@media (min-width: 768px) {
  .Page-Sessions .Featured-Session__Thumb {
    border-radius: 0.375rem;
    position: absolute;
    top: 2.9375rem;
    right: 4rem;
    width: 12.5rem;
    max-width: 20.8333333333%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 767px) {
  .Page-Sessions .Featured-Session__Thumb {
    width: 100%;
    max-width: 100%;
    border-radius: 0.25rem;
  }
}
@media (min-width: 768px) {
  .Page-Sessions .Section-Sessions {
    margin: 5.8125rem auto 4.8125rem;
    max-width: 79.6875rem;
  }
}
@media (max-width: 767px) {
  .Page-Sessions .Section-Sessions {
    margin: 2.875rem auto 4rem;
  }
}
.Page-Sessions .Section-Sessions__Timetable {
  margin-top: 0;
}
.Page-Sessions .Section-Sessions__Heading {
  margin-bottom: 3.625rem;
  text-align: center;
  font-family: "hitachifont", "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-weight: 700;
}
@media (max-width: 767px) {
  .Page-Sessions .Section-Sessions__Heading {
    margin-bottom: 0.875rem;
  }
}
.Page-Sessions .Section-Sessions__HeadingJp {
  color: #cc0000;
  letter-spacing: 0.04em;
}
.Page-Sessions .Section-Sessions__HeadingEn {
  margin-top: -0.375rem;
  color: #cc0000;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .Page-Sessions .Section-Sessions__HeadingEn {
    font-size: 2rem;
    line-height: 1.5;
    margin-top: 0;
  }
}
.Page-Sessions .Timetable {
  --room-count: 7;
  --timetable-sticky-gap: 1.5rem;
  --timetable-tabs-height: 4rem;
  --timetable-custom-scrollbar-height: 0.5rem;
  --timetable-custom-scrollbar-gap: 0.5rem;
  --timetable-custom-scrollbar-offset: calc(var(--timetable-custom-scrollbar-height) + var(--timetable-custom-scrollbar-gap));
  --time-column-width: 6.25rem;
  --room-column-width: 15rem;
  --timeline-row-height: 4rem;
  --timeline-row-large-height: 14.1875rem;
  --time-column-width-sp: 1.5rem;
  --timeline-row-1: var(--timeline-row-height);
  --timeline-row-2: var(--timeline-row-height);
  --timeline-row-3: var(--timeline-row-height);
  --timeline-row-4: var(--timeline-row-height);
  --timeline-row-5: var(--timeline-row-height);
  --timeline-row-6: var(--timeline-row-height);
  --timeline-row-7: var(--timeline-row-height);
  --timeline-row-8: var(--timeline-row-height);
  --timeline-row-9: var(--timeline-row-height);
  --timeline-row-10: var(--timeline-row-height);
  --timeline-row-11: var(--timeline-row-height);
  --timeline-row-12: var(--timeline-row-height);
  --timeline-row-13: var(--timeline-row-height);
  --timeline-row-14: var(--timeline-row-height);
  --timeline-row-15: var(--timeline-row-height);
  --timeline-row-16: var(--timeline-row-height);
  --timeline-row-17: var(--timeline-row-height);
  --timeline-row-18: var(--timeline-row-height);
  --timeline-row-19: var(--timeline-row-height);
}
.Page-Sessions .Timetable [data-col="1"] {
  --col: 1;
}
.Page-Sessions .Timetable [data-col="2"] {
  --col: 2;
}
.Page-Sessions .Timetable [data-col="3"] {
  --col: 3;
}
.Page-Sessions .Timetable [data-col="4"] {
  --col: 4;
}
.Page-Sessions .Timetable [data-col="5"] {
  --col: 5;
}
.Page-Sessions .Timetable [data-col="6"] {
  --col: 6;
}
.Page-Sessions .Timetable [data-col="7"] {
  --col: 7;
}
.Page-Sessions .Timetable {
  position: relative;
}
.Page-Sessions .Timetable::after {
  content: "";
  position: absolute;
  width: 7.5rem;
  background: -webkit-gradient(linear, right top, left top, from(#FFFFFF), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  top: 8.75rem;
  bottom: var(--timetable-custom-scrollbar-height);
  right: 0;
  z-index: 32;
  pointer-events: none;
  -webkit-transition: opacity ease 0.3s;
  transition: opacity ease 0.3s;
  opacity: 1;
}
@media (max-width: 767px) {
  .Page-Sessions .Timetable::after {
    top: 4.0625rem;
    display: none;
  }
}
.Page-Sessions .Timetable.active:after {
  opacity: 0;
}
@media (max-width: 767px) {
  .Page-Sessions .Timetable {
    --timetable-tabs-height: 2.5625rem;
  }
}
.Page-Sessions .Timetable__Tabs {
  background-color: #fff;
  max-width: 100%;
  position: sticky;
  top: var(--timetable-head-offset, 40px);
  z-index: 31;
  isolation: isolate;
  padding: 1.5rem 0 2.5rem;
}
@media (max-width: 767px) {
  .Page-Sessions .Timetable__Tabs {
    top: var(--timetable-head-offset, 24px);
    padding: 1.5rem 0 1.5rem;
  }
}
.Page-Sessions .Timetable__Tabs--Inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #F4F4F4;
  border-radius: 999px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .Page-Sessions .Timetable__Tabs--Inner {
    width: calc(100% - 2.5rem);
    max-width: 52rem;
    padding: 0.25rem;
  }
}
@media (max-width: 767px) {
  .Page-Sessions .Timetable__Tabs--Inner {
    width: 21.375rem;
    padding: 0.25rem;
  }
}
.Page-Sessions .Timetable__Tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 3.5rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #B3B3B3;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .Page-Sessions .Timetable__Tab {
    min-height: 2.0625rem;
    font-size: 1rem;
  }
}
.Page-Sessions .Timetable__Tab span {
  font-size: 0.75rem;
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .Page-Sessions .Timetable__Tab span {
    margin-left: 0.1875rem;
  }
}
.Page-Sessions .Timetable__Tab.is-active {
  background-color: #CC0000;
  color: #fff;
  cursor: default;
}
.Page-Sessions .Timetable__HeadPane {
  display: none;
  position: sticky;
  top: calc(var(--timetable-head-offset, 40px) + var(--timetable-tabs-height) + var(--timetable-custom-scrollbar-offset));
  z-index: 30;
  grid-template-columns: var(--time-column-width) minmax(0, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 0.125rem;
  background-color: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.92);
}
@media (max-width: 767px) {
  .Page-Sessions .Timetable__HeadPane {
    margin-bottom: 0.125rem;
    top: calc(var(--timetable-head-offset, 24px) + var(--timetable-tabs-height) + var(--timetable-custom-scrollbar-offset));
    grid-template-columns: var(--time-column-width-sp) minmax(0, 1fr);
  }
}
.Page-Sessions .Timetable__HeadPane.is-active {
  display: grid;
}
.Page-Sessions .Timetable__HeadSide {
  min-height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.96);
}
@media (max-width: 767px) {
  .Page-Sessions .Timetable__HeadSide {
    min-height: 1.5rem;
  }
}
.Page-Sessions .Timetable__HeadViewport {
  overflow: hidden;
}
.Page-Sessions .Timetable__Viewport {
  overflow-x: auto;
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.Page-Sessions .Timetable__Viewport::-webkit-scrollbar {
  display: none;
}
.Page-Sessions .Timetable__Scrollbar {
  display: grid;
  grid-template-columns: var(--time-column-width) minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .Page-Sessions .Timetable__Scrollbar {
    grid-template-columns: var(--time-column-width-sp) minmax(0, 1fr);
  }
}
.Page-Sessions .Timetable__Scrollbar.is-hidden {
  display: none;
}
.Page-Sessions .Timetable__Scrollbar--top {
  position: sticky;
  top: calc(var(--timetable-head-offset, 40px) + var(--timetable-tabs-height));
  z-index: 30;
  padding-bottom: var(--timetable-custom-scrollbar-gap);
  background: #fff;
}
@media (max-width: 767px) {
  .Page-Sessions .Timetable__Scrollbar--top {
    top: calc(var(--timetable-head-offset, 24px) + var(--timetable-tabs-height));
  }
}
.Page-Sessions .Timetable__ScrollbarSide {
  height: var(--timetable-custom-scrollbar-height);
}
.Page-Sessions .Timetable__ScrollbarTrack {
  position: relative;
  overflow: hidden;
  height: var(--timetable-custom-scrollbar-height);
  background: #fff;
  border-radius: 999px;
  cursor: pointer;
  -ms-touch-action: none;
      touch-action: none;
}
.Page-Sessions .Timetable__ScrollbarInner {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.Page-Sessions .Timetable__ScrollbarThumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 6.25rem;
  height: 100%;
  max-width: 100%;
  border-radius: 999px;
  background: #999999;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.Page-Sessions .Timetable__ScrollbarThumb:hover {
  background: #737373;
}
.Page-Sessions .Timetable__ScrollbarThumb:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.Page-Sessions .Timetable__HeadGrid, .Page-Sessions .Timetable__BodyGrid {
  display: grid;
  grid-template-columns: repeat(var(--room-count), var(--room-column-width));
  gap: 0 0.125rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
.Page-Sessions .Timetable__HeadGrid {
  grid-template-rows: 2.5rem;
}
@media (max-width: 767px) {
  .Page-Sessions .Timetable__HeadGrid {
    grid-template-rows: 1.5rem;
  }
}
.Page-Sessions .Timetable #timetable-day-1 .Timetable__Times,
.Page-Sessions .Timetable #timetable-day-1 .Timetable__BodyGrid {
  grid-template-rows: 9.875rem 15.875rem 4rem 13.375rem 11.75rem 11.75rem 14.1875rem 6.1875rem 16.125rem 4.125rem 17.125rem 14.1875rem 11.875rem 14rem 9.375rem 9.375rem 8.375rem 8.375rem 4rem;
}
.Page-Sessions .Timetable #timetable-day-1 .SessionCard.is-row-1 {
  min-height: 25.6875rem;
}
.Page-Sessions .Timetable #timetable-day-1 .SessionCard.is-row-5 {
  min-height: 23.4375rem;
}
.Page-Sessions .Timetable #timetable-day-1 .SessionCard.is-row-9 {
  min-height: 20.125rem;
}
.Page-Sessions .Timetable #timetable-day-1 .SessionCard.is-row-12[data-col="2"], .Page-Sessions .Timetable #timetable-day-1 .SessionCard.is-row-12[data-col="3"] {
  min-height: 25.6875rem;
}
.Page-Sessions .Timetable #timetable-day-1 .SessionCard.is-row-13 {
  min-height: 25.75rem;
}
.Page-Sessions .Timetable #timetable-day-2 .Timetable__Times,
.Page-Sessions .Timetable #timetable-day-2 .Timetable__BodyGrid {
  grid-template-rows: 10.625rem 10.625rem 9.25rem 19.5rem 9.0625rem 9.0625rem 4rem 14.1875rem 11.25rem 9.125rem 8.625rem 7.625rem 13.625rem 3.625rem 12.625rem 6.4375rem 4rem 4rem 4rem;
}
.Page-Sessions .Timetable #timetable-day-2 .SessionCard.is-row-1 {
  min-height: 21.125rem;
}
.Page-Sessions .Timetable #timetable-day-2 .SessionCard.is-row-3 {
  min-height: 28.625rem;
}
.Page-Sessions .Timetable #timetable-day-2 .SessionCard.is-row-5 {
  min-height: 18rem;
}
.Page-Sessions .Timetable #timetable-day-2 .SessionCard.is-row-9 {
  min-height: 20.25rem;
}
.Page-Sessions .Timetable__Pane {
  display: none;
  grid-template-columns: var(--time-column-width) minmax(0, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 767px) {
  .Page-Sessions .Timetable__Pane {
    grid-template-columns: var(--time-column-width-sp) minmax(0, 1fr);
  }
}
.Page-Sessions .Timetable__Pane.is-active {
  display: grid;
}
.Page-Sessions .Timetable__Pane.is-time-aligned .Timetable__Times,
.Page-Sessions .Timetable__Pane.is-time-aligned .Timetable__BodyGrid {
  grid-template-rows: repeat(var(--timeline-total-minutes), minmax(0, var(--timeline-minute-height, 2px)));
}
.Page-Sessions .Timetable__Pane.has-large-row-1 {
  --timeline-row-1: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-2 {
  --timeline-row-2: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-3 {
  --timeline-row-3: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-4 {
  --timeline-row-4: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-5 {
  --timeline-row-5: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-6 {
  --timeline-row-6: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-7 {
  --timeline-row-7: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-8 {
  --timeline-row-8: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-9 {
  --timeline-row-9: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-10 {
  --timeline-row-10: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-11 {
  --timeline-row-11: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-12 {
  --timeline-row-12: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-13 {
  --timeline-row-13: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-14 {
  --timeline-row-14: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-15 {
  --timeline-row-15: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-16 {
  --timeline-row-16: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-17 {
  --timeline-row-17: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-18 {
  --timeline-row-18: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Pane.has-large-row-19 {
  --timeline-row-19: var(--timeline-row-large-height);
}
.Page-Sessions .Timetable__Room {
  grid-column: var(--col)/span 1;
  grid-row: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 2.5rem;
  padding: 0.75rem;
  border-radius: 0.125rem;
  background-color: #737373;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  z-index: 2;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .Page-Sessions .Timetable__Room {
    font-size: 0.75rem;
    padding: 0.3125rem 0;
    min-height: 1.5rem;
    letter-spacing: 0.04em;
  }
}
.Page-Sessions .Timetable__Times {
  display: grid;
  position: sticky;
  left: 0;
  z-index: 10;
  background-color: #ffffff;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .Page-Sessions .Timetable__Times {
    margin-top: 0.625rem;
  }
}
.Page-Sessions .Timetable__RoomFill {
  grid-column: var(--col)/span 1;
  grid-row: 1/-1;
  border-radius: 0;
  background-color: #ffffff;
  z-index: 0;
  border-radius: 0.25rem;
  position: relative;
  top: -1.25rem;
  height: calc(100% + 1.25rem);
}
.Page-Sessions .Timetable__RoomFill[data-col="1"], .Page-Sessions .Timetable__RoomFill[data-col="3"], .Page-Sessions .Timetable__RoomFill[data-col="5"], .Page-Sessions .Timetable__RoomFill[data-col="7"] {
  background-color: #F4F4F4;
}
.Page-Sessions .Timetable__Time {
  -ms-flex-item-align: start;
      align-self: start;
  color: #737373;
  font-family: "hitachifont", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  z-index: 2;
  text-align: right;
  position: relative;
  top: -0.625rem;
}
@media (min-width: 768px) {
  .Page-Sessions .Timetable__Time {
    padding-right: 0.5625rem;
  }
}
@media (max-width: 767px) {
  .Page-Sessions .Timetable__Time {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 0.125rem;
    padding-bottom: 0.5rem;
    font-size: 0.75rem;
  }
}
.Page-Sessions .Timetable__Time:nth-child(1) {
  grid-row: 1;
}
.Page-Sessions .Timetable__Time:nth-child(2) {
  grid-row: 2;
}
.Page-Sessions .Timetable__Time:nth-child(3) {
  grid-row: 3;
}
.Page-Sessions .Timetable__Time:nth-child(4) {
  grid-row: 4;
}
.Page-Sessions .Timetable__Time:nth-child(5) {
  grid-row: 5;
}
.Page-Sessions .Timetable__Time:nth-child(6) {
  grid-row: 6;
}
.Page-Sessions .Timetable__Time:nth-child(7) {
  grid-row: 7;
}
.Page-Sessions .Timetable__Time:nth-child(8) {
  grid-row: 8;
}
.Page-Sessions .Timetable__Time:nth-child(9) {
  grid-row: 9;
}
.Page-Sessions .Timetable__Time:nth-child(10) {
  grid-row: 10;
}
.Page-Sessions .Timetable__Time:nth-child(11) {
  grid-row: 11;
}
.Page-Sessions .Timetable__Time:nth-child(12) {
  grid-row: 12;
}
.Page-Sessions .Timetable__Time:nth-child(13) {
  grid-row: 13;
}
.Page-Sessions .Timetable__Time:nth-child(14) {
  grid-row: 14;
}
.Page-Sessions .Timetable__Time:nth-child(15) {
  grid-row: 15;
}
.Page-Sessions .Timetable__Time:nth-child(16) {
  grid-row: 16;
}
.Page-Sessions .Timetable__Time:nth-child(17) {
  grid-row: 17;
}
.Page-Sessions .Timetable__Time:nth-child(18) {
  grid-row: 18;
}
.Page-Sessions .Timetable__Time:nth-child(19) {
  grid-row: 19;
}
.Page-Sessions .Timetable__GridLine {
  grid-column: 1/-1;
  align-self: start;
  border-top: 1px solid #D9D9D9;
  border-top-style: dashed;
  z-index: 2;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(8) {
  grid-row: 1;
  border-top-style: dashed;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(9) {
  grid-row: 2;
  border-top-style: solid;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(10) {
  grid-row: 3;
  border-top-style: dashed;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(11) {
  grid-row: 4;
  border-top-style: solid;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(12) {
  grid-row: 5;
  border-top-style: dashed;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(13) {
  grid-row: 6;
  border-top-style: solid;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(14) {
  grid-row: 7;
  border-top-style: dashed;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(15) {
  grid-row: 8;
  border-top-style: solid;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(16) {
  grid-row: 9;
  border-top-style: dashed;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(17) {
  grid-row: 10;
  border-top-style: solid;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(18) {
  grid-row: 11;
  border-top-style: dashed;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(19) {
  grid-row: 12;
  border-top-style: solid;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(20) {
  grid-row: 13;
  border-top-style: dashed;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(21) {
  grid-row: 14;
  border-top-style: solid;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(22) {
  grid-row: 15;
  border-top-style: dashed;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(23) {
  grid-row: 16;
  border-top-style: solid;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(24) {
  grid-row: 17;
  border-top-style: dashed;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(25) {
  grid-row: 18;
  border-top-style: solid;
}
.Page-Sessions .Timetable__BodyGrid > .Timetable__GridLine:nth-child(26) {
  grid-row: 19;
  border-top-style: dashed;
}
.Page-Sessions .SessionCard {
  grid-column: var(--col)/span 1;
  grid-row: var(--row);
  align-self: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 0;
  padding: 1rem;
  border-left: 0.125rem solid #e60012;
  border-radius: 0 0.25rem 0.25rem 0;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0.125rem 1rem 0.125rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.125rem 1rem 0.125rem rgba(0, 0, 0, 0.1);
  overflow: visible;
  z-index: 3;
  margin: 1px 0.4375rem 0;
  position: relative;
  -webkit-transform: translateY(var(--card-offset, 0px));
          transform: translateY(var(--card-offset, 0px));
  letter-spacing: 0.02em;
}
.Page-Sessions .SessionCard.is-pos-exact {
  --card-offset: 0px;
}
.Page-Sessions .SessionCard.is-pos-prev {
  --card-offset: 24px;
}
.Page-Sessions .SessionCard.is-pos-between {
  --card-offset: calc(var(--timeline-row-large-height) / 2);
}
.Page-Sessions .SessionCard.is-pos-next {
  --card-offset: calc(var(--timeline-row-large-height) - 24px);
}
.Page-Sessions .SessionCard.is-row-1 {
  --row: 1;
}
.Page-Sessions .SessionCard.is-row-2 {
  --row: 2;
}
.Page-Sessions .SessionCard.is-row-3 {
  --row: 3;
}
.Page-Sessions .SessionCard.is-row-4 {
  --row: 4;
}
.Page-Sessions .SessionCard.is-row-5 {
  --row: 5;
}
.Page-Sessions .SessionCard.is-row-6 {
  --row: 6;
}
.Page-Sessions .SessionCard.is-row-7 {
  --row: 7;
}
.Page-Sessions .SessionCard.is-row-8 {
  --row: 8;
}
.Page-Sessions .SessionCard.is-row-9 {
  --row: 9;
}
.Page-Sessions .SessionCard.is-row-10 {
  --row: 10;
}
.Page-Sessions .SessionCard.is-row-11 {
  --row: 11;
}
.Page-Sessions .SessionCard.is-row-12 {
  --row: 12;
}
.Page-Sessions .SessionCard.is-row-13 {
  --row: 13;
}
.Page-Sessions .SessionCard.is-row-14 {
  --row: 14;
}
.Page-Sessions .SessionCard.is-row-15 {
  --row: 15;
}
.Page-Sessions .SessionCard.is-row-16 {
  --row: 16;
}
.Page-Sessions .SessionCard.is-row-17 {
  --row: 17;
}
.Page-Sessions .SessionCard.is-row-18 {
  --row: 18;
}
.Page-Sessions .SessionCard.is-row-19 {
  --row: 19;
}
.Page-Sessions .SessionCard__Meta {
  color: #CC0000;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "hitachifont", "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.Page-Sessions .SessionCard__Meta::before {
  content: "";
  margin-right: 0.25rem;
  width: 1.125rem;
  height: 1.125rem;
  background: url("/image/jp/r1/hsif26/sessions/icn_time.svg") no-repeat center center/100% auto;
  display: inline-block;
}
.Page-Sessions .SessionCard__Tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem;
  margin: 0.25rem 0 0.75rem;
}
.Page-Sessions .SessionCard__Tags li {
  padding: 0.0625rem 0.4375rem;
  border: 1px solid #737373;
  border-radius: 0.125rem;
  font-size: 0.625rem;
  line-height: 1.5;
  color: #737373;
  font-weight: 500;
}
.Page-Sessions .SessionCard__Category {
  color: #222222;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
}
.Page-Sessions .SessionCard__Title {
  color: #222222;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 0.1875rem 0 0.8125rem;
}
.Page-Sessions .SessionCard__Speakers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  margin-right: -0.875rem;
  margin-top: 0;
}
.Page-Sessions .SessionCard__Speakers--Item {
  position: relative;
  width: 100%;
  min-height: 2.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.Page-Sessions .SessionCard__Speakers--Thumb {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #D4D4D8;
  margin-right: 0.25rem;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.Page-Sessions .SessionCard__Speakers--Thumb img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
}
.Page-Sessions .SessionCard__Speakers dd {
  width: calc(100% - 2rem);
  max-width: calc(100% - 2.5rem);
  min-width: 0;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #737373;
}
.Page-Sessions .SessionCard__Speakers dd strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #737373;
}
.Page-Sessions .SessionCard__Speakers dd small {
  display: block;
  font-size: 0.625rem;
  max-width: 100%;
}
.Page-Sessions .SessionCard__Actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
  margin-top: auto;
  padding-top: 0.625rem;
  position: static;
  background-color: transparent;
  padding-bottom: 0;
}
.Page-Sessions .SessionCard__Actions::before {
  content: none;
}
.Page-Sessions .SessionCard__Actions .Btn-Button {
  width: 100%;
  max-width: 100%;
  font-size: 0.75rem;
  height: 1.75rem;
  padding: 0;
  border-width: 1px;
  line-height: 1.5 !important;
  letter-spacing: 0.04em;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.Page-Sessions .SessionCard--Compact {
  min-height: 0;
}
.Page-Sessions .SessionCard--Compact .SessionCard__Title {
  font-size: 0.9375rem;
}
.Page-Sessions .Timetable__Pane.is-time-aligned .SessionCard {
  min-height: 0 !important;
  -webkit-transform: none;
          transform: none;
}

.Sessions-Modal {
  width: 100%;
  color: #222222;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
}
.Sessions-Modal__Panel {
  padding: 2.5rem 4rem 3.125rem;
  background-color: #fff;
}
@media (max-width: 767px) {
  .Sessions-Modal__Panel {
    padding: 1.5rem 1.125rem 2.5rem 1.5rem;
  }
}
.Sessions-Modal__Meta {
  display: grid;
  gap: 0.375rem;
}
.Sessions-Modal__Schedule, .Sessions-Modal__Location {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 0.5625rem;
  padding-left: 1.625rem;
  line-height: 1.5;
  font-size: 1rem;
  letter-spacing: 2%;
}
.Sessions-Modal__Schedule::before, .Sessions-Modal__Location::before {
  position: absolute;
  top: 0.125rem;
  left: 0;
  line-height: 1;
}
.Sessions-Modal__Schedule {
  color: #CC0000;
  font-weight: 700;
  letter-spacing: 2%;
  font-family: "hitachifont", "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .Sessions-Modal__Schedule {
    font-size: 1rem;
    padding-right: 0.9375rem;
  }
}
.Sessions-Modal__Schedule::before {
  content: "";
  background: url("/image/jp/r1/hsif26/sessions/icn_time.svg") no-repeat center center/100% auto;
  width: 1.375rem;
  height: 1.375rem;
}
.Sessions-Modal__Schedule small {
  font-size: 0.75rem;
}
.Sessions-Modal__ScheduleDivider {
  color: #CC0000;
}
.Sessions-Modal__Location {
  color: #737373;
  font-weight: 500;
}
.Sessions-Modal__Location::before {
  content: "";
  background: url("/image/jp/r1/hsif26/sessions/icn_place.svg") no-repeat center center/100% auto;
  width: 1.375rem;
  height: 1.375rem;
}
.Sessions-Modal__Tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.25rem;
}
.Sessions-Modal__Tags li {
  padding: 0.1875rem 1rem;
  border: 1px solid #c7c7c7;
  border-radius: 0.125rem;
  color: #737373;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
}
.Sessions-Modal__Body {
  margin-top: 1.5rem;
}
.Sessions-Modal__Category {
  color: #222222;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 2%;
}
.Sessions-Modal__Title {
  margin-top: 0.1875rem;
  color: #222222;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 2%;
}
@media (max-width: 767px) {
  .Sessions-Modal__Title {
    font-size: 1.25rem;
  }
}
.Sessions-Modal__Description {
  margin-top: 1.5rem;
}
.Sessions-Modal__Description p {
  color: #737373;
  font-size: 0.75rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
.Sessions-Modal__Speakers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem 2.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #D9D9D9;
}
@media (max-width: 767px) {
  .Sessions-Modal__Speakers {
    gap: 1rem;
  }
}
.Sessions-Modal__Speaker {
  width: calc(50% - 1.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 767px) {
  .Sessions-Modal__Speaker {
    width: 100%;
    gap: 0.5rem;
  }
}
.Sessions-Modal__SpeakerThumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6rem;
          flex: 0 0 6rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #D4D4D8;
  overflow: hidden;
}
@media (max-width: 767px) {
  .Sessions-Modal__SpeakerThumb {
    -ms-flex-preferred-size: 4rem;
        flex-basis: 4rem;
    width: 4rem;
    height: 4rem;
  }
}
.Sessions-Modal__SpeakerThumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
}
.Sessions-Modal__SpeakerBody {
  min-width: 0;
  padding-top: 0.1875rem;
  min-height: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .Sessions-Modal__SpeakerBody {
    min-height: 4rem;
  }
}
.Sessions-Modal__SpeakerName {
  color: #737373;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 2%;
}
.Sessions-Modal__SpeakerRole {
  color: #737373;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 2%;
}
@media (min-width: 768px) {
  .Sessions-Modal__SpeakerRole {
    margin-top: 0.25rem;
  }
}
.Sessions-Modal__Actions {
  display: grid;
  justify-items: center;
  gap: 1.125rem;
  margin-top: 2.5rem;
}
.Sessions-Modal__Actions .Btn-Button {
  width: min(100%, 21.625rem);
  min-height: 3rem;
  height: 3rem;
  padding: 0.5rem 0.625rem;
  font-size: 0.875rem;
  letter-spacing: 4%;
  font-weight: 600;
}
.Sessions-Modal__SubLink {
  font-size: 0.875rem;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  text-decoration-thickness: 1px;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .Sessions-Modal__SubLink {
    font-size: 0.875rem;
    text-align: center;
  }
}

.modal__overlay {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: calc(env(safe-area-inset-top, 0px) + 0.75rem) 1rem calc(env(safe-area-inset-bottom, 0px) + 0.75rem);
}
@media (max-width: 767px) {
  .modal__overlay {
    padding: calc(env(safe-area-inset-top, 0px) + 0.5rem) 0.75rem calc(env(safe-area-inset-bottom, 0px) + 0.5rem);
  }
}

.modal__container {
  width: min(100vw - 2.5rem, 65rem);
  max-width: 60rem !important;
  max-height: calc(100vh - 2.5rem);
  max-height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 1.5rem);
  margin: 0;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 1.125rem 3rem rgba(0, 0, 0, 0.26);
          box-shadow: 0 1.125rem 3rem rgba(0, 0, 0, 0.26);
}
@media (max-width: 767px) {
  .modal__container {
    width: calc(100vw - 2rem) !important;
    max-height: calc(100vh - 1.5rem);
    max-height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 1rem);
    border-radius: 0.5rem;
  }
}

.modal__content {
  padding: 0;
  max-height: calc(100vh - 2.5rem);
  max-height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 1.5rem);
  border-radius: inherit;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
  .modal__content {
    max-height: calc(100vh - 1.5rem);
    max-height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 1rem);
  }
}

.modal__close {
  top: 1rem;
  right: 1rem;
  width: 2.8125rem;
  height: 2.8125rem;
  color: transparent;
  border-radius: 0;
  font-size: 0;
  background: url("/image/jp/r1/hsif26/sessions/icn-close.svg") no-repeat center center/1.5rem auto;
  padding: 0;
}
@media (max-width: 767px) {
  .modal__close {
    top: 0;
    right: 0;
  }
}