@charset "UTF-8";

.p-main {
	--base-color: #f9f0df;
	--main-color: #dfb058;
}

[data-toggle-state="inactive"] {
	display: none;
}

.p-button {
	position: relative;
	display: inline-flex;
	column-gap: 0.25em;
	align-items: center;
	justify-content: center;
	padding: 0.5em;
	font-weight: bold;
	text-align: center;
	transition: all ease 0.4s;
}

.p-button--primary {
	color: #fff;
	background: var(--main-color);
	border: 1px solid var(--main-color);
}

@media (any-hover: hover) {
	.p-button--primary:hover {
		color: var(--main-color);
		background: #fff;
	}
}

.p-button--secondary {
	color: #212121;
	background: #fff;
	border: 1px solid #212121;
}

@media (any-hover: hover) {
	.p-button--secondary:hover {
		color: #fff;
		background: #212121;
	}
}

.p-button--round {
	border-radius: 100vmax;
}

.p-button--arrow-r::after {
	font-family: 'nextIcon';
	content: "\e91c";
}

.p-marker {
	text-decoration: underline;
	text-decoration-thickness: 0.75em;
	text-decoration-color: var(--base-color);
	text-underline-offset: -0.4em;
	text-decoration-skip-ink: none;
}

.p-text-accent {
	padding-block: 0.25em;
	color: #fff;
	text-align: center;
	background: var(--main-color);
}

.p-text-accent--round {
	border-radius: 100vmax;
}

.p-image-shadow {
	box-shadow: 8px 8px 0 var(--base-color);
}

.p-mv {
	display: flex;
	flex-direction: column;
}

.p-mv__head {
	display: flex;
	flex-direction: column;
}

.p-mv__sub-headline {
	display: inline-block;
	padding-inline: 1em;
	font-weight: bold;
	line-height: 2;
	color: var(--main-color);
	background: #fff;
}

.p-mv-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 1rem;
	background: rgb(255 255 255 / 90%);
	border-radius: 100vmax;
	box-shadow: 1px 1px 3px rgb(0 0 0 / 20%);
}

.p-mv-list__item {
	color: var(--main-color);
}

.p-mv-list__item:not(:last-child)::after {
	padding-inline: 0.25em;
	content: "/";
}

@media screen and (max-width: 767px) {
	.p-mv {
		justify-content: space-between;
		aspect-ratio: 750 / 790;
		padding: 1.5rem 1rem 1rem;
		background: url("/client_info/HARMONICK/view/userweb/ext/erapo/images/main_sp.jpg") center / cover no-repeat;
	}

	.p-mv__head {
		row-gap: 0.5rem;
	}

	.p-mv__sub-headline {
		font-size: 1.125rem;
	}

	.p-mv__sub-headline:nth-child(1) {
		align-self: flex-start;
	}

	.p-mv__sub-headline:nth-child(2) {
		align-self: flex-end;
	}

	.p-mv__headline {
		font-size: 2.25rem;
		color: var(--main-color);
		text-align: center;
		filter: drop-shadow(3px 3px 0 #fff);
	}

	.p-mv__headline::after {
		position: relative;
		top: -0.5em;
		display: inline-block;
		width: 0.625em;
		content: url("/client_info/HARMONICK/view/userweb/ext/erapo/images/title_decoration_sp.svg");
	}

	.p-mv-list__item {
		font-size: 0.875rem;
	}
}

@media screen and (min-width: 768px) {
	.p-mv {
		justify-content: flex-end;
		aspect-ratio: 1920 / 550;
		padding: 2rem calc(50% - 480px);
		background: url("/client_info/HARMONICK/view/userweb/ext/erapo/images/main.jpg") center / cover no-repeat;
	}

	.p-mv__head {
		row-gap: 1rem;
		align-items: flex-end;
		margin-block: auto;
	}

	.p-mv__sub-headline {
		font-size: 1.5rem;
	}

	.p-mv__headline {
		font-size: 3rem;
		color: #fff;
		filter: drop-shadow(3px 3px 6px rgb(0 0 0 / 60%));
	}

	.p-mv__headline::after {
		position: relative;
		top: -0.5em;
		display: inline-block;
		width: 0.625em;
		content: url("/client_info/HARMONICK/view/userweb/ext/erapo/images/title_decoration.svg");
	}
}

.p-nav {
	background: var(--main-color);
}

.p-nav-list {
	display: flex;
}

@media screen and (max-width: 767px) {
	.p-nav-list {
		flex-wrap: wrap;
		justify-content: center;
	}

	.p-nav-list__item {
		width: calc(100% / 3);
	}

	.p-nav-list__item:nth-child(-n + 3) {
		border-bottom: 1px solid #fff;
	}

	.p-nav-list__item:not(:nth-child(3)) {
		border-right: 1px solid #fff;
	}

	.p-nav-list__item:nth-child(4) {
		border-left: 1px solid #fff;
	}
}

@media screen and (min-width: 768px) {
	.p-nav {
		padding-inline: calc(50% - 480px);
	}

	.p-nav-list {
		border-inline: 1px solid #fff;
	}

	.p-nav-list__item {
		flex: 1;
	}

	.p-nav-list__item:not(:last-child) {
		border-right: 1px solid #fff;
	}
}

.p-sec {
	display: flex;
	flex-direction: column;
}

.p-sec--gold {
	background: var(--base-color);
}

.p-sec__head {
	display: flex;
	flex-direction: column;
	row-gap: 0.5rem;
	align-items: center;
}

.p-sec__sub-headline {
	font-weight: bold;
	color: var(--main-color);
	text-transform: uppercase;
}

.p-sec__headline {
	text-align: center;
}

@media screen and (max-width: 767px) {
	.p-sec {
		row-gap: 1rem;
		padding: 2rem 1rem;
	}

	.p-sec--intro {
		background: url("/client_info/HARMONICK/view/userweb/ext/erapo/images/background_sp.jpg") center / cover no-repeat;
	}

	.p-sec__headline {
		font-size: 1.375rem;
	}
}

@media screen and (min-width: 768px) {
	.p-sec {
		row-gap: 2rem;
		padding: 4rem calc(50% - 480px);
	}

	.p-sec--intro {
		background: url("/client_info/HARMONICK/view/userweb/ext/erapo/images/background.jpg") center / cover no-repeat;
	}
}

.p-bg-radiant {
	background: radial-gradient(var(--radiant), #fff 50%);
}

.p-bg-radiant--yellow {
	--radiant: #f9f0df;
}

.p-bg-radiant--pink {
	--radiant: #f9e5df;
}

.p-course-list {
	display: grid;
}

.p-course-list__item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	gap: 0.5rem;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.p-course-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

@media screen and (min-width: 768px) {
	.p-course-list {
		grid-template-columns: repeat(5, 1fr);
		gap: 2rem 1rem;
	}
}

.p-flow-list {
	display: grid;
}

.p-flow-list__item {
	position: relative;
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	gap: 1rem;
	padding: 1rem;
}

.p-flow-list__num {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 35%;
	aspect-ratio: 1 / 1;
	line-height: 1;
	color: #fff;
	background: var(--main-color);
	border-radius: 50%;
}

@media screen and (max-width: 767px) {
	.p-flow-list {
		grid-template-columns: repeat(5, 60%);
		overflow-x: scroll;
		scroll-snap-type: x mandatory;
		scrollbar-color: var(--main-color) #fff;
	}
}

@media screen and (min-width: 768px) {
	.p-flow-list {
		grid-template-columns: repeat(5, 1fr);
	}
}

.p-scene-list {
	display: grid;
}

.p-scene-list__caption {
	width: 100%;
	padding-block: 0.25em;
	color: #fff;
	text-align: center;
	background: rgb(0 0 0 / 50%);
}

@media screen and (max-width: 767px) {
	.p-scene-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

@media screen and (min-width: 768px) {
	.p-scene-list {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
}

.p-ranking-list {
	display: grid;
}

.p-ranking-list__link {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;
	gap: 0.5rem;
	transition: .4s all ease;
}

@media (any-hover: hover) {
	.p-ranking-list__link:hover {
		opacity: 0.75;
	}
}

@media screen and (max-width: 767px) {
	.p-ranking-list {
		grid-template-columns: repeat(5, 40%);
		gap: 1rem;
		overflow-x: scroll;
		scroll-snap-type: x mandatory;
	}
}

@media screen and (min-width: 768px) {
	.p-ranking-list {
		grid-template-columns: repeat(5, 1fr);
		gap: 2rem;
	}
}

.p-recommend-category-list {
	display: grid;
}

.p-recommend-category-list__item {
	display: contents;
}

.p-recommend-category-list__link {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	gap: 0.5rem;
	justify-content: center;
	transition: .4s all ease;
}

@media (any-hover: hover) {
	.p-recommend-category-list__link:hover {
		opacity: 0.75;
	}
}

@media screen and (max-width: 767px) {
	.p-recommend-category-list {
		grid-template-columns: repeat(5, 40%);
		gap: 1rem;
		overflow-x: scroll;
		scroll-snap-type: x mandatory;
	}
}

@media screen and (min-width: 768px) {
	.p-recommend-category-list {
		grid-template-columns: repeat(5, 1fr);
		gap: 2rem;
	}
}

.p-category-list {
	display: grid;
	align-items: start;
}

.p-category-list__item {
	height: 100%;
	border-bottom: 1px solid #d0ccc5;
}

.p-category-list__button {
	display: flex;
	column-gap: 0.75em;
	align-items: center;
	width: 100%;
	padding: 0.5em;
	color: #212121;
	text-align: left;
	background: transparent;
	border: none;
}

.p-category-list__button::before {
	width: 0.875em;
	height: 0.875em;
	content: "";
	background: var(--main-color);
}

.p-category-list__button[data-toggle-state] {
	cursor: pointer;
}

.p-category-list__button[data-toggle-state="active"]::after {
	margin-left: auto;
	font-family: 'nextIcon';
	content: "\e90a";
}

.p-category-list__button[data-toggle-state="inactive"]::after {
	margin-left: auto;
	font-family: 'nextIcon';
	content: "\e90b";
}

@media screen and (max-width: 767px) {
	.p-category-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.p-category-list__button {
		font-size: 0.875rem;
	}
}

@media screen and (min-width: 768px) {
	.p-category-list {
		grid-template-columns: repeat(4, 1fr);
		gap: 0 1rem;
	}

	.p-category-list__item:nth-child(-n + 4) {
		border-top: 1px solid #d0ccc5;
	}
}

.p-faq-list {
	display: flex;
	flex-direction: column;
}

.p-faq-list__headline {
	display: flex;
	column-gap: 1rem;
	font-weight: bold;
}

.p-faq-list__headline::before {
	font-size: 1.875rem;
	color: var(--main-color);
	content: "Q";
}

.p-faq-list__details {
	display: flex;
	column-gap: 1rem;
	padding-block: 1rem;
}

.p-faq-list__details::before {
	align-self: flex-start;
	font-size: 1.875rem;
	font-weight: bold;
	color: #b4b4b4;
	content: "A";
}

@media screen and (max-width: 767px) {
	.p-faq-list {
		gap: 1rem;
	}

	.p-faq-list__headline {
		font-size: 1.125rem;
	}
}

@media screen and (min-width: 768px) {
	.p-faq-list {
		gap: 2rem;
	}

	.p-faq-list__headline {
		align-items: center;
		font-size: 1.25rem;
	}

	.p-faq-list__details::before {
		margin-top: -1rem;
	}
}
