@charset "utf-8";


@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/YakuHanJP/YakuHanJP-Light.woff2") format("woff2"),
    url("../fonts/YakuHanJP/YakuHanJP-Light.woff") format("woff");
}

@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/YakuHanJP/YakuHanJP-Regular.woff2") format("woff2"),
    url("../fonts/YakuHanJP/YakuHanJP-Regular.woff") format("woff");
}

@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/YakuHanJP/YakuHanJP-Medium.woff2") format("woff2"),
    url("../fonts/YakuHanJP/YakuHanJP-Medium.woff") format("woff");
}

@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/YakuHanJP/YakuHanJP-Bold.woff2") format("woff2"),
    url("../fonts/YakuHanJP/YakuHanJP-Bold.woff") format("woff");
}


* {
	margin: 0;
	padding: 0;
	-webkit-backface-visibility: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: none;
	height: 100%;
	background: transparent;
}

body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-weight: 400;
	font-size: 16px;
	font-family: YakuHanJP, "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
	font-feature-settings: 'palt' 1;
	text-align: center;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0.1em;
	color: #1d1f28;
	background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
	font-weight: normal;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

p {
	padding: 0;
	margin: 0;
}

img {
	width: 100%;
	-webkit-touch-callout: none;
	-ms-interpolation-mode: bicubic;
	vertical-align: bottom;
}

a {
	word-break: break-all;
	text-decoration: underline;
	color: #1d1f28;
	outline: none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-webkit-transition: 0.4s cubic-bezier(.57,0,.26,1);
	transition: 0.4s cubic-bezier(.57,0,.26,1);
}

a:active,
a:hover,
a:focus {
	outline: none;
}

@media (any-hover: hover) {
	a:hover {
		opacity: .4;
	}
}

table {
	border-collapse: collapse;
}

button {
	-webkit-user-select: none;
	user-select: none;
	touch-action: manipulation;
		outline: none;
		border: none;
		background: none;
}

.wrapper ::before,
.wrapper ::after {
	font-family: "Hiragino Sans", "ヒラギノ角ゴ Pro W3", 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Osaka", verdana, sans-serif;
	font-feature-settings: normal;
}


@-webkit-keyframes fadeIn {
	0% { opacity: 0;}
	100% { opacity: 1;}
}

@keyframes fadeIn {
	0% { opacity: 0;}
	100% { opacity: 1;}
}

/*--------------------------------------
loading
--------------------------------------*/


.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #eb0065;
	z-index: 5000;
}

.loading p {
	margin: -24px 0 0 -24px;
	padding-top: 32px;
	overflow: hidden;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 48px;
	height: 0;
	border: 8px solid #fff;
	border-radius: 50%;
	border-top-color: transparent;
	animation: spin 0.75s infinite linear;
	z-index: 5002;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}


.loading::before {
	content: "";
	margin: -24px 0 0 -24px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 32px;
	border: 8px solid rgba(0, 0, 0, .2);
	border-radius: 50%;
	z-index: 5001;
}

/*--------------------------------------
コンテンツ
--------------------------------------*/
.wrapper {
	position: relative;
	width: 100%;
	height: auto !important;
	height: 100%;
	min-height: 100%;
}


.container {
	padding-bottom: 580px;
	position: relative; /*toTop用*/
	text-align: left;
	width: 100%;
	height: auto;
}

#home .container {
	padding-bottom: 0;
	position: static;
}



/*--------------------------------------
header
--------------------------------------*/
#top {
	padding-top: 100vh;
	position: relative;
	overflow: hidden;
	z-index: 101;
}

.siteTitle {
	padding-top: 53px;
	position: fixed;
	top: 0;
	left: 96px;
	overflow: hidden;
	width: calc((100% - 96px) * 0.6);
	max-width: 1080px;
	min-width: 800px;
	height: 0;
	background: url(../images/common/header/title.svg) no-repeat center center;
	background-size: 100% auto;
	clip-path: inset(0 100% 0 0);
	transition: clip-path 0.6s cubic-bezier(.57,0,.26,1) 1.5s;
	z-index: 101;
}

body.active .siteTitle {
	clip-path: inset(0 0 0 0);
}

@media only screen and (max-width: 1080px) {
	.siteTitle {
		width: calc(100% - 210px);
		min-width: 0px;
	}
}

.visual {
	position: fixed;
	top: 0%;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

#top .catch {
	padding-top: calc(100% * 0.5);
	position: absolute;
	top: 50%;
	left: 2%;
	width: calc(100% * 0.5);
	transform: translateY(-50%);
	z-index: 100;
}

body.h3 #top .catch {
	padding-top: calc(100% * 0.7);
	position: absolute;
	top: auto;
	bottom: -11%;
	left: 50%;
	width: calc(100% * 0.7);
	transform: translateX(-50%);
	z-index: 100;
}

#top .catch li {
	position: absolute;
	width: 100%;
}

#top .catch li:nth-of-type(1) {
	top: 19%;
	left: 3.2%;
	width: 66%;
}

#top .catch li:nth-of-type(2) {
	top: 33%;
	left: 1%;
	width: 87%;
}

#top .catch li:nth-of-type(3) {
	top: 52%;
	left: 1.5%;
	width: 99%;
}

#top .catch li:nth-of-type(4) {
	top: 63.5%;
	left: 0;
	width: 86.5%;
}

#top .catch li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	clip-path: inset(0 100% 0 0);
	z-index: 2;
}

#top.active .catch li::before {
	animation: reveal-hide 0.4s cubic-bezier(.57,0,.26,1) forwards 1s;
}

#top.active .catch li:nth-of-type(1)::before {
	animation-delay: 1s;
}

#top.active .catch li:nth-of-type(2)::before {
	animation-delay: 1.2s;
}

#top.active .catch li:nth-of-type(3)::before {
	animation-delay: 1.4s;
}

#top.active .catch li:nth-of-type(4)::before {
	animation-delay: 1.6s;
}

@keyframes reveal-hide {
  /* 右から出現 */
  0% {
    clip-path: inset(0 100% 0 0);
  }
  40% {
    clip-path: inset(0 0 0 0);
  }
  /* 左に消える */
  100% {
    clip-path: inset(0 0 0 100%);
  }
}

#top .catch li:nth-of-type(1)::before {
	background: url(../images/common/header/visual/base1y.svg) no-repeat;
	background-size: 100% auto;
	transition: clip-path 0.3s cubic-bezier(.57,0,.26,1) 0.2s;
}

#top .catch li:nth-of-type(2)::before {
	background: url(../images/common/header/visual/base2y.svg) no-repeat;
	background-size: 100% auto;
	transition: clip-path 0.3s cubic-bezier(.57,0,.26,1) 0.4s;
}

#top .catch li:nth-of-type(3)::before {
	background: url(../images/common/header/visual/base3y.svg) no-repeat;
	background-size: 100% auto;
	transition: clip-path 0.3s cubic-bezier(.57,0,.26,1) 0.6s;
}

#top .catch li:nth-of-type(4)::before {
	background: url(../images/common/header/visual/base4y.svg) no-repeat;
	background-size: 100% auto;
	transition: clip-path 0.3s cubic-bezier(.57,0,.26,1) 0.8s;
}

#top .catch li::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1;
	clip-path: inset(0 100% 0 0);
	transition: clip-path 0.4s cubic-bezier(.57,0,.26,1) 0.5s;
}

#top.active .catch li::after {
	clip-path: inset(0 0 0 0);
}

#top .catch li:nth-of-type(1)::after {
	background: url(../images/common/header/visual/base1.svg) no-repeat;
	background-size: 100% auto;
	transition: clip-path 0.4s cubic-bezier(.57,0,.26,1) 0.5s;
}

#top .catch li:nth-of-type(2)::after {
	background: url(../images/common/header/visual/base2.svg) no-repeat;
	background-size: 100% auto;
	transition: clip-path 0.4s cubic-bezier(.57,0,.26,1) 0.7s;
}

#top .catch li:nth-of-type(3)::after {
	background: url(../images/common/header/visual/base3.svg) no-repeat;
	background-size: 100% auto;
	transition: clip-path 0.4s cubic-bezier(.57,0,.26,1) 0.9s;
}

#top .catch li:nth-of-type(4)::after {
	background: url(../images/common/header/visual/base4.svg) no-repeat;
	background-size: 100% auto;
	transition: clip-path 0.4s cubic-bezier(.57,0,.26,1) 1.1s;
}

#top .catch li p {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 0;
	clip-path: inset(0 100% 0 0);
	transition: clip-path 0.4s cubic-bezier(.57,0,.26,1) 1.5s;
	z-index: 3;
}

#top.active .catch li p {
	clip-path: inset(0 0 0 0);
}

#top .catch li:nth-of-type(1) p {
	padding-top: 32%;
	background: url(../images/common/header/visual/catch1.svg) no-repeat;
	background-size: 100% auto;
	transition: clip-path 0.4s cubic-bezier(.57,0,.26,1) 1.3s;
}

#top .catch li:nth-of-type(2) p {
	padding-top: 27%;
	background: url(../images/common/header/visual/catch2.svg) no-repeat;
	background-size: 100% auto;
	transition: clip-path 0.4s cubic-bezier(.57,0,.26,1) 1.5s;
}

#top .catch li:nth-of-type(3) p {
	padding-top: 18%;
	background: url(../images/common/header/visual/catch3.svg) no-repeat;
	background-size: 100% auto;
	transition: clip-path 0.4s cubic-bezier(.57,0,.26,1) 1.7s;
}

#top .catch li:nth-of-type(4) p {
	padding-top: 19.5%;
	background: url(../images/common/header/visual/catch4.svg) no-repeat;
	background-size: 100% auto;
	transition: clip-path 0.4s cubic-bezier(.57,0,.26,1) 1.9s;
}

/*
.pix {
	position: relative;
	width: 100%;
	height: 100vh;
	aspect-ratio: 2270 / 1079;
	overflow: hidden;
	background: #111;
}

.pix canvas,
.pix img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
}

.pix canvas {
	image-rendering: pixelated;
	image-rendering: crisp-edges;
}

.pix img {
	opacity: 0;
	transition: opacity .25s ease;
}

.pix.done img {
	opacity: 1;
}
*/

.pix {
	position: relative;
	width: 100%;
	height: 100vh;
	aspect-ratio: 2270 / 1079;
	overflow: hidden;
	background: #111;
}

.pix canvas,
.pix .bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-position: right center;
}

.pix canvas {
	image-rendering: pixelated;
	image-rendering: crisp-edges;
}

.pix .bg {
	background: url(../images/common/header/visual/visual.webp) right center / cover no-repeat;
	opacity: 0;
	transition: opacity .25s ease;
}

.pix.done .bg {
	opacity: 1;
}



nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 56px;
	z-index: 100;
}

#top .globalNav {
	display: none;
}

.globalNav a {
	margin: 0 auto;
	display: table;
	line-height: 2;
	text-decoration: none;
	color: #fff;
	font-size: 3vh;
	font-weight: 700;
	-webkit-user-select: none;
	user-select: none;
}

.globalNav a:hover {
	opacity: 1;
	color: #eb0065;
}


.globalNav li:nth-of-type(1) a {
	margin-bottom: 1em;
	padding-top: 32%;
	overflow: hidden;
	display: block;
	width: 100%;
	height: 0;
	background: url(../images/common/nav/logo.svg) no-repeat left center;
	background-size: 100% auto;
}
.globalNav li:nth-of-type(1) a:hover {
	opacity: .4;
}

#menu-btn {
	position: fixed;
	display: block;
	top: -1px;
	left: 8px;
	height: 53px;
	width: 64px;
	outline: none;
	border: none;
	background: none;
	cursor: pointer;
	-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
	clip-path: inset(0 100% 0 0);
	transition: clip-path 0.6s cubic-bezier(.57,0,.26,1) 1.5s;
	z-index: 2000;
}

body.active #menu-btn {
	clip-path: inset(0 0 0 0);
}

	#menu-btn::before,
	#menu-btn::after,
	#menu-btn span {
		content: "";
		margin-left: calc((100% - 12px) / -2);
		padding-top: 1px;
		position: absolute;
		top: 0;
		left: 50%;
		overflow: hidden;
		display: block;
		width: calc(100% - 12px);
		height: 0;
		background: #fff;
	}

#menu-btn::before {
	top: 14px;
	animation: btnTr 0.8s cubic-bezier(.17,.67,.07,.99) 0s forwards;
	transition:  0.4s ease-in-out;
}

#menu-btn span {
	top: 26px;
	-webkit-transition:  0.4s ease-in-out;
	transition:  0.4s ease-in-out;
}

#menu-btn::after {
	top: 38px;
	animation: btnBr 0.8s cubic-bezier(.17,.67,.07,.99) 0s forwards;
	transition:  0.4s ease-in-out;
}

#menu-btn:hover::before {
}

#menu-btn:hover::after {
}

#menu-btn.active:hover::before {
}

#menu-btn.active:hover::after {
}

#menu-btn.active:hover::before,
#menu-btn.active:hover::after {
}

#menu-btn.active::before {
	background: #fff;
	animation: btnT 0.8s cubic-bezier(.17,.67,.07,.99) 0s forwards;
}

#menu-btn.active span {
	background: #fff;
	opacity: 0;
}

#menu-btn.active::after {
	background: #fff;
	animation: btnB 0.8s cubic-bezier(.17,.67,.07,.99) 0s forwards;
}

/* btnT */
@keyframes btnT {
	0% { transform: translateY(4px);}
	20% { transform: translateY(12px) rotate(0deg);}
	100% { transform: translateY(12px) rotate(-30deg);}
}

/* btnTr */
@keyframes btnTr {
	0% { transform: translateY(12px) rotate(-30deg);}
	30% { transform: translateY(12px) rotate(0deg);}
	100% { transform: translateY(0px);}
}

/* btnB */
@keyframes btnB {
	0% { transform: translateY(-4px);}
	20% { transform: translateY(-12px) rotate(0deg);}
	100% { transform: translateY(-12px) rotate(30deg);}
}

/* btnBr */
@keyframes btnBr {
	0% { transform: translateY(-12px) rotate(30deg);}
	30% { transform: translateY(-12px) rotate(0deg);}
	100% { transform: translateY(0px);}
}

	#menu-btn.b::before,
	#menu-btn.b::after,
	#menu-btn.b span {
		background: #474c4d;
	}

.menu {
	will-change: transform;
	position: fixed;
	top: 0;
	left: 0%;
	width: 30em;
	height: 100vh;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
		transition: transform 1s cubic-bezier(.57,0,.26,1) 0s;
	transform: translateX(-100%);
	z-index: 1099;
}

.menu.active {
	transform: translateX(0%);
}

	.menu button {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		outline: none;
		cursor: default;
		border: none;
		background: none;
		z-index: 302;
	}

.menu div {
		position: relative;
		width: 100%;
	height: 100vh;
		display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: rgba(0, 0, 0, .9);
	z-index: 303;
}

.menu .globalNav {
	margin: 0 auto;
	padding: 0 0 4em;
	padding: 0;
	position: relative;
	display: table;
	text-align: center;
	z-index: 304;
}

.menu .globalNav li {
	margin: 0 auto;
	padding: 0;
	display: table;
	position: relative;
	width: 100%;
}

.sns-link {
	padding: 0 16px 0 0;
	display:flex;
	justify-content: end;
	align-items: center;
	gap: 8px;
	width: 100%;
	height: 54px;
	opacity: 0;
	transition: opacity 1.2s cubic-bezier(.17,.67,.6,.92) 1.8s;
}

#top.active .sns-link {
	opacity: 1;
}

.sns-link li {
	width: 2em;
}

.sns-link .line a,
.sns-link .twitter a,
.sns-link .facebook a {
	padding-top: 100%;
	position: relative;
	overflow: hidden;
	display: block;
	width: 100%;
	height: 0;
}

.sns-link .twitter a {
	background: url(../images/common/nav/sns/twitter.svg) no-repeat center center;
	background-size: 100% auto;
}

.sns-link .facebook a {
	background: url(../images/common/nav/sns/facebook.svg) no-repeat center center;
	background-size: 100% auto;
}

.sns-link .line a {
	background: url(../images/common/nav/sns/line.svg) no-repeat center center;
	background-size: 100% auto;
}

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

}


#top .scroll {
	padding: 0 0 11em;
	overflow: hidden;
	position: absolute;
	bottom: 16px;
	left: 8px;
	width: 1.4em;
	opacity: 0;
	font-size: 16px;
	letter-spacing: 0;
	transition: opacity 1.2s cubic-bezier(.17,.67,.6,.92) 1.8s;
	z-index: 122;
}

#top.active .scroll {
	opacity: 1;
}

body.up #top.active .scroll {
	opacity: 0;
	transition: opacity 1.2s cubic-bezier(.17,.67,.6,.92) 0s;
}

.scroll p {
	padding-top: 6em;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: calc(50% - 1px);
	height: 0;
	width: 1px;
}

.scroll p::before,
.scroll p::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 1px;
	height: 100%;
	background: #fff;
	opacity: .3;
	mix-blend-mode: multiply;
}

.scroll p::after {
	opacity: 1;
	mix-blend-mode: normal;
	background: #fff;
	-webkit-animation: scrollDown 3s cubic-bezier(.17,.67,.07,.99) 0s infinite forwards;
	animation: scrollDown 3s cubic-bezier(.17,.67,.07,.99) 0s infinite forwards;
}

/* scrollDown */
@-webkit-keyframes scrollDown {
	0% { transform: translate3d(0, -100%, 0);}
	100% { transform: translate3d(0, 100%, 0);}
}

@keyframes scrollDown {
	0% { transform: translate3d(0, -100%, 0);}
	100% { transform: translate3d(0, 100%, 0);}
}

.scroll::before {
	content: "SCROLL";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	overflow: hidden;
	writing-mode: vertical-rl;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.4;
	color: #fff;
	-webkit-user-select: none;
	user-select: none;
}

/*--------------------------------------
 * コンテンツ
 * ---------------------------------------*/

.primary {
	padding: 0 0 120px;
	position: relative;
	width: 100%;
	z-index: 100;
}

.notice {
	padding-top: 1em;
}

.notice li:not(:last-child) {
	padding-bottom: 4px;
}

.notice li {
	display: flex;
	align-items: start;
}

.notice li::before {
	content: "※";
	font-size: 14px;
}

.notice p {
	text-align: left;
	font-size: 14px;
}

.primary section {
	margin: 0 auto;
	padding: 56px 64px 0px;
	position: relative;
	max-width: 1240px;
	width: 100%;
}

.primary section::after {
	content: "";
	position: absolute;
	top: 56px;
	left: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 11em;
	height: 2.4em;
	font-size: 24px;
	line-height: 1.2;
	color: #fff;
	font-weight: 700;
	flex-grow: 0;
	flex-shrink: 0;
	transform: skew(-8deg, -4.5deg) translateX(calc(-50% + 16px));
	background: #000;
	clip-path: inset(0 100% 0 0);
	transition: clip-path 0.6s cubic-bezier(.57,0,.26,1) 0.4s;
	z-index: 1;
}

.primary section.active::after {
	clip-path: inset(0 0 0 0);
}

.primary section h2 {
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 11em;
	height: 2.4em;
	font-size: 24px;
	line-height: 1.2;
	color: #fff;
	font-weight: 700;
	flex-grow: 0;
	flex-shrink: 0;
	-webkit-user-select: none;
	user-select: none;
	transform: skew(-8deg, -4.5deg);
	background: #eb0065;
	z-index: 15;
}

.primary section .contents {
	margin-top: -16px;
	padding: 40px 72px 54px 56px;
	position: relative;
	transform: skew(-5deg, 0deg);
	flex: 1;
	z-index: 11;
}

.primary section .contents::before,
.primary section .contents::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: calc(100% - 16px);
	height: calc(100% - 16px);
	background: #fff;
	z-index: 2;
}

.primary section .contents::after {
	top: 16px;
	left: 16px;
	background: #000;
	z-index: 1;
}

.primary section .contents.item {
	transition-delay: 0.2s;
}

.primary section .contents > * {
	position: relative;
	transform: skew(5deg, 0deg);
	z-index: 3;
}

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

	.primary section {
		padding: 64px 48px 0;
	}

	.primary section::after {
		top: 72px;
		transform: skew(-8deg, -4.5deg) translateX(calc(-50% + 12px));
	}
}

.item {
	clip-path: inset(0 100% 0 0);
	transition: clip-path 0.6s cubic-bezier(.57,0,.26,1) 0.2s;
}

.item.active {
	clip-path: inset(0 0 0 0);
}

/*--------------------------------------
overview
---------------------------------------*/
#overview {
}

#overview .contents p {
	font-size: 20px;
	font-weight: 500;
}

#overview .contents p span {
	padding-bottom: 0.2em;
	display: block;
	font-size: 24px;
}

/*--------------------------------------
division
---------------------------------------*/
#division {
}

#division .contents ul:not(.notice) li {
}

#division .contents ul:not(.notice) li p {
	margin-left: 1em;
	text-indent: -1em;
}

#division .contents ul:not(.notice) > li > p::before {
	content: "・";
}

#division .contents > ul > li .notice {
	padding-left: 1em;
}

/*--------------------------------------
grandprix
---------------------------------------*/
#grandprix {
}

#grandprix ol {
}

#grandprix ol {
	padding: 0 0 0 0;
	counter-reset: listcount;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

#grandprix ol > li {
	display: flex;
	align-items: start;
	gap: 8px;
}

#grandprix ol > li::before {
	counter-increment: listcount;
	content: counter(listcount, decimal);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	width: 2em;
	height: 2em;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	background: #000;
	border-radius: 50%;
	z-index: 1;
}

#grandprix dt {
	font-size: 20px;
	font-weight: 500;
}


/*--------------------------------------
qualification
---------------------------------------*/
#qualification {
}

#qualification .contents ul:not(.notice) li {
}

#qualification .contents ul:not(.notice) li p {
	margin-left: 1em;
	text-indent: -1em;
}

#qualification .contents ul:not(.notice) li p::before {
	content: "・";
}


/*--------------------------------------
entry
---------------------------------------*/

#entry .contents > dl {
	padding: 24px 0;
	display: flex;
}

#entry .contents > dl > dt {
	flex-shrink: 0;
}

#entry .contents > dl > dt::before {
	content: "＜";
}

#entry .contents > dl > dt::after {
	content: "＞";
}

#entry .contents > dl > dd {
	padding: 0 0 0 8px;
}

#entry .notice li::before,
#entry .contents .notice p {
	font-size: 16px;
}

#entry p span {
	margin-right: 2px;
	padding: 4px 12px;
	font-size: 14px;
	border-radius: 8px;
	color: #fff;
	background: #000;
}

#entry .link {
	padding: 24px 0 0;
}

#entry .link a {
	margin: 0 auto;
	width: 20em;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-size: 18px;
	height: 5em;
	border: solid 1px;
	-webkit-user-select: none;
	user-select: none;
}

#entry .link a::before {
	content: "";
	margin: -7px 0 0;
	position: absolute;
	top: 50%;
	right: 16px;
	display: block;
	width: 14px;
	height: 14px;
	border-top: solid 1px;
	border-right: solid 1px;
	transform: rotate(45deg);
	transform-origin: center center;
	transition: all 0.4s cubic-bezier(.57,0,.26,1);
}

#entry .link a:hover {
	opacity: 1;
	color: #fff;
	background: #000;
}

/*--------------------------------------
examination
---------------------------------------*/
#examination {
}

#examination .contents > ol > li > dl > dt {
	display: flex;
	align-items: start;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
	gap: 0.5em;
}

#examination .contents > ol > li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 0.5em;
}

#examination .contents > ol > li > dl > dt span {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 0.5em;
}

#examination .contents > ol > li > dl > dt span::after {
	content: "";
	display: block;
	width: 2em;
	height: 1px;
	background: #1d1f28;
}

#examination .contents > ol ol {
	padding: 8px 0 0 0;
	counter-reset: listcount;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

#examination .contents > ol  ol > li {
	display: flex;
	align-items: start;
	flex-wrap: wrap;
	gap: 8px;
}

#examination .contents > ol  ol > li::before {
	counter-increment: listcount;
	content: counter(listcount, decimal);
	margin-top: 0.2em;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	width: 1.3em;
	height: 1.3em;
	font-size: 16px;
	line-height: 1.2;
	border: solid 1px;
	border-radius: 50%;
	z-index: 1;
}

#examination .contents > ol  ol > li p {
	flex: 1;
}

#examination .contents > ol  ol > li p:nth-of-type(2) {
	padding: 0 0 0 1.8em;
	flex: none;
	width: 100%;
}

#examination .contents > ol ol > li p:nth-of-type(2) span {
	padding: 0.1em 0.6em;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	background: #eb0065;
}

#examination .contents > ol > li > dl > dd {
	padding: 0.3em 0 0 8.75em;
}

#examination .contents > ol > li:nth-child(2) {
	padding: 24px 0;
}

#examination .contents > ol li > dl > dd > p {
	font-size: 16px;
}

#examination .judge  {
	padding-top: 8px;
}

#examination .judge > dt {
	padding: 0;
	overflow: hidden;
	height: 0;
}

#examination .judge > dd > ul > li {
	padding-bottom: 16px;
	overflow: hidden;
}

#examination .judge > dd > ul > li::before {
	content: "";
	margin: 0 12px 0 0;
	padding-top: 32%;
	float: left;
	display: block;
	width: 32%;
	height: 0;
	background: #aaa;
}

#examination .judge > dd > ul > li:nth-of-type(1)::before {
	background: url(../images/contents/judge/j1.webp) no-repeat;
	background-size: 100% auto;
}

#examination .judge > dd > ul > li:nth-of-type(2)::before {
	background: url(../images/contents/judge/j2.webp) no-repeat;
	background-size: 100% auto;
}

#examination .judge > dd > ul > li:nth-of-type(3)::before {
	background: url(../images/contents/judge/j3.webp) no-repeat;
	background-size: 100% auto;
}

#examination .judge h3 {
	padding-bottom: 12px;
	line-height: 1.2;
}

#examination .judge > dd > ul > li > p{
	margin-left: calc(32% + 12px);
}

/*--------------------------------------
term
---------------------------------------*/
#term {
	align-items: center;
}

#term .contents {
	text-align: center;
}

#term .contents > p {
	display: inline-block;
	text-align: left;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.7;
}

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

	#term .contents > p {
		font-size: 20px;
	}
}


/*--------------------------------------
usage
---------------------------------------*/

#usage .contents > dl {
	
}

#usage .contents > dl > dt {
	padding-bottom: 8px;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.2;
}

#usage .contents > dl > dd:not(:last-child) {
	padding-bottom: 32px;
}

/*--------------------------------------
privacy-policy
---------------------------------------*/
#privacy-policy h2 span {
	font-size: 18px;
}

#personal-info .contents > dl > dt {
	margin-top: 16px;
	padding: 0 0 0;
	display: flex;
	align-items: center;
	line-height: 1.2;
}

#personal-info .contents > dl > dt::before {
	content: "";
	margin-right: 4px;
	display: block;
	width: 10px;
	height: 10px;
	flex-grow: 0;
	flex-shrink: 0;
	background: #363634;
}

#personal-info .contents > dl > dd {
	padding: 4px 0 0 14px;
}



/*--------------------------------------
inquiry
---------------------------------------*/

#inquiry .link {
	padding: 24px 0 0;
}

#inquiry p {
	text-align: center;
}

#inquiry .link a {
	margin: 0 auto;
	width: 20em;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-size: 18px;
	height: 5em;
	border: solid 1px;
	-webkit-user-select: none;
	user-select: none;
}

#inquiry .link a::before {
	content: "";
	margin: -7px 0 0;
	position: absolute;
	top: 50%;
	right: 16px;
	display: block;
	width: 14px;
	height: 14px;
	border-top: solid 1px;
	border-right: solid 1px;
	transform: rotate(45deg);
	transform-origin: center center;
	transition: all 0.4s cubic-bezier(.57,0,.26,1);
}

#inquiry .link a:hover {
	opacity: 1;
	color: #fff;
	background: #000;
}


/*--------------------------------------
上部へボタン
---------------------------------------*/

ul.toTop {
	overflow: hidden;
	position: fixed;
	bottom: 8px;
	right: 8px;
	z-index: 290;
}

ul.toTop li {
	float: right;
}

ul.toTop a {
	padding-top: 48px;
	position: relative;
	display: block;
	overflow: hidden;
	width: 48px;
	height: 0;
	background: #000;
	transition: all 0.4s cubic-bezier(.57,0,.26,1);
}

ul.toTop a::before {
	content: "";
	margin: -4px 0 0 -7px;
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 14px;
	height: 14px;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	transform: rotate(-45deg);
	transform-origin: center center;
	transition: all 0.4s cubic-bezier(.57,0,.26,1);
}

@media (any-hover: hover) {
	ul.toTop a:hover {
		opacity: 1;
		color: #fff;
		background: #777;
	}
}

ul.toTop a:hover::before {
	border-color: #fff;
}


/*--------------------------------------
フッター
---------------------------------------*/

footer {
	padding: 0 0 120px 0px;
	clear: both;
	position: absolute;
	bottom: 0;
	overflow: hidden;
	width: 100%;
	text-align: center;
	z-index: 100;
}

#home footer {
	position: relative;
}

.contents footer {
	position: absolute;
	bottom: 0;
}

footer > ul {
	position: relative;
	z-index: 102;
}

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

	footer .copyright::before {
	}
}

footer .copyright p {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0;
	line-height: 1.2;
}

footer .copyright br {
	display: none;
}

footer .copyright a {
	color: #fff;
	text-decoration: underline;
}



/*--------------------------------------------------------------------------------------------------*/

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

	body {
		font-size: 15px;
		line-height: 1.8;
	}

	.notice li::before,
	.notice p {
		font-size: 13px;
		line-height: 1.7;
	}

	.primary section {
		padding: 48px 32px 0;
	}

	.primary section h2 {
	}

	.primary section::after {
		top: 54px;
	}

	#overview .contents p {
		font-size: 16px;
	}

	#overview .contents p span {
		font-size: 20px;
	}

	#examination .contents > ol  ol > li::before {
		font-size: 15px;
	}

	#examination .contents > ol ol > li p:nth-of-type(2) span {
		font-size: 13px;
	}

	#examination .contents > ol li > dl > dd > p,
	#entry .notice li::before,
	#entry .contents .notice p,
	#examination ol li > dl > dd > p {
		font-size: 15px;
	}

	#examination .contents > ol > li > dl > dd {
		padding: 0.3em 0 0 9.5em;
	}

	#entry .link a,
	#inquiry .link a {
		font-size: 16px;
	}
}


/*--------------------------------------------------------------------------------------------------*/


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

	body {
		font-size: 14px;
	}

	.primary section .contents {
		padding: 40px 54px 54px 40px;
	}

	#examination .contents > ol > li > dl > dd {
		padding: 0.3em 0 0 10em;
	}

	#examination .contents > ol li > dl > dd > p,
	#entry .notice li::before,
	#entry .contents .notice p,
	#examination .contents > ol  ol > li::before {
		font-size: 14px;
	}

	#examination .contents > ol ol > li p:nth-of-type(2) span {
		font-size: 12px;
	}

	#term .contents > p {
		font-size: 18px;
	}
}



/*--------------------------------------------------------------------------------------------------*/


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

}

/*--------------------------------------------------------------------------------------------------*/

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



}

/*--------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 520px) {

	body {
		font-size: 14px;
		line-height: 1.8;
	}

.container {

}

#top {
	margin: 0;
	padding-top: 100vh;
	background: none;
}

.siteTitle {
		padding-top: 45px;
		left: 50%;
		width: calc((100% - 200px));
		min-width: 0;
		background: url(../images/common/header/title_sp.svg) no-repeat center center;
		background-size: contain;
		clip-path: inset(0 0 0 0);
		transition: none;
		transform: translateX(-50%);
	}

	#top .catch {
		padding-top: 98%;
		top: auto;
		bottom: -8%;
		left: 1%;
		width: 98%;
		transform: none;
	}

	.pix {
		top: 45px;
		height: 100vh;
		aspect-ratio: 1000 / 910;
	background: transparent;
	}

	.pix .bg {
		background: url(../images/common/header/visual/visual_sp.webp) right top / cover no-repeat;
	}

	nav {
		height: 45px;
		background: #000;
	}

	#menu-btn {
		top: -5px;
		left: 0;
		height: 50px;
		width: 46px;
		clip-path: inset(0 0 0 0);
		transition: none;
	}

	.globalNav a {
		line-height: 2.4;
		font-size: 5vw;
	}

	.menu {
		width: 100%;
	}

	.sns-link {
		padding: 0 8px 0 0;
		gap: 4px;
		height: 44px;
		opacity: 1;
		clip-path: inset(0 0 0 0);
		transition: none;
	}

	.sns-link li {
		width: 36px;
	}

	#top .scroll {
		left: auto;
		right: 8px;
		font-size: 14px;
		display: none;
	}

	.scroll p::before,
	.scroll p::after {
		opacity: .2;
		background: #000;
	}

	.scroll p::after {
		opacity: 1;
		background: #000;
	}

	.scroll::before {
		font-size: 14px;
		color: #000;
	}

	.primary {
		padding: 0 0 40px;
	}

	.primary section {
		padding: 56px 0 0 8px;
	}


	.primary section h2 {
		font-size: 16px;
	}

	.primary section::after {
		font-size: 16px;
		transform: skew(-8deg, -4.5deg) translateX(calc(-50% + 10px));
	}

	.primary section .contents {
		padding: 32px 32px 54px 16px;
		transform: none;
	}

	.primary section .contents > * {
		transform: none;
	}

	.primary section .contents::after {
		top: 8px;
		left: 8px;
	}

	#overview .contents p {
		font-size: 14px;
	}

	#overview .contents p span {
		font-size: 16px;
	}

	#grandprix ol > li::before,
	#grandprix dt {
		font-size: 16px;
	}

	#entry .notice li::before,
	#entry .contents .notice p,
	#examination .contents > ol > li > dl > dd > p {
		font-size: 14px;
	}

	#examination .contents > ol > > li:nth-of-type(2) {
		padding: 16px 0;
	}

	#examination .contents > ol > li > dl > dt {
		font-size: 16px;
	}

	#examination .contents > ol > li > dl > dd {
		padding: 0 0 0 24px;
		position: relative;
	}

	#examination .contents > ol > li > dl > dd::before {
		content: "";
		position: absolute;
		top: 0.3em;
		left: 8px;
		display: block;
		width: 1px;
		height: calc(100% - 0.6em);
		font-size: 14px;
		background: #000;
	}

	#examination .contents > ol > li > dl > dd > p {
		padding: 0;
	}

	#examination .contents > ol ol > li p:nth-of-type(2) {
		display: flex;
		align-items: start;
	gap: 6px;
		font-size: 13px;
	}

	#examination .contents > ol ol > li p:nth-of-type(2) span {
		flex-shrink: 0;
	}

	#term .contents > p {
		font-size: 15px;
	}

	#privacy-policy h2 span {
		font-size: 14px;
		letter-spacing: 0;
	}

	#inquiry p {
		text-align: left;
	}

	ul.toTop {
		bottom: 0;
		right: 0;
	}

	ul.toTop a {
		padding-top: 33px;
		width: 33px;
	}

	ul.toTop a::before {
		margin: -4px 0 0 -8px;
	}

	footer {
		padding: 0 0 56px;
		position: static;
	}

	footer .copyright p {
		letter-spacing: 0;
		font-size: 11px;
		line-height: 1.6;
		color: #000;
	}

	footer .copyright a {
		color: #000;
	}

}

@media screen and (orientation: landscape) {



}
