@charset "UTF-8";

/*====================================================================
 * Time Table
====================================================================*/
.anchor {
  position: sticky;
  top: 92px;
  z-index: 1;
}
@media only screen and (max-width: 820px) {
  .anchor {
    top: 16vw;
  }
  .anchorList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.anchorItem a.is-active {
  color: #006EBE;
}
.btnFilter {
  display: none;
}
@media only screen and (max-width: 820px) {
  .btnFilter {
    display: block;
    text-align: center;
    width: 40vw;
    font-size: 3.125vw;
    color: #FFF;
    background-color: #006ebe;
    margin: 4vw auto 0;
    padding: .75em 0;
    border-radius: 1.25em;
  }
}

.timetable-download {
  text-align: center;
  width: 32%;
  font-size: 1.4rem;
  color: #FFF;
  background-color: #333333;
  padding: 0.57142857142em 0 0.57142857142em 0.5em;
  border-radius: 0.35em;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  margin-top: 5px;
  margin-left: auto;
}

.timetable-download:hover {
  background-color: #006EBE;
}

.timetableContent {
  padding: 45px 0;
}
@media only screen and (max-width: 820px) {
  .timetableContent {
    padding: 4.6875vw 3.125vw 0;
  }

  .timetable-download {
    width: 45%;
    font-size: 3.125vw;
  }
}
.timetableContent .filterOverlay {
  display: none;
}
@media only screen and (max-width: 820px) {
  .timetableContent .filterOverlay.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(178, 178, 178, .7);
    z-index: 2;
  }
}
.timetableContent .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 820px) {
  .timetableContent .inner {
    display: block;
  }
}

.subColumn {
  width: 280px;
  background-color: #FFF;
}
@media only screen and (max-width: 820px) {
  .subColumn {
    position: fixed;
    top: 0;
    left: -100%;
    width: 62vw;
    height: 100vh;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    overflow-y: scroll;
    z-index: 200;
  }
  .subColumn.active {
    left: 0;
  }
}
.subColumn .box {
  position: sticky;
  width: 100%;
  border: solid 1px #000928;
  box-sizing: border-box;
}
@media only screen and (max-width: 820px) {
  .subColumn .box {
    position: static;
    border: none;
  }
}
.subColumn h2 {
  font-size: 2.0rem;
  letter-spacing: .1em;
  color: #FFF;
  padding: 15px 20px;
  background-color: #000928;
  background-image: url(../img/bg-pageTitle.jpg);
  background-image: image-set(url(../img/bg-pageTitle.jpg) 1x, url(../img/bg-pageTitle.jpg) 2x);
  background-image: -webkit-image-set(url(../img/bg-pageTitle.jpg) 1x, url(../img/bg-pageTitle.jpg) 2x);

  /*background-color: #000928;*/
}
@media only screen and (max-width: 820px) {
  .subColumn h2 {
    position: sticky;
    top: 0;
    font-size: 4vw;
    z-index: 1;
  }
}
.subColumn h2 .closeFilter {
  display: none;
}
@media only screen and (max-width: 820px) {
  .subColumn h2 .closeFilter {
    display: block;
    position: absolute;
    top: 50%;
    right: 4vw;
    transform: translateY(-50%);
    width: 4.6875vw;
  }
}
.subColumn dl {
  margin: 15px;
  padding-bottom: 20px;
  border-bottom: solid 1px #CBCDD2;
}
@media only screen and (max-width: 820px) {
  .subColumn dl {
    margin: 3.125vw;
    padding-bottom: 4vw;
  }
}
.subColumn dt {
  position: relative;
  font-size: 1.8rem;
  padding-left: 1.8em;
  cursor: pointer;
}
@media only screen and (max-width: 820px) {
  .subColumn dt {
    font-size: 4.0625vw;
  }
}
.subColumn dt::before {
  content: "";
  position: absolute;
  top: .33em;
  left: 7px;
  width: 15.2px;
  height: 9px;
  background-image: url("../img/iconArrowBlue.svg");
  background-repeat: no-repeat;
  background-size: 100%;
}
@media only screen and (max-width: 820px) {
  .subColumn dt::before {
    top: .3em;
    left: 1vw;
    width: 4vw;
    height: 2.4vw;
  }
}
.subColumn dt.active::before {
  transform: rotateX(180deg);
}
.subColumn dd {
  padding: 20px 8px 0;
}
@media only screen and (max-width: 820px) {
  .subColumn dd {
    font-size: 3.75vw;
    letter-spacing: .05em;
    padding: 4vw 1vw 0;
  }
}
.subColumn .checkbox {
  flex-direction: column;
  gap: 1em 0;
}
.subColumn .clear {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .05em;
  padding: .2em 0 1.2em;
}
@media only screen and (max-width: 820px) {
  .subColumn .clear {
    font-size: 4.0625vw;
  }
}
.subColumn .clear a {
  color: #006EBE;
  cursor: pointer;
}

.mainColumn {
  width: calc(100% - 320px);
}
@media only screen and (max-width: 820px) {
  .mainColumn {
    width: 100%;
  }
}
.mainColumn .refine .result {
  display: flex;
  align-items: center;
  color: #333;
}
@media only screen and (max-width: 820px) {
  .mainColumn .refine {
    padding: 0 2.1875vw;
  }
  .mainColumn .refine .result {
    white-space: nowrap;
    overflow: hidden;
  }
}
.mainColumn .refine .result .title {
  font-size: 1.7rem;
}
@media only screen and (max-width: 820px) {
  .mainColumn .refine .result .title {
    font-size: 3.125vw;
  }
}
.mainColumn .refine .result .number {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 .8em 0 .5em;
}
@media only screen and (max-width: 820px) {
  .mainColumn .refine .result .number {
    font-size: 4.375vw;
  }
}
.mainColumn .refine .result .note {
  font-size: 1.4rem;
}
@media only screen and (max-width: 820px) {
  .mainColumn .refine .result .note {
    display: inline-block;
    font-size: 3.125vw;
    transform: scale(0.8);
    transform-origin: left bottom;
  }
}
.mainColumn .refine .filter {
  display: flex;
  flex-wrap: wrap;
  gap: .6em;
  font-size: 1.2rem;
  padding: 25px 0 35px;
}
@media only screen and (max-width: 820px) {
  .mainColumn .refine .filter {
    font-size: 3.125vw;
    padding: 3.5vw 0 7vw;
  }
}
.mainColumn .refine .filter span {
  position: relative;
  padding: calc(.5em - 1px) 2.5em calc(.5em - 1px) 1em;
  border: solid 1px #7C7C7C;
  border-radius: 1em;
  box-sizing: border-box;
}
.mainColumn .refine .filter span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: .58333333333em;
  height: .58333333333em;
  background-image: url("../img/iconCloseGray.svg");
  background-size: 100%;
  cursor: pointer;
}
.mainColumn .refine .filter a {
  font-size: 1.16666666666em;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .1em;
  color: #006EBE;
  padding-left: .2em;
  cursor: pointer;
}
.mainColumn section .sec-scroll-point {
  display: block;
  transform: translateY(-92px);
}
@media only screen and (max-width: 820px) {
  .mainColumn section .sec-scroll-point {
    transform: translateY(-31vw);
  }
}
.mainColumn section + section {
  margin-top: 60px;
}
@media only screen and (max-width: 820px) {
  .mainColumn section + section {
    margin-top: 9.375vw;
  }
}
.mainColumn section h2 {
  color: #FFF;
  padding: 1em 1.5em;
  background: rgb(0,9,40);
  /*background-image: url(../img/bgObi.png);*/
  /*background-image: image-set(url(../img/bgObi.png) 1x, url(../img/bgObi.png) 2x);*/
  /*background-image: -webkit-image-set(url(../img/bgObi.png) 1x, url(../img/bgObi.png) 2x);*/

  background: -webkit-linear-gradient(left, rgba(0,9,40,1) 0%, rgba(0,75,163,1) 100%);
  background: -o-linear-gradient(left, rgba(0,9,40,1) 0%, rgba(0,75,163,1) 100%);
  background: linear-gradient(to right, rgba(0,9,40,1) 0%, rgba(0,75,163,1) 100%);
}
@media only screen and (max-width: 820px) {
  .mainColumn section h2 {
    padding: 3.125vw 4.0625vw;
  }
}
.mainColumn section h2 .date {
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: .02em;
}
@media only screen and (max-width: 820px) {
  .mainColumn section h2 .date {
    font-size: 4.0625vw;
  }
}
.mainColumn section h2 .day {
  font-size: 2.0rem;
  letter-spacing: .02em;
  margin: 0 1.5em 0 1em;
}
@media only screen and (max-width: 820px) {
  .mainColumn section h2 .day {
    font-size: 4.0625vw;
  }
}
.mainColumn section h2 .title {
  font-size: 1.6rem;
  letter-spacing: .1em;
}
@media only screen and (max-width: 820px) {
  .mainColumn section h2 .title {
    display: block;
    text-align: left;
    font-size: 3.125vw;
    margin-top: 1em;
  }
}
.session {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 30px 0;
}
@media only screen and (max-width: 820px) {
  .session {
    flex-direction: column;
    row-gap: 4.6vw;
    margin: 5.5vw 0;
  }
}
.session + .session {
  border-top: solid 1px #000;
  padding-top: 30px;
}
@media only screen and (max-width: 820px) {
  .session + .session {
    padding-top: 5.5vw;
  }
}
.session .table {
  text-align: center;
  width: 20.51%;
  color: #000;
}
@media only screen and (max-width: 820px) {
  .session .table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    column-gap: 3.125vw;
    text-align: left;
    width: auto;
  }
}
.session .table .time {
  display: block;
  font-size: 2.0rem;
  font-weight: 700;
  margin-top: .2em;
}
@media only screen and (max-width: 820px) {
  .session .table .time {
    font-size: 4.6875vw;
    margin-top: 0;
  }
}
.session .table .number {
  display: block;
  font-size: 1.4rem;
  margin-top: 1em;
}
@media only screen and (max-width: 820px) {
  .session .table .number {
    font-size: 3.125vw;
    margin-top: 0;
  }
}
.session .info {
  width: 75.64%;
}
@media only screen and (max-width: 820px) {
  .session .info {
    width: 100%;
  }
}
.session .info .condition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: .6em;
  font-size: 1.4rem;
  color: #000;
}
@media only screen and (max-width: 820px) {
  .session .info .condition {
    font-size: 3.125vw;
  }
}
.session .info .condition li {
  padding: .6em 1em;
  background-color: #EDF1F7;
}
.session .info .condition li.full {
  color: #FFF;
  background-color: #333;
}
.session .info .condition li.few {
  color: #FFF;
  background-color: #DB8245;
}
.session .info h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  letter-spacing: .05em;
  margin: 15px 0 20px;
}
@media only screen and (max-width: 820px) {
  .session .info h3 {
    font-size: 4.6875vw;
    margin: 4.375vw 0 ;
  }
}
.session .info .speaker h4 {
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 1em;
}
@media only screen and (max-width: 820px) {
  .session .info .speaker h4 {
    font-size: 3.125vw;
  }
}
.session .info .speaker .profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.session .info .speaker .profile .image {
  width: 100px;
  margin-right: 20px;
}
@media only screen and (max-width: 820px) {
  .session .info .speaker .profile .image {
    width: 23.4375vw;
  }
}
.session .info .speaker .profile .image img {
  clip-path: circle(50% at 50% 50%);
}
.session .info .speaker .profile .text {
  width: 100%;
}

.session .info .speaker .profile .text .position {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: .02em;
  color: #000;
  margin-bottom: .8em;
}
@media only screen and (max-width: 820px) {
  .session .info .speaker .profile .text .position {
    font-size: 3.125vw;
  }
}
.session .info .speaker .profile .text .name {
  display: block;
  font-size: 2.0rem;
  letter-spacing: .02em;
  color: #000;
}
@media only screen and (max-width: 820px) {
  .session .info .speaker .profile .text .name {
    font-size: 4.6875vw;
  }
}
.session .info .speaker .profile .text .en {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: .02em;
  color: #828282;
  margin-top: .8em;
}
@media only screen and (max-width: 820px) {
  .session .info .speaker .profile .text .en {
    font-size: 3.125vw;
  }
}
.session .info .list li {
  position: relative;
  font-size: 2.0rem;
  padding-left: 1em;
}
@media only screen and (max-width: 820px) {
  .session .info .list li {
    font-size: 3.4375vw;
  }
}
.session .info .list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.session .info .list li + li {
  margin-top: .65em;
}
.button {
  flex-wrap: wrap;
}
.session .info .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
@media only screen and (max-width: 820px) {
  .session .info .button {
    flex-wrap: wrap;
    row-gap: 3vw;
    margin-top: 6.25vw;
  }
}
.session .info .button a {
  text-align: center;
  width: 32%;
  font-size: 1.4rem;
  color: #FFF;
  background-color: #006EBE;
  padding: .57142857142em 0 .57142857142em .5em;
  border-radius: .35em;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  margin-top: 5px;
}

.session .info .button a.movie {
  background-color: #004ba3;
}

.session .info .button a .detail {
  text-align: center;
  width: 32%;
  font-size: 1.4rem;
  color: #FFF;
  background-color: #006EBE;
  padding: .57142857142em 0 .57142857142em .5em;
  border-radius: .35em;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.session .info .button .reserved {
  text-align: center;
  width: 32%;
  font-size: 1.4rem;
  color: #FFF;
  background-color: #577380;
  padding: .57142857142em .5em;
  border-radius: .35em;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
@media only screen and (max-width: 1127px) {
  .session .info .button a {
    font-size: 1.0vw;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 5px;
  }
  .session .info .button .reserved {
    font-size: 1.0vw;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 5px;
  }
  .session .info .button .detail {
    font-size: 1.0vw;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 5px;
  }
}

@media only screen and (max-width: 890px) {
  .session .info .button a {
    font-size: 0.525vw;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 5px;
  }
  .session .info .button .reserved {
    font-size: 0.525vw;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 5px;
  }
  .session .info .button .detail {
    font-size: 0.525vw;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 5px;
  }
}

@media only screen and (max-width: 820px) {
  .session .info .button a {
    width: 45%;
    font-size: 3.125vw;
  }
  .session .info .button .reserved {
    width: 45%;
    font-size: 3.125vw;
  }
  .session .info .button .detail {
    width: 45%;
    font-size: 3.125vw;
    margin-top: 5px;
  }
}

@media only screen and (max-width: 600px) {
  .session .info .button a {
    width: 45%;
    font-size: 3.125vw;
  }
  .session .info .button .reserved {
    width: 45%;
    font-size: 3.125vw;
  }
  .session .info .button .detail {
    width: 45%;
    font-size: 3.125vw;
  }
}

.session .info .button a:hover {
  background-color: #145bc8;
}
.session .info .button a.detail {
  background-color: #333;
  margin-top: 5px;
}
.session .info .button a.detail:hover {
  background-color: #000;
}
.session .info .button a span {
  position: relative;
  font-size: 1.4rem
  /*padding-left: 1.7em;*/
}

@media only screen and (max-width: 1132px) {
  .session .info .button a span {
    font-size: 0.9vw;
  }
}

@media only screen and (max-width: 820px) {
  .session .info .button a span {
    font-size: 3.125vw
  }
}
.session .info .button a span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.28571428571em;
  height: 1.28571428571em;
  background-size: 100%;
}
.session .info .button a span.arrow {
  position: relative;
  width: 1.28571428571em;
  height: 1.28571428571em;
  background-image: url("../img/iconButtonArrow.svg");
  background-repeat: no-repeat;
  float: right;
  top: 50%;
}
.session .info .button a div.arrow-hide {
  position: relative;
  height: 1.28571428571em;
  width: 0.1em;
  background-repeat: no-repeat;
  float: right;
  top: 50%;
  visibility: hidden;
}
/*.session .info .button a span.online::before {*/
/*  background-image: url("../img/iconOnline.svg");*/
/*}*/
/*.session .info .button a span.venue::before {*/
/*  background-image: url("../img/iconVenue.svg");*/
/*}*/
@media only screen and (max-width: 1127px) {
  .session .info .button a span::before {
    margin-right: 10px;
  }
}

.modal-content {
	position: fixed;
	display: none;
	z-index: 201;
	width: 90%;
  overflow: auto;
	max-width: 900px;
  max-height: 70vh;
  background: #fff;
	margin: 0;
	padding: 30px;
	border-radius: 18px;
  box-sizing: border-box;
}
@media only screen and (max-width: 820px) {
  .modal-content {
    padding: 6.25vw 3.125vw;
    border-radius: 5vw;
    max-height: 90vh;
  }
}
.modalInner {
  position: relative;
}
.modal-overlay {
	z-index: 200;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background-color: rgba(178, 178, 178, .7);
}
.modal-open:hover {
	cursor: pointer;
}
.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 22px;
  cursor: pointer;
}
@media only screen and (max-width: 820px) {
  .modal-close {
    top: 5vw;
    right: 5vw;
    width: 5vw;
  }
}
.modal-close:hover {
	opacity: .7;
}
.modalInner .session {
  flex-direction: column;
  row-gap: 20px;
  margin: 0;
}
@media only screen and (max-width: 820px) {
  .modalInner .session {
    row-gap: 3.125vw;
  }
}
.modalInner .session .table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  column-gap: 20px;
  text-align: left;
  width: auto;
}
.modalInner .session .table .time {
  margin-top: 0;
}
.modalInner .session .table .number {
  margin-top: 0;
}
.modalInner .session .info {
  width: auto;
}
.modalInner .session .info .outline {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: .05em;
  color: #000;
  margin-top: 20px;
}
@media only screen and (max-width: 820px) {
  .modalInner .session .info .outline {
    font-size: 3.28125vw;
    margin-top: 3.125vw;
  }
}
.modalInner .session .info .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}
@media only screen and (max-width: 820px) {
  .modalInner .session .info .tag {
    gap: 2.5vw;
    margin-top: 7.5vw;
  }
}
.modalInner .session .info .tag li {
  font-size: 1.2rem;
  color: #000;
  background-color: #edf1f7;
  padding: .5em 1.5em;
  border-radius: 1em;
}
@media only screen and (max-width: 820px) {
  .modalInner .session .info .tag li {
    font-size: 3.125vw;
  }
}

.session-anchor {
  scroll-margin-top: 100px;
}

span.notice-white{
  font-size: 14px;
  color: white;
}

@media only screen and (max-width: 844px) {
  span.notice-white {
    font-size: 12px;
  }
}
