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: auto;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scale(1);
	width: calc(100vw - 30rem);
	z-index: 0;
	right: 0;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cfilter%20id%3D%22noise%22%3E%20%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%220.875%22%20result%3D%22noise%22%20%2F%3E%20%3CfeColorMatrix%20type%3D%22matrix%22%20values%3D%220.46875%200%200%200%200%200%200.39453125%200%200%200%200%200%200.25390625%200%200%200%200%200%200.2890625%200%22%20%2F%3E%20%3C%2Ffilter%3E%20%3Crect%20filter%3D%22url%28%23noise%29%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20fill%3D%22transparent%22%20opacity%3D%221%22%20%2F%3E%3C%2Fsvg%3E'), url('images/bg.jpg');
	background-size: 512px, cover;
	background-position: center, center;
	background-repeat: repeat, no-repeat;
	background-color: #FFFFFF;
}

body:after {
	background-color: #CCC3B1;
	content: '';
	display: block;
	pointer-events: none;
	position: fixed;
	transform: scale(1);
	z-index: 1;
	height: 100%;
	left: 0;
	opacity: 0;
	top: 0;
	transition: opacity 1s ease-in-out 1s, visibility 1s 1s;
	visibility: hidden;
	width: 100%;
}

body.is-loading:after {
	opacity: 1;
	visibility: visible;
}

: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;
	--site-language-margin-left: 0;
	--site-language-margin-right: auto;
	--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;
}

a[onclick]:not([href]) {
	cursor: pointer;
}

unloaded-script {
	display: none;
}

#wrapper {
	-webkit-overflow-scrolling: touch;
	align-items: stretch;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	min-height: var(--viewport-height);
	overflow: hidden;
	position: relative;
	z-index: 2;
	padding: 0 2.25rem 0 0;
}

#main {
	--alignment: var(--site-language-alignment);
	--flex-alignment: var(--site-language-flex-alignment);
	--indent-left: var(--site-language-indent-left);
	--indent-right: var(--site-language-indent-right);
	--margin-left: var(--site-language-margin-left);
	--margin-right: var(--site-language-margin-right);
	--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;
	background-color: #FCF2DE;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%22640%22%20height%3D%22480%22%20viewBox%3D%220%200%20640%20480%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%3E%20%3Aroot%20%7B%20opacity%3A%200.13%3B%20%7D%20path%20%7B%20fill%3A%20%23000000%3B%20stroke%3A%20none%3B%20stroke-width%3A%200%3B%20vector-effect%3A%20non-scaling-stroke%3B%20%7D%20path.z0%20%7B%20fill%3A%20%237f7f7f%20%7D%20path.z1%20%7B%20fill%3A%20%235e5e5e%20%7D%20path.z2%20%7B%20fill%3A%20%233d3d3d%20%7D%20path.z3%20%7B%20fill%3A%20%231c1c1c%20%7D%20%3C%2Fstyle%3E%20%3Cpath%20d%3D%22m%200%2C0%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%200%2C480%20l%20-800%2C0%22%20transform%3D%22translate%28-3.491%2C113.1429%29%22%20class%3D%22z0%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22m%200%2C30%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%200%2C450%20l%20-960%2C0%22%20transform%3D%22translate%28-4.9806%2C175.4805%29%22%20class%3D%22z1%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22m%200%2C30%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%200%2C450%20l%20-1280%2C0%22%20transform%3D%22translate%28-18.8086%2C237.8182%29%22%20class%3D%22z2%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22m%200%2C-30%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%200%2C510%20l%20-1280%2C0%22%20transform%3D%22translate%28-9.3618%2C300.1558%29%22%20class%3D%22z3%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22m%200%2C0%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%2020%2C-15%20l%2020%2C-15%20l%2020%2C15%20l%200%2C480%20l%20-1280%2C0%22%20transform%3D%22translate%28-11.3754%2C362.4935%29%22%20class%3D%22z4%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
	background-size: auto 100%;
	background-position: center;
	background-repeat: repeat-x;
	box-shadow: 0rem 1.75rem 7.625rem 0rem rgba(0,0,0,0.078);
	transition: opacity 1s ease 0.125s,transform 1s ease 0.125s;
}

#main > .inner {
	--padding-horizontal: 3rem;
	--padding-vertical: 3rem;
	--spacing: 1.5rem;
	--width: 30rem;
	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: 0;
	margin-left: calc(var(--padding-horizontal) * -1);
	right: auto;
}

body.is-loading #main {
	opacity: 0;
	transform: translateX(0.6375rem);
}

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;
}

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;
}

#text01 {
	color: rgba(0,0,0,0.671);
	font-family: 'Inconsolata', monospace;
	font-size: 2.75em;
	line-height: 1;
	font-weight: 400;
}

#text01 a {
	text-decoration: underline;
}

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

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

#text12 {
	color: rgba(0,0,0,0.788);
	font-family: 'Inconsolata', monospace;
	font-size: 1em;
	line-height: 1.75;
	font-weight: 400;
}

#text12 a {
	text-decoration: underline;
}

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

#text12 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: '';
}

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

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

hr.style1:before {
	width: 100%;
	height: 1.5rem;
	background-size: auto 62.6%;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20preserveAspectRatio%3D%22none%22%3E%3Cstyle%3Epath%20%7Bfill%3A%20none%3Bstroke-width%3A%201px%3Bstroke%3A%20rgba(0,0,0,0.212)%3Bstroke-linecap%3Around%3Bvector-effect%3A%20non-scaling-stroke%3B%7D%3C%2Fstyle%3E%3Cpath%20d%3D%22M-8%2C400l264-288%20M520%2C400L256%2C112%22%20%2F%3E%3C%2Fsvg%3E');
	background-position: center center;
	background-repeat: repeat-x;
}

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

.buttons li {
	max-width: 100%;
	text-align: var(--alignment);
}

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

#buttons01 {
	gap: 0.625rem;
	flex-direction: column;
	flex-wrap: nowrap;
}

#buttons01 li a {
	display: inline-flex;
	width: 100vw;
	height: auto;
	line-height: 1.875rem;
	padding: 0 1.5rem;
	vertical-align: middle;
	font-family: 'Inconsolata', monospace;
	font-size: 1em;
	font-weight: 500;
	border-radius: 1.25rem;
	flex-direction: row-reverse;
	justify-content: flex-end;
	padding-bottom: 0.9375rem;
	padding-top: 0.9375rem;
	white-space: normal;
	align-items: flex-start;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons01 li a svg {
	display: block;
	fill: rgba(0,0,0,0.569);
	flex-grow: 0;
	flex-shrink: 0;
	height: 1.875rem;
	min-width: 16px;
	pointer-events: none;
	width: 1.875em;
	margin-left: 1rem;
	margin-right: calc(-0.125em + 0rem);
	transition: fill 0.375s ease;
}

#buttons01 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
	flex-grow: 1;
	flex-shrink: 1;
	text-align: left;
	width: 100%;
}

#buttons01 .button {
	background-color: #FFBA52;
	color: rgba(0,0,0,0.569);
}

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

#buttons01 .n01 {
	background-color: #FFC369;
}

#buttons01 .n01:hover {
	background-color: #FFD159 !important;
}

#buttons01 .n02 {
	background-color: #F7955E;
}

#buttons01 .n02:hover {
	background-color: #FFC266 !important;
}

#buttons01 .n03 {
	background-color: #FC6D8F;
}

#buttons01 .n03:hover {
	background-color: #FF7373 !important;
}

#buttons01 .n04 {
	background-color: #FF7A7A;
}

#buttons01 .n04:hover {
	background-color: #FF9C9C !important;
}

@media (max-width: 1920px) {
	body:before {
		width: calc(100vw - 30rem);
	}
	
	#main > .inner {
		--width: 30rem;
	}
}

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

@media (max-width: 1280px) {
	body:before {
		width: calc(100vw - 30rem);
	}
	
	html {
		font-size: 11pt;
	}
	
	#main > .inner {
		--width: 30rem;
	}
}

@media (max-width: 1024px) {
	body:before {
		width: calc(100vw - 25rem);
	}
	
	#main > .inner {
		--width: 25rem;
	}
}

@media (max-width: 980px) {
	html {
		font-size: 9pt;
	}
	
	body {
		display: flex;
		flex-direction: column;
		background-color: #FCF2DE;
	}
	
	body:before {
		flex-grow: 1;
		flex-shrink: 0;
		max-height: 45vh;
		overflow: hidden;
		position: relative;
		width: 100%;
	}
	
	#main {
		border-bottom: none;
		border-left: none;
		border-radius: 0;
		border-right: none;
		box-shadow: none;
		width: 100%;
		background-color: #FCF2DE;
	}
	
	#main > .inner {
		background: none;
		max-width: 75%;
		width: auto;
		transition: opacity 1s ease-in-out 0.125s;
	}
	
	#wrapper {
		height: auto !important;
		min-height: 0;
		padding: 0;
		box-shadow: -0rem -1.75rem 7.625rem 0rem rgba(0,0,0,0.078);
	}
	
	body.is-loading #main {
		opacity: 1;
		transform: none;
	}
	
	body.is-loading #main > .inner {
		opacity: 0;
	}
}

@media (max-width: 736px) {
	html {
		font-size: 13pt;
	}
	
	
	
	#main > .inner {
		--padding-horizontal: 2rem;
		--padding-vertical: 4rem;
		--spacing: 1.5rem;
		max-width: 100%;
	}
	
	#wrapper {
		padding: 0;
	}
	
	#text01 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.75em;
		line-height: 1;
	}
	
	#text12 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.75;
	}
	
	hr.style1:not(:first-child) {
		margin-top: 2rem !important;
	}
	
	hr.style1:not(:last-child) {
		margin-bottom: 2rem !important;
	}
	
	hr.style1:before {
		height: 1.5rem;
		background-size: auto 62.6%;
	}
	
	#buttons01 {
		gap: 0.625rem;
	}
	
	#buttons01 li a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	#buttons01 li a svg {
		width: 1.875em;
	}
}

@media (max-width: 480px) {
	#main > .inner {
		--spacing: 1.3125rem;
	}
	
	#wrapper {
		padding: 0;
	}
	
	#buttons01 li a {
		max-width: 100%;
		width: 100%;
	}
}

@media (max-width: 360px) {
	#main > .inner {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 3rem;
		--spacing: 1.125rem;
	}
	
	#wrapper {
		padding: 0;
	}
	
	#text01 {
		font-size: 2em;
	}
	
	#text12 {
		font-size: 1em;
	}
	
	#buttons01 {
		gap: 0.46875rem;
	}
}