@charset "UTF-8";

@import url("https://use.typekit.net/fnt2yjq.css");

:root {
	/* font */
	--gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--marlide: "marlide-display-variable", sans-serif;
	--vincente: "vincente", serif;

	/* 
	font-family: "vincente", serif;
	font-weight: 400,600,700;
	font-style: normal;
 */

	/* color */
	--blk: 54, 54, 54;
	--wht: 255, 255, 255;
	--pnk: 224, 151, 166;
	--grn: 126, 186, 181;

	--plan: 216, 114, 135;
	--button: 213, 142, 154;
	--bgBase: 255, 245, 245;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

@media screen and (max-width: 768px) {
	html {
		scroll-padding-top: 0;
	}
}

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

.visually-hidden {
	margin: -1px;
	padding: 0;
	width: 1px;
	height: 1px;
	white-space: nowrap;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
	border: 0;
	position: absolute;
}

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

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

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

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

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

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

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

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

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

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

.sp,
.sp-only {
	display: none;
}

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

	.pc,
	.pc-only {
		display: none;
	}

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
/* type1 */
ul.type1 li {
	margin-left: 1em;
	text-indent: -1em;
}

ul.type1 li::before {
	content: "・";
}

/* note */
ul.note li {
	margin-left: 1em;
	text-indent: -1em;
}

ul.note.en li {
	margin-left: 0.5em;
	text-indent: -0.5em;
}

ul.note li {
	font-size: 12px;
}

ul.note li a {
	text-indent: 0;
}

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

ul.note.en li::before {
	content: "*";
}

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

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

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

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

/*
	linkText
------------------------------ */
.linkText::before {
	content: ">";
}

/*
	linkBtn
------------------------------ */
.linkBtn a {
	background: rgb(var(--button));
	margin: 0 auto;
	width: 300px;
	height: 60px;
	line-height: 1;
	color: rgb(var(--wht));
	font-family: var(--marlide);
	font-size: 25px;
	text-decoration: none;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.linkBtn a small {
	margin-top: 4px;
	font-size: 15px;
}

.linkBtn a svg {
	width: 16px;
	fill: rgb(var(--wht));
	position: absolute;
	top: 45%;
	right: 20px;
	transform: rotate(90deg);
}

@media screen and (max-width: 1000px) {
	.linkBtn a {
		width: 30vw;
		height: 6vw;
		font-size: 2.5vw;
		border-radius: 0.5vw;
	}

	.linkBtn a small {
		margin-top: .4vw;
		font-size: 1.5vw;
	}

	.linkBtn a svg {
		width: 1.6vw;
		right: 2vw;
	}
}

@media screen and (max-width: 768px) {
	.linkBtn a {
		width: 80vw;
		height: 16vw;
		font-size: 6.667vw;
		border-radius: 1.333vw;
	}

	.linkBtn a small {
		margin-top: 1.067vw;
		font-size: 4vw;
	}

	.linkBtn a svg {
		width: 4.267vw;
		right: 5.333vw;
	}
}

/* ----------------------------------------------------
	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(50px);
}

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

/* ---------------------------------------------------
	header
---------------------------------------------------- */
.header {
	position: relative;
}

.headerTitle {
	width: 80.769%;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
}

.headerDate {
	width: 30.923%;
	position: absolute;
	bottom: 4.615vw;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.headerSlide {
	line-height: 0;
	font-size: 0;
}

@media screen and (max-width: 768px) {
	.headerTitle {
		width: 68%;
	}

	.headerDate {
		width: 83.733%;
		bottom: 14.4vw;
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: rgb(var(--wht));
	padding-top: 75px;
	position: relative;
	z-index: 1;
}

.footer .sponsor__text {
	margin-bottom: 0;
	font-size: 14px;
	text-align: center;
}

.footer .sponsor__text:last-of-type {
	margin-bottom: 40px;
}

.footer .sponsor__list {
	margin-bottom: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer .sponsor__list--item {
	margin: 0 15px;
}

.footer .sponsor__list--item.logo01 {
	width: 165px;
}

.footer .sponsor__list--item.logo02 {
	width: 160px;
}

.footer .sponsor__list--item.logo03 {
	width: 86px;
}

.footer__banner {
	margin: 0 auto 80px;
	width: 650px;
}

.footer__note {
	margin: 0 auto 80px;
	max-width: 680px;
}

.footer .note.en {
	margin-top: 30px;
}

.footer .note li {
	font-size: 12px;
}

.footer .note li a {
	color: rgb(var(--pnk));
}

@media screen and (max-width: 1000px) {
	.footer {
		padding-top: 7.5vw;
	}

	.footer .sponsor__text {
		font-size: 1.4vw;
	}

	.footer .sponsor__text:last-of-type {
		margin-bottom: 4vw;
	}

	.footer .sponsor__list {
		margin-bottom: 5.5vw;
	}

	.footer .sponsor__list--item {
		margin: 0 1.5vw;
	}

	.footer .sponsor__list--item.logo01 {
		width: 16.5vw;
	}

	.footer .sponsor__list--item.logo02 {
		width: 16vw;
	}

	.footer .sponsor__list--item.logo03 {
		width: 8.6vw;
	}

	.footer__banner {
		margin-bottom: 8vw;
		width: 65vw;
	}

	.footer__note {
		margin-bottom: 8vw;
		max-width: 68vw;
	}

	.footer .note.en {
		margin-top: 3vw;
	}

	.footer .note li {
		font-size: 1.2vw;
	}
}

@media screen and (max-width: 768px) {
	.footer {
		padding: 12vw 7.2vw 0;
	}

	.footer .sponsor__text {
		font-size: 3.733vw;
	}

	.footer .sponsor__text:last-of-type {
		margin-bottom: 8vw;
	}

	.footer .sponsor__list {
		margin-bottom: 12vw;
		display: block;
	}

	.footer .sponsor__list--item {
		margin: 0 auto 4vw;
		text-align: center;
	}

	.footer .sponsor__list--item.logo01 {
		width: 165px;
	}

	.footer .sponsor__list--item.logo02 {
		width: 160px;
	}

	.footer .sponsor__list--item.logo03 {
		width: 86px;
	}

	.footer__banner {
		margin-bottom: 12vw;
		width: 100%;
	}

	.footer__banner--item:not(:last-of-type) {
		margin-bottom: 4vw;
	}

	.footer__note {
		margin-bottom: 4vw;
		max-width: 100%;
	}

	.footer .note.en {
		margin-top: 4vw;
	}

	.footer .note li {
		font-size: 3.2vw;
	}
}

/*
	hotelNav
------------------------------ */
.footer__hotelNav {
	margin-top: 60px;
	line-height: 1;
	color: rgb(var(--blk));
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.footer__hotelNav li {
	margin: 0 0 1rem;
	text-indent: 0;
	display: flex;
	position: relative;
}

.footer__hotelNav li:first-of-type::before,
.footer__hotelNav li::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.footer__hotelNav li:first-of-type::before {
	left: 0;
	content: "|";
}

.footer__hotelNav li::after {
	right: 0;
	content: "|";
}

.footer__hotelNav li a {
	padding: 0 1em;
	color: rgb(var(--blk));
	font-size: 14px;
	text-decoration: none;
	display: inline-block;
}

.footer__hotelNav li a:hover {
	text-decoration: underline;
	opacity: 1;
}

@media screen and (max-width: 1000px) {
	.footer__hotelNav {
		margin-top: 6vw;
	}

	.footer__hotelNav li a {
		font-size: 1.4vw;
	}
}

@media screen and (max-width: 768px) {
	.footer__hotelNav {
		margin-top: 12vw;
		text-align: center;
		display: block;
	}

	.footer__hotelNav li:first-of-type::before,
	.footer__hotelNav li::after {
		display: none;
	}

	.footer__hotelNav li {
		margin-bottom: 1.5rem;
		justify-content: center;
	}

	.footer__hotelNav li a {
		line-height: 1.25;
		font-size: 3.733vw;
		display: inline-block;
		position: relative;
	}

	.footer__hotelNav li a::before,
	.footer__hotelNav li a::after {
		display: none;
	}
}

/*
	copy
------------------------------ */
.copy {
	padding: 25px 0;
	font-size: 12px;
	text-align: center;
}

@media screen and (max-width: 1000px) {
	.copy {
		padding: 2.5vw 0;
		font-size: 1.2vw;
	}
}

@media screen and (max-width: 768px) {
	.copy {
		padding: 4.8vw 0;
		font-size: 2.93333vw;
	}
}

/* ----------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	background: rgb(var(--bgBase));
	position: sticky;
	top: 0;
	z-index: 100;
}

.gnav__list {
	display: flex;
	justify-content: center;
}

.gnav__list--item:not(:last-of-type) {
	margin-right: 66px;
}

.gnav__list--item a {
	height: 100px;
	color: rgb(var(--pnk));
	font-family: var(--marlide);
	font-size: 26px;
	font-weight: 500;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.toggle {
	display: none;
}

@media screen and (max-width: 1000px) {
	.gnav__list--item:not(:last-of-type) {
		margin-right: 6.6vw;
	}

	.gnav__list--item a {
		height: 10vw;
		font-size: 2.6vw;
	}
}

@media screen and (max-width: 768px) {
	.gnav {
		padding-top: 94px;
		max-width: 375px;
		width: 100%;
		height: 100%;
		color: rgb(var(--wht));
		overflow: auto;
		position: fixed;
		right: 0;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__list {
		display: block;
	}

	.gnav__list--item:not(:last-of-type) {
		margin-right: 0;
	}

	.gnav__list--item a {
		padding: 0.5em 0;
		height: auto;
		font-size: 26px;
	}

	.overlay {
		background: rgba(var(--blk), 0.75);
		width: 100vw;
		height: 100vh;
		opacity: 0;
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99;
		content: "";
	}

	/* is-open */
	.is-open {
		overflow: hidden;
	}

	.is-open .gnav {
		transform: translateX(0);
	}

	.is-open .overlay {
		opacity: 1;
		visibility: visible;
		cursor: pointer;
	}

	/*
		toggle
	------------------------------ */
	.toggle {
		width: 50px;
		height: 50px;
		display: block;
		position: fixed;
		top: 22px;
		right: 18px;
		z-index: 101;
	}

	.toggle__inner {
		width: 100%;
		height: 100%;
		position: relative;
		cursor: pointer;
	}

	.toggle__inner--item {
		background: rgb(var(--blk));
		width: 100%;
		height: 2px;
		display: block;
		position: absolute;
		left: 50%;
		transition: all 0.6s;
	}

	.toggle__inner--item:nth-child(1) {
		top: 18px;
		transform: translateX(-50%);
	}

	.toggle__inner--item:nth-child(2) {
		bottom: 18px;
		transform: translateX(-50%);
	}

	/* is-open */
	.is-open .toggle__inner--item {
		transform-origin: 0 0;
	}

	.is-open .toggle__inner--item:nth-child(1) {
		top: 50%;
		transform: rotate(45deg) translate(-50%, -50%);
	}

	.is-open .toggle__inner--item:nth-child(2) {
		top: 50%;
		bottom: auto;
		transform: rotate(-45deg) translate(-50%, -50%);
	}
}

/* ---------------------------------------------------
	bgMovie
---------------------------------------------------- */
.bgMovie {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}

.bgMovie__inner {
	min-width: 100%;
	min-height: 100vh;
	position: relative;
}

.bgMovie__inner::before {
	background: linear-gradient(180deg, rgba(206, 237, 248, 0.8) 0%, rgba(250, 242, 240, 0.8) 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	content: "";
}

.bgMovie__inner video {
	min-width: 100%;
	min-height: 100vh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}