@charset "UTF-8";

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

	common.css
	Version: 0.1

	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;
}

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

	HTML

*/
html {
	scroll-behavior: auto !important;
}
body {
	line-height: 1.5;
	font-weight: 400;
	font-family: YakuHanJP, Outfit, "Open Sans", Helvetica, Arial, "Noto Sans JP", sans-serif;
	color: var(--omnissa-color-text-body);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
main {
	overflow: hidden;
	padding: 80px 0 0 0;
}

@media (min-width: 768px) {
	main {
		padding: 90px 0 0 0;
	}
}

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

	BOOTSTRAP OVERWRITE

*/
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	margin-bottom: initial;
	line-height: 1.3;
}
a {
	color: var(--omnissa-color-indigo);
}
a:hover {
	color: var(--omnissa-color-magenta-aa);
}
.lead {
	font-weight: inherit;
	font-size: inherit;
	line-height: 1.5;
}
.container {
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1314px !important;
}
@media (min-width: 768px) {
	.container {
		padding-left: 30px;
		padding-right: 30px;
	}
}

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

	HEADER

*/
.header {
	display: flex;
	align-items: center;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background-color: #FFF;
	transition: box-shadow 0.3s ease;
}
.header.shadow {
	box-shadow: 0px 5px 15px 0px rgba(51, 57, 88, 0.3019607843);
}
.header .logo {
	width: 80px;
}
.header .logo img {
	width: 100%;
}

@media (min-width: 768px) {
	.header {
		height: 90px;
	}
}

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

	[ 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;
	margin: 0;
	padding: 0;
}
.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;
	}
}

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

	[ MODAL ]

*/
.modal-backdrop {
	background-color: rgba(40, 51, 74, 0.85);
	opacity: 1 !important;
}

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

	[ MODAL ] SPEAKER

*/
.l-modal-speaker .modal-dialog {
	margin: 0 auto;
	width: 100%;
	max-width: 840px;
}
.l-modal-speaker .outer {
	margin: auto;
	padding: 20px;
	width: 100%;
}
.l-modal-speaker .content {
	overflow: hidden;
	position: relative;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	pointer-events: initial;
}
.l-modal-speaker .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%);
}
.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;
}
.l-modal-speaker .content .btn {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 26px;
	height: 26px;
	cursor: pointer;
}
.l-modal-speaker .content .btn::before,
.l-modal-speaker .content .btn::after {
	content: '';
	display: block;
	position: absolute;
	top: 12px;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background-color: #9097b9;
}
.l-modal-speaker .content .btn::before {
	transform: rotate(45deg);
}
.l-modal-speaker .content .btn::after {
	transform: rotate(-45deg);
}

@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;
	}
}

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

	[ COMPONENT ] HEADING

*/
.c-heading {
	font-size: 28px;
}
@media (min-width: 768px) {
	.c-heading {
		font-size: 42px;
	}
	.c-heading br {
		display: none;
	}
}

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

	[ LAYOUT ] HOME HEADER

*/
.l-home-header {
	text-align: center;
}

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

	[ HOME ] MAIN

*/
.home-main {
	position: relative;
	padding: 10px 0 30px 0;
	background-color: #4a12f0;
	background-image: linear-gradient(249deg, var(--omnissa-color-indigo) 42%, #2b0a8a 98%);
	text-align: center;
	font-weight: 500;
	color: #fff;
}
.home-main::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/home-main-bg.png);
	background-size: 100% 50%;
}
.home-main img {
	width: 100%;
}
.home-main h1 {
	margin: 0 auto;
	max-width: 680px;
}
.home-main h2 {
	margin-top: 10px;
	font-size: 30px;
	line-height: 1.3;
}
.home-main .info {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 15px 0;
	font-size: 16px;
	color: var(--omnissa-color-neon);
}
.home-main .info div {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
.home-main .info div img {
	width: 26px;
}
.home-main .announce {
	font-size: 16px;
}

@media (min-width: 768px) {
	.home-main {
		padding: 20px 0 50px 0;
	}
	.home-main::before {
		background-size: 100% auto;
	}
	.home-main h2 {
		margin-top: 10px;
		font-size: 48px;
	}
	.home-main .info {
		gap: 15px;
		margin: 20px 0;
		font-size: 24px;
	}
	.home-main .info div {
		gap: 5px;
		padding: 0 15px;
	}
	.home-main .info div img {
		width: 38px;
	}
	.home-main .announce {
		font-size: 24px;
	}
}

@media (min-width: 992px) {
	.home-main h2 br {
		display: none;
	}
	.home-main .info {
		flex-direction: row;
		justify-content: center;
		gap: 0;
	}
	.home-main .info div:first-child {
		border-right: 1px solid #fff;
	}
}

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

	[ HOME ] ABOUT

*/
.home-about {
	padding: 30px 0;
}
.home-about .image {
	margin-bottom: 30px;
	padding: 0 10px;
}
.home-about .image img {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 420px;
	height: auto;
}
.home-about .detail {
	text-align: center;
}
.home-about .detail h2 {
	font-size: 24px;
	line-height: 1.5;
}
.home-about .detail .lead {
	margin-top: 16px;
	line-height: 2;
}

@media (min-width: 768px) {
	.home-about {
		padding: 60px 0;
	}
	.home-about .detail h2 {
		font-size: 32px;
		line-height: 1.5;
	}
	.home-about .detail .lead {
		margin-top: 20px;
	}
}

@media (min-width: 992px) {
	.home-about .wrap {
		display: flex;
		gap: 15px;
	}
	.home-about .image {
		flex-basis: 420px;
		margin: 0;
		padding: 0;
	}
	.home-about .detail {
		flex: 1;
		text-align: left;
	}
}

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

	[ HOME ] MERIT

*/
.home-merit {
	padding: 30px 0 40px 0;
	background-image: linear-gradient(to bottom, #f6f5fb 0%, #ffffff 100%);
}
.home-merit .l-home-header .lead {
	margin-top: 20px;
}
.home-merit .l-home-header .lead p:last-child {
	margin: 0;
}
.home-merit .l-home-header h3 {
	margin-top: 30px;
	font-size: 18px;
}
.home-merit .wrap .col {
	margin-top: 60px;
}
.home-merit .item {
	padding: 0 20px 30px 20px;
	height: 100%;
	border-radius: 20px;
	background-color: #fff;
	background-image: linear-gradient(40deg, rgba(255, 255, 255, 0.70) 5%, #FFF 40%, #EFEFEF 100%);
	box-shadow: rgba(0, 30, 96, 0.18) 2px 0px 30px 0px;
	font-weight: 500;
	font-size: 14px;
}
.home-merit .item .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	top: -40px;
	margin-bottom: -20px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: var(--omnissa-color-indigo);
}
.home-merit .item .icon img {
	width: 50px;
}
.home-merit .item h3 {
	margin-bottom: 10px;
	font-size: 24px;
}
.home-merit .item p {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.home-merit {
		padding: 60px 0 100px 0;
	}
	.home-merit .wrap {
		display: flex;
		gap: 30px;
		margin-top: 80px;
	}
	.home-merit .wrap .col {
		margin: 0;
	}
	.home-merit .item {
		padding: 0 30px 30px 30px;
	}
	.home-merit .item .icon {
		top: -45px;
		margin-bottom: -30px;
		width: 90px;
		height: 90px;
	}
}

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

	[ HOME ] GS

*/
.home-gs {
	padding: 30px 0 60px 0;
	background-image: linear-gradient(to bottom, #f6f5fb 0%, #ffffff 100%);
}
.home-gs .l-home-header .lead {
	margin-top: 20px;
}
.home-gs .speaker {
	text-align: center;
}
.home-gs .speaker ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.home-gs .speaker li {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 60px;
}
.home-gs .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;
}
.home-gs .speaker .portrait span {
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 146px;
	border-radius: 50%;
}
.home-gs .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;
}
.home-gs .speaker .portrait span em i {
	position: relative;
	top: -1px;
	font-size: 16px;
}
.home-gs .speaker .portrait img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.home-gs .speaker .portrait > img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 200px;
	pointer-events: none;
}
.home-gs .speaker dl {
	margin: 20px 0 0 0;
}
.home-gs .speaker dt {
	font-size: 16px;
}
.home-gs .speaker dd {
	margin: 0;
	font-size: 14px;
}
@media (any-hover: hover) {
	.home-gs .speaker .portrait:hover span em {
		opacity: 1;
	}
}
@media (min-width: 768px) {
	.home-gs {
		padding: 60px 0 100px 0;
	}
	.home-gs .speaker ul {
		display: flex;
		flex-wrap: wrap;
		gap: 50px 0;
		margin: 60px 0 0 0;
	}
	.home-gs .speaker li {
		flex-basis: 50%;
		margin: 0;
	}
}

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

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

	[ HOME ] OUTLINE

*/
.home-outline {
	padding: 0 0 40px 0;
}
.home-outline .wrap {
	margin-top: 20px;
}
.home-outline table {
	width: 100%;
	font-weight: 500;
	font-size: 16px;
}
.home-outline table a {
	text-decoration: none;
}
.home-outline table th,
.home-outline table td {
	padding-bottom: 5px;
	vertical-align: top;
	font-weight: inherit;
}
.home-outline table th {
	width: 4em;
}
.home-outline .link i {
	padding-left: 5px;
}
.home-outline .calendar {
	display: flex;
	margin-top: 5px;
}
.home-outline .calendar .opener {
	display: flex;
	align-items: center;
	gap: 5px;
}
.home-outline .dropdown-menu {
	padding: 15px 20px;
	border: 0;
	background-color: #071333;
}
.home-outline .dropdown-menu ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-weight: 700;
}
.home-outline .dropdown-menu a {
	text-decoration: none;
	color: #C8C7E2;
}
.home-outline .dropdown-menu a:hover {
	color: var(--omnissa-color-neon);
}

@media (min-width: 768px) {
	.home-outline {
		padding: 0 0 100px 0;
	}
	.home-outline .wrap {
		display: table;
		margin: 50px auto 0 auto;
	}
	.home-outline table {
		font-size: 20px;
	}
	.home-outline .link {
		display: flex;
		align-items: center;
	}
}

@media (min-width: 992px) {
	.home-outline .wrap {
		display: flex;
		justify-content: space-between;
		max-width: 1000px;
	}
}

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

	[ HOME ] FAQ

*/
.home-faq {
	position: relative;
	padding: 30px 0 40px 0;
	background-image: linear-gradient(to bottom, #f6f5fb 0%, #ffffff 100%);
}
.home-faq .container {
	position: relative;
}
.home-faq .bg {
	position: absolute;
	width: 360px;
}
.home-faq .bg img {
	width: 100%;
}
.home-faq .bg-left {
	left: -280px;
	bottom: -120px;
}
.home-faq .bg-right {
	top: 20px;
	right: -260px;
}
.home-faq .list {
	position: relative;
	margin: 30px auto 0 auto;
	max-width: 856px;
	background-color: #fff;
	border: 1px solid #dfdced;
    border-radius: 10px;
    box-shadow: 0px 0px 30px 0px rgba(51, 57, 88, 0.18);
    overflow: hidden;
}
.home-faq .item:not(:last-child) {
	border-bottom: 1px solid #dfdced;
}
.home-faq .item:nth-child(even) {
	background-color: #f6f5fb;
}
.home-faq .item .accordion-button {
	position: relative;
	padding: 20px 40px 20px 20px;
	font-weight: 500;
	font-size: 18px;
}
.home-faq .item .accordion-button i {
	position: absolute;
	top: 50%;
	right: 15px;
	display: block;
	margin-top: -9px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: var(--omnissa-color-indigo);
}
.home-faq .item .accordion-button i::before,
.home-faq .item .accordion-button i::after {
	content: '';
	display: block;
	position: absolute;
	top: 8px;
	left: 3px;
	width: 12px;
	height: 2px;
	background-color: #fff;
	transition: transform 0.3s ease;
}
.home-faq .item .accordion-button[aria-expanded="false"] i::after {
	transform: rotate(-90deg);
}
.home-faq .item .accordion-body {
	padding: 0 20px 20px 20px;
}
.home-faq .item .accordion-body p {
	margin: 0;
}
.home-faq .item .accordion-body ul {
	margin: 10px 0;
	padding: 0;
	list-style-type: none;
}
.home-faq .item .accordion-body li {
	position: relative;
	padding-left: 1em;
}
.home-faq .item .accordion-body .list-dot li::before {
	content: '・';
	position: absolute;
	top: 0;
	left: 0.24em;
}
.home-faq .item .accordion-body .list-note {
	font-size: 14px;
}
.home-faq .item .accordion-body .list-note li::before {
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}

@media (min-width: 768px) {
	.home-faq {
		padding: 60px 0 100px 0;
	}
	.home-faq .bg-left {
		left: -200px;
		bottom: -60px;
	}
	.home-faq .bg-right {
		top: 50px;
		right: -200px;
	}
	.home-faq .list {
		margin-top: 50px;
	}
	.home-faq .item .accordion-button {
		padding: 20px 40px;
		font-size: 20px;
	}
	.home-faq .item .accordion-button i {
		right: 40px;
	}
	.home-faq .item .accordion-body {
		padding: 0 80px 30px 40px;
	}
}