@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800;900&display=swap');

:root {
	--action-green: #00a99d;
	--action-light: #e9f8f6;
	--action-yellow: #f6bb2e;
	--action-cream: #fdf1dc;
	--action-text: #111;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	/* min-width: 700px; */
}

body {
	font-family: "Noto Sans JP", sans-serif;
	color: var(--action-text);
	background: #fff;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.action-library,
.action-detail {
	width: 100%;
	max-width: 1030px;
	/* min-width: 700px; */
	margin: 0 auto;
	container-type: inline-size;
}

@media (max-width: 699px) {

	html,
	body {
		min-width: 700px;
	}

	.action-library,
	.action-detail {
		min-width: 700px;
	}
}

/* COMMON */

.back-btn {
	display: inline-flex;
	align-items: center;
	gap: 1cqw;
	padding: 0.8cqw 2.3cqw;
	border: 0.2cqw solid var(--action-green);
	border-radius: 1.2cqw;
	background: #fff;
	color: var(--action-green);
	font-size: 1.55cqw;
	font-weight: 500;
	line-height: 1;
	box-shadow: 0.4cqw 0.4cqw 0 rgba(0, 0, 0, .15);
	transition: transform .18s ease, box-shadow .18s ease;
}

.back-btn::before {
	content: "←";
	font-size: 2.1cqw;
	line-height: 1;
}

.back-btn:hover {
	transform: translate(0.4cqw, 0.4cqw);
	box-shadow: none;
}

.ribbon {
	width: 7.2cqw;
	height: 8.75cqw;
	padding-top: 1cqw;
	background: var(--action-green);
	color: #fff;
	text-align: center;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
	z-index: 2;
}

.ribbon small {
	display: block;
	font-size: 1.35cqw;
	font-weight: 500;
	letter-spacing: .08em;
}

.ribbon strong {
	display: block;
	font-size: 3.3cqw;
	line-height: 1;
	font-weight: 400;
	letter-spacing: .02em;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8cqw;
}

.tags span {
	background: var(--action-yellow);
	border-radius: 999px;
	padding: 0.6cqw 1.35cqw;
	font-size: 1.15cqw;
	font-weight: 500;
	line-height: 1;
}

.feature-icon {
	flex-shrink: 0;
	width: 6cqw;
	height: 6cqw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* LIST */

.action-library {
	background: transparent;
}

body:has(.action-library) {
	background:
		linear-gradient(to bottom,
			#dff3f0 0%,
			#ffffff 40%,
			#ffffff 100%) no-repeat top center / 100% 367px,
		#fff;
}

.action-hero {
	position: relative;
	height: 52.4cqw;
	background: transparent;
	text-align: center;
	overflow: hidden;
}

.back-wrap {
	position: relative;
	z-index: 10;
	width: 100%;
	margin: 0 auto;
	padding-top: 3.1cqw;
	padding-left: 2.9cqw;
	text-align: left;
}

.hero-inner {
	position: relative;
	z-index: 5;
	padding-top: 3.5cqw;
}

.label {
	display: inline-block;
	margin: 0;
	padding: 1cqw 5.6cqw;
	border-radius: 999px;
	background: var(--action-green);
	color: #fff;
	font-size: 1.75cqw;
	font-weight: 800;
	line-height: 1;
}

.action-hero h1 {
	margin: 1.55cqw 0 0.8cqw;
	font-size: 3.3cqw;
	line-height: 1.25;
	font-weight: 900;
	letter-spacing: .03em;
}

.action-hero h1 span {
	display: block;
	color: var(--action-green);
	font-size: 5.44cqw;
	line-height: 1.05;
	font-weight: 900;
	letter-spacing: .04em;
}

.action-library .lead {
	margin: 0;
	font-size: 1.45cqw;
	line-height: 1.7;
	font-weight: 500;
}

.hero-header-img {
	position: absolute;
	left: 50%;
	bottom: 4cqw;
	transform: translateX(-50%);
	width: 100cqw;
	max-width: none;
	z-index: 2;
	pointer-events: none;
}

.action-cards {
	position: relative;
	z-index: 10;
	width: 86cqw;
	margin: -5.8cqw auto 5cqw;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5cqw;
}

.action-card {
	position: relative;
	background: #fff;
	border: 0.1cqw solid #d9d9d9;
	border-radius: 0.8cqw;
	padding: 1.95cqw 3cqw;
	box-shadow: 0 0.3cqw 1cqw rgba(0, 0, 0, .12);
}

.action-library .ribbon {
	position: absolute;
	top: 1.75cqw;
	left: 1.5cqw;
}

.action-library .tags {
	justify-content: flex-end;
	margin-bottom: 1.15cqw;
}

.card-img {
	width: 100%;
	/* height: 19.4cqw; */
	object-fit: cover;
	object-position: center center;
	border-radius: 0.6cqw;
	background: #ddd;
	aspect-ratio: 5 / 3;
}

.action-library .company {
	margin: 1.55cqw 0 0.8cqw;
	color: var(--action-green);
	font-size: 1.6cqw;
	line-height: 1.4;
	font-weight: 500;
}

.action-card h2 {
	margin: 0 0 1.75cqw;
	font-size: 2.2cqw;
	line-height: 1.3;
	letter-spacing: .02em;
	font-weight: 700;
}

.action-library .features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--action-light);
	border-radius: 0.8cqw;
	padding: 1.15cqw;
	margin-bottom: 1.75cqw;
}

.action-library .features div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.9cqw;
	min-height: 4.4cqw;
}

.action-library .features div+div {
	border-left: 0.2cqw dotted var(--action-green);
}

.action-library .features span:not(.feature-icon) {
	font-size: 1.15cqw;
	line-height: 1.35;
	color: #111;
	font-weight: 700;
}

.detail-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.9cqw;
	width: 13.4cqw;
	height: 3.9cqw;
	margin-left: auto;
	border: 0.2cqw solid var(--action-green);
	border-radius: 999px;
	color: var(--action-green);
	font-size: 1.35cqw;
	font-weight: 500;
	line-height: 1;
	transition: background-color .2s ease;
}

.detail-btn::after {
	content: "";
	flex-shrink: 0;
	width: 0.65cqw;
	height: 0.65cqw;
	border-top: 0.22cqw solid var(--action-green);
	border-right: 0.22cqw solid var(--action-green);
	transform: rotate(45deg);
	transition: transform .2s ease;
}

.detail-btn:hover::after {
	transform: translateX(0.25cqw) rotate(45deg);
}

.message-box {
	position: relative;
	/* width: 83.5cqw; */
	margin: 0 2.9cqw 5cqw;
	padding: 4.2cqw 8cqw 4cqw;
	background: var(--action-cream);
	border-radius: 1.55cqw;
	text-align: center;
	overflow: hidden;
}

.message-bg-left,
.message-bg-right {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: auto;
	pointer-events: none;
	z-index: 1;
}

.message-bg-left {
	left: 2cqw;
	width: 16cqw;
}

.message-bg-right {
	right: 2cqw;
	width: 16cqw;
}

.message-box h2 {
	position: relative;
	z-index: 2;
	margin: 0 0 2cqw;
	color: var(--action-green);
	font-size: 2.15cqw;
	line-height: 1.45;
	font-weight: 600;
	letter-spacing: .03em;
}

.message-box p {
	position: relative;
	z-index: 2;
	margin: 0;
	font-size: 1.4cqw;
	line-height: 1.8;
	font-weight: 500;
}

.bottom-back {
	width: 100%;
	margin: 0 auto 5.8cqw;
	padding-left: 2.9cqw;
}

/* DETAIL */

.action-detail {
	overflow: visible;
	background: #fff;
}

.action-detail .global-nav,
.action-detail .detail-hero,
.action-detail .howto,
.action-detail .cta-inner {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.action-detail .global-nav {
	display: flex;
	gap: 2.4cqw;
	padding: 3.1cqw 2.9cqw 3.1cqw;
}

.action-detail .detail-hero {
	position: relative;
	z-index: 1;
	padding: 4.3cqw 2.4cqw 7.1cqw;
	background: var(--action-light);
	box-shadow: 0 0 0 100vmax var(--action-light);
	clip-path: inset(0 -100vmax);
}

.action-detail .detail-hero-inner {
	display: flex;
	/* justify-content: space-between; */
	align-items: flex-start;
	gap: 6.3cqw;
}

.action-detail .detail-title-area {
	display: flex;
	gap: 2.5cqw;
	min-width: 0;
}

.action-detail .title-content {
	padding-top: 0.2cqw;
}

.action-detail .title-content .tags {
	margin-bottom: 1.4cqw;
}

.action-detail .title-content .company {
	margin: 0 0 0.4cqw;
	color: var(--action-green);
	font-size: 2.05cqw;
	font-weight: 500;
	line-height: 1.4;
}

.action-detail h1 {
	margin: 0 0 2.4cqw;
	font-size: 3.4cqw;
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: .04em;
}

.action-detail .lead {
	margin: 0 0 2.2cqw;
	font-size: 1.55cqw;
	font-weight: 500;
	line-height: 1.65;
}

.action-detail .features {
	display: flex;
	align-items: center;
	gap: 2.6cqw;
}

.action-detail .features>div {
	display: flex;
	align-items: center;
	gap: 1.1cqw;
	min-width: 14.6cqw;
	font-size: 1.25cqw;
	font-weight: 700;
	line-height: 1.4;
}

.action-detail .features>div+div {
	padding-left: 2.7cqw;
	border-left: 0.2cqw dotted var(--action-green);
}

.action-detail .detail-main-img-wrap {
	position: relative;
	width: 37.9cqw;
	flex-shrink: 0;
	margin-top: 3.7cqw;
}

.action-detail .detail-main-img {
	width: 100%;
	border-radius: 0.8cqw;
}

.action-detail .badge {
	position: absolute;
	right: -4.2cqw;
	top: -3.2cqw;
	width: 15.2cqw;
	height: 15.2cqw;
	z-index: 3;
}

.action-detail .badge-bg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.action-detail .badge span {
	position: absolute;
	left: 50%;
	top: 48%;
	width: 100%;
	color: #333;
	font-size: 1.85cqw;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
	transform: translate(-50%, -40%);
}

.action-detail .badge::before,
.action-detail .badge::after {
	content: none;
}

.action-detail .detail-card {
	position: relative;
	z-index: 3;
	width: calc(100% - 4.8cqw);
	margin: -4.6cqw auto 0;
	padding: 2.3cqw 3.3cqw 3.3cqw;
	background: #fff;
	border: 0.1cqw solid #c9c9c9;
	border-radius: 1.75cqw;
	box-shadow: 0 0.2cqw 0.8cqw rgba(0, 0, 0, .14);
}

.action-detail .about-box {
	display: flex;
	align-items: flex-start;
	gap: 2.9cqw;
}

.action-detail .about-text {
	flex: 1;
}

.action-detail .about-text h2 {
	margin: 0 0 1.55cqw;
	padding: 0.6cqw 1.75cqw;
	color: #fff;
	font-size: 2.1cqw;
	font-weight: 500;
	line-height: 1.45;
	background: var(--action-green);
}

.action-detail .about-text p,
.action-detail .future-text p,
.action-detail .company-box p {
	margin: 0;
	font-size: 1.45cqw;
	font-weight: 500;
	line-height: 1.8;
}

.action-detail .about-img {
	width: 28cqw;
	flex-shrink: 0;
}

.action-detail .future-box {
	display: flex;
	align-items: center;
	gap: 2.5cqw;
	margin: 2.9cqw 1cqw 2.3cqw;
	padding: 2.1cqw 2.7cqw;
	background: var(--action-light);
	border-radius: 1.55cqw;
}

.action-detail .sdgs-icons {
	display: flex;
	gap: 1cqw;
	flex-shrink: 0;
}

.action-detail .sdgs-icons img {
	width: 7.8cqw;
}

.action-detail .future-text {
	flex: 1;
}

.action-detail .future-text h2 {
	margin: 0 0 0.6cqw;
	color: var(--action-green);
	font-size: 2.1cqw;
	font-weight: 600;
	line-height: 1.45;
}

.action-detail .future-icon {
	width: 10.7cqw;
	flex-shrink: 0;
}

.action-detail .company-box {
	display: flex;
	align-items: flex-end;
	gap: 3.3cqw;
	padding-top: 2.3cqw;
	border-top: 0.1cqw dashed #8f8f8f;
}

.action-detail .company-box p {
	flex: 1;
}

.action-detail .company-logo {
	width: 14.1cqw;
	flex-shrink: 0;
	margin-bottom: 0.8cqw;
}

.action-detail .howto {
	padding: 4.7cqw 2.4cqw 3.3cqw;
}

.action-detail .howto-head {
	display: flex;
	align-items: center;
	gap: 2.3cqw;
	margin-bottom: 2.3cqw;
}

.action-detail .howto h2 {
	margin: 0;
	color: var(--action-green);
	font-size: 2.45cqw;
	font-weight: 500;
	line-height: 1.45;
	white-space: nowrap;
}

.action-detail .howto-head p {
	flex: 1;
	margin: 0;
	padding: 1cqw 2.3cqw;
	font-size: 1.35cqw;
	font-weight: 600;
	text-align: center;
	background: var(--action-yellow);
	border-radius: 999px;
}

.action-detail .steps {
	display: flex;
	align-items: center;
	gap: 1.55cqw;
}

.action-detail .step {
	position: relative;
	flex: 1;
	min-height: 8.9cqw;
	padding: 1.75cqw 1.75cqw 1.35cqw 5.4cqw;
	border: 0.2cqw solid var(--action-green);
	border-radius: 0.8cqw;
}

.action-detail .step span {
	position: absolute;
	left: 1.55cqw;
	top: 1.55cqw;
	display: grid;
	place-items: center;
	width: 2.9cqw;
	height: 2.9cqw;
	color: #fff;
	font-size: 1.55cqw;
	font-weight: 700;
	background: var(--action-green);
	border-radius: 50%;
}

.action-detail .step p {
	margin: 0;
	font-size: 1.35cqw;
	font-weight: 700;
	line-height: 1.6;
}

.action-detail .step-arrow {
	width: 1.75cqw;
	height: 1.75cqw;
	flex-shrink: 0;
	border-top: 0.4cqw solid var(--action-green);
	border-right: 0.4cqw solid var(--action-green);
	transform: rotate(45deg);
}

.action-detail .note {
	margin: 2.1cqw 0 0;
	color: #777;
	font-size: 1.25cqw;
	font-weight: 500;
	line-height: 1.8;
}

.action-detail .cta {
	position: relative;
	z-index: 1;
	margin-top: 0;
	background: var(--action-green);
	box-shadow: 0 0 0 100vmax var(--action-green);
	clip-path: inset(0 -100vmax);
}

.action-detail .cta-inner {
	position: relative;
	min-height: 15cqw;
	display: flex;
	align-items: center;
	gap: 3cqw;
	color: #fff;
}

.action-detail .cta-text {
	padding-left: 2.4cqw;
}

.action-detail .cta-text h2 {
	margin: 0 0 0.8cqw;
	font-size: 2.5cqw;
	font-weight: 400;
	line-height: 1.4;
}

.action-detail .cta-text p {
	margin: 0;
	font-size: 1.45cqw;
	line-height: 1.6;
}

.action-detail .cta-btn {
	position: absolute;
	left: 40.8cqw;
	top: 50%;
	display: flex;
	flex-direction: column;
	gap: 0.5cqw;
	align-items: center;
	justify-content: center;
	width: 35cqw;
	height: 5.4cqw;
	padding: 0 5.6cqw 0 3.2cqw;
	color: var(--action-green);
	font-size: 1.9cqw;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	background: #fff;
	border-radius: 1.5cqw;
	box-shadow: 0.8cqw 0.8cqw 0 rgba(0, 0, 0, .22);
	transform: translateY(-50%);
	transition: transform .18s ease, box-shadow .18s ease;
	z-index: 2;
}

.action-detail .cta-btn::after {
	content: "";
	position: absolute;
	right: 2.4cqw;
	top: 50%;
	width: 2cqw;
	height: 2cqw;
	background: url("../img/icon-external.svg") no-repeat center center / contain;
	transform: translateY(-50%);
}

.action-detail .cta-btn:hover {
	transform: translate(0.8cqw, calc(-50% + 0.8cqw));
	box-shadow: none;
}

.action-detail .cta-btn-note {
	font-size: 1.25cqw;
}

.action-detail .cta-character {
	position: absolute;
	right: 3.5cqw;
	bottom: 0;
	width: 11.45cqw;
}