.scrollShowTarget {
	opacity: 0;
	transform: translateY(50px);
	transition: transform 0.5s ease-out, opacity 0.5s ease-in;
}

.scrollShowTarget.scrollShow {
	opacity: 1;
	transform: translateY(0);
}

* {
	box-sizing: border-box;
}

body {
	background: #fff;
	color: #161473;
	font-size: 2.5rem;
	line-height: 1.7em;
	letter-spacing: 0.03em;
	font-family: "ten-mincho", serif;
	font-weight: 400;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	font-feature-settings: "palt";
}

a {
	transition: all 0.4s;
	text-decoration: none;
	color: #bdb1a5;
}

a:hover {
	opacity: 0.7;
}

h1,
h2,
h3,
h4,
p,
dl,
dt,
dd,
strong,
em {
	margin: 0;
	padding: 0;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	font-style: inherit;
}

ul,
ol,
dl,
dt,
dd {
	list-style: none;
	margin: 0;
	padding: 0;
}

li {
	list-style: inherit;
	margin: 0;
	padding: 0;
}

img {
	outline: none;
	max-width: 100%;
	font-size: 1px !important;
	line-height: 0 !important;
	vertical-align: middle;
}

strong,
em {
	font-weight: inherit;
	font-style: inherit;
}

.c-particle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: -3;
}

.c-particle__item {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 400%;
	transition: transform 5s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-particle .particle01 {
	background: url(../img/bg_particle01.png) center top;
}

.c-particle .particle02 {
	background: url(../img/bg_particle02.png) center top;
}

.c-side {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 40px;
	width: 40px;
	height: 100%;
	background: url(../img/img_side.png) center top;
}

.c-section {
	position: relative;
	border-top: #bdb1a5 solid 1px;
	border-bottom: #bdb1a5 solid 1px;
}

.c-section:not(:last-child) {
	margin-bottom: 160px;
}

.c-section::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	z-index: -2;
}

.c-title {
	position: relative;
	text-align: center;
	padding: 20px 0;
	margin-bottom: 57px;
	z-index: 1;
}

.c-caption {
	width: -moz-fit-content;
	width: fit-content;
	min-height: 80px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 10px 36px;
	margin: 0 auto 60px;
	background-color: #bdcee2;
	color: #fff;
	font-size: 3rem;
	line-height: 1;
	letter-spacing: 0.07em;
}

.c-caption::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 100%;
	background-color: #a3bdd8;
}

.c-caption._type02 {
	background-color: #fff;
	color: #161473;
}

.c-caption._type02::before {
	background-color: #c4d5e5;
}

.c-annotation {
	text-align: left;
}

.c-annotation__item {
	position: relative;
	z-index: 1;
	font-size: 1.6rem;
	padding-left: 1em;
	line-height: 1.6em;
	letter-spacing: 0.08em;
}

.c-annotation__item:not(:last-child) {
	margin-bottom: 4px;
}

.c-annotation__item::before {
	content: "※";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.c-accordion__item {
	display: block;
	text-align: left;
	box-sizing: border-box;
	border: #bdb1a5 solid 1px;
}

.c-accordion__item:not(:last-child) {
	margin-bottom: 40px;
}

.c-accordion__title {
	background-color: #fff;
	border: none;
	cursor: pointer;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	width: 100%;
	display: flex;
	box-sizing: border-box;
	padding: 24px 90px 26px 37px;
	margin: 0;
	z-index: 1;
}

.c-accordion__title.is-close .acd_icon::before {
	opacity: 0;
}

.c-accordion__title.is-close .acd_icon::after {
	transform: rotate(0deg);
}

.c-accordion__title .title_text {
	color: #161473;
	font-family: "ten-mincho", serif;
	font-weight: 400;
	font-size: 3rem;
	line-height: 1.6em;
	letter-spacing: 0.07em;
	text-align: left;
}

.c-accordion__title .acd_icon {
	display: block;
	position: absolute;
	right: 19px;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	background-color: #bdcee2;
	border-radius: 50%;
}

.c-accordion__title .acd_icon::before,
.c-accordion__title .acd_icon::after {
	content: "";
	position: absolute;
	top: 49%;
	left: 20px;
	width: 20px;
	height: 2px;
	background-color: #fff;
	opacity: 1;
	transition: opacity 0.5s, transform 0.5s ease;
	pointer-events: none;
}

.c-accordion__title .acd_icon::before {
	transform: rotate(0deg);
}

.c-accordion__title .acd_icon::after {
	transform: rotate(90deg);
}

.c-accordion__box {
	display: none;
}

.c-accordion__box .box_inner {
	padding: 60px 79px 53px;
	position: relative;
	box-sizing: border-box;
	background-color: #fff;
	border-top: #bdb1a5 solid 1px;
}

.c-accordion__box .c-annotation__item {
	font-size: 1.5rem;
	line-height: 2em;
}

.c-accordion__box .c-annotation__item:not(:last-child) {
	margin-bottom: 10px;
}

.c-accordion__list {
	box-sizing: border-box;
	border-top: #bdb1a5 dashed 1px;
	margin-bottom: 20px;
}

.c-accordion__list .list_item {
	box-sizing: border-box;
	padding: 20px 0;
	border-bottom: #bdb1a5 dashed 1px;
}

.c-accordion__list .list_inner {
	display: flex;
	align-items: center;
}

.c-accordion__list .list_head {
	width: 230px;
	flex-shrink: 0;
}

.c-accordion__list .list_title {
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 13px 18px;
	background-color: #bdcee2;
	color: #fff;
	font-size: 2.4rem;
	line-height: 1;
	letter-spacing: 0.07em;
}

.c-accordion__list .list_title::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 100%;
	background-color: #a3bdd8;
}

.c-accordion__list .list_desc {
	text-align: left;
}

.c-accordion__list .list_txt {
	font-size: 2.4rem;
	letter-spacing: 0.07em;
}

.c-accordion__btn {
	width: 100%;
	min-height: 80px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-sizing: border-box;
	padding: 10px 36px;
	margin: 30px auto;
	background-color: #bdb1a5;
	border-radius: 40px;
	color: #fff;
	font-size: 3rem;
	line-height: 1;
	letter-spacing: 0.07em;
	text-align: center;
	transition: opacity 0.4s;
}

.c-accordion__btn:hover {
	opacity: 0.7;
}

.c-accordion__btn._close {
	background-color: #999;
	pointer-events: none;
}

.c-accordion__btn._close:hover {
	opacity: 1;
}

.c-accordion__btn .ib {
	display: inline-block;
}

.l-inner {
	width: 100%;
	max-width: 1060px;
	margin: 0 auto;
	padding: 0 20px;
}

body.is-fixed {
	overflow: hidden;
}

.c-modal {
	display: none;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	overflow: auto;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	background-color: rgba(255, 255, 255, 0.7);
}

.c-modal__bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	cursor: pointer;
}

.c-modal__area {
	box-sizing: border-box;
	overflow: auto;
	position: relative;
	z-index: 10;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 142px 50px;
	height: auto;
	min-height: 100%;
}

.c-modal__inner {
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	margin: 0 auto;
	padding: 0 90px;
	width: 100%;
	max-width: 1200px;
	text-align: left;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}

.c-modal__pic {
	width: 400px;
	height: -moz-fit-content;
	height: fit-content;
	flex-shrink: 0;
	position: relative;
}

.c-modal__pic::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: #161473 solid 1px;
	z-index: 1;
}

.c-modal__pic img {
	width: 100%;
}

.c-modal__desc {
	width: calc(100% - 400px - 30px);
}

.c-modal__name {
	font-size: 2.6rem;
	line-height: 1.6em;
	letter-spacing: 0.07em;
	margin-bottom: 9px;
}

.c-modal__spec {
	border-bottom: #161473 dashed 1px;
	width: 100%;
	text-align: left;
	margin-top: 20px;
}

.c-modal__spec tr {
	display: flex;
	border-top: #161473 dashed 1px;
	padding: 20px 0 13px;
}

.c-modal__spec th,
.c-modal__spec td {
	display: block;
	line-height: 1.5em;
}

.c-modal__spec th {
	width: 160px;
	flex-shrink: 0;
}

.c-modal__spec th span {
	vertical-align: top;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 10px 19px;
	background-color: #bdcee2;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	letter-spacing: 0.07em;
}

.c-modal__spec th span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 100%;
	background-color: #a3bdd8;
}

.c-modal__spec td {
	width: 100%;
	font-size: 2rem;
}

.c-modal__btn {
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: fixed;
	top: 0;
	right: 0;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border-radius: 0;
	width: 80px;
	height: 80px;
	opacity: 1;
	z-index: 100;
}

.c-modal__btn img {
	width: 100%;
}

#Wrap {
	position: relative;
}

#Cover {
	position: fixed;
	left: 0;
	top: 0;
	z-index: -1;
	opacity: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	text-align: center;
}

#Cover > div {
	opacity: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 400px;
	filter: blur(12px);
	transform: translate(-50%, -50%);
	transition: all 0.4s;
}

#Cover > div.show {
	opacity: 1;
	filter: blur(0);
	transition: all 0.4s;
}

#Cover.show {
	z-index: 60000;
	opacity: 1;
}

.normal-slider,
.modal-slider {
	overflow: hidden;
	box-sizing: border-box;
	border: 1px solid #eee;
	background: #fff;
}

.normal-slider .slick-dots,
.modal-slider .slick-dots {
	position: absolute;
	left: 0;
	bottom: 20px;
	z-index: 100;
	width: 100%;
	line-height: 0;
	text-align: center;
}

.normal-slider .slick-dots > li,
.modal-slider .slick-dots > li {
	display: inline-block;
	margin: 0 3px;
}

.normal-slider .slick-dots > li > button,
.modal-slider .slick-dots > li > button {
	opacity: 1;
	overflow: hidden;
	outline: none;
	border: none;
	border-radius: 0;
	padding: 0;
	width: 20px;
	height: 20px;
	background-color: transparent;
	background-image: url(../img/slide_off.png);
	background-position: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	font-size: 1px;
	text-indent: -9999px;
	transition: background-image 0.4s;
}

.normal-slider .slick-dots > li > button:hover,
.modal-slider .slick-dots > li > button:hover {
	background-image: url(../img/slide_on.png);
}

.normal-slider .slick-dots > li.slick-active > button,
.modal-slider .slick-dots > li.slick-active > button {
	background-image: url(../img/slide_on.png);
}

ul.def {
	font-size: inherit;
	line-height: 1.5em;
	text-align: left;
}

ul.def > li {
	position: relative;
	z-index: 1;
	padding-left: 1em;
}

ul.def > li::before {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

ul.def > li:not(:first-child) {
	margin-top: 0.2em;
}

ul.def.disc > li::before {
	content: "・";
}

ul.def.asta > li::before {
	content: "※";
}

ul.def.circle > li::before {
	content: "";
	margin: 0.45em 0.15em 0 0.15em;
	border-radius: 100%;
	width: 0.6em;
	height: 0.6em;
	background: #bdb1a5;
}

ul.def.ex > li {
	padding-left: 2.4em;
}

ul.def.ex > li::before {
	content: "（例）";
}

.share dt {
	margin: 0 0 16px;
	color: #161473;
	font-size: 2rem;
	line-height: 1em;
	font-family: "Marcellus", serif;
	font-weight: 400;
	font-style: normal;
}

.share dd {
	width: 100%;
	padding: 0;
	margin: 0;
}

.share dd * {
	padding: 0;
	margin: 0;
}

.share ul {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
}

.share ul > li {
	margin: 0 10px;
}

.share ul a {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	border-radius: 100%;
	width: 80px;
	height: 80px;
	background: #fff;
	box-sizing: border-box;
	border: #bdb1a5 solid 1px;
}

.share ul a img {
	width: 36px;
}

header {
	box-sizing: border-box;
	height: 0;
	background: #bdb1a5;
}

header.show > nav {
	opacity: 1;
	z-index: 100;
}

header.show .menu_inner {
	background-image: url(../img/btn_menu_close.png);
}

header .menu_btn {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	text-align: center;
	cursor: pointer;
	position: fixed;
	right: 30px;
	top: 30px;
	z-index: 110;
	transition: opacity 0.4s;
}

header .menu_btn:hover {
	opacity: 0.7;
}

header .menu_inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 120px;
	height: 120px;
	box-sizing: border-box;
	background: #bdb1a5 url(../img/btn_menu.png) center no-repeat;
	background-size: 100% 100%;
	border-radius: 50%;
	position: relative;
	z-index: 2;
	transition: all 0.3s ease-out;
}

header > nav {
	box-sizing: border-box;
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	z-index: -1;
	padding: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.7);
	opacity: 0;
	overflow: auto;
	padding: 50px 20px;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	transition: opacity 0.4s;
}

header > nav > ul {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 40px;
	width: 100%;
}

header > nav > ul > li {
	font-size: 5rem;
	line-height: 1em;
	font-family: "Marcellus", serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0;
	text-align: center;
	transition: all 0.4s;
	margin: 26px 0;
}

header > nav > ul > li > a,
header > nav > ul > li > span {
	box-sizing: border-box;
	opacity: 1;
	display: inline-block;
	position: relative;
	z-index: 1;
	color: #161473;
	text-decoration: none;
}

header > nav > ul > li.cur > a,
header > nav > ul > li:not(.cur) > a:hover {
	color: #bdb1a5;
}

header > nav > ul > li > span {
	opacity: 0.4;
}

footer {
	position: relative;
	z-index: 90;
	text-align: center;
	padding: 0 0 100px;
}

footer .footer {
	text-align: center;
}

footer .footer__licobits {
	display: flex;
	box-sizing: border-box;
	border-top: #bdb1a5 solid 1px;
	border-bottom: #bdb1a5 solid 1px;
	margin-bottom: 100px;
	position: relative;
}

footer .footer__licobits::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 100%;
	background-color: #bdb1a5;
	z-index: 1;
}

footer .footer__licobits .licobits_item {
	width: 50%;
	min-height: 238px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.4s;
}

footer .footer__licobits .licobits_item:hover {
	opacity: 0.7;
}

footer .footer__inner {
	margin: 0 auto;
	max-width: 1020px;
	padding: 0 20px;
}

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

footer .footer__logos .logos_item:not(:last-child) {
	margin-right: 40px;
}

footer .footer__logos .logos_item img {
	height: 42px;
}

footer .footer__caution {
	margin-bottom: 20px;
}

footer .footer__caution .caution_jp,
footer .footer__caution .caution_en {
	font-size: 1.4rem;
	line-height: 1.4em;
	letter-spacing: 0;
}

footer .footer__copy {
	text-align: center;
	font-size: 1.3rem;
	line-height: 1.8em;
	letter-spacing: 0.04em;
}

footer .share {
	margin-bottom: 57px;
}

.fv {
	position: relative;
	z-index: 10;
	padding: 20px 20px 0;
	margin-bottom: 182px;
	overflow: hidden;
}

.fv__logo {
	display: block;
	position: absolute;
	left: 8%;
	bottom: 0;
	width: 26%;
	z-index: 1;
}

.fv__logo img {
	width: 100%;
}

.fv__main {
	display: block;
	width: 100%;
	margin-bottom: 30px;
	border-radius: 60px;
	overflow: hidden;
	position: relative;
}

.fv__main img {
	width: 100%;
}

.fv__catch {
	width: 57%;
	max-width: 770px;
	display: block;
	margin-left: auto;
	margin-right: 24px;
}

.fv__catch img {
	width: 100%;
}

#Outline {
	padding: 130px 0;
}

#Outline .outline__initial {
	text-align: center;
	margin-bottom: 68px;
}

#Outline .outline__list {
	box-sizing: border-box;
	border-top: #bdb1a5 dashed 1px;
}

#Outline .outline__list .list_item {
	box-sizing: border-box;
	padding: 41px 0 35px;
	border-bottom: #bdb1a5 dashed 1px;
}

#Outline .outline__list .list_inner {
	display: flex;
}

#Outline .outline__list .list_head {
	width: 220px;
	flex-shrink: 0;
}

#Outline .outline__list .list_title {
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 17px 28px;
	background-color: #bdcee2;
	color: #fff;
	font-size: 2.6rem;
	line-height: 1;
	letter-spacing: 0.02em;
}

#Outline .outline__list .list_title::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 100%;
	background-color: #a3bdd8;
}

#Outline .outline__list .list_desc {
	text-align: left;
}

#Outline .outline__list .list_caption {
	font-size: 3rem;
	letter-spacing: 0.07em;
	margin-bottom: 6px;
}

#Outline .outline__list .list_map {
	position: relative;
	width: 100%;
	aspect-ratio: 1020/240;
	margin-bottom: 40px;
	overflow: hidden;
	z-index: 2;
}

#Outline .outline__list .list_map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#Outline .outline__list .list_info .info_item {
	display: flex;
	font-size: 2.4rem;
	line-height: 1.4em;
	letter-spacing: 0.07em;
}

#Outline .outline__list .list_info .info_item:not(:last-child) {
	margin-bottom: 6px;
}

#Outline .outline__list .list_info .info_head {
	margin-right: 9px;
	flex-shrink: 0;
}

#Outline .outline__list .list_appearance {
	max-width: 780px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px 20px;
	position: relative;
}

#Outline .outline__list .list_appearance .appearance_item {
	text-align: center;
	width: 100%;
}

#Outline .outline__list .list_appearance .appearance_img {
	width: 100%;
	box-sizing: border-box;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	margin-bottom: 7px;
}

#Outline .outline__list .list_appearance .appearance_img::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-sizing: border-box;
	border: #bdcee2 solid 1px;
	z-index: 1;
}

#Outline .outline__list .list_appearance .appearance_img img {
	width: 100%;
}

#Outline .outline__list .list_appearance .appearance_name {
	line-height: 1.2em;
}

#Outline .outline__list .list_appearance .appearance_name .sub {
	font-size: 2rem;
	display: block;
}

#Outline .outline__list .list_appearance .appearance_annotation {
	margin-top: auto;
	font-size: 2rem;
	line-height: 1.6em;
}

#Outline .outline__list .list_txt {
	letter-spacing: 0.05em;
	margin-bottom: 2px;
}

#Ticket .ticket__main {
	padding: 120px 0;
}

#Ticket .ticket__list {
	width: 100%;
	max-width: 612px;
	margin: 0 auto 35px;
}

#Ticket .ticket__list .list_item {
	width: 100%;
	display: flex;
}

#Ticket .ticket__list .list_item:not(:last-child) {
	margin-bottom: 10px;
}

#Ticket .ticket__list .list_head,
#Ticket .ticket__list .list_desc {
	width: 50%;
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#Ticket .ticket__list .list_head {
	background-color: #bdcee2;
}

#Ticket .ticket__list .list_title {
	color: #fff;
	font-size: 3rem;
	line-height: 1;
	letter-spacing: 0.02em;
}

#Ticket .ticket__list .list_desc {
	box-sizing: border-box;
	border: #bdcee2 solid 1px;
}

#Ticket .ticket__list .list_price {
	font-size: 3rem;
	line-height: 1;
	letter-spacing: 0.02em;
}

#Ticket .ticket__list .list_price .tax {
	font-size: 2rem;
}

#Ticket .ticket__benefits {
	margin-top: 60px;
	padding-top: 60px;
	box-sizing: border-box;
	border-top: #bdb1a5 dashed 1px;
}

#Ticket .ticket__benefits .benefits_inner {
	display: flex;
	align-items: center;
	justify-content: center;
}

#Ticket .ticket__benefits .benefits_img {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 380px;
	height: 380px;
	flex-shrink: 0;
	margin-right: 40px;
	cursor: pointer;
	transition: opacity 0.4s;
}

#Ticket .ticket__benefits .benefits_img:hover {
	opacity: 1;
}

#Ticket .ticket__benefits .benefits_img:hover img {
	transform: scale(1.1);
}

#Ticket .ticket__benefits .benefits_img::before,
#Ticket .ticket__benefits .benefits_img::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	pointer-events: none;
}

#Ticket .ticket__benefits .benefits_img::before {
	background-image: url(../img/cover_zoom.png);
	background-position: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	z-index: 2;
}

#Ticket .ticket__benefits .benefits_img::after {
	border: #bdcee2 solid 1px;
	border-radius: 50%;
	z-index: 1;
}

#Ticket .ticket__benefits .benefits_img .img_cover {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
}

#Ticket .ticket__benefits .benefits_img img {
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	transition: transform 0.3s;
}

#Ticket .ticket__benefits .benefits_desc {
	width: -moz-fit-content;
	width: fit-content;
	text-align: left;
}

#Ticket .ticket__benefits .benefits_desc._first .c-caption {
	margin: 0 auto 60px;
}

#Ticket .ticket__benefits .benefits_name {
	font-size: 3rem;
	letter-spacing: 0.07em;
	margin-bottom: 6px;
}

#Ticket .ticket__benefits .benefits_info {
	margin-bottom: 6px;
}

#Ticket .ticket__benefits .benefits_info .info_item {
	display: flex;
	flex-wrap: wrap;
	font-size: 2.4rem;
	line-height: 1.4em;
	letter-spacing: 0.07em;
}

#Ticket .ticket__benefits .benefits_info .info_head {
	margin-right: 9px;
	flex-shrink: 0;
}

#Ticket .ticket__benefits .c-caption {
	padding: 10px 29px;
	margin-left: 0;
	margin-bottom: 30px;
}

#Ticket .ticket__sale {
	padding: 120px 0;
	background-color: #bdcee2;
	color: #fff;
}

#Ticket .ticket__sale .sale_container {
	color: #161473;
	margin-bottom: 40px;
}

#Ticket .ticket__admission {
	padding: 120px 0 131px;
}

#Ticket .ticket__admission .admission_list {
	text-align: left;
}

#Ticket .ticket__admission .admission_list .list_item {
	position: relative;
	z-index: 1;
	font-size: 2.4rem;
	padding-left: 13px;
	line-height: 1.5em;
	letter-spacing: 0.08em;
}

#Ticket .ticket__admission .admission_list .list_item:not(:last-child) {
	margin-bottom: 10px;
}

#Ticket .ticket__admission .admission_list .list_item::before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

#Goods {
	border-bottom: none;
}

#Goods .goods__main {
	padding: 120px 0;
}

#Goods .goods__main .main_initial {
	text-align: center;
	margin-bottom: 30px;
}

#Goods .goods__main .main_list {
	box-sizing: border-box;
	border-top: #bdb1a5 dashed 1px;
	margin-bottom: 25px;
}

#Goods .goods__main .main_list .list_item {
	box-sizing: border-box;
	padding: 20px 0;
	border-bottom: #bdb1a5 dashed 1px;
}

#Goods .goods__main .main_list .list_inner {
	display: flex;
	align-items: center;
}

#Goods .goods__main .main_list .list_head {
	width: 285px;
	flex-shrink: 0;
}

#Goods .goods__main .main_list .list_title {
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 17px 24px;
	background-color: #bdcee2;
	color: #fff;
	font-size: 2.6rem;
	line-height: 1;
	letter-spacing: 0.07em;
}

#Goods .goods__main .main_list .list_title::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 100%;
	background-color: #a3bdd8;
}

#Goods .goods__main .main_list .list_desc {
	text-align: left;
}

#Goods .goods__main .main_list .list_txt {
	font-size: 3rem;
	letter-spacing: 0.07em;
}

#Goods .goods__main .main_list .c-annotation__item {
	font-size: 2rem;
	letter-spacing: 0.07em;
}

#Goods .goods__main .main_supplement {
	text-align: left;
	margin-bottom: 116px;
}

#Goods .goods__main .main_supplement .supplement_item {
	position: relative;
	z-index: 1;
	font-size: 1.6rem;
	padding-left: 8px;
	line-height: 1.5em;
	letter-spacing: 0;
}

#Goods .goods__main .main_supplement .supplement_item:not(:last-child) {
	margin-bottom: 10px;
}

#Goods .goods__main .main_supplement .supplement_item::before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

#Goods .goods__lineup .lineup_list {
	text-align: left;
	margin-bottom: 50px;
}

#Goods .goods__lineup .lineup_list .list_item {
	position: relative;
	z-index: 1;
	font-size: 2.4rem;
	padding-left: 13px;
	line-height: 1.5em;
	letter-spacing: 0.08em;
}

#Goods .goods__lineup .lineup_list .list_item:not(:last-child) {
	margin-bottom: 10px;
}

#Goods .goods__lineup .lineup_list .list_item::before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

#Goods .goods__lineup .lineup_container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 60px;
	position: relative;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	text-align: left;
}

#Goods .goods__lineup .lineup_item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 1;
	width: 100%;
	transition: opacity 0.4s;
}

#Goods .goods__lineup .lineup_item:hover {
	opacity: 1;
}

#Goods .goods__lineup .lineup_item:hover .pic img {
	transform: scale(1.1);
}

#Goods .goods__lineup .pic {
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 25px;
	flex-shrink: 0;
	cursor: pointer;
}

#Goods .goods__lineup .pic::before,
#Goods .goods__lineup .pic::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	pointer-events: none;
}

#Goods .goods__lineup .pic::before {
	background-image: url(../img/cover_zoom.png);
	background-position: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	z-index: 2;
}

#Goods .goods__lineup .pic::after {
	border: #bdcee2 solid 1px;
	border-radius: 50%;
	z-index: 1;
}

#Goods .goods__lineup .pic .np {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 280px;
	background: #eee;
}

#Goods .goods__lineup .pic .np::before {
	content: "Now Printing";
	opacity: 0.1;
	font-size: 1.4em;
	line-height: 1em;
	font-family: "Marcellus", serif;
	font-weight: 400;
	font-style: normal;
}

#Goods .goods__lineup .pic .pic_cover {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
}

#Goods .goods__lineup .pic img {
	transition: transform 0.3s;
}

#Goods .goods__lineup .name {
	font-size: 2.2rem;
	line-height: 1.6em;
	letter-spacing: 0.04em;
}

#Goods .goods__lineup .price {
	font-size: 2rem;
	line-height: 1em;
}

#Goods .goods__order {
	padding: 120px 0 140px;
	background-color: #bdcee2;
	color: #fff;
}

#Goods .goods__order .order_comingsoon {
	width: 100%;
	box-sizing: border-box;
	padding: 40px 0;
	border-top: #fff dashed 1px;
	border-bottom: #fff dashed 1px;
	text-align: center;
}

#Goods .goods__order .order_comingsoon .comingsoon_txt {
	font-family: "Marcellus", serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	font-size: 6rem;
	letter-spacing: 0.07em;
	line-height: 1.4em;
}

#Goods .goods__order .order_list {
	box-sizing: border-box;
	border-top: #fff dashed 1px;
	margin-bottom: 40px;
}

#Goods .goods__order .order_list .list_item {
	box-sizing: border-box;
	padding: 41px 0 35px;
	border-bottom: #fff dashed 1px;
}

#Goods .goods__order .order_list .list_inner {
	display: flex;
}

#Goods .goods__order .order_list .list_head {
	width: 220px;
	flex-shrink: 0;
}

#Goods .goods__order .order_list .list_title {
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 17px 28px;
	background-color: #fff;
	color: #161473;
	font-size: 2.6rem;
	line-height: 1;
	letter-spacing: 0.02em;
}

#Goods .goods__order .order_list .list_title::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 100%;
	background-color: #c4d5e5;
}

#Goods .goods__order .order_list .list_desc {
	text-align: left;
	color: #fff;
}

#Goods .goods__order .order_list .list_txt {
	letter-spacing: 0.05em;
	margin-bottom: 2px;
}

#Goods .goods__order .order_img {
	display: block;
	width: 100%;
	max-width: 750px;
	margin: 0 auto 40px;
}

#Goods .goods__order .order_img img {
	width: 100%;
}

#Campaign {
	padding: 130px 0;
}

#Campaign .campaign__initial {
	text-align: center;
	margin-bottom: 68px;
}

#Campaign .campaign__list {
	box-sizing: border-box;
	border-top: #bdb1a5 dashed 1px;
	margin-bottom: 25px;
}

#Campaign .campaign__list .list_item {
	box-sizing: border-box;
	padding: 20px 0;
	border-bottom: #bdb1a5 dashed 1px;
}

#Campaign .campaign__list .list_inner {
	display: flex;
	align-items: center;
}

#Campaign .campaign__list .list_head {
	width: 300px;
	flex-shrink: 0;
}

#Campaign .campaign__list .list_title {
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 17px 24px;
	background-color: #bdcee2;
	color: #fff;
	font-size: 2.6rem;
	line-height: 1;
	letter-spacing: 0.07em;
}

#Campaign .campaign__list .list_title::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 100%;
	background-color: #a3bdd8;
}

#Campaign .campaign__list .list_desc {
	text-align: left;
}

#Campaign .campaign__list .list_txt {
	font-size: 3rem;
	letter-spacing: 0.07em;
}

#Campaign .campaign__supplement {
	text-align: left;
	margin-bottom: 116px;
}

#Campaign .campaign__supplement .supplement_item {
	position: relative;
	z-index: 1;
	font-size: 1.6rem;
	padding-left: 8px;
	line-height: 1.5em;
	letter-spacing: 0;
}

#Campaign .campaign__supplement .supplement_item:not(:last-child) {
	margin-bottom: 10px;
}

#Campaign .campaign__supplement .supplement_item::before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

#Guideline {
	padding: 120px 0 130px;
}

#Guideline .guideline__item {
	text-align: left;
}

#Guideline .guideline__item:not(:last-child) {
	margin-bottom: 33px;
}

#Guideline .guideline__caption {
	position: relative;
	z-index: 1;
	color: #bdb1a5;
	font-size: 2rem;
	padding-left: 22px;
	line-height: 1.5em;
	letter-spacing: 0.07em;
}

#Guideline .guideline__caption::before {
	content: "●";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

#Guideline .guideline__txt {
	font-size: 1.6rem;
	letter-spacing: 0.07em;
	line-height: 1.8em;
}

#Guideline .guideline__list {
	text-align: left;
}

#Guideline .guideline__list .list_item {
	position: relative;
	z-index: 1;
	font-size: 1.6rem;
	padding-left: 10px;
	line-height: 1.8em;
	letter-spacing: 0.07em;
}

#Guideline .guideline__list .list_item:not(:last-child) {
	margin-bottom: 2px;
}

#Guideline .guideline__list .list_item::before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

body.modal {
	overflow: hidden;
}

.modalPic,
[data-modal-pic],
[data-modal-page] {
	cursor: pointer;
}

img.modalPic {
	transition: opacity 0.4s;
}

img.modalPic:hover {
	opacity: 0.6;
}

#Popup {
	display: none;
}

#Modal {
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 50100;
	width: 100%;
	height: 100%;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	background-color: rgba(255, 255, 255, 0.7);
}

#Modal > .inner {
	box-sizing: border-box;
	overflow: auto;
	position: relative;
	z-index: 10;
	width: 100%;
	padding: 142px 50px;
	max-height: 100%;
}

#Modal > .inner > * {
	opacity: 0;
	filter: blur(8px);
	transition: all 0.6s ease-out;
}

#Modal > .inner.show > * {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

#Modal .close {
	box-sizing: border-box;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1;
	width: 80px;
	height: 80px;
	background: transparent;
	color: #fff;
	line-height: 1em;
	text-indent: -9999px;
	cursor: pointer;
	transition: opacity 0.3s;
}

#Modal .close:hover {
	opacity: 0.7;
}

#Modal .close::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/modal_close.png);
	background-position: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

#Modal .pictBox {
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
	margin: 0;
	padding: 20px 60px;
	width: 100%;
	background: #fff;
	line-height: 0;
	text-align: center;
}

#Modal .inlineBox {
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	margin: 0 auto;
	padding: 0 90px;
	max-width: 1200px;
	text-align: left;
}

#Modal .inlineBox .h01 {
	margin-bottom: 43px;
}

#Modal .inlineBox .h01 .ja {
	font-size: 2rem;
	text-indent: 0.4em;
	letter-spacing: 0.4em;
	margin-bottom: -2px;
}

#Modal .inlineBox .h01 .en {
	font-size: 4rem;
	min-width: auto;
	text-indent: 0.4em;
	letter-spacing: 0.4em;
}

#Modal .inlineBox.item > .layout {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}

#Modal .inlineBox.item > .layout > .pic {
	width: 400px;
	height: -moz-fit-content;
	height: fit-content;
	flex-shrink: 0;
	position: relative;
}

#Modal .inlineBox.item > .layout > .pic::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: #161473 solid 1px;
	z-index: 1;
}

#Modal .inlineBox.item > .layout > .pic .np {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 400px;
	background: #eee;
}

#Modal .inlineBox.item > .layout > .pic .np::before {
	content: "Now Printing";
	opacity: 0.1;
	font-size: 2em;
	line-height: 1em;
	font-family: "Marcellus", serif;
	font-weight: 400;
	font-style: normal;
}

#Modal .inlineBox.item > .layout > .pic img {
	width: 100%;
}

#Modal .inlineBox.item > .layout > .desc {
	width: calc(100% - 400px - 30px);
}

#Modal .inlineBox.item > .layout .name {
	font-size: 2.6rem;
	line-height: 1.6em;
	letter-spacing: 0.07em;
	margin-bottom: 9px;
}

#Modal .inlineBox.item > .layout .price {
	display: flex;
	align-items: center;
}

#Modal .inlineBox.item > .layout .price .tax {
	font-size: 1.6rem;
}

#Modal .inlineBox.item > .layout .intro {
	font-size: 2rem;
}

#Modal .inlineBox.item > .layout table.spec {
	border-bottom: #161473 dashed 1px;
	width: 100%;
	text-align: left;
	margin-top: 20px;
}

#Modal .inlineBox.item > .layout table.spec tr {
	display: flex;
	border-top: #161473 dashed 1px;
	padding: 20px 0 13px;
}

#Modal .inlineBox.item > .layout table.spec th,
#Modal .inlineBox.item > .layout table.spec td {
	display: block;
	line-height: 1.5em;
}

#Modal .inlineBox.item > .layout table.spec th {
	width: 160px;
	flex-shrink: 0;
}

#Modal .inlineBox.item > .layout table.spec th span {
	vertical-align: top;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 10px 19px;
	background-color: #bdcee2;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	letter-spacing: 0.07em;
}

#Modal .inlineBox.item > .layout table.spec th span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 100%;
	background-color: #a3bdd8;
}

#Modal .inlineBox.item > .layout table.spec td {
	width: 100%;
	font-size: 2rem;
}

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

.sp {
	display: none !important;
}

}

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

.c-modal__inner {
	display: block;
}

.c-modal__pic::before {
	border-width: 2px;
}

.c-modal__pic {
	margin: 0 auto 70px;
	width: 100%;
}

.c-modal__desc {
	width: auto;
}

.c-modal__name {
	font-size: 3.6rem;
	line-height: 1.3em;
	letter-spacing: 0.07em;
	margin-bottom: 19px;
}

.c-modal__spec {
	border-bottom-width: 2px;
	margin-top: 46px;
}

.c-modal__spec tr {
	display: block;
	border-top-width: 2px;
	padding: 40px 0 30px;
}

.c-modal__spec th {
	width: 100%;
	margin-bottom: 20px;
}

.c-modal__spec th span {
	padding: 12px 22px;
	font-size: 2.6rem;
}

.c-modal__spec td {
	font-size: 2.6rem;
}

.c-modal__btn {
	width: 100px;
	height: 100px;
}

.normal-slider .slick-dots > li,
.modal-slider .slick-dots > li {
	margin: 0 5px;
}

.normal-slider .slick-dots > li > button,
.modal-slider .slick-dots > li > button {
	width: 30px;
	height: 30px;
}

.normal-slider .slick-dots > li:not(.slick-active) > button:hover,
.modal-slider .slick-dots > li:not(.slick-active) > button:hover {
	background-image: url(../img/slide_off.png);
}

#Modal > .inner {
	padding: 200px 40px;
}

#Modal .close {
	position: absolute;
	width: 116px;
	height: 116px;
}

#Modal .close:hover {
	opacity: 1;
}

#Modal .inlineBox {
	padding: 0;
}

#Modal .inlineBox .h01 {
	margin-bottom: 39px;
}

#Modal .inlineBox .h01 .ja {
	font-size: 3rem;
	margin-bottom: 0;
}

#Modal .inlineBox .h01 .en {
	font-size: 6rem;
}

#Modal .inlineBox.item > .layout {
	display: block;
}

#Modal .inlineBox.item > .layout > .pic::before {
	border-width: 2px;
}

#Modal .inlineBox.item > .layout > .pic {
	margin: 0 auto 70px;
	width: 100%;
}

#Modal .inlineBox.item > .layout > .pic .np {
	height: 480px;
}

#Modal .inlineBox.item > .layout > .desc {
	width: auto;
}

#Modal .inlineBox.item > .layout .name {
	font-size: 3.6rem;
	line-height: 1.3em;
	letter-spacing: 0.07em;
	margin-bottom: 19px;
}

#Modal .inlineBox.item > .layout .price {
	font-size: 3.6rem;
	line-height: 1.3em;
	letter-spacing: 0.05em;
}

#Modal .inlineBox.item > .layout .price .tax {
	font-size: 2rem;
}

#Modal .inlineBox.item > .layout .intro {
	font-size: 2.6rem;
}

#Modal .inlineBox.item > .layout table.spec {
	border-bottom-width: 2px;
	margin-top: 46px;
}

#Modal .inlineBox.item > .layout table.spec tr {
	display: block;
	border-top-width: 2px;
	padding: 40px 0 30px;
}

#Modal .inlineBox.item > .layout table.spec th {
	width: 100%;
	margin-bottom: 20px;
}

#Modal .inlineBox.item > .layout table.spec th span {
	padding: 12px 22px;
	font-size: 2.6rem;
}

#Modal .inlineBox.item > .layout table.spec td {
	font-size: 2.6rem;
}

}

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

html {
	-webkit-overflow-scrolling: touch;
}

body {
	font-size: 2.8rem;
	letter-spacing: 0.07em;
}

.pc {
	display: none !important;
}

.c-particle__item {
	background-size: 200% auto;
}

.c-particle .particle01 {
	background-image: url(../img/bg_particle01_sp.png);
}

.c-particle .particle02 {
	background-image: url(../img/bg_particle02_sp.png);
}

.c-side {
	top: 10px;
	left: 10px;
}

.c-section {
	border-width: 2px;
}

.c-section:not(:last-child) {
	margin-bottom: 180px;
}

.c-title {
	margin-bottom: 60px;
}

.c-caption {
	font-size: 3.6rem;
	padding: 10px 27px;
	margin-bottom: 80px;
}

.c-annotation__item {
	font-size: 2.4rem;
	letter-spacing: 0.07em;
}

.c-accordion__item:not(:last-child) {
	margin-bottom: 29px;
}

.c-accordion__item {
	border-width: 2px;
}

.c-accordion__title {
	padding: 31px 90px 28px 37px;
}

.c-accordion__title .title_text {
	font-size: 3.6rem;
}

.c-accordion__box .box_inner {
	padding: 81px 38px 50px;
	border-width: 2px;
}

.c-accordion__box .c-annotation__item:not(:last-child) {
	margin-bottom: 0;
}

.c-accordion__box .c-annotation__item {
	font-size: 2.4rem;
	line-height: 1.7em;
	letter-spacing: 0.02em;
}

.c-accordion__list {
	border-width: 2px;
}

.c-accordion__list .list_item {
	padding: 39px 0 32px;
	border-width: 2px;
}

.c-accordion__list .list_inner {
	flex-direction: column;
	align-items: flex-start;
}

.c-accordion__list .list_head {
	width: 100%;
	margin-bottom: 23px;
}

.c-accordion__list .list_title {
	padding: 15px 26px;
	font-size: 3rem;
}

.c-accordion__list .list_txt {
	font-size: 3.6rem;
}

.c-accordion__btn {
	min-height: 120px;
	border-radius: 60px;
	font-size: 3.8rem;
	letter-spacing: 0.02em;
}

.c-accordion__btn:hover {
	opacity: 1;
}

.l-inner {
	padding: 0 40px;
}

#Cover > div {
	width: 300px;
}

.normal-slider,
.modal-slider {
	border-width: 2px;
}

.share dt {
	margin-bottom: 26px;
	font-size: 3rem;
	line-height: 1em;
	text-indent: 0.3em;
}

.share ul > li {
	flex-basis: auto;
	margin: 0 15px;
}

.share ul a {
	width: 100px;
	height: 100px;
	border-width: 2px;
}

.share ul a img {
	width: auto;
}

header .menu_btn {
	right: 20px;
	top: 20px;
}

header .menu_btn:hover {
	opacity: 1;
}

header .menu_inner {
	width: 100px;
	height: 100px;
	border-width: 4px;
}

header > nav {
	padding: 92px 20px;
}

header > nav > ul {
	margin-bottom: 48px;
}

header > nav > ul > li {
	font-size: 8rem;
	text-indent: 0.1em;
	margin: 30px 0;
}

header > nav > ul > li > a,
header > nav > ul > li > span {
	display: inline-block;
	padding: 8px 10px;
}

footer {
	padding-bottom: 90px;
}

footer .footer__licobits {
	margin-bottom: 96px;
}

footer .footer__licobits .licobits_item:hover {
	opacity: 1;
}

footer .footer__licobits .licobits_item img {
	transform: scale(0.8);
}

footer .footer__logos .logos_item:not(:last-child) {
	margin-right: 46px;
}

footer .footer__logos .logos_item img {
	height: 50px;
}

footer .footer__caution {
	margin-bottom: 28px;
}

footer .footer__caution .caution_jp,
footer .footer__caution .caution_en {
	font-size: 2rem;
	line-height: 1.5em;
}

footer .footer__copy {
	font-size: 2rem;
	line-height: 1.6em;
	letter-spacing: 0;
}

footer .share {
	margin-bottom: 77px;
}

.fv {
	padding: 36px 20px;
	margin-bottom: 124px;
}

.fv__logo {
	position: relative;
	left: 0;
	bottom: auto;
	margin: 0 auto 36px;
	width: 100%;
	max-width: 406px;
}

.fv__main {
	margin-bottom: 38px;
	border-radius: 0;
	-webkit-clip-path: none;
	clip-path: none;
}

.fv__catch {
	width: 100%;
	max-width: 494px;
	margin: 0 auto;
}

#Outline {
	padding: 120px 0 138px;
}

#Outline .outline__initial {
	margin-bottom: 51px;
}

#Outline .outline__list {
	border-width: 2px;
}

#Outline .outline__list .list_item {
	padding-bottom: 29px;
	border-width: 2px;
}

#Outline .outline__list .list_inner {
	flex-direction: column;
}

#Outline .outline__list .list_head {
	width: 100%;
	margin-bottom: 24px;
}

#Outline .outline__list .list_title {
	padding: 14px 18px;
	font-size: 3rem;
	letter-spacing: 0.07em;
}

#Outline .outline__list .list_title._app::after {
	content: "※敬称略";
	position: absolute;
	bottom: 0;
	left: calc(100% + 10px);
	display: block;
	text-align: left;
	width: 200px;
	font-size: 2.4rem;
	line-height: 1em;
	color: #161473;
}

#Outline .outline__list .list_caption {
	font-size: 3.6rem;
	margin-bottom: 3px;
}

#Outline .outline__list .list_map {
	aspect-ratio: 670/300;
}

#Outline .outline__list .list_info .info_item:not(:last-child) {
	margin-bottom: 0;
}

#Outline .outline__list .list_info .info_item {
	font-size: 2.8rem;
	line-height: 1.7em;
}

#Outline .outline__list .list_appearance {
	max-width: 600px;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px 40px;
	margin: 0 auto;
}

#Outline .outline__list .list_appearance .appearance_img {
	margin-bottom: 19px;
}

#Outline .outline__list .list_appearance .appearance_img::before {
	border-width: 2px;
}

#Outline .outline__list .list_appearance .appearance_name .sub {
	font-size: 2.4rem;
}

#Outline .outline__list .list_txt {
	letter-spacing: 0.07em;
	margin-bottom: 4px;
}

#Ticket .ticket__main {
	padding: 120px 0 93px;
}

#Ticket .ticket__list {
	max-width: none;
	margin-bottom: 31px;
}

#Ticket .ticket__list .list_item:not(:last-child) {
	margin-bottom: 20px;
}

#Ticket .ticket__list .list_head,
#Ticket .ticket__list .list_desc {
	min-height: 100px;
}

#Ticket .ticket__list .list_head {
	width: 298px;
	flex-shrink: 0;
}

#Ticket .ticket__list .list_title {
	font-size: 3.6rem;
}

#Ticket .ticket__list .list_desc {
	width: 100%;
	border-width: 2px;
}

#Ticket .ticket__list .list_price {
	font-size: 3.6rem;
}

#Ticket .ticket__list .list_price .tax {
	font-size: 2.4rem;
}

#Ticket .ticket__benefits {
	padding-top: 80px;
	border-width: 2px;
}

#Ticket .ticket__benefits .benefits_inner {
	flex-direction: column;
}

#Ticket .ticket__benefits .benefits_img {
	width: 100%;
	max-width: 500px;
	height: auto;
	margin: 0 auto 20px;
	aspect-ratio: 500/500;
}

#Ticket .ticket__benefits .benefits_img:hover img {
	transform: none;
}

#Ticket .ticket__benefits .benefits_img::after {
	border-width: 2px;
}

#Ticket .ticket__benefits .benefits_desc {
	width: 100%;
}

#Ticket .ticket__benefits .benefits_desc._first {
	width: -moz-fit-content;
	width: fit-content;
}

#Ticket .ticket__benefits .benefits_name {
	font-size: 3.6rem;
	margin-bottom: 8px;
}

#Ticket .ticket__benefits .benefits_info .info_item {
	font-size: 2.8rem;
	line-height: 1.3em;
}

#Ticket .ticket__benefits .c-caption {
	padding: 10px 27px;
	margin-bottom: 20px;
}

#Ticket .ticket__sale {
	padding: 100px 0;
}

#Ticket .ticket__admission {
	padding: 100px 0 127px;
}

#Ticket .ticket__admission .admission_list .list_item {
	font-size: 2.8rem;
	padding-left: 15px;
	line-height: 1.65em;
}

#Ticket .ticket__admission .admission_list .list_item:not(:last-child) {
	margin-bottom: 11px;
}

#Goods .goods__main {
	padding: 120px 0 104px;
}

#Goods .goods__main .main_initial {
	margin-bottom: 69px;
}

#Goods .goods__main .main_list {
	border-width: 2px;
}

#Goods .goods__main .main_list .list_item {
	padding: 40px 0 28px;
	border-width: 2px;
}

#Goods .goods__main .main_list .list_inner {
	flex-direction: column;
	align-items: flex-start;
}

#Goods .goods__main .main_list .list_head {
	width: 100%;
	margin-bottom: 20px;
}

#Goods .goods__main .main_list .list_title {
	padding: 15px 26px;
	font-size: 3rem;
}

#Goods .goods__main .main_list .list_txt {
	font-size: 3.6rem;
}

#Goods .goods__main .main_list .c-annotation__item {
	font-size: 2.8rem;
}

#Goods .goods__main .main_supplement {
	margin-bottom: 87px;
}

#Goods .goods__main .main_supplement .supplement_item {
	font-size: 2.4rem;
	line-height: 1.7em;
	letter-spacing: 0.03em;
	padding-left: 15px;
}

#Goods .goods__lineup .lineup_list .list_item {
	font-size: 2.2rem;
}

#Goods .goods__lineup .lineup_container {
	grid-template-columns: repeat(2, 1fr);
	gap: 50px 30px;
}

#Goods .goods__lineup .lineup_item:hover .pic img {
	transform: none;
}

#Goods .goods__lineup .pic {
	margin-bottom: 26px;
}

#Goods .goods__lineup .pic::after {
	border-width: 2px;
}

#Goods .goods__lineup .pic .np::before {
	font-size: 1.3em;
	line-height: 1em;
}

#Goods .goods__lineup .name {
	font-size: 2.8rem;
	line-height: 1.2em;
	letter-spacing: 0.02em;
}

#Goods .goods__lineup .price {
	font-size: 2.6rem;
}

#Goods .goods__order {
	padding: 100px 0;
}

#Goods .goods__order .order_list {
	border-width: 2px;
}

#Goods .goods__order .order_list .list_item {
	padding-bottom: 29px;
	border-width: 2px;
}

#Goods .goods__order .order_list .list_inner {
	flex-direction: column;
}

#Goods .goods__order .order_list .list_head {
	width: 100%;
	margin-bottom: 24px;
}

#Goods .goods__order .order_list .list_title {
	padding: 14px 18px;
	font-size: 3rem;
	letter-spacing: 0.07em;
}

#Goods .goods__order .order_list .list_txt {
	letter-spacing: 0.07em;
	margin-bottom: 4px;
}

#Campaign {
	padding: 120px 0 138px;
}

#Campaign .campaign__initial {
	margin-bottom: 51px;
}

#Campaign .campaign__list {
	border-width: 2px;
}

#Campaign .campaign__list .list_item {
	padding: 40px 0 28px;
	border-width: 2px;
}

#Campaign .campaign__list .list_inner {
	flex-direction: column;
	align-items: flex-start;
}

#Campaign .campaign__list .list_head {
	width: 100%;
	margin-bottom: 20px;
}

#Campaign .campaign__list .list_title {
	padding: 15px 26px;
	font-size: 3rem;
}

#Campaign .campaign__list .list_txt {
	font-size: 3.6rem;
}

#Campaign .campaign__supplement {
	margin-bottom: 87px;
}

#Campaign .campaign__supplement .supplement_item {
	font-size: 2.4rem;
	line-height: 1.7em;
	letter-spacing: 0.03em;
	padding-left: 15px;
}

#Guideline {
	padding: 120px 0 128px;
}

#Guideline .guideline__item:not(:last-child) {
	margin-bottom: 42px;
}

#Guideline .guideline__caption {
	font-size: 3rem;
	padding-left: 32px;
	line-height: 1.2em;
}

#Guideline .guideline__txt {
	font-size: 2.4rem;
	letter-spacing: 0.05em;
	line-height: 1.7em;
}

#Guideline .guideline__list .list_item {
	font-size: 2.4rem;
	padding-left: 14px;
	line-height: 1.7em;
	letter-spacing: 0.075em;
}

#Guideline .guideline__list .list_item:not(:last-child) {
	margin-bottom: -2px;
}

img.modalPic:hover {
	opacity: 1;
}

}


/*# sourceMappingURL=../map/style.css.map */
