@font-face {
	font-family: 'SUIT';
	font-weight: 100;
	src: url('./font/SUIT-Thin.woff2') format('woff2');
}
@font-face {
	font-family: 'SUIT';
	font-weight: 200;
	src: url('./font/SUIT-ExtraLight.woff2') format('woff2');
}
@font-face {
	font-family: 'SUIT';
	font-weight: 300;
	src: url('/font/SUIT-Light.woff2') format('woff2');
}
@font-face {
	font-family: 'SUIT';
	font-weight: 400;
	src: url('/font/SUIT-Regular.woff2') format('woff2');
}
@font-face {
	font-family: 'SUIT';
	font-weight: 500;
	src: url('/font/SUIT-Medium.woff2') format('woff2');
}
@font-face {
	font-family: 'SUIT';
	font-weight: 600;
	src: url('/font/SUIT-SemiBold.woff2') format('woff2');
}
@font-face {
	font-family: 'SUIT';
	font-weight: 700;
	src: url('/font/SUIT-Bold.woff2') format('woff2');
}
@font-face {
	font-family: 'SUIT';
	font-weight: 800;
	src: url('/font/SUIT-ExtraBold.woff2') format('woff2');
}
@font-face {
	font-family: 'SUIT';
	font-weight: 900;
	src: url('/font/SUIT-Heavy.woff2') format('woff2');
}
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, button,
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-weight: 400;
	vertical-align: baseline;
}
a, button {
	text-decoration: none;
	color: #444;
	border: none;
	cursor: pointer;
}
/* HTML5 display-role reset for older browsers */
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;
}
i, em{
	display: inline-block;
	font-style: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* add */
body {
    min-height: auto;
	max-width: 28rem;
    width: 100%;
    margin: 0 auto;
    font-family: 'SUIT', sans-serif;
	font-weight: 400;
	line-height: 1.3;
	color: #444;
	background-color: rgb(221, 230, 204);
}
main {
	margin-top: 0;
	margin: 0 auto;
	border-radius: 0 0 0 0;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
}
.section {
	box-sizing: border-box;
	text-align: center;
}
.inner {
    width: 100%;
    padding: 0 1.5rem;
}
img {
	width: 100%;
}
.toast {
	position: fixed;
	left: 50%;
	bottom: 4.375rem;
	z-index: 9999;
	display: none;
	padding: 1.25rem 1.5rem;
	background: rgba(52, 78, 60, 0.35);
	border-radius: 0.625rem;
	transform: translateX(-50%);
	animation: toastFade 1.6s ease;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.toast_txt{
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding:  0.625rem 1.5rem;
	font-size: 1.25rem;
	color: #444444;
	background: rgba(255, 255, 255, 0.65);
	border-radius:  0.625rem;
}
.toast_icon {
	width: 24px;
}

.toast--music {
	position: fixed;
	left: 50%;
	bottom: auto;
	top: 1.25rem;
	z-index: 9999;
	display: none;
	padding: 0.625rem 1.5rem;
	background: rgba(0, 0, 0, 0.65);
	border-radius: 50px;
	transform: translateX(-50%);
	animation: toastFadeReverse 1.6s ease;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.toast--music .toast_txt{
	padding: 0 0;
	font-size: 0.925rem;
	color: #fff;
	background: none;;
}
@keyframes toastFade {
	0%   { opacity: 0; transform: translate(-50%, 30px); }
	15%  { opacity: 1; transform: translate(-50%, 0px); }
	85%  { opacity: 1; transform: translate(-50%, 0px); }
	100% { opacity: 0; transform: translate(-50%, 30px); }
}
@keyframes toastFadeReverse {
	0%   { opacity: 0; transform: translate(-50%, 0px); }
	15%  { opacity: 1; transform: translate(-50%, 30px); }
	85%  { opacity: 1; transform: translate(-50%, 30px); }
	100% { opacity: 0; transform: translate(-50%, 00px); }
}

@media all and (min-width: 768px) {
	main {
		margin-top: 3rem;
		border-radius: 1.5rem 1.5rem 0 0;
		overflow: hidden;
	}
}