/* ========== common Component ========== */
.conversation-wrap {
	background-color: #FFE4B4;
}
.balloon-question h2 {
	color: var(--text-yellow);
}
.term-box {
	margin: 48px 0 0 46px;
}
/* クイズ上部のギザギザ分 */
.topic-section:last-of-type .section-bgColor {
	padding-bottom: 131px;
}
/* SP styles */
@media screen and (width < 768px) {
	.section-bgColor {
		margin-top: 16px;
	}
	.topic-section {
		margin-bottom: 48px;
	}
	.topic-section:last-of-type .section-bgColor {
		padding-bottom: 78px;
	}
}

/* ========== mission List ========== */
.mission {
	max-width: 1200px;
	margin: 8px auto 0;
	display: grid;
	gap: 32px;
}
.mission-list {
	display: grid;
	gap: 32px;
}
.mission-item {
	display: flex;
	gap: 8px;
}
.mission-number {
	background-color: var(--text-yellow);
	border-radius: 40px;
	flex: 0 0 40px;
	height: 40px;
	text-align: center;
}
.mission-number span {
	font-size: 24px;
	color: var(--bg-white);
	font-weight: 800;
	display: block;
	margin-top: -1px;
}
.mission-detail {
	display: grid;
	gap: 8px;
}
.detail-text {
	font-size: 18px;
	line-height: 1.5;
	font-family: 'Noto Sans JP', sans-serif !important;
}
.mission-text {
	font-size: 24px;
	line-height: calc(32 / 24);
	font-weight: 800;
	position: relative;
	padding-left: 61px;
}
.mission-text::before {
	content: "";
	position: absolute;
	width: 53px;
	height: 24px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../img/icon_mission.svg) no-repeat;
	background-size: contain;
}
/* SP styles */
@media screen and (width < 768px) {
	.mission-number {
		flex: 0 0 24px;
		height: 24px;
	}
	.mission-number span {
		font-size: 16px;
		margin-top: -3px;
	}
	.mission-list {
		gap: 24px;
	}
	.detail-text {
		font-size: 12px;
	}
	.mission-text {
		font-size: 16px;
		padding-left: 34px;
	}
	.mission-text::before {
		width: 30px;
		height: 14px;
	}
}

/* ========== 怪獣吹き出し ========== */
.bubble-areaWrap {
	overflow: hidden;
	margin-right: -14px;
	margin-top: 16px;
}
.bubble-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 0 220px 0 72px;
}
.bubble-character {
	position: absolute;
	right: 0;
	bottom: 20%;
	transform: rotate(-25.6deg);
}
.bubble-character img {
	width: 137px;	
}
.bubble-info {
	position: relative;
	background-color: var(--bg-white);
	border-radius: 80px;
	padding: 48px;
	border: 8px solid var(--text-yellow);
}
.bubble-info-text {
	font-size: 18px;
	line-height: 1.5;
}
.bubble-circle {
	position: absolute;
	z-index: 2;
	bottom: calc(50% - 20px);
	transform: translateY(50%);
	right: 125px;
}
.bubble-circle img {
	width: 118px;
}
/* SP styles */
@media screen and (width < 768px) {
	.bubble-container {
		padding: 0 90px 0 0;
	}
	.bubble-character {
		right: -15px;
	}
	.bubble-character img {
		width: 70px;	
	}
	.bubble-info {
		border-radius: 40px;
		padding: 20px;
		border: 4px solid var(--text-yellow);
	}
	.bubble-info-text {
		font-size: 12px;
	}
	.bubble-circle {
		right: 50px;
		bottom: calc(50% - 10px);
	}
	.bubble-circle img {
		width: 50px;
	}
}

/* ========== download Content ========== */
.download-text {
	font-size: 18px;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 16px;
}
.download-container {
	display: flex;
	justify-content: center;
	gap: 32px;	
}
.download-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--text-yellow);
	font-size: 28px;
	line-height: 1;
	font-weight: 700;
	border-radius: 80px;
	box-shadow: 0 6px 0 4px #A96300;
	padding: 17px 24px;
	width: 100%;
	max-width: 523px;
	min-height: 90px;
}
.download-btn::before {
	content: "";
	order: 2;
	width: 48px;
	height: 42px;
	background: url(../img/icon_download.svg) no-repeat center center;
	background-size: contain;
}
.download-btn-text {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	text-align: center;
	flex-grow: 1;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif !important;
}
.download-btn-text small {
	font-size: 20px;
	color: #fff;
	font-weight: normal;
	font-family: 'Noto Sans JP', sans-serif !important;
}
/* SP styles */
@media screen and (width < 768px) {
	.download-text {
		font-size: 12px;
	}
	.download-container {
		display: grid;
		gap: 14px;
	}
	.download-btn {
		font-size: 14px;
		padding: 4.5px 24px;
		min-height: 46px;
		min-width: 327px;
	}
	.download-btn::before {
		width: 30px;
		height: 26px;
	}
	.download-btn-text small {
		font-size: 10px;
	}
}
