*,
::before,
::after {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1;
	tab-size: 4;
	font-family: "fot-tsukuardgothic-std", sans-serif;
	font-style: normal;
	scroll-behavior: smooth;
	color: #3a4652;
}
html.translated-ltr {
	letter-spacing: 0;
}
html::-webkit-scrollbar {
	display: none;
}

body {
	margin: 0;
	line-height: inherit;
	position: relative;
	z-index: 0;
}
body::before {
	content: "";
	position: fixed;
	z-index: -1;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 110%;
	height: 110vh;
	background-image: url(../images/common/site-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

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

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

b,
strong {
	font-weight: bold;
}

small {
	font-size: 80%;
}

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

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

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	background-color: transparent;
	background-image: none;
	border: none;
}

:-moz-focusring {
	outline: auto;
}

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

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

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

textarea {
	resize: vertical;
}

:disabled {
	cursor: default;
}

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

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

.not-scroll {
	touch-action: none;
	overflow: hidden;
}

.no-scroll-bar::-webkit-scrollbar {
	display: none;
}

[x-cloak] {
	display: none !important;
}

::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: rgba(197, 197, 197, 0.55);
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-track {
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

header,
footer {
	overflow: hidden;
}

.pc {
	display: block;
}
.sp {
	display: none;
}
br.pc {
	display: inline;
}
br.sp {
	display: none;
}

@media screen and (max-width: 999px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	br.pc {
		display: none;
	}
	br.sp {
		display: inline;
	}
}

/* ------ header ------ */
header {
	position: fixed;
	z-index: 999;
	width: 100%;
	padding: 0 10px;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 75px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ccacc1;
}
header div > a {
	display: block;
	height: 100%;
	width: 100%;
}
.header-contents {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: space-between;
	align-items: center;
	max-width: 1920px;
	margin: 0 auto;
	background-image: url("../images/common/img-header.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.sp-header {
	display: none;
}
div#page-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	background-color: #ccacc1;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	/*    box-shadow: 2.828px 2.828px 16px 0px rgba(0, 0, 0, .1);*/
	z-index: 10000;
	display: flex;
	align-items: center;
	line-height: 1.2;
	text-decoration: none;
	user-select: none;
}
span.c-icon.c-icon--circle-arrow-top {
	background-color: #fff;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	/*    box-shadow: 2.828px 2.828px 16px 0px rgba(0, 0, 0, .1);*/
	z-index: 10000;
	position: relative;
	display: inline-block;
	background: 50% 50% no-repeat;
	background-size: 100% auto;
	vertical-align: middle;
	line-height: 1;
}
.c-icon--circle-arrow-top::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	margin-top: 2px;
	width: 12px;
	height: 12px;
}

@media screen and (max-width: 999px) {
	header {
		height: 45px;
		display: flex;
		flex-flow: column;
		align-items: center;
	}

	.header-contents {
		background-image: url("../images/common/img-header-sp.svg");
	}
	.sp-header {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		width: 100%;
		background: #f5f5f2;
		height: 50px;
		position: fixed;
		top: 45px;
		z-index: 999;
		max-width: 430px;
		right: 0;
	}

	.sp-header-main {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 25px;
		padding-left: 25px;
		padding-right: 20px;
	}
	.sp-header-btn-box {
		width: 100%;
	}
	.sp-header-btn-box {
		width: 100%;
	}
	.sp-header-btn-box > a {
		width: 100%;
		flex-flow: row;
		align-items: center;
		gap: 12px;
	}

	.btn-menu {
		position: relative;
		z-index: 9999;
		display: flex;
		width: 28px;
		height: 16px;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}

	.btn-menu-wrapper {
		display: flex;
		width: 100%;
		height: 100%;
		flex-flow: column;
		align-items: center;
	}

	.toggle-box {
		position: relative;
		height: 100%;
		width: 100%;
		opacity: 0.7;
	}

	.toggle-bar {
		position: absolute;
		right: 0px;
		display: block;
		height: 2px;
		width: 100%;
		background: #cccccc;
		transition: all ease 0.33s;
		border-radius: 999px;
	}

	.toggle-bar-01 {
		top: 0px;
	}

	.toggle-bar-02 {
		top: 50%;
		transform: translateY(-50%);
	}
	.toggle-bar-03 {
		bottom: 0;
	}

	.toggle-bar.toggle-bar-01-active {
		top: 50%;
		transform: translateY(-50%) rotate(40deg);
		background: #cccccc;
	}

	.toggle-bar.toggle-bar-02-active {
		background: transparent;
	}
	.toggle-bar.toggle-bar-03-active {
		transform: translateY(-50%) rotate(-40deg);
		top: 50%;
		background: #cccccc;
	}
}

/* ------ global side nav ------ */
.g-side-nav {
	width: 250px;
	background: #f5f5f2;
	position: relative;
	flex-shrink: 0;
}
.g-side-nav-inner {
	position: sticky;
	top: 75px;
	left: 0;
	width: 100%;
	height: calc(100vh - 95px);
	max-height: 1080px;
}
.g-side-nav .lang-box {
	margin: auto;
}
.nav-menu {
	width: 100%;
	height: 100%;
	position: relative;
	overflow-y: auto;
	margin-bottom: 50px;
}
.nav-menu-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 50px;
	padding: 40px 30px 30px;
}
@media screen and (min-width: 1000px) {
	.sh-800 .nav-menu-wrapper {
		justify-content: flex-start;
		gap: 20px;
		padding: 20px 30px 20px;
	}
	.sh-900 .nav-menu-wrapper {
		justify-content: flex-start;
		gap: 20px;
		padding: 20px 30px 20px;
	}
}
.nav-menu-flex {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 30px;
	justify-content: flex-start;
}
@media screen and (min-width: 1000px) {
	.sh-800 .nav-menu-flex {
		gap: 20px;
	}
	.sh-900 .nav-menu-flex {
		gap: 20px;
	}
}
.g-nav {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 20px;
	padding-bottom: 30px;
	border-bottom: 1px solid #cccccc;
}
.btn-side-nav {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: flex-start;
}

.side-nav-icon {
	width: 50px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: #666;
	border-radius: 999px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	overflow: hidden;
}

@media screen and (min-width: 1000px) {
	.sh-800 .side-nav-icon {
		width: 35px;
	}
	.sh-900 .side-nav-icon {
		width: 40px;
	}
}
.btn-side-nav.btn-top .side-nav-icon {
	background: #e8a179;
}
.btn-side-nav.btn-news .side-nav-icon {
	background: #a5bfca;
}
.btn-side-nav.btn-outline .side-nav-icon {
	background: #d3a7aa;
}
.btn-side-nav.btn-program .side-nav-icon {
	background: #9cb799;
}
.btn-side-nav.btn-pamphlet .side-nav-icon {
	background: #d0b480;
}
.btn-side-nav.btn-ticket .side-nav-icon {
	background: #a8a3bb;
}
.btn-side-nav.btn-artist .side-nav-icon {
	background: #b1b9d1;
}
.btn-side-nav.btn-goods .side-nav-icon {
	background: #b6b2ad;
}
.btn-side-nav.btn-access .side-nav-icon {
	background: #aaaaaa;
}

.side-nav-icon > img {
	max-width: 25px;
	max-height: 25px;
}
@media screen and (min-width: 1000px) {
	.sh-800 .side-nav-icon > img {
		max-width: 15px;
		max-height: 15px;
	}
	.sh-900 .side-nav-icon > img {
		max-width: 20px;
		max-height: 20px;
	}
}

@media screen and (max-width: 999px) {
	/* translated style */
	html.translated-ltr .side-nav-icon {
		width: 40px;
	}
	html.translated-ltr .side-nav-icon > img {
		max-width: 20px;
		max-height: 20px;
	}
}

.btn-side-nav > div {
	width: auto;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 6px;
	justify-content: flex-start;
}
.btn-side-nav > div > p {
	width: 100%;
	font-size: 16px;

	color: #192e5f;
	text-wrap: nowrap;
}

/* translated style */
html.translated-ltr .btn-side-nav > div > p {
	font-size: 14px;
}
@media screen and (min-width: 1000px) {
	.sh-800 .btn-side-nav > div > p {
		font-size: 14px;
	}
}
@media screen and (max-width: 999px) {
	/* translated style */
	html.translated-ltr .btn-side-nav > div > p {
		font-size: 12px;
	}
}
.btn-side-nav > div > span {
	width: 100%;
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	letter-spacing: 0.1em;
	color: #ddd;
}

/* translated style */
html.translated-ltr .btn-side-nav > div > span {
	letter-spacing: 0;
	font-size: 11px;
}

.btn-side-nav.btn-top > div > span {
	color: #e8a179;
}
.btn-side-nav.btn-news > div > span {
	color: #a5bfca;
}
.btn-side-nav.btn-outline > div > span {
	color: #d3a7aa;
}
.btn-side-nav.btn-program > div > span {
	color: #9cb799;
}
.btn-side-nav.btn-pamphlet > div > span {
	color: #d0b480;
}
.btn-side-nav.btn-ticket > div > span {
	color: #a8a3bb;
}
.btn-side-nav.btn-artist > div > span {
	color: #b1b9d1;
}
.btn-side-nav.btn-goods > div > span {
	color: #b6b2ad;
}
.btn-side-nav.btn-access > div > span {
	color: #aaaaaa;
}

.nav-menu-sns {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}
.nav-menu-sns > a {
	width: 40px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: #3a4652;
	border-radius: 999px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.nav-menu-sns > a > img {
	max-width: 20px;
	max-height: 20px;
}

.sp-side-info {
	display: none;
}

@media screen and (max-width: 999px) {
	.g-side-nav {
		background: transparent;
		pointer-events: none;
		position: fixed;
		top: 0px;
		right: 0px;
		z-index: 998;
		display: flex;
		height: 100vh;
		width: 100%;
		justify-content: flex-end;
		overflow-x: hidden;
		opacity: 0;
	}
	.g-side-nav.nav-menu-active {
		pointer-events: auto;
		opacity: 1;
	}

	.g-side-nav-inner {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		height: auto;
		max-height: none;
	}

	.nav-menu {
		display: flex;
		height: 100vh;
		width: 100%;
		justify-content: flex-end;
		overflow-x: hidden;
	}

	.nav-menu::after {
		content: "";
		position: fixed;
		top: 0px;
		right: 0px;
		z-index: 40;
		height: 100vh;
		width: 100vw;
		background: rgba(255, 255, 255, 0.01);
		backdrop-filter: blur(20px);
	}

	.nav-menu-wrapper {
		background: #f5f5f2;
		position: relative;
		z-index: 50;
		height: 100vh;
		width: 100%;
		max-width: 430px;
		overflow: hidden;
		padding: 95px 20px 30px;
		padding-top: 95px;
		transition: all ease 0.33s;
		opacity: 0;
		display: flex;
		flex-flow: column;
		justify-content: flex-start;
		gap: 30px;
		backdrop-filter: brightness(0.9);
		overflow-y: auto;
		overflow-x: hidden;
	}

	.nav-menu.nav-menu-active .nav-menu-wrapper {
		margin: 0px;
		opacity: 1;
	}

	.nav-menu-flex {
		width: 100%;
		max-width: 360px;
		height: auto;
		display: flex;
		flex-flow: column;
		align-items: center;
		margin: 0 auto;
		padding-top: 30px;
		padding-bottom: 0px;
		gap: 30px;
	}
	.nav-menu-flex .lang-box {
		display: none;
	}
	.nav-menu-flex .btn-box {
		display: none;
	}

	.g-nav {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 20px;
		column-gap: 20px;
	}

	.sp-side-info {
		display: block;
		width: 100%;
		padding-top: 10px;
	}
	.sp-side-info .footer-copy-box {
		padding-bottom: 0;
	}

	.side-nav-icon {
		width: 46px;
	}
}

/* ------ common ------ */
.main-container {
	padding-top: 75px;
	position: relative;
	width: 100%;
	display: flex;
	align-items: stretch;
}

@media screen and (max-width: 999px) {
	.main-container {
		padding-top: 95px;
	}
}
.main-container main {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.main-container main.main-lower {
	overflow: visible;
}

.sec-inner {
	width: 100%;
	max-width: 1510px;
	margin: 0 auto;
}
.sec-cont-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.sec-cont {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 30px;
}
.sec-cont-col-2-flex {
	width: 100%;
	display: flex;
	gap: 30px;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
}

@media screen and (max-width: 999px) {
	.sec-cont {
		gap: 20px;
	}
	.sec-cont-col-2-flex {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
}

.btn-box {
	display: flex;
	justify-content: flex-start;
}

.pamphlet-download-btn {
	margin: auto;
}

.btn-more {
	width: 250px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	background: #3a4652;
	position: relative;
	padding: 0 20px;
	gap: 10px;
	overflow: hidden;
	border-radius: 10px 10px 10px 0px;
}
.btn-more.btn-red {
	background: #e4572e;
}
.btn-more.insta {
	width: 300px;
}
.btn-more.insta.hash {
	background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
}
.btn-more.insta.hash::before {
	background-image: url("../images/common/instagram.svg");
	background-size: cover;
	content: "";
	height: 24px;
	width: 24px;
}
.btn-more > span {
	font-size: 16px;
	letter-spacing: 0;
	color: #fefefe;
}
html.translated-ltr .btn-more > span {
	font-size: 14px;
}
.btn-more .icon-chevron {
	display: flex;
	width: 6px;
	height: auto;
	aspect-ratio: 6 / 10;
	background-image: url("../images/common/icon-chevron-right-wh.svg");
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: 20px;
	transform: translateX(0);
	opacity: 1;
	transition: transform 0.5s ease, opacity 0.5s ease;
}
.btn-more:hover .icon-chevron {
	animation: chevron-slide-hover 1.5s infinite;
}

.btn-more:not(:hover) .icon-chevron {
	animation: none;
	transform: translateX(0);
	opacity: 1;
}

@keyframes chevron-slide-hover {
	0% {
		transform: translateX(0);
		opacity: 1;
	}
	50% {
		transform: translateX(10px);
		opacity: 0;
	}
	51% {
		transform: translateX(-10px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@media screen and (max-width: 999px) {
	.btn-more {
		width: 220px;
		height: 40px;
		font-size: 14px;
	}
	.btn-more.insta {
		margin: auto;
		width: 80%;
	}
	.btn-more > span {
		font-size: 14px;
	}
}

.h2-box {
	display: flex;
	align-items: baseline;
	gap: 21px;
	width: 100%;
}
.h2-box > h2 {
	font-size: 60px;
	font-weight: 600;
	letter-spacing: 0;
	font-family: "Montserrat", sans-serif;
}
html.translated-ltr .h2-box > h2 {
	font-size: 40px;
}
.h2-box > span {
	font-size: 16px;
}
@media screen and (max-width: 1400px) {
	.h2-box > h2 {
		font-size: 50px;
	}
}
@media screen and (max-width: 999px) {
	.h2-box > h2 {
		font-size: 40px;
	}
	.h2-box > span {
		font-size: 14px;
	}
}
@media screen and (max-width: 768px) {
	.h2-box > h2 {
		font-size: 30px;
	}
}

.lower-h2-box {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-bottom: 20px;
	border-bottom: 1px solid #3a4652;
}
.lower-h2-box h2 {
	font-size: 30px;
	letter-spacing: 0.05em;
}
.lower-h2-box > span {
	font-size: 14px;
}
@media screen and (max-width: 1400px) {
	.lower-h2-box h2 {
		font-size: 24px;
	}
}
@media screen and (max-width: 999px) {
	.lower-h2-box h2 {
		font-size: 20px;
		letter-spacing: 0;
		line-height: 1.4;
	}
	.lower-h2-box > span {
		font-size: 12px;
	}
}

.h3-box > h3 {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 5px 15px;
	position: relative;
	font-size: 22px;
}
.h3-box > h3::before {
	content: "";
	width: 1px;
	height: 100%;
	background: #3a4652;
	position: absolute;
	left: 0;
}
.lower-h3-box {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	padding-bottom: 20px;
	border-bottom: 1px solid #3a4652;
}
.lower-h3-box > h3 {
	width: auto;
}
.lower-h3-box > span {
	font-size: 14px;
}
@media screen and (max-width: 999px) {
	.h3-box > h3 {
		font-size: 18px;
		line-height: 1.4;
	}
	.lower-h3-box > span {
		font-size: 12px;
	}
}

.list-wrapper {
	width: 100%;
	padding-left: 25px;
	position: relative;
}
.list-wrapper.list-wrapper-num {
	padding-left: 45px;
}
ul.list {
	list-style-type: disc;
}
ul.list > li {
	font-size: 16px;
	line-height: 1.8;
}
ul.list.list-dark > li {
	color: #06445f;
}
ul.list > li::marker {
	font-size: 20px;
	line-height: 1;
}
ul.list.list-pt-num {
	counter-reset: list-pt-num-counter;
	list-style: none;
}
ul.list.list-pt-num > li {
	counter-increment: list-pt-num-counter;
}
ul.list.list-pt-num > li::before {
	content: "（" counter(list-pt-num-counter) "）";
	position: absolute;
	left: 0;
}
ul.list.list-num {
	counter-reset: list-num-counter;
	list-style: none;
}
ul.list.list-num > li {
	counter-increment: list-num-counter;
}
ul.list.list-num > li::before {
	content: counter(list-num-counter) ".";
	position: absolute;
	left: 15px;
}

@media screen and (max-width: 999px) {
	.list-wrapper.list-wrapper-num {
		padding-left: 30px;
	}
	ul.list > li {
		font-size: 14px;
	}
	ul.list > li::marker {
		font-size: 18px;
	}
	ul.list.list-num > li::before {
		left: 10px;
	}
}

.txt-link {
	text-decoration: underline;
	transition: all ease 0.33s;
	text-underline-offset: 2px;
	line-height: 1.5;
}
.txt-link.txt-link-disabled {
	text-decoration: none;
	pointer-events: none;
}
.tel-link {
	text-decoration: none;
}
.txt-red {
	color: #e4572e;
}
.txt-link:hover {
	opacity: 0.7;
}
.txt-link.txt-link-disabled:hover {
	opacity: 1;
}

.txt-underline {
	text-decoration: underline;
	text-underline-offset: 2px;
}

img.img-contain {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all ease-in-out 0.33s;
}
img.img-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all ease-in-out 0.33s;
}
/* ------ Lowwer Common ------ */

.sec-lower-heading {
	width: 100%;
	height: auto;
	position: relative;
	padding: 0 4.79%;
	margin: 0 auto;
	margin-bottom: 50px;
}
.sec-lower-heading-contents {
	width: 100%;
	margin: 0 auto;
	padding-top: 50px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-flow: column;
	gap: 30px;
}

@media screen and (max-width: 1200px) {
	.sec-lower-heading-contents {
		padding-top: 50px;
		gap: 0px;
	}
}
@media screen and (max-width: 999px) {
	.sec-lower-heading {
		padding: 0 3.85%;
		margin-bottom: 30px;
	}
	.sec-lower-heading-contents {
		padding-top: 30px;
		gap: 0px;
	}
}

.h1-title-area {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 20px;
	align-items: flex-start;
	flex-shrink: 0;
}
.h1-title-area > h1 {
	width: 100%;
	font-size: 40px;
}
.h1-title-area > span {
	width: 100%;
	font-size: 20px;
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 1400px) {
	.h1-title-area > h1 {
		font-size: 35px;
	}
	.h1-title-area > span {
		font-size: 16px;
	}
}
@media screen and (max-width: 1200px) {
	.h1-title-area > h1 {
		font-size: 28px;
	}
}
@media screen and (max-width: 999px) {
	.h1-title-area {
		gap: 15px;
	}
	.h1-title-area > h1 {
		font-size: 20px;
	}
	.h1-title-area > span {
		font-size: 14px;
	}
}
@media screen and (max-width: 768px) {
}

.breadcrumbs-box {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	flex-shrink: 0;
}
.breadcrumbs {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
	font-size: 14px;
}
.breadcrumbs > * {
	display: flex;
	position: relative;
	align-items: center;
	gap: 10px;
}
.breadcrumbs > *::after {
	content: "";
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url("../images/common/icon-chevron-right.svg");
	background-size: contain;
	background-repeat: no-repeat;
	width: 6px;
	height: auto;
	aspect-ratio: 8 / 14;
	position: relative;
}
.breadcrumbs > *:last-child::after {
	content: none;
}
.breadcrumbs > a {
	transition: all ease 0.33s;
}
.breadcrumbs > a:hover {
	opacity: 0.6;
}
.breadcrumbs > span {
	position: relative;
	transition: all ease 0.33s;
	padding-right: 20px;
}

@media screen and (max-width: 999px) {
	.breadcrumbs-box {
		display: none;
	}
}

.lower-contents-area {
	width: 100%;
	position: relative;
	min-height: 600px;
	max-width: 1670px;
	margin: 0 auto;
	padding: 0 4.79%;
	padding-top: 80px;
	padding-bottom: 70px;
	background: rgb(254 254 254 / 0%);
	backdrop-filter: blur(30px) brightness(1.05);
	border-radius: 50px 50px 0 0;
}
.lower-contents-flex {
	display: flex;
	z-index: 10;
	position: relative;
	width: 100%;
	gap: 50px;
	align-items: flex-start;
	min-height: 600px;
}
.lower-contents-flex.lower-contents-1col {
	justify-content: center;
}

@media screen and (max-width: 999px) {
	.lower-contents-area {
		padding: 0 7.6%;
		padding-top: 54px;
		padding-bottom: 50px;
		border-radius: 30px 30px 0 0;
	}
	.lower-contents-flex {
		min-height: 0px;
	}
}

.lower-side-nav-container {
	position: sticky;
	top: 115px;
	width: 150px;
	flex-shrink: 0;
}
.lower-side-nav-inner {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 16px;
	height: calc(100vh - 95px);
}
.lower-side-title {
	font-size: 16px;
	letter-spacing: 0.1em;
	position: relative;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 30px;
}
.lower-side-title::after {
	content: "";
	width: 15px;
	height: 1px;
	background: #eee;
}
.lower-side-nav {
	display: flex;
	flex-flow: column;
	gap: 10px;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	padding-bottom: 50px;
}
.lower-side-nav-item {
	opacity: 0.55;
	width: 100%;
	transition: all ease 0.33s;
	position: relative;
}
.lower-side-nav-item > a {
	width: 100%;
	position: relative;
	display: flex;
	align-items: baseline;
	gap: 10px;
	line-height: 1.5;
	font-size: 12px;
}
.lower-side-nav-item.active {
	opacity: 1;
}
.lower-side-nav-item.current-active {
	opacity: 1;
}

@media screen and (max-width: 999px) {
	.lower-side-nav-container {
		display: none;
	}
}

.lower-contents {
	width: 100%;
	height: auto;
	max-width: 1310px;
	margin: 0;
	min-height: 600px;
	overflow: hidden;
}

.lower-sec {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-bottom: 100px;
}
.lower-contents .lower-sec:last-of-type {
	margin-bottom: 0px;
}

@media screen and (max-width: 999px) {
	.lower-contents {
		min-height: 0px;
	}
	.lower-sec {
		margin-bottom: 50px;
	}
}

/* ------ Lang box ------ */

.lang-box {
	width: auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
	position: relative;
}
.lang-box::before {
	content: "";
	width: 20px;
	height: auto;
	aspect-ratio: 1 / 1;
	position: relative;
	background-image: url("../images/common/icon-earth-wh.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.lang-box.is-dark::before {
	background-image: url("../images/common/icon-earth.svg");
}
.lang-box > a {
	position: relative;
	font-size: 15px;
	opacity: 0.5;
	font-weight: 600;
	transition: all ease 0.33s;
	color: #fefefe;
	cursor: pointer;
	font-family: "Montserrat", sans-serif;
}
.lang-box.is-dark > a {
	color: #282f49;
}
.lang-box > a {
	opacity: 0.6;
}
.lang-box > a.gt-current-lang {
	opacity: 1;
}
.lang-box > a:first-of-type {
	padding-right: 15px;
}
.lang-box > a:first-of-type::before {
	content: "";
	width: 1px;
	height: 14px;
	position: absolute;
	background: #fefefe;
	right: 0;
}
.lang-box.is-dark > a:first-of-type::before {
	background: #282f49;
}

.btn-buy-ticket {
	width: 190px;
	height: 60px;
	background: #3a4652;
	color: #fefefe;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-flow: column;
	padding: 0 15px;
	gap: 2px;
}
.btn-buy-ticket > p {
	font-size: 16px;
}
.btn-buy-ticket > span {
	font-size: 12px;
	font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 999px) {
	.lang-box {
		gap: 11px;
	}
	.lang-box::before {
		width: 18px;
	}
	.lang-box > a {
		font-size: 13px;
	}
	.lang-box > a:first-of-type::before {
		height: 12px;
	}

	.btn-buy-ticket {
		width: 195px;
		height: 50px;
	}
	.btn-buy-ticket > p {
		font-size: 14px;
	}
}

/* ------ Pagination ------ */

.pagination-box {
	width: 100%;
	display: flex;
	justify-content: center;
}
.pagination {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
}
.pagination .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
	width: 50px;
	height: auto;
	aspect-ratio: 1 /1;
	border-radius: 10px;
	color: #3a4652;
	background: #f5f5f2;
	transition: all ease 0.3s;
	line-height: 1;
	overflow: hidden;
	font-size: 16px;
	font-weight: 600;
	position: relative;
	font-family: "Montserrat", sans-serif;
}
.page-numbers.current {
	color: #fefefe;
	background: #3a4652;
}
.prev.page-numbers {
	color: #fefefe;
	background: #3a4652;
	border-radius: 10px 10px 0px 10px;
}
.next.page-numbers {
	color: #fefefe;
	background: #3a4652;
	border-radius: 10px 10px 10px 0px;
}

.prev.page-numbers::before,
.next.page-numbers::before {
	content: "";
	display: flex;
	width: 6px;
	height: auto;
	aspect-ratio: 6 / 10;
	background-image: url("../images/common/icon-chevron-right-wh.svg");
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	transform: translateX(0);
	opacity: 1;
	transition: transform 0.5s ease, opacity 0.5s ease;
}
.prev.page-numbers::before {
	transform: rotate(180deg);
}
.page-numbers:hover {
	opacity: 0.6;
}

@media screen and (max-width: 999px) {
	.pagination .page-numbers {
		width: 40px;
		font-size: 14px;
	}
}

/* ------ Footer ------ */
.footer-map {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: 300px;
}
.footer-map > iframe {
	width: 100%;
	height: 100%;
	filter: grayscale(1);
}

footer {
	width: 100%;
	padding: 0 4.16%;
	position: relative;
	display: flex;
	flex-flow: column;
	align-items: center;
	color: #fefefe;
	background: #3a4652;
	gap: 50px;
	z-index: 0;
}
.footer-contents {
	width: 100%;
	max-width: 1760px;
	margin: 0 auto;
	display: flex;
	gap: 30px;
	position: relative;
	z-index: 0;
	padding-top: 80px;
	justify-content: space-between;
}

.footer-info-box {
	width: 100%;
	max-width: 430px;
	display: flex;
	flex-flow: column;
	gap: 30px;
	align-items: flex-start;
	flex-shrink: 0;
}
.footer-logo {
	width: 328px;
	height: auto;
	aspect-ratio: 328 / 75;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	transition: all ease 0.33s;
}
.footer-logo:hover {
	opacity: 0.6;
}

.footer-address {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 17px;
	align-items: flex-start;
	letter-spacing: 0;
	font-size: 16px;
}
/* translated style */
html.translated-ltr .footer-address {
	font-size: 12px;
}
.footer-address > p {
	width: 100%;
}
.footer-address > div {
	width: 100%;
	line-height: 1.5;
}

.footer-nav-box {
	display: flex;
	width: 100%;
	gap: 30px;
	align-items: flex-end;
	max-width: 930px;
	justify-content: flex-start;
	flex-flow: column;
}

.footer-nav {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	gap: 30px;
	align-items: center;
}
.footer-nav > a {
	width: auto;
	flex-shrink: 0;
	font-size: 18px;
	transition: all ease 0.33s;
}

/* translated style */
html.translated-ltr .footer-nav > a {
	font-size: 14px;
}
.footer-nav > a:hover {
	opacity: 0.6;
}

.bnr-medikit {
	width: 250px;
	height: auto;
	aspect-ratio: 250 / 52;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: all ease 0.33s;
}
.bnr-medikit:hover {
	opacity: 0.6;
}

.footer-copy-box {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 10;
	padding-bottom: 20px;
}
.footer-copy-box p {
	font-size: 13px;
	text-align: center;
	font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 1600px) {
	.footer-nav {
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 1400px) {
	.footer-nav {
		gap: 20px;
	}
}
@media screen and (max-width: 999px) {
	.footer-contents {
		padding-top: 50px;
		justify-content: flex-start;
		flex-flow: column;
		align-items: center;
	}
	.footer-info-box {
		align-items: center;
		gap: 25px;
	}
	.footer-nav {
		display: none;
	}
	footer .lang-box {
		display: none;
	}
	.footer-address {
		gap: 10px;
		align-items: center;
		text-align: center;
	}
	.footer-address > p > span {
		width: 100%;
		font-size: 18px;
		display: block;
	}

	/* translated style */
	html.translated-ltr .footer-address > p {
		font-size: 12px;
	}
	html.translated-ltr .footer-address > p > span {
		font-size: 14px;
	}
	html.translated-ltr .footer-address > div {
		font-size: 12px;
	}

	.footer-nav-box {
		align-items: center;
	}
	.footer-copy-box {
		padding-bottom: 50px;
	}
}

@media screen and (max-width: 768px) {
	footer {
		gap: 30px;
	}
	.footer-logo {
		width: 242px;
	}
	.footer-address > p {
		font-size: 14px;
	}
	.footer-address > div {
		font-size: 14px;
	}
	.footer-copy-box p {
		font-size: 10px;
	}
}

/* ------------------ News Common------------------ */

.news-list {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.news-list-item {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.news-list-item > a {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 30px;
	padding: 30px;
	border-bottom: 1px solid #3a4652;
	transition: all ease-in-out 0.33s;
}
.news-list-item > a.no-post {
	pointer-events: none;
	cursor: default;
}
.news-list-item > a:not(.no-post):hover {
	opacity: 0.6;
}
.news-list-date {
	width: 85px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0;
	font-family: "Montserrat", sans-serif;
}
.news-list-ttl {
	width: 100%;
	font-size: 16px;
	line-height: 1.5;
}
.news-list-area .btn-box {
	width: 100%;
	justify-content: flex-end;
}

@media screen and (max-width: 999px) {
	.news-list-item:first-of-type > a {
		border-top: 1px solid #3a4652;
	}
	.news-list-item > a {
		align-items: flex-start;
		flex-flow: column;
		gap: 10px;
		padding: 20px;
	}

	.news-list-date {
		font-size: 14px;
		width: 100%;
		justify-content: flex-start;
	}
	.news-list-ttl {
		font-size: 14px;
	}
	.news-list-item > a.no-post {
		font-size: 14px;
	}
}

/* ------------------ Card grid item------------------ */
.card-grid-item {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	border: 1px solid #3a4652;
	border-radius: 5px;
	overflow: hidden;
}
.card-grid-item > h5 {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: #3a4652;
	color: #fefefe;
	padding: 17px 30px;
	font-size: 20px;
}
.shop-place-grid .card-grid-item > div {
	width: 100%;
	padding: 20px 30px;
}

@media screen and (max-width: 999px) {
	.card-grid-item > h5 {
		padding: 15px;
		font-size: 16px;
		line-height: 1.3;
	}
	.shop-place-grid .card-grid-item > div {
		padding: 15px;
	}
}

/* Modal */

.modal-area {
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 999999;
	display: flex;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
}

.modal-inner {
	position: absolute;
	left: 0px;
	right: 0px;
	top: 50%;
	z-index: 10;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	height: 100%;
	width: 100%;
	--tw-translate-y: -50%;
	transform: translateY(-50%);
	align-items: center;
	justify-content: center;
}

.modal-body {
	position: relative;
	width: 80%;
	max-width: 800px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-bg {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 0;
	display: flex;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
	opacity: 0.6;
}

.modal-close {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 40px;
	height: auto;
	aspect-ratio: 1 / 1;
	cursor: pointer;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #3a4652;
	border-radius: 999px;
	overflow: hidden;
}
.modal-close > svg {
	width: 14px;
	height: auto;
	aspect-ratio: 1 / 1;
	flex-shrink: 0;
	fill: #fefefe;
}

.modal-contents {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal-contents > iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 800 / 450;
}

@media (max-width: 640px) {
	.modal-body {
		width: 74.5%;
	}
	.modal-close {
		top: -15px;
		right: -15px;
		width: 34px;
	}
	.modal-close > svg {
		width: 12px;
	}
}
