:root {
	--color-primary: #88BE43;
	--color-black: #253A45;
	--color-dark-gray: #477386;
	--color-gray: #E0E4E6;
	--color-light-gray: #EEF2F4;
	--color-white: #fff;
	--color-accent: #EF8432;
	--color-highlight: #FFDB40;
	
	--header-height: 72px;
	--spacing-xs: 8px;
	--spacing-sm: 16px;
	--spacing-md: 24px;
	--spacing-lg: 32px;
	--spacing-xl: 48px;
	--spacing-xxl: 64px;
	
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-round: 50%;
	
	--transition-fast: 0.3s ease;
	
	font-size: 62.5%;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

.napPlan-body, 
.napPlan-header, 
.napPlan-footer, 
.napPlan-main, 
.napPlan-article, 
.napPlan-section, 
.napPlan-block, 
.napPlan-largeTitle, 
.napPlan-mediumTitle, 
.napPlan-smallTitle, 
.napPlan-exSmallTitle, 
.napPlan-paragraph, 
.napPlan-annotation, 
.napPlan-list, 
.napPlan-list-item, 
.napPlan-form, 
.napPlan-form-input, 
.napPlan-form-radio, 
.napPlan-form-checkbox, 
.napPlan-form-select, 
.napPlan-form-textarea, 
.napPlan-button {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	text-decoration: none;
	font-family: sans-serif;
	list-style: none;
	line-height: 1;
	box-shadow: none;
	background: initial;
	border: none;
	border-radius: 0;
	text-align: inherit;
	-webkit-appearance: none;
	appearance: none;
	position: relative;
	z-index: 1;
}

.napPlan-body {
	font: var(--font-medium);
	color: var(--color-black);
}

#napPlan-header {
	background: var(--color-white);
	padding: var(--spacing-sm) var(--spacing-md);
	height: var(--header-height);
	position: fixed;
	z-index: 3;
	border-bottom: 1px solid var(--color-light-gray);
	width: 100%;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#napPlan-header .logo p {
	color: var(--color-primary);
}

.napPlan-hamburger {
	display: none;
	width: 32px;
	height: var(--spacing-md);
	position: relative;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 10;
}

.napPlan-hamburger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--color-black);
	transition: all var(--transition-fast);
}

.napPlan-hamburger span:nth-child(1) { top: 0; }
.napPlan-hamburger span:nth-child(2) { top: 11px; }
.napPlan-hamburger span:nth-child(3) { bottom: 0; }

.napPlan-hamburger.is-active span:nth-child(1) {
	top: 11px;
	transform: rotate(45deg);
}

.napPlan-hamburger.is-active span:nth-child(2) {
	opacity: 0;
}

.napPlan-hamburger.is-active span:nth-child(3) {
	bottom: 11px;
	transform: rotate(-45deg);
}

.napPlan-nav-list {
	display: flex;
	justify-content: right;
	align-items: center;
	gap: var(--spacing-md);
}

.napPlan-nav-list-link {
	color: var(--color-black) !important;
	text-decoration: none;
	font-size: 1.4rem;
	font-weight: bold;
	transition: var(--transition-fast);
}

.napPlan-nav-list-link:hover {
	opacity: 0.7;
}

.napPlan-nav-button-group {
	display: flex;
	gap: var(--spacing-xs);
}

.napPlan-nav-button-fill,
.napPlan-nav-button-stroke {
	display: flex;
	font-size: 1.6rem;
	font-weight: bold;
	width: 148px;
	padding: 12px var(--spacing-sm);
	border-radius: 6px;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	transition: var(--transition-fast);
	border: 2px solid var(--color-accent);
}

.napPlan-nav-button-fill {
	background: var(--color-accent);
	color: var(--color-white) !important;
}

.napPlan-nav-button-stroke {
	background: var(--color-white);
	color: var(--color-accent) !important;
}

.napPlan-nav-button-fill:hover,
.napPlan-nav-button-stroke:hover {
	transform: translateY(-2px);
}

.napPlan-main {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding-top: var(--header-height);
}

.napPlan-article {
	width: 100%;
	margin: 0 auto;
	padding: var(--spacing-xxl) var(--spacing-sm);
	z-index: 1;
}

.napPlan-article::before {
	content: "";
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	background: inherit;
	width: var(--spacing-md);
	height: var(--spacing-md);
	z-index: 2;
}

.napPlan-section {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.napPlan-block {
	display: block;
	width: 100%;
	height: auto;
}

.napPlan-img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.napPlan-img.napPlan-logo {
	margin-bottom: 40px;
	width: 324px;
}

.napPlan-img.icon {
	--size: var(--spacing-md);
	width: var(--size);
	height: var(--size);
}

.napPlan-largeTitle,
.napPlan-mediumTitle,
.napPlan-smallTitle,
.napPlan-paragraph {
	display: block;
	width: 100%;
	height: auto;
	z-index: 3;
}

.napPlan-largeTitle {
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1.5;
	margin-top: var(--spacing-sm);
	margin-bottom: var(--spacing-md);
}

#cost .napPlan-largeTitle {
	margin-bottom: 0.2em;
}

.napPlan-optionNote {
	font-size: 1.3rem;
	color: #fff;
	margin-bottom: var(--spacing-md);
}

.napPlan-mediumTitle {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.024rem;
	margin-bottom: 18px;
}

.napPlan-smallTitle {
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.016rem;
	margin-bottom: var(--spacing-xs);
	color: var(--color-black);
}

.napPlan-question,
.napPlan-answer {
	width: 48px;
	height: 48px;
	min-width: 48px;
	flex-shrink: 0;
	margin-right: 12px;
	font-size: 3.2rem;
	border-radius: var(--radius-xl);
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Roboto', sans-serif;
}

.napPlan-question {
	color: var(--color-white);
	background: var(--color-primary);
}

.napPlan-answer {
	color: var(--color-primary);
	background: var(--color-white);
	border: 2px solid var(--color-primary);
}

.napPlan-paragraph {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: 0.01rem;
	color: var(--color-black);
}

.napPlan-annotation {
	font-size: 1.2rem;
	opacity: .5;
}

.napPlan-strong {
	background: linear-gradient(transparent 65%, var(--color-highlight) 40%);
	display: inline-block;
}

.napPlan-list {
	list-style: none;
	font-size: 1.6rem;
	line-height: 1.5;
}

.napPlan-button,
.napPlan-button-stroke {
	gap: var(--spacing-md);
	font-size: 2rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 480px;
	height: var(--spacing-xxl);
	border-radius: var(--radius-md);
	position: relative;
	padding: 0 var(--spacing-xl);
	text-decoration: none;
	box-sizing: border-box;
	margin: 0 auto;
	transition: var(--transition-fast);
	border: 2px solid var(--color-accent);
}

.napPlan-button {
	background: var(--color-accent);
	color: var(--color-white) !important;
}

.napPlan-button-stroke {
	background: var(--color-white);
	color: var(--color-accent) !important;
}

.napPlan-button:hover,
.napPlan-button-stroke:hover {
	transform: translateY(-2px);
}

.napPlan-hidden {
	opacity: 0;
	transition: .25s;
	transform: translateY(-24px);
}

.napPlan-fadeIn {
	opacity: 1;
	transition: 1s;
	transform: translateY(0);
}

.napPlan-icon {
	display: flex;
	align-items: center;
	margin-bottom: var(--spacing-xs);
}

.block-title {
	width: 100%;
	max-width: 640px;
	height: auto;
	line-height: 1;
	text-align: center;
	margin: 0 auto var(--spacing-xl);
}

.cv {
	background: var(--color-primary);
}

.cv-item {
	max-width: 768px;
	text-align: center;
	color: var(--color-white);
}

.cv-sub-text {
	font-size: 1.8rem;
	text-align: center;
	border: 2px solid var(--color-white);
	border-radius: var(--radius-xl);
	padding: var(--spacing-xs) 12px;
	display: inline-block;
	width: fit-content;
}

.firstview {
	background: var(--color-primary);
	color: var(--color-white);
	display: flex;
	padding: 0;
	min-height: 560px;
}

.firstview-item {
	text-align: center;
	height: 560px;
	width: 50%;
	display: flex;
	align-items: center;
}

.firstview-item-tag {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	gap: var(--spacing-sm);
	border: 3px solid var(--color-white);
	background: var(--color-primary);
	padding: var(--spacing-xs);
	border-radius: var(--radius-xl);
	width: 456px;
	position: relative;
}

.firstview-item-tag::before {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%) rotate(135deg);
	border: none;
	border-top: 3px solid var(--color-white);
	border-right: 3px solid var(--color-white);
	background: var(--color-primary);
	width: var(--spacing-xs);
	height: var(--spacing-xs);
	z-index: 2;
}

.firstview-item-tag-item {
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
	color: var(--color-white);
	text-align: center;
	font-weight: bold;
	font-size: 2.4rem;
}

.firstview-image {
	background-image: url(../nap_plan/img/firstview-img01.jpg);
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	min-height: 560px;
}

.firstview-content {
	padding: 40px;
}

.firstview-cta {
	display: flex;
	gap: var(--spacing-md);
	font-size: 1.6rem;
	justify-content: center;
	text-decoration: none;
	align-items: center;
}

.firstview-cta > .napPlan-block {
	flex: 1;
	min-width: 0;
}

.cta-caption {
	color: var(--color-white);
	font-size: 1.6rem;
	font-weight: normal;
	text-align: center;
}

.cta-caption-bk {
	color: var(--color-black);
	font-size: 1.6rem;
	font-weight: normal;
	text-align: center;
}

.firstview-cta .button-fill,
.firstview-cta .button-stroke {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: var(--spacing-xxl);
	border-radius: var(--radius-md);
	font-weight: bold;
	position: relative;
	padding: 0 var(--spacing-xl);
	text-decoration: none;
	box-sizing: border-box;
	transition: var(--transition-fast);
	border: 2px solid var(--color-accent);
}

.firstview-cta .button-fill {
	background: var(--color-accent);
	color: var(--color-white);
}

.firstview-cta .button-stroke {
	background: var(--color-white);
	color: var(--color-accent);
	line-height: 1.2;
}

.firstview-cta .button-fill:hover,
.firstview-cta .button-stroke:hover {
	transform: translateY(-2px);
}

.napPlan-icon-arrow-right {
	position: absolute;
	right: var(--spacing-sm);
	top: 50%;
	transform: translateY(-50%);
	flex-shrink: 0;
}

.overview {
	background: var(--color-white);
}

.overview-item {
	background: var(--color-white);
	text-align: center;
	max-width: 640px;
}

.overview-item .napPlan-img {
	max-width: 360px;
	margin-bottom: var(--spacing-md);
}

.feature {
	background: var(--color-light-gray);
	counter-reset: feature-counter;
}

.feature-item {
	background: var(--color-white);
	max-width: 1200px;
	margin: var(--spacing-lg) auto;
	padding: var(--spacing-lg) var(--spacing-xl);
	border-radius: var(--radius-xl);
	border: 2px solid var(--color-light-gray);
	box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.08);
	counter-increment: feature-counter;
	display: flex;
	align-items: center;
	position: relative;
}

.feature-item .napPlan-smallTitle {
	color: var(--color-white);
	margin-bottom: var(--spacing-md);
	background: var(--color-primary);
	display: inline-block;
	padding: var(--spacing-xs) 12px;
	border-radius: var(--radius-sm);
	width: fit-content;
}

.feature-item .napPlan-smallTitle::before {
	content: counter(feature-counter) ". ";
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	color: var(--color-white);
}

.feature-item .napPlan-block {
	width: 50%;
}

.feature-item > *:nth-child(1) {
	width: 70%;
	padding-right: 40px;
}

.feature-item > *:nth-child(2) {
	width: 30%;
}

.feature-item-img-caption {
	margin-top: var(--spacing-xs);
	font-size: 1.4rem;
	text-align: center;
}

.function {
	background: var(--color-white);
	flex-wrap: wrap;
}

.function-title {
	margin: 0 auto var(--spacing-md);
	width: 100%;
	max-width: 640px;
	height: auto;
	line-height: 1;
	text-align: center;
}

.function-sub-title-wrapper {
	margin: 0 auto 40px;
	text-align: center;
	width: 100%;
	color: var(--color-black);
}

.function-sub-title-text {
	background: linear-gradient(transparent 65%, var(--color-highlight) 40%);
	display: inline-block;
}

.function-item {
	max-width: 1200px;
	gap: var(--spacing-md);
	flex-wrap: wrap;
}

.function-item .napPlan-block {
	padding: var(--spacing-md);
	background: var(--color-white);
	width: calc(33.333% - 16px);
	border-radius: var(--radius-xl);
	border: 2px solid var(--color-light-gray);
	box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.08);
}

.function-item .napPlan-smallTitle {
	margin-bottom: 0;
	margin-left: var(--spacing-xs);
	font-size: 2rem;
}

.function-option {
	max-width: 1200px;
	margin-top: var(--spacing-xxl);
	background: var(--color-light-gray);
	border-radius: var(--radius-xl);
	padding: var(--spacing-xxl) var(--spacing-xl);
	flex-direction: column;
	align-items: center;
}

.function-option-title {
	text-align: center;
	margin-top: 0;
	margin-bottom: var(--spacing-xl);
	width: 100%;
}

.function-option-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-sm);
	width: 100%;
}

.function-option-card {
	display: grid;
	grid-template-columns: 96px 1fr;
	grid-template-areas:
		"img title"
		"img text";
	background: var(--color-white);
	border-radius: var(--radius-xl);
	padding: var(--spacing-lg);
	border: 2px solid var(--color-gray);
	box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.08);
	column-gap: var(--spacing-md);
	row-gap: var(--spacing-xs);
	align-items: center;
}

.function-option-card-img {
	grid-area: img;
	width: 96px;
	border-radius: var(--radius-md);
	overflow: hidden;
	align-self: center;
}

.function-option-card-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.function-option-card-title {
	grid-area: title;
	align-self: end;
	margin-bottom: 0;
	font-size: 2rem;
}

.function-option-card-text {
	grid-area: text;
	align-self: start;
}

.flow-item {
	max-width: 640px;
	gap: var(--spacing-md);
	flex-wrap: wrap;
	margin-bottom: var(--spacing-md);
	align-items: center;
	justify-content: center;
}

.flow-item-numbering {
	position: absolute;
	top: -8px;
	left: -8px;
	width: 48px;
	height: 48px;
	border-radius: var(--radius-round);
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 48px;
	background: var(--color-white);
	color: var(--color-primary);
	z-index: -1;
}

.flow-item .napPlan-block {
	padding: var(--spacing-sm);
	text-align: center;
	font-weight: bold;
	border-radius: 64px;
	background: var(--color-white);
	width: 124px;
	height: 124px;
}

.flow-item .napPlan-img {
	width: var(--spacing-xxl);
}

.achievement {
	background: var(--color-light-gray);
}

.achievement-item {
	max-width: 1200px;
	gap: var(--spacing-md);
	flex-wrap: wrap;
	margin-bottom: var(--spacing-md);
}

.achievement-item .napPlan-block {
	background: var(--color-white);
	width: calc(33.333% - 16px);
	border: 2px solid var(--color-light-gray);
	box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.08);
	border-radius: var(--radius-xl);
}

.achievement-item .achievement-item-facility-img {
	border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.achievement-item .achievement-item-facility-info {
	padding: 20px;
}

.achievement-item .achievement-item-facility {
	font-size: 1.3rem;
	border: 2px solid var(--color-gray);
	padding: 4px var(--spacing-xs);
	border-radius: var(--spacing-sm);
	width: fit-content;
	margin-bottom: var(--spacing-xs);
}

.faq {
	background: var(--color-white);
}

.faq-question {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--color-light-gray);
	padding-bottom: var(--spacing-sm);
}

.faq-answer {
	display: flex;
	align-items: center;
	padding-top: var(--spacing-xs);
}

.faq-item {
	max-width: 960px;
}

.faq-item .napPlan-block {
	box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.08);
	border-radius: var(--radius-xl);
	border: 2px solid var(--color-light-gray);
	background: var(--color-white);
	margin-bottom: var(--spacing-sm);
	padding: var(--spacing-md);
}

.firstview { z-index: -1; }
.overview { z-index: -2; }
.feature { z-index: -3; }
.cv-first { z-index: -4; }
.function { z-index: -5; }
.cv-middle { z-index: -6; }
.achievement { z-index: -7; }
.faq { z-index: -8; }
.cv-last { z-index: -9; }

.cv-last::before,
.firstview::before {
	display: none !important;
}

.pcOnly { display: inline; }
.spOnly { display: none; }

@media screen and (min-width: 641px) and (max-width: 1024px) {

	#napPlan-header {
		padding: var(--spacing-sm) var(--spacing-lg);
	}
	
	.napPlan-hamburger {
		display: block;
	}
	
	.napPlan-nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		width: 100%;
		height: calc(100vh - var(--header-height));
		background: var(--color-white);
		transform: translateX(100%);
		transition: transform var(--transition-fast);
		overflow-y: auto;
		border-top: 1px solid var(--color-light-gray);
	}
	
	.napPlan-nav.is-open {
		transform: translateX(0);
	}
	
	.napPlan-nav-list {
		flex-direction: column;
		padding: var(--spacing-lg);
		gap: 0;
	}
	
	.napPlan-nav-list-item {
		width: 100%;
		border-bottom: 1px solid var(--color-light-gray);
	}
	
	.napPlan-nav-list-link {
		display: block;
		padding: var(--spacing-sm) 0;
		font-size: 1.8rem;
	}
	
	.napPlan-nav-button-group {
		flex-direction: column;
		width: 100%;
		margin-top: var(--spacing-md);
		gap: var(--spacing-sm);
	}
	
	.napPlan-nav-button-fill,
	.napPlan-nav-button-stroke {
		width: auto;
		font-size: 1.8rem;
		height: 56px;
	}
	
	.firstview {
		flex-direction: row;
		min-height: 480px;
	}
	
	.firstview-item {
		height: auto;
		width: 50%;
	}
	
	.firstview-image {
		min-height: 480px;
	}
	
	.firstview-content {
		padding: var(--spacing-lg);
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	
	.firstview-item-tag {
		width: auto;
		max-width: 100%;
		gap: 12px;
		padding: var(--spacing-xs) var(--spacing-sm);
		flex-wrap: wrap;
	}
	
	.firstview-item-tag-item {
		font-size: 1.8rem;
	}
	
	.firstview-item .napPlan-largeTitle {
		font-size: 2.6rem;
		margin-bottom: var(--spacing-md);
	}
	
	.napPlan-img.napPlan-logo {
		width: 240px;
		margin: 0 auto 24px;
	}
	
	.firstview-cta {
		flex-direction: column;
		gap: var(--spacing-sm);
	}
	
	.firstview-cta .button-fill,
	.firstview-cta .button-stroke {
		font-size: 1.8rem;
		height: 56px;
		padding: 0 var(--spacing-lg);
	}
	
	.cta-caption {
		margin-bottom: var(--spacing-xs);
		font-size: 1.5rem;
	}
}


@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	
	.firstview {
		min-height: 520px;
	}
	
	.firstview-item {
		height: 520px;
	}
	
	.firstview-image {
		min-height: 520px;
	}
	
	.firstview-item-tag-item {
		font-size: 2rem;
	}
	
	.firstview-item .napPlan-largeTitle {
		font-size: 2.8rem;
	}
	
	.napPlan-img.napPlan-logo {
		width: 240px;
		margin: 0 auto 24px;
	}
}

@media screen and (max-width: 640px) {

	#napPlan-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.napPlan-hamburger {
		display: block;
	}

	.napPlan-nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		width: 100%;
		height: calc(100vh - var(--header-height));
		background: var(--color-white);
		transform: translateX(100%);
		transition: transform var(--transition-fast);
		overflow-y: auto;
		border-top: 1px solid var(--color-light-gray);
	}

	.napPlan-nav.is-open {
		transform: translateX(0);
	}

	.napPlan-nav-list {
		flex-direction: column;
		padding: var(--spacing-md);
		gap: 0;
	}

	.napPlan-nav-list-item {
		width: 100%;
		border-bottom: 1px solid var(--color-light-gray);
	}

	.napPlan-nav-list-link {
		display: block;
		padding: var(--spacing-sm) 0;
		font-size: 1.6rem;
	}

	.napPlan-nav-button-group {
		flex-direction: column;
		width: 100%;
		margin-top: var(--spacing-md);
		gap: var(--spacing-sm);
	}

	.napPlan-nav-button-fill,
	.napPlan-nav-button-stroke {
		width: auto;
	}

	.napPlan-section {
		flex-direction: column;
	}
	
	.napPlan-block {
		width: 100% !important;
	}
	
	.napPlan-largeTitle {
		font-size: 2.4rem;
		margin-bottom: var(--spacing-sm);
	}

	.napPlan-article {
		padding: var(--spacing-xl) var(--spacing-sm);
	}

	.napPlan-mediumTitle {
		font-size: 2.0rem;
		letter-spacing: 0.024rem;
		margin-bottom: var(--spacing-sm);
	}

	.napPlan-smallTitle {
		font-size: 1.8rem;
		letter-spacing: 0.016rem;
	}

	.napPlan-img {
		margin-bottom: var(--spacing-sm);
	}

	.block-title {
		margin: 0 auto var(--spacing-md);
	}

	.firstview {
		flex-direction: column;
		padding: 0;
	}

	.firstview-item {
		height: auto;
		width: 100%;
	}

	.firstview-image {
		min-height: 240px;
	}

	.firstview-content {
		padding: var(--spacing-md) var(--spacing-sm);
	}

	.firstview-item-tag {
		width: fit-content;
		gap: 12px;
		padding: var(--spacing-xs) var(--spacing-sm);
	}

	.firstview-item-tag-item {
		font-size: 1.6rem;
	}

	.firstview-item .napPlan-largeTitle {
		font-size: 2.0rem;
	}

	.napPlan-img.napPlan-logo {
		width: 184px;
		margin-bottom: var(--spacing-md);
	}

	.firstview-cta {
		flex-direction: column;
		font-size: 1.8rem;
	}

	.cta-caption {
		margin-bottom: var(--spacing-xs);
	}

	.napPlan-strong {
		display: inline;
	}

	.feature-item {
		padding: 0;
		margin: var(--spacing-sm) 0 0;
	}

	.feature-item .napPlan-mediumTitle,
	.feature-item .napPlan-paragraph,
	.feature-item .napPlan-img {
		padding: 0 var(--spacing-sm) 12px;
		margin-bottom: 0;
	}

	.feature-item .napPlan-smallTitle {
		width: 100%;
		border-radius: 20px 20px 0 0;
		text-align: center;
		position: relative;
		font-size: 2rem;
	}

	.feature-item .napPlan-smallTitle::before {
		position: absolute;
		left: var(--spacing-sm);
		bottom: var(--spacing-xs);
		font-size: 2rem;
	}

	.feature-item-img-caption {
		display: block!important;
	}

	.feature-item > *:nth-child(1) {
		padding-right: 0;
		padding-bottom: var(--spacing-sm);
	}

	.feature-item > *:nth-child(2) {
		padding-right: 0;
	}

	.function-sub-title-text {
		background: linear-gradient(transparent 65%, var(--color-highlight) 40%);
		display: inline;
		box-decoration-break: clone;
		-webkit-box-decoration-break: clone;
		line-height: 1.8;
	}

	.function-item {
		gap: var(--spacing-sm);
	}

	.function-item .napPlan-block {
		padding: var(--spacing-sm);
	}

	.function-option {
		padding: var(--spacing-xl) var(--spacing-sm);
		margin-top: var(--spacing-xl);
	}

	.function-option-grid {
		grid-template-columns: 1fr;
	}

	.function-option-card {
		grid-template-columns: 72px 1fr;
		grid-template-areas:
			"img title"
			"text text";
		padding: var(--spacing-md);
		row-gap: var(--spacing-sm);
	}

	.function-option-card-img {
		width: 72px;
	}

	.function-option-card-title {
		align-self: center;
	}

	.napPlan-section .flow-item {
		flex-direction: row;
	}

	.napPlan-section .flow-item-numbering {
		font-size: 1.5rem !important;
	}

	.flow-item .napPlan-block {
		width: 96px !important;
		height: 96px;
	}

	.flow-item .napPlan-img {
		width: 48px;
		margin-bottom: 0;
	}

	.flow-item .napPlan-paragraph {
		font-size: 1.2rem;
	}

	.achievement-item {
		gap: var(--spacing-sm);
	}

	.achievement-item .napPlan-img {
		margin-bottom: 0;
	}

	.faq-item .napPlan-block {
		padding: var(--spacing-sm) 20px var(--spacing-sm) 12px;
		margin-bottom: var(--spacing-xs);
		border-radius: var(--spacing-sm);
	}

	.faq-question {
		font-size: 1.5rem;
		cursor: pointer;
		position: relative;
		transition: all var(--transition-fast);
		border: none;
		padding-bottom: 0;
		margin-bottom: 0;
		padding-right: var(--spacing-lg);
	}

	.faq-question:active {
		opacity: 0.7;
	}

	.faq-question::after {
		content: "";
		position: absolute;
		right: 0;
		top: 50%;
		width: var(--spacing-xs);
		height: var(--spacing-xs);
		border-right: 2px solid var(--color-primary);
		border-bottom: 2px solid var(--color-primary);
		transform: translateY(-50%) rotate(45deg);
		transition: transform var(--transition-fast);
	}

	.faq-question.is-open::after {
		transform: translateY(-25%) rotate(-135deg);
	}

	.faq-answer {
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition: max-height var(--transition-fast), opacity var(--transition-fast), padding var(--transition-fast);
		padding-top: 0;
	}

	.faq-answer.is-open {
		max-height: 500px;
		opacity: 1;
		margin-top: 12px;
		padding-top: 12px;
		font-size: 1.4rem;
		border-top: 1px solid var(--color-light-gray);
	}

	.faq-item .napPlan-block.is-active {
		border-color: var(--color-primary);
	}

	.napPlan-question,
	.napPlan-answer {
		width: 32px;
		height: 32px;
		min-width: 32px;
		font-size: 1.8rem;
	}

	.pcOnly {
		display: none;
	}

	.spOnly {
		display: inline;
	}
}