@charset "utf-8";

.session_detail {
	position: relative;
	max-width: 700px;
	min-width: initial;
	min-width: auto;
	min-height: initial;
	min-height: auto;
	margin: 0;
	padding: 10px 20px 10px 30px;
	overflow: hidden;
	color: #333333;
	line-height: 1.5;
}
.session_detail div.container {
	padding: 0 12px 15px 20px;
}
.session_detail div.header {
	height: 34px;
}
.session_detail div.header span.code {
	font-size: 14px;
	background-color: #aaa;
	color: #fff;
	padding: 4px 10px;
}
.session_detail div.header span.time {
	font-size: 15px;
	margin-left: 4px;
	color: var(--white);
}
.session_detail div.title {
	font-size: 20px;
	padding: 10px;
	margin: 0 0 10px 0;
	/*background-color: #f0f0f0;*/
	/*background: #A13391;*/
	background: linear-gradient(90deg,rgba(161, 51, 145, 1) 0%, rgba(254, 123, 102, 1) 100%);
	color: var(--white);
	font-weight: bold;
	border-radius: 5px;
}
.session_detail span.subtitle {
	display: block;
	font-size: 15px;
}
.session_detail div.scroll-container {
	overflow: auto;
}
.session_detail div.contents {
	/*padding-right: 10px;*/
	/*overflow-y: auto!important;*/
}

.session_detail div.contents::-webkit-scrollbar {
  width: 6px; /* スクロールバーの幅 */
}

.session_detail div.contents::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.3);
}

.session_detail div.contents::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
}


.session_detail .flex-box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.session_detail .flex-box .photo {
	width: 80px;
}
.session_detail .flex-box .photo img {
	border-radius: 50%;
	width: 100%;
	height: auto;
}

.session_detail div.speaker {
	clear: both;
	font-size: 15px;
	padding: 10px 0;
}
.session_detail div.speaker .position {
	width: 80%;
}

.session_detail div.speaker .position p {
	margin: 0;
	text-align: left;
}
.session_detail div.speaker .position p em {
	font-weight: bold;
	font-style: normal;
}
.session_detail div.overview {
	clear: both;
	font-size: 15px;
	padding: 10px;
	border-radius: 5px;
	background: var(--white);
}
.session_detail div.translation {
	clear: both;
	padding: 15px 0;
}
