@charset "UTF-8";

/* ==================================================

	common.css
	Version: 0.1

	オリジナルクラス命名規則（Bootstrapコンフリクト回避の為FLOCSS凝縮）
	[ UTILITY ] u-
	[ COMPONENT ] c-
	[ LAYOUT ] l-
	[ PROJECT ] p

	Bootstrap v5.3 BREAKPOINT
	@media (min-width: 576px)
	@media (min-width: 768px)
	@media (min-width: 992px)
	@media (min-width: 1200px)
	@media (min-width: 1400px)
*/

/* ==================================================

	[ CONFIG ]

*/
:root {
	--omnissa-color-text-body: #001E60;
	--omnissa-color-nightfall-blue: #28334a;
	--omnissa-color-indigo: #4a12f0;
	--omnissa-color-magenta-aa: #b704e2;
	--omnissa-color-neon: #c9ff27;
	--omnissa-color-btn-hover: #2a1090;
	--color-gray: #6C757D;
	--color-border: #C8C7E4;
}

/* ==================================================

	[ HTML ]

*/
html {
	scroll-behavior: auto !important;
}
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	line-height: 1.5;
	font-weight: 400;
	font-family: YakuHanJP, Outfit, "Open Sans", Helvetica, Arial, "Noto Sans JP", sans-serif;
	color: var(--omnissa-color-nightfall-blue);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
::-webkit-input-placeholder {
	color: var(--color-gray);
}
::-moz-placeholder {
	color: var(--color-gray);
}
:-moz-placeholder {
	color: var(--color-gray);
}
:-ms-input-placeholder {
	color: var(--color-gray);
}
::placeholder {
	color: var(--color-gray);
}
.device-sp a,
.device-sp button {
	outline: 0;
}

/* ==================================================

	[ BOOTSTRAP OVERWRITE ]

*/
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	margin-bottom: initial;
	line-height: 1.3;
	color: var(--omnissa-color-text-body);
}
p:last-child {
	margin-bottom: 0;
}
a {
	color: var(--omnissa-color-indigo);
	transition: color 0.3s ease;
}
a:hover {
	color: var(--omnissa-color-magenta-aa);
}
em {
	font-style: inherit;
}
ul, ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.lead {
	font-weight: inherit;
	font-size: inherit;
	line-height: 1.5;
}
.badge {
	padding: 0.15em 0.65em;
	border-radius: 4px;
	font-style: normal;
	font-size: 12px;
	line-height: 1.5;
}
.invalid-feedback {
	font-weight: 700;
	font-size: 14px;
}
.invalid-feedback.is-invalid {
	display: block;
}
.form-control {
	font-size: 16px;
	border-color: #bbb;
	color: var(--omnissa-color-nightfall-blue);
}
.form-select {
	width: auto;
	border-color: #bbb;
	font-size: 16px;
}
.form-check-input {
	margin: 0;
	border-color: #bbb;
	width: 18px;
	height: 18px;
}
.form-check-input:checked {
	background-color: var(--omnissa-color-indigo);
	border-color: var(--omnissa-color-indigo);
}
.form-check-input:disabled {
	background-color: #bbb;
	opacity: .5;
}
.form-control.is-valid,
.form-control.is-invalid {
	padding-right: 0.75rem !important;
	background-image: none !important;
}
.form-select.is-valid,
.form-select.is-invalid {
	padding-right: 2.25rem !important;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}

.container {
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1314px !important;
}
.container-short {
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
	max-width: 896px;
}
.container .container-short {
	padding-left: 0;
	padding-right: 0;
	max-width: 856px;
}
@media (min-width: 768px) {
	.container,
	.container-short {
		padding-left: 30px;
		padding-right: 30px;
	}
}

/* ==================================================

	[ MAIN ]

*/
main {
	overflow: hidden;
	flex: 1;
	padding: 80px 0 0 0;
}
@media (min-width: 768px) {
	main {
		display: flex;
		flex-direction: column;
		padding: 90px 0 0 0;
	}
}


/* ==================================================

	HEADER

*/
.header {
	position: fixed;
	z-index: 100;
	width: 100%;
	max-height: 100dvh;
	background-color: #fff;
	box-shadow: 0 1px 4px rgba(0,0,0,0.1);
	color: #000;
	transition: transform 0.3s ease;
	overscroll-behavior: none;
}
.header::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background-color: #fff;
}
.modal-open .header {
	padding-right: 0;
}
.header .container {
	position: relative;
}
.header .navbar {
	position: relative;
	padding: 0;
}
.header .logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	width: 80px;
	height: 80px;
}
.header .logo a {
	display: block;
}
.header .logo img {
	width: 100%;
}
.header .navbar-toggler {
	position: absolute;
	top: 20px;
	right: 0;
}
.header .button-nav .btn {
	padding-left: 0;
	padding-right: 0;
}
.header .nav-item {
	font-weight: 700;
	font-size: 16px;
}
.header .nav-item a {
	color: var(--omnissa-color-text-body);
	text-decoration: none;
	transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}
.header .nav-item > a {
	display: flex;
	align-items: center;
}
.header .nav-item > a.current {
	color: var(--omnissa-color-magenta-aa);
}
.header .dropdown-toggle::after {
	content: "\f078";
	display: inline-block;
	margin-left: 5px;
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	border: 0;
	transition: transform 0.3s ease;
}
.header .dropdown-toggle[aria-expanded="true"]::after {
	transform: rotate(180deg);
}
.header .dropdown-menu {
	padding: 0;
	background-color: #071333;
	border: 0;
	font-weight: 700;
}
.header .dropdown-menu a {
	color: #C8C7E2;
}
.header .dropdown-menu a:hover {
	color: inherit !important;
}
.header .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
	display: block;
}
.header .dropdown-toggle-sub::after {
	content: "\f078";
	display: inline-block;
	margin-left: 5px;
	font-family: "Font Awesome 5 Pro";
	border: 0;
	transition: transform 0.3s ease;
}
.header .dropdown-toggle-sub[aria-expanded="true"]::after {
	transform: rotate(180deg);
}
.header .dropdown-menu-sub {
	overflow: hidden;
	height: 0;
	background-color: #343a40;
	color: #fff;
	transition: height 0.4s ease;
}
.header .dropdown-menu-sub a {
	color: inherit !important;
}
.header .dropdown-menu-sub a.current {
	background-color: var(--omnissa-color-indigo) !important;
}
.header .dropdown-divider {
	margin: 0 0 5px 0;
}
/* HOVER */
@media (any-hover: hover) {
	.header .nav-item a:hover {
		color: var(--omnissa-color-magenta-aa);
	}
	.header .dropdown-menu a:hover {
		color: var(--omnissa-color-neon) !important;
	}
}
@media (max-width: 991px) {
	.header .navbar-collapse {
		margin: 0 -20px;
	}
	.header .navbar-nav {
		border-bottom: 1px solid #ccc;
	}
	.header .nav-item {
		border-top: 1px solid #ccc;
	}
	.header .nav-item > a {
		padding: 12px 20px;
	}
	.header .dropdown-menu {
		overflow: hidden;
		display: block !important;
		margin: 0;
		height: 0;
		border-radius: 0;
		font-size: 16px;
		transition: height 0.4s ease;
	}
	.header .dropdown-menu ul {
		padding: 5px 0;
	}
	.header .dropdown-menu a {
		display: block;
		padding: 10px 20px;
	}
	.header .dropdown-menu-sub ul {
		padding: 5px 0;
	}
	.header .button-nav {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		padding: 15px 15px;
		border: 0;
		gap: 15px;
	}
	.header .button-nav li {
		width: 100%;
	}
	.header .button-nav .btn {
		display: block;
	}
}
@media (min-width: 768px) {
	.header .logo {
		justify-content: flex-start;
	}
	.header::before {
		height: 90px;
	}
	.header .logo {
		height: 90px;
	}
	.header .navbar-toggler {
		top: 20px;
		right: 0;
		padding-top: 8px;
		padding-bottom: 8px;
	}
}
@media (min-width: 992px) {
	.header {
		width: 100%;
	}
	.header {
		overflow-y: visible;
	}
	.header .navbar {
		padding: 0;
	}
	.header .navbar-collapse {
		justify-content: flex-end;
		gap: 30px;
	}
	.header .header-navbar-nav {
		gap: 30px;
	}
	.header .button-nav {
		gap: 20px;
	}
	.header .dropdown-menu {
		left: 50%;
		margin-top: 12px;
		padding: 14px 10px;
		min-width: initial;
		height: auto !important;
		white-space: nowrap;
		font-size: 16px;
		border-radius: 24px;
		transform: translateX(-50%);
		overflow: hidden;
	}
	.header .dropdown-menu a {
		display: block;
		padding: 6px 10px;
	}
	.header .dropdown-menu ul {
		padding: 0;
	}
	.header .dropdown-menu-sub ul {
		padding: 0;
	}
	.header .button-nav .btn {
		display: block;
		margin: 0 0 0 20px;
		padding-left: 25px;
		padding-right: 25px;
	}
}

/* ==================================================

	[ FOOTER ]

*/
.footer {
	padding: 24px 0;
	background-color: #232A4A;
}
.footer .copyright {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	font-weight: 500;
	font-size: 16px;
	color: #c8c7e2;
}
.footer .copyright ul {
	display: flex;
	gap: 5px;
}
.footer .copyright ul a {
	text-decoration: none;
	color: inherit;
}
.footer .copyright ul a:hover {
	color: var(--omnissa-color-neon);
}
.footer .copyright ul li {
	display: flex;
	align-items: center;
	gap: 5px;
}
.footer .copyright ul li:first-child span {
	display: none;
}
.footer .copyright small {
	flex-basis: 100%;
	text-align: center;
	font-size: inherit;
}
@media (min-width: 1200px) {
	.footer .copyright ul li:first-child span {
		display: block;
	}
	.footer .copyright small {
		flex-basis: auto;
	}
}

/* ==================================================

	[ UTILITY ] COLOR

*/
.u-color-red {
	color: #E2493D;
}

/* ==================================================

	[ COMPONENT ] NAV BACK

*/
.c-nav-back {
	display: flex;
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 16px;
}
.c-nav-back a {
	display: flex;
	align-items: center;
	gap: 5px;
	text-decoration: none;
}

/* ==================================================

	[ COMPONENT ] BUTTON

*/
.c-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	min-height: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
	border-radius: 999px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	resize: none;
	cursor: pointer;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, gap 0.3s ease;
}
.c-btn:disabled {
	opacity: 0.5;
	cursor: default;
}
.c-btn i {
	display: block;
	position: relative;
	top: -1px;
	text-align: right;
	font-size: 128%;
}
.c-btn i.fa-calendar-alt {
	font-size: 134%;
}
.c-btn-standard {
	border: 2px solid var(--omnissa-color-indigo);
	background-color: var(--omnissa-color-indigo);
	color: #FFF;
}
.c-btn-standard:hover {
	border-color: var(--omnissa-color-btn-hover);
	background-color: var(--omnissa-color-btn-hover);
	color: var(--omnissa-color-neon);
	gap: 20px;
}
.c-btn-outline-standard {
	border: 2px solid var(--omnissa-color-indigo);
	background-color: #FFF;
	color: var(--omnissa-color-indigo);
}
.c-btn-outline-standard:hover {
	border-color: var(--omnissa-color-btn-hover);
	background-color: var(--omnissa-color-btn-hover);
	color: var(--omnissa-color-neon);
	gap: 20px;
}
@media (min-width: 768px) {
	.c-btn {
		padding: 10px 30px;
	}
}

/* ==================================================

	[ COMPONENT ] HEADING

*/
.c-heading-register {
	margin-bottom: 20px;
	text-align: center;
	font-size: 26px;
}
@media (min-width: 768px) {
	.c-heading-register {
		margin-bottom: 30px;
		font-size: 40px;
	}
}

/* ==================================================

	[ COMPONENT ] SESSION PROPERTY

*/
.c-session-property {
	font-weight: 700;
	font-size: 12px;
}
.c-session-property > div {
	display: flex;
	align-items: center;
	gap: 3px;
}
.c-session-property > div i {
	width: 1.2em;
	text-align: center;
}

/* ==================================================

	[ COMPONENT ] CALENDER

*/
.c-calendar {
	display: flex;
}
.c-calendar .c-btn {
	font-weight: 500;
}
.c-calendar .dropdown-menu {
	padding: 15px 20px;
	border: 0;
	background-color: #071333;
}
.c-calendar .dropdown-menu ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-weight: 700;
}
.c-calendar .dropdown-menu a {
	text-decoration: none;
	color: #C8C7E2;
}
.c-calendar .dropdown-menu a:hover {
	color: var(--omnissa-color-neon);
}

/* ==================================================

	[ COMPONENT ] ALERT

*/
.c-alert-standard {
	padding: 20px;
	background-color: #F6F5FB;
	border-radius: 4px;
	font-size: 14px;
}
.c-alert-standard .h {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 18px;
}
.c-alert-standard .hr {
	margin: 20px 0;
	border-top: 1px solid rgba(0,30,96,0.25);
}
@media (min-width: 768px) {
	.c-alert-standard {
		padding: 25px 30px;
		font-size: 16px;
	}
	.c-alert-standard .h {
		font-size: 20px;
	}
}

/* ==================================================

	[ COMPONENT ] BADGE

*/
.c-badge {
	display: flex;
	text-align: center;
}
.c-badge span {
	position: relative;
	display: block;
	font-weight: 500;
	font-size: 12px;
	line-height: 1;
}
.c-badge--status-full span,
.c-badge--status-few span {
	padding: 0.2em 0.4em;
	font-weight: 500;
	font-size: 12px;
	line-height: 1.1;
	color: #fff;
}
.os-ios .c-badge--status-full span,
.os-ios .c-badge--status-few span {
	padding: 0.2em 0.4em;
}
.c-badge--status-full span {
	background-color: #B0BEDB;
	border: 1px solid #B0BEDB;
	color: #57637D;
}
.c-badge--status-few span {
	background-color: #B704E2;
	border: 1px solid #B704E2;
}
.c-badge--status-few span i {
	display: block;
	font-size: 94%;
	line-height: 1;
}
.c-badge--type span {
	padding: 0.2em 0.4em;
	border: 1px solid var(--omnissa-color-text-body);
	color: var(--omnissa-color-text-body);
}
.os-ios .c-badge--type span {
	padding: 0.2em 0.4em;
}
.badge-required {
	background-color: #870036;
}
.badge-optional {
	background-color: var(--color-gray);
}

/* ==================================================

	[ LAYOUT ] BUTTONS

*/
.l-btns {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

@media (min-width: 768px) {
	.l-btns {
		gap: 20px;
	}
	.l-btns-col2 > div {
		display: flex;
		width: 100%;
	}
	.l-btns-col2 > div:first-child {
		justify-content: flex-end;
	}
}

/* ==================================================

	[ LAYOUT ] COMPLETE

*/
.l-complete {
	padding: 30px 0 50px 0;
}
.l-complete .complete-body {
	text-align: center;
}
.l-complete .complete-body .icon {
	margin: 40px 0 50px 0;
	padding: 0;
	font-size: 120px;
	color: var(--omnissa-color-indigo);
}
.l-complete .complete-body .icon i {
	display: block;
}
.l-complete .complete-body .subject {
	font-weight: 500;
	font-size: 20px;
}
.l-complete .complete-body .subject-lg {
	font-size: 20px;
}
.l-complete .complete-body .announcement {
	display: flex;
	justify-content: center;
}
.l-complete .complete-body .announcement .label {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 5px 15px;
	min-height: 40px;
	background-color: #02782E;
	border-radius: 4px;
	font-weight: 400;
	font-size: 14px;
	color: #FFF;
}
.l-complete .complete-body .lead {
	margin: 20px 0;
}
@media (min-width: 768px) {
	.l-complete {
		padding: 50px 0 100px 0;
	}
	.l-complete .complete-body .lead {
		margin: 40px 0;
	}
	.l-complete .complete-body .subject-lg {
		font-size: 24px;
	}
	.l-complete .complete-body .announcement .label {
		padding: 5px 20px;
	}
	.l-complete .complete-body .announcement .label br {
		display: none;
	}
}

/* ==================================================

	[ LAYOUT ] REGISTER STEPS

*/
.l-register-steps {
	padding: 10px 0;
	background-color: #F6F5FB;
}
.l-register-steps ul {
	display: flex;
	justify-content: center;
	text-align: center;
	margin: 0 -60px;
	font-weight: 700;
	font-size: 10px;
	line-height: 1.3;
	transform: scale(0.8);
}
.l-register-steps li {
	width: 100%;
	position: relative;
}
.l-register-steps li::before {
	content: '';
	display: block;
	position: absolute;
	top: 15px;
	left: 50%;
	right: -50%;
	height: 2px;
	background-color: #C8C7E4;
}
.l-register-steps li:last-child::before {
	display: none;
}
.l-register-steps li div {
	position: relative;
}
.l-register-steps li div i {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	margin-bottom: 10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #C8C7E4;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 32px;
}
.l-register-steps li div p {
	margin: 0;
	padding: 0 0.2em;
}
.l-register-steps li div span {
	display: inline-block;
}
.l-register-steps li.active::before {
	margin-top: -2px;
	height: 4px;
	background-color: var(--omnissa-color-indigo);
}
.l-register-steps li.active {
	color: var(--omnissa-color-indigo);
}
.l-register-steps li.active div i {
	background-color: var(--omnissa-color-indigo);
	background-image: url(../img/check-register-steps.svg);
	background-size: contain;
	color: transparent;
}
@media (min-width: 768px) {
	.l-register-steps {
		padding: 25px 0 20px 0;
	}
	.l-register-steps .container {
		padding: 0;
	}
	.l-register-steps ul {
		margin: 0 auto;
		max-width: 740px;
		font-size: 12px;
		transform: scale(1);
	}
	.l-register-steps.narrow ul {
		max-width: 680px;
	}
}
@media (min-width: 992px) {
	.l-register-steps ul {
		max-width: 940px;
		font-size: 14px;
	}
}

/* ==================================================

	[ LAYOUT ] REGISTER INPUT

*/
.l-register-input {
	padding: 30px 0 50px 0;
}
.l-register-input fieldset {
	margin-top: 50px;
	border-bottom: 1px solid var(--color-border);
	font-size: 16px;
}
.l-register-input fieldset .h {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 24px;
}
.l-register-input .th {
	font-weight: 700;
}
.l-register-input .th .badge {
	font-size: 14px;
}
.l-register-input h2 span {
	display: block;
	margin: 5px 0 0 0;
	font-weight: 400;
	font-size: 14px;
}
@media (min-width: 768px) {
	.l-register-input {
		padding: 50px 0 100px 0;
	}
	.l-register-input h2 span {
		display: inline-block;
		margin: 0 0 0 1em;
	}
	.l-register-input fieldset {
		margin-top: 50px;
	}
}
/**/
.l-register-input .code {
	padding: 10px 15px 15px 15px;
	background-color: #F6F5FB;
	border-radius: 4px;
	font-size: 14px;
}
.l-register-input .code dl {
	margin: 0;
}
.l-register-input .code dt {
	flex-shrink: 0;
	padding-top: 7px;
	font-weight: inherit;
}
.l-register-input .code dd {
	flex: 1;
	margin: 10px 0 0 0;
}
@media (min-width: 768px) {
	.l-register-input .code {
		padding: 20px 30px;
		font-size: 16px;
	}
	.l-register-input .code dl {
		display: flex;
	}
	.l-register-input .code dd {
		margin: 0;
		padding: 0 0 0 20px;
	}
}
@media (min-width: 992px) {
	.l-register-input .code dt {
		flex-basis: 350px;
	}
	.l-register-input .code dd {
		padding: 0 0 0 45px;
	}
}
/**/
.l-register-input .newsletter {
	margin: 30px 0;
	font-size: 14px;
}
.l-register-input .newsletter ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 10px;
}
.l-register-input .newsletter ul li {
	display: flex;
}
.l-register-input .newsletter label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
}

/*  */
.l-register-input-row {
	padding: 15px 0;
	border-top: 1px solid var(--color-border);
	font-size: 14px;
}
.l-register-input-row .th {
	position: relative;
	padding: 0 3.5em 0 0;
	font-size: 16px;
}
.l-register-input-row .th .badge {
	position: absolute;
	right: 0;
	top: 0;
}
.l-register-input-row .td {
	margin: 10px 0 0 0;
}
.l-register-input-row .td .text {
	margin: 5px 0;
	font-size: 14px;
}
.l-register-input .l-register-input-row .form-select {
	width: 100%;
}
.l-register-input .full {
	margin: -15px 0 15px 0;
}
@media (min-width: 992px) {
	.l-register-input-row {
		display: flex;
		padding: 20px 0;
	}
	.l-register-input-row .th {
		flex-basis: 380px;
		flex-shrink: 0;
		padding-top: 7px;
	}
	.l-register-input-row .th-wide {
		flex-basis: 500px;
	}
	.l-register-input-row .th .badge {
		top: 7px;
	}
	.l-register-input-row .td {
		margin: 0;
		padding: 0 0 0 45px;
	}
	.l-register-input-row .td .inline {
		display: flex;
		align-items: center;
		gap: 20px;
	}
	.l-register-input-row .td .inline .invalid-feedback {
		margin: 0;
		white-space: nowrap;
		flex-shrink: 0;
		width: auto;
	}
}

/*  */
.l-register-input .form-select {
	width: auto;
}
.l-register-input .form-control.w-50 {
	width: 100% !important;
}
.l-register-input .form-control.w-narrow {
	width: 100% !important;
}
@media (min-width: 992px) {
	.l-register-input .form-control.w-50 {
		width: 480px !important;
	}
	.l-register-input .form-control.w-100 {
		width: 480px !important;
	}
	.l-register-input .form-control.w-narrow {
		width: 178px !important;
	}
}
@media (min-width: 1200px) {
	.l-register-input .form-control.w-50 {
		width: 480px !important;
	}
	.l-register-input .form-control.w-100 {
		width: 668px !important;
	}
	.l-register-input .form-control.w-narrow {
		width: 178px !important;
	}
	.l-register-input .form-control {
		width: 480px;
	}
	.l-register-input .full .form-control {
		width: 100%;
	}
}
/*  */
.l-register-input .name dl {
	display: flex;
	margin: 10px 0 0 0;
	width: 100%;
}
.l-register-input .name dl:first-child {
	margin: 0;
}
.l-register-input .name dt {
	flex-shrink: 0;
	flex-basis: 2em;
	padding: 7px 0.5em 0 0;
	font-weight: inherit;
	font-size: 16px;
}
.l-register-input .name dd {
	flex: 1;
	margin: 0;
}
@media (min-width: 768px) {
	.l-register-input .name {
		display: flex;
		gap: 30px;
	}
	.l-register-input .name dl {
		margin: 0;
		flex: 1;
	}
}
@media (min-width: 1200px) {
	.l-register-input .name {
		width: 680px;
	}
	.l-register-input .name .form-control {
		width: 280px;
	}
}
/*  */
.l-register-input .border-none {
	padding-top: 0;
	border: 0;
}
.l-register-input .border-dashed {
	border-top-style: dashed;
}
/**/
.l-register-input .l-btns {
	margin-top: 20px;
}
@media (min-width: 768px) {
	.l-register-input .l-btns {
		margin-top: 40px;
	}
}

/* ==================================================

	[ LAYOUT ] SETTION DETAIL

*/
.l-settion-detail {
	padding: 20px 0 50px 0;
}
.l-settion-detail .head {
	display: flex;
	align-items: center;
	gap: 20px;
}
.l-settion-detail .head .c-badge span {
	font-size: 14px;
}
.l-settion-detail .time {
	font-weight: 700;
	font-size: 20px;
}
.l-settion-detail .title {
	margin-top: 10px;
}
.l-settion-detail .title > em {
	display: block;
	font-size: 24px;
}
.l-settion-detail .title > span {
	display: block;
	margin-top: 10px;
	font-size: 18px;
}
.l-settion-detail .title .c-badge {
	position: relative;
	top: -0.12em;
	display: inline-block;
	margin-right: 10px;
}
.l-settion-detail .title .c-badge span {
	font-size: 17px;
}
.l-settion-detail .info {
	display: flex;
	flex-direction: column-reverse;
	gap: 20px;
	margin: 20px 0 30px 0;
}
.l-settion-detail .c-session-property {
	display: flex;
	align-items: center;
	gap: 30px;
	font-size: 16px;
}
.l-settion-detail .lead {
	line-height: 1.8;
}
/**/
.l-settion-detail .news {
	margin: 30px 0;
	padding: 15px;
	border: 1px solid #E1DCEF;
	border-radius: 4px;
	font-size: 14px;
	box-shadow: 4px 4px 4px rgba(0,0,0,0.15);
}
.l-settion-detail .news .h {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 5px;
	font-weight: 500;
	font-size: 14px;
}
.l-settion-detail .news ul {
	margin: 0.6em 0 0 0;
}
.l-settion-detail .news ul li:not(:last-child) {
	margin-bottom: 0.6em;
}
@media (min-width: 768px) {
	.l-settion-detail {
		padding: 20px 0 100px 0;
	}
	.l-settion-detail .title {
		margin-top: 15px;
	}
	.l-settion-detail .title .c-badge {
		top: -0.15em;
	}
	.l-settion-detail .title .c-badge span {
		border-width: 2px;
		font-size: 24px;
	}
	.l-settion-detail .title > em {
		font-size: 40px;
	}
	.l-settion-detail .title > span {
		margin-top: 20px;
		font-size: 24px;
	}
	.l-settion-detail .info {
		flex-direction: row;
		align-items: center;
		gap: 30px;
		margin: 30px 0 40px 0;
	}
	.l-settion-detail .news {
		display: flex;
		align-items: flex-start;
		gap: 0 40px;
		margin-bottom: 40px;
	}
	.l-settion-detail .news ul {
		margin: 0;
	}
}

/* ==================================================

	[ LAYOUT ] SPEAKER

*/
.l-speaker {
	text-align: center;
}
.l-speaker ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.l-speaker li {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 60px;
}
.l-speaker-normal li {
	margin-top: 40px;
}
.l-speaker .portrait {
	position: relative;
	display: block;
	padding: 0;
	width: 146px;
	background-color: transparent;
	border: 0 !important;
	transition: initial;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	resize: none;
}
.l-speaker .portrait span {
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 146px;
	border-radius: 50%;
}
.l-speaker .portrait span em {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	position: absolute;
	inset: 0;
	background-color: rgba(0, 30, 96, 0.7);
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	color: var(--omnissa-color-neon);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.l-speaker .portrait span em i {
	position: relative;
	top: -1px;
	font-size: 16px;
}
.l-speaker .portrait img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.l-speaker .portrait > img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 200px;
	pointer-events: none;
}
.l-speaker dl {
	margin: 20px 0 0 0;
}
.l-speaker-normal dl {
	margin: 10px 0 0 0;
}
.l-speaker dt {
	font-size: 16px;
	color: var(--omnissa-color-text-body);
}
.l-speaker dd {
	margin: 0;
	font-size: 14px;
}
@media (any-hover: hover) {
	.l-speaker .portrait:hover span em {
		opacity: 1;
	}
}
@media (min-width: 768px) {
	.l-speaker ul {
		display: flex;
		flex-wrap: wrap;
		gap: 50px 0;
		margin: 60px 0 0 0;
	}
	.l-speaker li {
		flex-basis: 50%;
		margin: 0;
	}
}

@media (min-width: 992px) {
	.l-speaker li {
		flex-basis: 25%;
	}
}

/* ==================================================

	[ PROJECT ] EMAIL

*/
.p-email fieldset {
	margin: 0;
	border: 0;
}
.p-email .l-register-input-row {
	padding: 10px 0;
	border: 0;
}
.p-email .l-register-input-row .th {
	font-weight: inherit;
}
.p-email .c-alert-standard {
	margin: 20px 0;
	font-size: 14px;
}
@media (min-width: 768px) {
	.p-email .l-register-input-row {
		padding: 15px 0;
	}
	.p-email .l-register-input-row .th {
		flex-basis: 280px;
	}
	.p-email .l-register-input-row .td {
		flex: 1;
	}
	.p-email .c-alert-standard {
		margin: 20px 0 40px 0;
	}
}

/* ==================================================

	[ PROJECT ] REMINDER INPUT

*/
.p-reminder-input fieldset {
	margin: 0 auto;
	border: 0;
}
.p-reminder-input fieldset .form-control {
	width: 100%;
}
.p-reminder-input .c-alert-standard {
	margin: 20px 0;
	font-size: 14px;
}
@media (min-width: 768px) {
	.p-reminder-input fieldset {
		width: 314px;
	}
	.p-reminder-input .c-alert-standard {
		margin: 20px 0 40px 0;
	}
}

/* ==================================================

	[ PROJECT ] REGISTER START

*/
.p-register-start {
	padding: 30px 0 50px 0;
}
.p-register-start .agree {
	display: flex;
	justify-content: center;
	margin: 30px 0;
}
.p-register-start .agree label {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.p-register-start .agree p {
	margin: 0;
}
@media (min-width: 768px) {
	.p-register-start {
		padding: 50px 0 100px 0;
	}
	.p-register-start .agree {
		margin: 50px 0 30px 0;
	}
}

/* ==================================================

	[ PROJECT ] REGISTER CONFIRM

*/
.p-register-confirm {
	padding: 30px 0 50px 0;
}
.p-register-confirm .h {
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 20px;
}
.p-register-confirm .list {
	border-top: 1px solid #C8C7E2;
	font-size: 16px;
}
.p-register-confirm .list .confirm-row {
	padding: 12px 0;
	border-bottom: 1px solid #C8C7E2;
}
.p-register-confirm .confirm-basic {
	margin-top: 30px;
	margin-bottom: 30px;
}
.p-register-confirm .confirm-basic .list .confirm-row > div:first-child {
	margin-bottom: 5px;
	font-weight: 500;
}
.p-register-confirm .confirm-session {
	margin-top: 30px;
	margin-bottom: 30px;
}
.p-register-confirm .confirm-basic + .confirm-session {
	margin-top: 50px;
}
.p-register-confirm .confirm-session .list {
	font-weight: 500;
}
.p-register-confirm .confirm-session .list .confirm-row > div:first-child {
	padding: 0.12em 0;
	font-weight: 700;
	font-size: 14px;
}
@media (min-width: 768px) {
	.p-register-confirm {
		padding: 50px 0 100px 0;
	}
	.p-register-confirm .list .confirm-row {
		display: flex;
		padding: 12px 0;
		border-bottom: 1px solid #C8C7E2;
	}
	.p-register-confirm .confirm-basic {
		margin-bottom: 40px;
	}
	.p-register-confirm .confirm-session {
		margin-bottom: 40px;
	}
	.p-register-confirm .confirm-basic .list .confirm-row > div:first-child {
		margin-bottom: 0;
		padding-right: 30px;
		flex-basis: 340px;
	}
	.p-register-confirm .confirm-session .list .confirm-row > div:first-child {
		flex-basis: 120px;
	}
}

/* ==================================================

	[ PROJECT ] SESS

*/
.p-sess {
	padding: 30px 0 50px 0;
	min-height: 100vh;
}
.p-sess .heading {
	margin-bottom: 20px;
	font-size: 24px;
}
@media (min-width: 768px) {
	.p-sess {
		padding: 50px 0 100px 0;
	}
	.p-sess .heading {
		margin-bottom: 40px;
		font-size: 32px;
	}
}

/* ==================================================

	[ PROJECT ] REGISTER SESS

*/
.p-register-sess {
	padding: 0 0 50px 0;
	min-height: 100vh;
}
.p-register-sess .l-btns {
	margin-top: 30px;
}
@media (min-width: 768px) {
	.p-register-sess {
		padding: 0 0 100px 0;
	}
	.p-register-sess .l-btns {
		margin-top: 50px;
	}
}

/* ==================================================

	[ COMPONENT ] MYPAGE HEADING

*/
.c-mypage-heading {
	font-weight: 500;
	font-size: 26px;
}
@media (min-width: 768px) {
	.c-mypage-heading {
		font-size: 40px;
	}
}

/* ==================================================

	[ LAYOUT ] MYPAGE

*/
.l-mypage .c-nav-back {
	padding-top: 20px;
}

/* ==================================================

	[ PROJECT ] MYPAGE LOGIN

*/
.p-maypage-login .h {
	text-align: center;
	font-weight: 500;
}
.p-maypage-login .h span {
	display: block;
	margin-bottom: 5px;
	font-size: 18px;
}
.p-maypage-login .h em {
	display: block;
	font-size: 30px;
}
.p-maypage-login .text {
	margin: 20px 0 10px 0;
	text-align: center;
	font-weight: 700;
	font-size: 14px;
}
.p-maypage-login .input {
	margin: 0 auto;
	max-width: 342px;
}
.p-maypage-login .input input {
	width: 100%;
}
.p-maypage-login .link {
	display: flex;
	justify-content: center;
	font-size: 14px;
}
.p-maypage-login .link a {
	text-decoration: none;
	font-weight: 700;
	font-weight: 14px;
}
.p-maypage-login .l-btns {
	margin: 20px 0 40px 0;
}
@media (min-width: 768px) {
	.p-maypage-login .h span {
		font-size: 20px;
	}
	.p-maypage-login .h em {
		font-size: 40px;
	}
}

/* ==================================================

	[ PROJECT ] MYPAGE HOME

*/
.p-mypage-home {
	padding: 30px 0 50px 0;
}
@media (min-width: 768px) {
	.p-mypage-home {
		padding: 40px 0 100px 0;
	}
}

/* user */
.p-mypage-home .user {
	margin-bottom: 30px;
}
.p-mypage-home .user .h {
	font-weight: 500;
	font-size: 20px;
}
.p-mypage-home .user .id {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-top: 10px;
	font-size: 12px;
}
.p-mypage-home .user .id i {
	font-size: 16px;
}

/* news */
.p-mypage-home .news {
	margin: 30px 0;
	border: 1px solid #C8C7E4;
	border-left: 0;
	border-right: 0;
}
.p-mypage-home .news .head {
	margin: 0;
	padding: 16px 0 0 0;
}
.p-mypage-home .news .head h2 {
	display: flex;
	align-items: center;
	margin: 0;
	font-weight: 700;
	font-size: 14px;
}
.p-mypage-home .news .head h2 i {
	display: block;
	margin-top: -0.06em;
}
.p-mypage-home .news ul {
	margin: 0;
	padding: 4px 0;
	font-size: 14px;
}
.p-mypage-home .news li {
	margin: 10px 0;
}
.p-mypage-home .news li a {
	text-decoration: none;
}
@media (min-width: 768px) {
	.p-mypage-home .news {
		display: flex;
		margin: 30px 0;
	}
	.p-mypage-home .news .head {
		flex-basis: 110px;
		padding: 14px 0;
	}
	.p-mypage-home .news ul {
		flex: 1;
	}
}

/* menu */
.p-mypage-home .menu ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 0;
	margin: 0 -10px;
}
.p-mypage-home .menu li {
	flex-basis: 50%;
	padding: 0 10px;
}
.p-mypage-home .menu .card {
	position: relative;
	display: block;
	min-height: 110px;
	padding: 14px 0 0 0;
	background-color: #FFF;
	border-color: #FFF;
	text-align: center;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 0 30px rgba(51, 57, 88, 0.18);
}
.p-mypage-home .menu .card dl {
	position: relative;
	margin: 0;
	width: 100%;
}
.p-mypage-home .menu .card dt {
	display: flex;
	justify-content: center;
}
.p-mypage-home .menu .card dt img {
	width: 40px;
}
.p-mypage-home .menu .card dd {
	display: flex;
	justify-content: center;
	margin: 5px 0 0 0;
	font-weight: 700;
	font-size: 12px;
	line-height: 1.3;
}
.p-mypage-home .menu .card dd span {
	display: block;
	position: relative;
}
.p-mypage-home .menu .card dd span {
	display: block;
	position: relative;
}
.p-mypage-home .menu .card dd span i {
	display: block;
	position: absolute;
	left: 100%;
	top: 50%;
	margin-left: 8px;
	transform: translateY(-50%);
	font-size: 14px;
	color: var(--omnissa-color-indigo);
	opacity: 0;
}
/**/
.p-mypage-home .menu-main ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 0;
	margin: 0 -10px;
}
.p-mypage-home .menu-main li {
	flex-basis: 50%;
	padding: 0 10px;
}
.p-mypage-home .menu-main .card {
	position: relative;
	display: block;
	min-height: 110px;
	padding: 20px 0 0 0;
	background-color: var(--omnissa-color-indigo);
	border: 1px solid var(--omnissa-color-indigo);
	text-align: center;
	text-decoration: none;
	color: #FFF;
}
.p-mypage-home .menu-main .card dl {
	position: relative;
	margin: 0;
	width: 100%;
}
.p-mypage-home .menu-main .card dt {
	font-size: 34px;
	line-height: 1;
}
.p-mypage-home .menu-main .card dd {
	display: flex;
	justify-content: center;
	margin: 8px 0 0 0;
	font-weight: 700;
	font-size: 12px;
	line-height: 1.3;
}
.p-mypage-home .menu-main .card dd span {
	display: block;
	position: relative;
}
.p-mypage-home .menu-main .card dd span i {
	display: block;
	position: absolute;
	left: 100%;
	top: 50%;
	margin-left: 8px;
	transform: translateY(-50%);
	font-size: 14px;
	color: var(--omnissa-color-neon);
	opacity: 0;
}

@media (any-hover: hover) {
	.p-mypage-home .menu .card {
		transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
	}
	.p-mypage-home .menu .card:hover {
		background-color: #F6F5FB;
		border-color: var(--omnissa-color-indigo);
		color: var(--omnissa-color-indigo);
	}
	.p-mypage-home .menu .card dd span i {
		transition: opacity 0.3s ease;
	}
	.p-mypage-home .menu .card:hover dd span i {
		opacity: 1;
	}
	.p-mypage-home .menu-main .card {
		transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
	}
	.p-mypage-home .menu-main .card:hover {
		background-color: var(--omnissa-color-btn-hover);
		border-color: var(--omnissa-color-btn-hover);
		color: var(--omnissa-color-neon);
	}
	.p-mypage-home .menu-main .card dd span i {
		transition: opacity 0.3s ease;
	}
	.p-mypage-home .menu-main .card:hover dd span i {
		opacity: 1;
	}
}

@media (min-width: 768px) {
	.p-mypage-home .menu ul,
	.p-mypage-home .menu-main ul {
		margin: 0 -15px;
		gap: 30px 0;
	}
	.p-mypage-home .menu li,
	.p-mypage-home .menu-main li {
		flex-basis: calc(1 / 3 * 100%);
		padding: 0 15px;
	}
}
@media (min-width: 992px) {
	.p-mypage-home .menu li,
	.p-mypage-home .menu-main li {
		flex-basis: calc(1 / 4 * 100%);
	}
}
@media (min-width: 1200px) {
	.p-mypage-home .menu li,
	.p-mypage-home .menu-main li {
		flex-basis: calc(1 / 5 * 100%);
	}
}
@media (min-width: 1400px) {
	.p-mypage-home .menu li,
	.p-mypage-home .menu-main li {
		flex-basis: calc(1 / 6 * 100%);
	}
}

/* menu-head */
.p-mypage-home .menu-head {
	margin: 30px 0;
}
.p-mypage-home .menu-head ul {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 20px;
	font-weight: 16px;
}
.p-mypage-home .menu-head li {
	display: flex;
	gap: 15px;
}
.p-mypage-home .menu-head li .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2px;
	padding-bottom: 4px;
	width: 60px;
	height: 60px;
	background-color: var(--omnissa-color-indigo);
	border-radius: 50%;
	font-size: 34px;
	color: #FFF;
}
.p-mypage-home .menu-head li a {
	text-decoration: none;
	font-weight: 500;
}
.p-mypage-home .menu-head li p {
	margin-top: 5px;
	font-size: 12px;
}
@media (min-width: 768px) {
	.p-mypage-home .menu-head {
		margin: 40px 0;
	}
	.p-mypage-home .menu-head ul {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 20px 0;
		margin: 0 -10px;
	}
	.p-mypage-home .menu-head li {
		flex-basis: 50%;
		padding: 0 10px;
	}
}
@media (min-width: 992px) {
	.p-mypage-home .menu-head ul {
		margin: 0 -25px;
	}
	.p-mypage-home .menu-head li {
		flex-basis: 33.333%;
		padding: 0 25px;
	}
}

/* ==================================================

	[ PROJECT ] MYPAGE MYTIMETABLE

*/
.p-mypage-mytimetable {
	padding: 0 0 50px 0;
}
.p-mypage-mytimetable .timetable {
	margin: 15px 0 30px 0;
}
.p-mypage-mytimetable .timetable ul {
	border-top: 1px solid #C8C7E2;
	font-weight: 500;
	font-size: 16px;
}
.p-mypage-mytimetable .timetable li {
	padding: 12px 0;
	border-bottom: 1px solid #C8C7E2;
}
.p-mypage-mytimetable .timetable .time {
	font-weight: 700;
}
.p-mypage-mytimetable .timetable a {
	text-decoration: none;
}
@media (min-width: 768px) {
	.p-mypage-mytimetable {
		padding: 0 0 100px 0;
	}
	.p-mypage-mytimetable .timetable {
		margin: 30px 0;
	}
	.p-mypage-mytimetable .timetable li {
		display: flex;
		padding: 12px 0;
		border-bottom: 1px solid #C8C7E2;
	}
	.p-mypage-mytimetable .timetable .time {
		flex-basis: 120px;
	}
}

/* ==================================================

	[ PROJECT ] MYPAGE MYTIMETABLE

*/
.p-mypage-profile {
	padding-top: 0;
}

/* ==================================================

	[ PROJECT ] STATUS CODE

*/
.p-status-code {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 0;
	flex: 1;
	height: 100%;
	text-align: center;
}
.p-status-code h1 {
	font-weight: 500;
	font-size: 32px;
}
.p-status-code h2 {
	margin: 10px 0;
	font-weight: 400;
	font-size: 20px;
}
.p-status-code .foot {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}
@media (min-width: 768px) {
	.p-status-code {
		padding: 50px 0 60px 0;
	}
	.p-status-code h1 {
		font-size: 40px;
	}
	.p-status-code h2 {
		font-size: 24px;
	}
}

/* ==================================================

	TIMELINE CARD

*/
.timeline-card {
	position: relative;
	padding: 14px;
	height: 100%;
	font-size: 12px;
}
.timeline-card::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: -1px;
	background-color: #fff;
	border: 1px solid #C8C7E2;
}
.timeline-card .form-check-input {
	flex-shrink: 0;
	margin: 0;
	font-size: 18px;
}
.timeline-card .timeline-card-head {
	position: relative;
	display: flex;
	align-items: center;
	gap: 5px;
}
.timeline-card .time {
	font-weight: 700;
	font-size: 14px;
	line-height: 2;
}
.timeline-card .timeline-card-body {
	position: relative;
}
.timeline-card .timeline-card-body .c-badge {
	margin: 4px 0 8px 0;
}
.timeline-card .title {
	display: flex;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
}
.timeline-card .title a {
	display: block;
	text-decoration: none;
}
.timeline-card .title em {
	display: block;
}
.timeline-card .title span {
	display: block;
	font-size: 14px;
}
.timeline-card .company {
	margin-top: 10px;
}
.timeline-card .c-session-property {
	margin-top: 10px;
}
.timeline-card .timeline-card-foot {
	margin-top: 10px;
}
.timeline-card .timeline-card-foot .c-badge {
	display: block;
}

/* ==================================================

	TIMELINE

*/
.responsive-timetable-checker {
	display: none;
}
.timeline-section {
	position: relative;
}
.timeline-section .timeline-time {
	display: none;
}
.timeline-section {
	position: relative;
}
.timeline-section .timeline-card.is-live {
	border: 4px solid var(--color-primary);
}
.timeline-section .timeline-item.disabled .timeline-card {
	opacity: 0.15;	
}
.timeline-section .timeline-item-exam .timeline-card {
	color: #FFF;
}
.timeline-section .timeline-item-exam .timeline-card::before {
	background-color: var(--omnissa-color-text-body);
}
.timeline-section .timeline-item-exam .timeline-card .title a {
	color: inherit;
}
.timeline-section .timeline-item-handson .timeline-card {
	color: #FFF;
}
.timeline-section .timeline-item-handson .timeline-card::before {
	background-color: var(--omnissa-color-indigo);
}
.timeline-section .timeline-item-handson .timeline-card .title a {
	color: inherit;
}

/* gs */
.timeline-section .timeline-item-gs .timeline-card {
	padding: 0;
}
.timeline-section .timeline-item-gs .timeline-card::before {
	bottom: 0;
	border: 4px solid var(--omnissa-color-indigo);
}
.timeline-section .timeline-item-gs .head {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	background-color: var(--omnissa-color-indigo);
	color: #fff;
}
.timeline-section .timeline-item-gs .head .form-check-input {
	border-color: #fff;
}
.timeline-section .timeline-item-gs .head .type {
	font-weight: 500;
	font-size: 18px;
}
.timeline-section .timeline-item-gs .detail {
	position: relative;
	padding: 18px 18px 20px 18px;
}
.timeline-section .timeline-item-gs .detail .title {
	font-size: 22px;
}
.timeline-section .timeline-item-gs .detail .title span {
	margin-top: 10px;
	font-size: 18px;
}
.timeline-section .timeline-item-gs .detail .lead {
	margin: 10px 0;
	font-size: 14px;
	line-height: 1.8;
}
.timeline-section .timeline-item-gs .detail .l-speaker {
	padding-bottom: 20px;
}
@media (min-width: 768px) {
	.timeline-section .timeline-item-gs .head {
		padding: 12px 24px;
	}
	.timeline-section .timeline-item-gs .detail {
		padding: 18px 24px 24px 24px;
	}
	.timeline-section .timeline-item-gs .detail .title {
		font-size: 28px;
	}
	.timeline-section .timeline-item-gs .detail .title span {
		font-size: 20px;
	}
}
@media (min-width: 1024px) {
	.responsive-timetable-checker {
		display: block;
	}
	.timeline-section {
		padding-left: 45px;
	}
	.timeline-section .timeline-time {
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 45px;
		text-align: center;
		font-weight: 700;
		font-size: 20px;
		height: 100%;
	}
	.timeline-section .timeline-time span {
		display: block;
		padding: 10px 0;
		position: absolute;
		top: -1px;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #fff;
		border: 1px solid #C8C7E2;
	}
	.timeline-section .timeline-body {
		position: relative;
		height: 100%;
		background-color: #DFDCED;
	}
	.timeline-section .timeline-item {
		position: absolute;
		z-index: 1;
	}
	.timeline-section .timeline-card::before {
		top: -1px;
		left: -1px;
		bottom: 0;
	}
	.timeline-section .timeline-card .timeline-card-body {
		padding-bottom: 30px;
	}
	.timeline-section .timeline-card .timeline-card-foot {
		position: absolute;
		bottom: 0;
		left: 0;
		padding: 14px;
		width: 100%;
	}
	.timeline-section .timeline-item-gs {
		z-index: 2;
	}
	.timeline-section .timeline-item-gs .detail .l-speaker {
		padding-bottom: 40px;
	}
}

/* ==================================================

	[ MODAL ]

*/
.modal-backdrop {
	background-color: rgba(40, 51, 74, 0.85);
	opacity: 1 !important;
}
.modal .modal-dialog {
	margin: 0 auto;
	width: 100%;
}
.modal .outer {
	margin: auto;
	padding: 20px;
	width: 100%;
}
.modal .content {
	overflow: hidden;
	position: relative;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	pointer-events: initial;
}
.modal .content::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background-image: linear-gradient(90deg, #001e60 0%, #4a12f0 76%, #d00aff 100%);
}
.modal .content .btn {
	position: absolute;
	display: block;
	top: 15px;
	right: 15px;
	width: 26px;
	height: 26px;
	cursor: pointer;
}
.modal .content .btn::before,
.modal .content .btn::after {
	content: '';
	display: block;
	position: absolute;
	top: 12px;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background-color: #9097b9;
}
.modal .content .btn::before {
	transform: rotate(45deg);
}
.modal .content .btn::after {
	transform: rotate(-45deg);
}
@media (min-width: 768px) {
	.l-modal-speaker .content .btn {
		top: 30px;
		right: 30px;
	}
}

/* ==================================================

	[ MODAL ] SPEAKER

*/
.l-modal-speaker .modal-dialog {
	max-width: 840px;
}
.l-modal-speaker .content dt {
	font-weight: 700;
	font-size: 24px;
}
.l-modal-speaker .content dd {
	font-size: 16px;
	color: var(--omnissa-color-indigo);
}
.l-modal-speaker .content .lead {
	font-size: 14px;
	line-height: 1.7;
}

@media (min-width: 768px) {
	.l-modal-speaker .content {
		padding: 60px;
	}
	.l-modal-speaker .content dt {
		font-size: 28px;
	}
	.l-modal-speaker .content dd {
		font-size: 18px;
	}
	.l-modal-speaker .content .btn {
		top: 30px;
		right: 30px;
	}
}

/* ==================================================

	[ MODAL ] TERMS

*/
.l-modal-terms .modal-dialog {
	max-width: 1029px;
}
.l-modal-terms .content {
	padding: 50px 20px 20px 20px;
	font-size: 14px;
}
.l-modal-terms .content .block {
	margin-top: 20px;
}
.l-modal-terms .content .h {
	margin-bottom: 3px;
	font-weight: 700;
	font-size: inherit;
	line-height: 1.5;
}

@media (min-width: 768px) {
	.l-modal-terms .content {
		padding: 50px 60px 60px 60px;
	}
}

/* ==================================================

	[ MODAL ] SESS

*/
.l-modal-sess .modal-dialog {
	max-width: 840px;
}
.l-modal-sess .content {
	display: flex;
	flex-direction: column;
	padding: 50px 20px 30px 20px;
	height: 80vh;
	font-size: 14px;
}
.l-modal-sess .content .block {
	margin-top: 20px;
}
.l-modal-sess .content .title {
	margin-bottom: 2px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
}
.l-modal-sess .content .detail {
	overflow: hidden;
	margin: 10px 0 20px 0;
	border: 1px solid #C8C7E4;
	border-radius: 4px;
	flex: 1;
	line-height: 1.5;
}
.l-modal-sess .content .scroll {
	padding: 15px 20px;
	height: 100%;
	overflow-y: auto;
}
.l-modal-sess .content .foot {
	display: flex;
	justify-content: center;
}

@media (min-width: 768px) {
	.l-modal-sess .content {
		display: block;
		padding: 50px 30px 30px 30px;
		height: auto;
	}
	.l-modal-sess .content .title {
		font-size: 18px;
	}
	.l-modal-sess .content .detail {
		margin: 20px 0 30px 0;
		height: 160px;
	}
}