@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700&display=swap');
/*
	HTML5 Reset :: style.css
-------------------------------------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}
*:before,
*:after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: #2c2c69;
	background: #e2edfc;
}
body.no-scroll {
	overflow: hidden;
	height: 100vh;
}

video,
iframe,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
	display: block;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
}

body,
table,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	text-align: left;
	font-weight: normal;
}

img,
abbr,
acronym,
fieldset {
	border: 0;
}

button,
input,
textarea,
select,
option {
	font-family: inherit;
	line-height: 1.5;
}

input[type='submit'],
button {
	border-radius: 0;
	-webkit-appearance: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

ol,
ul {
	list-style: none;
}

li {
	list-style-type: none;
}

blockquote,
q {
	quotes: none;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

img {
	vertical-align: top;
}

hr {
	box-sizing: content-box;
	overflow: visible;
	height: 0;
}

sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

pre {
	margin-top: 0;
	margin-bottom: 1rem;
	overflow: auto;
	-ms-overflow-style: scrollbar;
}

b,
strong {
	font-weight: bolder;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	margin: 0;
	padding: 0;
	border: 0;
	max-width: 100%;
	vertical-align: middle;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

p {
	display: block;
	-webkit-margin-before: 0;
	-webkit-margin-after: 0;
	-webkit-margin-start: 0;
	-webkit-margin-end: 0;
}

[hidden] {
	display: none;
}

@media screen and (max-width: 1024px) {
	.pc-only {
		display: none;
	}
}

body {
	padding-top: 82px;
}
@media screen and (max-width: 991px) {
	body {
		padding-top: 152px;
	}
}
@media screen and (max-width: 767px) {
	body {
		padding-top: 70px;
	}
}

.c-header {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(235, 243, 253, 0.5);
	padding: 10px 35px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	backdrop-filter: blur(6px);
}
@media screen and (max-width: 1024px) {
	.c-header {
		padding: 9px 16px;
	}
}
.c-header__wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	max-width: 1360px;
	width: 100%;
}
@media screen and (max-width: 991px) {
	.c-header__wrap {
		flex-direction: column;
	}
}
@media screen and (max-width: 767px) {
	.c-header__wrap {
		flex-direction: row;
	}
}
.c-header__hidden {
	width: 150px;
}
@media screen and (max-width: 1200px) {
	.c-header__hidden {
		display: none;
	}
}
.c-header__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 52px;
	text-align: center;
	background: transparent;
	position: relative;
	z-index: 999;
}
.c-header__logo::before {
	content: '';
	width: 68%;
	height: 50%;
	box-shadow: 0px 0px 20px 0px rgba(0, 148, 255, 0.2);
	background: rgba(0, 148, 255, 0.1);
	position: absolute;
	top: 25%;
	left: 15%;
	z-index: 0;
}
.c-header__logo img {
	position: relative;
	z-index: 1;
}
.c-header__toggle {
	appearance: none;
	display: none;
	width: 84px;
	height: 44px;
	background: url(../images/toggle-bg.svg) no-repeat center;
	background-size: contain;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	z-index: 999;
}
@media screen and (max-width: 767px) {
	.c-header__toggle {
		display: block;
	}
}
.c-header__toggle::before,
.c-header__toggle::after {
	content: '';
	width: 28px;
	height: 2px;
	background: #000;
	position: absolute;
	left: calc(50% - 14px);
	transition: 0.3s ease-in-out;
}
.c-header__toggle::before {
	top: 11px;
}
.c-header__toggle::after {
	top: 31px;
}
.c-header__toggle span {
	display: block;
	width: 28px;
	height: 2px;
	font-size: 0;
	background: #000;
	position: absolute;
	left: calc(50% - 14px);
	top: 21px;
	transition: 0.3s ease-in-out;
}
.c-header__toggle[aria-expanded='true'] span {
	width: 0;
}
.c-header__toggle[aria-expanded='true']::before,
.c-header__toggle[aria-expanded='true']::after {
	top: calc(50% - 1px);
}
.c-header__toggle[aria-expanded='true']::before {
	transform: rotate(45deg);
}
.c-header__toggle[aria-expanded='true']::after {
	transform: rotate(-45deg);
}
.c-header__overlay {
	width: 0;
	height: 100vh;
	background: #fff;
	backdrop-filter: blur(20px);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 997;
	transition: 0.3s ease-in-out;
	display: none;
}
@media screen and (max-width: 767px) {
	.c-header__overlay {
		display: block;
	}
}
.c-header:has(button[aria-expanded='true']) .c-header__overlay {
	width: 100vw;
}
.c-header:has(button[aria-expanded='true']) .c-nav {
	right: 0;
	z-index: 998;
}

.c-nav {
	padding: 0 100px;
	position: relative;
}
@media screen and (max-width: 767px) {
	.c-nav {
		width: 100%;
		height: 100vh;
		padding: 82px 20px 20px;
		position: fixed;
		top: 0;
		right: -100%;
		transition: 0.3s ease-in-out;
	}
}
.c-nav::before {
	content: '';
	/* width: 106px;
	height: 100%;
	background: url(../images/nav-after.svg) no-repeat center top;
	transform: rotateY(180deg);
	position: absolute;
	top: 0;
	left: 1px; */
	border-color: transparent #fff transparent transparent;
	border-style: solid;
	border-width: 0 100px 62px 0;
	content: '';
	height: 0;
	left: 0;
	position: absolute;
	top: 0;
	width: 0;
}
@media screen and (max-width: 767px) {
	.c-nav::before {
		display: none;
	}
}
.c-nav::after {
	content: '';
	/* width: 106px;
	height: 100%;
	background: url(../images/nav-after.svg) no-repeat center top;
	position: absolute;
	top: 0;
	right: 1px; */
	border-color: #fff transparent transparent;
	border-style: solid;
	border-width: 62px 100px 0 0;
	content: '';
	height: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 0;
}
@media screen and (max-width: 767px) {
	.c-nav::after {
		display: none;
	}
}
.c-nav > ul {
	display: flex;
}
@media screen and (max-width: 767px) {
	.c-nav > ul {
		width: 100%;
		height: 100%;
		overflow-x: auto;
		flex-direction: column;
	}
}
.c-nav > ul li {
	display: block;
	position: relative;
}
@media screen and (max-width: 767px) {
	.c-nav > ul li {
		width: 100%;
	}
}
.c-nav > ul li.js-subNav {
	overflow: hidden;
}
.c-nav > ul li.js-subNav:hover {
	overflow: visible;
}
.c-nav > ul li span {
	display: block;
	padding: 2px 5px;
	background: linear-gradient(270deg, #00eaff 0%, #0396ff 100%);
	border: 1px solid #d8e9ff;
	font-size: 8px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	border-radius: 100px;
	position: absolute;
	top: 0;
	right: 0;
}
@media screen and (max-width: 767px) {
	.c-nav > ul li span {
		font-size: 9px;
		left: 80px;
		right: auto;
		top: 3px;
	}
}
.c-nav > ul li p,
.c-nav > ul li a {
	display: block;
	padding: 21px 10px;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.65px;
	text-transform: uppercase;
	color: #2c2c69;
	background: #fff;
	position: relative;
	z-index: 1;
	transition: 0.3s ease-in-out;
	white-space: nowrap;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	.c-nav > ul li p,
	.c-nav > ul li a {
		font-size: 14px;
		padding: 17px 10px;
	}
}
.c-nav > ul li p:after,
.c-nav > ul li a:after {
	content: '';
	width: 100%;
	height: calc(100% - 6px);
	border: 1px solid #0094ff;
	border-radius: 6px;
	position: absolute;
	top: 3px;
	left: 0;
	z-index: 1;
	opacity: 0;
	transition: 0.3s ease-in-out;
}
.c-nav > ul li p:hover,
.c-nav > ul li a:hover {
	color: #0094ff;
}
.c-nav > ul li p:hover:after,
.c-nav > ul li a:hover:after {
	opacity: 1;
}
.c-nav > ul li p.is-active,
.c-nav > ul li a.is-active {
	color: #0094ff;
}
.c-nav > ul li > ul {
	background: #fff;
	width: 100%;
	padding: 4px;
	position: absolute;
	top: 100%;
	left: 0;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	z-index: -1;
	opacity: 0;
	transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
	.c-nav > ul li > ul {
		position: unset;
		z-index: 1;
		opacity: 1;
	}
}
@media screen and (max-width: 767px) {
	.c-nav > ul li > ul[hidden] {
		display: none;
	}
}
.c-nav > ul li > ul li {
	width: 100%;
	display: flex;
	gap: 4px;
	align-items: center;
}
.c-nav > ul li > ul li a {
	width: 100%;
	padding: 15px 10px;
	text-transform: capitalize;
}
.c-nav > ul li:hover > p {
	color: #0094ff;
}
.c-nav > ul li:hover > p:after {
	opacity: 1;
}
.c-nav > ul li:hover > ul {
	opacity: 1;
	z-index: 1;
}

.c-footer {
	background: #edf5ff url(../images/bg-footer-sp.svg) no-repeat top;
	background-size: 100% auto;
	padding: 102px 16px 10px;
	position: relative;
}
@media screen and (max-width: 767px) {
	.c-footer {
		background-position-y: 24px;
	}
}
.c-footer__inner {
	max-width: 1040px;
	margin: 0 auto;
	display: flex;
	gap: 16px;
	justify-content: space-between;
}
@media screen and (max-width: 767px) {
	.c-footer__inner {
		flex-wrap: wrap;
		gap: 20px 16px;
	}
}
.c-footer__inner--mt {
	margin-top: 45px;
}
@media screen and (max-width: 767px) {
	.c-footer__inner--mt {
		justify-content: center;
	}
}
@media screen and (max-width: 767px) {
	.c-footer__col {
		width: calc(50% - 8px);
	}
}
.c-footer__col:first-child {
	max-width: 34%;
}
@media screen and (max-width: 767px) {
	.c-footer__col:first-child {
		width: 100%;
		max-width: 100%;
	}
}
.c-footer__col--flex {
	display: flex;
	gap: 16px;
	flex-direction: column;
}
.c-footer__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 52px;
	text-align: center;
	background: transparent;
	position: relative;
}
.c-footer__logo::before {
	content: '';
	width: 68%;
	height: 50%;
	box-shadow: 0px 0px 20px 0px rgba(0, 148, 255, 0.2);
	background: rgba(0, 148, 255, 0.1);
	position: absolute;
	top: 25%;
	left: 15%;
	z-index: 0;
}
.c-footer__logo img {
	position: relative;
	z-index: 1;
}
.c-footer__subLogo {
	font-weight: 600;
	font-size: 20px;
	line-height: 1;
	color: #000;
}
.c-footer__subLogo span {
	color: #0094ff;
}
.c-footer__social {
	display: flex;
	gap: 15px;
}
.c-footer__social li {
	display: block;
}
.c-footer__social li a {
	display: block;
	transition: 0.3s ease-in-out;
}
.c-footer__social li a:hover {
	opacity: 0.7;
}
.c-footer__title {
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.65px;
	text-transform: capitalize;
	color: #2c2c69;
	margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
	.c-footer__title {
		margin-bottom: 16px;
	}
}
.c-footer__listLink {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.c-footer__listLink li a {
	display: block;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.65px;
	text-transform: capitalize;
	color: #2c2c69;
}
.c-footer__copy {
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.65px;
	text-transform: capitalize;
}
@media screen and (max-width: 767px) {
	.c-footer__copy {
		text-align: center;
	}
}
.c-footer__backTop {
	display: block;
	padding-right: 20px;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.65px;
	text-transform: capitalize;
	position: relative;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	.c-footer__backTop {
		font-weight: 600;
	}
}
.c-footer__backTop::after {
	content: '';
	width: 16px;
	height: 16px;
	background: url(../images/backToTop-icon.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	top: calc(50% - 8px);
	right: 0;
}

.c-btn {
	display: block;
	background: #0094ff;
	box-shadow: 0px 0px 12px 0px rgba(0, 148, 255, 0.4);
	padding: 20px 50px;
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	position: relative;
	transition: 0.3s ease-in-out;
	cursor: pointer;
}
.c-btn::before {
	content: '';
	width: 22px;
	height: 100%;
	border-top: 2px solid #aeddff;
	border-left: 2px solid #aeddff;
	border-bottom: 2px solid #aeddff;
	position: absolute;
	top: 0;
	left: 0;
}
.c-btn::after {
	content: '';
	width: 22px;
	height: 100%;
	border-top: 2px solid #aeddff;
	border-right: 2px solid #aeddff;
	border-bottom: 2px solid #aeddff;
	position: absolute;
	top: 0;
	right: 0;
}
.c-btn:hover {
	background: #fff;
	color: #0094ff;
}

@font-face {
	font-family: Azonix;
	src: url(../fonts/Azonix.otf);
}
.c-noData {
	width: 100%;
	height: 450px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.c-banner {
	display: flex;
	gap: 66px;
	align-items: center;
	justify-content: space-between;
	padding: 38px 64px 15px;
}
@media screen and (max-width: 1024px) {
	.c-banner {
		padding: 38px 16px 15px;
	}
}
@media screen and (max-width: 767px) {
	.c-banner {
		display: block;
		padding: 42px 16px 40px;
	}
}
.c-banner__img {
	order: 2;
}
@media screen and (max-width: 767px) {
	.c-banner__img {
		order: 1;
		text-align: center;
		margin-bottom: 42px;
	}
}
.c-banner__content {
	max-width: 600px;
	order: 1;
}
@media screen and (max-width: 767px) {
	.c-banner__content {
		max-width: 100%;
		order: 2;
	}
}
.c-banner__content h1 {
	font-family: Azonix;
	font-weight: 400;
	font-size: 52px;
	line-height: 1;
	color: #1d1d20;
}
@media screen and (max-width: 767px) {
	.c-banner__content h1 {
		font-size: 32px;
	}
}
.c-banner__content p {
	margin-top: 16px;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.65px;
}

.c-cardSlider {
	display: flex;
	background: #f8fbff;
	padding: 16px;
	position: relative;
}
@media screen and (max-width: 991px) {
	.c-cardSlider {
		display: block;
	}
}
.c-cardSlider::before {
	content: '';
	width: 100%;
	height: 15px;
	background: url(../images/slider-before.svg) no-repeat top left;
	position: absolute;
	top: -14px;
	left: 0;
}
.c-cardSlider::after {
	content: '';
	width: 100%;
	height: 15px;
	background: url(../images/slider-before.svg) no-repeat;
	background-size: auto 100%;
	position: absolute;
	bottom: -14px;
	right: 0;
	transform: rotateY(180deg) rotateX(180deg);
}
.c-cardSlider .c-btn {
	max-width: 213px;
	margin-left: auto;
	margin-right: 0;
}
@media screen and (max-width: 767px) {
	.c-cardSlider .c-btn {
		max-width: 100%;
		margin-left: 0;
	}
}
.c-cardSlider__img {
	width: 410px;
}
@media screen and (max-width: 991px) {
	.c-cardSlider__img {
		width: 100%;
		height: 200px;
		margin-bottom: 16px;
	}
}
.c-cardSlider__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.c-cardSlider__content {
	width: calc(100% - 426px);
	margin-left: 16px;
	display: flex;
	gap: 20px;
	flex-direction: column;
}
@media screen and (max-width: 991px) {
	.c-cardSlider__content {
		width: 100%;
		margin-left: 0;
	}
}
.c-cardSlider__head {
	width: 100%;
	padding: 0 74px;
	position: relative;
}
@media screen and (max-width: 767px) {
	.c-cardSlider__head {
		padding: 0 0 42px 74px;
		min-height: 100px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}
.c-cardSlider__head h2 {
	font-family: Azonix;
	font-weight: 400;
	font-size: 32px;
	line-height: 1;
	color: #1d1d20;
	margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
	.c-cardSlider__head h2 {
		font-size: 24px;
	}
}
.c-cardSlider__head p {
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
	text-transform: uppercase;
}
@media screen and (max-width: 767px) {
	.c-cardSlider__head p {
		font-size: 12px;
	}
}
.c-cardSlider__head p time {
	font-weight: 600;
}
.c-cardSlider__logo {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0;
	left: 0;
}
.c-cardSlider__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.c-cardSlider__star {
	display: block;
	padding: 4px 24px 4px 4px;
	font-weight: 600;
	font-size: 20px;
	line-height: 1;
	color: #f3ba2f;
	position: absolute;
	right: 0;
	top: calc(50% - 14px);
}
@media screen and (max-width: 767px) {
	.c-cardSlider__star {
		font-size: 16px;
		right: auto;
		top: auto;
		left: 0;
		bottom: 0;
	}
}
.c-cardSlider__star::after {
	content: '';
	width: 16px;
	height: 16px;
	background: url(../images/card-star.svg) no-repeat center;
	background-size: 16px 16px;
	position: absolute;
	top: calc(50% - 8px);
	right: 4px;
}
.c-cardSlider__network {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: space-between;
}
.c-cardSlider__network ul {
	display: flex;
	gap: 6px;
}
.c-cardSlider__network ul li {
	display: block;
}
.c-cardSlider__network ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid #ececec;
	padding: 6px;
	border-radius: 4px;
	transition: 0.3s ease-in-out;
}
.c-cardSlider__network ul li a:hover {
	border-color: #2c2c69;
}
.c-cardSlider__network p {
	display: flex;
	gap: 6px;
	align-items: center;
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}
@media screen and (max-width: 767px) {
	.c-cardSlider__network p {
		font-size: 14px;
	}
}
.c-cardSlider__network p img {
	margin-left: -2px;
}
.c-cardSlider__network p img:first-child {
	margin-left: 0;
}
.c-cardSlider__text {
	font-size: 16px;
	line-height: 1.3;
}
.c-cardSlider__tag {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.c-cardSlider__tag li {
	display: block;
	background: rgba(4, 9, 25, 0.1);
	padding: 6px 12px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
}
@media screen and (max-width: 767px) {
	.c-cardSlider__tag li {
		font-size: 12px;
	}
}

@media screen and (max-width: 1024px) {
	.swiper {
		padding: 0 16px;
	}
}
.swiper .swiper-wrapper {
	padding: 15px 0;
}
.swiper .swiper-slide {
	opacity: 0.2;
	transition: 0.3s ease-in-out;
}
.swiper .swiper-slide-active {
	opacity: 1;
}
.swiper .swiper-pagination {
	width: 100%;
	position: unset;
	margin-top: 8px;
	padding: 16px;
	display: flex;
	gap: 25px;
	justify-content: center;
}
.swiper .swiper-pagination-bullet {
	display: block;
	width: 50px;
	height: 7px;
	background: #cee1fb;
	border-radius: 0;
	margin: 0 !important;
	opacity: 1 !important;
	transition: 0.3s ease-in-out;
}
.swiper .swiper-pagination-bullet-active {
	background: #0094ff;
}

.c-game {
	margin-top: 25px;
	padding: 0 16px 25px;
}
.c-game__title {
	max-width: 513px;
	margin: 0 auto 16px;
	font-family: Azonix;
	font-weight: 400;
	font-size: 52px;
	line-height: 1;
	text-align: center;
	padding: 10px 36px;
	position: relative;
}
@media screen and (max-width: 767px) {
	.c-game__title {
		font-size: 24px;
		max-width: 276px;
	}
}
.c-game__title::before {
	content: '';
	width: 145px;
	height: 11px;
	background: url(../images/title-before.png) no-repeat bottom left;
	background-size: contain;
	position: absolute;
	left: 0;
	bottom: 7px;
}
.c-game__title::after {
	content: '';
	width: 88px;
	height: 23px;
	background: url(../images/title-after.png) no-repeat top right;
	background-size: contain;
	position: absolute;
	top: 0;
	right: 0;
}
.c-game__text {
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.65px;
	text-align: center;
	margin-bottom: 24px;
}

.c-tabs {
	max-width: 1040px;
	margin: 0 auto;
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	justify-content: space-between;
}
@media screen and (max-width: 767px) {
	.c-tabs {
		flex-direction: column;
		gap: 16px;
	}
}
.c-tabs__list {
	display: flex;
	gap: 6px;
}
.c-tabs__list button {
	appearance: none;
	display: block;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	white-space: nowrap;
	color: #2c2c69;
	padding: 13px 16px;
	background: transparent;
	transition: 0.3s ease-in-out;
	cursor: pointer;
}
.c-tabs__list button[aria-selected='true'] {
	background: #0094ff;
	color: #fff;
}
.c-tabs__search {
	min-width: 244px;
}
.c-tabs__search label {
	display: flex;
	gap: 6px;
	width: 100%;
	height: 100%;
	padding: 4px;
	background: #cee1fb;
}
.c-tabs__search label input {
	appearance: none;
	display: block;
	width: calc(100% - 40px);
	padding: 0 16px;
	background: transparent;
	font-size: 14px;
	color: #2c2c69;
}
.c-tabs__search label button {
	appearance: none;
	display: block;
	width: 40px;
	height: 40px;
	background: #f8fbff;
	cursor: pointer;
}
.c-tabs__tabpanel {
	width: 100%;
}
.c-tabs__btn {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.c-cardList {
	display: flex;
	gap: 24px;
}
@media screen and (max-width: 767px) {
	.c-cardList {
		flex-direction: column;
	}
}
.c-cardList__item {
	width: calc(33.3333333333% - 16px);
	display: block;
	text-decoration: none;
	padding-bottom: 15px;
	position: relative;
}
@media screen and (max-width: 767px) {
	.c-cardList__item {
		width: 100%;
	}
}
.c-cardList__item::after {
	content: '';
	width: 100%;
	height: 15px;
	background: url(../images/cardList-after.svg) no-repeat top right;
	position: absolute;
	bottom: 0;
	right: 0;
}
.c-cardList__img {
	width: 100%;
	height: 260px;
}
@media screen and (max-width: 991px) {
	.c-cardList__img {
		height: 180px;
	}
}
.c-cardList__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.c-cardList__content {
	padding: 16px 16px 35px;
	background: #fff;
}
.c-cardList__content h3 {
	font-family: Azonix;
	font-weight: 400;
	font-size: 20px;
	line-height: 1;
	color: #2c2c69;
	margin-bottom: 12px;
}
.c-cardList__content p {
	font-size: 16px;
	line-height: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.c-cardList__content ul {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 2px solid #c6d5e8;
	display: flex;
	gap: 12px;
	flex-direction: column;
}
.c-cardList__content ul li {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-size: 14px;
	line-height: 1;
	color: #2c2c69;
	font-weight: 400;
}
.c-cardList__content ul li span,
.c-cardList__content ul li p {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
}
.c-cardList__content ul li span img {
	margin-left: -2px;
}
.c-cardList__content ul li span img:first-child {
	margin-left: 0;
}
.c-cardList__content ul li p > a {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #ececec;
	border-radius: 4px;
	transition: 0.3s ease-in-out;
}
.c-cardList__content ul li p > a:hover {
	opacity: 0.7;
}
