/* ========== common Component ========== */
.conversation-wrap {
	background-color: #FFE4B4;
}
.balloon-question h2 {
	color: var(--text-yellow);
}
/* クイズ上部のギザギザ分余白調整 */
.topic-section:last-of-type {
	padding-bottom: 64px;
}
/* SP styles */
@media screen and (width < 768px) {
	.topic-section:last-of-type {
		padding-bottom: 48px;
	}
}
.section-bgColor-container {
	display: grid;
	gap: 24px;
}

/* h1折り返し用 */
@media screen and (width >= 1228px) {
	.text-break {
		display: none !important;
	}
}

/* ========== 怪獣吹き出し ========== */
/* 共通 */
.bubble-areaWrap {
	overflow: hidden;
}
.bubble-container {
	margin: 0 auto;
	position: relative;
}
.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;
}
/* SP styles */
@media screen and (width < 768px) {
	.bubble-info {
		border-radius: 40px;
		padding: 20px;
		border: 4px solid var(--text-yellow);
	}
	.bubble-info-text {
		font-size: 12px;
	}
}
/* 怪獣右側 */
.bubble-areaWrap.right {
	margin-top: 8px;
}
.right .bubble-container {
	max-width: 1200px;
	padding: 15.6px 220px 15.6px 250px;
}
.right .bubble-character {
	position: absolute;
	right: -40px;
	bottom: 15%;
	transform: rotate(-10deg);
}
.right .bubble-character img {
	width: 157px;	
}
.right .bubble-circle {
	bottom: 30%;
	right: 125px;
}
.right .bubble-circle img {
	width: 120px;
}
/* TAB時 */
@media screen and (width < 1024px) {
	.right .bubble-container {
		padding-left: 150px;
	}
}
/* SP時 */
@media screen and (width < 768px) {
	.right .bubble-container {
		padding: 20px 150px 0 80px;
	}
	.right .bubble-character {
		right: -20px;
		bottom: 5%;	
	}
	.right .bubble-character img {
		width: 100px;	
	}
	.right .bubble-circle {
		right: 95px;
		bottom: 15%;
	}
	.right .bubble-circle img {
		width: 70px;
	}
}
/* 怪獣左側 */
.bubble-areaWrap.left {
	margin-top: 40px;
}
.left .bubble-container {
	max-width: 1440px;
	padding: 0 160px 64px 294px;
}
.left .bubble-character {
	position: absolute;
	left: -70px;
	bottom: 20%;
	transform: rotate(10deg);
}
.left .bubble-character img {
	width: 261px;	
}
.bubble-info-list {
	font-size: 18px;
	line-height: 1.5;
	font-weight: 700;
	margin-top: 8px;
}
.list-item {
	position: relative;
	padding-left: 1em;
}
.list-item::before {
	position: absolute;
	content: '・';
	top: 0;
	left: 0;
}
.left .bubble-circle {
	bottom: 50%;
	left: 200px;
}
.left .bubble-circle img {
	width: 120px;
}
@media screen and (width < 1200px) {
	.left .bubble-container {
		max-width: 1200px;
		padding-right: 14px;
		padding-left: 265px;
	}
	.left .bubble-character {
		left: -70px;
	}
	.left .bubble-circle {
		left: 170px;
	}
}
@media screen and (width < 768px) {
	.left .bubble-container {
		padding-left: 120px;
		padding-bottom: 0;
	}
	.left .bubble-character {
		left: -30px;	
	}
	.left .bubble-character img {
		width: 100px;	
	}
	.bubble-info-list {
		font-size: 12px;
	}
	.left .bubble-circle {
		left: 65px;
		bottom: 30%;
	}
	.left .bubble-circle img {
		width: 70px;
	}
}

/* ========== download Content ========== */
.download-wrapper {
	padding: 0 14px;
	margin: 0 auto;
}
.download-text {
	font-size: 18px;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 16px;
}
.download-container {
	display: grid;
	gap: 36px;	
}
.download-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--text-yellow);
	font-size: 28px;
	line-height: calc(32 / 28);
	font-weight: 700;
	border-radius: 40px;
	box-shadow: 0 6px 0 4px #A96300;
	padding: 13px 36px 13px 90px;
	width: 696px;
	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;
	flex: 0 0 48px;
}
.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;
		width: auto;
		height: auto;
		min-height: 46px;
	}
	.download-btn::before {
		width: 30px;
		height: 26px;
	}
	.download-btn-text small {
		font-size: 10px;
	}
}

/* ========== チェックリスト table ========== */
.table-item-wrapper {
	padding: 4px;
	border-radius: 20px;
	background-color: var(--text-yellow);
}
.table-item {
	border-collapse: collapse;
	width: 100%;
}
.table-item thead th {
	color: var(--bg-white);
	font-size: clamp(14px, calc(24 / 1000 * 100vw), 18px);
	line-height: 1.5;
	padding: 8px 12px;
	background-color: #F9C059;
	font-weight: 900;
	vertical-align: middle;
}
.table-item tbody th {
	padding: 12px 16px;
	font-size: clamp(12px, calc(16 / 1000 * 100vw), 16px);
	line-height: 1.5;
	font-weight: 700;
	width: 19.4%;
	vertical-align: middle;
	background-color: #FEEFD6;
}
.table-item tbody td {
	background-color: var(--bg-white);
	padding: 12px 16px;
	vertical-align: middle;
	font-size: clamp(12px, calc(16 / 1000 * 100vw), 16px);
	line-height: 1.5;
}
.table-item thead th:first-child {
	border-radius: 20px 0 0 0;
}
.table-item thead th:last-child {
	border-radius: 0 20px 0 0;
}
.table-item tbody tr:last-child th {
	border-radius: 0 0 0 20px;
}
.table-item tbody tr:last-child td {
	border-radius: 0 0 20px 0;
}
/* table内の線 */
.table-item thead th + th {
	border-left: 2px solid var(--bg-white);
}
.table-item tbody tr + tr th {
	border-top: 2px solid var(--bg-white);
}
.table-item tbody tr + tr td {
	border-top: 2px solid #FEEFD6;
}
/* 「・」付きリスト */
.todo-list > li{
	position: relative;
	padding-left: 1em;	
}
.todo-list > li::before {
	content: "・";
	position: absolute;
	left: 0;
}
/* 「※」付き */
.note {
	font-size: clamp(12px, calc(14 / 1000 * 100vw), 14px);
	position: relative;
	padding-left: 1em;
}
.note::before {
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}
.note a {
	text-decoration: underline;
}
/* SP styles */
@media screen and (width < 768px) {
	.table-item tbody th {
		padding: 12px 8px;
	}
}
/* チェックボックス */
.check-item {
	display: flex;
	gap: 16px;
	align-items: center;
	cursor: pointer;
}
.custom-check {
	display: none;
}
.check-image {
	flex: 0 0 24px;
	height: 24px;
	background: url("../img/icon_checkbox.svg") no-repeat center center / contain;
	display: block;
}
.custom-check:checked + .check-image {
	background-image: url("../img/icon_checkbox_checked.svg");
}
.check-text {
	text-align: left;
	color: var(--text-yellow);
}
/* SP styles */
@media screen and (width < 768px) {
	.table-item tbody th {
		width: 30%;
	}
	.check-item {
		gap: 8px;
	}
	.check-image {
		flex: 0 0 14px;
		height: 14px;
	}
}

/* ========== 外部リンクセクション ========== */
.external-links-section {
	margin: 32px auto 0;
	max-width: 1000px;
}
.external-links-text {
	font-family: 'Noto Sans JP', sans-serif !important;
	font-size: 18px;
	line-height: 32px;
	margin-bottom: 16px;
}
.external-links-content {
	background-color: rgba(255, 255, 255, 0.5);
	padding: 24px;
	border-radius: 20px;
}
.external-links h4 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 16px;
}
.link-list {
	display: grid;
	gap: 16px;
}
.link-list > li {
	font-size: 14px;
	line-height: 17px;
	position: relative;
	padding-left: 1em;
}
.link-list > li::before {
	content: "・";
	position: absolute;
	left: 0;
}
.organization-name {
	display: inline;
	margin: 0;
}
.external-link {
	color: #1A66AC !important;
	text-decoration: underline;
	word-break: break-all;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-left: 3px;
	max-width: 721px;
}
.external-link::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url("../img/icon_newWindow.svg") no-repeat center center / contain;
	flex-shrink: 0;
}
.sub-item {
	margin-top: 8px;
}
/* SP styles */
@media screen and (width < 768px) {
	.external-links-text {
		font-size: 12px;
		line-height: 20px;
	}
}
