html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}body{-webkit-text-size-adjust:none}mark{background-color:transparent;color:inherit}input::-moz-focus-inner{border:0;padding:0}input[type="text"],input[type="email"],select,textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none}

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

body {
	line-height: 1.0;
	min-height: var(--viewport-height);
	min-width: 320px;
	overflow-x: hidden;
	word-wrap: break-word;
}

body:before {
	content: '';
	display: block;
	background-attachment: scroll;
	height: var(--background-height);
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scale(1);
	width: 100vw;
	z-index: 0;
	background-image: url('images/bg.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #FFFFFF;
}

:root {
	--background-height: 100vh;
	--site-language-alignment: left;
	--site-language-direction: ltr;
	--site-language-flex-alignment: flex-start;
	--site-language-indent-left: 1;
	--site-language-indent-right: 0;
	--viewport-height: 100vh;
}

html {
	font-size: 15pt;
}

u {
	text-decoration: underline;
}

strong {
	color: inherit;
	font-weight: bolder;
}

em {
	font-style: italic;
}

code {
	background-color: rgba(144,144,144,0.25);
	border-radius: 0.25em;
	font-family: 'Lucida Console', 'Courier New', monospace;
	font-size: 0.9em;
	font-weight: normal;
	letter-spacing: 0;
	margin: 0 0.25em;
	padding: 0.25em 0.5em;
	text-indent: 0;
}

mark {
	background-color: rgba(144,144,144,0.25);
}

spoiler-text {
	-webkit-text-stroke: 0;
	background-color: rgba(32,32,32,0.75);
	text-shadow: none;
	text-stroke: 0;
	color: transparent;
	cursor: pointer;
	transition: color 0.1s ease-in-out;
}

spoiler-text.active {
	color: #FFFFFF;
	cursor: text;
}

s {
	text-decoration: line-through;
}

sub {
	font-size: smaller;
	vertical-align: sub;
}

sup {
	font-size: smaller;
	vertical-align: super;
}

a {
	color: inherit;
	text-decoration: underline;
	transition: color 0.25s ease;
}

#wrapper {
	-webkit-overflow-scrolling: touch;
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: var(--viewport-height);
	overflow: hidden;
	position: relative;
	z-index: 2;
}

#main {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--border-radius-tl: 0;
	--border-radius-tr: 0;
	--border-radius-br: 0;
	--border-radius-bl: 0;
	align-items: center;
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
	justify-content: center;
	max-width: 100%;
	position: relative;
	text-align: var(--alignment);
	z-index: 1;
	transition: opacity 1s ease 0s,transform 1s ease 0s;
}

#main > .inner {
	--padding-horizontal: 3rem;
	--padding-vertical: 12rem;
	--spacing: 0.75rem;
	--width: 43rem;
	border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
	max-width: 100%;
	position: relative;
	width: var(--width);
	z-index: 1;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#main > .inner > * {
	margin-top: var(--spacing);
	margin-bottom: var(--spacing);
}

#main > .inner > :first-child {
	margin-top: 0 !important;
}

#main > .inner > :last-child {
	margin-bottom: 0 !important;
}

#main > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
	width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
}

#main > .inner > .full:first-child {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#main > .inner > .full:last-child {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#main > .inner > .full.screen {
	border-radius: 0 !important;
	max-width: 100vw;
	position: relative;
	width: 100vw;
	left: 50%;
	margin-left: -50vw;
	right: auto;
}

body.is-loading #main {
	opacity: 0;
	transform: scale(0.97);
}

body.is-instant #main, body.is-instant #main > .inner > *,body.is-instant #main > .inner > section > *  {
	transition: none !important;
}

body.is-instant:after {
	display: none !important;
	transition: none !important;
}

@keyframes loading-spinner {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.deferred:before {
	content: '';
	display: block;
	width: 4rem;
	height: 4rem;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -2rem 0 0 -2rem;
	animation: loading-spinner 1s infinite linear;
	transition: opacity 0.25s ease;
	transition-delay: 0.5s;
	opacity: 0;
	z-index: -1;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNmZmY7IHN0cm9rZS13aWR0aDogMS41cHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 3rem;
}

.deferred.loading:before {
	opacity: 0.35;
	z-index: 0;
}

.image {
	display: block;
	line-height: 0;
	max-width: 100%;
	position: relative;
}

.image .frame {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	vertical-align: top;
	width: 100%;
}

.image .frame img {
	border-radius: 0 !important;
	max-width: 100%;
	vertical-align: top;
	width: inherit;
}

.image.full .frame {
	display: block;
}

.image.full:first-child .frame {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.image.full:last-child .frame {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#image01 {
	text-align: center;
}

#image01 .frame {
	width: 21.125rem;
	height: 6.5rem;
	transition: none;
}

#image01 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
}

#image01 .frame img {
	transition: none;
}

#image02 {
	text-align: center;
}

#image02 .frame {
	width: 25rem;
	transition: none;
}

#image02 .frame img {
	transition: none;
}

#image04 {
	text-align: center;
}

#image04:not(:first-child) {
	margin-top: 1rem !important;
}

#image04:not(:last-child) {
	margin-bottom: 1rem !important;
}

#image04 .frame {
	width: 39.125rem;
	border-radius: 1.25rem;
	box-shadow: 0.167rem 0.186rem 0.375rem 0rem #000000;
	transition: none;
}

#image04 .frame img {
	transition: none;
}

#image05 {
	text-align: center;
}

#image05 .frame {
	width: 39.125rem;
	border-radius: 1.25rem;
	box-shadow: 0.167rem 0.186rem 0.375rem 0rem #000000;
	transition: none;
}

#image05 .frame img {
	transition: none;
}

#image06 {
	text-align: center;
}

#image06:not(:first-child) {
	margin-top: 1rem !important;
}

#image06:not(:last-child) {
	margin-bottom: 1rem !important;
}

#image06 .frame {
	width: 39.125rem;
	border-radius: 1.25rem;
	box-shadow: 0.167rem 0.186rem 0.375rem 0rem #000000;
	transition: none;
}

#image06 .frame img {
	transition: none;
}

#image07 {
	text-align: center;
}

#image07 .frame {
	width: 39.125rem;
	border-radius: 1.25rem;
	box-shadow: 0.167rem 0.186rem 0.375rem 0rem #000000;
	transition: none;
}

#image07 .frame img {
	transition: none;
}

#image10 {
	text-align: center;
}

#image10:not(:first-child) {
	margin-top: 1rem !important;
}

#image10:not(:last-child) {
	margin-bottom: 1rem !important;
}

#image10 .frame {
	width: 39.125rem;
	border-radius: 1.25rem;
	box-shadow: 0.167rem 0.186rem 0.375rem 0rem #000000;
	transition: none;
}

#image10 .frame img {
	transition: none;
}

#image11 {
	text-align: center;
}

#image11:not(:first-child) {
	margin-top: 1rem !important;
}

#image11:not(:last-child) {
	margin-bottom: 1rem !important;
}

#image11 .frame {
	width: 39.125rem;
	border-radius: 1.25rem;
	box-shadow: 0.167rem 0.186rem 0.375rem 0rem #000000;
	transition: none;
}

#image11 .frame img {
	transition: none;
}

#image12 {
	text-align: center;
}

#image12:not(:first-child) {
	margin-top: 1rem !important;
}

#image12:not(:last-child) {
	margin-bottom: 1rem !important;
}

#image12 .frame {
	width: 39.125rem;
	border-radius: 1.25rem;
	box-shadow: 0.167rem 0.186rem 0.375rem 0rem #000000;
	transition: none;
}

#image12 .frame img {
	transition: none;
}

#image13 {
	text-align: center;
}

#image13:not(:first-child) {
	margin-top: 1rem !important;
}

#image13:not(:last-child) {
	margin-bottom: 1rem !important;
}

#image13 .frame {
	width: 39.125rem;
	border-radius: 1.25rem;
	box-shadow: 0.167rem 0.186rem 0.375rem 0rem #000000;
	transition: none;
}

#image13 .frame img {
	transition: none;
}

#image03 {
	text-align: center;
}

#image03:not(:first-child) {
	margin-top: 1rem !important;
}

#image03:not(:last-child) {
	margin-bottom: 1rem !important;
}

#image03 .frame {
	width: 39.125rem;
	border-radius: 1.25rem;
	box-shadow: 0.167rem 0.186rem 0.375rem 0rem #000000;
	transition: none;
}

#image03 .frame img {
	transition: none;
}

#image09 {
	text-align: center;
}

#image09 .frame {
	max-width: 100%;
	width: auto;
	transition: none;
}

#image09 .frame img {
	transition: none;
}

#image08 .frame {
	width: 100vw;
	transition: none;
}

#image08 .frame img {
	transition: none;
}

h1, h2, h3, p {
	direction: var(--site-language-direction);
	position: relative;
}

h1 span.p, h2 span.p, h3 span.p, p span.p {
	display: block;
	position: relative;
}

h1 span[style], h2 span[style], h3 span[style], p span[style], h1 strong, h2 strong, h3 strong, p strong, h1 a, h2 a, h3 a, p a, h1 code, h2 code, h3 code, p code, h1 mark, h2 mark, h3 mark, p mark, h1 spoiler-text, h2 spoiler-text, h3 spoiler-text, p spoiler-text {
	-webkit-text-fill-color: currentcolor;
}

#text02 {
	text-align: center;
	color: #C4043E;
	font-family: 'Alexandria', sans-serif;
	letter-spacing: -0.075rem;
	width: 100%;
	font-size: 1.125em;
	line-height: 1.25;
	font-weight: 400;
}

#text02 a {
	color: #FFA078;
	text-decoration: underline;
}

#text02 a:hover {
	text-decoration: none;
}

#text02 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text03 {
	text-align: center;
	color: #DB0042;
	font-family: 'Alexandria', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 7em;
	line-height: 1.25;
	font-weight: 400;
	text-shadow: 0.113rem 0.423rem 0rem #FCE40D;
}

#text03 strong {
	color: #C4043E;
}

#text03 a {
	color: #FFA078;
	text-decoration: underline;
}

#text03 a:hover {
	text-decoration: none;
}

#text03 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text04 {
	text-align: center;
	color: #C4043E;
	font-family: 'Alexandria', sans-serif;
	letter-spacing: -0.075rem;
	width: 100%;
	font-size: 1.75em;
	line-height: 1.25;
	font-weight: 400;
}

#text04 a {
	color: #FFA078;
	text-decoration: underline;
}

#text04 a:hover {
	text-decoration: none;
}

#text04 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text01:not(:first-child) {
	margin-top: 0.25rem !important;
}

#text01:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

#text01 {
	text-align: center;
	color: #C4043E;
	font-family: 'Alexandria', sans-serif;
	letter-spacing: -0.075rem;
	width: 100%;
	font-size: 1.75em;
	line-height: 1.25;
	font-weight: 400;
}

#text01 a {
	color: #FFA078;
	text-decoration: underline;
}

#text01 a:hover {
	text-decoration: none;
}

#text01 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text07:not(:first-child) {
	margin-top: 0.25rem !important;
}

#text07:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

#text07 {
	text-align: center;
	color: #C4043E;
	font-family: 'Alexandria', sans-serif;
	letter-spacing: -0.075rem;
	width: 100%;
	font-size: 1.75em;
	line-height: 1.25;
	font-weight: 400;
}

#text07 a {
	color: #FFA078;
	text-decoration: underline;
}

#text07 a:hover {
	text-decoration: none;
}

#text07 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text06:not(:first-child) {
	margin-top: 0.25rem !important;
}

#text06:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

#text06 {
	text-align: center;
	color: rgba(196,4,62,0.431);
	font-family: 'Alexandria', sans-serif;
	letter-spacing: -0.075rem;
	width: 100%;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 400;
}

#text06 strong {
	color: #C4043E;
}

#text06 a {
	color: #FFA078;
	text-decoration: underline;
}

#text06 a:hover {
	text-decoration: none;
}

#text06 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text05:not(:first-child) {
	margin-top: 0.25rem !important;
}

#text05:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

#text05 {
	text-align: center;
	color: #C4043E;
	font-family: 'Alexandria', sans-serif;
	letter-spacing: -0.075rem;
	width: 100%;
	font-size: 1.75em;
	line-height: 1.25;
	font-weight: 400;
}

#text05 a {
	color: #FFA078;
	text-decoration: underline;
}

#text05 a:hover {
	text-decoration: none;
}

#text05 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

hr {
	align-items: center;
	border: 0;
	display: flex;
	justify-content: var(--flex-alignment);
	min-height: 1rem;
	padding: 0;
	position: relative;
	width: 100%;
}

hr:before {
	content: '';
}

#divider02 {
	justify-content: center;
}

#divider02:before {
	width: 32rem;
	background-color: #000000;
	height: 1px;
	border-radius: 0px;
}

#divider03:not(:first-child) {
	margin-top: 1.25rem !important;
}

#divider03:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

#divider03 {
	justify-content: center;
}

#divider03:before {
	width: 32rem;
	background-color: #000000;
	height: 1px;
	border-radius: 0px;
}

#divider05:not(:first-child) {
	margin-top: 1.25rem !important;
}

#divider05:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

#divider05 {
	justify-content: center;
}

#divider05:before {
	width: 32rem;
	background-color: #000000;
	height: 1px;
	border-radius: 0px;
}

hr.style1:not(:first-child) {
	margin-top: 1.25rem !important;
}

hr.style1:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

hr.style1 {
	justify-content: center;
}

hr.style1:before {
	width: 32rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

#divider01:not(:first-child) {
	margin-top: 1.25rem !important;
}

#divider01:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

#divider01 {
	justify-content: center;
}

#divider01:before {
	width: 32rem;
	background-color: #000000;
	height: 1px;
	border-radius: 0px;
}

.buttons {
	cursor: default;
	display: flex;
	justify-content: var(--flex-alignment);
	letter-spacing: 0;
	padding: 0;
}

.buttons li {
	max-width: 100%;
}

.buttons li a {
	align-items: center;
	justify-content: center;
	max-width: 100%;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	white-space: nowrap;
}

#buttons04 {
	justify-content: center;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons04 li a {
	display: inline-block;
	width: 15.875rem;
	height: auto;
	line-height: 1.640625rem;
	padding: 0 1.3125rem;
	vertical-align: middle;
	font-family: 'Alexandria', sans-serif;
	letter-spacing: 0.075rem;
	padding-left: calc(0.075rem + 1.3125rem);
	font-size: 1.375em;
	font-weight: 600;
	border-radius: 1rem;
	box-shadow: 0.167rem 0.186rem 0.375rem 0rem #000000;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: 0.8203125rem;
	padding-top: 0.8203125rem;
	white-space: normal;
	text-align: center;
	transition: transform 0s ease, color 0s ease, background-color 0s ease, border-color 0s ease;
}

#buttons04 .button {
	background-color: #DB0042;
	color: #FFFFFF;
	background-image: linear-gradient(327deg, #FC800D 0%, rgba(219,0,66,0.008) 24%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

#buttons04 li a:hover {
	transform: scale(0.975);
}

#buttons04 .n01 {
	background-color: #DB0042;
}

#buttons03 {
	justify-content: center;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons03:not(:first-child) {
	margin-top: 1.75rem !important;
}

#buttons03:not(:last-child) {
	margin-bottom: 1.75rem !important;
}

#buttons03 li a {
	display: inline-block;
	width: 14.125rem;
	height: auto;
	line-height: 1.640625rem;
	padding: 0 1.3125rem;
	vertical-align: middle;
	font-family: 'Alexandria', sans-serif;
	letter-spacing: 0.075rem;
	padding-left: calc(0.075rem + 1.3125rem);
	font-size: 1.375em;
	font-weight: 600;
	border-radius: 1rem;
	box-shadow: 0.167rem 0.186rem 0.375rem 0rem #000000;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: 0.8203125rem;
	padding-top: 0.8203125rem;
	white-space: normal;
	text-align: var(--alignment);
	transition: transform 0s ease, color 0s ease, background-color 0s ease, border-color 0s ease;
}

#buttons03 .button {
	background-color: #DB0042;
	color: #FFFFFF;
	background-image: linear-gradient(327deg, #FC800D 0%, rgba(219,0,66,0.008) 24%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

#buttons03 li a:hover {
	transform: scale(0.975);
}

#buttons01 {
	justify-content: center;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons01 li a {
	display: inline-block;
	width: 19.375rem;
	height: auto;
	line-height: 1.640625rem;
	padding: 0 1.3125rem;
	vertical-align: middle;
	font-family: 'Alexandria', sans-serif;
	letter-spacing: 0.075rem;
	padding-left: calc(0.075rem + 1.3125rem);
	font-size: 1.375em;
	font-weight: 600;
	border-radius: 1rem;
	box-shadow: 0.167rem 0.186rem 0.375rem 0rem #000000;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: 0.8203125rem;
	padding-top: 0.8203125rem;
	white-space: normal;
	text-align: var(--alignment);
	transition: transform 0s ease, color 0s ease, background-color 0s ease, border-color 0s ease;
}

#buttons01 .button {
	background-color: #DB0042;
	color: #FFFFFF;
	background-image: linear-gradient(327deg, #FC800D 0%, rgba(219,0,66,0.008) 24%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

#buttons01 li a:hover {
	transform: scale(0.975);
}

#buttons02 {
	justify-content: center;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons02:not(:first-child) {
	margin-top: 1.75rem !important;
}

#buttons02:not(:last-child) {
	margin-bottom: 1.75rem !important;
}

#buttons02 li a {
	display: inline-block;
	width: 15.875rem;
	height: auto;
	line-height: 1.640625rem;
	padding: 0 1.3125rem;
	vertical-align: middle;
	font-family: 'Alexandria', sans-serif;
	letter-spacing: 0.075rem;
	padding-left: calc(0.075rem + 1.3125rem);
	font-size: 1.375em;
	font-weight: 600;
	border-radius: 1rem;
	box-shadow: 0.167rem 0.186rem 0.375rem 0rem #000000;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: 0.8203125rem;
	padding-top: 0.8203125rem;
	white-space: normal;
	text-align: center;
	transition: transform 0s ease, color 0s ease, background-color 0s ease, border-color 0s ease;
}

#buttons02 .button {
	background-color: #DB0042;
	color: #FFFFFF;
	background-image: linear-gradient(327deg, #FC800D 0%, rgba(219,0,66,0.008) 24%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

#buttons02 li a:hover {
	transform: scale(0.975);
}

#buttons02 .n01 {
	background-color: #DB0042;
}

.container {
	position: relative;
}

.container > .wrapper {
	vertical-align: top;
	position: relative;
	max-width: 100%;
	border-radius: inherit;
}

.container > .wrapper > .inner {
	vertical-align: top;
	position: relative;
	max-width: 100%;
	border-radius: inherit;
	text-align: var(--alignment);
}

#main .container.full:first-child > .wrapper {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#main .container.full:last-child > .wrapper {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#main .container.full:first-child > .wrapper > .inner {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#main .container.full:last-child > .wrapper > .inner {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container01 {
	--alignment: right;
	--flex-alignment: flex-end;
	--indent-left: 0;
	--indent-right: 1;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container01 > .wrapper > .inner {
	--gutters: 4rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container01 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container01.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container01.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container01.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container01.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container01.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container01.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container01.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container01.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container01.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container01.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container01.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container01.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container01.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container01.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container01.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container01.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container01.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container01.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container01.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container01.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container02 {
	--alignment: right;
	--flex-alignment: flex-end;
	--indent-left: 0;
	--indent-right: 1;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#container02 > .wrapper > .inner {
	--gutters: 4rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container02 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container02.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container02.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container02.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container02.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container02.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container02.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container02.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container02.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container02.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container02.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container02.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container02.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container02.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container02.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container02.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container02.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container02.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container02.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

#container02.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container02.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.gallery .inner {
	display: inline-block;
	max-width: 100%;
	vertical-align: middle;
}

.gallery ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: var(--flex-alignment);
}

.gallery ul li {
	position: relative;
}

.gallery ul li .thumbnail {
	border-radius: inherit;
	position: relative;
}

.gallery ul li .frame {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
}

.gallery ul li img {
	margin: 0;
	max-width: 100%;
	vertical-align: top;
	width: auto;
}

.gallery ul li .caption {
	width: 100%;
}

.gallery ul li .caption p {
	width: 100%;
}

#gallery01 .inner {
	max-width: 100%;
}

#gallery01 ul li {
	border-radius: 0rem;
	display: inline-block;
}

#gallery01 ul li .frame {
	border-radius: 0rem;
}

#gallery01 ul {
	gap: 0.5rem;
}

#gallery01 ul li .thumbnail {
	display: block;
	transition: none;
}

#gallery01 ul li img {
	height: auto;
	max-height: 8.625rem;
}

#gallery01 ul li .thumbnail img {
	transition: none;
}

#gallery03 .inner {
	max-width: 100%;
}

#gallery03 ul li {
	border-radius: 0rem;
	display: inline-block;
}

#gallery03 ul li .frame {
	border-radius: 0rem;
}

#gallery03 ul {
	gap: 0.5rem;
}

#gallery03 ul li .thumbnail {
	display: block;
	transition: none;
}

#gallery03 ul li img {
	height: auto;
	max-height: 15.5rem;
}

#gallery03 ul li .thumbnail img {
	transition: none;
}

#gallery02 .inner {
	max-width: 100%;
}

#gallery02 ul li {
	border-radius: 0rem;
	display: inline-block;
}

#gallery02 ul li .frame {
	border-radius: 0rem;
}

#gallery02 ul {
	gap: 0.5rem;
}

#gallery02 ul li .thumbnail {
	display: block;
	transition: none;
}

#gallery02 ul li img {
	height: auto;
	max-height: 15.5rem;
}

#gallery02 ul li .thumbnail img {
	transition: none;
}

.links {
	display: flex;
	justify-content: var(--flex-alignment);
	letter-spacing: 0;
	line-height: 1.5;
	padding: 0;
}

.links li {
	position: relative;
}

.links li a {
	direction: var(--site-language-direction);
	display: block;
}

#links01 {
	gap: 0.5rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Alexandria', sans-serif;
	letter-spacing: -0.075rem;
	margin-right: 0.075rem;
	font-size: 1em;
	font-weight: 400;
}

#links01 li a {
	color: #C4043E;
	text-decoration: none;
}

#links01 li a:hover {
	text-decoration: underline;
}

@media (max-width: 1920px) {
	
}

@media (max-width: 1680px) {
	html {
		font-size: 11pt;
	}
}

@media (max-width: 1280px) {
	html {
		font-size: 11pt;
	}
}

@media (max-width: 1024px) {
	
}

@media (max-width: 980px) {
	html {
		font-size: 9pt;
	}
}

@media (max-width: 736px) {
	html {
		font-size: 9pt;
	}
	
	
	
	#main > .inner {
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
		--spacing: 0.75rem;
	}
	
	#image01 .frame {
		width: 21.125rem;
		height: 8.125rem !important;
	}
	
	#image01 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image02 .frame {
		width: 25rem;
	}
	
	#image04:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#image04:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#image04 .frame {
		width: 39.125rem;
	}
	
	#image05 .frame {
		width: 39.125rem;
	}
	
	#image06:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#image06:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#image06 .frame {
		width: 39.125rem;
	}
	
	#image07 .frame {
		width: 39.125rem;
	}
	
	#image10:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#image10:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#image10 .frame {
		width: 39.125rem;
	}
	
	#image11:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#image11:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#image11 .frame {
		width: 39.125rem;
	}
	
	#image12:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#image12:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#image12 .frame {
		width: 39.125rem;
	}
	
	#image13:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#image13:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#image13 .frame {
		width: 39.125rem;
	}
	
	#image03:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#image03:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#image03 .frame {
		width: 39.125rem;
	}
	
	#image08 .frame {
		width: 100vw;
	}
	
	#text02 {
		letter-spacing: -0.065625rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	#text03 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 5em;
		line-height: 1.25;
	}
	
	#text04 {
		letter-spacing: -0.065625rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.25;
	}
	
	#text01:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	#text01:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	#text01 {
		letter-spacing: -0.065625rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.25;
	}
	
	#text07:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	#text07:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	#text07 {
		letter-spacing: -0.065625rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.25;
	}
	
	#text06:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	#text06:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	#text06 {
		letter-spacing: -0.065625rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.25;
	}
	
	#text05:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	#text05:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	#text05 {
		letter-spacing: -0.065625rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.25;
	}
	
	#divider02:before {
		width: 32rem;
	}
	
	#divider03:not(:first-child) {
		margin-top: 1.25rem !important;
	}
	
	#divider03:not(:last-child) {
		margin-bottom: 1.25rem !important;
	}
	
	#divider03:before {
		width: 32rem;
	}
	
	#divider05:not(:first-child) {
		margin-top: 1.25rem !important;
	}
	
	#divider05:not(:last-child) {
		margin-bottom: 1.25rem !important;
	}
	
	#divider05:before {
		width: 32rem;
	}
	
	hr.style1:not(:first-child) {
		margin-top: 1.25rem !important;
	}
	
	hr.style1:not(:last-child) {
		margin-bottom: 1.25rem !important;
	}
	
	hr.style1:before {
		width: 32rem;
	}
	
	#divider01:not(:first-child) {
		margin-top: 1.25rem !important;
	}
	
	#divider01:not(:last-child) {
		margin-bottom: 1.25rem !important;
	}
	
	#divider01:before {
		width: 32rem;
	}
	
	#buttons04 {
		gap: 0.875rem;
	}
	
	#buttons04 li a {
		letter-spacing: 0.075rem;
		padding-left: calc(0.075rem + 1.3125rem);
		font-size: 1.375em;
	}
	
	#buttons03 {
		gap: 0.875rem;
	}
	
	#buttons03:not(:first-child) {
		margin-top: 1.3125rem !important;
	}
	
	#buttons03:not(:last-child) {
		margin-bottom: 1.3125rem !important;
	}
	
	#buttons03 li a {
		letter-spacing: 0.075rem;
		padding-left: calc(0.075rem + 1.3125rem);
		font-size: 1.375em;
	}
	
	#buttons01 {
		gap: 0.875rem;
	}
	
	#buttons01 li a {
		letter-spacing: 0.075rem;
		padding-left: calc(0.075rem + 1.3125rem);
		font-size: 1.375em;
	}
	
	#buttons02 {
		gap: 0.875rem;
	}
	
	#buttons02:not(:first-child) {
		margin-top: 1.3125rem !important;
	}
	
	#buttons02:not(:last-child) {
		margin-bottom: 1.3125rem !important;
	}
	
	#buttons02 li a {
		letter-spacing: 0.075rem;
		padding-left: calc(0.075rem + 1.3125rem);
		font-size: 1.375em;
	}
	
	#container01 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
	}
	
	#container01 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container01.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container01.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container01.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container01.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container01.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container01.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container01.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container01.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container01.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container01.columns > .wrapper > .inner > div:first-of-type, #container01.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container01.columns > .wrapper > .inner > div:last-of-type, #container01.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container01.columns > .wrapper > .inner > div:first-of-type, #container01.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > div:last-of-type, #container01.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container02 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
	}
	
	#container02 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container02.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container02.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container02.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container02.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type, #container02.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type, #container02.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type, #container02.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type, #container02.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#gallery01 ul li img {
		max-height: 6.46875rem;
	}
	
	#gallery03 ul li img {
		max-height: 11.625rem;
	}
	
	#gallery02 ul li img {
		max-height: 11.625rem;
	}
	
	#links01 {
		gap: 0.5rem;
		letter-spacing: -0.065625rem;
		margin-right: 0.065625rem;
		font-size: 1em;
	}
}

@media (max-width: 480px) {
	#main > .inner {
		--spacing: 0.65625rem;
	}
	
	#image01 .frame {
		height: 6.5rem !important;
	}
	
	#buttons04 li a {
		width: 15.875rem;
	}
	
	#buttons03 li a {
		width: 14.125rem;
	}
	
	#buttons01 li a {
		width: 19.375rem;
	}
	
	#buttons02 li a {
		width: 15.875rem;
	}
}

@media (max-width: 360px) {
	#main > .inner {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
		--spacing: 0.5625rem;
	}
	
	#image01 .frame {
		height: 5.6875rem !important;
	}
	
	#text02 {
		font-size: 1.125em;
	}
	
	#text03 {
		font-size: 5em;
	}
	
	#text04 {
		font-size: 1.5em;
	}
	
	#text01 {
		font-size: 1.5em;
	}
	
	#text07 {
		font-size: 1.5em;
	}
	
	#text06 {
		font-size: 1em;
	}
	
	#text05 {
		font-size: 1.5em;
	}
	
	#buttons04 {
		gap: 0.65625rem;
	}
	
	#buttons03 {
		gap: 0.65625rem;
	}
	
	#buttons01 {
		gap: 0.65625rem;
	}
	
	#buttons02 {
		gap: 0.65625rem;
	}
	
	#container01 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#container02 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	#gallery01 ul {
		gap: 0.375rem;
	}
	
	#gallery03 ul {
		gap: 0.375rem;
	}
	
	#gallery02 ul {
		gap: 0.375rem;
	}
	
	#links01 {
		gap: 0.375rem;
		font-size: 1em;
	}
}