/* --------------------------------------------------------------------------------
reset
-------------------------------------------------------------------------------- */

*, *::before, *::after {
	box-sizing: border-box;
	font: inherit;
	border: none;
	margin: 0;
	padding: 0;
}
html {
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: transparent;
}
a {
	text-decoration: none;
	color: inherit;
}
ul, ol {
	list-style: none;
}
table {
	border-collapse: collapse;
}
iframe, img, svg, video {
	display: block;
}
img {
	max-width: 100%;
	height: auto;
}



/* --------------------------------------------------------------------------------
essential
-------------------------------------------------------------------------------- */

html {
	font-size: 16px;
}
body {
	text-align: justify;
	overflow-wrap: break-word;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.125rem;
	font-weight: 400;
	font-feature-settings: "palt";
	line-height: 2rem;
	color: #000000;
	letter-spacing: 0.05em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a.underline {
	text-decoration: underline;
}
a.color {
	transition: 0.25s color ease;
}
a.color:hover {
	color: #fe6700;
}
h1 {
	font-size: 1.5rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.25rem;
}
h4,
h5,
h6 {
	font-size: 1.125rem;
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
p.note {
	font-size: 0.875rem;
	line-height: 1.5rem;
}



/* --------------------------------------------------------------------------------
form
-------------------------------------------------------------------------------- */

input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=button],
input[type=submit],
button,
textarea,
select {
	max-width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.125rem;
	outline: none;
	border-radius: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
textarea,
select {
	vertical-align: top;
	color: #000000;
	border: 1px solid #cccccc;
	background-color: #ffffff;
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
select {
	height: 50px;
	line-height: calc(50px - 2px);
	padding: 0px 15px;
}
input[type=button],
input[type=submit],
button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 50px;
	text-align: center;
	color: #ffffff;
	border: none;
	cursor: pointer;
	background-color: #666666;
	transition: 0.25s background-color ease;
}
input[type=button]:hover,
input[type=submit]:hover,
button:hover {
	background-color: #000000;
}
input[type=radio],
input[type=checkbox],
input[type=radio]::before,
input[type=checkbox]::before,
label.alternate input[type=radio] + span,
label.alternate input[type=checkbox] + span {
	width: 30px;
	height: 30px;
}
input[type=radio],
input[type=checkbox],
label.alternate {
	margin-right: 5px;
}
input[type=radio],
input[type=checkbox] {
	position: relative;
	vertical-align: middle;
	transform: translateX(-9999px);
}
input[type=radio]::before,
input[type=checkbox]::before,
input[type=radio]::after,
input[type=checkbox]::after,
label.alternate {
	cursor: pointer;
}
input[type=radio]::before,
input[type=checkbox]::before,
input[type=radio]::after,
input[type=checkbox]::after,
label.alternate input[type=radio] + span::before,
label.alternate input[type=checkbox] + span::before {
	position: absolute;
	content: "";
}
input[type=radio]::before,
input[type=checkbox]::before,
input[type=radio]::after,
input[type=checkbox]::after {
	transform: translate(9999px, -1px);
}
input[type=radio]::before,
input[type=checkbox]::before,
label.alternate input[type=radio] + span,
label.alternate input[type=checkbox] + span {
	border: 2px solid #000000;
	background-color: #ffffff;
}
input[type=radio]::after,
input[type=checkbox]::after,
label.alternate input[type=radio] + span::before,
label.alternate input[type=checkbox] + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input[type=radio]:checked::after,
input[type=checkbox]:checked::after,
label.alternate input[type=radio]:checked + span::before,
label.alternate input[type=checkbox]:checked + span::before {
	opacity: 1;
}
input[type=radio]::before,
input[type=radio]::after,
label.alternate input[type=radio] + span,
label.alternate input[type=radio] + span::before {
	border-radius: 50%;
}
input[type=radio]::after,
label.alternate input[type=radio] + span::before {
	width: 16px;
	height: 16px;
	left: calc(50% - calc(16px * 0.5));
	top: calc(50% - calc(16px * 0.5));
	background-color: #fe6700;
}
input[type=checkbox]::before,
label.alternate input[type=checkbox] + span {
	border-radius: 5px;
}
input[type=checkbox]::after,
label.alternate input[type=checkbox] + span::before {
	width: 10px;
	height: 15px;
	left: calc(calc(50% - calc(10px * 0.5)) + 1px);
	top: calc(50% - calc(15px * 0.5));
	border-right: 3px solid #fe6700;
	border-bottom: 3px solid #fe6700;
}
input[type=checkbox]::after {
	transform: translate(calc(9999px - 1px), -3px) rotate(45deg);
}
@-moz-document url-prefix() {
	input[type=radio],
	input[type=checkbox] {
		transform: translate(0px, -1px);
	}
}
label {
	display: inline-block;
	vertical-align: text-top;
}
label.alternate input[type=radio],
label.alternate input[type=checkbox] {
	display: none;
}
label.alternate input[type=radio] + span,
label.alternate input[type=checkbox] + span {
	display: block;
	position: relative;
	cursor: pointer;
}
label.alternate input[type=checkbox] + span::before {
	transform: translate(-1px, -3px) rotate(45deg);
}
textarea {
	padding: 10px 15px;
}
select {
	padding-right: 40px;
	background-image: url(../images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: auto 10px;
}
::placeholder {
	color: #cccccc;
}



/* --------------------------------------------------------------------------------
misc
-------------------------------------------------------------------------------- */

br.small {
	display: none;
}
br.large {
	display: inline;
}
span.no-large {
	display: none;
}



/* --------------------------------------------------------------------------------
page
-------------------------------------------------------------------------------- */

div#page {
	position: relative;
	overflow: hidden;
}
div#trigger {
	position: absolute;
	left: 0px;
	top: 50svh;
	pointer-events: none;
}
p.button-default {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5rem;
}
p.button-default a {
	display: block;
	position: relative;
}
p.button-default a::before,
p.button-default span {
	height: 90px;
	border-radius: 45px;
}
p.button-default a::before {
	position: absolute;
	width: 100%;
	left: 3px;
	top: 3px;
	background-color: #000000;
	content: "";
}
p.button-default span,
p.button-default i.arrow {
	border: 3px solid #000000;
}
p.button-default span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 480px;
	color: #ffffff;
	background-color: #fe6700;
	transition: 0.125s transform ease;
}
p.button-default a:hover span {
	transform: translate(3px, 3px);
}
p.button-default i.arrow {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 50px;
	height: 50px;
	right: 17px;
	top: calc(50% - 25px);
	background-color: #ffffff;
	border-radius: 50%;
}
p.button-default i.arrow::before {
	position: absolute;
	width: 10px;
	height: 10px;
	left: calc(50% - 5px);
	top: calc(50% - 5px);
	border-right: 3px solid #000000;
	border-top: 3px solid #000000;
	content: "";
	transform: translateX(-1px) rotate(45deg);
}
p.button-return i.arrow {
	left: 17px;
	right: auto;
	transform: scaleX(-1);
}
p.button-return a::before {
	background-color: #fe6700;
}
p.button-return span,
p.button-return i.arrow {
	border-color: #fe6700;
}
p.button-return a span {
	color: #fe6700;
	background-color: #ffffff;
}
p.button-return i.arrow::before {
	border-color: #fe6700;
}
p.image {
	overflow: hidden;
}
p.image img {
	width: 100%;
	height: auto;
}
p.image-zoom img {
	transition: 0.25s transform ease;
}
a:hover p.image-zoom img,
p.image-zoom a:hover img {
	transform: scale(1.0375);
}
*.scroll.fade,
*.fade-each > *,
*.scroll.fade-slide {
	opacity: 0;
	transition-duration: 1.25s;
}
*.scroll.fade,
*.fade-each > * {
	transition-property: opacity;
	transition-timing-function: ease-in-out;
}
*.scroll.fade.active,
*.fade-each.active > *,
*.scroll.fade-slide.active {
	opacity: 1;
}
*.scroll.fade-slide {
	transition-property: opacity, transform;
	transition-timing-function: ease-in-out, ease;
}
*.scroll.fade-slide-left {
	transform: translate(40px, 0px);
}
*.scroll.fade-slide-right {
	transform: translate(-40px, 0px);
}
*.scroll.fade-slide-up {
	transform: translate(0px, 40px);
}
*.scroll.fade-slide.active {
	transform: translate(0px, 0px);
}
*.split-text {
	opacity: 0;
}
html.active *.split-text {
	opacity: 1;
}
*.delay-01 {
	transition-delay: calc(0.125s * 1);
}
*.delay-02 {
	transition-delay: calc(0.125s * 2);
}
*.delay-03 {
	transition-delay: calc(0.125s * 3);
}
*.delay-04 {
	transition-delay: calc(0.125s * 4);
}
*.delay-05 {
	transition-delay: calc(0.125s * 5);
}
*.delay-06 {
	transition-delay: calc(0.125s * 6);
}
*.delay-07 {
	transition-delay: calc(0.125s * 7);
}
*.delay-08 {
	transition-delay: calc(0.125s * 8);
}
*.delay-09 {
	transition-delay: calc(0.125s * 9);
}
*.delay-10 {
	transition-delay: calc(0.125s * 10);
}



/* --------------------------------------------------------------------------------
header
-------------------------------------------------------------------------------- */

header#header p.headline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 40px;
	text-align: center;
	text-indent: 0.1em;
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.1em;
	background-color: #fe6700;
}



/* --------------------------------------------------------------------------------
cover
-------------------------------------------------------------------------------- */

div#cover {
	position: relative;
	padding-top: 60px;
	background: #ffdb1a url(../images/cover-background-01.png) no-repeat center;
	background-size: cover;
}
div.result div#cover {
	padding-bottom: 60px;
}
div#cover div.title,
div#cover div.result,
div#cover div.illust {
	aspect-ratio: 740 / 490;
	width: calc(100% - 20px);
	max-width: 740px;
}
div#cover div.title,
div#cover div.result {
	position: relative;
	text-align: center;
	margin: 0px auto;
	background: url(../images/cover-background-02.svg) no-repeat center;
	background-size: 100% auto;
}
div#cover div.title {
	margin-bottom: 60px;
}
div.result div#cover div.title {
	display: none;
}
div#cover div.title p.point,
div#cover div.title p.pen,
div#cover div.title h1,
div#cover div.result h2,
div#cover div.illust-wrapper,
div#cover div.illust p.row {
	position: absolute;
}
div#cover div.title p.point,
div#cover div.title p.pen {
	z-index: 1;
}
div#cover div.title p.point img,
div#cover div.title p.pen img,
div#cover div.illust p.row img {
	width: 100%;
}
div#cover div.title p.point {
	width: 196px;
	height: 196px;
	left: -40px;
	top: -40px;
	transform: rotate(-20deg);
}
div#cover div.title p.pen {
	width: 145px;
	height: 145px;
	right: 80px;
	top: -40px;
}
div#cover div.title h1,
div#cover div.result h2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	aspect-ratio: 740 / 490;
	width: 100%;
	left: 0px;
	top: 0px;
}
div#cover div.title h1 {
	padding-bottom: 10px;
}
div#cover div.title h1 img {
	width: calc(100% - 120px);
	max-width: 522px;
}
div#cover div.result {
	height: 0px;
	overflow: hidden;
}
div.result div#cover div.result {
	height: auto;
}
div#cover div.result h2 {
	font-size: 3rem;
	font-weight: 700;
	line-height: 4.5rem;
	padding-bottom: 20px;
	opacity: 0;
	transition: 0.75s opacity 0.5s ease-in-out, 0.75s transform 0.5s ease;
	transform: scale(1.125);
}
div.result div#cover div.result h2 {
	opacity: 1;
	transform: scale(1);
}
div#cover div.result h2 span {
	display: block;
}
div#cover div.result h2 i {
	color: #fe6700
}
div#cover div.result h2 em {
	display: inline-block;
	font-size: 4.5rem;
	font-weight: 600;
	transform: translateY(5px);
}
div#cover div.illust-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	left: 0px;
	top: 60px;
	z-index: 1;
	pointer-events: none;
}
div#cover div.illust {
	position: relative;
}
div#cover div.illust p.row img {
	filter: drop-shadow(2.5px 2.5px 7.5px rgba(0, 0, 0, 0.25));
}
div#cover div.illust p.row-01 {
	width: 250px;
	height: 200px;
	left: calc(50% - 700px);
	top: calc(50% - 260px);
}
div#cover div.illust p.row-02 {
	width: 180px;
	height: 180px;
	left: calc(50% - 610px);
	top: calc(50% - 90px);
}
div#cover div.illust p.row-03 {
	width: 195px;
	height: 130px;
	left: calc(50% - 680px);
	top: calc(50% + 130px);
}
div#cover div.illust p.row-04 {
	width: 185px;
	height: 260px;
	left: calc(50% - 480px);
	top: calc(50% + 40px);
}
div#cover div.illust p.row-05 {
	width: 140px;
	height: 130px;
	left: calc(50% + 350px);
	top: calc(50% - 260px);
}
div#cover div.illust p.row-06 {
	width: 155px;
	height: 170px;
	left: calc(50% + 420px);
	top: calc(50% - 100px);
}
div#cover div.illust p.row-07 {
	width: 90px;
	height: 115px;
	left: calc(50% + 580px);
	top: calc(50% - 220px);
}
div#cover div.illust p.row-08 {
	width: 145px;
	height: 135px;
	left: calc(50% + 340px);
	top: calc(50% + 100px);
}
div#cover div.illust p.row-09 {
	width: 130px;
	height: 120px;
	left: calc(50% + 560px);
	top: calc(50% + 160px);
}
div#cover div.summary {
	position: relative;
	width: 800px;
	margin: 0px auto;
	padding-bottom: 60px;
}
div.result div#cover div.summary {
	display: none;
}
div#cover div.summary p.description {
	padding-right: 260px;
}
div#cover div.summary p.description span {
	font-weight: 700;
}
div#cover div.navigator {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: flex-end;
	position: absolute;
	width: 280px;
	right: -20px;
	bottom: 0px;
}
div#cover div.navigator p.image {
	width: 140px;
}
div#cover div.navigator p.name {
	position: absolute;
	right: 160px;
	bottom: 15px;
	text-align: right;
	font-size: 0.875rem;
	line-height: 1.5rem;
}



/* --------------------------------------------------------------------------------
main
-------------------------------------------------------------------------------- */

main,
main section,
main section div.inner-section {
	position: relative;
}
main section div.inner-section {
	width: 1000px;
	margin: auto;
	padding: 100px 0px;
}
main h2.headline {
	position: relative;
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 3.25rem;
	margin-bottom: 40px;
}
main h2.headline::before,
main h2.headline::after {
	position: absolute;
	width: 0px;
	height: 50px;
	top: calc(50% - 20px);
	border-right: 3px solid #000000;
	content: "";
}
main h2.headline::before {
	transform: rotate(-30deg);
}
main h2.headline::after {
	transform: rotate(30deg);
}
main ul.bullet li {
	position: relative;
	padding-left: 20px;
}
main ul.bullet li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 15px;
	background-color: #000000;
	content: "";
	border-radius: 50%;
}

/* home
-------------------------------------------------------------------------------- */

main section.present h2.headline {
	color: #c91404;
}
main section.present h2.headline::before,
main section.present h2.headline::after {
	border-color: #c91404;
}
main section.present h2.headline::before {
	left: calc(50% - 340px);
}
main section.present h2.headline::after {
	right: calc(50% - 340px);
}
main section.present div.frame {
	position: relative;
}
main section.present div.frame::before,
main section.present div.frame div.inner-frame {
	border-radius: 20px;
}
main section.present div.frame::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 3px;
	top: 3px;
	background-color: #000000;
	content: "";
}
main section.present div.frame div.inner-frame {
	position: relative;
	z-index: 1;
	text-align: center;
	border: 3px solid #000000;
	padding: 60px;
	background-color: #ffdb1a;
}
main section.present div.frame p.sub {
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 10px;
}
main section.present div.frame h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 3.25rem;
	margin-bottom: 40px;
}
main section.present div.frame h3 span,
main section.present div.frame h3 i {
	display: block;
	position: relative;
}
main section.present div.frame h3 span::before {
	position: absolute;
	width: 100%;
	height: 30px;
	left: 0px;
	bottom: 0px;
	background-color: #ffffff;
	content: "";
}
main section.present div.frame div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -20px 20px 0px;
}
main section.present div.frame div.list div.row {
	width: calc(50% - 20px);
	overflow: hidden;
	margin: 0px 20px 20px 0px;
	background-color: #ffffff;
	border-radius: 10px;
}
main section.present div.frame div.list div.row p.course,
main section.present div.frame div.list div.row p.headline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-weight: 700;
}
main section.present div.frame div.list div.row p.course {
	height: 40px;
	font-size: 1.25rem;
	color: #ffffff;
}
main section.present div.frame div.list div.row-01 p.course {
	background-color: #c91404;
}
main section.present div.frame div.list div.row-02 p.course {
	background-color: #008005;
}
main section.present div.frame div.list div.row-03 p.course {
	background-color: #fe6700;
}
main section.present div.frame div.list div.row-04 p.course {
	background-color: #6e1ab5;
}
main section.present div.frame div.list div.row p.headline {
	height: 100px;
	font-size: 1.75rem;
}
main section.present div.frame p.period {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	margin-bottom: 10px;
}
main section.present div.frame p.period span {
	display: block;
}
main section.present div.frame p.period span.sub {
	border: 2px solid #000000;
	margin-right: 20px;
	padding: 0px 10px;
	border-radius: 5px;
}
main section.present div.frame p.period span.main {
	transform: translateY(-2px);
}
main section.present div.frame p.period span.main i:nth-child(1) em {
	font-size: 1.5rem;
}
main section.present div.frame p.period span.main i:nth-child(2),
main section.present div.frame p.period span.main i:nth-child(2) b {
	position: relative;
}
main section.present div.frame p.period span.main i:nth-child(2) {
	font-size: 1.5rem;
}
main section.present div.frame p.period span.main i:nth-child(2)::before {
	position: absolute;
	width: 100%;
	height: 15px;
	left: 0px;
	bottom: 0px;
	background-color: #ffffff;
	content: "";
}
main section.present div.frame p.period span.main i:nth-child(2) em {
	font-size: 2rem;
}
div.result main section#present {
	display: none;
}
main section#nouken {
	background-color: #fff9d1;
}
main section#nouken div.inner-section {
	padding-bottom: 0px;
}
div.result main section#nouken header h2.headline,
div.result main section#nouken header div.student {
	display: none;
}
main section#nouken h2.headline::before {
	left: calc(50% - 300px);
}
main section#nouken h2.headline::after {
	right: calc(50% - 300px);
}
main section#nouken h2.headline span {
	display: block;
}
main section#nouken header div.student {
	position: relative;
}
main section#nouken header div.student p.image {
	width: 740px;
	margin: 0px auto;
}
main section#nouken header div.student p.name {
	position: absolute;
	right: 0px;
	bottom: 15px;
	font-size: 0.875rem;
	line-height: 1.5rem;
}
main section#nouken header p.result {
	display: none;
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	line-height: 4.5rem;
	margin-bottom: 40px;
}
div.result main section#nouken header p.result {
	display: block;
}
main section#nouken header p.result span {
	color: #fe6700
}
main section#nouken header p.result i {
	display: inline-block;
	font-size: 4.5rem;
	font-weight: 600;
	transform: translateY(5px);
}
main section#nouken div.list {
	margin-bottom: 60px;
}
main section#nouken div.list div.row {
	position: relative;
}
main section#nouken div.list div.row:not(:last-child) {
	margin-bottom: 100px;
}
main section#nouken div.list div.row::before,
main section#nouken div.list div.row div.inner-row {
	border: 3px solid #000000;
	background-color: #ffffff;
	border-radius: 20px;
}
main section#nouken div.list div.row::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 6px;
	top: 6px;
	content: "";
}
main section#nouken div.list div.row div.inner-row {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
main section#nouken div.list div.row div.header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	min-height: 170px;
	border-bottom: 3px solid #000000;
	padding: 40px 40px 40px 180px;
	background-color: #ffdb1a;
}
main section#nouken div.list div.row div.header p.number {
	position: absolute;
	left: 30px;
	top: 30px;
	text-align: center;
}
main section#nouken div.list div.row div.header p.number::before,
main section#nouken div.list div.row div.header p.number span {
	border-radius: 50%;
}
main section#nouken div.list div.row div.header p.number::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 3px;
	top: 3px;
	background-color: #000000;
	content: "";
}
main section#nouken div.list div.row div.header p.number span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 110px;
	height: 110px;
	z-index: 1;
	color: #ffffff;
	border: 3px solid #000000;
	background-color: #fe6700;
}
main section#nouken div.list div.row div.header p.number span i,
main section#nouken div.list div.row div.header p.number span em {
	display: block;
}
main section#nouken div.list div.row div.header p.number span em {
	text-shadow: 0px -2px 0px #000000, 1.41px -1.41px 0px #000000, 2px 0px 0px #000000, 1.41px 1.41px 0px #000000, 0px 2px 0px #000000, -1.41px 1.41px 0px #000000, -2px 0px 0px #000000, -1.41px -1.41px 0px #000000;
}
main section#nouken div.list div.row div.header p.number span em.sub {
	font-size: 1.5rem;
	font-weight: 700;
}
main section#nouken div.list div.row div.header p.number span em.main {
	font-family: "Poppins", sans-serif;
	font-size: 3rem;
	font-weight: 600;
	line-height: 3rem;
}
main section#nouken div.list div.row div.header h3 {
	font-size: 1.25rem;
	font-weight: 700;
}
main section#nouken div.list div.row div.body {
	padding: 40px;
}
main section#nouken div.list div.row div.body div.question,
main section#nouken div.list div.row div.body div.answer {
	position: relative;
	min-height: 200px;
}
div.result main section#nouken div.list div.row div.body div.question {
	display: none;
}
main section#nouken div.list div.row div.body div.question form > label,
main section#nouken div.list div.row div.body div.answer ul li {
	font-size: 1.25rem;
	font-weight: 700;
}
main section#nouken div.list div.row div.body div.question form > label {
	display: block;
	cursor: pointer;
}
main section#nouken div.list div.row div.body div.question form:not(.column) > label {
	text-indent: -40px;
	padding-left: 40px;
}
main section#nouken div.list div.row div.body div.question form > label:not(:last-child) {
	margin-bottom: 15px;
}
main section#nouken div.list div.row div.body div.question form label.alternate {
	margin-right: 10px;
}
main section#nouken div.list div.row div.body div.question form.column,
main section#nouken div.list div.row div.body div.answer ul.column {
	display: flex;
	flex-wrap: wrap;
	margin: -20px -40px 0px 0px;
}
main section#nouken div.list div.row div.body div.question form.column {
	padding-bottom: 220px;
}
main section#nouken div.list div.row div.body div.question form.column > label,
main section#nouken div.list div.row div.body div.answer ul.column li {
	width: calc(25% - 40px);
	margin-right: 40px;
}
main section#nouken div.list div.row div.body div.question div.student,
main section#nouken div.list div.row div.body div.answer div.student {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	position: absolute;
	width: 350px;
	right: -20px;
	bottom: -40px;
	pointer-events: none;
}
main section#nouken div.list div.row div.body div.question div.student p.image,
main section#nouken div.list div.row div.body div.answer div.student p.image {
	width: 250px;
}
main section#nouken div.list div.row div.body div.question div.student p.name,
main section#nouken div.list div.row div.body div.answer div.student p.name {
	position: absolute;
	right: 220px;
	bottom: 15px;
	font-size: 0.875rem;
	line-height: 1.5rem;
}
main section#nouken div.list div.row div.body div.answer {
	display: none;
}
div.result main section#nouken div.list div.row div.body div.answer {
	display: block;
}
main section#nouken div.list div.row div.body div.answer ul {
	margin-bottom: 40px;
}
main section#nouken div.list div.row div.body div.answer ul li.correct {
	color: #fe6700;
}
main section#nouken div.list div.row div.body div.answer ul li span {
	display: block;
	position: relative;
	margin: 0px -40px;
	padding: 10px 40px 10px 80px;
}
main section#nouken div.list div.row div.body div.answer ul.column {
	margin-bottom: 40px;
}
main section#nouken div.list div.row div.body div.answer ul.column li span {
	margin: 0px -20px;
	padding: 10px 20px 10px 60px;
	border-radius: 10px;
}
main section#nouken div.list div.row div.body div.answer ul li.correct span {
	background-color: #fff9d1;
}
main section#nouken div.list div.row div.body div.answer ul li.select:not(.correct) span {
	color: #008005;
}
main section#nouken div.list div.row div.body div.answer ul li span::before,
main section#nouken div.list div.row div.body div.answer ul li:not(.correct) span::after {
	position: absolute;
	width: 30px;
	left: 40px;
	content: "";
}
main section#nouken div.list div.row div.body div.answer ul.column li span::before,
main section#nouken div.list div.row div.body div.answer ul.column li:not(.correct) span::after {
	left: 20px;
}
main section#nouken div.list div.row div.body div.answer ul li.correct.select span::after {
	display: inline-block;
	font-weight: 700;
	line-height: 1.75rem;
	color: #ffffff;
	margin-left: 10px;
	padding: 0px 10px 1px 10px;
	background-color: #fe6700;
	content: "正解";
	border-radius: 5px;
}
main section#nouken div.list div.row div.body div.answer ul li.correct span::before {
	height: 30px;
	top: 12px;
	border: 3px solid #fe6700;
	border-radius: 50%;
}
main section#nouken div.list div.row div.body div.answer ul li:not(.correct) span::before,
main section#nouken div.list div.row div.body div.answer ul li:not(.correct) span::after {
	top: 27px;
	border-bottom: 3px solid #000000;
}
main section#nouken div.list div.row div.body div.answer ul li.select:not(.correct) span::before,
main section#nouken div.list div.row div.body div.answer ul li.select:not(.correct) span::after {
	border-color: #008005;
}
main section#nouken div.list div.row div.body div.answer ul li:not(.correct) span::before {
	transform: rotate(-45deg);
}
main section#nouken div.list div.row div.body div.answer ul li:not(.correct) span::after {
	transform: rotate(45deg);
}
main section#nouken div.list div.row div.body div.answer div.explanation {
	position: relative;
	min-height: 320px;
}
main section#nouken div.list div.row div.body div.answer div.explanation:not(:last-child) {
	margin-bottom: 40px;
}
main section#nouken div.list div.row div.body div.answer div.explanation h4,
main section#nouken div.list div.row div.body div.answer div.recipe h4 {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 20px;
	padding: 10px 0px;
	border-radius: 10px 10px 0px 0px;
}
main section#nouken div.list div.row div.body div.answer div.explanation h4 {
	background-color: #fe6700;
}
main section#nouken div.list div.row div.body div.answer div.recipe h4 {
	background-color: #008005;
}
main section#nouken div.list div.row div.body div.answer div.explanation p.description,
main section#nouken div.list div.row div.body div.answer div.explanation p.note {
	padding-right: 300px;
}
main section#nouken div.list div.row div.body div.answer div.explanation p.note,
main section#nouken div.list div.row div.body div.answer div.recipe p.note {
	margin-top: 20px;
}
main section#nouken div.list div.row div.body div.answer div.recipe h5 {
	font-weight: 500;
	margin-bottom: 5px;
}
main section#nouken div.list div.row div.body div.answer div.recipe div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
}
main section#nouken div.list div.row div.body div.answer div.recipe div.image-text:not(:last-child) {
	margin-bottom: 40px;
}
main section#nouken div.list div.row div.body div.answer div.recipe div.image-text p.image {
	width: 370px;
}
main section#nouken div.list div.row div.body div.answer div.recipe div.image-text div.text {
	width: calc(100% - 410px);
}
main section#nouken div.list div.row div.body div.answer div.recipe p.material {
	display: flex;
	flex-wrap: wrap;
}
main section#nouken div.list div.row div.body div.answer div.recipe p.material span {
	display: block;
}
main section#nouken div.list div.row div.body div.answer div.recipe p.material span:nth-child(1) {
	position: relative;
	width: 160px;
	font-weight: 500;
	padding-left: 20px;
}
main section#nouken div.list div.row div.body div.answer div.recipe p.material span:nth-child(1)::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 15px;
	background-color: #000000;
	content: "";
	border-radius: 50%;
}
main section#nouken div.list div.row div.body div.answer div.recipe p.material span:nth-child(2) {
	width: calc(100% - 160px);
}
div.result main section#nouken div.action p.button-result {
	display: none;
}
main section#nouken div.action {
	position: relative;
	padding: 60px 0px 100px 0px;
}
main section#nouken div.action p.button-return {
	display: none;
}
div.result main section#nouken div.action p.button-return {
	display: flex;
}
main section#nouken div.action div.navigator {
	position: absolute;
	left: 0px;
	bottom: 0px;
}
main section#nouken div.action div.navigator p.image {
	width: 215px;
}
main section#present-alternate {
	display: none;
}
div.result main section#present-alternate {
	display: block;
}
main section#present-alternate div.inner-section {
	padding-bottom: 60px;
}
main section#present-alternate p.note,
main section#present-alternate p.privacy-policy {
	margin-bottom: 40px;
}
main section#present-alternate p.agreement {
	font-weight: 500;
	margin-bottom: 10px;
}
main section#present-alternate p.agreement label.alternate {
	margin-right: 10px;
	transform: translateY(-1px);
}
main section#present-alternate p.privacy-policy {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
main section#present-alternate p.close {
	font-size: 1.75rem;
	font-weight: 700;
}

/* privacy-policy
-------------------------------------------------------------------------------- */

main section#privacy-policy div.inner-section {
	width: 800px;
}
main section#privacy-policy header {
	margin-bottom: 60px;
}
main section#privacy-policy header h1 {
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	line-height: 2.5rem;
}
main section#privacy-policy header h1:not(:last-child),
main section#privacy-policy div.segment:not(:last-child) {
	margin-bottom: 60px;
}
main section#privacy-policy div.segment h2 {
	font-size: 1.25rem;
	font-weight: 500;
	border-bottom: 1px solid #000000;
	margin-bottom: 20px;
	padding-bottom: 5px;
}
main section#privacy-policy div.segment p:not(:last-child),
main section#privacy-policy div.segment ul:not(:last-child),
main section#privacy-policy div.segment ol:not(:last-child) {
	margin-bottom: 30px;
}
main section#privacy-policy div.segment ul li:not(:last-child),
main section#privacy-policy div.segment ol li:not(:last-child) {
	margin-bottom: 10px;
}
main section#privacy-policy div.segment ol {
	padding-left: 20px;
	list-style: decimal;
}



/* --------------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------- */

footer#footer {
	position: relative;
	padding: 40px 0px;
}
footer#footer p#button-page-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 10;
	pointer-events: none;
	opacity: 0;
	transition: 0.25s opacity ease;
}
div.scroll footer#footer p#button-page-top {
	pointer-events: auto;
	opacity: 1;
}
footer#footer p#button-page-top a,
footer#footer p#button-page-top a::before,
footer#footer p#button-page-top a span {
	border-radius: 50%;
}
footer#footer p#button-page-top a {
	display: block;
	position: relative;
}
footer#footer p#button-page-top a::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 3px;
	top: 3px;
	background-color: #000000;
	content: "";
}
footer#footer p#button-page-top a span {
	display: block;
	position: relative;
	width: 50px;
	height: 50px;
	z-index: 1;
	border: 3px solid #000000;
	background-color: #fe6700;
	transition: 0.25s transform ease;
}
footer#footer p#button-page-top a:hover span {
	transform: translate(3px, 3px);
}
footer#footer p#button-page-top a span::before {
	position: absolute;
	width: 10px;
	height: 10px;
	left: calc(50% - 5px);
	top: calc(50% - 5px);
	border-right: 3px solid #ffffff;
	border-top: 3px solid #ffffff;
	content: "";
	transform: translateY(1px) rotate(-45deg);
}
footer#footer p.information {
	text-align: center;
	font-size: 0.875rem;
	line-height: 1.5rem;
}
