@charset "UTF-8";

:root {
	--font-family: "Inter", "Meiryo", "メイリオ", sans-serif;
	--font-family-en: "Inter", "Meiryo", "メイリオ", sans-serif;
	--font-size: .875rem;
	--line-height: 1.8;
	--letter-spacing: .05em;
	--color-main: #036eb8;
	--color-main-light: #e1ecf4;
	--color-main-light2: #f5fafe;
	--color-gray: #444;
	--color-light-gray: #f0f0f0;
	--color-black: #111;
	--color-white: #fff;
	--color-border: #ddd;
	--content-width: 1320px;
	--content-width-medium: 1100px;
	--content-gutter: 20px;
	--content-gutter-wide: 60px;
	--module-gutter: 1.875rem;
	--module-gutter-wide: 2.5rem;
	--scroll-padding: 0;
	--scroll-padding-tab: 0;
	--scroll-padding-pc: 0;
	--transition-duration: .4s;
	--hover-opacity: .8;
	--z-index-header: 10;
	--header-height: 80px;
	--header-height-sp: 60px
}

.l-container,
.l-container--fluid,
.l-container--left {
	padding-inline: var(--content-gutter)
}

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

	.l-container,
	.l-container--fluid,
	.l-container--left {
		padding-inline: min(5.2083333333vw, var(--content-gutter-wide))
	}
}

.l-content {
	max-width: var(--content-width);
	margin-inline: auto
}

.l-content>:first-child {
	margin-top: 0
}

@media screen and (min-width:768px) {
	.l-content>:first-child {
		margin-top: 0
	}
}

.l-content--medium {
	max-width: var(--content-width-medium);
	margin-inline: auto
}

.l-content--medium>:first-child {
	margin-top: 0
}

@media screen and (min-width:768px) {
	.l-content--medium>:first-child {
		margin-top: 0
	}
}

html {
	height: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: var(--scroll-padding)
}

@media screen and (min-width:960px) {
	html {
		scroll-padding-top: var(--scroll-padding-tab)
	}
}

@media screen and (min-width:1280px) {
	html {
		scroll-padding-top: var(--scroll-padding-pc)
	}
}

body {
	height: 100%;
	font-family: var(--font-family);
	font-size: var(--font-size);
	line-height: var(--line-height);
	color: var(--color-black);
	letter-spacing: var(--letter-spacing)
}

@media screen and (min-width:768px) {
	body {
		font-size: 1rem
	}
}

:where(a[href]) {
	color: var(--color-link)
}

img {
	display: inline-block;
	max-width: 100%;
	height: auto;
	vertical-align: bottom
}

input,
textarea,
select,
button {
	font-family: var(--font-family)
}

summary::-webkit-details-marker {
	display: none
}

.c-text {
	font-size: .875rem;
	line-height: 1.8;
	letter-spacing: .05em
}

@media screen and (min-width:768px) {
	.c-text {
		font-size: 1rem
	}
}

body.is-drawer-active {
	overflow: hidden
}

.l-header {
	position: fixed;
	top: 10px;
	left: 50%;
	z-index: 9;
	width: 100%;
	padding: 0 10px;
	transform: translate(-50%)
}

@media screen and (min-width:1100px) {
	.l-header {
		top: 20px;
		padding: 0 20px
	}
}

.m-header__nav {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
	height: 54px;
	padding: 0 25px;
	margin: 0 auto;
	color: #fff;
	background: #031b59;
	border-radius: 999px
}

@media screen and (min-width:1100px) {
	.m-header__nav {
		height: 60px;
		padding: 0 12px 0 40px
	}
}

.m-header-nav {
	display: none
}

@media screen and (min-width:1100px) {
	.m-header-nav {
		display: flex;
		flex-flow: row wrap;
		gap: 0 10px;
		font-weight: 700
	}
}

.only-pc {
	display: none
}

@media screen and (min-width:1100px) {
	.only-pc {
		display: block
	}
}

.only-sp {
	display: block
}

@media screen and (min-width:1100px) {
	.only-sp {
		display: none
	}
}

.m-header__logo .c-logo__img {
	width: 41px
}

@media screen and (min-width:1100px) {
	.m-header__logo .c-logo__img {
		width: 52px
	}
}

@media(hover:hover) {
	.m-header-nav__item.m-header-nav__item--2:hover .m-header-nav__dropdown {
		background: #fff
	}
}

.m-header-nav__dropdown {
	position: absolute;
	bottom: 0;
	left: 0;
	display: none;
	padding: 5px 18px;
	font-size: 14px;
	color: #444;
	letter-spacing: .075em;
	white-space: nowrap;
	background: #fff;
	border-radius: 12px;
	box-shadow: 15px 15px 25px #061a3380;
	opacity: 0;
	transform: translateY(100%);
	transition: opacity .3s
}

.m-header-nav__dropdown li {
	display: flex;
	align-items: center
}

.m-header-nav__item {
	padding: 10px 0
}

.m-header-nav__item>a {
	padding: 7.5px 20px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: .1em;
	opacity: 1;
	transition: opacity .6s
}

.m-header-nav__item:hover {
	position: relative
}

.m-header-nav__item:hover .m-header-nav__dropdown {
	display: block;
	visibility: visible;
	pointer-events: auto;
	opacity: 1
}

@media(hover:hover) {

	.m-header-nav__item .m-header-nav__link:hover,
	.m-header-nav__item--2 a:hover {
		opacity: .6
	}
}

.m-header-nav__dropdown li a {
	display: block;
	padding: 17px 4px;
	color: #fff;
	opacity: 1;
	transition: opacity .6s
}

@media screen and (min-width:1100px) {
	.m-header-nav__dropdown li a {
		color: #0d1462
	}
}

@media(hover:hover) {
	.m-header-nav__dropdown li:hover {
		opacity: .6
	}
}

.drawer-nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 8;
	display: block;
	width: 100%;
	height: 100vh;
	padding: 94px 0;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	letter-spacing: .1em;
	background-color: #0a1125e6;
	transform: translateY(-100%);
	transition-duration: .6s;
	transition-property: all
}

@media screen and (min-width:1100px) {
	.drawer-nav {
		display: none
	}
}

.m-header-nav__dropdown--2 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px !important;
	height: 50px;
	padding: 13px 10px;
	color: #032a59;
	background: #fff;
	border-radius: 60px
}

@media screen and (min-width:1100px) {
	.m-header-nav__dropdown--2 {
		display: block
	}
}

.m-header-nav__dropdown--2 li {
	align-items: center !important;
	justify-content: center !important;
	width: 50%;
	color: #032a59;
	text-align: center
}

.m-header-nav__dropdown--2 li:first-child {
	border-right: 1px solid #032A59
}

.m-header-nav__dropdown--2 li a {
	padding: 0 !important;
	color: #032a59 !important
}

.m-header-nav__dropdown li:not(:last-child) {
	border-bottom: 1px solid #003C84
}

.m-header-nav__item.m-header-nav__item--2>a {
	color: #032a59;
	background: #fff;
	border-radius: 100px
}

.m-header-nav__item--2 .m-header-nav__dropdown li a {
	color: #032a59;
	pointer-events: unset
}

@media(hover:hover) {
	.m-header-nav__item.m-header-nav__item--2:hover>a {
		opacity: .6
	}
}

.dropdown-item-day {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 19px;
	padding: 2px 10px;
	margin-right: 8px;
	font-size: 13px;
	color: #fff;
	background: #0d1462;
	border-radius: 2px;
	opacity: 1
}

.drawer-nav-body {
	padding: 0 30px
}

.drawer-nav-body .drawer-nav-item ul {
	width: 100%
}

.is-drawer-active .drawer-nav {
	overflow: auto;
	transform: translateY(0)
}

.is-drawer-active .drawer-nav li {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding: 15px 0;
	margin: 0;
	border-bottom: 1px solid #fff
}

.is-drawer-active .drawer-nav li a {
	font-size: 14px;
	color: #fff
}

@media screen and (min-width:1100px)and (hover:hover) {
	.is-drawer-active .drawer-nav li a {
		color: #003c84
	}
}

.is-drawer-active .drawer-nav li ul li {
	padding: 15px 0
}

.is-drawer-active .drawer-nav li ul li .dropdown-item-day {
	margin-right: 0
}

.is-drawer-active .drawer-nav li:last-child {
	border-bottom: none
}

.is-drawer-active .drawer-nav li.drawer-nav-item--2 ul li {
	padding: 0 !important;
	pointer-events: unset
}

.is-drawer-active .drawer-nav li ul li:first-child {
	padding-top: 0
}

.is-drawer-active .drawer-nav li ul li:last-child {
	padding-bottom: 0
}

.is-drawer-active .drawer-nav .drawer-nav-item--2 {
	align-items: center !important;
	justify-content: space-between;
	padding-top: 40px !important;
	border-bottom: none !important
}

.is-drawer-active .m-header__toggle span {
	background: inherit !important
}

.is-drawer-active .m-header__toggle span:before,
.is-drawer-active .m-header__toggle span:after {
	position: absolute;
	top: 50% !important;
	left: 50% !important
}

.is-drawer-active .m-header__toggle span:before {
	transform: translate(-50%, -50%) rotate(45deg) !important
}

.is-drawer-active .m-header__toggle span:after {
	transform: translate(-50%, -50%) rotate(-45deg) !important
}

.page-top {
	position: fixed;
	right: 10px;
	bottom: 0;
	z-index: 7;
	display: none;
	width: 10.256vw;
	height: 10.256vw;
	transition: all .3s
}

@media screen and (min-width:1100px) {
	.page-top {
		right: 50px;
		width: 50px;
		height: 50px
	}
}

.page-top.is-show {
	bottom: 18vw;
	display: block;
	transform: translateY(0)
}

@media screen and (min-width:1100px) {
	.page-top.is-show {
		bottom: 30px
	}
}

.page-top img {
	opacity: 1;
	transition: opacity .6s
}

@media(hover:hover) {
	.page-top img:hover {
		opacity: .6
	}
}

.btn-mb {
	display: block;
	height: 100%
}

.btn-mb .m-header__toggle {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	width: 29px
}

.btn-mb .m-header__toggle span {
	position: relative;
	top: 27px;
	display: block;
	width: 100%;
	height: 2px;
	content: "";
	background: #fff;
	border-radius: 999px;
	transition-duration: .6s;
	transition-property: all
}

.btn-mb .m-header__toggle span:before,
.btn-mb .m-header__toggle span:after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 100%;
	height: 2px;
	content: "";
	background: #fff;
	border-radius: 999px;
	transform: translate(-50%, -50%);
	transition-duration: .6s;
	transition-property: all
}

.btn-mb .m-header__toggle span:before {
	top: -6px
}

.btn-mb .m-header__toggle span:after {
	top: 8px
}

@media screen and (min-width:1100px) {
	.btn-mb {
		display: none
	}
}

.l-footer {
	padding: 39px 50px 129px;
	color: #fff;
	background: #1f1010
}

.l-footer__inner {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-end;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto
}

.m-footer-info {
	display: flex;
	flex-flow: row wrap;
	gap: 0 60px;
	justify-content: space-between
}

.footer-info-item {
	font-weight: 700
}

.footer-info-item .company {
	margin-bottom: 18px;
	font-size: 20px;
	letter-spacing: .08em
}

.footer-info-item .mail,
.footer-info-item .reception {
	font-size: 13px;
	letter-spacing: .12em
}

.footer-info-item .mail {
	margin-bottom: 8px
}

.footer-content {
	display: flex;
	flex-flow: row wrap;
	gap: 4px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .15em
}

.footer-content a {
	opacity: 1;
	transition: opacity .6s
}

@media(hover:hover) {
	.footer-content a:hover {
		opacity: .6
	}
}

@media screen and not (min-width:768px) {
	.footer {
		padding: 12.82vw 5.128vw 20.512vw
	}

	.footer__inner {
		flex-flow: column;
		gap: 7.692vw;
		align-items: flex-start;
		justify-content: flex-start
	}

	.footer-info {
		flex-flow: column;
		gap: 5.128vw;
		align-items: flex-start;
		justify-content: flex-start
	}

	.footer-info-item .company {
		margin-bottom: 4.615vw;
		font-size: 5.128vw
	}

	.footer-info-item .mail,
	.footer-info-item .reception {
		font-size: 3.333vw
	}

	.footer-info-item .mail {
		margin-bottom: 2.051vw
	}

	.footer-content {
		gap: 1.025vw;
		padding-top: 30px;
		font-size: 3.07vw
	}

	.footer-content a {
		opacity: 1;
		transition: opacity .6s
	}
}

.video-popup {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
	display: flex;
	visibility: hidden;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	background: #070505cc;
	opacity: 0;
	transition: opacity .3s ease, visibility .3s ease
}

.video-popup.is-active {
	visibility: visible;
	pointer-events: auto;
	opacity: 1
}

.video-popup__inner {
	position: relative;
	width: 90%;
	max-width: 900px
}

.video-popup video {
	display: block;
	width: 100%;
	height: auto
}

.video-popup__close {
	position: absolute;
	top: -40px;
	right: 0;
	font-size: 32px;
	color: #fff;
	cursor: pointer;
	background: none;
	border: 0
}

.no-scroll {
	overflow: hidden
}

.l-container--fluid {
	padding-inline: 0
}

.l-container--left {
	border-radius: 0 30px 30px 0
}

@media screen and (min-width:768px) {
	.l-container--left {
		position: relative;
		max-width: calc(100% - 80px);
		margin-inline: auto;
		border-radius: 0 60px 60px 0
	}

	.l-container--left:before {
		position: absolute;
		top: 0;
		bottom: 0;
		left: calc(50% - 50vw);
		z-index: -1;
		display: block;
		width: 50%;
		height: 100%;
		content: "";
		background-color: inherit
	}
}

*,
:before,
:after {
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-pan-x: ;
	--tw-pan-y: ;
	--tw-pinch-zoom: ;
	--tw-scroll-snap-strictness: proximity;
	--tw-gradient-from-position: ;
	--tw-gradient-via-position: ;
	--tw-gradient-to-position: ;
	--tw-ordinal: ;
	--tw-slashed-zero: ;
	--tw-numeric-figure: ;
	--tw-numeric-spacing: ;
	--tw-numeric-fraction: ;
	--tw-ring-inset: ;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgb(59 130 246 / .5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	--tw-blur: ;
	--tw-brightness: ;
	--tw-contrast: ;
	--tw-grayscale: ;
	--tw-hue-rotate: ;
	--tw-invert: ;
	--tw-saturate: ;
	--tw-sepia: ;
	--tw-drop-shadow: ;
	--tw-backdrop-blur: ;
	--tw-backdrop-brightness: ;
	--tw-backdrop-contrast: ;
	--tw-backdrop-grayscale: ;
	--tw-backdrop-hue-rotate: ;
	--tw-backdrop-invert: ;
	--tw-backdrop-opacity: ;
	--tw-backdrop-saturate: ;
	--tw-backdrop-sepia: ;
	--tw-contain-size: ;
	--tw-contain-layout: ;
	--tw-contain-paint: ;
	--tw-contain-style:
}

::backdrop {
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-pan-x: ;
	--tw-pan-y: ;
	--tw-pinch-zoom: ;
	--tw-scroll-snap-strictness: proximity;
	--tw-gradient-from-position: ;
	--tw-gradient-via-position: ;
	--tw-gradient-to-position: ;
	--tw-ordinal: ;
	--tw-slashed-zero: ;
	--tw-numeric-figure: ;
	--tw-numeric-spacing: ;
	--tw-numeric-fraction: ;
	--tw-ring-inset: ;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgb(59 130 246 / .5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	--tw-blur: ;
	--tw-brightness: ;
	--tw-contrast: ;
	--tw-grayscale: ;
	--tw-hue-rotate: ;
	--tw-invert: ;
	--tw-saturate: ;
	--tw-sepia: ;
	--tw-drop-shadow: ;
	--tw-backdrop-blur: ;
	--tw-backdrop-brightness: ;
	--tw-backdrop-contrast: ;
	--tw-backdrop-grayscale: ;
	--tw-backdrop-hue-rotate: ;
	--tw-backdrop-invert: ;
	--tw-backdrop-opacity: ;
	--tw-backdrop-saturate: ;
	--tw-backdrop-sepia: ;
	--tw-contain-size: ;
	--tw-contain-layout: ;
	--tw-contain-paint: ;
	--tw-contain-style:
}

*,
:before,
:after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
	border-color: #e5e7eb
}

:before,
:after {
	--tw-content: ""
}

html,
:host {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
	font-feature-settings: normal;
	font-variation-settings: normal;
	-webkit-tap-highlight-color: transparent
}

body {
	margin: 0;
	line-height: inherit
}

hr {
	height: 0;
	color: inherit;
	border-top-width: 1px
}

abbr:where([title]) {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted
}

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

a {
	color: inherit;
	text-decoration: inherit
}

b,
strong {
	font-weight: bolder
}

code,
kbd,
samp,
pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
	font-feature-settings: normal;
	font-variation-settings: normal;
	font-size: 1em
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sub {
	bottom: -.25em
}

sup {
	top: -.5em
}

table {
	text-indent: 0;
	border-color: inherit;
	border-collapse: collapse
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-feature-settings: inherit;
	font-variation-settings: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	color: inherit;
	margin: 0;
	padding: 0
}

button,
select {
	text-transform: none
}

button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
	-webkit-appearance: button;
	background-color: transparent;
	background-image: none
}

:-moz-focusring {
	outline: auto
}

:-moz-ui-invalid {
	box-shadow: none
}

progress {
	vertical-align: baseline
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px
}

::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit
}

summary {
	display: list-item
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
	margin: 0
}

fieldset {
	margin: 0;
	padding: 0
}

legend {
	padding: 0
}

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

dialog {
	padding: 0
}

textarea {
	resize: vertical
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	opacity: 1;
	color: #9ca3af
}

input::placeholder,
textarea::placeholder {
	opacity: 1;
	color: #9ca3af
}

button,
[role=button] {
	cursor: pointer
}

:disabled {
	cursor: default
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block;
	vertical-align: middle
}

img,
video {
	max-width: 100%;
	height: auto
}

[hidden]:where(:not([hidden=until-found])) {
	display: none
}

.mr-8 {
	margin-right: 2rem
}

.contents {
	display: contents
}

.resize {
	resize: both
}

.filter {
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

body {
	background: #00336d
}

@media screen and not (min-width:768px) {
	a {
		color: #fff !important
	}
}

h1,
h2,
h3 {
	font-family: Inter Display, Inter, Meiryo, メイリオ, sans-serif
}

#tokyo1,
#tokyo2 {
	scroll-margin-top: 80px
}

#page-top .row,
#page-top .col-12 {
	overflow: visible !important;
	--bs-gutter-x: 0 !important
}

#page-top.phase1-top .mv-content__title:after {
	display: none
}

#page-top.phase1-top .m-header-nav__dropdown li a {
	color: #aaa;
	pointer-events: none
}

#page-top.phase1-top .dropdown-item-day {
	color: #aaa;
	background: #444
}

#page-top.phase1-top .m-header-nav__item--2 .m-header-nav__dropdown li a {
	color: #032a59;
	pointer-events: unset
}

#page-top.phase1-top .m-header-nav__dropdown li:hover {
	opacity: 1
}

#page-top.phase1-top .m-header-nav__item .m-header-nav__link {
	pointer-events: unset !important
}

#page-top.phase1-top.is-drawer-active .drawer-nav .m-header-nav__dropdown-item a {
	color: #666 !important
}

#page-top.phase1-top.is-drawer-active .m-header-nav__dropdown--2 .m-header-nav__dropdown-item a {
	color: #032a59 !important
}

#page-top.phase1-top .mv .mv__inner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: inline-flex;
	flex-direction: column;
	gap: 108px;
	text-align: center;
	transform: translateY(204px)
}

@media screen and (min-width:768px) {
	#page-top.phase1-top .mv .mv__inner {
		gap: 80px;
		transform: translateY(281px)
	}
}

@media(min-width:768px)and (max-width:1200px) {
	#page-top.phase1-top .mv .mv__inner {
		transform: translateY(130px)
	}
}

#page-top .gradient-text {
	display: inline-block;
	font-size: clamp(41px, 5vw, 55px);
	font-weight: 500;
	line-height: 1.2;
	color: transparent;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	background-image: linear-gradient(90deg, #e6be00, #eaa400 7%, #e1599b 39%, #9f3eec 67%, #3381dd 84%, #00b3e5);
	-webkit-background-clip: text;
	background-clip: text
}

#page-top .about__inner .gradient-text {
	text-transform: none
}

#page-top .sponsors-place {
	margin-top: 10px;
	margin-bottom: 30px;
	font-size: clamp(30px, 4vw, 38px);
	font-style: normal;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	letter-spacing: 2.1px
}

@media screen and (min-width:768px) {
	#page-top .sponsors-place {
		margin-bottom: 60px
	}
}

#page-top .sponsors-rank {
	font-size: clamp(22px, 3vw, 26px);
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	vertical-align: middle;
	text-align: center;
	letter-spacing: 2.1px
}

img,
video {
	display: block
}

.marquee img {
	width: 100%
}

.marquee__inner img {
	display: block;
	height: auto
}

.marquee__inner picture {
	flex-shrink: 0
}

.highlights__inner img {
	width: 100%;
	height: 100%;
	padding-top: 40px;
	margin: 0 auto
}

@media screen and (min-width:768px) {
	.highlights__inner img {
		max-width: 850px;
		padding-top: 70px
	}
}

.overview-title img {
	width: 218px
}

.highlights__inner .marquee__inner img {
	max-width: 100%;
	margin-right: 40px
}

@media screen and (min-width:768px) {
	.overview-content .overview-content-left img {
		display: block;
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover
	}
}

@media screen and (min-width:1100px) {
	.overview-content .overview-content-left img {
		display: none
	}
}

.mv-logo {
	padding: 0
}

@media screen and (min-width:768px) {
	.mv-logo {
		padding: 0 30px
	}
}

.box-event-container {
	overflow: hidden
}

.mv {
	position: relative;
	width: 100%;
	height: 660px;
	overflow: hidden;
	color: #fff;
	background: url(../images/mv-bg.png) center center no-repeat;
	background-size: cover
}

.mv:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	content: "";
	background: url(../images/mv-pattern.png) center center no-repeat;
	background-size: cover
}

.mv .mv__inner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: inline-flex;
	flex-direction: column;
	gap: 18px;
	text-align: center;
	transform: translateY(100px)
}

.mv .mv__inner .mv-logo {
	padding: 0 30px
}

@media screen and (min-width:768px) {
	.mv .mv__inner .mv-logo {
		padding: 0
	}
}

.mv .mv__inner .mv-logo img {
	margin: 0 auto
}

@media screen and (min-width:600px)and (not (min-width:880px)) {
	.mv .mv__inner {
		transform: translateY(60px)
	}
}

@media screen and (min-width:768px) {
	.mv .mv__inner {
		gap: 18px;
		transform: translateY(281px)
	}
}

.mv .mv-movie {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0
}

.mv .mv-movie video {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

@media screen and (min-width:768px) {
	.mv {
		height: auto;
		min-height: 100vh
	}
}

.mv-content {
	display: block;
	padding: 0 15px
}

@media screen and (min-width:1100px) {
	.mv-content {
		display: flex;
		gap: 20px;
		align-items: center;
		justify-content: center;
		width: 100%;
		padding: 0;
		margin: 80px auto 0
	}
}

.mv-btn a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 305px;
	height: 56px;
	margin: 0 auto;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	letter-spacing: 2px;
	background-color: #189160e5;
	border: 2px solid #1EA06C;
	border-radius: 100px
}

@media screen and (min-width:768px) {
	.mv-btn a {
		max-width: 645px;
		height: 62px;
		font-size: 24px
	}
}

.mv-btn a:before {
	position: absolute;
	left: 6px;
	z-index: 3;
	width: 36px;
	height: 36px;
	content: "";
	background: url(../images/btn-tokyo.svg) center center no-repeat;
	background-size: cover;
	border-radius: 50%
}

@media screen and (min-width:768px) {
	.mv-btn a:before {
		width: 50px;
		height: 50px
	}
}

.mv-btn a:hover {
	background-color: #189160
}

.mv-btn .c-btn-2 {
	margin-top: 10px;
	background-color: #c6670fe5;
	border: 2px solid #C56A15
}

.mv-btn .c-btn-2:before {
	background: url(../images/btn-osaka.svg) no-repeat;
	background-size: contain
}

.mv-btn .c-btn-2:hover {
	background-color: #c6670f
}

.mv-content__title {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(60px, 10vw, 80px);
	height: clamp(60px, 10vw, 80px);
	font-size: clamp(12px, 2vw, 15px);
	font-weight: 600;
	line-height: 1;
	color: var(--color-white);
	border-radius: 50%
}

.mv-content__title:after {
	position: absolute;
	bottom: 10px;
	left: 25px;
	width: 12px;
	height: 6px;
	content: "";
	background: url(../images/arrow_down_sp.svg) center center no-repeat
}

@media screen and (min-width:768px) {
	.mv-content__title:after {
		left: 30px;
		width: 19px;
		height: 11px;
		background: url(../images/arrow_down.svg) center center no-repeat
	}
}

.mv-content__item {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 6px;
	margin-bottom: 15px;
	background-color: #028ef24d;
	border: 2px solid #028EF2;
	border-radius: 100px;
	transition: background-color .3s ease
}

.mv-content__item:first-child {
	padding: 14px 6px
}

@media screen and (min-width:768px) {
	.mv-content__item:first-child {
		padding: 6px
	}
}

.mv-content__item:hover {
	background-color: #035997
}

@media screen and (min-width:1100px) {
	.mv-content__item {
		width: 50%;
		max-width: 512px
	}
}

.mv-content__item .mv-content__title {
	background: linear-gradient(145deg, #012b5f, #096fc1)
}

.mv-content__item.mv-content__item-2 {
	background-color: #ec4fb84d;
	border: 2px solid #EC4FB8
}

.mv-content__item.mv-content__item-2 .mv-content__title {
	background: linear-gradient(145deg, #330d48, #e92996)
}

.mv-content__item.mv-content__item-2:hover {
	background-color: #a43e83
}

.mv-content__wrap {
	display: flex;
	align-items: flex-start;
	line-height: 1
}

@media screen and (min-width:768px) {
	.mv-content__wrap {
		align-items: center
	}
}

.mv-content__wrap:not(:first-child) {
	margin-top: 10px
}

.mv-content__label {
	position: relative;
	top: 3px;
	width: 48px;
	padding: 2px 5px;
	margin-right: 5px;
	font-size: clamp(14px, 2vw, 17px);
	font-weight: 600;
	color: var(--color-white);
	background: #0d1462;
	border-radius: 2px
}

@media screen and (min-width:768px) {
	.mv-content__label {
		position: unset;
		width: 65px;
		padding: 5px 11px;
		margin-right: 8px
	}
}

.mv-content__text {
	font-size: clamp(13px, 2vw, 16px);
	font-weight: 600;
	text-align: left;
	letter-spacing: 0
}

.mv-content__text .large {
	font-size: clamp(21px, 3vw, 27px)
}

.mv-content__text .date {
	position: relative;
	top: -2px;
	margin: 0 6px;
	font-size: clamp(14px, 2vw, 16px)
}

.mv-content__text .text-sp {
	display: block;
	margin-top: 10px
}

@media screen and (min-width:768px) {
	.mv-content__text .text-sp {
		display: unset;
		margin-top: 0
	}
}

.mv-content__data {
	flex: 1
}

.row,
.col-12 {
	overflow: visible !important;
	--bs-gutter-x: 0 !important
}

.about-wrap {
	position: relative;
	min-height: 100vh;
	background: url(../images/aboutwrap-bg.png) center/cover no-repeat
}

.about-bg {
	position: sticky;
	top: 0;
	min-height: 100vh;
	overflow: hidden
}

.about-bg__image {
	position: absolute;
	top: 200px;
	right: 30px;
	bottom: 0;
	left: 30px;
	z-index: -1;
	background: url(../images/about-bg.png) center/cover no-repeat;
	border-radius: 100px 100px 0 0;
	will-change: inset, border-radius
}

@media screen and (min-width:768px) {
	.about-bg__image {
		top: 200px;
		right: 160px;
		bottom: 0;
		left: 160px
	}
}

.about__inner {
	padding-block: 120px 180px;
	color: #fff;
	text-align: center
}

@media screen and (min-width:768px) {
	.about__inner {
		padding-block: 200px
	}
}

#page-top .about-title {
	font-family: Inter Display, Inter, Meiryo, メイリオ, sans-serif;
	font-size: clamp(44px, 8.062vw, 62px);
	font-weight: 500
}

.about-lead {
	padding: 20px 0 40px;
	font-family: Inter Display, Inter, Meiryo, メイリオ, sans-serif;
	font-size: clamp(21px, 4vw, 33px);
	font-weight: 600;
	line-height: 1.6;
	text-align: center;
	letter-spacing: 2px
}

@media screen and (min-width:768px) {
	.about-lead {
		line-height: 1.2
	}
}

.about-description {
	font-size: clamp(13px, 2vw, 16px);
	font-style: normal;
	font-weight: 700;
	line-height: 2;
	text-align: center;
	letter-spacing: 1px
}

.about-description>p+p {
	margin-top: 2.4em
}

@media screen and (min-width:768px) {
	.about-description {
		line-height: 2.35
	}
}

.highlights {
	position: relative;
	z-index: 3;
	min-height: 504px;
	overflow: hidden;
	color: #fff;
	text-align: center
}

.highlights:before {
	position: absolute;
	top: -110px;
	left: 0;
	z-index: 0;
	width: 100%;
	height: calc(100% + 110px);
	content: "";
	background: url(../images/highlights-bg-sp.png) top no-repeat;
	background-size: cover
}

@media screen and (min-width:768px) {
	.highlights:before {
		top: -230px;
		height: calc(100% + 430px);
		background: url(../images/highlights-bg.png) top no-repeat;
		background-size: cover
	}

	.highlights {
		min-height: 618px;
		margin-top: -72px
	}
}

.highlights .highlights__inner {
	position: relative;
	z-index: 2;
	padding: 0
}

.marquee {
	position: absolute;
	bottom: -70px;
	left: 0;
	z-index: -1;
	width: 100%;
	overflow: hidden
}

@media screen and (min-width:768px) {
	.marquee {
		bottom: 70px
	}
}

.marquee__inner {
	display: flex;
	width: -moz-max-content;
	width: max-content;
	animation: marquee 150s linear infinite;
	will-change: transform
}

@keyframes marquee {
	0% {
		transform: translate(0)
	}

	to {
		transform: translate(-100%)
	}
}

.overview {
	position: relative;
	z-index: 4;
	padding: 0;
	margin-top: 0;
	color: #fff;
	text-align: center;
	background: url(../images/overview-bg-sp.png) center bottom/cover no-repeat
}

@media screen and (min-width:1100px) {
	.overview {
		background: url(../images/overview-bg.png) center bottom/cover no-repeat
	}
}

@media screen and (min-width:375px)and (not (min-width:768px)) {
	.overview {
		margin-top: 0
	}
}

.overview__inner {
	max-width: 100%;
	margin: 0 auto
}

.overview-content {
	display: block;
	width: 100%;
	height: auto;
	padding-top: 100px
}

@media screen and (min-width:1100px) {
	.overview-content {
		display: grid;
		grid-template-columns: 465px 1fr;
		gap: 65px;
		padding: 200px 0
	}
}

@media screen and (min-width:1099px)and (not (min-width:768px)) {
	.overview-content {
		grid-template-columns: 250px 1fr
	}
}

.overview-content .overview-content-right {
	order: 2;
	max-width: 100%;
	margin: 0
}

@media screen and (min-width:1100px) {
	.overview-content .overview-content-right {
		max-width: 700px;
		margin: 0 auto
	}
}

.overview-title span {
	background-color: #fff;
	background-image: linear-gradient(90deg, #fff, #85fdfe, #f900d1)
}

.overview-list {
	display: block;
	width: calc(100% - 50px);
	margin: 40px auto 0;
	font-size: clamp(16px, 2vw, 18px);
	font-weight: 700;
	line-height: 2.51;
	color: #fff;
	text-align: left;
	letter-spacing: 1.44px;
	border-top: 1px solid #fff
}

@media screen and (min-width:768px) {
	.overview-list {
		display: flex;
		flex-flow: row wrap;
		justify-content: flex-start;
		width: 100%;
		padding: 0;
		margin-top: 70px;
		line-height: 1.61
	}
}

.overview-list .fw-700 {
	font-weight: 700
}

.overview-list .fw-2 {
	display: block;
	margin-top: 18px
}

.overview-list dt,
.overview-list dd {
	padding: 0;
	border-bottom: none
}

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

	.overview-list dt,
	.overview-list dd {
		padding: 26px 10px;
		border-bottom: 1px solid #fff
	}
}

.overview-list dt {
	width: 100%;
	padding-top: 26px
}

@media screen and (min-width:768px) {
	.overview-list dt {
		width: 22.35%
	}
}

.overview-list dd {
	width: 100%;
	padding-bottom: 26px;
	font-weight: 400;
	border-bottom: 1px solid #fff
}

@media screen and (min-width:768px) {
	.overview-list dd {
		width: 77.65%;
		padding-bottom: 26px;
		border-bottom: 1px solid
	}
}

.overview-list dd ul {
	padding-left: 0;
	list-style: none
}

.overview-list dd li {
	position: relative;
	padding-left: 25px;
	font-weight: 400;
	line-height: 1.4;
	list-style: none
}

.overview-list dd li:before {
	position: absolute;
	top: .65em;
	left: 0;
	width: 5px;
	height: 5px;
	margin-left: 10px;
	content: "";
	background: #fff;
	border-radius: 50%
}

.sponsors {
	position: relative;
	z-index: 1;
	padding: 100px 0;
	color: #fff;
	text-align: center;
	background: url(../images/sponsors-bg-sp.png) no-repeat;
	background-size: cover
}

@media screen and (min-width:768px) {
	.sponsors {
		padding: 200px 0;
		background: url(../images/sponsors-bg.png) no-repeat;
		background-size: cover
	}
}

.sponsors .sponsors-content {
	max-width: calc(100% - 50px);
	padding: 50px 0;
	margin: 70px auto 0;
	background: #0b599966;
	border-radius: 12px
}

@media screen and (min-width:768px) {
	.sponsors .sponsors-content {
		max-width: 1096px;
		padding: 70px 53px
	}
}

.sponsors .sponsors-content-2 {
	background: #87308266
}

@media screen and (min-width:768px) {
	.sponsors .is-2com {
		padding: 40px 136px
	}
}

.sponsors .is-2com li {
	max-width: 100%
}

@media screen and (min-width:768px) {
	.sponsors .is-2com li {
		max-width: 344px
	}

	.sponsors .is-3com li {
		max-width: 290px
	}

	.sponsors .is-4com li {
		max-width: 209px
	}

	.sponsors .is-5com li {
		max-width: 161px
	}
}

.sponsors .sponsors-summary {
	padding: 0 20px
}

@media screen and (min-width:768px) {
	.sponsors .sponsors-summary {
		padding: 0
	}
}

.sponsors .sponsors-summary .sponsors-list {
	display: block;
	gap: 10px;
	padding: 30px 20px;
	margin-top: 25px;
	margin-bottom: 50px;
	list-style: none;
	background: #fff;
	border-radius: 12px
}

@media screen and (min-width:768px) {
	.sponsors .sponsors-summary .sponsors-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		padding: 40px 30px;
		margin-top: 30px;
		margin-bottom: 70px
	}
}

.sponsors .sponsors-summary .sponsors-list li {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	margin-bottom: 10px
}

@media screen and (min-width:768px) {
	.sponsors .sponsors-summary .sponsors-list li {
		margin-bottom: 0
	}
}

.sponsors .sponsors-summary:last-child .sponsors-list {
	margin-bottom: 0
}

.sponsors p {
	padding-top: 50px;
	font-size: clamp(14px, 2vw, 14px);
	line-height: 14px
}

.cta {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 7;
	width: 100%;
	padding: 2.051vw;
	background: #0009
}

@media screen and (min-width:768px) {
	.cta {
		padding: 25px
	}
}

.cta-buttons {
	display: flex;
	gap: 0 1.794vw;
	align-items: center;
	justify-content: center
}

@media screen and (min-width:768px) {
	.cta-buttons {
		gap: 0 20px
	}
}

.cta a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(50% - .897vw);
	height: 12.307vw;
	font-size: 4.102vw;
	font-weight: 600;
	color: #fff;
	text-align: center;
	letter-spacing: 1px;
	background: #2486fd;
	border-radius: 6.153vw;
	opacity: 1;
	transition: opacity .6s
}

@media screen and (min-width:768px) {
	.cta a {
		width: 300px;
		height: 48px;
		font-size: 16px;
		border-radius: 30px
	}

	.cta a:after {
		display: none
	}
}

@media(hover:hover) {
	.cta a:hover {
		opacity: .6
	}

	.mv-btn a:hover:after {
		opacity: 1
	}
}

@media(max-width:768px) {
	.u-visible-pc {
		display: none
	}
}

@media(min-width:769px) {
	.u-visible-sp {
		display: none
	}
}

.tokyo {
	position: relative;
	z-index: 1;
	padding: 100px 0 80px;
	margin-top: 0;
	color: #fff;
	text-align: center;
	background: url(../images/tokyo-sp.png) no-repeat;
	background-size: cover
}

@media screen and (min-width:768px) {
	.tokyo {
		padding: 200px 0;
		margin-top: 200px;
		background: url(../images/tokyo-pc.png) no-repeat;
		background-size: cover
	}
}

.c-btn {
	position: relative;
	display: block;
	width: calc(100% - 50px);
	padding: 16px 0;
	margin: 5px auto 0;
	font-size: 16px;
	color: #fff;
	text-align: center;
	background-color: #22b47980;
	border: 1px solid #1EA06C;
	border-radius: 30px
}

@media screen and (min-width:768px) {
	.c-btn {
		width: 280px;
		margin-top: 10px
	}
}

.c-btn:after {
	position: absolute;
	top: 50%;
	right: 25px;
	z-index: 1;
	width: 8px;
	height: 13px;
	content: "";
	background: url(../images/icon-right.svg) center center no-repeat;
	background-size: cover;
	transform: translateY(-50%)
}

.pickup-bg {
	max-width: 1096px;
	padding: 0 15px;
	margin: 0 auto
}

@media screen and (min-width:768px) {
	.pickup-bg {
		padding: 0
	}
}

.pickup-bg h3 {
	padding: 40px 0 25px 10px;
	font-size: 25px;
	line-height: 1;
	text-align: left;
	letter-spacing: 0
}

@media screen and (min-width:768px) {
	.pickup-bg h3 {
		padding: 70px 0 30px;
		font-size: 42px
	}
}

.pickup-bg h4 {
	margin: 40px 0 10px;
	font-size: 27px;
	font-weight: 700;
	line-height: 1;
	text-align: left;
	letter-spacing: 0
}

.pickup-bg h4 span {
	font-size: 51px
}

@media screen and (min-width:768px) {
	.pickup-bg h4 span {
		margin: 70px 0 30px;
		font-family: Inter Display, Inter, Meiryo, メイリオ, sans-serif;
		font-size: 92px;
		font-weight: 500
	}
}

.pickup-bg h4 .mr-8 {
	margin: 0 8px;
	font-size: 27px
}

@media screen and not (min-width:768px) {
	.pickup-bg .title-h4 {
		display: block;
		margin: 60px 0 30px
	}
}

.pickup-bg p {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.6;
	text-align: left;
	letter-spacing: .02em
}

@media screen and (min-width:768px) {
	.pickup-bg p {
		font-size: 14px
	}
}

.pickup-bg .pickup__inner {
	padding: 20px 0 40px;
	margin: 20px 0;
	border-radius: 12px
}

@media screen and (min-width:768px) {
	.pickup-bg .pickup__inner {
		padding: 30px 18px 40px;
		margin-bottom: 0
	}
}

.pickup-bg .dropdown-item-day {
	width: 90px;
	height: 30px;
	padding: 5px 19px;
	margin-right: 15px;
	font-family: var(--font-family);
	font-size: 20px;
	font-weight: 600;
	background-color: #0d1462
}

.pickup__inner-01 {
	background-color: #22b47966
}

.pickup__inner-01 .c-btn:hover {
	background-color: #22b479
}

.pickup__inner-02 {
	background-color: #f0811a66
}

.pickup__inner-02 .c-btn {
	background-color: #f0811a80;
	border-color: #c56a15
}

.pickup__inner-02 .c-btn:hover {
	background-color: #f0811a
}

.pickup__inner-03 {
	background-color: #1e57ac66
}

.pickup__inner-03 .c-btn {
	background-color: #2583f480;
	border-color: #2486fd
}

.pickup__inner-03 .c-btn:hover {
	background-color: #2583f4
}

.pickup__inner-04 {
	background-color: #1e57ac66
}

.pickup__inner-04 .c-btn {
	background-color: #2583f480;
	border-color: #2486fd
}

.pickup__inner-04 .c-btn:hover {
	background-color: #2583f4
}

.pickup__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 0 54px 12px
}

@media screen and not (min-width:768px) {
	.pickup__content {
		display: block;
		padding: 60px 20px 80px
	}
}

.pickup__content h3 {
	padding: 0 0 0 10px;
	font-size: 45px
}

@media screen and not (min-width:768px) {
	.pickup__content h3 {
		padding: 0 5px 20px;
		font-size: 39px
	}
}

.pickup__content .pickup-content-list {
	display: flex;
	max-width: 800px
}

@media screen and not (min-width:768px) {
	.pickup__content .pickup-content-list {
		flex-wrap: wrap
	}

	.pickup__content .pickup-content-list li {
		width: 50%
	}
}

.osaka {
	position: relative;
	z-index: 1;
	padding: 100px 0;
	color: #fff;
	text-align: center;
	background: url(../images/osaka-sp.png) no-repeat;
	background-size: cover
}

@media screen and (min-width:768px) {
	.osaka {
		padding: 200px 0;
		background: url(../images/osaka-pc.png) no-repeat;
		background-size: cover
	}
}

.osaka .pickup__inner {
	background-color: #a43e8366
}

.osaka .pickup__content {
	padding: 25px 0 30px 12px
}

@media screen and not (min-width:768px) {
	.osaka .pickup__content {
		padding: 40px 30px 35px
	}
}

.osaka .pickup-content-list {
	flex-wrap: wrap
}

.osaka .pickup-content-list li {
	width: 33.3333%
}

@media screen and not (min-width:768px) {
	.osaka .pickup-content-list li {
		width: 50%
	}
}

.osaka .c-btn {
	background-color: #e238aa80;
	border-color: #ec4fb8
}

.osaka .c-btn:hover {
	background-color: #e238aa
}

.osaka .c-btn-2 {
	margin-bottom: 80px
}

@media screen and not (min-width:768px) {
	.osaka h4 {
		margin: 40px 0 10px
	}
}

.banner {
	position: relative;
	z-index: 1;
	padding: 100px 0;
	color: #fff;
	text-align: center;
	background-size: cover
}

@media screen and (min-width:768px) {
	.banner {
		padding: 200px 0
	}
}

.banner__inner {
	position: absolute;
	top: 114px;
	left: 50%;
	width: 100%;
	padding: 0 25px;
	transform: translate(-50%)
}

@media screen and (min-width:768px) {
	.banner__inner {
		top: 140px;
		padding: 0
	}
}

@media screen and not (min-width:1200px) {
	.banner__inner {
		top: 90px
	}
}

.banner__inner h1 img {
	width: auto;
	margin: 0 auto 30px
}

@media screen and (min-width:768px) {
	.banner__inner h1 img {
		margin: 0 auto 40px
	}
}

.banner-content {
	position: absolute;
	bottom: -68px;
	left: 50%;
	display: flex;
	gap: 41px;
	align-items: center;
	justify-content: space-between;
	padding: 25px 50px;
	margin-top: 70px;
	background: #03599799;
	border: 1px solid #028EF2;
	border-radius: 100px;
	transform: translate(-50%)
}

@media screen and not (min-width:1024px) {
	.banner-content {
		top: calc(100% - 68px);
		bottom: auto;
		left: 0;
		display: block;
		width: calc(100% - 30px);
		padding: 15px 20px;
		margin: 0 15px;
		border-radius: 20px;
		transform: none
	}
}

.banner-content .banner-title__wrap {
	position: relative
}

@media screen and not (min-width:1024px) {
	.banner-content .banner-title__wrap span:before {
		position: absolute;
		top: 50%;
		right: 0;
		display: inline-block;
		width: 15px;
		height: 1px;
		content: " ";
		background: #fff
	}

	.banner-content .banner-title__wrap span:after {
		position: absolute;
		top: calc(50% - 7px);
		right: 7.5px;
		display: inline-block;
		width: 1px;
		height: 15px;
		content: " ";
		background: #fff
	}

	.banner-content .banner-title__wrap span.open:after {
		display: none
	}
}

.banner-content .banner-content__wrap {
	display: flex;
	gap: 11px;
	margin-top: 10px
}

@media screen and not (min-width:1024px) {
	.banner-content .banner-content__wrap {
		position: relative;
		display: block;
		max-height: 0;
		margin-top: 0;
		overflow: hidden;
		font-weight: 400;
		line-height: 2;
		transition: max-height .4s ease-in-out, padding-bottom .3s ease-in-out
	}
}

.banner-content .c-btn {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	color: #031b59;
	text-align: center;
	letter-spacing: 0;
	background-color: #fff;
	border: none
}

.banner-content .c-btn.active {
	color: #fff;
	background: linear-gradient(180deg, #005bc9, #2486ff)
}

@media screen and not (min-width:1024px) {
	.banner-content .c-btn.active {
		width: 100% !important;
		margin: 0;
		font-size: 15px;
		font-weight: 700;
		color: #62a8ff !important;
		text-align: left;
		background: transparent;
		border-top: 1px solid #028EF2;
		border-radius: 0
	}
}

.banner-content .c-btn:after {
	display: none
}

@media screen and not (min-width:1024px) {
	.banner-content .c-btn {
		width: 100% !important;
		margin: 0;
		font-size: 15px;
		font-weight: 700;
		color: #fff;
		text-align: left;
		background: transparent;
		border-top: 1px solid #028EF2;
		border-radius: 0
	}
}

.banner-content .banner-content__item {
	position: relative
}

@media screen and not (min-width:1024px) {
	.banner-content .banner-content__item .banner-title__wrap {
		padding-bottom: 12px;
		transition: all .3s ease
	}

	.banner-content .banner-content__item:nth-child(2) {
		padding-top: 12px;
		padding-bottom: 0;
		border-top: 1px solid #028EF2
	}

	.banner-content .banner-content__item:nth-child(2) .banner-title__wrap:not(.active) {
		padding-bottom: 0
	}
}

.banner-content .banner-content__item:nth-child(2):after {
	position: absolute;
	top: 0;
	left: -21px;
	width: 1px;
	height: 100%;
	content: "";
	border-left: 1px solid #028EF2
}

@media screen and not (min-width:1024px) {
	.banner-content .banner-content__item:nth-child(2):after {
		display: none
	}
}

.banner-content .banner-content__item:nth-child(2) .c-btn {
	width: 240px
}

.banner-content .banner-content__item .c-btn:hover {
	opacity: .6
}

.timetable .banner {
	padding: 0
}

.timetable .content-area {
	background: url(../images/content-sp.png) no-repeat;
	background-color: #002652;
	background-size: contain
}

@media screen and (min-width:768px) {
	.timetable .content-area {
		background: url(../images/content-bg.png) no-repeat;
		background-color: #002652;
		background-size: contain
	}
}

.timetable .banner-bg {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

@media screen and not (min-width:1024px) {
	.timetable .banner-bg {
		max-height: 392px
	}
}

.timetable img {
	margin: 0 auto
}

@media screen and not (min-width:1100px) {
	.timetable .overview-lists {
		width: 100%;
		min-height: 1329px;
		padding: 0 25px
	}
}

@media screen and not (min-width:1024px) {
	.timetable .banner-title__wrap img {
		margin: inherit
	}
}

.timetable2 .content-area {
	background: url(../images/content-osaka-sp.png) no-repeat;
	background-color: #5b1b84;
	background-size: contain
}

@media screen and (min-width:768px) {
	.timetable2 .content-area {
		background: url(../images/content-osaka-bg.png) no-repeat;
		background-color: #5b1b84;
		background-size: contain
	}
}

.timetable2 .banner-content {
	background-color: #a43e8399;
	border-color: #ec4fb8
}

@media screen and not (min-width:1024px) {
	.timetable2 .banner-content {
		top: calc(100% - 32px);
		padding: 25px 20px
	}

	.timetable2 .banner-content .banner-title__wrap:not(.active) {
		padding-bottom: 0
	}

	.timetable2 .banner-content .c-btn {
		border-top: 1px solid #EC4FB8
	}

	.timetable2 .banner-content .c-btn.active {
		color: #ec4fb8 !important
	}
}

.content-box {
	display: none;
	min-height: 100vh;
	opacity: 0;
	transition: .3s ease
}

.content-box.active {
	display: block;
	opacity: 1
}

.c-btn.active {
	color: #fff;
	background: #000
}

.content-area {
	min-height: 3000px;
	color: #fff;
	text-align: center;
	background-size: cover
}

@media screen and (min-width:768px) {
	.content-area {
		background-size: cover
	}
}

.content-area h2 {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	padding: 148px 0 75px;
	margin: 0 auto;
	font-size: 46px;
	font-weight: 700;
	line-height: 1.2;
	color: transparent;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2.22px;
	background: linear-gradient(89.96deg, #e6be00 -5.51%, #eaa400 2.25%, #e1599b 37.74%, #9f3eec 68.79%, #3381dd 87.65%, #00b3e5 105.39%);
	-webkit-background-clip: text;
	background-clip: text
}

.content-area h2 span {
	margin-right: 10px;
	font-size: 56px
}

@media screen and not (min-width:768px) {
	.content-area h2 {
		padding: 123px 0 50px;
		font-size: 29px
	}

	.content-area h2 span {
		margin-right: 5px;
		font-size: 39px
	}
}

.overview-lists {
	display: flex;
	flex-flow: column;
	width: 80%;
	margin: 0 auto
}

@media screen and not (min-width:768px) {
	.overview-lists {
		width: 100%;
		padding: 0 25px
	}
}

.overview-lists-date {
	position: relative;
	width: 100%;
	padding-bottom: 4px;
	margin-bottom: 26px;
	font-size: 42px;
	font-weight: 700;
	line-height: 110%;
	text-align: left;
	letter-spacing: .28px
}

@media screen and not (min-width:768px) {
	.overview-lists-date {
		font-size: 20px
	}
}

.overview-lists-date:before {
	position: absolute;
	bottom: -9px;
	left: 0;
	display: block;
	width: 100%;
	height: 3px;
	content: "";
	background: #fff
}

@media screen and not (min-width:768px) {
	.overview-lists-date:before {
		height: 1px
	}
}

.overview-lists-item {
	width: 100%;
	margin-bottom: 100px
}

@media screen and not (min-width:768px) {
	.overview-lists-item {
		margin-bottom: 40px
	}

	.overview-lists-item:last-child {
		margin-bottom: 100px
	}
}

.overview-lists-item.is-3cols {
	display: flex;
	flex-flow: row wrap;
	gap: 20px;
	justify-content: space-between
}

@media screen and not (min-width:768px) {
	.overview-lists-item.is-3cols {
		display: block
	}
}

.overview-lists-content {
	position: relative;
	display: flex;
	flex-flow: column;
	min-height: 598px;
	padding: 30px 45px 60px;
	background: #fff;
	border-radius: 12px
}

.overview-lists-content:after {
	position: absolute;
	right: 0;
	bottom: 0;
	display: block;
	width: 45px;
	height: 45px;
	content: "";
	background: url(../images/plusbtn.svg) no-repeat;
	background-size: cover
}

@media screen and not (min-width:768px) {
	.overview-lists-content:after {
		width: 40px;
		height: 40px
	}

	.overview-lists-content {
		min-height: 420px
	}
}

.is-3cols .overview-lists-content {
	width: calc((100% - 40px) / 3);
	padding: 30px 30px 60px
}

@media screen and not (min-width:768px) {
	.is-3cols .overview-lists-content {
		width: 100%;
		margin-bottom: 10px
	}
}