@charset "UTF-8";

.p-marker {
	background: #faf5f0;
}

.p-dot-underline {
	border-bottom: dotted 8px #f29b76;
}

@media screen and (max-width: 767px) {
	.p-dot-underline {
		border-bottom-width: 4px;
	}
}

@media screen and (min-width: 768px) {
	.p-dot-underline {
		padding-bottom: 0.5em;
		border-bottom-width: 8px;
	}
}

.p-button {
	position: relative;
	display: inline-flex;
	column-gap: 0.5rem;
	align-items: center;
	justify-content: center;
	padding: 0.5em;
	text-align: center;
}

.p-button--primary {
	--primary-button-color: #f29b76;

	color: #fff;
	background: var(--primary-button-color);
	border: 2px solid var(--primary-button-color);
	transition: all .4s ease;
}

@media (any-hover: hover) {
	.p-button--primary:hover {
		background: var(--primary-button-hover-color);
	}
}

.p-button--secondary {
	--secondary-button-color: #3c2828;

	color: var(--secondary-button-color);
	background: #fff;
	border: 1px solid var(--secondary-button-color);
	transition: all .4s ease;
}

@media (any-hover: hover) {
	.p-button--secondary:hover {
		color: #fff;
		background: var(--secondary-button-color);
	}
}

.p-button--shadow {
	filter: drop-shadow(4px 4px 4px rgb(60 40 40 / 15%));
}

@media (any-hover: hover) {
	.p-button--shadow:hover {
	filter: drop-shadow(0 0 0 transparent);
	}
}

.p-button--corner {
	border-radius: 4px;
}

.p-button--round {
	border-radius: 100vmax;
}

.p-button--arrow-r::after {
	position: absolute;
	inset-block: 0;
	right: 0.5rem;
	height: fit-content;
	margin-block: auto;
	font-family: nextIcon;
	font-size: 1.5em;
	content: "\e91c";
}

.p-button--arrow-b::after {
	position: absolute;
	inset-block: 0;
	right: 0.5rem;
	height: fit-content;
	margin-block: auto;
	font-family: nextIcon;
	font-size: 1.5em;
	content: "\e91a";
}

.p-button--orange {
	--primary-button-color: #f29b76;
	--primary-button-hover-color: #f29b76;
	--secondary-button-color: #f29b76;
}

.p-button--blue {
	--primary-button-color: #a0c1de;
	--primary-button-hover-color: #76a1c0;
	--secondary-button-color: #8384ab;
}

.p-button--green {
	--primary-button-color: #94c5b1;
	--primary-button-hover-color: #60a592;
	--secondary-button-color: #94c5b1;
}

.p-button--yellow {
	--primary-button-color: #eac487;
	--primary-button-hover-color: #e7a964;
	--secondary-button-color: #eac487;
}

.p-button--pink {
	--primary-button-color: #e4bab9;
	--primary-button-hover-color: #dd9ba2;
	--secondary-button-color: #e4bab9;
}

.p-button--purple {
	--primary-button-color: #c3bfe1;
	--primary-button-hover-color: #aaabdb;
	--secondary-button-color: #c3bfe1;
}

.p-header {
	display: flex;
	flex-direction: column;
	row-gap: 0.5rem;
	background: #fff;
}

.p-nav-list {
	display: flex;
}

.p-nav-list__item {
	flex: 1;
}

.p-nav-list__item:not(:last-child) {
	border-right: 1px dashed;
}

.p-nav-list__link {
	display: block;
	padding-block: 0.5rem;
	font-weight: bold;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.p-header {
		padding: 0.5rem;
	}

	.p-nav-list__link {
		font-size: 0.7rem;
	}
}

@media screen and (min-width: 768px) {
	.p-header {
		padding: 1rem max(1rem, calc(50% - 400px));
	}

	.p-nav-list__link {
		padding-inline: 1rem;
		font-size: 1.25rem;
	}
}

.p-main {
	color: #3c2828;
}

.p-mv {
	display: flex;
	align-items: center;
}

.p-mv-head__sub-text {
	display: block;
	font-family: "Work Sans", sans-serif;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 300;
	font-optical-sizing: auto;
	color: #5a5a5a;
}

.p-mv-head__main-text {
	font-weight: bold;
	letter-spacing: 2px;
	filter: drop-shadow(1px 1px 0 #fff);
	fill: #75859c;
	stroke: #75859c;
	stroke-width: 1px;
}

.p-mv-head__text {
	display: inline;
	padding: 0.25em 0.5em;
	margin-bottom: 0;
	font-weight: bold;
	line-height: 2;
	color: #5a5a5a;
	letter-spacing: 0.075em;
	background: rgb(255 255 255 / 75%);
}

@media screen and (max-width: 767px) {
	.p-mv {
		padding: 1rem;
		background: url("/client_info/HARMONICK/view/userweb/ext/oiwai/syussaniwai/images/mv_sp.png") top center / cover no-repeat;
		aspect-ratio: 1.83 / 1;
	}

	.p-mv-head__main-text {
		font-size: 2rem;
	}

	.p-mv-head__text {
		font-size: 0.875rem;
	}
}

@media screen and (min-width: 768px) {
	.p-mv {
		padding: 0 max(2rem, calc(50% - 600px));
		background: url("/client_info/HARMONICK/view/userweb/ext/oiwai/syussaniwai/images/mv.png") top center / cover no-repeat;
		aspect-ratio: 2.43 / 1;
	}

	.p-mv-head {
		width: 50%;
	}

	.p-mv-head__main-text {
		font-size: 1.75rem;
	}

	.p-mv-head__text {
		font-size: 2.5rem;
	}
}

.p-lead-sec {
	max-width: 800px;
	padding: 1rem;
	margin-inline: auto;
	text-align: justify;
}

.p-sec {
	--bg-color: transparent;
	--headline-color: #3c2828;
	--shadow-color: hsl(0deg 0% 71% / 44%);

	display: flex;
	flex-direction: column;
	background: var(--bg-color);
}

.p-sec--orange {
	--bg-color: #fdf2ee;
	--shadow-color: hsl(333deg 22% 90% / 90%);
}

.p-sec--gray {
	--bg-color: #f9f7f7;
}

.p-sec--blue {
	--bg-color: #ebf6ff;
	--headline-color: #6296c9;
}

@media screen and (max-width: 767px) {
	.p-sec {
		row-gap: 1rem;
		padding: 2rem 1rem;
	}
}

@media screen and (min-width: 768px) {
	.p-sec {
		row-gap: 2rem;
		padding: 4rem 1rem;
	}
}

.p-sec__headline {
	font-weight: bold;
	line-height: 1.75;
	color: var(--headline-color);
	text-align: center;
}

.p-sec__headline--slashed {
	display: flex;
	align-items: center;
	justify-content: center;
}

.p-sec__headline--slashed::before,
.p-sec__headline--slashed::after {
	width: 1px;
	content: "";
	background: currentcolor;
}

@media screen and (max-width: 767px) {
	.p-sec__headline {
		font-size: 1.25rem;
	}

	.p-sec__headline--slashed {
		column-gap: 1.5rem;
	}

	.p-sec__headline--slashed::before,
	.p-sec__headline--slashed::after {
		height: 2.5rem;
	}

	.p-sec__headline--slashed::before {
		transform: rotate(-20deg);
	}

	.p-sec__headline--slashed::after {
		transform: rotate(20deg);
	}
}

@media screen and (min-width: 768px) {
	.p-sec__headline {
		font-size: 1.75rem;
		letter-spacing: 0.05em;
	}

	.p-sec__headline--slashed {
		column-gap: 3rem;
	}

	.p-sec__headline--slashed::before,
	.p-sec__headline--slashed::after {
		height: 3rem;
	}

	.p-sec__headline--slashed::before {
		transform: rotate(-35deg);
	}

	.p-sec__headline--slashed::after {
		transform: rotate(35deg);
	}
}

.p-sec__body {
	max-width: 800px;
	margin-inline: auto;
}

.p-sec__body--wide {
	max-width: 1200px;
}

.p-card {
	position: relative;
	max-width: 800px;
	margin-inline: auto;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0.3px 0.3px 0.5px var(--shadow-color),
				1.1px 1.1px 1.8px -0.8px var(--shadow-color),
				2.7px 2.7px 4.3px -1.7px var(--shadow-color),
				6.6px 6.6px 10.5px -2.5px var(--shadow-color);
}

@media screen and (max-width: 767px) {
	.p-card {
		padding: 2rem 1rem;
	}
}

@media screen and (min-width: 768px) {
	.p-card {
		padding: 4rem;
	}
}

.p-card__ribbon-headline {
	--r: 0.5em;

	position: absolute;
	inset-inline: 0;
	width: fit-content;
	min-width: 60%;
	padding-inline: calc(var(--r) + .3em);
	margin-inline: auto;
	clip-path: polygon(0 0,100% 0,calc(100% - var(--r)) 50%,100% 100%,0 100%, var(--r) 50%);
	color: #fff;
	text-align: center;
	background: #f29b76;
}

@media screen and (max-width: 767px) {
	.p-card__ribbon-headline {
		padding: 0.5em 1.5em;
		font-size: 1.25rem;
		transform: translateY(calc(-50% + -2rem));
	}
}

@media screen and (min-width: 768px) {
	.p-card__ribbon-headline {
		padding: 0.625em 1.5em;
		font-size: 1.5rem;
		transform: translateY(calc(-50% + -4rem));
	}
}

.p-shadow {
	--shadow-color: hsl(0deg 0% 71% / 44%);

	filter: 
        drop-shadow(0.3px 0.3px 0.5px var(--shadow-color))
        drop-shadow(1.1px 1.1px 1.8px var(--shadow-color))
        drop-shadow(2.7px 2.7px 4.3px var(--shadow-color))
        drop-shadow(6.6px 6.6px 10.5px var(--shadow-color));
}

.p-logo-shadow {
	filter: drop-shadow(0 0 0 currentcolor);
}

.p-ranking-list {
	display: grid;
	counter-reset: ranking;
}

.p-ranking-list__item {
	position: relative;
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;
}

.p-ranking-list__item::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 1.75em;
	aspect-ratio: 1 / 1;
	line-height: 1.75;
	color: #fff;
	text-align: center;
	content: counter(ranking);
	counter-increment: ranking;
	background: #646464;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.p-ranking-list__item:nth-child(1)::before {
	background: #bbaa58;
}

.p-ranking-list__item:nth-child(2)::before {
	background: #9da1aa;
}

.p-ranking-list__item:nth-child(3)::before {
	background: #9d7638;
}

@media screen and (max-width: 767px) {
	.p-ranking-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem 1rem;
	}

	.p-ranking-list__item {
		row-gap: 0.25rem;
	}
}

@media screen and (min-width: 768px) {
	.p-ranking-list {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}

	.p-ranking-list__item::before {
		font-size: 1.5rem;
	}

	.p-ranking-list__item {
		row-gap: 0.25rem;
		align-items: center;
	}
}

.p-qa-list {
	display: flex;
	flex-direction: column;
}

.p-qa-list__item {
	display: flex;
	flex-direction: column;
	row-gap: 2rem;
}

.p-qa-list__headline {
	position: relative;
	margin-inline: auto;
	font-weight: bold;
	color: #f29b76;
	text-align: center;
	border-bottom-style: solid;
}

.p-qa-list__headline::after {
	position: absolute;
	inset-inline: 0;
	width: 1rem;
	height: 1rem;
	margin-inline: auto;
	content: "";
	background-color: #fff;
	border-color: #f29b76 #f29b76 transparent transparent;
	border-style: solid;
	rotate: 135deg;
}

.p-qa-list__desc {
	line-height: 2;
}

@media screen and (max-width: 767px) {
	.p-qa-list {
		row-gap: 1.5rem;
	}

	.p-qa-list__headline {
		width: fit-content;
		padding: 0.5rem 1em;
		font-size: 1.125rem;
		border-bottom-width: 1px;
	}

	.p-qa-list__headline::after {
		border-width: 1px;
		translate: 0 175%;
	}
}

@media screen and (min-width: 768px) {
	.p-qa-list {
		row-gap: 4rem;
	}

	.p-qa-list__headline {
		width: 60%;
		padding-block: 1rem;
		font-size: 1.25rem;
		border-bottom-width: 2px;
	}

	.p-qa-list__headline::after {
		border-width: 2px;
		translate: 0 250%;
	}
}

.p-qa-points {
	background: #fdf2ee;
	border-radius: 20px;
}

@media screen and (max-width: 767px) {
	.p-qa-points {
		padding: 1rem;
	}
}

@media screen and (min-width: 768px) {
	.p-qa-points {
		display: flex;
		column-gap: 2rem;
		align-items: center;
		padding: 2rem 5rem;
		margin-top: 2rem;
	}
}

.p-table {
	width: 100%;
}

.p-table__head {
	background: #fdf2ee;
}

.p-table__headline {
	padding-block: 0.5rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
	border: 1px solid;
}

.p-table__data {
	padding-block: 0.5rem;
	line-height: 1.5;
	text-align: center;
	border: 1px solid;
}

.p-point-sec {
	display: flex;
	flex-direction: column;
}

.p-point-sec__headline {
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
	align-items: center;
	text-align: center;
}

.p-point-sec__image-warpper {
	position: relative;
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
}

.p-point-sec__image-warpper--yellow {
	--bg-color: #fff5dd;
}

.p-point-sec__image-warpper--blue {
	--bg-color: #e9f8ff;
}

.p-point-sec__image-warpper::before {
	position: absolute;
	top: 10%;
	right: 0;
	z-index: -1;
	height: 70%;
	content: "";
	background: var(--bg-color);
}

.p-point-sec__image {
	min-width: 0;
}

.p-point-sec__caption {
	display: block;
	padding-block: 0.5em;
	color: #fff;
	text-align: center;
	letter-spacing: 0.1em;
	background: var(--bg-color);
	border-radius: 100vmax;
}

.p-point-sec__caption--pink {
	--bg-color: #e4bab9;
}

.p-point-sec__caption--green {
	--bg-color: #94c5b1;
}

.p-point-sec__caption--yellow {
	--bg-color: #eac487;
}

.p-point-sec__caption--blue {
	--bg-color: #a0c1de;
}

@media screen and (max-width: 767px) {
	.p-point-sec {
		row-gap: 1rem;
	}

	.p-point-sec__image-warpper::before {
		width: 80%;
	}

	.p-point-sec__image--top {
		align-self: flex-end;
		border-radius: 16px 0 0 16px;
	}

	.p-point-sec__image--bottom {
		border-radius: 0 16px 16px 0;
	}
}

@media screen and (min-width: 768px) {
	.p-point-sec {
		row-gap: 2rem;
	}

	.p-point-sec__image-warpper::before {
		width: calc(50% + 240px);
	}

	.p-point-sec__image {
		border-radius: 24px;
	}

	.p-point-sec__image--bottom {
		align-self: flex-end;
	}
}

.p-months-list {
	display: grid;
	gap: 2rem;
}

.p-months-list__item {
	display: flex;
	flex-direction: column;
	row-gap: 0.75rem;
}

@media screen and (max-width: 767px) {
	.p-months-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 768px) {
	.p-months-list {
		grid-template-columns: repeat(4, 1fr);
	}
}

.p-comment-sec {
	position: relative;
	color: #595a5a;
	background: #f1ede8;
}

.p-comment-sec::before {
	position: absolute;
	inset-inline: 0;
	top: 0;
	margin-inline: auto;
	clip-path: polygon(50% 100%,100% 0,0 0);
	content: "";
	background: #fff;
}

.p-comment-sec__headline {
	font-size: 1.5rem;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.p-comment-sec {
		padding: 2rem 1rem;
	}

	.p-comment-sec::before {
		width: 1rem;
		aspect-ratio: 1 / cos(30deg);
	}
}

@media screen and (min-width: 768px) {
	.p-comment-sec {
		padding: 3rem 1rem;
	}

	.p-comment-sec::before {
		width: 2rem;
		aspect-ratio: 2;
	}
}

.p-course-sec--blue {
	--section-color: #a0c1de;
}

.p-course-sec--green {
	--section-color: #94c5b1;
}

.p-course-sec--yellow {
	--section-color: #eac487;
}

.p-course-sec--pink {
	--section-color: #e4bab9;
}

.p-course-sec--purple {
	--section-color: #c3bfe1;
}

.p-course-sec__headline {
	display: block;
	color: #fff;
	text-align: center;
	background: var(--section-color);
	border-radius: 100vmax;
}

.p-course-list {
	display: flex;
	flex-wrap: wrap;
}

.p-course-list__budge {
	position: absolute;
	top: -1.5rem;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.5em;
	aspect-ratio: 1 / 1;
	color: #fff;
	background: var(--ranking-color);
	border-radius: 50%;
}

.p-course-list__budge--gold {
	--ranking-color: #bbaa58;
}

@media screen and (max-width: 767px) {
	.p-course-sec__headline {
		padding-block: 0.25em;
	}

	.p-course-list {
		gap: 1rem;
	}

	.p-course-list__item {
		display: flex;
		flex: 1;
		flex-direction: column;
		row-gap: 0.5rem;
		text-align: center;
	}

	.p-course-list__item--wide {
		flex-basis: 100%;
		text-align: left;
	}
}

@media screen and (min-width: 768px) {
	.p-course-sec__headline {
		padding-block: 0.75em;
	}

	.p-course-list {
		flex-direction: column;
	}

	.p-course-list__item {
		display: flex;
		column-gap: 6rem;
		align-items: center;
	}

	.p-course-list__budge {
		top: -1.5em;
		left: -1.5em;
		font-size: 1.5rem;
	}
}

.p-faq-list {
	display: flex;
	flex-direction: column;
	row-gap: 2rem;
}

.p-faq-list__item {
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
	border-color: #a0a0a0;
	border-style: solid;
	border-radius: 16px;
}

.p-faq-list__headline {
	font-weight: bold;
}

.p-faq-list__headline::before {
	color: #5593c5;
	content: "Q.";
}

.p-faq-list__desc::before {
	font-weight: bold;
	color: #f29b76;
	content: "A.";
}

@media screen and (max-width: 767px) {
	.p-faq-list__item {
		padding: 1rem;
		border-width: 2px;
	}
}

@media screen and (min-width: 768px) {
	.p-faq-list__item {
		padding: 2rem 1.5rem;
		border-width: 4px;
	}

	.p-faq-list__headline {
		font-size: 1.125rem;
	}
}

.p-article-list {
	display: grid;
	gap: 1rem;
}

@media screen and (max-width: 767px) {
	.p-article-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 768px) {
	.p-article-list {
		grid-template-columns: repeat(3, 1fr);
	}
}
