@charset "utf-8";

/* illumi_detail */
.illumi_detail {
	margin: var(--50px) auto 0;
	padding-left: var(--80px);
	position: relative;
}
.illumi_detail::before,
.illumi_detail::after {
	content: " ";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: var(--60px);
	height: var(--80px);
	background-image: url("/sdgs/feature/img/vol2/tree.png");
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.illumi_detail::after {
	top: var(--150px);
}
.illumi_detail dl {
	display: flex;
	flex-wrap: wrap;
}
.illumi_detail dt,
.illumi_detail dd,
.illumi_detail li,
.infoInner dt,
.infoInner dd {
	font-size: var(--12px);
	line-height: 2;
	margin: 0;
	padding: 0;
}
.illumi_detail dt {
	width: 5.5em;
}
.illumi_detail dd {
	width: calc(100% - 5.5em);
}
.illumi_detail dd li {
	text-indent: -1em;
	margin-left: 1em;
}

/* dotbgWrap */
.dotbgWrap {
	background-image: url("/sdgs/feature/img/vol2/bg_l.png");
	background-repeat: no-repeat;
	background-position: left top 95px;
	background-size: 135px 564px;
}
.dotInner {
	background-image: url("/sdgs/feature/img/vol2/bg_r.png");
	background-repeat: no-repeat;
	background-position: right top 115px;
	background-size: 201px 564px;
}
#tips {
	border: solid 1px #9f9f9f;
	border-radius: var(--18px);
	padding: var(--15px) var(--13px) var(--15px) var(--70px);
	box-sizing: border-box;
	background-image: url("/sdgs/feature/img/vol2/tips.png");
	background-repeat: no-repeat;
	background-position: left var(--12px) top var(--23px);
	background-size: var(--48px) var(--28px);
	width: 100%;
	margin: 0 auto var(--50px);
	background-color: rgba(255,255,255,0.8);
}
#tips dt,
#tips dd {
	font-size: var(--12px);
	line-height: 2;
}
#tips dt {
	font-weight: 500;
}
.dotInner figure {
	margin-bottom: var(--35px);
}
.dotInner figcaption {
	margin-top: var(--10px);
	font-size: var(--10px);
	text-align: center;
	display: block;
}

/* illumiInfo */
#illumiInfo {
	position: relative;
	background-image: url("/sdgs/feature/img/vol2/info_bg.jpg");
	background-size: cover;
	background-position: center;
	color: #fff;
	margin-top: var(--60px);
}
#illumiInfo .inner {
	padding: var(--50px) 0;
}
#illumiInfo h3 {
	text-align: center;
	margin-bottom: 35px;
}
#illumiInfo h3 span {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 500;
	font-size: var(--13px);
	padding: 0 var(--5px) 0 var(--8px);
	letter-spacing: 0.3em;
	line-height: 1.5;
	position: relative;
	display: inline-block;
}
#illumiInfo h3 span::before,
#illumiInfo h3 span::after {
	content: " ";
	background-image: url("/sdgs/feature/img/vol2/info_ttl_bgl.png");
	width: var(--52px);
	height: var(--44px);
	background-size: 100% auto;
	display: block;
	position: absolute;
	left: calc(0px - var(--52px));
	top: calc(0px - var(--3px));
}
#illumiInfo h3 span::after {
	left: inherit;
	right: calc(0px - var(--52px));
}
#illumiInfo dl {
	display: flex;
	flex-wrap: wrap;
	font-size: var(--12px);
	line-height: 2;
}
#illumiInfo dt {
	width: 7em;
}
#illumiInfo dd {
	width: calc(100% - 7em);
	position: relative;
}
#illumiInfo .noteWrap {
	font-size: var(--11px);
	margin: var(--8px) 0;
}
#illumiInfo a:link,
#illumiInfo a:visited {
	color: #fff;
	text-decoration: underline;
}

/* modal */
#illumiInfo:has(.sectionModal .micromodalSlide.is-open) {
	transform: none !important;
}
.sectionModal .modalBtnWrap {
	width: 100%;
	max-width: 300px;
	margin: var(--8px) 0 0;
}
.sectionModal .modalOverlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}
/* .modalCloseの「×」ボタン */
.sectionModal .modalClose {
	position: absolute;
	top: calc(0px - var(--30px));
	right: 0;
	width: var(--25px);
	height: var(--25px);
	z-index: 1001;
}
.sectionModal .modalClose::after,
.sectionModal .modalClose::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 4px;
	border-radius: 4px;
	top: 50%;
	left: 50%;
	background: #fff;
	transition: opacity 0.3s ease-out;
}
.sectionModal .modalClose::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.sectionModal .modalClose::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
/* フェードイン・フェードアウト */
@keyframes mmfadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes mmfadeOut {
	from { opacity: 1; }
	to { opacity: 0; }
}
.sectionModal .micromodalSlide {
	display: none;
}
.sectionModal .micromodalSlide.is-open {
	display: block;
}
.sectionModal .micromodalSlide[aria-hidden="false"] .modalOverlay {
	animation: mmfadeIn .5s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.sectionModal .micromodalSlide[aria-hidden="true"] .modalOverlay {
	animation: mmfadeOut .5s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.sectionModal .micromodalSlide .modalOverlay {
	will-change: transform;
}
.sectionModal .modalContainer {
	position: relative;
	overflow: visible;
	padding: 0;
	background: none;
	width: auto;
	max-width: calc(100% - var(--50px));
	margin-top: var(--20px);
}
@media (max-width: 768px) {
	.sectionModal .modalContainer {
		margin-top: 0;
	}
}
.sectionModal .modalDocument {
	overflow-y: auto;
	max-height: calc(100dvh - var(--50px));
}
.sectionModal .map {
	position: relative;
}
.sectionModal .map::after {
	display: block;
	content: " ";
	width: var(--15px);
	height: var(--15px);
	position: absolute;
	right: var(--10px);
	bottom: var(--33px);
	background-image: url("/sdgs/feature/img/vol2/zoom.png");
	background-size: 100% auto;
}
.sectionModal .map figcaption {
	font-size: var(--11px);
}
.sectionModal .modalContent {
	max-height: calc(100dvh - var(--50px));
	display: flex;
	align-items: center;
	justify-content: center;
}
.sectionModal .modalContent img {
	max-width: 100%;
	max-height: calc(100dvh - var(--50px));
	width: auto;
	height: auto;
	object-fit: contain;
}
