@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap');

/* ----------------------------------------------------------------------------------------------------

base

---------------------------------------------------------------------------------------------------- */
:root {
	--pink: #f7bc9e;
	--blue: #b1bec4;
	--bg-grey: #f2f2f2;
	--prime: #f7bc9e;
	--font-serif: 'Noto Serif JP', serif;
}
body {
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}

/* ------ link ------ */
a {
	color: #333;
	text-decoration: none;
    transition: 0.3s ease-in-out; 
}
a.line {
	text-decoration: underline;
}
a:hover.line {
	text-decoration: none;
}
a:hover {
    opacity: 0.5;
} 
@media screen and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}
@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        text-decoration: underline;
    }
}

/* ------ font-size ------ */
html {
    font-size: 0.833vw;
}
@media screen and (max-width: 768px) {
    html {
        font-size: 1.303vw;
    }	
}
@media screen and (max-width: 540px) {
    html {
        font-size: 1.851vw;
    }	
}
@media screen and (max-width: 414px) {
    html {
        font-size: 2.415vw;
    }	
}




/* ----------------------------------------------------------------------------------------------------

layout

---------------------------------------------------------------------------------------------------- */
/* ------ header ------ */
header {
	padding: 1rem 10rem 2rem 10rem;
	box-shadow: 0 0 1rem rgba(0,0,0,0.1);
	position: relative;
	z-index: 10;
}
header .wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
	align-items: center;
}
header h1 {
	width: 16rem;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	header {
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 6rem;
	}
	header .wrap {
		margin-bottom: 0;
	}
	header h1 {
		width: 12rem;
	}
}

header .nav-store {
	display: flex;
}
header .nav-store li {
	padding-left: 1.2rem;
}
header .nav-store a {
	display: block;
	width: 22.4rem;
	filter: drop-shadow(0 0 0.6rem rgba(167,160,156,0.6));

}
@media screen and (max-width: 768px) {
	header .nav-store {
		display: none;
	}
}

/* ------ sub-menu ------ */
.sub-menu {
	display: flex;
}
.sub-menu li:not(:last-child) {
	margin-right: 2rem;
	align-self: center;
}
.sub-menu a {
	display: flex;
	align-items: center;
}
.sub-menu a > span {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--pink);
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 50%;
	padding-top: 0.08rem;
	padding-left: 0.13rem;
	margin-right: 0.5rem;
}
.sub-menu a > span i {
	font-size: 0.8rem;
}

/* ------ nav ------ */
ul.gnav-menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
ul.gnav-menu > li {
	white-space: nowrap;
}
ul.gnav-menu a {
	position: relative;
}
ul.gnav-menu a:hover {
	opacity: 1;
}
ul.gnav-menu a::before {
	content: "";
	width: 0.8rem;
	height: 0.8rem;
	background: var(--pink);
	border-radius: 50%;
	position: absolute;
	left: calc(50% - 0.4rem);
	bottom: -1.2rem;
	transition: all .6s;
	opacity: 0;
}
ul.gnav-menu a:hover:before {
	opacity: 1;
}

/* ------ footer ------ */
footer {
	background: var(--blue);
}
footer .wrap {
	padding: 3rem 8rem;
}
footer .logo {
	width: 20rem;
}
footer nav {
	margin-bottom: 2rem;
}
footer nav ul {
	display: flex;
	justify-content: center;
}
footer nav ul li {
	white-space: nowrap;
	line-height: 1;
}
footer nav ul li:not(:last-child) {
	border-right: solid 0.12rem #333;
	padding-right: 2rem;
	margin-right: 2rem;
}
footer .wrap > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer small {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 3.6rem;
	font-size: 1.2rem;
	background: #353535;
	color: #fff;
}
@media screen and (max-width: 768px) {
	footer .wrap {
		padding: 5rem 0;
	}
	footer .logo {
		width: 20rem;
		margin: 0 auto;
	}
	footer nav {
		margin: 4rem 0;
	}
	footer nav ul {
		flex-direction: column;
	}
	footer nav ul li {
		text-align: center;
	}
	footer nav ul li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 2rem;
		border-right: none;
	}
	footer .wrap > div {
		display: block;
	}
	footer .sub-menu {
		justify-content: center;
	}
}

/* ------ page-ttl ------ */
.page-ttl {
	background: #f1f4f9;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 15rem;
	overflow: hidden;
	padding-top: 0.2rem;
}
.page-ttl::before {
	content: "";
	width: 48rem;
	height: 48rem;
	background: var(--pink);
	border-radius: 50%;
	position: absolute;
	left: -20rem;
	top: -25rem;
	z-index: 10;
}
.page-ttl h2 {
	text-align: center;
	line-height: 1;
	font-weight: normal;
	position: relative;
	z-index: 10;
}
.page-ttl h2 span {
	display: block;
}
.page-ttl h2 .jp {
	font-size: 3.6rem;
	font-family: var(--font-serif);
	margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
	.page-ttl {
		height: 12rem;
	}	
	.page-ttl h2 .jp {
		font-size: 3.2rem;
	}
	.page-ttl::before {
		content: "";
		width: 32rem;
		height: 32rem;
		background: var(--pink);
		border-radius: 50%;
		position: absolute;
		left: -20rem;
		top: -14rem;
		z-index: 10;
	}		
}

/* ------ base-width ------ */
.base-width {
	width: 88rem;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
	.base-width {
		width: auto;
	}
}

/* ------ base-padding ------ */
.base-padding {
	padding: 8rem 0;
}
@media screen and (max-width: 768px) {
	.base-padding {
		padding: 6rem 3rem;
	}
}


/* ------ container ------ */
.container {
	margin: 8rem auto 10rem auto;
	width: 88rem;
}
@media screen and (max-width: 768px) {
	.container {
		margin: 6rem 3rem 8rem 3rem;
		width: auto;
	}
}

/* ------ page-top ------ */
#page-top {
    position: fixed;
	z-index: 999;
	bottom: 1rem;
	right: 1rem;	
}
#page-top a {
	background: var(--pink);
	color: #333;	
	width: 4rem;
	height: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 1;
	font-size: 2rem;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {
	#page-top {
		bottom: 6rem;	
	}
}




/* ----------------------------------------------------------------------------------------------------

style

---------------------------------------------------------------------------------------------------- */
/* ------ heading ------ */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
	text-align: center;
	font-weight: normal;
}
.heading-1 span {
	display: block
}
.heading-1 .jp {
	font-family: var(--font-serif);
	font-size: 2.8rem;
	margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {

}

/* ------ more ------ */
.more {
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28rem;
	padding: 1.7rem 0 1.8rem 1rem;
	border: solid 0.12rem #333;
	border-radius: 20rem;
}
.more i {
	font-size: 1rem;
	margin-top: 0.3rem;
	margin-left: 1.5rem;
}
.more:hover {
	opacity: 1;
	background: #333;
	color: #fff;
}
@media screen and (max-width: 768px) {

}

/* ------ ttl ------ */
.ttl {
	border-bottom: solid 1px rgba(0,0,0,0.2);
	font-size: 2.2rem;
	margin-bottom: 3rem;
	padding: 1rem 0 1.5rem 0;
	position: relative;
}
.ttl:after {
	border-bottom: solid 0.5rem var(--prime);
	bottom: -0.5rem;
	content: " ";
	display: block;
	position: absolute;
	width: 25%;
}
@media screen and (max-width: 768px) {
	.ttl:after {
		width: 40%;
	}	
}

/* ------ detail ------ */
dl.detail {
	display: flex;
	flex-wrap: wrap;
}
dl.detail dt {
	padding: 1.5rem;
	width: 25%;
	white-space: nowrap;
	font-weight: bold;
}
dl.detail dd {
	padding: 1.5rem;
	width: 75%;
}
dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
	border-bottom: none;
}
dl.bk dt,
dl.bk dd {
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
dl.wt dt,
dl.wt dd {
	border-bottom: 1px solid rgba(255,255,255,0.4);
}
@media screen and (max-width: 768px) {
	dl.detail {
		display: block;
	}
	dl.detail dt {
		display: flex;
		align-items: center;
		padding: 1.2rem 1.2rem 0.3rem 1.2rem;
		width: 100%;
	}
	dl.detail dt::before {
		content: "◆";
		font-size: 1.2rem;
		margin-right: 0.5rem;
	}
	dl.detail dd {
		padding: 0 1.2rem 1.2rem 1.2rem;
		width: 100%;
	}
	dl.bk dt {
		border-bottom: none;
	}
	dl.wt dt {
		border-bottom: none;
	}
}




/* ----------------------------------------------------------------------------------------------------

hamburger

---------------------------------------------------------------------------------------------------- */
.gnav-sp {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: -1;
	opacity: 0;
	background: #fff;	
}
.gnav-sp .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.gnav-sp-menu {
	margin-bottom: 3rem;
}
.gnav-sp-menu li {
	font-size: 1.6rem;
	text-align: center;
	line-height: 1.4;
}
.gnav-sp-menu li span {
	display: block;
}
.gnav-sp-menu li a {
	display: block;
	padding: 1.0rem 0;
	white-space: nowrap;
}

.gnav-sp .nav-store {
	margin: 0 auto;
	width: 64vw;
	max-width: 360px;
}
.gnav-sp .nav-store li {
	margin-bottom: 5vw;
}
.gnav-sp .nav-store li:last-child {
	margin: 0;
}
.gnav-sp .nav-store a {
	display: block;
	filter: drop-shadow(0 0 0.6rem rgba(167,160,156,0.6));
}

/* ------ toggle ------ */
.toggle-btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
	background: var(--pink);
}
.toggle-btn span {
	display: block;
	position: absolute;
	left: 2rem;
	width: 2rem;
	height: 0.2rem;
	background-color: #333;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 1.9rem;
}
.toggle-btn span:nth-child(2) {
	top: 2.7rem;
}
.toggle-btn span:nth-child(3) {
	top: 3.5rem;
}

/* ------ open ------ */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
.open .toggle-btn span:nth-child(1) {
	-webkit-transform: translateY(0.8rem) rotate(-45deg);
	transform: translateY(0.8rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	-webkit-transform: translateY(-0.8rem) rotate(45deg);
	transform: translateY(-0.8rem) rotate(45deg);
}




/* ----------------------------------------------------------------------------------------------------

class

---------------------------------------------------------------------------------------------------- */
/* ------ txt-vertical ------ */
.txt-vertical {
	writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
	.txt-vertical.not {
		writing-mode: horizontal-tb;
		white-space: normal;
	}
}

/* ------ hv-center ------ */
.hv-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	width: 100%;
	z-index: 99;
}

/* ------ list ------ */
ul.list-group li {
	margin-left: 2rem;
	list-style: disc;
}
ul.list-group li:not(:last-child) {
	margin-bottom: 0.6rem;
}
@media screen and (max-width: 768px) {
	ul.list-group li:not(:last-child) {
		margin-bottom: 1.2rem;
	}
}

/* ------ prepare ------ */
.prepare {
    text-align: center;
    padding: 8rem 0;
    font-size: 2rem;
	font-weight: bold;
}

/* ------ map ------ */
.gmap iframe {
	width: 100%;
	height: 36rem;
}
.gmap.grey iframe {
	filter:grayscale(100%);
}

/* ------ display ------ */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}

/* ------ margin ------ */
.mb-10 { margin-bottom: 1rem !important; }
.mb-15 { margin-bottom: 1.5rem !important; }
.mb-20 { margin-bottom: 2.0rem !important; }
.mb-25 { margin-bottom: 2.5rem !important; }
.mb-30 { margin-bottom: 3.0rem !important; }
.mb-35 { margin-bottom: 3.5rem !important; }
.mb-40 { margin-bottom: 4.0rem !important; }
.mb-45 { margin-bottom: 4.5rem !important; }
.mb-50 { margin-bottom: 5.0rem !important; }
.mb-55 { margin-bottom: 5.5rem !important; }
.mb-60 { margin-bottom: 6.0rem !important; }
.mb-65 { margin-bottom: 6.5rem !important; }
.mb-70 { margin-bottom: 7.0rem !important; }
.mb-75 { margin-bottom: 7.5rem !important; }
.mb-80 { margin-bottom: 8.0rem !important; }
.mb-85 { margin-bottom: 8.5rem !important; }
.mb-90 { margin-bottom: 9.0rem !important; }
.mb-95 { margin-bottom: 9.5rem !important; }
.mb-100	{ margin-bottom: 10.0rem !important; }

.mt-30 { margin-top: 3.0rem !important;}




/* ----------------------------------------------------------------------------------------------------

fade

---------------------------------------------------------------------------------------------------- */
.fade {
	opacity: 0;
	transform: translateY(2rem);
}
.fade.is-animation {
    animation: fade 0.5s ease;
    animation-fill-mode: both;
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.delay-1 { animation-delay: 0.2s !important; }
.delay-2 { animation-delay: 0.35s !important; }
.delay-3 { animation-delay: 0.5s !important; }
.delay-4 { animation-delay: 0.65s !important; }
.delay-5 { animation-delay: 0.8s !important; }





/* ----------------------------------------------------------------------------------------------------

news

---------------------------------------------------------------------------------------------------- */
/* ------ CMS-NEWS ------ */
.CMS-NEWS-INDEX {
    position: relative;
    padding-bottom: 10rem;
}
.CMS-NEWS-ITEM:first-of-type a {
    border-top: solid 1px var(--blue);
}
.CMS-NEWS-ITEM a {
    transition: all .3s;
    display: flex;
	align-items: center;
    border-bottom: solid 1px var(--blue);
    padding: 2rem 1.5rem;
}
.CMS-NEWS-ITEM a:hover {
    opacity: 1;
	background: var(--bg-grey);
}
.CMS-NEWS-TIME {
    font-size: 1.2rem;
    width: 20%;
}
.CMS-NEWS-LINK {
    width: 80%; 
}

/* ------ CMS-NEWS-MORE-READ ------ */
.CMS-NEWS-MORE-READ {
    background: var(--prime);
    border:none;
    text-align: center;
    padding: 1.6rem 0 1.7rem 0;
    font-size: 1.4rem;
    color: #333 !important;
    text-align: center;
    width: 28rem;
    display: block;
    transition: all .3s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
}
.CMS-NEWS-MORE-READ:hover {
    cursor: pointer;
    opacity: 0.6;
}

/* ------ CMS-NEWS-TITLE ------ */
.CMS-NEWS-TITLE {
    border-bottom: solid 1px rgba(0,0,0,0.2);
    font-size: 2.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    padding: 1rem 0 1.5rem 0;
    position: relative;
	font-family: var(--font-serif);
}
.CMS-NEWS-TITLE:after {
    border-bottom: solid 0.5rem var(--prime);
    bottom: -0.5rem;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}
.CMS-NEWS-CONTENT img {
    width: 70%;
    height: auto;
    display: block;
    margin: 4rem auto;
}
@media screen and (max-width: 768px) {
    .CMS-NEWS-ITEM a {
        display: block;
		padding: 2rem 1.5rem 2.1rem 1.5rem;
    }
    .CMS-NEWS-TIME {
        width: 100%;
    }
    .CMS-NEWS-LINK {
        width: 100%;    
    }   
    .CMS-NEWS-CONTENT img {
        width: 100%;
    }
    .CMS-NEWS-INDEX > * img {
        height: auto;
    }
}




/* ----------------------------------------------------------------------------------------------------

faq

---------------------------------------------------------------------------------------------------- */
.faq-ttl {
	padding: 2rem 6rem 2.2rem 2rem;
	position: relative;
	align-items: center;
	font-size: 1.6rem;
	border-bottom: solid 0.14rem #ebebeb;
	transition: all .3s;
}
.faq-ttl i {
	width: 3rem;
	height: 3rem;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);	
}
.faq-ttl i::before,
.faq-ttl i::after {
	content: "";
	background: var(--blue);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq-ttl i::before {
	width: 2rem;
	height: 0.2rem;
}
.faq-ttl i::after {
	width: 0.2rem;
	height: 2rem;
	transition: all .3s;
}
.faq-ttl.open i::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-ttl:hover {
	opacity: 0.5;
	cursor: pointer;
}
.faq-ttl,
.faq-content {
	display: flex;
}
.faq-ttl > span:nth-child(1),
.faq-content > span:nth-child(1) {
	background: var(--pink);
	width: 4rem;
	height: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 2rem;
	padding-left: 0.15rem;
	padding-bottom: 0.3rem;
}
.faq-content > span:nth-child(1) {
	background: #fff;
	border: 0.15rem var(--pink) solid;
	color: var(--pink);
}
.faq-ttl > span:nth-child(2),
.faq-content > span:nth-child(2) {
	width: calc(100% - 4rem);
	padding-left: 2rem;
}
.faq-content {
	padding: 2rem;
	background: var(--bg-grey);
}
@media screen and (max-width: 768px) {
	.faq-ttl {
		padding: 2rem 4rem 2.2rem 1.5rem;
	}
	.faq-content {
		padding: 2rem 1.5rem;
	}
}

@media screen and (min-width: 767px) {
#op_btn1 {
    letter-spacing: 0.05em;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: 0 0;
    position: fixed !important;
    right: 0;
    top: 20vh;
    line-height: 1;
    margin: 0;
    z-index: 9999;
    font-size: 100%;
}
#op_btn1 a {
	display: block;
    color: #454341;
    background: var(--pink);
    padding: 30px 0;
    text-decoration: none;
    transition: all 0.4s;
    font-weight: bold;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    width: 50px;
    line-height: 50px;
}
#op_btn2 {
    letter-spacing: 0.05em;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: 0 0;
    position: fixed !important;
    right: 0;
    top: 45vh;
    line-height: 1;
    margin: 0;
    z-index: 9999;
    font-size: 100%;
}
#op_btn2 a {
	display: block;
    color: #454341;
    background: var(--pink);
    padding: 30px 0;
    text-decoration: none;
    transition: all 0.4s;
    font-weight: bold;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    width: 50px;
    line-height: 50px;
}
}
@media screen and (max-width: 768px) {
	.bn_sec {
		width: 100%;
	}
    #op_btn1 {
        position: fixed;
        left: 0;
        bottom: 0px;
        width: 50%;
        writing-mode: unset;
        line-height: 1;
        z-index: 9999;
        font-size: 15px;
        text-align: center;
        /* transform: translateX(-50%); */
    }
	#op_btn1 a {
		display: block;
        color: #454341;
		background: var(--pink);
        padding: 0px 0px;
        text-decoration: none;
		width: 100%;
		writing-mode:horizontal-tb;
		transition: all 0.4s;
		font-weight: bold;
		line-height: 50px;
		border: 1px var(--blue) solid;
    }
	#op_btn2 {
        position: fixed;
        right: 0;
        bottom: 0px;
        width: 50%;
        writing-mode: unset;
        line-height: 1;
        z-index: 9999;
        font-size: 15px;
        text-align: center;
    }
	#op_btn2 a {
		display: block;
        color: #454341;
		background: var(--pink);
        padding: 0px 0px;
        text-decoration: none;
		width: 100%;
		writing-mode:horizontal-tb;
		transition: all 0.4s;
		font-weight: bold;
		line-height: 50px;
		border: 1px var(--blue) solid;
    }
}

.sub-menu .contact_mail a {
	display: flex;
    align-items: center;
}
.sub-menu .contact_mail a > span {
	background: #fff;
	margin-right: 1rem;
}
.contact_mail {
	background: var(--pink);
	/* border-radius: 20rem; */
    padding: 1rem 1rem;
	padding-right: 1.5rem;
}
.contact_mail p {
	text-align: center;
	line-height: 1.2;
}
.contact_mail p span {
	font-size: 12px;
}
@media screen and (max-width: 768px) {
	.contact_mail {
		margin-top: 2rem;
	}
}

/* ----------------------------------------------------------------------------------------------------

course

---------------------------------------------------------------------------------------------------- */
/* ------ ul ------ */
.c-course > li {
	position: relative;
	overflow: hidden;
}
.c-course > li > * {
	position: relative;
	z-index: 10;
}
.c-course > li:not(:last-child) {
	margin-bottom: 2.5rem;
}
.c-course > li:nth-child(1) .course-ttl {
	background: #ffebec;
}
.c-course > li:nth-child(2) .course-ttl {
	background: #fffac0;
}
.c-course > li:nth-child(3) .course-ttl {
	background: #ffe9d4;
}
.c-course > li:nth-child(4) .course-ttl {
	background: #dcf4ff;
}
.c-course > li:nth-child(5) .course-ttl {
	background: #f1f4f9;
}
.c-course > li:nth-child(6) .course-ttl {
	background: #e7e2f4;
}
.c-course > li:nth-child(7) .course-ttl {
	background: #dce9d5;
}
.c-course > li:nth-child(8) .course-ttl{background: #ffebec;}
.c-course > li:nth-child(9) .course-ttl{background: #fffac0;}
.c-course > li:nth-child(10) .course-ttl{background: #ffe9d4;}
.c-course > li:nth-child(11) .course-ttl{background: #f1f4f9;}
/* ------ course-ttl  ------ */
.c-course .course-ttl {
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-right: 6rem;
	transition: all .3s;
}
.c-course .course-ttl:hover {
	opacity: 0.5;
	cursor: pointer;
}
.c-course .course-ttl > i {
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translate(0, -50%);
	font-size: 2rem;
	transition: all .3s;
}
.c-course .course-ttl.open > i {
	transform: translate(0, -50%) rotate(180deg);
}
.c-course .course-class {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 20rem;
	padding: 2rem 0;
	position: relative;
}
.c-course .course-class::before {
	content: "";
	width: 30rem;
	height: 30rem;
	background: var(--pink);
	border-radius: 50%;
	position: absolute;
	left: -10rem;
	top: -9rem
}
.c-course .course-class > * {
	position: relative;
	z-index: 10;
}
.c-course .course-class > span {
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 1.3rem;
	line-height: 1;
}
.c-course .course-class > span i {
	font-size: 1.8rem;
}
.c-course .course > ul > li:not(:first-child) .course-class > span {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.c-course .course > ul > li:not(:first-child) .course-class > span i {
	margin-top: 0.3rem;
}
.c-course .course-class > div {
	display: flex;
	align-items: center;
	background: #fff;
	justify-content: center;
	border-radius: 10rem;
	font-size: 1.6rem;
	color: #666;
	padding: 0.5rem 1.5rem 0.6rem 1.5rem;
}
.c-course .star {
	display: flex;
	margin-left: 1rem;
}
.c-course .star img {
	width: 1.4rem;
	height: 1.4rem;
}
.c-course .star img:not(:last-of-type) {
	margin-right: 0.4rem;
}
.c-course .course-name {
	width: calc(100% - 20rem);
	display: flex;
	flex-direction: column;
	padding-left: 3rem;
	padding-bottom: 0.6rem;
}
.c-course .course-name > span:nth-child(1) {
	font-size: 1.8rem;
	margin-bottom: 0.8rem;
	line-height: 1.4;
}
.c-course .course-name > span:nth-child(2) {
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1;
}

/* ------ course-content ------ */
.c-course .course-content {
	padding: 3rem 3rem 0 3rem;
}
.c-course .course-content .wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 3rem;
}
.c-course .course-content .wrap > * {
	width: 48%;
}
.c-course .course-content ul {
	display: flex;
	flex-wrap: wrap;
}
.c-course .course-content ul li {
    width: calc((100% - 10rem) / 6);
    margin-right: 2rem;
}
.c-course .course-content ul li:nth-child(6n) {
    margin-right: 0;
}
.c-course .course-content ul li:nth-child(n + 7) {
    margin-top: 2rem;
}
.c-course .course-content ul li img.grey {
	filter: grayscale(1);
}
.c-course .course-content p span {
	display: block;
	margin-top: 2rem;
	text-decoration: underline;
}
@media screen and (max-width: 768px) {
	/* ------ course-ttl  ------ */
	.c-course .course-ttl {
		flex-direction: column;
		padding-right: 0;
	}
	.c-course .course-ttl > i {
		top: auto;
		right: auto;
		left: 50%;
		bottom: 1.5rem;
		transform: translate(-50%, 0);
		font-size: 1.6rem;
	}
	.c-course .course-ttl.open > i {
		transform: translate(-50%, 0) rotate(180deg);
	}
	.c-course .course-class {
		width: 100%;
		background: var(--pink);
		padding: 1.5rem 0;
	}
	.c-course .course-ttl:hover {
		opacity: 1;
	}
	.c-course .course-class::before {
		display: none;
	}
	.c-course .course-class > span {
		margin-bottom: 1rem;
	}
	.c-course li:not(:first-child) .course-class > span {
		display: block;
	}
	.c-course li:not(:first-child) .course-class > span i {
		margin-top: 0;
	}
	.c-course .course-name {
		width: 100%;
		padding: 1.5rem 1.5rem 4.5rem 1.5rem;
	}
	.c-course .course-name > span:nth-child(1) {
		font-size: 1.4rem;
		margin-bottom: 0.8rem;
		line-height: 1.5;
	}
	.c-course .course-name > span:nth-child(2) {
		font-size: 2.4rem;
		line-height: 1.3;
		text-align: center;
	}

	/* ------ course-content ------ */
	.c-course .course-content {
		padding: 2rem;
	}
	.c-course .course-content .wrap {
		display: block;
		margin-bottom: 2rem;
	}
	.c-course .course-content .wrap > * {
		width: 100%;
	}
	.c-course .course-content .wrap > figure {
		margin-bottom: 1rem;
	}
	.c-course .course-content ul {
		display: flex;
		flex-wrap: wrap;
	}
	.c-course .course-content ul li {
		width: calc((100% - 2rem) / 3);
		margin-right: 1rem;
	}
	.c-course .course-content ul li:nth-child(3n) {
		margin-right: 0;
	}
	.c-course .course-content ul li:nth-child(n + 4) {
		margin-top: 1rem;
	}
	.c-course .course-content ul li img.grey {
		filter: grayscale(1);
	}
	.c-course .course-content p span {
		display: block;
		margin-top: 2rem;
		text-decoration: underline;
	}	
	.c-course li:nth-child(1) .course-content {
		border: solid 0.3rem #ffebec;
	}
	.c-course li:nth-child(2) .course-content {
		border: solid 0.3rem #fffac0;
	}
	.c-course li:nth-child(3) .course-content {
		border: solid 0.3rem #f1f4f9;
	}
	.c-course li:nth-child(4) .course-content {
		border: solid 0.3rem #dcf4ff;
	}
	.c-course li:nth-child(5) .course-content {
		border: solid 0.3rem #ffe9d4;
	}
}

/* ----------------------------------------------------------------------------------------------------

head

---------------------------------------------------------------------------------------------------- */
.c-head {
	text-align: center;
}
.c-head h2 span {
	display: block;
}
.c-head h2 .jp {
	font-size: 5.16rem;
	font-weight: 600;
}
.c-head h2 .jp br {
	display: none;
}
.c-head h2 .jp br.static {
	display: block;
}
.c-head h2 .en {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 2.58rem;
}
/* SP */
@media screen and (max-width: 768px) {
	.c-head h2 .jp {
		font-size: 2.8rem;
	}
	.c-head h2 .jp br {
		display: block;
	}
	.c-head h2 .en {
		font-size: 1.6rem;
	}
}

/* ----------------------------------------------------------------------------------------------------

price group

---------------------------------------------------------------------------------------------------- */
.c-price-group-row {
	display: flex;
	align-items: flex-start;
	margin: 6rem 0 3rem 0;
}
.c-price-group-row * {
	box-sizing: border-box;
}
.c-price-group-row .table {
	overflow: hidden;
	width: 61.6rem;
	border-radius: 0.86rem;
	text-align: center;
	box-shadow: 0 0 2.5rem rgba(0,0,0,0.1);
}
.c-price-group-row .table h3 {
	padding: 1.7rem;
	background-color: #829cb5;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 2.06rem;
	color: #fff;
}
.c-price-group-row .table table {
	width: 100%;
	background-color: #fff;
	font-size: 2rem;
	line-height: 1.3;
	white-space: nowrap;
}
.c-price-group-row .table th,
.c-price-group-row .table td {
	padding: 1.2rem 1rem;
	border: 1px solid #829cb5;
	vertical-align: middle;
	text-align: center;
}
.c-price-group-row .table th:first-child,
.c-price-group-row .table td:first-child {
	border-left: 0;
}
.c-price-group-row .table th:last-child,
.c-price-group-row .table td:last-child {
	border-right: 0;
}
.c-price-group-row .table tr:last-child th,
.c-price-group-row .table tr:last-child td {
	border-bottom: 0;
}
.c-price-group-row .table tr:nth-child(2) td {
	border-top: 0;
}
.c-price-group-row .table .no-border {
	border-bottom: 0;
}
.c-price-group-row .table th {
	font-weight: 500;
}
.c-price-group-row .table .th {
	background-color: #eaf6fd;
}
.c-price-group-row .image {
	flex: 1;
	padding-left: 1rem;
}
.c-price-group-row .image span {
	display: block;
	overflow: hidden;
	border-radius: 0.86rem;
}
.c-price-group-note {
	text-align: center;
	text-decoration: underline;
	font-size: 1.7rem;
}
.c-price-group-detail {
	margin: 4.3rem 0 6rem 0;
	letter-spacing: 0;
}
.c-price-group-detail * {
	box-sizing: border-box;
}
.c-price-group-detail .block {
	margin-bottom: 2.58rem;
	border-radius: 0.86rem;
	background-color: #fff;
}
.c-price-group-detail .toggle {
	position: relative;
	display: flex;
	align-items: center;
	padding: 1rem 3.8rem;
	min-height: 9.4rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 2rem;
	cursor: pointer;
}
.c-price-group-detail .toggle i {
	width: 3rem;
	height: 3rem;
	position: absolute;
	top: 50%;
	right: 3rem;
	transform: translate(0, -50%);	
}
.c-price-group-detail .toggle i::before,
.c-price-group-detail .toggle i::after {
	content: "";
	background: #000;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.c-price-group-detail .toggle i::before {
	width: 2rem;
	height: 0.2rem;
}
.c-price-group-detail .toggle i::after {
	width: 0.2rem;
	height: 2rem;
	transition: all .3s;
}
.c-price-group-detail .toggle.open i::after {
	transform: translate(-50%, -50%) rotate(90deg);
}
.c-price-group-detail .outer {
	overflow: hidden;
}
.c-price-group-detail .inner {
	padding: 0 3.8rem 3.8rem 3.8rem;
	font-size: 1.7rem;
}
.c-price-group-detail h4 {
	margin: 3.4rem 0 1rem 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 2rem;
}
.c-price-group-detail h4:first-child {
	margin-top: 0;
}
.c-price-group-detail table {
	margin-top: 2.3rem;
	width: 100%;
	text-align: left;
	vertical-align: top;
	font-size: 1.5rem;
}
.c-price-group-detail table th,
.c-price-group-detail table td {
	padding: 1.4rem 1.7rem;
}
.c-price-group-detail table tr:nth-child(odd) th,
.c-price-group-detail table tr:nth-child(odd) td {
	background-color: #eaf6fd;
}
.c-price-group-detail table th {
	border-right: 5px solid #fff;
	font-weight: 500;
	white-space: nowrap;
}
.c-price-group-detail a {
	text-decoration: underline;
	color: #f73c3c;
}
.c-price-group-detail .color {
	color: #f72a2a;
}
/* SP */
@media screen and (max-width: 768px) {
	.c-price-group-row {
		display: block;
		margin: 3rem 0 3rem 0;
	}
	.c-price-group-row .table {
		margin-bottom: 3rem;
		width: 100%;
	}
	.c-price-group-row .table h3 {
		padding: 1.7rem;
		font-size: 1.8rem;
		color: #fff;
	}
	.c-price-group-row .table table {
		font-size: 1.4rem;
	}
	.c-price-group-row .table th,
	.c-price-group-row .table td {
		padding: 1.2rem 0.5rem;
	}
	.c-price-group-row .image {
		padding: 0;
	}
	.c-price-group-note {
		text-align: left;
		font-size: 1.4rem;
	}
	.c-price-group-detail .block {
		margin-bottom: 2rem;
		border-radius: 0.86rem;
	}
	.c-price-group-detail .toggle {
		padding: 0.5rem 5rem 0.5rem 2rem;
		min-height: 7.6rem;
		font-size: 1.8rem;
	}
	.c-price-group-detail .toggle i {
		right: 1.5rem;
	}
	.c-price-group-detail .inner {
		padding: 0 2rem 3rem 2rem;
		font-size: 1.4rem;
	}
}

/* ----------------------------------------------------------------------------------------------------

instructor

---------------------------------------------------------------------------------------------------- */
.c-instructor {
	position: relative;
	padding: 20.6rem 0 4rem 0;
}
.c-instructor * {
	box-sizing: border-box;
}
.c-instructor .bg {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background-repeat: no-repeat;
	background-image: url(../img/instructor-bg.jpg);
	background-size: 100% auto;
}
.c-instructor .container {
	position: relative;
	margin: 0 auto;
	width: 103.4rem;
}
.c-instructor .frame {
	padding: 6rem 8.62rem;
	background-color: #fff;
	border-radius: 3.5rem;
}
.c-instructor .head {
	margin-bottom: 6rem;
	text-align: center;
}
.c-instructor .head h2 span {
	display: block;
}
.c-instructor .head h2 .jp {
	margin-bottom: 0.5rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 3.4rem;
}
.c-instructor .head h2 .en {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 1.7rem;
}
.c-instructor .row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2.1rem;
}
.c-instructor .block {
	flex-basis: 50%;
	margin: 0 0 40px 0;
	padding: 0 2.1rem;
	font-size: 1.4rem;
	letter-spacing: 0;
}
.c-instructor .person::after {
	content: '';
	display: block;
	clear: both;
}
.c-instructor .person .detail {
}
.c-instructor .person .detail dl {
	margin-bottom: 0.8rem;
	line-height: 1.3;
}
.c-instructor .person .detail dd {
	margin-top: 0.5rem;
	font-size: 2.58rem;
}
.c-instructor .person .detail p {
	font-size: 1.3rem;
}
.c-instructor .person .portrait {
	position: relative;
	float: right;
	margin: 0 0 1rem 2.1rem;
	width: 16.9rem;
}
.c-instructor .person .portrait .label {
	position: absolute;
	top: 0;
	right: 0;
	width: 6rem;
}
.c-instructor .license {
	display: flex;
	align-items: flex-start;
	margin-top: 2.5rem;
	font-size: 1.3rem;
	line-height: 1.7;
}
.c-instructor .license dt {
	flex-basis: 7.7rem;
	flex-shrink: 0;
	margin-right: 1.3rem;
	padding-top: 0.2rem;
}
.c-instructor .license dt span {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 9.48rem;
	background-color: #eee;
}
.c-instructor .trainer-banner {
	margin: 0 auto;
	padding-top: 5rem;
}
/* SP */
@media screen and (max-width: 768px) {
	.c-instructor {
		display: block;
		padding: 14rem 0 4rem 0;
	}
	.c-instructor .container {
		padding: 0 2rem;
		width: auto;
	}
	.c-instructor .frame {
		padding: 4rem 0;
		border-radius: 1.4rem;
	}
	.c-instructor .head {
		margin-bottom: 4rem;
	}
	.c-instructor .head h2 .jp {
		font-size: 2.8rem;
	}
	.c-instructor .head h2 .en {
		font-size: 1.6rem;
	}
	.c-instructor .row {
		display: block;
		margin: 0;
		padding: 0 1.5rem;
	}
	.c-instructor .block {
		margin: 0;
		padding: 0 0 4rem 0;
		font-size: 1.5rem;
		letter-spacing: 0;
	}
	.c-instructor .block:last-child {
		padding: 0;
	}
	.c-instructor .person .detail {
		padding-right: 1.5rem;
	}
	.c-instructor .person .detail dd {
		margin-top: 1rem;
		font-size: 2.6rem;
	}
	.c-instructor .person .portrait {
		flex-basis: 40%;
	}
	.c-instructor .person .portrait .label {
		width: 6rem;
	}
	.c-instructor .license {
		display: block;
		margin-top: 2.5rem;
	}
	.c-instructor .license dt {
		margin-right: 0;
		padding: 0 0 1.5rem 0;
		text-align: center;
	}
	.c-instructor .license dt span {
		display: block;
		min-height: initial;
		padding: 0.5em;
	}
}

/* ----------------------------------------------------------------------------------------------------

detail btn

---------------------------------------------------------------------------------------------------- */
.c-detail-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 7.2rem;
	position: relative;
	border-radius: 20rem;
	text-align: center;
	position: relative;
	font-size: 2rem;
	padding-bottom: 0.3rem;
	letter-spacing: 0.1em;
	width: 46rem;
	margin: 0 auto;
	border: solid 1px #000;
	padding-left: 0.5rem;
	margin-top: 5rem;
}
.c-detail-btn i {
	position: absolute;
	top: 50%;
	right: 4rem;
	transform: translate(0, -50%);
	font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
	.c-detail-btn {
		width: 100%;
		font-size: 1.8rem;
	}
	.c-detail-btn i {
		right: 2.6rem;
	}
}

/* ----------------------------------------------------------------------------------------------------

swiper

---------------------------------------------------------------------------------------------------- */
.swiper-wrapper {
	height: auto !important;
}
.swiper-slide {
	height: auto !important;
}

/* ----------------------------------------------------------------------------------------------------

visible

---------------------------------------------------------------------------------------------------- */
@media screen and (min-width: 769px) {
	.visible-sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.visible-pc {
		display: none !important;
	}
}