@charset "utf-8";

main {
  padding: 30px 0 65px;
}
h2 {
	margin-bottom: 20px;
}
h3 {
  margin: 40px 0 50px;
}
.program tr th .clear-button {
  display: none;
}
form .program input,
form .program label.enable {
  cursor: pointer;
}
form .program tr th .clear-button {
  display: inline;
}
form .program tr th .clear-button input[disabled] {
  opacity: 0.5;
  cursor: auto;
}
form .program tr th .clear-button input[disabled]:hover {
  background-color: #333;
  color: #fff;
}
.no-session {
  /*background-color: #eee !important;*/
  /*display: none;*/
  background-color: #E6E6ED !important;
}
.bframe_clearbutton {
  background-color: #333;
  color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 11px;
}
.bframe_clearbutton:hover {
  background-color: #fff;
  color: #333;
}

.program tr th .clear-button {
  display: none;
}
form .program input,
form .program label.enable {
  cursor: pointer;
}
form .program tr th .clear-button {
  display: inline;
}

.chart-select {
  display: none;
}

/* program table */
.program {
  width: 100%;
  border-top: 1px solid #bbb;
  border-right: 1px solid #bbb;
  margin-bottom: 80px;
}
.program tr th {
  text-align: center;
  margin: 0;
  padding: 16px 0;
  background-color: #444;
  color: #fff;
  opacity: 0.9;
  font-size: 18px;
  font-weight: normal;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  flex-direction: column
}
.program th .th-time .bar {
  display: inline;
}
.program th .th-time .bar:after {
  content: " - ";
}
.program tr th .clear-button {
  margin-left: 10px;
}
.program tr th .th-title {
  margin: 0 0 0 10px;
  font-size: 16px;
}
.program tr td {
  position: relative;
  padding: 25px;
  background-color: #fff;
  border-left: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
}
.program tr td.non-active {
  opacity: 0.3;
}
.program tr td .program-container .select {
	display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.program tr td.selected {
  background-color: #E0E1FF;
}
.program tr td .time {
  font-size: 14px;
}
.program tr td .content .session2 {
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}
.program tr td .content .time.upper {
  /*	display: none;*/
}
.program .code input {
  display: none;
}
form .program .code input {
  vertical-align: -1px;
  margin-right: 4px;
}
form .program .code input[disabled] {
  display: none;
}
form .program .code input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
form .program .code input[type="checkbox"] + label {
  display: block;
  background-image: url(../images/registration/checkbox_off.svg),
    url(../images/registration/check_on.svg);

  background-size: 18px, 0;
  background-position: 0 6px, 0 2px;
  background-repeat: no-repeat, no-repeat;
  margin: 0;
  padding-left: 24px;
  min-height: 25px;
}
form .program .code input[type="radio"] + label {
  display: block;
  background-image: url(../images/registration/check_off.svg),
    url(../images/registration/check_on.svg);

  background-size: 18px, 0;
  background-position: 0 4px, 0 2px;
  background-repeat: no-repeat, no-repeat;
  margin: 0;
  padding-left: 24px;
  min-height: 25px;
}
form .program .code input[type="checkbox"]:checked + label,
form .program .code input[type="radio"]:checked + label {
  background-image: url(../images/registration/check_on.svg);
  background-size: 30px;
  background-position: -6px 50%;
}
form .program .code input[disabled] + label {
  opacity: 0.5;
  cursor: auto;
}

form .program .code.disabled input[disabled] + label {
  background-image: url(../images/registration/disabled.svg);
  background-size: 32px;
  background-position: -9px;
}

.program tr td .code .session-code {
  border: 2px solid #282828;
  padding: 0 6px;
  line-height: 1.6;
  font-size: 13px;
  display: inline-block;
  background-color: #fff;
  color: var(--black);
}

/* title link */
.program .title {
  margin: 12px 0 6px;
  font-size: 18px;
  font-weight: bold;
  color: var(--black);
}
.program .title a {
  color: #000;
  text-decoration: underline;
}
.program .title a:hover {
  text-decoration: none;
}

.program .subtitle {
  font-size: 16px;
  margin: 2px 0 6px;
  color: var(--black);
}
.program .speaker {
  font-size: 15px;
  line-height: 1.4;
  margin: 15px 0;
  color: var(--black);
}
.program .flex-box.speaker {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}
.program .flex-box.speaker p {
  margin: 0;
}
.program .flex-box.speaker p em {
  font-weight: bold;
  font-style: normal;
}
.program .flex-box.speaker .photo {
  width: 115px;
  height: auto;
  margin-right: 20px;
}
.program .flex-box.speaker .photo img {
  width: 100%;
}
.program .additional-info {
  text-align: left;
}

/* state */
.program span.state {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 10px;
  font-size: 13px;
  color: #fff;
  line-height: 1.8;
  border-radius: 2px;
}
.program span.state.soon {
  background-color: #f37e00;
}
.program span.state.full {
  background-color: #c73131;
}
.program span.state img {
  width: 14px;
  vertical-align: -3px;
  margin-right: 2px;
}

/* tags */
.program .tag_area {
	width: 100%;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.program .session-tags {
  display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    box-sizing: border-box;
    gap: 10px;
    margin: 0;
}

.program .session-tags span {
	background-color: #005073;
	color: #fff;
	border-radius: 4px;
	padding: 6px 14px;
	font-size: 11px;
}
.program .session-tags span[class^="ca-"] {
	background-color: #FFA58F;
}
.program .session-tags span[class^="th-"] {
	background-color: #EB644B;
}
.program .session-tags span[class^="ta-"] {
	background-color: #44E4EF;
}
.program .session-tags span[class^="tl-"] {
	background-color: #10B8CD;
}

/* break */
.program .break {
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  color: var(--black);
  background-color: #e6e6e6;
}


/* option */
.program .option {
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  display: inline-block;
  text-align: center;
  margin-top: 10px;
  width: 48%;
}
.program .option.color-a {
  border: 1px solid #3786d0;
  color: #3786d0;
}
.program .option.color-b {
  border: 1px solid #5b9856;
  color: #5b9856;
}

/* download */
.session-box .download {
  background-color: #2196f3;
  margin: 8px 0 0;
  display: inline-block;
  padding: 1px 5px;
  border-radius: 3px;
}
.session-box .download:hover {
  opacity: 0.8;
}
.session-box .download a {
  color: #fff !important;
  font-size: 12px;
  text-decoration: none !important;
}
.session-box .download a img {
  width: 20px;
  margin-right: 3px;
}
.program .download {
  margin: 12px 0;
}
.program .download a {
  background-color: #585858;
  color: #fff;
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 8px 0;
  border-radius: 2px;
  border: none;
  max-width: 200px;
  margin: 20px auto 0;
}
.program .download a img {
  margin-right: 6px;
}
.program .no-download {
  margin: 20px auto 0;
  padding: 8px;
  background-color: #ccc;
  max-width: 150px;
}
.program .check-box span.state {
  float: none;
  display: inline-block;
  margin-top: 5px;
}
.program .check-box span.state img {
  display: inline-block;
}

/* interpretation */
.interpretation {
  width: 70px;
  margin: 20px 0 0 0;
  background-color: #585858;
  display: flex;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 2px;
  line-height: 1.5;
  border-radius: 2px;
}
.interpretation img {
  margin-right: 8px;
  width: 16px;
}
.silent_session {
  width: 175px;
  margin: 20px 0 0 0;
  background-color: #585858;
  display: flex;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 2px;
  line-height: 1.5;
  border-radius: 2px;
}
.silent_session img {
  margin-right: 8px;
  width: 16px;
}
/* online session */
#online-session table {
  border-collapse: separate;
  margin: 20px 0;
  padding: 0;
  border: none;
}
#online-session table td {
  padding: 15px 36px;
  border: 1px solid #bbb;
}
#online-session table td label {
  font-size: 16px;
  line-height: 1.8;
}

/* exhibition session */
#exhibition-session table {
  border-collapse: separate;
  margin: 20px 0;
  padding: 0;
  border: none;
}
#exhibition-session table td {
  padding: 15px 36px;
  border: 1px solid #bbb;
}
#exhibition-session table td label {
  font-size: 16px;
  line-height: 1.8;
}

#partner-exchange tr {
	display: grid;
	grid-template-columns: 15% 1fr;
}
#partner-exchange trth{
	grid-row: 1 / span 2;
}

/* keynote session */
#keynote-session tr {
  display: grid;
  /*grid-template-rows: 1fr;*/
  /*grid-template-columns: repeat(1, 1fr);*/
   grid-template-columns: 15% 1fr;
}
#keynote-session tr th {
  width: inherit;
  /*grid-column: 1 / 2;*/
  grid-row: 1 / span 2;
}
#keynote-session tr td:first-of-type {
  /*display: flex;*/
  /*align-items: center;*/
  padding: 10px 36px 25px;
  /*background-color: #e6e6e6;*/
  border: 1px solid #d1d2d3;
  box-shadow: none;
}
#keynote-session table.selected tr td:first-of-type {
  /*background-color: #e6e6e6;*/
}

#keynote-session tr td:first-of-type .program-container {
  display: flex;
  flex-wrap: wrap;
}

#keynote-session tr td:first-of-type .select,
#keynote-session tr td:first-of-type .select label,
#keynote-session tr td:first-of-type .content {
  display: inline-block;
}
#keynote-session tr td:first-of-type .content {
  flex-grow: 1;
      padding: 20px 0 0;
}
#keynote-session tr td:first-of-type .content .title {
  margin: 0 0 10px;
  color: var(--black);
}
#keynote-session tr td:first-of-type .select {
  margin-right: 10px;
  white-space: nowrap;
  width: 100%;
  display: flex;
}
#keynote-session tr td .time.upper {
  font-size: 18px;
  padding-bottom: 10px;
}
#keynote-session tr td .time.lower {
  display: none;
}
#keynote-session tr td:nth-child(2) .time.upper {
  display: none;
}
#keynote-session tr td .select {
  display: none;
}
#keynote-session table.selected td {
  background-color: #E0E1FF;
}

/* lunch session */
#lunch-session tr {
  display: grid;
  /*grid-template-rows: 1fr;*/
  /*grid-template-columns: repeat(2, 1fr);*/
  grid-template-columns: 15% 1fr 1fr 1fr;
}
#lunch-session tr th {
  width: inherit;
  /*grid-column: 1 / 3;*/
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
}
#lunch-session tr td .time.upper {
  display: none;
}
#lunch-session .program {
	margin: 0;
}
.comment {
	font-size: 15px;
	margin: 10px auto 80px;
}

/* breakout session */
#breakout-session .program {
	border-right: none;
}
#breakout-session tr {
  display: grid;
  /*grid-template-rows: 1fr;*/
  /*grid-template-columns: repeat(4, 1fr);*/
  grid-template-columns: 15% 1fr 1fr 1fr;
  border-right: 1px solid #bbb;
}
#breakout-session tr th {
    width: inherit;
    grid-row: 1 / span 3;
}

/*B-4のセッションがあるか未定のため一時的に追加（y_kato 07/01）*/
#breakout-session tr:nth-child(7) {
	background-color: #E6E6ED;
}
#breakout-session tr:nth-child(7) td.no-session {
	display: none;
}
#breakout-session tr:nth-child(7) td:nth-child(7) {
	border-right: 1px solid #bbb;
}
/*end*/


#breakout-session tr:nth-child(1) {
	border-top: 1px solid #bbb;
}
#breakout-session tr:nth-child(1) td.no-session {
	display: none;
}
#breakout-session tr:nth-child(1) td:nth-child(9).no-session,
#breakout-session tr:nth-child(1) td:nth-child(10).no-session {
	display: block;
}
#breakout-session tr:nth-child(2) {
	grid-template-columns: 15% 1fr;
}
#breakout-session tr:nth-child(2) th{
	grid-row: 1 / span 2;
}
#breakout-session tr:nth-child(2) td.break {
	grid-column: 2;
	border-top: none;
}
#breakout-session tr:nth-child(3) td.no-session {
	display: none;
}
#breakout-session tr:nth-child(3) td:nth-child(9).no-session,
#breakout-session tr:nth-child(3) td:nth-child(10).no-session {
	display: block;
}
#breakout-session tr:nth-child(4) {
	grid-template-columns: 15% 1fr;
}
#breakout-session tr:nth-child(4) th{
	grid-row: 1 / span 2;
}
#breakout-session tr:nth-child(4) td.break {
	grid-column: 2;
	border-top: none;
}
#breakout-session tr:nth-child(6) {
	grid-template-columns: 15% 1fr;
}
#breakout-session tr:nth-child(6) th{
	grid-row: 1 / span 2;
}
#breakout-session tr:nth-child(6) td.break {
	grid-column: 2;
	border-top: none;
}
#breakout-session tr:nth-child(8) {
	grid-template-columns: 15% 1fr;
}
#breakout-session tr:nth-child(8) th{
	grid-row: 1 / span 2;
}
#breakout-session tr:nth-child(8) td.break {
	grid-column: 2;
	border-top: none;
	/*B-4のセッションがあるか未定のため一時的に追加（y_kato 07/01）*/
	border-top: 1px solid #bbb;	
}
/*#breakout-session tr th {*/
/*  width: inherit;*/
/*  grid-column: 1 / 5;*/
/*}*/
#breakout-session tr td .time.upper {
  display: none;
}
#breakout-session tr td.break {
  grid-column: 1 / 5;
  border-top: 1px solid #bbb;
}
#breakout-session tr:nth-child(2) th .clear-button,
#breakout-session tr:nth-child(4) th .clear-button,
#breakout-session tr:nth-child(6) th .clear-button,
#breakout-session tr:nth-child(8) th .clear-button {
	display: none;
}
/* reception */
#reception table {
  margin-bottom: 20px;
}
#reception tr {
  display: grid;
  /*grid-template-rows: 1fr;*/
  /*grid-template-columns: repeat(1, 1fr);*/
  /*gap: 0 10px;*/
 grid-template-columns: 15% 1fr;
}
#reception tr th {
  width: inherit;
  grid-column: 1 / 2;
  display: flex;
  flex-direction: column;
}

.registration-notice {
  font-size: 15px;
  margin-bottom: 10px;
}
ul.notice {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.notice li {
  font-size: 14px;
  text-indent: -8px;
  padding-left: 8px;
  line-height: 1.4;
}
img.additional-info {
  display: block;
  margin-top: 10px;
}

/* search */
#search {
	padding: 0 60px;
}
#search .search-container {
	display: flex;
	gap: 50px;
	/*margin: 0 0 20px 0;*/
	padding: 0;
	/*border-bottom: 1px solid #ccc;*/
} 
#search .search-container p {
	width: 140px;
	flex-shrink: 0;
	font-weight: bold;
	font-size: 13px;
	margin: 0;
	padding: 5px 0 0 0;
} 
.keyword_list {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	/*justify-content: center;*/
	list-style: none;
	align-items: center;
	margin: 0 0 15px;
}
.keyword_list .flex_items a {
	background: #f0f0f0;
	color: #23282E;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 13px;
	border: 1px solid #f0f0f0;
	display: block;
	width: 100%;
}

.keyword_list .flex_items a:hover {
	border: 1px solid #7855FA;
	background: #fff;
	text-decoration: none;
}
.keyword_list .flex_items.active a {
	border: 1px solid #7855FA;
/*	background: #fff; */
	background: #7855FA;
	color: #fff;
}

.keyword_list .flex_items.refine1 a:hover {
	border: 1px solid #FFA58F;
	background: #fff;
	text-decoration: none;
}
.keyword_list .flex_items.refine1.active a {
	border: 1px solid #FFA58F;
	background: #FFA58F;
	color: #fff;
}
.keyword_list .flex_items.refine2 a:hover {
	border: 1px solid #EB644B;
	background: #fff;
	text-decoration: none;
}
.keyword_list .flex_items.refine2.active a {
	border: 1px solid #EB644B;
	background: #EB644B;
	color: #fff;
}
.keyword_list .flex_items.refine3 a:hover {
	border: 1px solid #44E4EF;
	background: #fff;
	text-decoration: none;
}
.keyword_list .flex_items.refine3.active a {
	border: 1px solid #44E4EF;
	background: #44E4EF;
	color: #fff;
}
.keyword_list .flex_items.refine4 a:hover {
	border: 1px solid #10B8CD;
	background: #fff;
	text-decoration: none;
}
.keyword_list .flex_items.refine4.active a {
	border: 1px solid #10B8CD;
	background: #10B8CD;
	color: #fff;
}

.clear-refine {
	margin: 10px auto 40px;
	text-align: center;
	position: relative;
	width: 150px;
}
.clear-refine input {
	width: 100%;
	display: block;
	padding: 10px 15px 10px 15px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	border: 1px solid #ccc;
	border-radius: 45px;
	transition: background-color 0.3s ease, color 0.3s ease;
	cursor: pointer;
}

.clear-refine input:hover {
  background-color: #333;
  color: #fff;
}

.clear-refine input:active {
  background-color: #111;
  color: #fff;
}

.session-announce {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	padding: 20px 0;
}
.silent_icon {
	display: flex;
	margin: 0 0 20px;
	align-items: center;
}
.silent_icon .icon {
	margin: 0 5px 0 0;
}
.silent_icon p {
	margin: 0;
	font-size: 14px;
}
#search .explan-container {
	width: 90%;
}
#search .explan-container .explan {
	display: flex;
	flex-direction: column;
	font-size: 12px;
	gap: 5px;
	margin-bottom: 10px;
}
#search .explan-container .explan p {
	font-weight: bold;
	width: auto;
}

/* ？の吹き出し　*/

#search .search-container .technical_level {
	display: flex; 
	align-items: flex-start;
	gap: 6px;
}
#search .search-container .technical_level p {
	width: auto;
}
.tt-wrap {
  position: relative;
  display: inline-flex;
  padding: 4px;
  margin: -4px 0 -4px 2px;
  vertical-align: middle;
}
.tt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #666;
  font-size: 11px;
  border: 1px solid #ccc;
  cursor: pointer;
}
.tt-bubble {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 140%;
  left: 0;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  padding: 14px 16px;
  border-radius: 8px;
  white-space: normal;
  width: 320px;
  line-height: 1.7;
  transition: opacity 0.15s ease;
  z-index: 10;
  display: block;
}

.tt-bubble p {
  margin: 0 0 4px;
  font-weight: 500;
  color: #fff;
}

.tt-bubble p:not(:first-child) {
  margin-top: 12px;
}

.tt-bubble span {
  display: block;
  color: #ccc;
}

/* PC：hoverで表示 */
@media (hover: hover) {
  .tt-wrap:hover .tt-bubble {
    visibility: visible;
    opacity: 1;
  }
}

/* スマホ：タップで開いた状態 */
.tt-wrap.is-active .tt-bubble {
  visibility: visible;
  opacity: 1;
}