@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: #5089f2;
	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 {
	margin-top: 56px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg,rgba(255, 255, 255, 1) 31%, rgba(252, 223, 253, 1) 100%) center bottom;
	z-index: 101;
}

/*
#top::before {
	content: "";
	padding-top: calc(59% - 1px);
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: calc(50% + 2px);
	height: 0;
	overflow: hidden;
	background: linear-gradient(180deg,rgba(255, 255, 255, 1) 31%, rgba(252, 223, 253, 1) 100%);
	z-index: 17;
}
*/

.siteTitle {
	padding-top: 18.2%;
	position: absolute;
	top: 0;
	right: 0%;
	overflow: hidden;
	width: 50%;
	height: 0;
	background: url(../images/common/header/title.webp) no-repeat center top;
	background-size: 100% auto;
	opacity: 0;
	filter: brightness(6) saturate(0);
	animation: flashIn 0.3s ease-out forwards 3s;
	animation-fill-mode: both;
	z-index: 18;
}

@media only screen and (max-width: 1180px) {
}

#top.active .siteTitle {
}

#top::before {
}

@keyframes flashIn {
	0% {
		opacity: 0;
		filter: brightness(6) saturate(0);
	}
	5% {
		opacity: 1;
		filter: brightness(6) saturate(0);
	}
	15% {
		opacity: 1;
		filter: brightness(1) saturate(1);
	}
	25% {
		opacity: 1;
		filter: brightness(4.5) saturate(0);
	}
	28% { filter: brightness(1) saturate(1); }
	40% { filter: brightness(5.5) saturate(0); }
	43% { filter: brightness(1) saturate(1); }
	55% { filter: brightness(4) saturate(0); }
	58% { filter: brightness(1) saturate(1); }
	72% { filter: brightness(5) saturate(0); }
	75% { filter: brightness(1) saturate(1); }
	85% { filter: brightness(6) saturate(0); }
	90% {
		opacity: 1;
		filter: brightness(1.2) saturate(1);
	}
	100% {
		opacity: 1;
		filter: brightness(1) saturate(1);
	}
}

#top.active::before {
/*
	clip-path: inset(0 100% 0 0);
	clip-path: inset(0 0 0 0);
*/
}

#top::after {
	content: "";
	padding-top: 21.5%;
	position: absolute;
	top: 0;
	right: 1%;
	display: block;
	width: 40%;
	height: 0;
/*	background: url(../images/common/header/term.webp) no-repeat center bottom; */
	background-size: 100% auto;
	opacity: 0;
	filter: brightness(6) saturate(0);
	animation: flashIn 0.3s ease-out forwards 3.4s;
	animation-fill-mode: both;
}

#top .visual {
	padding-top: calc(59% - 1px);
	position: absolute;
	top: 50%;
	left: 0;
	overflow: hidden;
	width: calc(50% - 1px);
	height: 0;
	transform: translateY(-50%);
	z-index: 10;
}

#top .visual::after {
	content: "";
	display: block;
	position: absolute;
	top: -1px;
	left: -1px;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	filter: brightness(6) saturate(0);
	animation: flashIn 0.3s ease-out forwards 3.1s;
	animation-fill-mode: both;
	z-index: 8;
}

#top .visual li {
	position: absolute;
	overflow: hidden;
	height: 0;
	z-index: 9;
}

#top .visual li:nth-of-type(1) {
	padding-top: 84%;
	top: 0;
	right: 0;
	width: 46.6%;
	background: url(../images/common/header/visual/v1.webp) no-repeat center top;
	background-size: 100% auto;
	opacity: 0;
	filter: brightness(6) saturate(0);
	animation: flashIn 0.3s ease-out forwards 3.1s;
	animation-fill-mode: both;
}

#top .visual li:nth-of-type(2) {
	padding-top: 56%;
	top: 0;
	left: 11%;
	width: 42.5%;
	background: url(../images/common/header/visual/v2.webp) no-repeat center top;
	background-size: 100% auto;
	opacity: 0;
	filter: brightness(6) saturate(0);
	animation: flashIn 0.3s ease-out forwards 3.3s;
	animation-fill-mode: both;
}

#top .visual li:nth-of-type(3) {
	padding-top: 56%;
	top: 0%;
	left: -0.4%;
	width: 53.1%;
	background: url(../images/common/header/visual/v3.webp) no-repeat center top;
	background-size: 100% auto;
	opacity: 0;
	filter: brightness(6) saturate(0);
	animation: flashIn 0.3s ease-out forwards 3.2s;
	animation-fill-mode: both;
}

#top .visual li:nth-of-type(4) {
	padding-top: 66%;
	top: 20.1%;
	left: 0%;
	width: 53.4%;
	background: url(../images/common/header/visual/v4.webp) no-repeat center top;
	background-size: 100% auto;
	opacity: 0;
	filter: brightness(6) saturate(0);
	animation: flashIn 0.3s ease-out forwards 3.4s;
	animation-fill-mode: both;
}

#top .visual li:nth-of-type(5) {
	padding-top: 63%;
	bottom: 0%;
	left: 0%;
	width: 53.6%;
	background: url(../images/common/header/visual/v5.webp) no-repeat center top;
	background-size: 100% auto;
	opacity: 0;
	filter: brightness(6) saturate(0);
	animation: flashIn 0.3s ease-out forwards 3.1s;
	animation-fill-mode: both;
}

#top .visual li:nth-of-type(6) {
	padding-top: 65%;
	bottom: -0.1%;
	left: 0.8%;
	width: 52.5%;
	background: url(../images/common/header/visual/v6.webp) no-repeat center bottom;
	background-size: 100% auto;
	opacity: 0;
	filter: brightness(6) saturate(0);
	animation: flashIn 0.3s ease-out forwards 3.1s;
	animation-fill-mode: both;
}

#top .visual li:nth-of-type(7) {
	padding-top: 65%;
	bottom: -0.1%;
	left: 53.5%;
	width: 46.5%;
	background: url(../images/common/header/visual/v7.webp) no-repeat center bottom;
	background-size: 100% auto;
	opacity: 0;
	filter: brightness(6) saturate(0);
	animation: flashIn 0.3s ease-out forwards 3.2s;
	animation-fill-mode: both;
}

#top .visual li:nth-of-type(8) {
	padding-top: 63%;
	bottom: 1.1%;
	right: 0;
	width: 47%;
	background: url(../images/common/header/visual/v8.webp) no-repeat center bottom;
	background-size: 100% auto;
	opacity: 0;
	filter: brightness(6) saturate(0);
	animation: flashIn 0.3s ease-out forwards 3.4s;
	animation-fill-mode: both;
}

#top .visual li:nth-of-type(9) {
	padding-top: 40%;
	top: 27%;
	left: 40%;
	width: 25%;
	background: url(../images/common/header/visual/v9.webp) no-repeat center bottom;
	background-size: 100% auto;
	z-index: 10;
	opacity: 0;
	filter: brightness(6) saturate(0);
	animation: flashIn 0.3s ease-out forwards 3s;
	animation-fill-mode: both;
}

#top .visual li:nth-of-type(10) {
	padding-top: 87%;
	position: absolute;
	top: 50%;
	left: 0.5%;
	display: block;
	width: 9.5%;
	height: 0;
	background: url(../images/common/header/ve.webp) no-repeat center top;
	background-size: 100% auto;
	opacity: 0;
	filter: brightness(6) saturate(0);
	animation: flashIn 0.3s ease-out forwards 3.6s;
	animation-fill-mode: both;
	transform: translateY(-50%);
	z-index: 11;
}

.catch {
	padding-top: 13%;
	position: absolute;
	bottom: 2%;
	right: 1%;
	overflow: hidden;
	width: 48%;
	height: 0;
	background: url(../images/common/header/catch.webp) no-repeat left bottom;
	background-size: 100% auto;
	clip-path: inset(0 100% 0 0);
	transition: clip-path 0.4s cubic-bezier(.57,0,.26,1) 2s;
	z-index: 18;
}

#top.active .catch {
	clip-path: inset(0 0 0 0);
}

@media only screen and (max-width: 1180px) {
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 56px;
	background: #5089f2;
	z-index: 100;
}

nav::before {
	content: "";
	position: fixed;
	top: 0;
	left: 10px;
	padding-top: 56px;
	display: block;
	width: 352px;
	height: 0;
	background: url(../images/common/header/logo.svg) no-repeat left center;
	background-size: 100% auto;
}

#top .globalNav {
	display: none;
}

.globalNav a {
	margin: 0 auto;
	display: table;
	line-height: 2;
	text-decoration: none;
	color: #fff;
	font-size: 3vh;
	font-weight: 500;
	-webkit-user-select: none;
	user-select: none;
}


.globalNav li:nth-of-type(1) a {
	margin-bottom: 1em;
	padding-top: 80px;
	overflow: hidden;
	display: block;
	width: 200px;
	height: 0;
	background: url(../images/common/footer/logo.svg) no-repeat left center;
	background-size: 100% auto;
}

	#menu-btn {
		position: fixed;
		display: block;
		top: -1px;
		right: 8px;
		height: 53px;
		width: 53px;
	opacity: 0;
		outline: none;
		border: none;
		background: none;
		cursor: pointer;
		z-index: 2000;
		-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
	}

body.active #menu-btn {
	animation: fadeIn 1.5s cubic-bezier(.17,.67,.6,.92) 2s 1 forwards;
}

	body.active #menu-btn,
	#menu-btn {
		opacity: 1;
		animation: none;
	}

@keyframes fade {
	from {
		opacity: 0;
		}
	to {
		opacity: 1;
	}
}

	#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: 50%;
	width: 100%;
	height: 100vh;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
		transition: transform 1s cubic-bezier(.57,0,.26,1) 0s;
	transform: translateX(50%);
	z-index: 1099;
}

.menu.active {
	transform: translateX(-50%);
}

	.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: #5089f2;
	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 {
	display:flex;
	justify-content: end;
	align-items: center;
	width: calc(100% - 70px);
	height: 54px;
	font-size: 16px;
	}

.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 1.5em 0 0;
	overflow: hidden;
	position: absolute;
	bottom: 4%;
	right: 8px;
	width: calc(24px - 1em);
	height: 14em;
	opacity: 0;
	font-size: 15px;
	z-index: 122;
}

#top.active .scroll {
	animation: fadeIn 1.5s cubic-bezier(.17,.67,.6,.92) 3.4s 1 forwards;
}

.scroll::before,
.scroll::after {
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background: rgba(0, 0, 0, .2);
}

.scroll::after {
	background: #e50012;
	-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, -28em, 0);}
	100% { transform: translate3d(0, 0, 0);}
}

@keyframes scrollDown {
	0% { transform: translate3d(0, -28em, 0);}
	100% { transform: translate3d(0, 0, 0);}
}

.scroll p {
	position: absolute;
	bottom: 0;
	right: 0;
	overflow: hidden;
	writing-mode: vertical-rl;
	font-size: 15px;
	font-family: 'Manrope', "Hiragino Sans", "ヒラギノ角ゴ Pro W3", 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", verdana, sans-serif;
	font-weight: 800;
	line-height: 1.2;
	-webkit-user-select: none;
	user-select: none;
}



/*--------------------------------------
 * コンテンツ
 * ---------------------------------------*/

.primary {
	padding: 0 0 120px;
	position: relative;
	width: 100%;
	z-index: 100;
}

.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: 64px 64px 0;
	position: relative;
	max-width: 1240px;
	width: 100%;
	display: flex;
	align-items: start;
}

.primary section h2 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 11em;
	height: 2.4em;
	font-size: 20px;
	line-height: 1.2;
	color: #fff;
	font-weight: 500;
	flex-grow: 0;
	flex-shrink: 0;
	-webkit-user-select: none;
	user-select: none;
	background: #08174e;
}


.primary section .contents {
	padding: 0 0 0 16px;
	flex: 1;
}

@media only screen and (max-width: 1180px) {

	.primary section {
		padding: 64px 48px 0;
	}

	.primary section h2 {
	}
}

.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);
}

/*--------------------------------------
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 .contents ul:not(.notice) li {
}

#grandprix .contents ul:not(.notice) li p {
}

#grandprix .contents ul:not(.notice) > li > p::before {
	content: "・";
}

#grandprix .contents > ul > li .notice {
	padding-left: 1em;
}


/*--------------------------------------
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;
}

#entry .link a {
	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::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: #ec306d;
	transform: translateX(-176%) skew(50deg, 0deg);
	transition: all 1.2s cubic-bezier(.57,0,.26,1);
	z-index: -1;
}

#entry .link a:hover::after {
	transform: translateX(176%) skew(50deg, 0deg);
}

#entry .link a:hover {
	opacity: 1;
	color: #363634;
	border: solid 1px #363634;
}

#entry .link a:hover::before {
	border-color: #363634;
}


/*--------------------------------------
examination
---------------------------------------*/
#examination {
}

#examination ol > li:nth-of-type(1) {
	padding-bottom: 24px;
}

#examination ol li > dl > dt {
	display: flex;
	align-items: start;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
	gap: 0.5em;
}

#examination ol li > dl > dt span {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 0.5em;
}

#examination ol li > dl > dt span::after {
	content: "";
	display: block;
	width: 2em;
	height: 1px;
	background: #1d1f28;
}

@media only screen and (max-width: 1130px) {

	#examination ol li > dl > dt {
		
	}
}

#examination ol li > dl > dd {
	padding: 0.3em 0 0 8.75em;
}

#examination ol li:nth-child(2) {
}

#examination ol li > dl > dd > p {
	padding-bottom: 8px;
	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 {
}

#term .contents > p {
	font-size: 24px;
	line-height: 1.2;
}

@media only screen and (max-width: 1180px) {

	#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: 16px;
}

#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;
}

#inquiry .link a {
	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::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: #ec306d;
	transform: translateX(-176%) skew(50deg, 0deg);
	transition: all 1.2s cubic-bezier(.57,0,.26,1);
	z-index: -1;
}

#inquiry .link a:hover::after {
	transform: translateX(176%) skew(50deg, 0deg);
}

#inquiry .link a:hover {
	opacity: 1;
	color: #363634;
	border: solid 1px #363634;
}

#inquiry .link a:hover::before {
	border-color: #363634;
}



/*--------------------------------------
上部へボタン
---------------------------------------*/

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: #5089f2;
	border-radius: 50%;
	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);
}

ul.toTop a:hover {
	opacity: 1;
	color: #fff;
	background: #90b4f7;
}

ul.toTop a:hover::before {
	border-color: #fff;
}


/*--------------------------------------
フッター
---------------------------------------*/

footer {
	padding: 120px 0px;
	clear: both;
	position: absolute;
	bottom: 0;
	overflow: hidden;
	width: 100%;
	text-align: center;
	color: #fff;
	background: #5089f2;
	z-index: 100;
}

#home footer {
	position: relative;
}

.contents footer {
	position: absolute;
	bottom: 0;
}

footer > ul {
	position: relative;
	z-index: 102;
}

footer .copyright::before {
	content: "";
	margin: 0 auto ;
	padding-top: 113px;
	display: block;
	width: 236px;
	height: 0;
	background: url(../images/common/footer/logo.svg) no-repeat;
	background-size: 100% auto;
}

@media only screen and (max-width: 1180px) {

	footer .copyright::before {
	}
}

footer .copyright p {
	font-size: 13px;
	line-height: 1.2;
}

footer .copyright br {
	display: none;
}

footer .copyright a {
	color: #fff;
	text-decoration: underline;
}

.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 {
		font-size: 18px;
	}

	#privacy-policy h2 span {
		font-size: 14px;
	}

	#entry .notice li::before,
	#entry .contents .notice p {
		font-size: 15px;
	}

	.primary section .contents {
	}

	#examination ol li > dl > dt {
		font-size: 18px;
	}

	#examination ol li > dl > dd {
		padding: 0.3em 0 0 8.5em;
	}

	#examination ol li > dl > dd > p {
		font-size: 15px;
	}

	#examination .judge > dd > ul > li > p {
		font-size: 14px;
	}

	#term .contents > p {
		font-size: 18px;
	}

	#inquiry .link a,
	#entry .link a {
		font-size: 16px;
	}
}


/*--------------------------------------------------------------------------------------------------*/


@media only screen and (max-width: 860px) {

	body {
		font-size: 14px;
	}

	.primary section h2 {
		font-size: 16px;
		height: 2.6em;
	}

	#entry .notice li::before,
	#entry .contents .notice p {
		font-size: 14px;
	}

	#entry .contents > dl {
		display: block;
	}

	#entry .contents > dl > dd {
		padding: 4px 0 0;
	}

	#examination ol li > dl > dt {
		font-size: 16px;
	}

	#examination ol li > dl > dd {
		padding: 0.3em 0 0 8em;
	}

	#examination ol li > dl > dd > p {
		font-size: 14px;
	}

	#term .contents > p {
		font-size: 16px;
	}

}



/*--------------------------------------------------------------------------------------------------*/


@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;
	}

#top {
	margin: 0;
	padding-top: 100vh;
	background: none;
}

	.siteTitle {
		top: auto;
		bottom: 0;
		padding-top: 75%;
		width: 100%;
		background: url(../images/common/header/title.webp) no-repeat center top;
		background-size: 100% auto;
	}

	#top .visual {
		padding-top: 118%;
		top: 45px;
		width: 100%;
		transform: none;
	}

	#top .visual::after {
			top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
	}

	#top .visual li:nth-of-type(10) {
		padding-top: 176%;
		top: 50%;
		width: 8%;
		background: url(../images/common/header/ve_sp.webp) no-repeat center top;
		background-size: 100% auto;
		transform: translateY(-32%);
	}

@media only screen and (max-width: 320px) {

	.siteTitle {
		top: 53px;
		bottom: auto;
		padding-top: 75%;
		width: 100%;
	}

		#top .visual {
			padding-top: calc(118% * 1.2);
			top: 50%; 
			left: 50%;
			bottom: auto;
			width: 120%;
			transform: translate(-50%, calc(-50% + 40px));
		}

		#top .visual li:nth-of-type(10) {
		display: none;
		}
	}

	#top::after {
		padding-top: 37%;
		position: absolute;
		right: auto;
		left: 2%;
		top: auto;
		bottom: 0;
		width: 96%;
/*	    background: url(../images/common/header/term.webp) no-repeat center top; */
		background-size: 100% auto;
		z-index: 14;
	}

	.catch {
		padding-top: 27%;
		bottom: 2%;
		right: auto;
		left: 2%;
		width: 96%;
		background: url(../images/common/header/catch.webp) no-repeat left bottom;
		background-size: 100% auto;
	}

	nav {
		height: 45px;
	}

	#menu-btn {
		top: -5px;
		right: 4px;
		height: 50px;
		width: 46px;
	}


	nav::before {
		left: 6px;
		padding-top: 46px;
		width: 85px;
	height: 0;
		background: url(../images/common/footer/logo.svg) no-repeat left center;
		background-size: 100% auto;
	}

	.globalNav a {
	line-height: 2.4;
	font-size: 2.5vh;
	}

	.sns-link {
		width: calc(100% - 59px);
		height: 45px;
	}

	.sns-link li {
		width: 40px;
	}

	.primary {
		padding: 0 0 64px;
	}

	.primary section {
		padding: 40px 16px 0;
		display: block;
	}

	.primary section h2 {
		width: 100%;
		font-size: 16px;
	}

	.primary section h2::after {
		margin-top: 8px;
	}

	.primary section .contents {
		padding: 8px 0 0 0;
	}

	.notice li::before, .notice p {
		font-size: 12px;
		line-height: 1.7;
	}

	#entry .contents > dl > dt {
		text-align: center;
	}

	#examination ol li > dl > dd {
		 padding: 0.3em 0 0;
	}

	#examination .judge h3 {
		margin-left: calc(32% + 12px);
		padding-bottom: 8px;
		font-size: 15px;
		font-weight: 500;
	}

	#examination .judge > dd > ul > li > p {
		font-size: 12px;
	}

	#inquiry .link a,
	#entry .link a {
		margin: 0 auto;
		font-size: 16px;
	}

	#term .contents > p {
		font-size: 14px;
		line-height: 1.8;
	}

	#examination ol li > dl > dt span::after {
		width: 1em;
	}

	footer {
		padding: 48px 0 56px;
		position: static;
	}

	footer .copyright::before {
		padding-top: calc(21% * 1.1 + 16px);
		width: calc(40% * 1.1);
	}


	footer .copyright p {
		letter-spacing: 0;
		font-size: 12px;
		line-height: 1.6;
	}


}

@media screen and (orientation: landscape) {



}
