@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
	box-sizing: border-box; /* 1 */
	background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
	text-decoration: inherit; /* 1 */
	vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
	cursor: default; /* 1 */
	line-height: 1.5; /* 2 */
	overflow-wrap: break-word; /* 3 */
	-moz-tab-size: 4; /* 4 */
	-o-tab-size: 4;
	tab-size: 4; /* 4 */
	-webkit-tap-highlight-color: transparent; /* 5 */
	-webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
	margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
	margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
	color: inherit; /* 1 */
	height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
	list-style-type: none;
	padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
	content: '​';
	float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
	overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
	font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
	vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
	border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
	fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
	border-collapse: collapse; /* 1 */
	border-color: inherit; /* 2 */
	text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
	margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type='button' i], [type='reset' i], [type='submit' i]) {
	-webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
	border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
	vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
	margin: 0; /* 1 */
	resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type='search' i]) {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
	background-color: white;
	border: solid;
	color: black;
	height: -moz-fit-content;
	height: fit-content;
	left: 0;
	margin: auto;
	padding: 1em;
	position: absolute;
	right: 0;
	width: -moz-fit-content;
	width: fit-content;
}

:where(dialog:not([open])) {
	display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
	display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy='true' i]) {
	cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
	cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled='true' i], [disabled]) {
	cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden='false' i][hidden]) {
	display: initial;
}

:where([aria-hidden='false' i][hidden]:not(:focus)) {
	clip: rect(0, 0, 0, 0);
	position: absolute;
}

/**
 * Restrict sizing to the page width in all browsers (opinionated).
 */
:where(iframe, img, input, video, select, textarea) {
	height: auto;
	max-width: 100%;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */
:where(button, input, select, textarea) {
	background-color: transparent; /* 1 */
	border: 1px solid WindowFrame; /* 1 */
	color: inherit; /* 1 */
	font: inherit; /* 2 */
	letter-spacing: inherit; /* 2 */
	padding: 0.25em 0.375em; /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(select) {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right center/1em;
	border-radius: 0;
	padding-right: 1em;
}

/**
 * Don't show the arrow for multiple choice selects
 */
:where(select[multiple]) {
	background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */
:where([type='color' i], [type='range' i]) {
	border-width: 0;
	padding: 0;
}

/**
 * Swiper 12.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 18, 2025
 */
:root {
	--swiper-theme-color: #007aff;
}

:host {
	display: block;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.swiper {
	display: block;
	list-style: none;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	padding: 0;
	position: relative;
	z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
	flex-direction: column;
}

.swiper-wrapper {
	box-sizing: initial;
	display: flex;
	height: 100%;
	position: relative;
	transition-property: transform;
	transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
	width: 100%;
	z-index: 1;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
	transform: translateZ(0);
}

.swiper-horizontal {
	touch-action: pan-y;
}

.swiper-vertical {
	touch-action: pan-x;
}

.swiper-slide {
	display: block;
	flex-shrink: 0;
	height: 100%;
	position: relative;
	transition-property: transform;
	width: 100%;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
}

.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
	backface-visibility: hidden;
	transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
	transform-style: preserve-3d;
}

.swiper-3d {
	perspective: 1200px;
	.swiper-cube-shadow,
	.swiper-slide {
		transform-style: preserve-3d;
	}
}

.swiper-css-mode {
	> .swiper-wrapper {
		overflow: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
		&::-webkit-scrollbar {
			display: none;
		}
	}
	> .swiper-wrapper > .swiper-slide {
		scroll-snap-align: start start;
	}
	&.swiper-horizontal {
		> .swiper-wrapper {
			scroll-snap-type: x mandatory;
		}
	}
	&.swiper-vertical {
		> .swiper-wrapper {
			scroll-snap-type: y mandatory;
		}
	}
	&.swiper-free-mode {
		> .swiper-wrapper {
			scroll-snap-type: none;
		}
		> .swiper-wrapper > .swiper-slide {
			scroll-snap-align: none;
		}
	}
	&.swiper-centered {
		> .swiper-wrapper:before {
			content: '';
			flex-shrink: 0;
			order: 9999;
		}
		> .swiper-wrapper > .swiper-slide {
			scroll-snap-align: center center;
			scroll-snap-stop: always;
		}
	}
	&.swiper-centered.swiper-horizontal {
		> .swiper-wrapper > .swiper-slide:first-child {
			margin-inline-start: var(--swiper-centered-offset-before);
		}
		> .swiper-wrapper:before {
			height: 100%;
			min-height: 1px;
			width: var(--swiper-centered-offset-after);
		}
	}
	&.swiper-centered.swiper-vertical {
		> .swiper-wrapper > .swiper-slide:first-child {
			margin-block-start: var(--swiper-centered-offset-before);
		}
		> .swiper-wrapper:before {
			height: var(--swiper-centered-offset-after);
			min-width: 1px;
			width: 100%;
		}
	}
}

.swiper-3d {
	.swiper-slide-shadow,
	.swiper-slide-shadow-bottom,
	.swiper-slide-shadow-left,
	.swiper-slide-shadow-right,
	.swiper-slide-shadow-top {
		height: 100%;
		left: 0;
		pointer-events: none;
		position: absolute;
		top: 0;
		width: 100%;
		z-index: 10;
	}
	.swiper-slide-shadow {
		background: rgba(0, 0, 0, 0.1490196078);
	}
	.swiper-slide-shadow-left {
		background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
	}
	.swiper-slide-shadow-right {
		background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
	}
	.swiper-slide-shadow-top {
		background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
	}
	.swiper-slide-shadow-bottom {
		background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
	}
}

.swiper-lazy-preloader {
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top: 4px solid rgba(0, 0, 0, 0);
	box-sizing: border-box;
	height: 42px;
	left: 50%;
	margin-left: -21px;
	margin-top: -21px;
	position: absolute;
	top: 50%;
	transform-origin: 50%;
	width: 42px;
	z-index: 10;
}

.swiper-watch-progress .swiper-slide-visible,
.swiper:not(.swiper-watch-progress) {
	.swiper-lazy-preloader {
		animation: swiper-preloader-spin 1s linear infinite;
	}
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
	0% {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(1turn);
	}
}
.swiper-virtual .swiper-slide {
	-webkit-backface-visibility: hidden;
	transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode {
	.swiper-wrapper:after {
		content: '';
		left: 0;
		pointer-events: none;
		position: absolute;
		top: 0;
	}
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
	.swiper-wrapper:after {
		height: 1px;
		width: var(--swiper-virtual-size);
	}
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
	.swiper-wrapper:after {
		height: var(--swiper-virtual-size);
		width: 1px;
	}
}

:root {
	--swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
	align-items: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
	cursor: pointer;
	display: flex;
	height: var(--swiper-navigation-size);
	justify-content: center;
	position: absolute;
	width: var(--swiper-navigation-size);
	z-index: 10;
	&.swiper-button-disabled {
		cursor: auto;
		opacity: 0.35;
		pointer-events: none;
	}
	&.swiper-button-hidden {
		cursor: auto;
		opacity: 0;
		pointer-events: none;
	}
	.swiper-navigation-disabled & {
		display: none !important;
	}
	svg {
		height: 100%;
		-o-object-fit: contain;
		object-fit: contain;
		transform-origin: center;
		width: 100%;
		fill: currentColor;
		pointer-events: none;
	}
}

.swiper-button-lock {
	display: none;
}

.swiper-button-next,
.swiper-button-prev {
	margin-top: calc(0px - var(--swiper-navigation-size) / 2);
	top: var(--swiper-navigation-top-offset, 50%);
}

.swiper-button-prev {
	left: var(--swiper-navigation-sides-offset, 4px);
	right: auto;
	.swiper-navigation-icon {
		transform: rotate(180deg);
	}
}

.swiper-button-next {
	left: auto;
	right: var(--swiper-navigation-sides-offset, 4px);
}

.swiper-horizontal {
	.swiper-button-next,
	.swiper-button-prev,
	~ .swiper-button-next,
	~ .swiper-button-prev {
		margin-left: 0;
		margin-top: calc(0px - var(--swiper-navigation-size) / 2);
		top: var(--swiper-navigation-top-offset, 50%);
	}
	&.swiper-rtl .swiper-button-next,
	&.swiper-rtl ~ .swiper-button-next,
	& ~ .swiper-button-prev,
	.swiper-button-prev {
		left: var(--swiper-navigation-sides-offset, 4px);
		right: auto;
	}
	&.swiper-rtl .swiper-button-prev,
	&.swiper-rtl ~ .swiper-button-prev,
	& ~ .swiper-button-next,
	.swiper-button-next {
		left: auto;
		right: var(--swiper-navigation-sides-offset, 4px);
	}
	&.swiper-rtl .swiper-button-next,
	&.swiper-rtl ~ .swiper-button-next,
	& ~ .swiper-button-prev,
	.swiper-button-prev {
		.swiper-navigation-icon {
			transform: rotate(180deg);
		}
	}
	&.swiper-rtl .swiper-button-prev,
	&.swiper-rtl ~ .swiper-button-prev {
		.swiper-navigation-icon {
			transform: rotate(0deg);
		}
	}
}

.swiper-vertical {
	.swiper-button-next,
	.swiper-button-prev,
	~ .swiper-button-next,
	~ .swiper-button-prev {
		left: var(--swiper-navigation-top-offset, 50%);
		margin-left: calc(0px - var(--swiper-navigation-size) / 2);
		margin-top: 0;
		right: auto;
	}
	.swiper-button-prev,
	~ .swiper-button-prev {
		bottom: auto;
		top: var(--swiper-navigation-sides-offset, 4px);
		.swiper-navigation-icon {
			transform: rotate(-90deg);
		}
	}
	.swiper-button-next,
	~ .swiper-button-next {
		bottom: var(--swiper-navigation-sides-offset, 4px);
		top: auto;
		.swiper-navigation-icon {
			transform: rotate(90deg);
		}
	}
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	transform: translateZ(0);
	transition: opacity 0.3s;
	z-index: 10;
	&.swiper-pagination-hidden {
		opacity: 0;
	}
	&.swiper-pagination-disabled,
	.swiper-pagination-disabled > & {
		display: none !important;
	}
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: var(--swiper-pagination-bottom, 8px);
	left: 0;
	top: var(--swiper-pagination-top, auto);
	width: 100%;
}

.swiper-pagination-bullets-dynamic {
	font-size: 0;
	overflow: hidden;
	.swiper-pagination-bullet {
		position: relative;
		transform: scale(0.33);
	}
	.swiper-pagination-bullet-active,
	.swiper-pagination-bullet-active-main {
		transform: scale(1);
	}
	.swiper-pagination-bullet-active-prev {
		transform: scale(0.66);
	}
	.swiper-pagination-bullet-active-prev-prev {
		transform: scale(0.33);
	}
	.swiper-pagination-bullet-active-next {
		transform: scale(0.66);
	}
	.swiper-pagination-bullet-active-next-next {
		transform: scale(0.33);
	}
}

.swiper-pagination-bullet {
	background: var(--swiper-pagination-bullet-inactive-color, #000);
	border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
	display: inline-block;
	height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
	opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
	width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
	button& {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		border: none;
		box-shadow: none;
		margin: 0;
		padding: 0;
	}
	.swiper-pagination-clickable & {
		cursor: pointer;
	}
	&:only-child {
		display: none !important;
	}
}

.swiper-pagination-bullet-active {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
	left: var(--swiper-pagination-left, auto);
	right: var(--swiper-pagination-right, 8px);
	top: 50%;
	transform: translate3d(0, -50%, 0);
	.swiper-pagination-bullet {
		display: block;
		margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
	}
	&.swiper-pagination-bullets-dynamic {
		top: 50%;
		transform: translateY(-50%);
		width: 8px;
		.swiper-pagination-bullet {
			display: inline-block;
			transition:
				transform 0.2s,
				top 0.2s;
		}
	}
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
	.swiper-pagination-bullet {
		margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
	}
	&.swiper-pagination-bullets-dynamic {
		left: 50%;
		transform: translateX(-50%);
		white-space: nowrap;
		.swiper-pagination-bullet {
			transition:
				transform 0.2s,
				left 0.2s;
		}
	}
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition:
		transform 0.2s,
		right 0.2s;
}

.swiper-pagination-fraction {
	color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
	background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.2509803922));
	position: absolute;
	.swiper-pagination-progressbar-fill {
		background: var(--swiper-pagination-color, var(--swiper-theme-color));
		height: 100%;
		left: 0;
		position: absolute;
		top: 0;
		transform: scale(0);
		transform-origin: left top;
		width: 100%;
	}
	.swiper-rtl & .swiper-pagination-progressbar-fill {
		transform-origin: right top;
	}
	&.swiper-pagination-horizontal,
	&.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
	.swiper-horizontal > &,
	.swiper-vertical > &.swiper-pagination-progressbar-opposite {
		height: var(--swiper-pagination-progressbar-size, 4px);
		left: 0;
		top: 0;
		width: 100%;
	}
	&.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
	&.swiper-pagination-vertical,
	.swiper-horizontal > &.swiper-pagination-progressbar-opposite,
	.swiper-vertical > & {
		height: 100%;
		left: 0;
		top: 0;
		width: var(--swiper-pagination-progressbar-size, 4px);
	}
}

.swiper-pagination-lock {
	display: none;
}

.swiper-scrollbar {
	background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1019607843));
	border-radius: var(--swiper-scrollbar-border-radius, 10px);
	position: relative;
	touch-action: none;
	&.swiper-scrollbar-disabled,
	.swiper-scrollbar-disabled > & {
		display: none !important;
	}
	&.swiper-scrollbar-horizontal,
	.swiper-horizontal > & {
		bottom: var(--swiper-scrollbar-bottom, 4px);
		height: var(--swiper-scrollbar-size, 4px);
		left: var(--swiper-scrollbar-sides-offset, 1%);
		position: absolute;
		top: var(--swiper-scrollbar-top, auto);
		width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
		z-index: 50;
	}
	&.swiper-scrollbar-vertical,
	.swiper-vertical > & {
		height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
		left: var(--swiper-scrollbar-left, auto);
		position: absolute;
		right: var(--swiper-scrollbar-right, 4px);
		top: var(--swiper-scrollbar-sides-offset, 1%);
		width: var(--swiper-scrollbar-size, 4px);
		z-index: 50;
	}
}

.swiper-scrollbar-drag {
	background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5019607843));
	border-radius: var(--swiper-scrollbar-border-radius, 10px);
	height: 100%;
	left: 0;
	position: relative;
	top: 0;
	width: 100%;
}

.swiper-scrollbar-cursor-drag {
	cursor: move;
}

.swiper-scrollbar-lock {
	display: none;
}

.swiper-zoom-container {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	text-align: center;
	width: 100%;
	> canvas,
	> img,
	> svg {
		max-height: 100%;
		max-width: 100%;
		-o-object-fit: contain;
		object-fit: contain;
	}
}

.swiper-slide-zoomed {
	cursor: move;
	touch-action: none;
}

.swiper .swiper-notification {
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
	margin: 0 auto;
	transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
	flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
	flex-direction: column;
	flex-wrap: wrap;
}

.swiper-fade {
	&.swiper-free-mode {
		.swiper-slide {
			transition-timing-function: ease-out;
		}
	}
	.swiper-slide {
		pointer-events: none;
		transition-property: opacity;
		.swiper-slide {
			pointer-events: none;
		}
	}
	.swiper-slide-active {
		pointer-events: auto;
		& .swiper-slide-active {
			pointer-events: auto;
		}
	}
}

.swiper.swiper-cube {
	overflow: visible;
}

.swiper-cube {
	.swiper-slide {
		backface-visibility: hidden;
		height: 100%;
		pointer-events: none;
		transform-origin: 0 0;
		visibility: hidden;
		width: 100%;
		z-index: 1;
		.swiper-slide {
			pointer-events: none;
		}
	}
	&.swiper-rtl .swiper-slide {
		transform-origin: 100% 0;
	}
	.swiper-slide-active {
		&,
		& .swiper-slide-active {
			pointer-events: auto;
		}
	}
	.swiper-slide-active,
	.swiper-slide-next,
	.swiper-slide-prev {
		pointer-events: auto;
		visibility: visible;
	}
	.swiper-cube-shadow {
		bottom: 0;
		height: 100%;
		left: 0;
		opacity: 0.6;
		position: absolute;
		width: 100%;
		z-index: 0;
		&:before {
			background: #000;
			bottom: 0;
			content: '';
			filter: blur(50px);
			left: 0;
			position: absolute;
			right: 0;
			top: 0;
		}
	}
}

.swiper-cube {
	.swiper-slide-next + .swiper-slide {
		pointer-events: auto;
		visibility: visible;
	}
}

.swiper-cube {
	.swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
	.swiper-slide-shadow-cube.swiper-slide-shadow-left,
	.swiper-slide-shadow-cube.swiper-slide-shadow-right,
	.swiper-slide-shadow-cube.swiper-slide-shadow-top {
		backface-visibility: hidden;
		z-index: 0;
	}
}

.swiper.swiper-flip {
	overflow: visible;
}

.swiper-flip {
	.swiper-slide {
		backface-visibility: hidden;
		pointer-events: none;
		z-index: 1;
		.swiper-slide {
			pointer-events: none;
		}
	}
	.swiper-slide-active {
		&,
		& .swiper-slide-active {
			pointer-events: auto;
		}
	}
}

.swiper-flip {
	.swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
	.swiper-slide-shadow-flip.swiper-slide-shadow-left,
	.swiper-slide-shadow-flip.swiper-slide-shadow-right,
	.swiper-slide-shadow-flip.swiper-slide-shadow-top {
		backface-visibility: hidden;
		z-index: 0;
	}
}

.swiper-creative {
	.swiper-slide {
		backface-visibility: hidden;
		overflow: hidden;
		transition-property: transform, opacity, height;
	}
}

.swiper.swiper-cards {
	overflow: visible;
}

.swiper-cards {
	.swiper-slide {
		backface-visibility: hidden;
		overflow: hidden;
		transform-origin: center bottom;
	}
}

* {
	margin: 0;
	padding: 0;
}

html {
	-webkit-tap-highlight-color: revert;
	cursor: revert;
	min-width: 375px;
	font-size: 62.5%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	line-break: normal;
	overflow-wrap: anywhere;
	color: #1a1a1a;
}

body {
	font-size: 1.6rem;
	background-image: url('/site_gaster10/lp/assets/img/contents_bg_sp.jpg');
	background-repeat: repeat-y;
	background-size: 100% auto;
}
@media (min-width: 751px) {
	body {
		background-image: url('/site_gaster10/lp/assets/img/contents_bg.jpg');
	}
}

li {
	list-style-type: none;
}

th {
	font-weight: inherit;
}

address {
	font-style: inherit;
}

fieldset {
	border: 0;
	min-width: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
}

h1 {
	margin: 0;
}

cite,
dfn,
em,
i,
var {
	font-style: inherit;
}

small {
	font-size: inherit;
}

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

button,
input,
select,
textarea {
	border: 0;
	padding: 0;
}
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
	cursor: not-allowed;
}

button {
	touch-action: manipulation;
}
button:not(:disabled, [aria-disabled='true']) {
	cursor: pointer;
}

[hidden][hidden] {
	display: none !important;
}

img {
	display: block;
	width: 100%;
	height: auto;
}

svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

.c-header {
	padding-block: calc(33 / 750 * 100vw);
}
@media (min-width: 751px) {
	.c-header {
		padding-block: 34px 17px;
	}
}

.c-header__logo {
	width: calc(224 / 750 * 100vw);
	margin: 0 auto;
}
@media (min-width: 751px) {
	.c-header__logo {
		width: 203px;
	}
}

.c-footer {
	margin-top: calc(-80 / 750 * 100vw);
	padding-top: calc(85 / 750 * 100vw);
	background-color: #fff;
}
@media (min-width: 751px) {
	.c-footer {
		margin-top: -170px;
		padding-top: 150px;
	}
}
.c-footer *,
.c-footer button {
	/* stylelint-disable */
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'Osaka', 'ＭＳ Ｐゴシック', 'MS P Gothic', Verdana, Arial, Helvetica, sans-serif;
	font-weight: 400;
	color: #555;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	/* stylelint-enable */
}

.c-footer__container {
	padding: 0 15px 46px;
}
@media (min-width: 751px) {
	.c-footer__container {
		max-width: 960px;
		padding: 0 15px 95px;
		margin: 0 auto;
	}
}

.c-footer__logo-wrap {
	text-align: center;
	display: flex;
	justify-content: center;
}

.c-footer__logo img {
	width: auto;
	max-width: 100%;
	height: 30px;
}
@media (min-width: 751px) {
	.c-footer__logo img {
		height: 35px;
	}
}

.c-footer__sublogo-wrap {
	margin-bottom: calc(40 / 750 * 100vw);
	text-align: center;
	margin-inline: auto;
}
@media (min-width: 751px) {
	.c-footer__sublogo-wrap {
		margin-bottom: 22px;
	}
}

.c-footer__sublogo img {
	width: auto;
	max-width: 100%;
	height: 49px;
	margin: 0 auto;
}
@media (min-width: 751px) {
	.c-footer__sublogo img {
		width: 252px;
		height: auto;
	}
}

.c-footer__group {
	padding: calc(24 / 750 * 100vw) 0 calc(44 / 750 * 100vw);
	width: calc(570 / 750 * 100vw);
	margin-inline: auto;
	text-align: center;
}
@media (min-width: 751px) {
	.c-footer__group {
		width: auto;
		padding: 40px 0;
	}
}

.c-footer__list {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: left;
}
@media (min-width: 751px) {
	.c-footer__list {
		display: flex;
		width: auto;
		margin-top: 0;
		text-align: center;
	}
}

.c-footer__list li {
	color: #4d4d4d;
	margin-top: 10px;
	font-size: calc(26 / 750 * 100vw);
	line-height: 1;
	text-align: center;
}
@media (min-width: 751px) {
	.c-footer__list li {
		margin-block: 5px;
		font-size: 1.4rem;
	}
}

.c-footer__list li + li {
	border-left: 1px solid #4d4d4d;
	padding-left: calc(30 / 750 * 100vw);
	margin-left: calc(30 / 750 * 100vw);
}
@media (min-width: 751px) {
	.c-footer__list li + li {
		padding-left: 20px;
		margin-left: 20px;
	}
}

.c-footer__list li:nth-of-type(1) {
	width: 100%;
}
@media (min-width: 751px) {
	.c-footer__list li:nth-of-type(1) {
		width: auto;
	}
}

@media not all and (min-width: 751px) {
	.c-footer__list li:nth-of-type(2),
	.c-footer__list li:nth-of-type(4) {
		border-left: none;
		padding-left: 0;
		margin-left: 0;
	}
}

.c-footer__copyright {
	color: #4d4d4d;
	margin-top: calc(40 / 750 * 100vw);
	font-size: 0.9rem;
	line-height: 1.6;
	text-align: center;
}
@media (min-width: 751px) {
	.c-footer__copyright {
		margin-top: 15px;
		line-height: 1;
		font-size: 1.3rem;
	}
}

.c-pagetop {
	position: fixed;
	width: calc(80 / 750 * 100vw);
	height: calc(80 / 750 * 100vw);
	right: 10px;
	bottom: 10px;
	z-index: 999;
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
}
@media (min-width: 751px) {
	.c-pagetop {
		width: calc(60 / 1040 * 100vw);
		height: calc(60 / 1040 * 100vw);
		right: calc(20 / 1040 * 100vw);
		bottom: calc(20 / 1040 * 100vw);
	}
}
@media (min-width: 1080px) {
	.c-pagetop {
		width: 60px;
		height: 60px;
		right: 20px;
		bottom: 20px;
	}
}
.c-pagetop.is-show {
	opacity: 1;
	pointer-events: visible;
}
@media (min-width: 751px) {
	.c-pagetop:hover {
		opacity: 0.8;
	}
}

.u-d-none {
	display: none !important;
}

.u-d-inline {
	display: inline !important;
}

.u-d-inline-block {
	display: inline-block !important;
}

.u-d-block {
	display: block !important;
}

.u-d-grid {
	display: grid !important;
}

.u-d-table {
	display: table !important;
}

.u-d-table-row {
	display: table-row !important;
}

.u-d-table-cell {
	display: table-cell !important;
}

.u-d-flex {
	display: flex !important;
}

.u-d-inline-flex {
	display: inline-flex !important;
}

@media (min-width: 751px) {
	.u-d-md-none {
		display: none !important;
	}
	.u-d-md-inline {
		display: inline !important;
	}
	.u-d-md-inline-block {
		display: inline-block !important;
	}
	.u-d-md-block {
		display: block !important;
	}
	.u-d-md-grid {
		display: grid !important;
	}
	.u-d-md-table {
		display: table !important;
	}
	.u-d-md-table-row {
		display: table-row !important;
	}
	.u-d-md-table-cell {
		display: table-cell !important;
	}
	.u-d-md-flex {
		display: flex !important;
	}
	.u-d-md-inline-flex {
		display: inline-flex !important;
	}
}
@media (min-width: 1080px) {
	.u-d-lg-none {
		display: none !important;
	}
	.u-d-lg-inline {
		display: inline !important;
	}
	.u-d-lg-inline-block {
		display: inline-block !important;
	}
	.u-d-lg-block {
		display: block !important;
	}
	.u-d-lg-grid {
		display: grid !important;
	}
	.u-d-lg-table {
		display: table !important;
	}
	.u-d-lg-table-row {
		display: table-row !important;
	}
	.u-d-lg-table-cell {
		display: table-cell !important;
	}
	.u-d-lg-flex {
		display: flex !important;
	}
	.u-d-lg-inline-flex {
		display: inline-flex !important;
	}
}
.u-visually-hidden-focusable:not(:focus, :focus-within) {
	display: block !important;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	visibility: visible !important;
	opacity: 0% !important;
	margin: 0 !important;
	border: 0 !important;
	padding: 0 !important;
	width: 4px !important;
	height: 4px !important;
	overflow: hidden !important;
	pointer-events: none !important;
}

.u-visually-hidden {
	display: block !important;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	visibility: visible !important;
	opacity: 0% !important;
	margin: 0 !important;
	border: 0 !important;
	padding: 0 !important;
	width: 4px !important;
	height: 4px !important;
	overflow: hidden !important;
	pointer-events: none !important;
}
