* {
	margin: 0;
	padding: 0;
}
:root{
	--red: #ff6f61;
	--yellow: #ffeddd;
	--brown: #623915;
	--black: #333;
	--white: #fff;
}
body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	text-align: center;
	font-size: 18px;
	color: var(--brown);
	font-weight: 500;
	line-height: 1.5;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 16px;
	}
}

.sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.sp {
		display: inline;
	}
}

img {
	width: 100%
}
button {
	border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}
h1 {
	font-size: 32px;
}
@media screen and (max-width: 768px) {
	h1 {
		font-size: 20px;
	}
}
h2 {
	font-size: 24px;
	text-align: left;
	padding-bottom: 10px;
	border-bottom: 3px solid var(--brown);
	position: relative;
	margin-bottom: 30px;
}
h2::before {
	position: absolute;
	content: "";
	background: var(--red);
	width: 5rem;
	height: 3px;
	bottom: -3px;
}


header {
	padding-bottom: 1.4rem;
	background: var(--red);
	color: var(--white);
}
header .title {
	padding: 1.4rem;
	display: flex;
	align-items: center;
	gap:0.4rem;
}
header .title h1 {
	flex-grow: 2;
}
header .title .logo,
header .title .center{
    width: 8rem;
    max-width: 200px;
}
@media screen and (max-width: 768px) {
	header .title {
		padding: 1rem;
		flex-direction: column;
	}
	header .title h1 {
		flex-grow: 1;
	}
	header .title .center {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.leadtext {
		padding-left: 1rem;
		padding-right: 1rem;
		text-align: left;
	}
}

main {
	background: var(--yellow);
	display: flex;
    flex-direction: column;
    align-items: center;
	padding: 30px;
	gap: 30px;
}
.main-contener {
	display: flex;
	align-items: center;
	gap: 30px;
}
@media screen and (max-width: 768px) {
	.main-contener {
		flex-direction: column;
	}
}
.main-contener .login-flow {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 30px;
}
.main-contener dl {
	display: flex;
	gap: 16px;
	text-align: left;
}
.main-contener dl dt {
	background: var(--red);
	width: 24px;
	height: 24px;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--yellow);
	font-weight: 700;
	line-height: 0.1;
	flex-shrink: 0;
}
.main-contener p {
	color: var(--red);
}
.login-btn {
	width: 350px;
	height: 80px;
	border-radius: 80px;
	font-size: 24px;
	font-weight: 700;
	background: var(--red);
	color: var(--white);
	font-family: "Zen Kaku Gothic New", sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.login-btn::after {
	content: "";
	background: url("/asset/images/play-solid-full.svg") no-repeat center;
	background-size: cover;
 	width: 28px;
	height: 28px;
}

footer {
	background: var(--brown);
	height: 40px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
footer small {
	font-size: 14px;
}