/* #region theme =================================== */
:root {
	--primary-color: #aa7322;
	--font-color: #aa7322;
	--sub-font-color: #595757;
}
/* #endregion theme -------------------------------- */

/* #region Reset and Setup =================================== */
html, body, div,
p, a, img, figure,
dl, dt, dd,
ul, ol, li,
button,
h1, h2, h3, h4, h5, h6,
hr, header, footer, section, article {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
}

html {
	box-sizing: border-box;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

*, *::before, *::after {
	box-sizing: inherit;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.5;
	background: #f9f3eb;
	color: var(--font-color);
}

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

@media (min-width: 1025px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

img {
	border: none;
	max-width: 100%;
	vertical-align: middle;
}

svg {
	display: block;
	max-width: 100%;
	height: auto;
	fill: currentcolor;
}

.inner {
	display: block;
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
}

@media only screen and (min-width: 1025px) {
	br.mb {
		display: none;
	}
}
@media only screen and (max-width: 1024px) {
	br.pc {
		display: none;
	}
}

.img-box {
	position: relative;
	overflow: hidden;
}
.img-box img, .img-box video {
	position: absolute;
	height: 100%;
	width: 100%;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	object-fit: cover;
}

.u-visually-hidden {
	position: absolute!important;
	width: 1px!important;
	height: 1px!important;
	margin: -1px!important;
	padding: 0!important;
	border: 0!important;
	white-space: nowrap!important;
	clip: rect(0,0,0,0)!important;
	overflow: hidden!important;
}
/* #endregion Reset and Setup -------------------------------- */

/* #region layout =================================== */
.l-inner {
	display: block;
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 40px;
}
@media only screen and (max-width: 1024px) {
	.l-inner {
		max-width: 600px;
	}
}


.l-header {
	position: relative;
	overflow-x: hidden;
}
.l-header__nav {
	position: fixed;
	width: 375px;
	height: 100vh;
	padding-bottom: 100px;
	top: 0;
	right: 0;
	background: #fff;
	overflow-y: scroll;
	text-align: center;
	z-index: 50;
	transform: translateX(105%);
	transition: transform 0.4s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-header.is-open .l-header__nav {
	transform: translateX(0);
}
.l-header__nav .logo-box {
	position: relative;
	margin-bottom: 50px;
	background: var(--primary-color);
}
.l-header__nav .logo-box .logo {
	padding-top: 30px;
	padding-bottom: 25px;
	width: 102px;
}
.l-header__nav .logo-box .deco-bottom {
	position: absolute;
	width: 100%;
	height: 18px;
	bottom: -17px;
	left: 50%;
	transform: translateX(-50%);
}
.l-header__nav .logo-box .deco-bottom svg {
	position: absolute;
	width: 100%;
	top: 0;
}
.l-header__nav .nav-list {
	padding: 0 30px;
	margin-bottom: 30px;
	text-align: center;
}
.l-header__nav .nav-list li {
	margin-bottom: 15px;
}
.l-header__nav .nav-list a {
	display: inline-block;
	font-weight: 500;
	font-size: 19px;
	line-height: 1.3;
	letter-spacing: 0.05em;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-header__nav .nav-list a:hover {
	opacity: 0.6;
}
.l-header__nav .info {
	padding: 0 30px;
}
.l-header__nav .info dl {
	padding: 10px 15px;
	background: #f9f3eb;
	border-radius: 14px;
}
.l-header__nav .info dl > div {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 7px;
}
.l-header__nav .info dt {
	flex: 0 0 80px;
	padding: 5px 10px;
	background: var(--primary-color);
	color: #fff;
	font-weight: 500;
	font-size: 15px;
	line-height: 1;
	text-align: justify;
	text-align-last: justify;
}
.l-header__nav .info dd {
	font-weight: 500;
	font-size: 27px;
	line-height: 25px;
	text-align: left;
}
.l-header__nav .info .holiday {
	font-size: 17px;
}
.l-header__nav .info .note {
	display: block;
	margin-top: 5px;
	font-weight: 400;
	font-size: 12px;
	line-height: 1;
}
.l-header__menu-btn-box {
	display: block;
	position: fixed;
    top: 40px;
    right: 40px;
	z-index: 99;
}
.l-header__menu-btn {
	cursor: pointer;
	position: relative;
	width: 72px;
	height: 72px;
	border-radius: 100%;
	background: #fff;
	text-align: center;
}
.l-header__menu-btn .border1, .l-header__menu-btn .border2, .l-header__menu-btn .border3 {
	display: inline-block;
	position: absolute;
	width: 30px;
	height: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	border-top: 2px solid var(--primary-color);
	transform-origin: center;
	transition: transform 0.4s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-header__menu-btn .border1 {
	transform: translateY(-8px);
}
.l-header__menu-btn .border3 {
	transform: translateY(8px);
}
.l-header.is-open .l-header__menu-btn .border1 {
	transform: translateY(0) rotate(-135deg);
}
.l-header.is-open .l-header__menu-btn .border2 {
	opacity: 0;
}
.l-header.is-open .l-header__menu-btn .border3 {
	transform: translateY(0) rotate(-225deg);
}
@media only screen and (max-width: 1024px) {
	.l-header__menu-btn-box {
		top: 20px;
		right: 20px;
	}
}
@media only screen and (max-width: 480px) {
	.l-header__nav {
		width: 100%;
	}
}


.l-main {
	padding-bottom: 80px;
	overflow: hidden;
}

.l-footer {
	position: relative;
	padding-top: 15px;
	padding-bottom: 15px;
	background: var(--primary-color);
	color: #fff;
}
.l-footer .deco-top {
	position: absolute;
	width: 100%;
	height: 80px;
	top: -79px;
	left: 50%;
	transform: translateX(-50%);
}
.l-footer .deco-top svg {
	position: absolute;
	width: 100%;
	bottom: 0;
	fill: var(--primary-color);
}
.l-footer__logo {
	display: block;
	margin: 0 auto;
	width: 144px;
	margin-bottom: 30px;
}
.l-footer .copyright {
	font-size: 19px;
	letter-spacing: 0.03em;
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.l-footer__logo {
		width: 86px;
	}
	.l-footer .copyright {
		font-size: 10px;
	}
}
/* #endregion layout -------------------------------- */

/* #region components =================================== */
.c-section-title01 {
	padding: 10px 40px;
	border-radius: 30px;
	background: var(--primary-color);
	color: #fff;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.4211;
}
@media only screen and (max-width: 1024px) {
	.c-section-title01 {
		padding: 5px 20px;
		border-radius: 20px;
		font-size: 19px;
		text-align: center;
	}
}

.c-pdf-link01 {
	display: inline-block;
	position: relative;
	padding: 6px 20px 7px 50px;
	margin-bottom: 20px;
	background: #bf9b63;
	border-radius: 15px;
	color: #fff;
	font-weight: 500;
	font-size: 19px;
	line-height: 1.3;
	text-align: left;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.c-pdf-link01::before {
	content: url(../images/common/icon-pdf.svg);
	position: absolute;
	display: inline-block;
	left: 22px;
	top: 7px;
}
.c-pdf-link01:hover {
	opacity: 0.6;
}
/* #endregion components -------------------------------- */

/* #region fv =================================== */
.p-fv {

}
.p-fv__main {

}
.p-fv__content {
	position: relative;
	padding-top: 125px;
	padding-bottom: 135px;
	background: var(--primary-color);
}
.p-fv__content .logo {
	position: absolute;
	display: block;
	width: 244px;
	top: 62px;
	left: 100px;
	margin: 0 auto;
}
.p-fv__content .copy {
	display: flex;
	justify-content: center;
	flex-direction: row-reverse;
	gap: 13px;
	margin-right: 45px;
	color: #fff;
}
.p-fv__content .copy-main {
	writing-mode: vertical-rl;
	font-size: 35px;
	line-height: 1.3em;
}
.p-fv__content .copy-line {
	border-right: 1px solid #fff;
}
.p-fv__content .copy-sub {
	writing-mode: vertical-rl;
	font-size: 23px;
	line-height: 1.6522;
}
.p-fv__content .deco-bottom {
	position: absolute;
	width: 100%;
	height: 94px;
	bottom: -93px;
	left: 50%;
	transform: translateX(-50%);
}
.p-fv__content .deco-bottom svg {
	position: absolute;
	width: 100%;
	top: 0;
}
@media only screen and (min-width: 1921px) {
	.p-fv__content .deco-bottom svg {
		height: 100%;
	}
}
@media only screen and (max-width: 1024px) {
	.p-fv__content {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.p-fv__content .logo {
		position: relative;
		width: 100px;
		top: auto;
		left: auto;
		margin: 0 auto 15px;
	}
	.p-fv__content .copy {
		gap: 3px;
		margin-right: 0;
	}
	.p-fv__content .copy-main {
		font-size: 15px;
	}
	.p-fv__content .copy-sub {
		font-size: 10px;
	}
}
.p-fv__photo {
	position: relative;
	height: 430px;
}
.p-fv__photo img {
	position: absolute;
	max-width: none;
	width: min(1440px, 130%);
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
}
@media only screen and (max-width: 1024px) {
	.p-fv__photo {
		height: 40vw;
	}
	.p-fv__photo img {
		width: min(1024px, 136%);
	}
}
.p-fv__foot {
	position: relative;
	background: #fff;
	padding-bottom: 45px;
}
.p-fv__foot .deco-top {
	position: absolute;
	width: 100%;
	height: 154px;
	top: -153px;
	left: 50%;
	transform: translateX(-50%);
}
.p-fv__foot .deco-top img {
	position: absolute;
	width: 100%;
	bottom: 0;
}
.p-fv__foot .site-title {
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	text-align: center;
}
.p-fv__foot .site-title__sub {
	font-size: 26px;
	line-height: 1;
}
.p-fv__foot .site-title__main {
	font-weight: 600;
	font-size: 90px;
	line-height: 90px;
}
.p-fv__foot .site-title__main .label {
	display: inline-block;
	font-size: 0.6667em;
	vertical-align: middle;
}
.p-fv__foot .site-title__main .name {
	display: inline-block;
	margin-top: -5px;
	font-size: 1em;
	letter-spacing: -0.05em;
	vertical-align: middle;
}
@media only screen and (min-width: 1921px) {
	.p-fv__foot .deco-top img {
		height: 100%;
	}
}
@media only screen and (max-width: 1024px) {
	.p-fv__foot {
		padding-bottom: 20px;;
	}
	.p-fv__foot .deco-top {
		width: max(706px, 100%)
	}
	.p-fv__foot .site-title__sub {
		font-size: 10px;
	}
	.p-fv__foot .site-title__main {
		font-size: 32px;
		line-height: 32px;
	}
}
/* #endregion fv -------------------------------- */

/* #region about =================================== */
.p-about {
	position: relative;
	padding-top: 55px;
	padding-bottom: 35px;
	background: #ecd9c6;
	color: var(--sub-font-color);
}
.p-about .deco-top {
	position: absolute;
	width: 100%;
	height: 245px;
	top: -244px;
	left: 50%;
	transform: translateX(-50%);
	color: #ecd9c6;
	pointer-events: none;
}
.p-about .deco-top svg {
	position: absolute;
	width: 100%;
	bottom: 0;
}
.p-about__inner {
	display: flex;
	justify-content: space-between;
}
.p-about__content {
	flex: 0 1 610px;
}
.p-about__content .title {
	margin-bottom: 15px;
	font-weight: 700;
	font-size: 28px;
	letter-spacing: 0.03em;
	line-height: 1;
}
.p-about__content p {
	font-weight: 500;
	font-size: 15px;
	line-height: 2;
	letter-spacing: 0.03em;
}
.p-about__profile {
	flex: 0 0 235px;
}
.p-about__profile .img-box {
	width: 100%;
	height: 195px;
	margin-bottom: 8px;
	background: #eee;
}
.p-about__profile .role {
	margin-bottom: 8px;
    width: 3.5em;
	font-weight: 500;
	font-size: 15px;
	line-height: 1;
    text-align: justify;
    text-align-last: justify;
}
.p-about__profile .name {
	margin-bottom: 10px;
    width: 5.5em;
	font-weight: 500;
	font-size: 18px;
	line-height: 1;
    text-align: justify;
    text-align-last: justify;
}
.p-about__profile dl {
	font-size: 12px;
	line-height: 1.4167;
}
.p-about__profile dt {
	display: inline-block;
	position: relative;
    width: 5em;
	padding-right: 1em;
    text-align: justify;
    text-align-last: justify;
	vertical-align: top;
}
.p-about__profile dt::after {
	content: '：';
	position: absolute;
	right: 0;
	top: 0;
}
.p-about__profile dd {
	display: inline-block;
}
@media only screen and (min-width: 1921px) {
	.p-about .deco-top svg {
		height: 100%;
	}
}
@media only screen and (max-width: 1024px) {
	.p-about {
		padding-top: 25px;
	}
	.p-about__inner {
		display: block;
		max-width: 600px;
		padding: 0 50px;
	}
	.p-about__content {
		margin-bottom: 1em;
	}
	.p-about__content .title {
		font-size: 16px;
		text-align: center;
	}
	.p-about__content p {
		font-size: 14px;
	}
	.p-about__profile {
		text-align: center;
	}
	.p-about__profile .img-box {
		margin: 0 auto 8px;
		width: 170px;
	}
	.p-about__profile .role {
		margin: 0 auto 8px;
	}
	.p-about__profile .name {
		margin: 0 auto 10px;
	}
	.p-about__profile dl {
		display: inline-block;
		text-align: left;
	}
}
/* #endregion about -------------------------------- */

/* #region check =================================== */
.p-check {
	padding-top: 20px;
}
.p-check .c-section-title01 {
	margin-bottom: 20px;
}
.p-check__list {
	margin-bottom: 35px;
	margin-left: 0.5em;
	font-weight: 500;
	font-size: 17px;
	letter-spacing: 0.03em;
	line-height: 1.5;
}
.p-check__list li {
	position: relative;
	padding-left: 1em;
	margin-bottom: 0.6em;
	text-align: justify;
}
.p-check__list li::before {
	content: "●";
	position: absolute;
	left: 0;
}
@media only screen and (max-width: 1024px) {
	.p-check__list {
		font-size: 14px;
	}
}
/* #endregion check -------------------------------- */

/* #region self-check =================================== */
.p-self-check .c-section-title01 {
	margin-bottom: 20px;
}
.p-self-check__list {
	margin-bottom: 22px;
}
.p-self-check__list li {
	display: flex;
	margin-bottom: 10px;
	font-weight: 500;
	font-size: 18px;
}
.p-self-check__list li::before {
	content: 'Q';
	flex: 0 0 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--primary-color);
	color: #fff;
	line-height: 1;
}
.p-self-check__list li p {
	flex-grow: 1;
	padding: 6px 15px;
	background: #ecdbc8;
	letter-spacing: 0.03em;
	line-height: 1.5;
	text-align: justify;
}
.p-self-check__advice .balloon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 300px;
	padding-bottom: 15px;
	aspect-ratio: 1.593 / 1;
	margin: 0 auto;
	background: center / contain no-repeat url(../images/top/balloon01.png);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.03em;
	line-height: 1.7857;
	text-align: center;
}
.p-self-check__advice img {
	display: block;
	width: 170px;
	margin: -20px auto 0;
}
@media only screen and (max-width: 1024px) {
	.p-self-check__list li {
		font-size: 13px;
	}
}
/* #endregion self-check -------------------------------- */

/* #region features =================================== */
.p-features .c-section-title01 {
	margin-bottom: 30px;
}
.p-features__item-list {
	margin-bottom: 50px;
}
.p-features__item {
	position: relative;
	display: flex;
	justify-content: space-between;
	min-height: 162px;
	margin-bottom: 20px;
	border-radius: 30px;
	overflow: hidden;
	background: #fff;
	border: 2px solid var(--primary-color);
}
.p-features__item .cont-box {
	position: relative;
	flex: 0 1 670px;
	padding: 25px 25px 10px 90px;
}
.p-features__item .cont-box .num {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	font-size: 80px;
	line-height: 1;
}
.p-features__item .cont-box .title {
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--primary-color);
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.03em;
	line-height: 1.375;
}
.p-features__item .cont-box .text {
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.03em;
	line-height: 1.6;
	text-align: justify;
}
.p-features__item .img-box {
	flex: 0 0 247px;
}
@media only screen and (max-width: 1024px) {
	.p-features__item {
		display: block;
		border: 1px solid var(--primary-color);
		padding: 15px 20px 25px;
		margin-bottom: 10px;
		border-radius: 15px;
	}
	.p-features__item .cont-box {
		padding: 0;
	}
	.p-features__item .cont-box .num {
		display: block;
		position: relative;
		padding: 0;
		margin-bottom: 15px;
		font-size: 30px;
		text-align: center;
	}
	.p-features__item .cont-box .title {
		margin-bottom: 0px;
		border-bottom: none;
		font-size: 16px;
	}
	.p-features__item .cont-box .text {
		margin-bottom: 20px;
		font-size: 14px;
	}
	.p-features__item .img-box {
		aspect-ratio: 1.427 / 1;
	}
}
/* #endregion features -------------------------------- */

/* #region flow =================================== */
.p-flow .c-section-title01 {
	margin-bottom: 30px;
}
.p-flow__item-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, 300px);
	justify-content: center;
	gap: 30px 45px;
	margin-bottom: 45px;
}
.p-flow__item {
	position: relative;
	width: 300px;
	border: 2px solid var(--primary-color);
	border-radius: 0 0 20px 20px;
	overflow: hidden;
	background: #fff;
}
.p-flow__item .num {
	position: absolute;
	top: 0;
	left: 0;
	width: 70px;
	height: 70px;
	padding: 10px;
	clip-path: polygon(
		0 0,
		100% 0,
		0 100%
	);
	background: #fff;
	font-weight: 500;
	font-size: 20px;
	line-height: 1;
}
.p-flow__item .icon-box {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--primary-color);
}
.p-flow__item .icon-box img {
	width: 180px;
	aspect-ratio: 1.125 / 1;
}
.p-flow__item .cont-box {
	padding: 10px 25px 20px;
	min-height: 140px;
}
.p-flow__item .cont-box .title {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: 0.03em;
	text-align: center;
}
.p-flow__item .cont-box .text {
	font-weight: 500;
	font-size: 15px;
	line-height: 1.6;
	letter-spacing: 0.03em;
	text-align: justify;
}
@media only screen and (max-width: 1024px) {
	.p-flow__item-list {
		gap: 10px 15px;
	}
}
/* #endregion flow -------------------------------- */

/* #region faq =================================== */
.p-faq .c-section-title01 {
	margin-bottom: 30px;
}
.p-faq__item-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, 300px);
	justify-content: center;
	gap: 30px 45px;
	margin-bottom: 45px;
}
.p-faq__item {
	position: relative;
	width: 300px;
	border: 2px solid var(--primary-color);
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
}
.p-faq__item .icon-box {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--primary-color);
}
.p-faq__item .icon-box img {
	width: 180px;
	aspect-ratio: 1.125 / 1;
}
.p-faq__item .cont-box {
	padding: 10px 25px 20px;
	min-height: 140px;
}
.p-faq__item .cont-box .title {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: 0.03em;
	text-align: center;
}
.p-faq__item .cont-box .text {
	font-weight: 500;
	font-size: 15px;
	line-height: 1.6;
	letter-spacing: 0.03em;
	text-align: justify;
}
@media only screen and (max-width: 1024px) {
	.p-faq__item-list {
		gap: 10px 15px;
	}
}
/* #endregion faq -------------------------------- */

/* #region area =================================== */
.p-area	{
	margin-bottom: 50px;
}
.p-area__wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px;
}
.p-area__wrap .cont-box {
	flex: 0 0 380px;
	padding-top: 30px;
}
.p-area__wrap .cont-box .text {
	margin-bottom: 10px;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.9444;
	text-align: justify;
}
.p-area__table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	font-weight: 500;
	font-size: 18px;
	line-height: 1;
}
.p-area__table th,
.p-area__table td {
	border: 1px solid var(--primary-color);
	padding: 10px;
}
.p-area__table th {
	background: #d5ac7c;
	color: #fff;
	text-align: center;
}
.p-area__wrap .area-map {
	display: block;
	margin-top: -27px;
	flex: 0 1 593px;
	aspect-ratio: 1.43 / 1;
	z-index: -1;
}
@media only screen and (max-width: 1024px) {
	.p-area__wrap {
		display: block;
	}
	.p-area__wrap .cont-box {
		padding-top: 15px;
	}
	.p-area__wrap .cont-box .text {
		margin-bottom: 20px;
	}
	.p-area__wrap .area-map {
		display: block;
		margin: 0;
	}
}
/* #endregion area -------------------------------- */

/* #region course =================================== */
.p-course {
	margin-bottom: 60px;
}
.p-course .c-section-title01 {
	margin-bottom: 30px;
}
.p-course__wrap {
	display: flex;
	gap: 30px 16px;
}
.p-course__table {
	flex: 1 1 50%;
	border-collapse: collapse;
	background: #fff;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.7778;
}
.p-course__table th,
.p-course__table td {
	border: 1px solid var(--primary-color);
	padding: 10px 15px;
}
.p-course__table thead th,
.p-course__table thead td {
	padding: 14px 15px;
}
.p-course__table thead th {
	background: var(--primary-color);
	color: #fff;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.3;
	text-align: center;
}
.p-course__table thead th span {
	display: block;
	font-weight: 700;
	font-size: 22px;
	letter-spacing: 0.03em;
}
.p-course__table thead td {
	font-weight: 700;
	font-size: 20px;
	line-height: 1.6;
	letter-spacing: 0.03em;
	text-align: center;
}
.p-course__table tbody th {
	padding: 10px 30px;
	white-space: nowrap;
}
.p-course__table tbody th span {
	display: inline-block;
	width: 5em;
    text-align: justify;
    text-align-last: justify;
}
.p-course__table .price {
	height: 180px;
}
.p-course__table .price td {
	padding: 0;
}
.p-course__table .price dl > div {
	display: flex;
}
.p-course__table .price dl > div:not(:last-of-type) {
	border-bottom: 1px solid var(--primary-color);
}
.p-course__table .price dl > div:nth-of-type(odd) {
	background: #ead5bd;
}
.p-course__table .price dt,
.p-course__table .price dd {
	width: 50%;
	height: 45px;
	padding: 10px 15px;
	font-size: 20px;
	line-height: 1;
	white-space: nowrap;
	text-align: right;
}
.p-course__table .price dt {
	border-right: 1px solid var(--primary-color);
}
.p-course__table .hour td {
	height: 45px;
	padding: 10px 15px;
	background: #ead5bd;
	font-size: 20px;
	line-height: 1;
	white-space: nowrap;
	text-align: center;
}
.p-course__note {
	margin-bottom: 20px;
	font-size: 18px;
}
@media only screen and (max-width: 1024px) {
	.p-course__wrap {
		justify-content: center;
		flex-wrap: wrap;
	}
	.p-course__table {
		display: block;
		font-size: 14px;
	}
	.p-course__table th,
	.p-course__table td {
		display: block;
        border-top: 0;
	}
	.p-course__table thead th,
	.p-course__table thead td {
		padding: 13px 10px;
	}
	.p-course__table thead th {
		font-size: 16px;
	}
	.p-course__table thead th span {
		font-size: 17px;
	}
	.p-course__table thead td {
		font-size: 15px;
	}
	.p-course__table tbody th {
		padding: 2px;
		font-size: 15px;
	}
	.p-course__table .price {
		height: auto;
	}
	.p-course__table .price dt,
	.p-course__table .price dd,
	.p-course__table .hour td {
		padding: 8px 15px;
		height: 35px;
		font-size: 16px;
	}
	.p-course__note {
		font-size: 12px;
	}
}


/* #endregion course -------------------------------- */