/* ==================== more.css ==================== */

.more {
	position: relative;
}

.more::before {
	content: '';
	display: block;
	position: absolute;
	background: url(../images/observation/more_chara.png) no-repeat right top / contain;
}

.more ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.more li {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 17.75em;
	height: 10.8em;
	background: url(../images/observation/more_base.png) no-repeat center center / contain;
	line-height: 1.4;
}

.more li span {
	font-size: 85%;
	font-weight: bold;
	color: var(--color-obs-brown);
}

.peasprouts .more li:nth-of-type(3) span {
	transform: scaleX(0.95);
}

.more li img {
	position: absolute;
	left: 50%;
	bottom: 100%;
	transform: translate(-50%, 50%);
}


@media (max-width: 640px) {

	.more {
		width: 100%;
	}
	.more::before {
		right: 0;
		top: -1em;
		width: 6em;
		height: 6em;
	}
	.more ul {
		width: 100%;
	}
	.more li {
		margin-top: 2em;
	}

	.more li:nth-of-type(odd) {
		margin-right: auto;
	}
	.more li:nth-of-type(even) {
		margin-left: auto;
	}
}


@media (min-width: 641px) {

	.more::before {
		right: 0;
		bottom: 100%;
		width: 7em;
		height: 7em;
		transform: translateY(1.5em);
	}

	.more ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 1em;
	}

	.more li {
		margin: 0.5em;
	}

	.more li:nth-of-type(n+3) {
		margin-top: 3em;
	}

	/*
	.more li:nth-of-type(3n+3) {
		margin-left: 20%;
		margin-right: 20%;
	}
	*/

}



/* ==================== recipe.css ==================== */

.recipe .chara p {
	margin: 0;
}

.recipe ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.recipe li {
	width: 15em;
}

.recipe li a {
	text-decoration: none;
}

.recipe li img {
	border: 2px solid var(--color-border-obs-lightgreen);
	padding: 0.4em;
	background: white;
}

.recipe li img {
	position: relative;
	box-sizing: border-box;
	width: 100%;
}

.recipe li .name {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: 5em;
	margin-top: -0.5em;
	padding: 1.5em;
	background: url(../images/observation/recipe_name_back.png) no-repeat center center / 100% 100%;
	color: var(--color-obs-brown);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
}

.recipe .banner {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 2em;
	text-align: center;
}

.recipe .banner a {
	color: #005fb8;
	font-weight: bold;
	text-decoration: underline;
}

.recipe .banner a:nth-of-type(2) {
	margin-top: 0.5em;
}

.recipe .banner a strong {
	font-size: 120%;
}


@media (max-width: 640px) {
	.recipe .chara {
		text-align: center;
	}

	.recipe li {
		margin-top: 1em;
	}
	.recipe li:nth-of-type(odd) {
		margin-right: auto;
	}
	.recipe li:nth-of-type(even) {
		margin-left: auto;
	}

	.recipe .banner a span {
		display: block;
	}
}


@media (min-width: 641px) {
	.recipe {
		position: relative;
	}

	.recipe .chara {
		position: absolute;
		right: 0;
		bottom: 100%;
		transform: translateY(1.5em);
	}

	.recipe ul {
		display: flex;
	}

	.recipe li {
		margin: 0 0.75em;
	}

	.recipe .name {
		font-size: 80%;
	}

	.recipe .banner span {
		font-size: 80%;
	}

}



/* ==================== homework.observation/try/@.css ==================== */

.homework.observation .try {
	display: grid;
	grid-gap: 1em;
	justify-items: center;
}



/* ==================== homework.observation/try/prepare/@.css ==================== */





/* ==================== homework.observation/try/prepare/> div.css ==================== */

.homework.observation .try .prepare > div {
	position: relative;
}


@media (max-width: 640px) {
	.homework.observation .try .prepare > div {
		border-radius: 1.5em;
		padding: 1.5em;
	}
}


@media (min-width: 641px) {
	.homework.observation .try .prepare > div {
		align-self: stretch;
		padding: 2em;
		border-radius: 2em;
	}
}



/* ==================== homework.observation/try/prepare/cautions.css ==================== */

.homework.observation .try .prepare .cautions {
	margin-top: 1.5em;
	background: var(--color-border-obs-lightgreen);
}
.homework.observation .try .prepare .cautions h4 {
	margin: 0 0 1.5em;
	font-size: inherit;
	text-align: center;
}
.homework.observation .try .prepare .cautions ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.homework.observation .try .prepare .cautions li {
	position: relative;
	padding-left: 1.5em;
	font-weight: bold;
}
.homework.observation .try .prepare .cautions li::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 1.25em;
	height: 1.25em;
	background: url(../images/common/caution_icon.svg) no-repeat center center /contain;
}

.homework.observation .try .prepare .cautions .pic figure {
	margin: 0;
}


@media (max-width: 640px) {
	.homework.observation .try .prepare .cautions .pic {
		text-align: center;
	}
}


@media (min-width: 641px) {

	.homework.observation .try .prepare .cautions {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.homework.observation .try .prepare .cautions .body {
		display: flex;
		width: 100%;
	}

	.homework.observation .try .prepare .cautions .text {
		flex-grow: 2;
	}

	.homework.observation .try .prepare .cautions .pic {
		margin-left: 1em;
	}

	.homework.observation .try .prepare .cautions .pic figure img {
		max-width: none;
	}

	.homework.observation .try .prepare .cautions li {
		font-size: 90%;
	}
}



/* ==================== homework.observation/try/prepare/tools.css ==================== */

.homework.observation .try .prepare .tools {
	border: 2px solid var(--color-border-obs-lightgreen);
}

.homework.observation .try .prepare .tools h4 {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	margin: 0;
	transform: translateY(-50%);
	text-align: center;
}

.homework.observation .try .prepare .tools h5 {
	margin: 1em 0 0.5em;
	color: var(--color-orange);
}

.homework.observation .try .prepare .tools ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.homework.observation .try .prepare .tools li {
	position: relative;
	padding-left: 1.25em;
}
.homework.observation .try .prepare li:nth-of-type(n+2) {
	margin-top: 0.25em;
}
.homework.observation .try .prepare .tools li::before {
	content: '●';
	position: absolute;
	left: 0;
	transform: scale(0.5);
	color: var(--color-obs-brown);
}

.homework.observation .try .prepare .tools figure {
	margin: 0;
}

.homework.observation .try .prepare li small {
	display: inline-block;
	font-size: 80%;
}


@media (max-width: 640px) {

	.homework.observation .try .prepare .tools .list {
		margin-top: 1em;
	}

	.homework.observation .try .prepare .tools h5 {
		font-size: inherit;
	}

	.homework.observation .try .prepare .tools .pic {
		margin-top: 1em;
		text-align: center;
	}

}


@media (min-width: 641px) {
	.homework.observation .try .prepare .tools {
		display: flex;
	}
	.homework.observation .try .prepare .tools .list {
		flex-grow: 2;
	}
	.homework.observation .try .prepare .tools .pic {
		margin-left: 1em;
	}
	.homework.observation .try .prepare .tools .pic img {
		max-width: none;
	}

	.homework.observation .try .prepare .tools ul,
	.homework.observation .try .prepare .tools h5 {
		font-size: 80%;
	}
}