@charset "UTF-8";

:root {
	/* font */
	--gothic: "source-han-sans-japanese", sans-serif;
	--krona: "Krona One", sans-serif;

	/* color */
	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--bgColor: 1, 17, 28;
	--marquee: 56, 68, 101;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
html {
	scroll-behavior: smooth;
}

/*
	reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

p {
	word-wrap: break-word;
}

p:not(:last-of-type) {
	margin-bottom: 1em;
}

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

fieldset,
img {
	border: 0;
}

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

caption,
th {
	text-align: left;
}

a {
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

a:hover {
	text-decoration: none;
	opacity: 0.8;
}

area {
	border: none;
	outline: none;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/*
	表示設定
------------------------------ */
body {
	background: rgb(var(--bgColor));
	line-height: 1.8;
	overflow-x: hidden;
}

/*
	font
------------------------------ */
body {
	font-family: var(--gothic);
	/* font-feature-settings: "palt"1; */
	font-feature-settings: "kern"1;
	letter-spacing: 0.05em;
}

body,
th,
td {
	color: rgb(var(--wht));
	font-size: 16px;
	font-weight: normal;
}

@media screen and (max-width: 768px) {

	body,
	th,
	td {
		font-size: 3.73333vw;
	}
}

/*
	SP,PC表示切り替え
------------------------------ */
.pc {
	display: block;
}

.sp {
	display: none;
}

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

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
ul.list li {
	padding-left: 1.25em;
	text-indent: 0;
	position: relative;
}

ul.list li::before {
	margin-right: 0.25em;
	position: absolute;
	left: 0;
}

ul.list.center li {
	text-align: center;
}

ul.list.center li::before {
	position: relative;
}

/* note */
ul.note li {
	font-size: 1.21739vw;
}

ul.note li::before {
	content: "※";
}

@media screen and (max-width: 768px) {
	ul.note li {
		font-size: 2.93333vw;
	}
}

/* type */
ul.type1 li::before {
	content: "●";
}

/* cnt */
ol.cnt li {
	margin-left: 1.8em;
	text-indent: -1.8em;
	counter-increment: number;
}

ol.cnt li::before {
	content: "0"counter(number) ".";
}

/*
	.movie
------------------------------ */
.movie {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.movie iframe {
	width: 100%;
	height: 100%;
}

/*
	tel
------------------------------ */
.tel {
	pointer-events: none;
}

@media screen and (max-width: 768px) {
	.tel {
		pointer-events: all;
	}
}

/*
	linkBtn
------------------------------ */
.linkBtn a {
	background: rgb(148, 72, 199);
	background: linear-gradient(90deg, rgba(148, 72, 199, 1) 0%, rgba(86, 124, 255, 1) 100%);
	margin: 0 auto;
	width: 300px;
	height: 60px;
	line-height: 1;
	color: rgb(var(--wht));
	font-family: var(--krona);
	font-size: 17px;
	text-decoration: none;
	border-radius: 5.21739vw;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.linkBtn a:hover {
	background: rgba(86, 124, 255, 1);
	background: linear-gradient(90deg, rgba(86, 124, 255, 1) 0%, rgba(148, 72, 199, 0.8) 100%);
}

@media screen and (max-width: 768px) {
	.linkBtn a {
		width: 100%;
		height: 13.33333vw;
		font-size: 4.53333vw;
		border-radius: 13.33333vw;
	}
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
.pageTop a {
	background: rgba(var(--blk), 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 10;
}

.pageTop a svg {
	fill: rgb(var(--wht));
	width: 16px;
	height: auto;
}

/* ----------------------------------------------------
	fadeIn
---------------------------------------------------- */
/*
	共通初期設定
	透明度が変化
------------------------------ */
.fadeBlock {
	opacity: 0;
	transition: all 1s;
}

.fadeBlock.fadeIn {
	opacity: 1;
}

/*
	下から
------------------------------ */
.fadeBottom {
	transform: translateY(100px);
}

.fadeBottom.fadeIn {
	transform: translateY(0);
}

/*
	右から
------------------------------ */
.fadeRight {
	transform: translateX(100px);
}

.fadeRight.fadeIn {
	transform: translateX(0);
}

/*
	左から
------------------------------ */
.fadeLeft {
	transform: translateX(-100px);
}

.fadeLeft.fadeIn {
	transform: translateX(0);
}

/*
	回転（横）
------------------------------ */
.fadeRotateY.fadeIn {
	animation-name: rotateY;
	animation-fill-mode: forwards;
	animation-duration: 2s;
	animation-timing-function: linear;
	animation-iteration-count: 1;
}

@keyframes rotateY {
	0% {
		transform: rotateY(0);
	}

	100% {
		transform: rotateY(360deg);
	}
}

/*
	回転（横）
------------------------------ */
.slideLeft {
	opacity: 1;
	position: relative;
}

.slideLeft::before {
	background: rgb(var(--bgColor));
	width: 100%;
	height: 100%;
	opacity: 1;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	content: "";
}

.slideLeft.fadeIn::before {
	animation-name: slideLeft;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-timing-function: linear;
}

@keyframes slideLeft {
	0% {
		transform: translateX(0);
	}

	40% {
		transform: translateX(10%);
	}

	60% {
		transform: translateX(90%);
	}

	100% {
		transform: translateX(100%);
	}
}