@charset "UTF-8";

body {
	width: 100vw;
	margin: 0;
	padding: 0;
	font-family: YakuHanJP, 'Noto Sans JP',"Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 2;
	color: #3f4444;
	background: #fff;
	overflow-x: hidden;
	font-feature-settings: "palt" 1;
	letter-spacing: 0.025em;
}
@media screen and (max-width: 375px) {
	body {
		font-size: 14px;
	}
}
main {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
/*	overflow: hidden;*/
}
section, footer {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	overflow: hidden;
}
div {
	margin: 0;
	padding: 0;
}
a:hover {
	opacity: 0.85;
}
a,a:link,a:hover,a:visited{
text-decoration:none;
}
ol,
ul {
	list-style: none;
	padding-inline-start: 0;
	margin: 0;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0;
	margin-inline-end: 0;
}
.section_inner, .footer_inner {
	width: 90%;
	margin: 0 auto;
}
p {
	font-feature-settings: "palt" 1;
	text-align: justify;
	letter-spacing: 0.025em;
}
main .section_inner {
	position: relative;
	z-index: 1;
}


/*----------------------------------------------- 共通 */
img {
	width: 100%;
}
.inner {
	overflow: hidden;
}
.m_plus_r {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.small {
	font-size: 0.8em;
}
.btn {
	margin: 5vw auto 10vw;
}
.btn a {
	display: block;
	width: 80%;
	text-align: center;
	line-height: 3;
	font-size: 4vw;
	font-weight: 500;
	color: #fff;
	border-radius: 50px;
	background-color: #6F178D;;
	box-shadow: 0px 6px 12px -4px rgba(0, 0, 0, 0.5);
	margin: auto;
}

/*ハンバーガーメニュー*/
.hamburger-grid {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
	width: 50px;
	height: 50px;
	padding: 10px;
	border: none;
	background: transparent;
	cursor: pointer;
}
.hamburger-grid__dots {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4px;
	width: 100%;
	height: 100%;
}
.hamburger-grid__dot {
	width: 100%;
	height: 100%;
	background-color: #333;
	border-radius: 50%;
	transition: transform 0.3s ease, background-color 0.3s ease;
}
.hamburger-grid.active .hamburger-grid__dot {
	background-color: #fff;
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(1) {
	transform: scale(0);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(2) {
	transform: translateY(8px);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(3) {
	transform: scale(0);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(4) {
	transform: translateX(8px);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(5) {
	transform: scale(1.2);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(6) {
	transform: translateX(-8px);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(7) {
	transform: scale(0);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(8) {
	transform: translateY(-8px);
}
.hamburger-grid.active .hamburger-grid__dot:nth-child(9) {
	transform: scale(0);
}
.nav-grid {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #1a1a1a;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 900;
}
.nav-grid.active {
	visibility: visible;
	opacity: 1;
}
.nav-grid__content {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px;
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	padding: 100px 40px;
}
.nav-grid__sections {
	grid-column: span 12;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}
.nav-grid__section {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-grid.active .nav-grid__section {
	opacity: 1;
	transform: translateY(0);
}
.nav-grid.active .nav-grid__section:nth-child(1) {
	transition-delay: 0.2s;
}
.nav-grid.active .nav-grid__section:nth-child(2) {
	transition-delay: 0.3s;
}
.nav-grid__title {
	margin: 0 0 20px;
	color: #666;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.nav-grid__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-grid__list li {
	margin-bottom: 15px;
	overflow: hidden;
}
.nav-grid__list li span {
	font-size: 13px;
	padding-left: 10px;
}
.nav-grid__link {
	display: inline-block;
	color: #fff;
	font-size: 24px;
	text-decoration: none;
	transform: translateY(100%);
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),color 0.3s ease;
}
.nav-grid.active .nav-grid__link {
	transform: translateY(0);
}
@media (max-width: 768px) {
	.nav-grid__content {
		padding: 80px 20px;
	}
	.nav-grid__sections {
		grid-template-columns: 1fr;
	}
	.nav-grid__link {
		font-size: 24px;
	}
}

/* ぼかしから出現 */
.blur{
	animation-name: blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes blurAnime{
	from {
		filter: blur(10px);
		transform: scale(1.02);
		opacity: 0;
	}

	to {
		filter: blur(0);
		transform: scale(1);
		opacity: 1;
	}
}


.fix_btn {
	position: fixed;
	right: 5vw;
	bottom: 5vw;
	z-index: 99;
}
.fix_btn a {
	display: flex;
	width: 150px;
	height: 150px;
	font-size: 16px;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
	background-color: #6F178D;
	color: #fff;
	line-height: 1.5;
	font-weight: 500;
	box-shadow: 0px 6px 12px -4px rgba(0, 0, 0, 0.5);
}


main h2 {
	display: flex;
	align-items: center;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-weight: 600;
	font-size: 4.75vw;
	position: absolute;
	top: 0;
	left: 0;
}
main h2 > span {
	display: flex;
	align-items: center;
	text-align: center;
	margin-top: 0.5em;
	font-weight: 400;
	font-size: 3.25vw;
}
main h2 > span::before {
	content: "[";
	width: auto;
	display: inline-block;
	vertical-align: baseline;
		margin-bottom: 0.25em;
}
main h2 > span::after {
	content: "]";
	width: auto;
	display: inline-block;
	vertical-align: baseline;
	margin-top: 0.35em;
}
main h2 > span > span {
	padding-right: 0.225em;
}
.bk_piano_w {
	position: relative;
	height: 30vw;
	background-color: #f0f0f0;
}
.bk_piano {
	position: absolute;
	top: -30vw;
}
.bk_piano img {
	width: 100vw;
	height: 150vw;
	object-fit: cover;
}

.yaku {
	font-weight: 300;
}
.nega_m_top {
	margin-top: -0.1em;
}
.m_plus_r .nega_m_top {
	margin-top: -0.5em;
}
.h_space_top {
	margin-top: 0.5em;
}
img.rectangle {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: 10px;
}
img.square  {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 10px;
}
img.circle {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}
a.bnr_link {
	display: block;
	height: 100%;
	width: 100%;
	box-shadow: 0px 6px 12px -4px rgba(0, 0, 0, 0.35);
	position: relative;
	border-radius: 10px;
}
a.bnr_link.nav_txt::before {
	content: "";
	display: block;
	width: 100%;
	height: 35%;
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
	border-radius: 0 0 10px 10px;;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	mix-blend-mode: multiply;
	z-index: 1;
}
a.bnr_link.nav_txt > span {
	display: block;
	font-size: 0.9em;
	position: absolute;
	left: 2vw;
	bottom: 2vw;
	color: #fff;
	line-height: 1.5;
	z-index: 2;
	margin: auto auto 0.5em 0.5em;
}
a.bnr_link.nav_txt > span::after {
	position: absolute;
	font: var(--fa-font-solid);
	content: "\f105";
	color: #fff;
	right: -1.25em;
	font-size: 0.9em;
	pointer-events: none;
	z-index: 2;
	top: 0.15em;
	bottom: 0;
	margin: auto;
	display: flex;
	align-items: center;
}
a.bnr_link.nav_txt > span strong {
	font-size: 1.1em;
}
.bnr_nav_w {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	width: 70%;
	margin: 20vw auto;
}
.bnr_nav_w li {
	margin-bottom: 10vw;
}
.bnr_nav_w li:last-of-type {
	margin-bottom: 0;
}
a.btn_line {
	color: #6F178D;
	border-color: #6F178D;
	display: inline-block;
	padding: 1vw 4vw;
	border-radius: 50px;
	border: solid 1px #6F178D;
}
.btn_dot a {
	display: block;
	background: #3f4444;
	font-size: 18px;
	width: 275px;
	padding: 20px 40px 20px 20px;
	text-align: center;
	color: #FFF;
	margin: auto;
	cursor: pointer;
	position: relative;
	text-decoration: none;
	border-radius: 100px;
	box-shadow: 0px 6px 12px -4px rgba(0, 0, 0, 0.35);
}
.btn_dot a::after{
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 30px;
	width: 20px;
	height: 5px;
	border: none;
	border-right: 2px solid #FFF;
	border-bottom: 1px solid #FFF;
	transform: skew(45deg);
	transition: .3s;
}

.parallax_w {
	margin-top: 10vw;
}
.parallax,
.parallax_v {
	position: relative;
	height: 30vh;
	overflow: hidden;
}
.parallax img {
	position: absolute;
	top: -25%;
	left: 0;
	width: 100%;
	height: 150%;
	object-fit: cover;
	transform: translateY(0);
	transition: transform 0.1s linear;
	will-change: transform;
}
.parallax_v video {
	position: absolute;
	top: -25%;
	left: 0;
	width: 100%;
	height: 150%;
	object-fit: cover;
	transform: translateY(0);
	transition: transform 0.1s linear;
	will-change: transform;
}
.note {
	font-size: 0.9em;
	margin: 5vw auto;
	line-height: 1.75;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  header
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
header {
	position: relative;
}
.fv_wrap {
	padding: 10px 0;
	position: relative;
}
.fv_wrap::after {
	content: "";
	display: block;
	width: 80vw;
	height: 65vh;
	position: absolute;
	bottom: 0;
	z-index: -1;
	background-image: url(../img/bk_img_1sp.svg);
	background-size: contain;
	top: 0;
	background-repeat: no-repeat;
	background-position: top left;
}
.header_inner {
	width: 100vw;
	min-height: 100vh;
	position: relative;
	margin-top: 8rem;
}
.fv_bk video {
	width: 100%;
	margin: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
.fv_bk .video {
	width: 120%;
	position: absolute;
	bottom: 10%;
	left: -5%;
	transform: rotate(-25deg);
}
.hd_fix_area .logo {
	width: 30vw;
	margin-left: 20px;
	position: fixed;
	top: 3rem;
	z-index: 99;
}
.hd_fix_area .logo img {
	width: 100%;
	height: 5rem;
	object-fit: contain;
	object-position: center;
}
.logo a {
	display: block;
	width: 100%;
	height: 100%;
}
.hd_fix_area .btn a {
	width: 150px;
	font-size: 14px;
}
.hd_fix_area .btn a i {
	margin-right: 5px;
}
.hd_fix_area .btn {
	position: fixed;
	right: 70px;
	margin: auto;
	top: 25px;
	z-index: 99;
}

.hd_news {
	top: 11rem;
	margin-bottom: -4rem;
	position: fixed;
	right: 0;
	z-index: 98;
}
.hd_news a {
	color: #6F178D;
	font-weight: 500;
	padding: 5px 30px;
	position: relative;
	background-color: #f1e0f5;
}
.hd_news p {
	font-size: 16px;
	text-align: right;
}
.hd_news p span {
	position: relative;
	margin-right: 33px;
}
.hd_news p span::after{
	content: "";
	display: block;
	position: absolute;
	top: 35%;
	right: -25px;
	width: 20px;
	height: 5px;
	border: none;
	border-right: 1px solid #6F178D;
	border-bottom: 1px solid #6F178D;
	transform: skew(45deg);
	transition: .3s;
}

.catch {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 65vw;
	left: 0;
	margin: auto;
	right: 0;
	height: auto;
}
.catch .m_plus_r {
	font-weight: 600;
	font-size: 4.25vw;
	letter-spacing: 0.4em;
	padding-left: 0.25em;
	line-height: 2.5;
}
.catch span {
	display: block;
	text-align: center;
}
.catch span:first-of-type {
	animation-delay:0.2s;
}
.catch span:nth-of-type(2) {
	animation-delay:1s;
}
.catch span:nth-of-type(3) {
	animation-delay:1.7s;
}

.scroll {
	display: inline-block;
	width: 10%;
	font-size: 3.5vw;
	position: absolute;
	text-align: center;
	bottom: 10vw;
	left: 45%;
	right: 45%;
	z-index: 10;
	scroll-behavior: smooth;
}
.scroll a {
	color: #3f4444;
}
.scroll a::after {
	content: '';
	display: block;
	background-image: url(../img/arrow.svg);
	background-repeat: no-repeat;
	width: 5vw;
	height: 2vw;
	text-align: center;
	margin: 0.5vw auto 1vw;
}

@media screen and (min-width: 545px) {
	.scroll.sp {
		display: none;
	}
}

.fv_img {
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	opacity: 0;
	transform: translateY(30px);
	animation-fill-mode: forwards;
}
/* 下からスライドしてフェードイン */
.fv_img.animate {
	animation: fadeUp 1s forwards, float 6s ease-in-out 1s infinite;
}

@keyframes fadeUp {
	0% {
		transform: translateY(30px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes float {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
	100% {
		transform: translateY(0);
	}
}
.fv_img img {
	width: 150%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}

.fv_img_1 {
	width: 33vw;
	height: 33vw;
	top: 6vw;
	left: -5vw;
}
.fv_img_2 {
	width: 45vw;
	height: 45vw;
	top: 5vw;
	right: -5vw;
}
.fv_img_3 {
	width: 32vw;
	height: 32vw;
	top: 30vw;
	left: 25vw;
}
.fv_img_4 {
	width: 55vw;
	height: 55vw;
	top: 105vw;
	left: 2vw;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  TOP
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*----------------------------------------------- top_about */
.t_about_catch {
	display: flex;
	justify-content: center;
}
.t_about_catch p {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-size: 4.25vw;
	font-weight: 600;
	margin: 10vw auto;
	position: relative;
	font-feature-settings: "halt";
	opacity: 0;
}
.t_about_catch .yaku {
	font-weight: 400;
}
.t_about_txt {
	width: 90%;
	margin: 10vw auto;
}
.t_about_txt p {
	text-align: center;
	margin-bottom: 1.5em;
}
.top_about::before {
	content: "";
	display: block;
	width: 100vw;
	aspect-ratio: 1920 / 615;
	position: absolute;
	bottom: 0;
	z-index: -1;
	background-image: url(../img/bk_img_2.svg);
	background-size: contain;
	background-repeat: no-repeat;
}


/*----------------------------------------------- top_course */
.top_course {
	background-color: #f0f0f0;
	padding-bottom: 10vw;
}
.top_course .course_outline {
	width: 68%;
	max-width: 550px;
	margin-top: 15vw;
}
.top_course .yobi::after {
	background-color: #fff;
}
.top_course .bnr_nav_w {
	margin-top: 10vw;
}


/*----------------------------------------------- top_access */
.top_access {
	background-color: #fff;
	padding: 25vw 0 30vw;
}
.top_access::before {
	content: "";
	display: block;
	width: 100vw;
	aspect-ratio: 1920 / 615;
	position: absolute;
	bottom: 0;
	z-index: 0;
	background-image: url(../img/bk_img_2.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
.t_access_txt,
.notice,
.me_chan {
	width: 75%;
	margin: auto;
	text-align: center;
}
.t_access_txt p,
.notice p,
.me_chan p {
	text-align: center;
}
.t_access_txt ul {
	margin: 7vw auto;
	font-weight: 500;
}
.t_access_txt ul li {
	text-align: center;
}
/*.top_access .swiper {
	overflow: visible;
	padding-bottom: 10px;
}*/
.notice {
	line-height: 1.5;
	padding: 5vw;
	border-radius: 100px;
	background-color: #f1e0f5;
	color: #6F178D;
	font-weight: 500;
	margin: 7vw auto 15vw;
}
.me_chan {
	width: 70%;
}
.me_chan_img img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}
.me_chan_tit {
	font-weight: 500;
	margin: 7vw auto 2vw;
}
.top_access .swiper {
	width: 100%;
	max-width: 500px;
	margin: 2em auto 0;
}
.top_access  .swiper-slide {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.top_access .slide-title {
		display: block;
	margin: auto;
	text-align: center;
	font-weight: 400;
	margin-top: 0.75em;
	font-size: 85%;
	line-height: 1.6;
	max-width: 90%;
}
.top_access .slide-media {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	border-radius: 10px;
}
.top_access .slide-media img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%; 
	height: 100%;
	object-fit: cover;
	transform: translateX(-1.5%) scale(1.1);
	transition: transform 5s ease;
}
/* アクティブ時：少し小さく、右寄せ */
.top_access .swiper-slide-active .slide-media img {
	transform: translateX(1.5%) scale(1.05);
}
/* アクティブスライド + ダミー以外にだけアニメーション適用 */
.top_access .swiper-slide:not(.swiper-slide-duplicate).swiper-slide-active .slide-media img {
	transform: translateX(1.5%) scale(1.05);
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  お問い合わせ
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.contact {
	background-color: #f0f0f0;
	padding-top: 20vw;
}
.contact .section_inner {
	background-color: #fff;
	border-radius: 30px;
	padding: 15vw 5vw;
	position: relative;
	z-index: 1;
	box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.25);
}
.contact h2 {
	text-align: center;
	position: relative;
	writing-mode: horizontal-tb;
	font-size: 6vw;
	font-weight: 600;
	margin-bottom: 10vw;
	justify-content: center;
}
.contact_lead {
	text-align: center;
	line-height: 2.25;
}
.contact_form {
	margin-top: 10vw;
}
.contact_form .item_tit label {
	display: flex;
	align-items: center;
	color: #000;
	font-weight: 500;
	margin-bottom: 0.5em;
}
.contact_form .item_cont {
	font-weight: 400;
}
.contact_page .contact_top p {
	line-height: 1.5;
}
.contact_page .contact_top .notice {
	font-weight: 400;
	line-height: 1;
	text-align: center;
}
.contact_form .wpcf7 form .wpcf7-response-output {
	border-color: #fff;
	margin: 0;
	padding: 0;
}
.contact_form .wpcf7 form.invalid .wpcf7-response-output,
.contact_form .wpcf7 form.unaccepted .wpcf7-response-output,
.contact_form .wpcf7 form.payment-required .wpcf7-response-output {
	margin: 3em 0.5em 1em;
	padding: 0.2em 1em;
	border-color: #6F178D;
}
.contact_form .section_inner {
	padding-bottom: 0;
	max-width: 800px;
}
.contact_form .item_wrap {
	background-color: #fff;
	margin-bottom: 0;
	padding: 10px 0;
}
.contact_form .item_wrap.check {
	border: none;
}
.contact_form .item_tit {
	font-size: 0.9em;
}
.contact_form .item_tit span {
	display: block;
	font-size: 0.75em;
	background-color: #6F178D;
	color: #fff;
	text-align: center;
	width: 3em;
	margin-left: 5px;
	line-height: 1.5;
}
.contact_form .item_tit span.option {
	background-color: #CECECE;
}
.contact_form .item_cont {
	font-size: 0.85em;
}
.contact_form input,
.contact_form textarea,
.contact_form select {
	display: block;
	width: 100%;
	border: solid 1px #919191;
	border-radius: 3px;
	padding: 0.35em 0.5em;
	font-size: 1em;
	box-shadow: 0px 2px 4px 1px rgb(26 26 26 / 13%) inset;
	background-color: #f5f5f5;
}
.contact_form .your-item input {
	width: auto;
	display: inline-block;
}
.contact_form .your-item .wpcf7-list-item {
	display: inline-block;
	margin: 0.5em 1.5em 0 0;
}
.contact_form .your-item .item_cont {
	font-size: 1em;
}
.btn > p {
	display: flex;
	align-items: center;
	margin: 1em 0;
}
.your-addr p {
	margin: 0.5em 0;
}
.your-tel .item_cont {
	margin: 0;
}
.contact_form .check .item_cont .wpcf7-list-item {
	margin-left: 0;
}
.contact_form .btn {
	margin: 5vw auto 0;
}
.contact_form .btn > p {
	justify-content: center;
}
.contact_form .btn input {
	width: 60vw;
	text-align: center;
	border-radius: 100px;
	line-height: 4.5;
	margin: 0 5vw;
	background-color: #6F178D;
	color: #fff;
	border: none;
	max-width: 300px;
	box-shadow: 0px 6px 12px -4px rgba(0, 0, 0, 0.5);
}
.contact_form .wpcf7-submit:disabled {
	background-color: #999;
	box-shadow: none;
}
.contact_form  .wpcf7-spinner {
	display: none;
}
.privacy_check a {
	color: #919191;
	text-decoration: underline;
}
.contact_form .notice {
	margin-bottom: 3vw;
}
::placeholder {
 color: #d1d1d1;
}
.contact_form .wpcf7 form.invalid .wpcf7-response-output, .contact_form .wpcf7 form.unaccepted .wpcf7-response-output, .contact_form .wpcf7 form.payment-required .wpcf7-response-output {
	margin: 3em 0;
	padding: 1em 2em;
	line-height: 1.5;
}
.contact_form .wpcf7 form .wpcf7-response-output {
	margin: 0;
	padding: 1em 2em;
	line-height: 1.5;
}
.zip_w .mark {
	font-size: 1.2em;
	margin-right: 0.5em;
}
/* チェックボックス */
.contact_form .wpcf7-list-item {
	margin: 0;
}
.this-course label {
	cursor: pointer;
}
.contact_form input[type="checkbox"] {
	position: relative;
	height: 20px;
	width: 20px;
	display: inline-block;
	border: 2px solid #ccc;
	background: #fff;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: none;
	margin-right: 5px;
	padding: 0;
	cursor: pointer;
}
.contact_form input[type="checkbox"]:checked {
	border: none;
	background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' width='16' height='16'><rect fill='%236F178D' width='16' height='16'/><path fill='none' stroke='%23fff' stroke-width='2' d='M12.6,5.17l-5.66,5.66L3.4,7.29'/></svg>");
	background-repeat: no-repeat;
	background-size: cover;
}
.item_wrap a {
	color: #6F178D;
}
.contact_form .wpcf7 form.sent,
.contact_form .wpcf7-response-output {
	border-color: #6F178D;
}
.wpcf7-checkbox .wpcf7-list-item {
	margin-right: 1.5em;
}
.inqury .wpcf7-list-item-label {
	cursor: pointer;
	display: flex;
	margin-right: 1.5em;
	font-size: 1.15em;
}
.inqury input[type="radio"] {
	opacity: 0;
	position: absolute;
}
.inqury .wpcf7-list-item-label::before {
	background: #f5f5f5;
	border: solid 1px #919191;
	border-radius: 100%;
	content: "";
	height: 1.2em;
	margin-bottom: auto;
	margin-right: .5em;
	margin-top: auto;
	transition: background-color .5s;
	width: 1.2em;
}
/* チェック後のボタン */
.inqury input[type="radio"]:checked + .wpcf7-list-item-label::before {
	background-color: #6F178D;
	box-shadow: inset 0 0 0 3px #f5f5f5;
}
.inqury .item_cont {
	margin-top: 0;
}
.contact_form .item_tit span.note {
	width: auto;
	background: none;
	color: #000;
	font-size: 0.85em;
	display: inline-block;
	line-height: 1;
	margin: 0;
	margin-left: 5px;
}
.free_txt {
	font-weight: 500;
	text-align: center;
	margin: 10vw auto 5vw;;
}
.contact_form .info {
	margin-top: 10vw;
}
.contact_form .info p {
	text-align: center;
}
.con_tel_ico::before {
	content: "";
	display: block;
	width: 45px;
	height: 45px;
	background-image: url(../img/ico_tel.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
.con_tel_w p{
	display: flex;
	flex-direction: column;
}
.con_tel_w {
	width: calc(100% - 45px);
}
.contact_tel {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 265px;
	margin: 1em auto 0;
}
span.con_tel {
	font-size: 25px;
	line-height: 1.2;
	font-weight: 600;
}
span.tel_time {
	font-size: 13px;
}
span.con_tel a {
	color: #3f4444;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  footer
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.bk_piano_w.bf_footer {
	height: 0;
}
.bk_piano_w.bf_footer .bk_piano {
	top: -150vw;
}
footer {
	background-color: #f0f0f0;
	padding-bottom: 30vw;
	overflow: visible;
	position: absolute;
}
footer .footer_inner {
	background-color: #333333;
	padding: 40vw 10vw 10vw;
	margin-top: -20vw;
	width: 95%;
	border-radius: 30px;
	position: relative;
	max-width: 780px;
}
.ft_logo {
	display: block;
	width: 30vw;
	margin: auto;
}
footer a {
	color: #fff;
}
.copy {
	display: block;
	line-height: 2.5;
	text-align: center;
	margin: 15vw auto 0;
	color: #fff;
}
.copy small::before {
	content: '\f1f9';
	font-family: "Font Awesome 5 Free";
	font-size: 0.85em;
	font-weight: 400;
	margin-right: 5px;
}
.copy p {
	color: #fff;
	font-size: 0.65em;
}
.link_instagram {
	text-align: end;
	font-size: 7vw;
	margin: 5vw 0;
}
.ft_menu_w {
	margin-bottom: 10vw;
}
.ft_menu {
	font-size: 1.2em;
	font-weight: 600;
	margin-bottom: 0.5em;
}
.ft_menu_w hr {
	border: none;
	border: solid 1px #fff;
	margin: 15vw 0;
}
.ft_menu_sub li {
	text-indent: -0.65em;
	padding-left: 0.65em;
}
.hidden {
	animation: fade .2s ease-in-out forwards;
	pointer-events:none;/* 重要 */
}
@keyframes fade {
	from {
	opacity: 1;
}
	to {
	opacity: 0;
	}
}
.visible {
	animation: fadeOut .2s ease-in-out forwards;
	pointer-events:all;/* 重要 */
}

@keyframes fadeOut {
	from {
	opacity: 0;
}
	to {
	opacity: 1;
	}
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  下層ページ共通
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
header.page {
	height: 0 !important;
	padding: 0;
}
main.pg {
	padding-top: 10rem;
}
.sec_img img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: 5px;
}
.sec_img {
	margin: 10vw auto;
	border-radius: 5px;
}
.sec_img.no_m_top {
	margin-top: 0;
}
.sec_img.parallax {
	opacity: 0;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  about
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.message::before {
	content: "";
	display: block;
	width: 100vw;
	aspect-ratio: 1920 / 615;
	position: absolute;
	top: 0;
	z-index: 0;
	background-image: url(../img/bk_img_3.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
main.pg.about {
	background-color: #f0f0f0;
}
.message {
	background-color: #fff;
	padding-top: 15vw;
}
.message_txt p {
	margin-bottom: 1.5em;
}
.message .t_about_catch p {
	width: 13vw;
}
.lesson_style {
	background-color: #fef9ff;
	padding: 7vw 5vw 10vw;
	margin: 10vw auto;
	border-radius: 30px;
}
.lesson_style ul {
	border: solid 1px #6F178D;;
	border-left: none;
	border-right: none;
	padding: 0.5em 1em 0.5em 3em;
	position: relative;
}
.lesson_style ul li {
	line-height: 1.5;
	padding: 0.5em 0;
	font-weight: 400;
}
.lesson_style ul li:before {
	font-family: "Font Awesome 5 Free";
	content: "\f001";
	font-weight: 900;
	position: absolute;
	left : 1em;
	padding-top: 0.15em;
	color: #6F178D;
}
.lesson_style p {
	font-weight: 600;
	color: #6F178D;
}

[class*=swiper]:focus {
	outline: none;
}
.slide-media,
.thumb-media {
	position: relative;
	overflow: hidden;
}
.slide-media img,
.thumb-media img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.swiper-button-prev, .swiper-button-next {
	display: grid;
	place-content: center;
	width: 6.4rem;
	height: 6.4rem;
	cursor: pointer;
	-webkit-transition: var(--transition);
	transition: var(--transition);
}
.swiper-button-prev::before, .swiper-button-next::before {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	border-radius: 50%;
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
}
.swiper-button-prev::after, .swiper-button-next::after {
	width: 1.2rem;
	height: 1.2rem;
	content: "";
	border: solid var(--color-gray);
	border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
	margin-left: 0.4rem;
}
.swiper-button-next::after {
	margin-right: 0.4rem;
}
.swiper-button-disabled {
	pointer-events: none;
	opacity: 0;
}
.gallery02 {
	overflow: hidden;
}
.gallery02 .swiper,
.gallery02 .thumb-wrapper {
	max-width: 720px;
	margin: auto;
}
.gallery02 .swiper {
	overflow: visible;
}
.gallery02 .swiper-fade .swiper-slide {
	-webkit-transition-property: opacity, -webkit-transform !important;
	transition-property: opacity, -webkit-transform !important;
	transition-property: opacity, transform !important;
	transition-property: opacity, transform, -webkit-transform !important;
	pointer-events: none;
}
.gallery02 .swiper-fade .swiper-slide-active {
	pointer-events: auto;
}
.gallery02 .swiper-controller {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding-top: 62.5%;
}
.gallery02 .swiper-button-prev, .gallery02 .swiper-button-next {
	width: 50px;
	height: 50px;
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	margin: auto;
}
.gallery02 .swiper-button-prev {
	right: calc(100% - 3.2rem);
	left: auto;
}
.gallery02 .swiper-button-next {
	left: calc(100% - 3.2rem);
	right: auto;
	}
.gallery02 .slide {
	display: block;
	overflow: hidden;
}
.slide-media {
	display: block;
	padding-top: 62.5%;
	border-radius: 10px;
}
.slide-title {
	font-weight: bold;
	line-height: 1.6;
	margin: 1.5rem 0 0;
	font-size: 0.9em;
}
.gallery02 .thumb-wrapper {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 8px;
	margin-top: 1.5rem;
}
.gallery02 .thumb-media {
	padding-top: 100%;
	cursor: pointer;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	border-radius: 4px;
}
.gallery02 .thumb-media img {
	-webkit-transition: var(--transition);
	transition: var(--transition);
}
.gallery02 .thumb-media-active {
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	opacity: 0.3;
}
.gallery02 .thumb-media-active img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
html {
	-webkit-text-size-adjust: 100%;
}
.gallery02 .swiper-button-prev::before, .gallery02 .swiper-button-next::before {
	background-color: rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: var(--box-shadow-dark);
	box-shadow: var(--box-shadow-dark);
}
.gallery02 .swiper-button-prev::after, .gallery02 .swiper-button-next::after {
	color: #fff;
	z-index: 1;
	font-size: 19px;
	text-align: center;
	display: block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	right: 0;
	left: 0;
	position: absolute;
	margin: 0;
}

@media only screen and (min-width: 768px) {
	.gallery02 .swiper-button-prev {
		right: calc(100% - 3.2rem);
		left: auto;
	}
	.gallery02 .swiper-button-next {
		left: calc(100% - 3.2rem);
	}
}

@media only screen and (max-width: 599px) {
	html {
	font-size: 50%;
	}
	.pc-tab {
		display: none !important;
	}
	.gallery02 .thumb-wrapper {
		grid-template-columns: repeat(5, 1fr);
	}
}

@media only screen and (max-width: 767px) {
	.l-inner {
		padding: 0 4rem;
	}
}
.event {
	padding: 5vw;
	background-color: #fef9ff;
	border-radius: 30px;
	margin: 10vw auto 30vw;
}
.event_comment p {
	margin-bottom: 1.5em;
}
.event h3 {
	font-size: 1.25em;
	font-weight: bold;
	border-bottom: 2px solid #6F178D;
	color: #6F178D;
	padding: 0.3em;
	margin-bottom: 7vw;
	position: relative;
}
.event h3::before {
	content: '';
	background-color: #fef9ff;
	width: 20px;
	height: 3px;
	position: absolute;
	left: 30px;
	bottom: -3px;
}
.event h3::after {
	content: '';
	background-color: #6F178D;
	width: 20px;
	height: 2px;
	transform: rotate(50deg);
	position: absolute;
	left: 25px;
	bottom: -10px;
}
.message::after {
	content: "";
	display: block;
	width: 100vw;
	aspect-ratio: 1920 / 615;
	position: absolute;
	bottom: -1px;
	z-index: 0;
	background-image: url(../img/bk_img_2.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
.teacher {
	padding: 10vw 0;
}
.teacher_img {
	width: 70%;
	margin: 0 auto 5vw;
	opacity: 0;
}
.teacher_name > span {
	display: block;
	line-height: 1.5;
}
.teacher_name {
	width: -moz-fit-content;
	width: fit-content;
	margin: auto;
}
.t_occupation {
	font-size: 13px;
	font-weight: 500;
}
.t_name {
	font-size: 18px;
	font-weight: 500;
}
.t_name span {
	font-size: 13px;
	font-weight: 500;
	margin-left: 5px;
}
.t_prof {
	width: 70%;
	margin: 10vw auto;
}
.t_prof p {
	margin-bottom: 1.5em;
}
.t_prof_img {
	margin-top: 3em;
}
.t_prof_img img {
	width: 100%;
	border-radius: 10px;
}


.insta {
	background-color: #f0f0f0;
}
.insta h3,
.insta p {
	color: #3f4444;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 コース一覧
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.course .l-inner {
	position: relative;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 10rem;
}

.course .l-section {
	border-top: 1px solid #eee;
}
.course .l-section .l-inner {
	padding-top: 8rem;
	padding-bottom: 8rem;
}
[class*=swiper]:focus {
	outline: none;
}
.course .slide-media,
.course .thumb-media {
	position: relative;
	overflow: hidden;
}
.course .slide-media img,
.course .thumb-media img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	aspect-ratio: 3 / 2;
	-o-object-fit: cover;
	object-fit: cover;
}
.course .swiper-button-prev,
.course .swiper-button-next {
	display: grid;
	place-content: center;
	width: 6.4rem;
	height: 6.4rem;
	cursor: pointer;
	-webkit-transition: var(--transition);
	transition: var(--transition);
}
.course .swiper-button-prev::before, 
.course .swiper-button-next::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	border-radius: 50%;
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
}
.course .swiper-button-prev::after,
.course .swiper-button-next::after {
	width: 1.2rem;
	height: 1.2rem;
	content: "";
	border: solid var(--color-gray);
	border-width: 3px 3px 0 0;
}
.course .swiper-button-prev::after {
	margin-left: 0.4rem;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.course .swiper-button-next::after {
	margin-right: 0.4rem;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.course .swiper-button-disabled {
	pointer-events: none;
	opacity: 1;
}
.course_mv {
	margin-bottom: 16rem;
}
.course_mv .l-inner {
	padding-bottom: 0;
}
.course_mv .swiper-pagination {
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	margin: auto;
}
.course_mv .swiper-pagination-bullet {
	display: block;
	width: 1.6rem;
	height: 2px;
	cursor: pointer;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	opacity: 1;
	background-color: #fff;
	border-radius: 0;
	margin: 5px 0 !important;
}
.course_mv .swiper-pagination-bullet:not(:first-child) {
	margin-top: 1.6rem;
}
.course_mv .swiper-pagination-bullet-active {
	width: 4rem;
	background-color: #6F178D;
}
.course_mv .swiper-fade .swiper-slide {
-webkit-transition-property: opacity, -webkit-transform !important;
	transition-property: opacity, -webkit-transform !important;
	transition-property: opacity, transform !important;
	transition-property: opacity, transform, -webkit-transform !important;
	pointer-events: none;
}
.course_mv .swiper-fade .swiper-slide-active {
	pointer-events: auto;
}
.course_mv .slide {
	display: grid;
	place-content: center;
	height: 800px;
	padding: 0 8rem;
	text-align: center;
}
.course_mv .slide-media {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.course_mv .slide-media img {
	-webkit-transition: 7s 1s linear;
	transition: 7s 1s linear;
	-webkit-transform: translateX(-1.5%) scale(1.1);
	transform: translateX(-1.5%) scale(1.1);
}
.course_mv .slide-text, .course_mv .slide-link {
	-webkit-animation: 2s var(--easing) both;
	animation: 2s var(--easing) both;
	opacity: 1;
	color: #6F178D;
}
.course_mv .slide-text {
	font-size: 1.8rem;
	margin: 4rem 0;
	color: #fff;
}
	.course_mv .slide-button {
	font-size: 1.2rem;
	font-weight: bold;
	display: inline-block;
	color: var(--color-theme);
	}
	.course_mv .slide-button::before {
	display: inline-block;
	width: 6rem;
	height: 1px;
	margin: -2px 1.6rem 0 0;
	content: "";
	vertical-align: middle;
	background-color: currentColor;
}
.course_mv .swiper-slide[class*=-active] .slide-media img {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform: translateX(1.5%) scale(1.05);
	transform: translateX(1.5%) scale(1.05);
}

@media only screen and (max-width: 1024px) {
	.course .l-inner {
		padding: 0 4rem;
	}
	.course_mv {
		margin-bottom: 8rem;
	}
	.course_mv .slide {
		height: max(50vh, 70vw);
	}
	.course_mv .slide-text {
		font-size: 1.6rem;
		margin: 3.2rem 0;
	}
}
@media only screen and (min-width: 1025px) {
	.course .swiper-button-prev::before,
	.course .swiper-button-next::before {
		-webkit-transition: var(--transition);
		transition: var(--transition);
	}
	.course .swiper-button-prev:hover::before,
	.course .swiper-button-next:hover::before {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
}

.course_info {
	padding-bottom: 10vw;
}

.course_outline {
	margin: auto;
}
.course_outline h4 {
	font-size: 1.25em;
	font-weight: 600;
	margin-bottom: 7vw;
	line-height: 1;
}
.yobi_w {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
}
.yobi_w > span {
	margin-right: 5px;
	margin-bottom: 3vw;
	color: #DDDDDD;
}
.yobi_w > span.yobi.on,
.yobi_w > span.yobi_txt{
	font-weight: 600;
	color: #3f4444;
}
.yobi {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	width: 2em;
	height: 2em;
}
.yobi.on::after{
	content: "";
	display: block;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #f1e0f5;
	z-index: -1;
}
.lesson_time {
	font-weight: 600;
}
.lesson_time > span {
	font-size: 1.25em;
}
.lesson_note {
	font-size: 0.9em;
}
.lesson_news {
	font-size: 0.9em;
	line-height: 1.5;
	margin-top: 7vw;
}
.lesson_news a {
	text-decoration: underline;
	color: #6F178D;
	padding: 0 0.025em;
}
.course_nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.course_nav li {
	width: 20%;
}
.course_nav li a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	font-size: 0.75em;
	line-height: 1.25;
	text-align: center;
	height: 100%;
	padding: 10px 0 25px;
	background-color: #3f4444;
	border-right: solid 1px #fff;
	position: relative;
}
.course_nav li a span{
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
/* ブラウザがサポートしていない場合のフェールセーフ */
	max-height: 28px;
}
.course_nav li:last-of-type {
	border-right: none;
}
.course_nav li a:after {
	font-family: "FontAwesome";
	content: "\f103";
	position: absolute;
	bottom: 7px;
}
@media (hover: hover) and (pointer: fine) {
	.course_nav li a:hover:after {
		animation: fuwafuwa 1s linear infinite;
	}
}
@keyframes fuwafuwa{
	0%{transform:translateY(3px)}
	25%{transform:translateY(0px)}
	50%{transform:translateY(-3px)}
	75%{transform:translateY(0px)}
	100%{transform:translateY(3px)}
}

.course_li {
	padding: 0 0 5vw;
}
.course_li_inner {
	width: 80%;
	margin: 10vw auto;
	margin-right: 0;
}
.course_li_txt p {
	margin-bottom: 1.5em;
}

.course_t_item {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.course_t_item.time {
	width: 40%;
	border-right: solid 1px #fff;
}
.course_t_item.fee {
	width: 60%;
}
.course_t_item .th {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	background-color: #6F178D;
	color: #fff;
	font-weight: 500;
	font-size: 0.9em;
}
.course_t_item .cont {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
	background-color: #f0f0f0;
	font-weight: 600;
	font-size: 0.8em;
	line-height: 1;
	padding: 1em 0;
}
.course_t_item .cont i {
	margin-right: 3px;
}
.course_table {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
}
.course_li h3 {
	font-weight: 600;
	position: relative;
	padding-left: 2em;
}
.course_li h3 span,
.course_t_item .cont span {
	font-size: 1.75em;
}
.course_li h3 span.m_big {
	font-size: 1.35em;
}
#advanced.course_li h3 span.m_big {
	font-size: 1em;
	display: block;
}
#advanced.course_li h3 {
	line-height: 1.5;
}
.course_li h3 span {
	padding: 0 0.025em;
}
.course_li h3:before {
	font-family: "Font Awesome 5 Free";
	content: "\f001";
	font-weight: 900;
	position: absolute;
	left: 0;
	bottom: 0;
	top: 0;
	display: flex;
	align-items: center;
	padding-top: 0.55em;
	font-size: 1.25em;
	color: #6f178d;
}
.course_item_w {
	padding: 3vw 0 7vw;
	border-bottom: solid #f0f0f0 1px;
}
.flexible {
	line-height: 1.75;
	font-size: 0.9em;
	margin: 5vw 0 0;
}

.course_li_img_w {
	position: relative;
}
.c_li_img_text {
	position: absolute;
	top: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	color: #fff;
	font-size: 1.25em;
}
.course_li_img {
	filter: grayscale(100%) brightness(70%);
}
.course_item_w:last-of-type {
	border: none;
}
.course_li h3 span.plz_reserve {
	display: block;
	color: #6F178D;
	font-weight: 600;
	border: solid 2px #6F178D;
	padding: 0 0.75em;
	font-size: 14px;
	margin-bottom: 10px;
	width: -moz-fit-content;
	width: fit-content;
	max-width: 85px;
	line-height: 2;
}
#exam.course_li h3 {
	line-height: 1.5;
}
#exam.course_li h3 span.plz_reserve {
	margin-top: 5px;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  ニュース
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.news_list a {
	color: #6F178D;
}
.news_ico_title {
	height: 7vw;
	border-top: dotted 1px #3f4444;
	position: relative;
}
.news_ico_title span {
	font-weight: 500;
	width: -moz-fit-content;
	width: fit-content;
	display: flex;
	align-items: center;
	background-color: #fff;
	padding-right: 0.5em;
	position: absolute;
	top: -3.5vw;
	line-height: 1;
	height: 7vw;
}
.news_cat {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 20vw;
}
.news_ico {
	width: -moz-fit-content;
	width: fit-content;
	display: block;
	color: #6F178D;
	border: solid 1px #6F178D;
	border-radius: 50px;
	margin-right: 0.5em;
}
.news_ico a {
	border-radius: 50px;
}
.news_cat .news_ico {
	margin-bottom: 0.5em;
}
.news_ico.current a {
	color: #fff;
	background-color: #6F178D;
}
.news_ico a {
	display: block;
	width: 100%;
	height: 100%;
	color: #6F178D;
	padding: 0 1em;
}
.news_item .news_ico {
	font-size: 0.8em;
	padding: 0 1em;
}
.news_ico_w {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.news_info {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	flex-wrap: wrap;
}
.news_date {
	display: block;
	color: #aaa;
	font-size: 0.7em;
	line-height: 1.5;
	margin-right: 0.5em;
	align-self: center;
}
.news_post .news_date{
	font-size: 0.9em;
	margin-right: 0;
}
.news_post .news_info {
	justify-content: space-between;
	flex-direction: row-reverse;
}
.news_item {
	border-bottom: solid 1px #f0f0f0;
	margin-bottom: 4vw;
}
.news_item a {
	display: block;
	color: #3f4444;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	padding: 4.5vw 100px 4.5vw 0;
	position: relative;
}
.news_item .news_title {
	display: inline-block;
	font-weight: 500;
	line-height: 1.75;
	margin-top: 0.25em;
	font-size: 16px;
}
.news_item a::after {
	content: "";
	display: block;
	position: absolute;
	right: 30px;
	bottom: 30px;
	width: 60px;
	height: 10px;
	border: none;
	border-right: 1px solid #6F178D;
	border-bottom: 1px solid #6F178D;
	transform: skew(45deg);
	transition: .3s;
}
.page-navigation {
	margin-top: 15vw;
}
.page-navigation > .page-numbers {
	width: -moz-fit-content;
	width: fit-content;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	margin: auto;
	padding: 0 2.5em;
}
.page-navigation a,
.page-navigation span {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f1e0f4;
	width: 2.5em;
	height: 2.5em;
	line-height: 1;
	text-align: center;
	margin: auto 0.25em;
	border-radius: 50%;
}
.page-navigation span {
	color: #fff;
	background-color: #6F178D;
}
.page-navigation a.prev,
.page-navigation a.next {
	background: none;
	position: absolute;
	top: 0;
}
.page-navigation a.next {
	right: 0;
}
.page-navigation a.prev {
	left: 0;
}
.news_post h3 {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.75;
	text-align: justify;
	margin: 0.25em 0;
}
.news_post .news_info {
	margin: 3vw 0 12vw;
}
.news_post .news_ico {
	font-size: 0.9em;
}
.news_info .news_ico {
	font-size: 12px;
}
.news_info .news_ico a {
	padding: 0 12px;
}
.news_item .news_info .news_ico {
	font-size: 10px;
	padding: 0 10px;
}
.news_content figure,
.news_content p {
	margin-bottom: 7vw;
}
.news_post .wp-block-image img {
	display: block;
	vertical-align: bottom;
	margin: auto;
}
.news_nav {
	margin: 20vw 0;
}
.news_nav a {
	color: #808080;
}
.nav-links {
	clear:both;
}
.nav-links > div {
	display: inline-block;
	width: 45vw;
	margin: 0;
	vertical-align: top;
}
.nav-links > div.nav-next {
	float: right;
}
.nav-links > div a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.nav-links > div.nav-next a {
	justify-content: flex-end;
}
.nav-links > div > a > div {
	width: 40vw;
	display: flex;
	flex-direction: column;
}
.nav-links > div.nav-next a > div {
	align-items: flex-end;
	padding-right: 3vw;
}
.nav-links > div.nav-previous a > div {
	padding-left: 3vw;
}
.nav-links > div i {
	font-size: 4vw;
	color: #aaa;
}
.meta-nav {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	text-align: center;
	color: #fff;
	background-color: #3f4444;
	border-radius: 50px;
	font-size: 0.8em;
	padding: 0 1em;
	margin-bottom: 0.5em;
}
.post-title {
	line-height: 1.5;
	font-size: 0.9em;
}
.news_nav_golist {
	display: flex;
	justify-content: center;
	margin: 5vw auto 0;
}
.clear {
	display: block;
	clear: both;
}
.news_content a {
	color: #6F178D;
	text-decoration: underline;
}
.news_post_w {
	margin-top: 15vw;
}
.news_list {
	margin-top: 25vw;
	padding-bottom: 20vw;
}
.news_li_inner {
	padding-top: 3.5vw;
}
.news_content {
	min-height: 30vh;
}
.news_nav_golist a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 30px auto 0;
	max-width: 200px;
	padding: 5px 0;
	transition: 0.3s ease-in-out;
	font-weight: 400;
}
.news_nav_golist a:before {
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 100%;
	height: 2px;
	background: rgba(0,0,0,.1);
	transform: translateX(-50%);
}
.news_nav_golist a:after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #6F178D;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s;
}
.news_item_title {
	margin-bottom: 3em;
	font-weight: 500;
	padding-left: 1.25em;
	border-left: 5px solid #6f178d;
	line-height: 1.5;
}
.news_item_title span {
	font-size: 1.25em;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  404
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.page_404::after {
	content: "";
	display: block;
	width: 80vw;
	height: 65vh;
	position: absolute;
	bottom: 0;
	z-index: -1;
	background-image: url(../img/bk_img_1sp.svg);
	background-size: contain;
	top: 0;
	background-repeat: no-repeat;
	background-position: top left;
}
.pg_404 {
	padding: 7em 0;
}
.pg_404 a.btn_line {
	display: block;
	margin: 3em auto auto;
	width: fit-content;
}
.pg_404 p {
	text-align: center;
}
.img_404 {
	width: 90%;
	max-width: 500px;
	margin: auto;
}
.img_404 img {
	width: 100%;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  カレンダー埋め込み
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.calendar iframe {
	width: 100%;
	border: none !important;
}
.calendar iframe,
.google-calendar,
.google-calendar a {
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
}
.calendar {
	width: 100%;
}
.course_calendar {
	padding-bottom: 10vw;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  プライバシーポリシー
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.privacy-policy::after {
	content: "";
	display: block;
	width: 80vw;
	height: 65vh;
	position: absolute;
	bottom: 0;
	z-index: -1;
	background-image: url(../img/bk_img_1sp.svg);
	background-size: contain;
	top: 0;
	background-repeat: no-repeat;
	background-position: top left;
}
.pg_privacy-policy {
	padding: 7em 0;
}
.privacy-policy h2 {
	writing-mode: horizontal-tb;
	position: static;
	margin-bottom: 1.5em;
}
.privacy-policy h3 {
	font-size: 1.25em;
	font-weight: 600;
	margin-bottom: 0.5em;
}
.privacy_content > div {
	margin-bottom: 1.5em;
}
.privacy_content > div > div {
	margin-top: 1em;
	padding-left: 1em;
}
.privacy_content a {
	text-decoration: underline;
	color: #6F178D;
}
.privacy_content ul {
	margin-top: 1em;
}
.privacy-policy .section_inner {
	max-width: 750px;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  レスポンシブ調整
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.pc,
.pc_flex {
	display: none;
}
.tb,
.tb_flex {
	display: none;
}
.sp {
	display: block;
}
.sp_flex {
	display: flex;
}

