@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-breadcrumb {
	margin-bottom: 24px;
}
.c-breadcrumb ol {
	display: flex;
	gap: 20px;
}
.c-breadcrumb ol li {
	display: block;
	position: relative;
}
.c-breadcrumb ol li::after {
	content: '>';
	font-weight: 400;
	font-size: 13px;
	line-height: 19.5px;
	letter-spacing: 0.65px;
	position: absolute;
	top: 50%;
	right: -14px;
	transform: translateY(-50%);
}
.c-breadcrumb ol li:has(a[aria-current='page'])::after {
	display: none;
}
.c-breadcrumb ol li a {
	display: block;
	padding: 10px 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.65px;
	text-transform: uppercase;
	color: rgba(44, 44, 105, 0.4);
}
.c-breadcrumb ol li a[aria-current='page'] {
	color: #0094ff;
	font-weight: 600;
}

.c-title {
	padding-left: 74px;
	min-height: 60px;
	font-family: Azonix;
	font-weight: 400;
	font-size: 36px;
	line-height: 1;
	color: #1d1d20;
	position: relative;
}
.c-title span {
	display: block;
	margin-top: 4px;
	font-weight: 600;
	font-size: 20px;
	text-transform: uppercase;
	color: #2c2c69;
}
.c-title__logo {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}
.c-title__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-video {
	width: 100%;
	padding-top: 56.25%;
	position: relative;
}
.c-video iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.c-info {
	display: flex;
	gap: 16px;
	border-top: 2px solid #c6d5e8;
	padding-top: 24px;
	padding-bottom: 15px;
	margin-top: 24px;
}
@media screen and (max-width: 991px) {
	.c-info {
		flex-direction: column;
	}
}
.c-info__video {
	width: 60%;
	max-width: 624px;
}
@media screen and (max-width: 991px) {
	.c-info__video {
		width: 100%;
		max-width: 100%;
	}
}
.c-info__content {
	width: 40%;
	max-width: 400px;
	padding: 16px;
	background: #fff;
	position: relative;
}
@media screen and (max-width: 991px) {
	.c-info__content {
		width: 100%;
		max-width: 100%;
	}
}
.c-info__content::after {
	content: '';
	width: 100%;
	height: 15px;
	background: url(../images/detail-info-after.png) no-repeat top right;
	background-size: auto 15px;
	background-position-y: -1px;
	position: absolute;
	bottom: -15px;
	right: 0;
}
.c-info__price {
	font-weight: 600;
	font-size: 36px;
	line-height: 1;
	color: #2c2c69;
	margin-bottom: 16px;
}
.c-info__price span {
	display: block;
	font-weight: 400;
	font-size: 14px;
	margin-bottom: 16px;
}
.c-info__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 16px;
}
.c-info__list li {
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	color: #2c2c69;
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
}
.c-info__list li a,
.c-info__list li p,
.c-info__list li span {
	font-weight: 600;
	display: flex;
	gap: 6px;
	align-items: center;
	transition: 0.3s ease-in-out;
}
.c-info__list li p > a {
	display: block;
	border: 1px solid #ececec;
	border-radius: 4px;
	padding: 6px;
}
.c-info__list li a:hover {
	opacity: 0.7;
}

.c-tabs {
	margin-top: 20px;
}
.c-tabs__wrap {
	width: 100%;
	overflow-x: auto;
	padding-bottom: 8px;
	margin-bottom: 16px;
}
.c-tabs__list {
	display: flex;
	flex-wrap: nowrap;
}
.c-tabs__list button {
	appearance: none;
	font-weight: 600;
	font-size: 20px;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	color: #2c2c69;
	padding: 9px 14px;
	white-space: nowrap;
	background: transparent;
	cursor: pointer;
	transition: 0.3s ease-in-out;
	border-bottom: 1px solid #87909f;
	position: relative;
}
.c-tabs__list button::after {
	content: '';
	width: 0;
	height: 2px;
	background: #0094ff;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: 0.3s ease-in-out;
}
.c-tabs__list button[aria-selected='true'] {
	color: #0094ff;
}
.c-tabs__list button[aria-selected='true']::after {
	width: 100%;
}
.c-tabs__tabpanel {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.c-tabs__tabpanel[hidden] {
	display: none;
}
.c-tabs__tabpanel h2,
.c-tabs__tabpanel h3,
.c-tabs__tabpanel h4 {
	font-family: Azonix;
	font-weight: 400;
	font-size: 36px;
	line-height: 1;
	color: #1d1d20;
}
.c-tabs__tabpanel a,
.c-tabs__tabpanel p a{
	color: #0000ee;
}
.c-tabs__tabpanel p {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.65px;
}

.c-tabs__tabpanel ul li {
	list-style: disc;
    margin-left: 14px;
}

.p-detail {
	padding: 0 16px 105px;
}
@media screen and (max-width: 767px) {
	.p-detail {
		padding: 0 16px 52px;
	}
}
.p-detail__inner {
	max-width: 1040px;
	margin: 0 auto;
}
.p-detail__tag {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 24px;
}
.p-detail__tag li {
	background: rgba(4, 9, 25, 0.1);
	padding: 6px 12px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
	color: #2c2c69;
}
@media screen and (max-width: 767px) {
	.p-detail__tag li {
		font-size: 12px;
	}
}
