@charset "utf-8";
/* CSS Document */


/*--------------------------- general ----------------------------*/

body {
    font-size: .93rem;
    line-height: 1.7;
}
section {
	/*margin-bottom: 4em;*/
}
a {
    color: #2455aa;
}
a:hover {
    color: #2455aa;
    text-decoration: underline;
}

em {
	font-style: normal;
	font-weight: 800;
}
ul {
	font-size: 0.93rem;
}
figure img {
	max-width: 100%;
}
h6 {
    font-size: 1rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: .5em;
}
p {
    margin-bottom: 1em;
}
/*p:last-of-type {
    margin-bottom: 0;
}*/


/*--------------------------- general classes ----------------------------*/

.clearfix::after {
    content: "";
    display: block;
    clear: both;
    height: 0;
}
.no-break {
	white-space: nowrap;
}

.floatr-img {
    float: right;
	width: 35%;
    margin: 0 1% 1% 2%;
	height: auto;
    max-width: 100%;
}
.note {
	padding-left: 1em;
	text-indent: -1em;
}
.note-small {
    padding-left: 13px;
    text-indent: -7px;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
}
.foot-note {
    font-size: 11px;
}
.sp-link {
    pointer-events: none;
	text-decoration: none;
}

.list-ul,
.list-ol {
    margin: 0 1em 1em 2em;
	padding: 0;
	counter-reset: my-counter;
}
.list-ul li,
.list-ol li,
.list-dl dd {
    padding-left: 15px;
    position: relative;
    margin-bottom: 0.5em;
}
.list-ul li::before,
.list-dl dd::before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    font-size: 80%;
    display: block;
    position: absolute;
    left: -5px;
    top: 0.1em;
    color: #74a700;
}
.list-ol li::before {
    content: counter(my-counter)".";
    counter-increment: my-counter;
    position: absolute;
    left: -5px;
    font-weight: bold;
    color: #ff9800;
}
.dl-float dt {
    float: left;
    clear: left;
    color: #00757f;
    font-weight: bold;
}
.dl-float dd {
    margin-left: 6em;
    margin-bottom: 0;
}
.marker {
    background: linear-gradient(transparent 65%,#ffea3c 0);
}

@media screen and (max-width: 575px) {
	.list-ul,
	.list-ol {
		margin: 0 0 1em 1em;
	}

} /* end media query */

/* ---- layout */


.contents-section {
    width: 100%;
    max-width: 1210px;
    padding: 0 35px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.contents-section {
		padding: 0 20px;
	}

} /* end media query */

/* ---- background */

.bg-dots {
    background-image: radial-gradient(white 1px, transparent 1px);
  	background-size: calc(10 * 1px) calc(10 * 1px);
	background-color: #cffbfd;
    position: relative;
}
.bg-dots::before,
.bg-dots::after {
	content: '';
	display: block;
	width: 100%;
	height: 20px;
	position: absolute;
	left: 0;
}
.bg-dots::before {
	bottom: 100%;
	background-image: radial-gradient(#87f5fb 1px, transparent 1px);
    background-size: calc(10 * 1px) calc(10 * 1px);
}
.bg-dots::after {
	height: 30px;
	top: 100%;
	background-image: radial-gradient(#c3fafd 1px, transparent 1px);
    background-size: calc(10 * 1px) calc(10 * 1px);
}
.bg-dots-green {
	background-image: radial-gradient(white 1px, transparent 1px);
  	background-size: calc(10 * 1px) calc(10 * 1px);
	background-color: #e7f2c5;
	position: relative;
}
.bg-dots-green::before,
.bg-dots-green::after {
	content: '';
	display: block;
	width: 100%;
	height: 20px;
	position: absolute;
	left: 0;
}
.bg-dots-green::before {
	bottom: 100%;
	background-image: radial-gradient(#dfeeb1 1px, transparent 1px);
    background-size: calc(10 * 1px) calc(10 * 1px);
}
.bg-dots-green::after {
	height: 30px;
	top: 100%;
	background-image: radial-gradient(#dfeeb1 1px, transparent 1px);
    background-size: calc(10 * 1px) calc(10 * 1px);
}


/* --- bg panel*/
.bg-panel {
	position: relative;
}
.bg-panel::before {
	content: '';
	width: 95%;
	height: 90%;
	position: absolute;
	/*background: #f3efe6;*/
	background: #e9eef6;
	border-radius: 0 50px 50px 0;
	top: 5%;
	left: 0;
	z-index: 1;
}
.bg-panel.alt::before {
	border-radius: 50px 0 0 50px;
	left: auto;
	right: 0;
}
.bg-panel.special::before {
	height: 91%;
	background: #f1f6e5;
	border-radius: 50px 0 0 50px;
	top: 5%;
	right: 0;
	left: auto;
}
.bg-panel-inner {
	position: relative;
	z-index: 5;
}



/* ---- responsive */
.pc-tiny {
    display: block;
}
.pc-tablet {
	display: block;
}
.tablet-sp {
	display: none;
}
.pc-only {
	display: block;
}
.sp-only {
	display: none;
}
.sp-inline {
	display: none;
}
.tiny-sp-only {
	display: none;
}
.page-content a.sp-link {
    pointer-events: none;
	text-decoration: none;
}

@media screen and (max-width: 767px) {
	.pc-only {
		display: none;
	}
	.sp-only {
		display: block;
	}
	.sp-inline {
		display: inline;
	}
	.page-content a.sp-link {
		pointer-events: auto;
		text-decoration: underline;
	}
}
@media screen and (max-width: 575px) {
	.pc-tablet {
		display: none;
	}
	.tablet-sp {
		display: block;
	}
}
@media screen and (max-width: 480px) {
	.tiny-sp-only {
		display: block;
	}
	.pc-tiny {
        display: none;
    }
}


/*--------------------------- components ----------------------------*/




/*--------------------------- page-header ----------------------------*/

.page-header {
	/*margin-bottom: .5em;*/
	padding-top: 10px;
	padding-bottom: .2em;
	/*border-top: 2px solid #42403d;*/
	/*border-bottom: 4px solid #0492c9;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);*/
	/*align-items: flex-end;*/
	position: relative;
}
.page-header .site-title {
	width: 20%;
    position: absolute;
    top: 10px;
    left: 1rem;
    z-index: 5;
}
.page-header p.tagline {
    font-size: 80%;
    line-height: 1.5;
    /*color: #42403d;*/
    margin: 0;
}
.page-header .navbar-brand {
	width: 100%;
	max-width: 200px;
}

.page-header .main-nav {
	font-size: 0.85rem;
	font-weight: 700;
	width: 100%;
    justify-content: center;
    margin-top: 2em;
}
.page-header .main-nav .nav-link {
    color: #42403d;
}
.page-header .main-nav .nav-link:hover,
.page-header .main-nav .nav-link:focus {
	color: #2455aa;
}
.page-header .contact-nav {
    /*position: absolute;
    top: 10px;
    right: 1rem;*/
}
.page-header .contact-nav {
	font-size: 0.75rem;
	padding-right: 70px
	
}
.page-header .contact-nav .nav-item {
	
}
.page-header .contact-nav .nav-item a {
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0.2em;
	font-weight: 700;
	color: #111;
}
.page-header .contact-nav .nav-item .btn-sm {
    font-size: 0.75rem;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
	border-radius: 3px;
	color: #fff;
	margin-right: 0.3em;
	margin-left: 0.3em;
	margin-top: 0;
	
}
.page-header .contact-nav .nav-item .btn-sm.btn-outline-primary {
	color: #1a5a87;
}
.page-header .contact-nav .nav-item .btn-sm.btn-outline-primary:hover,
.page-header .contact-nav .nav-item .btn-sm.btn-outline-primary:active {
	color: #fff;
}

/*---無料体験レッスンボタン*/
.tl-nav {
	position: absolute;
	right: 0;
    top: 0;
    width: 80px;
    height: 100%;
    background: pink;
}
.tl-btn:link, .tl-btn:visited {
	display: flex;
	flex-direction: column;
	justify-content: center;
    height: 100%;
	text-align: center;
	font-size: .75rem;
	font-weight: bold;
	color: #fff;
	line-height: 1.4;
	background: #74a700;
}
.tl-btn::before {
	font-family: "Font Awesome 5 Free";
    content: "\f51c";
    display: block;
    font-size: 2.5em;
    line-height: 1.6;
    font-weight: 900;
}
.tl-btn:hover, 
.tl-btn:focus,
.tl-btn:active {
	opacity: 1;
	color: #fff;
	text-decoration: none;
	background: #90b933;
}

@media screen and (min-width: 768px) {
	
	.navbar-expand-md .navbar-collapse {
    	flex-direction: column-reverse;
	}
	.navbar-expand-md .main-nav .nav-link {
    	padding-right: 0.75rem;
    	padding-left: 0.75rem;
	}
	.navbar-expand-md .main-nav .nav-item:last-child .nav-link {
		padding-right: 0;
	}
}

@media screen and (max-width: 767px) {
	
	.page-header {
		align-items: center;
        margin-bottom: 0;
	}
    .page-header .navbar-brand {
        width: 170px;
        padding: 0;
        background: none;
    }
    .page-header p.tagline{
        margin: 0;
    }

	.page-header .main-nav {
    	border-top: 3px solid #b2c9d9;
		margin-top: 0;
	}
	.page-header .main-nav li {
		border-bottom: 1px dotted #ccc;
	}
	.page-header .main-nav li:last-child {
		border-bottom: none;
	}
    .page-header .main-nav .nav-link {
        padding: 1.2em 1em .7em;
    }

	.page-header .site-title {
		width: calc(100% - 60px);
        position: static;
	}
	.page-header .contact-nav {
    	position: static;
		margin-bottom: 2em;
		padding-right: 0;
	}
	.page-header .contact-nav .nav-item .btn-sm {
		font-size: 0.85rem;
		padding-top: 1em;
		padding-bottom: 0.8em;
		margin-top: .75em;
	}
	.page-header .contact-nav .nav-item a {
    	margin-top: 1.2em;
	}


	
} /* end media query */

/*--------------------------- main visual ----------------------------*/

.mv {
	margin-bottom: 0;
	position: relative;
	box-shadow: 0px 15px 10px rgba(68,147,147,0.2);
	z-index: 5;
}
/*.mv::after {
	content: '';
	display: block;
	width: 100%;
	height: 20px;
	background: rgba(135,245,251,0.5);
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 5;
}*/
.main-visual {
    position: relative;
}
.main-visual * {
	margin: 0;
    position: relative;
}
.main-visual img {
    /*IE11 hack */
	width: 100%;
	/*box-shadow: 0 0 5px #bbb;*/
}
/*--- mv nav */
.mv-nav-item {
	padding: 0;
}
.mv-nav-item > a {
	padding: .5em 3em .5em 1em;
	font-weight: bold;
	color: #fff;
	background: #ff7f2c;
	display: flex;
    align-items: center;
	height: 100%;
	min-height: 65px;
	position: relative;
}
.mv-nav-item > a:hover {
	text-decoration: none;
}
.mv-nav-item.alt > a {
	background: #afd43d;
}
.mv-nav-item > a::after {
	font-family: "Font Awesome 5 Free";
    content: "\f0a4";
    display: block;
    font-size: 1.5em;
    font-weight: 900;
	position: absolute;
    right: 0.7em;
    margin: auto;
    top: 0;
    bottom: 0;
    height: 40px;
    opacity: .7;
}
.mv-nav-item:first-child {
	border-right: 3px solid #fff;
}
.mv-nav-item:last-child {
	border-left: 3px solid #fff;
}

/*.mv-catch {
    position: absolute;
    font-size: 2rem;
    font-size: clamp(1.3rem, 3.3vw, 2rem);
    font-weight: 700;
    top: 30%;
    left: 7%;
}
.mv-catch span {
    display: inline-block;
    background: white;
    margin-bottom: 0.3em;
    padding: 0 0.7em;
}*/
/*
.mvlogo {
    position: relative;
    margin-top: -20%;
}

.mvlogo-catch {
    padding: 3.3em 1.5em 0;;
    width: 50%;
    max-width: 445px;
    background: url("../images/bg_mvlogo.png") no-repeat top center;
    background-size: contain;
    margin: 0 auto;
    font-size: 1rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
    color: #75909F;
}
.mvlogo small {
    font-weight: 700;
    margin-bottom: 1em;
}
.mvlogo-logo {
    max-width: 60%;
    margin-bottom: .5em;
}
*/



@media screen and (max-width: 767px) {
    .mv {
		/*margin-bottom: 3em;*/
	}
    .main-visual h2 {
        /*margin: 0 -20px;*/
    }
    .mvlogo-catch {
        width: 60%;
    }
	
	.mv-nav-item > a {
    	padding: 0.5em 1em;
	}
	.mv-nav-item > a::after {
		content: '';
	}
	.mv-nav-item > a i {
		font-size: 1.5em;
		opacity: 0.7;
		margin-left: .2em;
	}
	
} /* end media query */

@media screen and (max-width: 480px) {
    .mv-catch {
        top: 9%;
        left: 3%;
    }
	.mv-nav-item > a {
    	font-size: 12px;
	}
    /*.mvlogo {
        margin-top: -40%;
    }
    .mvlogo-catch {
        width: 70%;
        padding-top: 2.3em;
    }*/
    
	
} /* end media query */

/*--------------------------------------------------------------
# contents-area
--------------------------------------------------------------*/

/*--------------------------- general ----------------------------*/

.lg-section-header {
    background-image: url(../images/bg_recommended_02_lft.png), url(../images/bg_recommended_02_rght.png);
    background-repeat: no-repeat;
    background-size: 215px;
    background-position: left top, right top;
    background-color: #0492c9;
    position: relative;
    padding: 3em 1em;
    margin-bottom: 3em;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.15);
}
.lg-section-header::after {
    content: "";
    background: #a0e4dd;
    width: 100%;
    height: 6px;
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    
}
@media screen and (max-width: 767px) {
	.lg-section-header{
		background-size: 98%;
	}
}

.course-header {
    padding: 1em 1em 2em;
}

/*.lg-section-title {
    text-align: center;
    color: #fff;
    font-size: 3rem;
    margin: 0;
    line-height: 1.2;
    position: relative;
    z-index: 5;display: flex;
    justify-content: center;
    align-items: center;
}
.lg-section-title small {
    font-size: 50%;
    display: block;
    line-height: 1.4;
}
.lg-section-title::before,
.lg-section-title::after {
    content: '';
    display: block;
    width: 90px;
    height: 57px;
    margin: 0 .7em;
}*/

.section-main {
	/*padding: 3em 0;*/
	position: relative;
	margin-bottom: 5em;
}
.section-header {
	/*display: flex;
	align-items: center;*/
	width: 100%;
	max-width: 1210px;
	padding: 0 35px;
	margin: 0 auto 3em;
	
	text-align: center;
}
.section-header::before {
    /*font-family: "Font Awesome 5 Free";
    content: "\f1b3";
    font-weight: 900;
	font-size: 120%;
    color: #ff7f2c;
    display: block;*/
	
	/*content: "";
    width: 50px;
    height: 51px;
    background: url("../images/icon_logo.png") no-repeat center;
    background-size: contain;
    display: block;*/
}
.section-title {
    /*text-align: left;*/
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: .08em;
	/*padding-left: .6em;
	line-height: .5;*/
	
	text-align: center;
	display: inline-block;
	border-bottom: 8px solid #91aad4;
	line-height: 1;
	padding: 0 0.6em 0.6em;
}
.section-title > * {
	/*background: #42403d;
	color: #fff;
	padding: .5em .5em .6em;
	*/
	display: inline-block;
	
	color: #de4e2a;

}
.section-title small {
    font-size: 80%;
    letter-spacing: 0;
	margin-bottom: .4em;
}
.section-title .eng {
    
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 700;
    margin-top: 0.5em;
    color: #90b933;
}
.breakline::before {
    content: '';
    /*width: 60%;
    height: 6px;
	background: #b2c9d9;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	margin: auto;*/
	
	width: 50px;
    height: 51px;
    background: url(../images/icon_logo.png) no-repeat center;
    background-size: contain;
    display: block;
	margin: 0 auto 3em;
}



/*.section-title.alt {
	background: #f3f3f3;
}*/

/*.section-title::before {
    font-family: "Font Awesome 5 Free";
    content: "\f004";
    font-weight: 900;
    color: #00ab38;
    display: block;
    margin-bottom: .3em;
}*/

/*.section-title.block {
    
}
.section-title.block::before {
    content: "";
    position: absolute;
    width: 72px;
    height: 60px;
    background: url(../images/ttl_section_header.png) no-repeat;
    background-size: contain;
    left: -30px;
    top: -20px;
}*/

/*---- Q&A, 運営者情報のタイトル*/

.section-title-sub {
    text-align: center;
    color: #2455aa;
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: .1em;
    margin-bottom: 1em;
}

.typeset-tight {
    letter-spacing: -0.05em;
}



.text-section {
    max-width: 1000px;
    margin: 0 auto;
}
.sub-section {
    margin-bottom: 3em;
}
.sub-section:last-of-type {
    margin-bottom: 0;
}

.title-marker span {
    background: linear-gradient(transparent 65%,#ffeb3b 0);
}
/*.title-subsection::before,
.title-subsection::after {
    font-family: "Font Awesome 5 Free";
    content: "\f005";
    font-weight: 900;
    font-size: 60%;
    margin-right: 7px;
    margin-left: 7px;
    position: relative;
    top: -5px;
    opacity: .5;
}*/

.title-subsection {
    font-size: 1.7rem;
    line-height: 1.4;
	margin-bottom: 1em;
}
.title-subsection::before {
	content: '————';
    font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    letter-spacing: -.2em;
    margin-right: .5em;
}
/*.title-subsection > span {
    display: inline-block;
    position: relative;
	border-top: 2px dashed #42403d;
    border-right: 2px dashed #42403d;
    border-left: 2px dashed #42403d;
    border-radius: 8px 8px 0 0;
    padding: 0.5em 1em 0.3em 1em;
    background: linear-gradient(#f3f9e2, #f3f9e2, #fff);
}
.title-subsection.alt > span {
	background: linear-gradient(#eff6d8, #e7f2c5 80%);
}
.title-subsection > span::before {
	font-family: "Font Awesome 5 Free";
	content: '\f06a';
    color: #ff7f2c;
    font-size: 110%;
    margin-right: 8px;
}
.title-subsection > span::after {
	content: '';
    display: block;
    width: calc(100% + 3em);
    height: 5px;
    border-bottom: 2px dashed #42403d;
    position: absolute;
    bottom: 0;
    left: -1.5em;
    z-index: -5;
}*/

/*.title-subsection span::before {
    content: "";
    position: absolute;
    width: 28px;
    height: 26px;
    background: url(../images/ttl_mid.png) no-repeat;
    background-size: contain;
    left: -30px;
    top: -20px;
}*/


.lead-text {
    font-size: 1rem;
    margin-bottom: 3em;
    /*text-align: center;*/
}
.lead-text em {
	color: #de4e2a;
}
.home-card {
    background: #fff;
   /* border-radius: 15px;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.15);*/
    display: block;
	overflow: hidden;
	height: 100%;
}

@media screen and (max-width: 767px) {
    .lg-section-header {
        background-size: 25%;
    }
    .section-header {
        padding: 0 20px;
    }
    .lead-text {
        font-size: 1rem;
    }
    /*.lg-section-title {
        font-size: 5vw;
    }
    .lg-section-title::before,
    .lg-section-title::after {
        width: 10%;
        margin: 0 0.5em;
    }*/
	
} /* end media query */


@media screen and (max-width: 575px) {
    
	.section-main {
		margin-bottom: 4em;
	}
    .section-title,
    .section-title-sub {
        font-size: 1.5rem;
        letter-spacing: .05em;
    }
    .section-title small {
        font-size: 70%;
    }
    .section-title.block {
        padding: 30px 1em 25px;
    }
    .section-title.block::before {
        /*width: 60px;
        left: 10px;
        top: -30px;*/
    }
    .sub-section {
        margin-bottom: 3em;
    }
    .title-subsection::before, 
    .title-subsection::after {
        /*content: "";*/
    }
    /*.lg-section-header {
        padding: 1.5em 1em;
    }
    .lg-section-title {
        font-size: 6.5vw;
    }
    .lg-section-title small {
        font-size: 1rem;
    }*/
    .title-subsection {
        font-size: 1.3rem;
		/*padding: 0 20px;
    	overflow: hidden;*/
    }
	.title-subsection > span::after {
		bottom: 1px;
	}
	
} /* end media query */

/*--------------------------------------------------------------
# lead (intro-catch)
--------------------------------------------------------------*/

.intro-catch {
	padding: 4em 20px 3em;
	background: url("../images/bg_logo.png") no-repeat 2em 80% #2455aa;
	background-size: 22%;
	/*background-image: radial-gradient(#bfdd64 1px, transparent 1px);
    background-size: calc(10 * 1px) calc(10 * 1px);*/
	position: relative;
	margin-bottom: 5em;
}
/*.intro-catch::after {
	content: '';
	width: 100%;
	height: 30px;
	background: rgba(175,212,61,0.5);
	background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: calc(10 * 1px) calc(10 * 1px);
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 5
}*/
.intro-catch h2 {
	text-align: center;
	color: white;
	margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
	.intro-catch {
		background-size: 45%;
	}
	.intro-catch h2 {
		font-size: clamp(1.2rem, 5.2vw, 1.8rem);
	}

} /* end media query */

@media screen and (max-width: 480px) {
	.intro-catch {
		background-size: 65%;
	}
} /* end media query */
.slogan {
    text-align: center;
    /*font-family: "Rounded Mplus 1c";*/
    margin-bottom: 2em;
    font-weight: 700;
}
.slogan p {
	font-size: 1.2rem;
	line-height: 2;
	color: #d5e5b2;
}
.slogan strong {
    display: block;
    font-size: 150%;
    font-weight: bold;
    line-height: 1.8;
}
.lead em {
   /* color: #ed1e79;*/
}
.plan-intro {
    /*margin-top: 3em;
    margin-bottom: 3em;*/
}

.plan-list {
    justify-content: center;
}
.plan-list > li {
    margin-bottom: 1em;
}
.plan-card {  
    /*background-image: url(../images/bg_dot_blue_02.png);
    background-size: 10px 10px;*/
    
    height: 100%;
    padding: 1.5em;

}
.plan-card dl {
    margin-bottom: 0;
}
.plan-card-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 1em;
    font-size: 120%;
    color: #00757f;
}
.icon-flag {
    margin-bottom: 1em;
}
.icon-flag img {
    display: block;
    margin: 0 8px;
}



/*-- プラン組み合わせ例*/
.plan-mix {
    text-align: center;
    position: relative;
}
.plan-mix::before {
    font-family: "Font Awesome 5 Free";
    content: "\f06a";
    font-weight: 900;
    color: #de6c31;
    font-size: 70px;
    display: block;
    width: 70px;
    height: 70px;
    line-height: 1;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 0;
    margin: auto 0;
}
.plan-example {
    margin-top: 1em;
    font-weight: bold;
    
    display: inline-block;
    text-align: left;
}
.plan-example li {
    margin-bottom: .3em;
    padding-left: .3em;
    padding-left: .5em;
}
.plan-example em {
    color: #00a0e8;
}
.plan-example strong {
    font-size: 140%;
    color: #67b519;
}
.plan-example .total {
    border-top: 1px solid #666;
    display: inline-block;
    padding-top: .2em;
    padding-right: .5em;
}

@media screen and (max-width: 991px) {
    .plan-card p {
        font-size: 1.4vw;
    }
	
} /* end media query */

@media screen and (max-width: 767px) {
	.slogan p {
		font-size: 1.1rem;
	}
    .plan-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .plan-card p {
        font-size: 13px;
    }
    .slogan {
        font-size: 3.3vw;
    }
    .slogan strong {
        font-size: 120%;
    }
	
} /* end media query */

@media screen and (max-width: 480px) {
    .slogan p {
        font-size: 1rem;
    }


    .plan-mix::before {
        content: '';
    }
} /* end media query */


/*--------------------------------------------------------------
# course-intro
--------------------------------------------------------------*/
.course-intro-wrap {
	/*background: #f3f3f3;*/
}
.course-intro {
    padding-bottom: 2em;
	position: relative;
}
.course-intro-kids {
    padding-top: 3em;
}
.course-intro-purpose {
    padding-top: 3em;
}

.top-border {
	border-top: 3px dashed #ffc107;
}
.btm-border {
	border-bottom: 3px solid #049e80;
}

/*--------------------------- onsite-prices ----------------------------*/

.onsite-prices {
    justify-content: center;
    margin-bottom: 2em;
}
.onsite-prices > li {
    margin-bottom: 1em;
}
.price-card {
    padding: 25px;
    height: 100%;
    /*font-size: 1rem;*/
}
.plan-intro-purpose {
    max-width: 700px;
    margin-bottom: 3em;
}
.price-card h5 {
    text-align: center;
    font-size: 1.3rem;
    color: #00757f;
    margin-bottom: 1em;
    font-weight: bold;
}
.price-card h5 em {
    font-size: 125%;
    white-space: nowrap;
}
.price-list > dt {
    float: left;
    width: 9em;
    clear: both;
    /*line-height: 1.2;*/
}
.price-list > dd {
    /*padding-left: 8em;*/
    margin-bottom: 0;
	float: left;
}
.plan-price {
    margin-left: 2em;
    white-space: nowrap;
    display: inline-block;
    line-height: 1.2;
}
.price-list em,
.price-list strong {
    font-size: 180%;
    position: relative;
    bottom: -2px;
    margin: 0 2px;
}
.price-list strong {
    color: #ed1e79;
}
.price-list .nested dt {
    font-weight: normal;
    float: left;
    width: 100px;
    width: 120px;
    margin-top: 1em;
    font-size: 90%;
}

.plan-description {
    font-size: 14px;
    margin-bottom: 2em;
    line-height: 1.7;
}
.plan-description dt {
    width: 160px;
    float: left;
    clear: left;
}
.plan-description dt >span {
    background: #67b519;
    color: white;
    font-weight: bold;
    line-height: 2;
    padding: 2px 10px 0;
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 7px;
}
.plan-description dd {
    padding-left: 160px;
    padding-top: .4em;
    margin-bottom: .8em;
}

.plan-intro-purpose .price-list {
    margin-bottom: 0.4em;
	line-height: 1.4;
}
    
@media screen and (max-width: 991px) {
    .price-card h4 {
        margin-bottom: .5em;
    }
    .price-card h4 em {
        display: block;
    }
    .price-list .nested dd {
        margin-bottom: 0;
        line-height: 1;
    }
	
} /* end media query */

@media screen and (max-width: 767px) {
	
    .price-card {
        height: auto;
        /*width: 100%;*/
        max-width: 600px;
        margin: 0 auto 1em;
    }
    .price-list .nested dt {
        margin-top: .4em;
    }
    .price-list .nested dd {
        line-height: 1.3;
    }
    
} /* end media query */

@media screen and (max-width: 575px) {
    .course-intro-kids,
    .course-intro-purpose {
        background-size: 36%;
    }
    .plan-description dt {
        float: none;
    }
    .plan-description dd {
        padding-left: 1em;
    }
    .business-hour dt {
        float: none;
    }
    .business-hour dd {
        margin-left: 0;
    }
    .price-list > dt {
        width: 8em;
    }
	.price-list > dd {
		padding-left: 0;
		margin-bottom: 0;
		float: right;
	}
	.plan-price {
		margin-left: 0;
		white-space: normal;
		display: inline;
		line-height: inherit;
	}
	
} /* end media query */


/*--------------------------- suitable-for ----------------------------*/
.suitable-for {
    display: flex;
}
.suitable-for h3 {
    background: #ff9100;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-bottom: 0;
    border-radius: 15px;
    font-size: 1.4rem;
    width: 23%;
}
.suitable-list {
    font-weight: bold;
    padding-top: .5em;
    margin-left: 3em;
    font-size: 105%;
    width: 77%;
}
.suitable-list >li {
    margin-bottom: .5em;
    padding-left: 28px;
    
}
.suitable-list > li::before {
    content: "\f00c";
    font-size: 110%;
    top: -0.1em;
}

@media screen and (max-width: 767px) {
    .suitable-list {
        margin-left: 1em;
    }
	
} /* end media query */

@media screen and (max-width: 575px) {
    .suitable-for {
        display: block;
    }
    .suitable-for h3 {
        padding: 10px 20px;
        font-size: 1.1rem;
        width: auto;
        display: inline-block;
        margin-bottom: 0.4em;
    }
    .suitable-list {
        font-size: 96%;
        width: 100%;
        padding-left: 0;
    }
	
} /* end media query */

/*--------------------------- course-list ----------------------------*/

.course-category {
    display: inline-block;
    /*font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
    font-size: 16px;
    font-weight: bold;
    padding: 5px 10px 5px;
    border-radius: 8px;
    background: #004b7f;
    color: #fff;
    position: absolute;
    left: 25px;
    top: -24px;
    z-index: 2;
}



.course-item {
    height: 100%;
    position: relative;
    /*border: 2px solid #42403d;*/
	border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}
.course-item h4 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 1em;
    font-size: 1.2rem;
    position: relative;
    color: #ed1e79;
}
.course-special h4,
.course-special02 h4 {
    
}
.course-item h5 {
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 1em;
    color: #004b7f;
}

.course-item img {
    /*border-top-left-radius: 15px;
    border-top-right-radius: 15px;*/
    margin-bottom: 0;
}

.course-item-description {
    padding: 2em 20px 50px;
    /*position: relative;*/
	background: #fff;
}
.course-item-description em {
    color: #004b7f;
}


.course-item .btn {
    font-size: .8rem;
    font-weight: bold;
    /*border-radius: 8px;*/
    /*position: absolute;
    right: 20px;
    bottom: 20px;*/
    text-decoration: none;
	margin-bottom: 0.6em;
}
.label-special {
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    background: #de4e2a;
    color: #fff;
    padding: 5px 10px 3px 5px;
    border-radius: 5px;
    position: absolute;
    right: 10px;
    top: 53%;
    text-align: center;
	line-height: 1.2;
}
.label-special a {
    text-decoration: none;
    color: #fff;
}
.label-special::before {
    font-family: "Font Awesome 5 Free";
    content: "\f005";
    font-weight: 900;
}

.course-item-plan {
    padding: 20px 20px 60px;
    background: #edf1f3;
}
.course-item-plan h5 {
    letter-spacing: .5em;
}
/*.course-item-plan .price-list > dt {
    width: 115px;
}
.course-item-plan .price-list > dd {
    padding-left: 115px;
    margin-bottom: 0;
}*/
.price-list .plan-feature {
    padding-left: 0;
    margin-bottom: .8em;
}
.plan-feature .badge {
    font-size: 11px;
    border-radius: 6px;
    padding: 0.5em 0.6em;
    margin-bottom: .4em;
}
.plan-feature .badge-success {
    color: #fff;
}
.course-option h6 {
    font-weight: bold;
    font-size: 1.05rem;
    margin-bottom: .2em;
}

/*--- course-special レイアウト */

.course-list > li {
    margin-bottom: 40px;
    position: relative;
}
.course-special-list > li {
    margin-bottom: 4em;
}
.course-special {
    display: flex;
    justify-content: flex-end;
    background: url("../images/course_intro_bg_11.jpg") no-repeat;
    background-position: left top;
   background-size: contain;
}
.course-special.item-02 {
    background: url("../images/course_intro_bg_14.jpg") no-repeat;
    background-size: contain;
}
.course-special.item-03 {
    background: url("../images/course_intro_bg_01b.jpg") no-repeat;
    background-size: contain;
}
.course-special.item-04 {
    background: url("../images/course_intro_bg_07.jpg") no-repeat;
    background-size: contain;
}
.course-special.item-05 {
    background: url("../images/course_intro_bg_13.jpg") no-repeat;
    background-size: contain;
}
.course-special-pt {
    width: 35%;
    position: relative;
    min-width: 320px;
}
.course-special .course-item-description {
    /*padding-top: 3.5em;*/
    padding-bottom: 1.5em;
    /*background: #fff;*/
}
.price-list.long {
    line-height: 1.2;
}
.price-list.long > dt {
    float: none;
    width: 100%;
}
.price-list.long > dd {
    padding-left: 1em;

}

/*---course-special02 横並びバージョン*/

.course-special-list02 {
    margin-bottom: 3em;
}
.course-special02 {
    background: #edf1f3;
}
.course-special-list02 > li  {
    margin-bottom: 0;
}
.course-special-list02 .course-item-description {
    padding: 2em 20px 1em;
}
.course-special-list02 .price-list {
	margin-bottom: 0.5em;
}

@media screen and (max-width: 992px) {
    .course-special.item-02 {
        background-position: -140px top;
    }
    .course-special.item-03 {
        background-position: -120px top;
    }
    .course-special.item-04 {
        background-position: -100px top;
    }
	
} /* end media query */


@media screen and (max-width: 767px) {
    .course-list {
        padding: 0 20px;
    }
    .course-special {
        display: block;
        background: #edf1f3;
    }
    .course-special-pt {
        width: 100%;
        min-width: auto;
    }
    .course-item-plan {
        border-radius: 0 0 15px 15px;
    }
    .course-special-list > li:last-child {
        margin-bottom: 0;
    }
	
	.course-special-list02 > li {
		max-width: 500px;
		margin: 0 auto 4em;
	}
	
} /* end media query */
/*.course-special-list02 li:not(:last-child) .course-item-description {
    padding-bottom: 3.7em;
}*/


@media screen and (max-width: 575px) {
    
    .course-list.simple > li {
        max-width: 380px;
        margin: 0 auto 4em;
    }
    .home-course-intro .course-list > li {
        max-width: 460px;
    }
    
    
} /* end media query */

    

/*--------------------------- course-intro: case別リスト ----------------------------*/
.corse-list-by-case {
	border-top: 1px dashed #42403d;
	padding-top: 2em;
}

.case-item {
	margin-bottom: 2em;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dashed #42403d;
}
.case-item:last-child {
	border-bottom: none;
}
.case-title {
	width: 10em;
	font-size: 1.1rem;
	color: #2455aa;
}
.case-title::before {
	font-family: "Font Awesome 5 Free";
    content: '\f06a';
    color: #de4e2a;
    font-size: 140%;
    margin-right: 8px;
	display: block;
}
.case-course-list {
	width: calc(100% - 11em);
}
.case-course-item {
	margin-bottom: 2em;
}
.case-course-item dl {
	/*display: flex;
    flex-direction: column;*/
    height: 100%;
	position: relative;
	margin-bottom: 1em;
	padding-top: .5em;
}
.case-course-item dt {
	font-size: .85rem;
	line-height: 1.4;
	color: #fff;
	background: #42403d;
	position: absolute;
	top: -1em;
    left: -1em;
	z-index: 5;
	padding: 0.4em .6em .3em;
}
.case-course-item a {
	/*display: block;*/
}
.case-course-item a:hover {
	text-decoration: none;
}
.course-name {
	margin-bottom: 0;
	padding: .5em;
	text-align: center;
	color: #de4e2a;
	font-weight: bold;
	font-size: .9rem;
	line-height: 1.4;
}
.case-course-link {
	text-align: center;
	margin-bottom: .2em;
}

/*-- bg special rule */
.course-intro .bg-panel::before {
	border-radius: 0 50px 50px 0;
	right: auto;
	left: 0;
	top: 0;
    height: 95%;
}

@media screen and (max-width: 767px) {
	.case-item {
		flex-direction: column;
	}
	.case-title {
		width: 100%;
		margin-bottom: 2em;
	}
	.case-title::before {
		display: inline;
	}
	.case-course-list {
		width: 100%;
		margin: 0;
	}

} /* end media query */
@media screen and (max-width: 575px) {
	
	.case-course-item {
		max-width: 350px;
		margin: 0 auto 2em;
	}

} /* end media query */


/*--------------------------------------------------------------
# features
--------------------------------------------------------------*/

.features {
    background-color: #e5f9f1;
    padding-bottom: 2em;
}
.features h3 {
    font-size: 1.4rem;
    margin-bottom: .5em;
    color: #f26100;
    letter-spacing: -0.05em;
}
.features p {
    margin-bottom: .5em;
}
.features-list {
    counter-reset: my-counter;
	margin-bottom: 4em;
}
.features-list strong {
    color: #0492c9;
    font-weight: bold;
    background: linear-gradient(transparent 40%, #FFF500 41%, #FFF500 85%, transparent 0);
}
.features-list em {
    color: #0492c9;
    font-weight: bold;
}

.features-item {
    margin-bottom: 2em;
    padding: 2em 3em;
    border-radius: 15px;
    background: #fff;
    border: 4px solid #0492c9;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.features-item:nth-child(even) {
    /*background: url("../images/bg_bluegrid.png");
    background-size: 13px 13px;*/
    /* background: #ebf5fb; */
}
.features-item > .row {
    align-items: center;
    justify-content: space-between;
}
.features-item:nth-child(even) > .row {
    flex-direction: row-reverse;
}
.features-item .text-box {
    position: relative;
    z-index: 2;
    padding-left: 3.5em;
    margin-top: 1em;
    width: 73%;
}
.features-item .text-box::before {
    content: counter(my-counter);
    counter-increment: my-counter;
    color: #f8b080;
    font-weight: bold;
    font-size: 5em;
    display: block;
    position: absolute;
    left: 0;
    top: -0.5em;
    z-index: -1;
    font-family: "Rounded Mplus 1c";
}

.features-list .pict-box {
    width: 25%;
}
.features-list .pict-box img {
    border-radius: 50%;
    border: 4px solid #049e80;
    filter: drop-shadow(1px 1px 5px rgba(0,0,0,0.15));
}
.features-item:nth-child(even) img {
    /* border-color: #154e86; */
}
.feature-figure {
    margin-top: 1.5em;
}

@media screen and (max-width: 767px) {
    .features {
        background-size: 25%;
    }
    .features-item {
        padding: 1.5em;
    }
	
} /* end media query */

@media screen and (max-width: 575px) {
    
    .features h4 {
        font-size: 1.15rem;
    }
    .features-item {
        display: block;
        padding: 3em 2em 2em;
    }
    .features-item .text-box {
        width: 100%;
        padding-left: 0;
        margin-bottom: .6em;
    }
    .features-item .text-box::before {
        font-size: 3.5em;
        top: -1.2em;
    }
    .features-item .pict-box {
        max-width: 200px;
        width: 80%;
        margin: 0 auto;
    }
    .feature-figure {
        margin-left: -15px;
        margin-right: -15px;
    }
	
} /* end media query */


/*------ features 学習時間チャート*/
.wlesson-diagram h4 {
    font-size: 1.2rem;
    margin-bottom: .5em;
    padding-left: 1em;
    text-align: center;
    color: #049e80;
    letter-spacing: -.03em;
}
.wlesson-diagram h4 b {
    font-weight: bold;
    color: #0492c9;
    font-size: 130%;
    margin: 0 2px;
}
.wlesson-diagram h4 .emphasis {
    margin-top: -.7em;
    display: block;
}
.wlesson-diagram h4 strong {
    font-size: 200%;
    position: relative;
    top: 5px;
}
.wlesson-chart {
    background: #fff;
    padding: 1.5em;
    border-radius: 10px;
    margin-bottom: 0;
    /*box-shadow: 1px 1px 5px rgba(0,0,0,0.15);*/
    
}
.wlesson-chart-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1em;
}
.wlesson-table {
    margin-bottom: 0;
    /*width: 47%;*/
}
.class-only-table {
    /*width: 38%;*/
    width: 27%;
}
.plus-online-table {
    /*width: 55%;*/
    width: 65%;
}
.wlesson-table caption {
    font-weight: bold;
    color: #343434;
    text-align: left;
    line-height: 1.2;
    margin-bottom: 5px;
    caption-side: top;
    font-size: 1rem;
    padding: 0;
}
/*.class-only-table caption {
    padding-top: 1.1em;
}*/
.wlesson-table th, 
.wlesson-table td {
    /*width: 50%;*/
    padding: 8px 5px;
    border: 1px solid #999;
    text-align: center;
    vertical-align: middle;
    font-size: .93rem;
}
.class-only-table th,
.class-only-table td {
    width: 50%;
}
.plus-online-table th,
.plus-online-table td {
    width: 43%;
}
.wlesson-table .trans {
    background: none;
    border: none;
    width: 14%;
    padding: 0;
}
.trans i {
    font-size: 40px;
    color: #9ed7f0;
    position: relative;
    top: -10px;
}

.wlesson-table th {
    background: #e6f4fa;
}
.wlesson-table td {
    line-height: 1.4;
}
.wlesson-table td strong {
    font-size: 200%;
    color: #0492c9;
    line-height: 1;
    position: relative;
    top: 5px;
    margin: 0 .1em;
    background: transparent;
}
.wlesson-table td strong.red {
    color: #f26100;
    background: transparent;
}
.plus-sign {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    color: #9ed7f0;
}
.wlesson-chart-part:first-child .plus-sign {
    padding-top: 40px;
}
.plus-online-table th:last-child {
    background: #f26100;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .class-only-table caption {
        padding-top: 0.9em;
        padding-bottom: .2em;
    }
    .plus-sign,
    .trans i {
        font-size: 5vw;
    }
	
} /* end media query */

@media screen and (max-width: 575px) {
    
    .wlesson-chart {
        margin-left: -15px;
        margin-right: -15px;
    }
    .wlesson-chart-part > * {
        margin-bottom: .5em;
    }
    .wlesson-diagram h4 {
        font-size: 1rem;
    }
    .wlesson-chart-part {
        display: block;
    }
    .wlesson-table {
        width: 100%;
        
    }
    .wlesson-table span.tablet-sp {
        display: inline;
    }
    .wlesson-table caption.tablet-sp {
        display: table-caption;
    }
    .wlesson-table thead.tablet-sp {
        display: table-header-group;
    }
    
    .class-only-table caption::before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f0a4";
        color: #e70012;
        font-size: 140%;
        margin-right: 5px;
    }
    .wlesson-chart-part:first-child .plus-sign {
        padding-top: 0;
    }
	
} /* end media query */

.wlesson-chart h5{
	font-weight: bold;
    color: #008e06;
	font-size: 1rem;
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.wlesson-chart h5:not(:first-child){
	margin-top: 2em;
}
.wlesson-chart-box p{
	margin: 0;
}
.wlesson-chart-time{
	border: 1px solid #999;
    padding: 10px 20px;
	text-align: center;
}
.wlesson-chart-time .arrow{
	padding: 0 1em;
}
.wlesson-chart-time .arrow:before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #808080;		
}
.wlesson-chart-plus{
	text-align: center;
	font-size: 150%;
	color: #ffc107;
}
.wlesson-chart-time strong{
    font-size: 200%;
    color: #008e06;
    line-height: 1;
    position: relative;
    top: 5px;
    margin: 0 .1em;
}
.wlesson-chart-online{
	color: #ff5722;
	font-size: 90%;
}
.wlesson-chart-arrow{	
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
}
.wlesson-chart-arrow:before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 400%;
    color: #ffc107;
    line-height: 0.8;
}
.wlesson-chart-finish{
	display: flex;
	justify-content: center;
	align-items: center;
    background: #008e06;
    color: #FFF;
	padding: 20px;
}
.wlesson-chart-finish p{
	line-height: 1;
}
.wlesson-chart-finish.online p{
	font-size: 90%;
}
.wlesson-chart-finish strong{
	font-size: 200%;
	color: #FFDD00;
	line-height: 1;
    position: relative;
    top: 5px;
    margin: 0 .1em;
}

.wlesson-chart-time span {
	white-space: nowrap;
	display: inline-block;
}
.wlesson-chart-time .notes {
	position: relative;
	margin-bottom: 1em;
}
.wlesson-chart-time .notes::after {
	content: '(1日15分ｘ7日)';
	font-size: 80%;
	position: absolute;
	display: inline-block;
	left: 0;
	top: 130%;
	right: 0;
}


@media screen and (min-width: 768px) {
	.wlesson-chart-box p{
		line-height: 1;
	}
	
	.wlesson-chart-box{
		display: flex;
		justify-content: space-between;
	}
	.wlesson-chart-time{
		width: 60%;
		position: relative;
		
	}
	
	.wlesson-chart-time .arrow:before{
		content: "\f061";
	}
	.wlesson-chart-arrow:before{
		content: "\f0da";
	}
	.wlesson-chart-arrow{
		width: 10%;
	}
	.wlesson-chart-finish{
		width: 30%;
	}
} /* end media query */

@media screen and (max-width: 767px) {
	.wlesson-chart-time span{
		display: block;
	}
	.wlesson-chart-time .arrow:before{
		content: "\f063";
	}
	.wlesson-chart-arrow:before{
		content: "\f0d7";
	}
	.wlesson-chart-time p.bk_sp{
		background: #e9e9e9;
    	padding: 5px;
	}
	.wlesson-chart-time p.bk_sp.wlesson-chart-online{
		background: #fff8b9;
	}
	.wlesson-chart-time .notes::after {
    	top: 90%;
	}
} /* end media query */

/*--------------------------------------------------------------
# features 02 スッキリバージョン
--------------------------------------------------------------*/
.features02 {
  /*padding-top: 4em;*/
}
.features02-list {
    justify-content: space-around;
}
.features02-item {
    margin-bottom: 2em;
}
.features02-title {
    font-size: 1.2rem;
    display: inline-block;
    background: #00ab38;
    color: white;
    padding: 0.5em;
    margin-top: -1.5em;
    margin-left: -.7em;
    margin-bottom: 1em
}
.features02-title.alt {
    background: #9ED800;
}
.features02-list p {
}
.features02-item em {
    /*background: linear-gradient(transparent 35%,#87f5fb 0);*/
	color: #2455aa;
}

/*--- card version */
.feature-card {
	/*border: 2px solid #42403d;*/
	padding: 1.5em;
	border-radius: 25px;
	position: relative;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}
.feature-card::before {
	content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    border: 35px solid transparent;
    border-top: 35px solid #42403d;
    border-left: 35px solid #42403d;
    width: 0;
    height: 0;
}
.feature-num {
	color: white;
    position: absolute;
    top: 8px;
    left: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}
.card-icon {
    margin: 0 auto 1em;
    width: 100px;
}
.feature-card-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 0.5em;
    font-size: 1.1rem;
    color: #de4e2a;
}
.feature-card.special {
	padding: 0;
	display: flex;
}
.feature-card.special .text-box {
	padding: 3em 1.5em 1em 2em;
}
.feature-card.special .feature-card-title {
	text-align: left;
	padding-left: 1em;
}
.feature-card.special .feature-card-title em {
	font-size: 150%;
	color: #de4e2a;
}
.feature-card.special .pict-box {
	background: url("../images/features_m2m_bg.jpg") no-repeat 20% top;
	background-size: cover;
}


@media screen and (max-width: 768px) {
    
    .features02-item {
        max-width: 550px;
    }
	.feature-card.special {
		display: block;
	}
	.feature-card.special .text-box {
		padding: 2em 1.5em;
	}
	
} /* end media query */

/*--------------------------------------------------------------
# comparison
--------------------------------------------------------------*/

.comparison {
    /*padding: 3em 0;*/
}
.comparison-table-wrap {
    margin-bottom: 2em;
}
.comparison-table {
    border-collapse: separate;
    border-spacing: 10px;
    table-layout: fixed;
    width: 100%;
}
.comparison-table td, 
.comparison-table th {
    padding: 1em;
    text-align: center;
}
.comparison-table th {
    color: #fff;
    background: #42403d;
	border-radius: 10px;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}
.comparison-logo {
	width: 50%;
	min-width: 100px;
	max-width: 180px;
}
.comparison-table td {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}
.comparison-table thead th:first-child,
.comparison-table thead th:last-child {
    width: 40%;
    color: #fff;
    background: #e9a624;
}
.comparison-table em {
    /*background: linear-gradient(transparent 35%,#87f5fb 0);*/
	color: #de4e2a;
}

@media screen and (max-width: 480px) {
	.comparison-table-wrap {
		margin-left: -5px;
		margin-right: -5px;
	}
	.comparison-table {
		border-spacing: 5px;
		font-size: .85rem;
	}

} /* end media query */


/*--------------------------------------------------------------
# home-plan
--------------------------------------------------------------*/

.home-plan,
.home-course-intro {
    padding-bottom: 50px;
    background-image: url("../images/bg_dot_blue_02.png");
    background-size: 10px 10px;
}
.home-course-intro {
    padding-top: 50px;
    margin-bottom: 2em;
}

/*--------------------------------------------------------------
# poster-figure
--------------------------------------------------------------*/

.poster-figure {
	padding-top: 3em;
}
.intro {
	/*padding: 2em 50px 0;*/
	margin-bottom: 30px;
    position: relative;
}
.poster-alert {
    display: inline-block;
    background: #008e06;
    padding: 1.5em 2em;
    position: absolute;
    text-align: center;
    font-weight: bold;
    color: #fff;
    border-radius: 50%;
    bottom: 93%;
    left: 8em;
    transform: rotate(-5deg);
}
.poster-alert::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #008e06;
  z-index: 0;
}

.intro figure {
    width: 35%;
    float: right;
	margin-left: 20px;
	position: relative;
	margin-top: 2em;
}
.intro figure figcaption {
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	margin-top: 5px;
}
/*.intro h3 {
    font-size: 28px;
    font-weight: bold;
    color: #008e06;
    line-height: 1.4;
    font-feature-settings: "palt";
    margin-bottom: 1em;
    position: relative;
    text-align: center;
}*/
/*.intro h2::before {
    font-family: "Font Awesome 5 Free";
    content: "\f0eb";
    font-weight: 900;
    font-size: 140%;
    color: #e50012;
    margin-right: 8px;
}*/
.intro p {
	font-size: 15px;
}
.intro em {
	font-style: normal;
	font-weight: bold;
	color: #00ab38;
}

@media screen and (max-width: 767px) {
	
	.poster-figure {
		padding-top: 0;
	}
	.intro {
		/*padding: 2em 20px 0;
        margin-top: 3em;*/
	}
	.intro figure {
		width: 45%;
        margin-top: 0;
	}
} /* end media query */



@media screen and (max-width: 479px) {
	
	/*.intro h2 {
		font-size: 18px;

	}*/
	
	.intro figure {
		width: 100%;
        max-width: 370px;
		margin: 0 auto 1em;
		float: none;
	}
	
} /* end media query */

/*--------------------------------------------------------------
# poster-profile
--------------------------------------------------------------*/

.poster-profile {
	background: url("../images/bg_pattern_dots_alt_trans.png") #bfeacd;
	background-size: 50px;
	/*border-top: 12px solid #ffd4df;
	border-bottom: 12px solid #ffd4df;
	border: 12px solid #ffd4df;*/
	padding: 30px 20px 70px;
	position: relative;
    margin-bottom: calc(90px + 3em);
}
.poster-profile::before,
.poster-profile::after {
    content: '';
    display: block;
    width: 100%;
    height: 20px;
    background: url("../images/bg_dots_border_green.png") repeat-x;
    background-size: contain;
    position: absolute;
    left: 0;
}
.poster-profile::before {
    top: -18px;
}
.poster-profile::after {
    bottom: -18px;
    transform: rotateX(180deg);
    z-index: 2;
}
.profile-main {
	position: relative;
	width: 100%;
	margin: 0 auto;
    max-width: 1140px;
    
}
.profile-main img {
	max-width: 100%;
}

.poster-profile .slogan {
	width: 80%;
	max-width: 850px;
	text-align: center;
	background: url(../images/feature_bcgd_03.png) #fff3e6;
	background-size: 33px;
	border-radius: 15px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.2);
	font-size: 25px;
	font-weight: bold;
	color: #00ab38;
	line-height: 1.5;
	border-bottom: 0;
	padding: 30px 30px 20px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: -90px;
    z-index: 5;
}


.poster-profile .slogan::before {
	content: "";
	display: block;
	width: 180px;
	height: 100px;
	background: url(../images/feature_icon_tape.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: -33px;
	left: 0px;
	right: 0px;
	margin: 0 auto;
}
.poster-profile .slogan::after {
	content: "";
	display: block;
	width: 60px;
	height: 60px;
	background: url(../images/feature_icon_light.png) no-repeat left center;
	background-size: contain;
	opacity: 0.9;
	position: absolute;
	top: 0px;
	left: 10%;
	bottom: 0px;
	margin: auto 0;
}

@media screen and (max-width: 1199px) {
	/*.poster-profile .slogan {
		font-size: 3.2vw;
	}*/
	.poster-profile .slogan::before {
		width: 26%;
		top: -20%;
		height: 60px;
	}
	.poster-profile .slogan::after {
		left: 3%;
		width: 8%;
		height: 100%;
	}
	
} /* end media query */

@media screen and (max-width: 575px) {
	.poster-profile {
		/*background: none;
		padding: 0;*/
        background-size: 10%;
	}
	
} /* end media query */

@media screen and (max-width: 480px) {
	.poster-profile .slogan {
		font-size: 5vw;
		padding-left: 10%;
        bottom: -100px;
	}
    .poster-profile .slogan::before {
        top: -9%;
    }
    .poster-alert {
        bottom: 95%;
        left: 6em;
    }
	
} /* end media query */


/*--------------------------------------------------------------
# course-news!
--------------------------------------------------------------*/

.course-news {
    margin-bottom: 2em;
	background: #fff;
    border: 1px solid #ccc;
    border-radius: 15px;
	padding: 0 1em;
}
.course-news .poster-alert {
    position: static;
    margin-left: 8em;
	margin-top: -2em;
}
.course-news h3 {
    color: #008e06;
}
.course-news-figure {
    margin-bottom: 2em;
}
.course-news-figure .row {
    align-items: center;
    justify-content: center;
}

.course-news-figure figcaption {
    text-align: center;
    margin-bottom: 1.5em;
    font-weight: bold;
}
.course-news-figure .badge {
    font-size: inherit;
    padding: 8px 12px;
    border-radius: 5px;
    margin-right: .5em;
}
.course-news-figure img {
    border-radius: 20px;
}
.course-news-figure .plus {
    text-align: center;
    font-size: 60px;
    line-height: 1;
    color: #154e86;
    padding: 0;
    margin: .5em 0;
}
.course-news-list {
    padding: 2em 2.5em 1em 3.5em;
    max-width: 870px;
    margin: 0 auto 1.5em;
    background: #fff9e6;
}
.course-news-list em {
    color: #ff5722;
}

@media screen and (max-width: 575px) {
    
    .course-news h3 {
        font-size: 5.3vw;
    }
    .course-news-figure .plus {
        font-size: 8vw;
    }
    .course-news-list {
        padding: 1.5em 1em 1em 1.5em;
    }
	
} /* end media query */

@media screen and (max-width: 480px) {
    
    .course-news-figure .row {
        flex-direction: column;
    }
    .course-news-figure .pict-box {
        flex: 0 0 80%;
        max-width: 80%;
    }
    
	
} /* end media query */

/*--------------------------------------------------------------
# home-catchline
--------------------------------------------------------------*/

.home-catchline {
	text-align: center;
	font-size: 30px;
	font-weight: bold;
	color: #dc3545;
	font-feature-settings: "palt";
	margin-bottom: 30px;
}
.home-catchline small,
.balloon {
	display: block;
	font-size: 50%;
	font-weight: bold;
	color: #fff;
	width: 200px;
	background: #9ED800;
	padding: 10px 0;
	border-radius: 8px;
	position: relative;
	margin-bottom: 15px;
}
.balloon {
    font-size: 15px;
    width: auto;
    display: inline-block!important;
    padding: 10px 15px;
}
.home-catchline small::after,
.balloon::after {
	position: absolute;
	content: '';
	top: 100%;
	left: 43%;
	border: 10px solid transparent;
	border-top: 15px solid #9ED800;
	width: 0;
	height: 0;
}


@media screen and (max-width: 575px) {
    
    .home-catchline {
            font-size: 4.7vw;
    }
	
} /* end media query */

@media screen and (max-width: 479px) {
	
	.home-catchline small {
		font-size: 65%;
	}
	
} /* end media query */







/*--------------------------- premium feature ----------------------------*/

.premium-feature h4 {
	color: #ed1e79;
	position: relative;
	font-weight: 800;
    font-size: 1.5rem;
    padding-top: 2.3em;
}
.premium-feature .balloon {
    position: absolute;
    top: 0;
}

.premium-feature li {
	display: flex;
}
.premium-feature .card {
	background: #fff;
	padding: 5%;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	/*--IE11対策*/
	display: block;
}
.premium-feature img {
    display: block;
    max-width: 75%;
	width: 75%;
    margin: 0 auto 1em;
}
.premium-feature h5 {
	color: #ed1e79;
	font-weight: 800;
	text-align: center;
	font-size: 1rem;
}
.premium-feature p {
	font-size: 0.9rem;
	color: #343434;
}

@media screen and (max-width: 575px) {
	
	.premium-feature li {
        max-width: 380px;
        margin: 0 auto;
    }
	
} /* end media query */



/*----- links to detail */

.link-to-detail .row {
	justify-content: space-around;
}
.link-to-detail .row li {
	width: 360px;
	margin-bottom: .5em;
}

.link-to-detail a.btn {
    display: block;
    border-radius: 8px;
    padding: 15px 16px 10px;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.3;
	white-space: normal;
    text-decoration: none;
}
.link-to-detail a.btn small {
	font-size: 1rem;
	font-weight: 800;
}

/*--------------------------------------------------------------
# why-reason
--------------------------------------------------------------*/

.why-reason {
	padding-top: 4em;
	padding-bottom: 1px;
}
.invisible {
	display: none;
}

/*------ why */

.why {
    background-color: #e6f4fa;
}

.why-list > li {
	padding-top: 1.5em;
	
}
.why-item {
	padding: 1.5em 1.5em 1em;
	position: relative;
	text-align: center;
	overflow: visible;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.7;
	border: 4px solid #f8b080;
}
.why-balloon {
	position: absolute;
	width: 80px;
	height: 91px;
	background: url("../images/icon_why.png") no-repeat;
	background-size: contain;
	left: 20px;
	top: -50px;
	font-size: 40px;
	padding-top: 32px;
	line-height: 1;
	color: #fff;
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.2));
}

.why-item dd {
	margin: 0;
	font-size: 1.2rem;
	font-weight: bold;
	color: #0492c9;
}

/*------ reason */

.reason-header {
	text-align: center;
}
.reason-title {
	position: relative;
	background: url("../images/bg_paint_blue.jpg");
	box-shadow: 0px 0px 0px 8px #0492c9;
	border: dashed 2px #a0e4dd;
	color: #fff;
	margin-bottom: 2em;
	padding: 1rem 2rem 1rem 130px;
	display: inline-block;
	text-align: left;
}
.reason-title:after {
  position: absolute;
  content: '';
  right: -10px;
  bottom: -10px;
  border-width: 0 0 30px 30px;
  border-style: solid;
  border-color: #fac099 #fac099 #e6f4fa;
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.15);
}
.reason-flag {
	position: absolute;
	display: block;
	width: 120px;
	height: 136px;
	background: url("../images/icon_reason.png") no-repeat;
	background-size: contain;
	color: #049e80;
	text-align: center;
	padding-top: 42px;
	font-size: 65px;
	line-height: 1;
	font-weight: bold;
	left: 4px;
	top: -40px;
	filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}
.reason-subtitle {
	font-size: 1.3rem;
	/*color: #fb5693;*/
	margin-bottom: 1em;
    border-bottom: 1px dashed #111;
    display: inline-block;
}
.reason-subtitle em {
	color: #111;
	font-size: 140%;
	display: block;
	margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
	.why-list > li {
		max-width: 450px;
		margin: 0 auto 2em;
	}
	.reason-title {
		padding: 1rem;
		font-size: 4.2vw;
	}
	.reason-flag {
		width: 70px;
		height: 80px;
		padding-top: 23px;
		font-size: 43px;
		top: -60px;
	}
	
} /* end media query */

@media screen and (max-width: 599px) {
	
	.reason-subtitle em {
		font-size: 120%;
	}
	
} /* end media query */

@media screen and (max-width: 575px) {
	
	.why {
        background-size: 30%;
    }
	
} /* end media query */

@media screen and (max-width: 479px) {
	
    
	.reason-subtitle {
		font-size: 1rem;
        margin-bottom: 1.5em;
	}
	
} /* end media query */

/*--------------------------------------------------------------
# survey-summary
--------------------------------------------------------------*/

.survey-result {
    background-color: #e6f4fa;
    
}
.survey-result-title {
	font-size: 1.3rem;
	color: #049e80;
	margin-bottom: 1em;
}
.survey-result-title em {
	font-size: 140%;
	display: block;
	margin-bottom: 5px;
}
.survey-summary p em {
	color: #0492c9;
	font-size: 110%;
}
.survey-summary-figure {
	padding: 2em 3% 0;
	margin-bottom: 0;
}
.survey-summary-figure figcaption {
	text-align: center;
	margin-top: 1em;
	font-weight: bold;
	font-size: 13px;
	color: #333;
}
.survey-summary-figure figcaption em {
	font-size: 120%;
	white-space: nowrap;
}
.table-wrap {
	margin-bottom: 3em;
}
.survey-result-table {
	width: 100%;
	margin-bottom: .5em;
}
.survey-result-table caption {
	caption-side: top;
	color: #343434;
	font-weight: bold;
	font-size: 1.1em;
	line-height: 1.4;
	padding-bottom: .25em;
}
.answer-summary {
    display: inline-block;
    font-size: 1rem;
    color: #f26100;
    float: right;
    padding-left: 3.6em;
	position: relative;
	margin-top: .5em;
	margin-left: 2em;
}
.answer-summary::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0a4  \f0a4";
	font-weight: 900;
	font-size: 140%;
	margin-right: .5em;
	color: #F9C03C;
	line-height: 1;
	position: absolute;
	left: 0;
	top: 0;
	
}

.survey-result-table th,
.survey-result-table td {
	padding: 10px 10px;
    border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
    text-align: center;
    vertical-align: middle;
	line-height: 1.5;
}
.survey-result-table thead {
    background: #049e80;
    color: white;
    font-weight: bold;
}

.survey-result-table tbody tr {
	background: #fff;
}
.survey-result-table tbody tr:nth-child(even) {
	background: #d1ece9;
}
.survey-result-table thead th {
	width: 24%
}
.survey-result-table thead th:first-child {
	width: 28%;
}
.survey-result-table td em {
	font-size: 120%;
	color: #0492c9;
}

@media screen and (max-width: 767px) {

	.survey-summary-figure {
		max-width: 400px;
		margin: 0 auto;
	}
} /* end media query */

@media screen and (max-width: 599px) {
    
    .survey-result {
        background-position: left 39%, right 92%;
        background-size: 25%;
    }
	.survey-result-title em {
		font-size: 120%;
	}
} /* end media query */


@media screen and (max-width: 479px) {
	.survey-result-title {
	font-size: 1rem;
	}
} /* end media query */




/*--------------------------------------------------------------
# related-services
--------------------------------------------------------------*/

.related-services {
	padding-top: 3em;
}
.related-list {
	padding-top: 2em;
	margin-bottom: 3em;
}
.related-list > li {
	position: relative;
}
.related-item {
	background: #cff1ee;
}
.related-category {
	display: inline-block;
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	font-weight: bold;
	padding: 8px 10px 5px;
	border-radius: 8px;
	background: #0492c9;
	color: #fff;
	position: absolute;
	left: 25px;
	top: -24px;
	z-index: 2;
}
.related-description {
	padding: 1em 1em 0;
}

@media screen and (max-width: 767px) {
	.related-list {
		margin-bottom: 0;
	}
	.related-list > li {
		max-width: 450px;
		margin: 0 auto 3em;
	}
	
} /* end media query */

/*--------------------------- CTAボタン ----------------------------*/

.cta-links {
    margin-bottom: 2em;
    /* border-bottom: 1px solid; */
    text-align: center;
}
/*.cta-links .row {
	margin-right: 0;
	margin-left: 0;
}

.cta-links .mx-auto a {
    display: block;
    max-width: 450px;
    margin: 0 auto;
}

.cta-two-links a {
    margin: 0 1em 1em;
	text-decoration: none;
}*/

/* --- ctaボタン (色はbootstrapで決める）*/

.move-link {
    font-weight: 700;
    line-height: 55px;
    padding: 0 40px;
    position: relative;
    white-space: nowrap;
    /* border-radius: 5px; */
    margin: 0 0.5em 8px;
}
.move-link::before {
    font-family: "Font Awesome 5 Free";
    content: "\f35a";
    font-weight: 900;
    margin-right: 6px;
}

/* --- 新しいcta-ボタン（cssのみ）*/

.cta-btn {
  text-align: center;
}
.cta-btn a:link,
.cta-btn a:visited {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 80px;
  background: #de4e2a;
  display: block;
  padding: 0 1em;
  max-width: 450px;
  margin: 0 auto 1rem;
  position: relative;
  white-space: nowrap;
  border-radius: 40px;
  border: 2px white solid;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.cta-btn a:hover {
  transform: translateY(-4px);
}
.cta-btn a:active,
.cta-btn a:focus {
  opacity: 1;
}
.cta-btn a.cta-flow {
  background: #369ea5;
}
.cta-btn a.cta-teachers {
  background: #8282ab;
  color: #fff;
  /* border-color: #7c5946 ; */
}

/*
.cta-announce {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #049e80;
}
.cta-phone {
    font-weight: bold;
    font-size: 26px;
}
.cta-phone::before {
    font-family: "Font Awesome 5 Free";
    content: "\f098";
    font-weight: 900;
    font-size: .8em;
    margin-right: 5px;
}


.cta-contact {
    font-weight: bold;
    border-radius: 8px;
    background: #f26100;
}
.cta-two-links {
    justify-content: center;
    align-items: center;
    
}*/

@media screen and (max-width: 767px) {
	.cta-btn a:link,
	.cta-btn a:visited {
		font-size: clamp(1.15rem, 3.4vw, 1.6rem);
	}

} /* end media query */

@media screen and (max-width: 575px) {
	/*.cta-announce {
        font-size: 16px;
    }*/
    .move-link {
        padding: 0 20px;
    }
} /* end media query */

/*--------------------------- 講師紹介 ----------------------------*/

.teachers {

}
.teachers-inner {
    padding-top: 3em;
    padding-bottom: 1em;
}
/*.teachers .lead-text {
    text-shadow:2px 2px 0 #e5f9f1, -2px -2px 0 #e5f9f1,  -2px 2px 0 #e5f9f1, 2px -2px 0 #e5f9f1, 0px 2px 0 #e5f9f1,  0 -2px 0 #e5f9f1, -2px 0 0 #e5f9f1, 2px 0 0 #e5f9f1;
}*/
.teachers em {
	/*color: #049e80;*/
}

.teachers-pict {
    margin-bottom: 5em;
	position: relative;
	z-index: 5;
}
.teachers-pict-inner {
	position: relative;
	margin: 0 auto;
	width: calc(100% - 10px);
	max-width: 950px;
}
.teachers-pict img {
    
    display: block;
	border-radius: 30px;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
	/*border: 2px solid #42403d;*/
	
}
/*.teachers-pict-inner::after {
	content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: repeating-linear-gradient(45deg, #42403d 0, #42403d 1px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    border-radius: 5px;
    top: 10px;
    left: 10px;
    z-index: -1;
}*/
.teachers-list {
	width: 100%;
	max-width: 850px;
	margin: 0 auto 1em;
}
.teachers-list > li {
    margin-bottom: 1em;
    padding: 0 12px;
}
.teacher-card {
    padding-bottom: .5em;
    height: 100%;
    margin-bottom: 0;
    overflow: visible;
	background: none;
}
.teacher-card img {
    display: block;
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    /*border: 2px solid #42403d;*/
}
.teacher-profile {
    /*margin-top: .5em;
    text-align: center;
    font-size: .95rem;
    color: #f26100;
    font-weight: bold;*/
    text-align: center;
    display: inline-block;
    background: #42403d;
	border-radius: 0;
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    padding: 0.2em 0.8em;
    position: relative;
    left: -10px;
    top: -15px;
}
.teacher-profile small {
    font-size: 70%;
    white-space: nowrap;
}


/*why-filipino*/
.why-filipino {
    border: 4px solid #9ed7f0;
    border-radius: 20px;
    padding: 2em 1em 1em;
    margin-bottom: 2em;
    background: #fff;
}
.why-filipino-list {
    /*color: #049e80;
    font-size: 1.1rem;*/
    margin-bottom: 0;
    font-weight: bold;
}

/*---- 選考＆採用基準　*/
.hiring-feature-list {
    /*align-items: center;*/
}
.hiring-feature-item {
    text-align: center;
    font-weight: 700;
    position: relative;
    font-size: 1.1rem;
    margin-bottom: 2em;
	color: #2455aa;
}
.hiring-feature-item::before {
    font-family: "Font Awesome 5 Free";
    content: "\f058";
    font-weight: 900;
    font-size: 60px;
    line-height: 1;
    color: #de4e2a;
    display: block;
    margin-bottom: 0.3em;
    
}
.hiring-process-figure {
    margin: 0 auto 3em;
    max-width: 1000px;
}
.hiring-process-figure img {
	filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.15));
}


@media screen and (max-width: 767px) {
	
	.teachers-list {
		margin: 0;
	}
	.why-filipino-list {
    	margin-left: 0.5em;
	}
	
} /* end media query */


@media screen and (max-width: 575px) {
    .teachers-inner {
        background-size: 30%;
    }
	.teachers-pict {
		margin-bottom: 3em;
	}
	
} /* end media query */


/*--------------------------- 流れ ----------------------------*/

.flow {
    /*background: url(../images/bg_bluegrid.png);
    background-size: 13px 13px;*/
    padding-bottom: 5px;
    margin-bottom: 2em
}
.flow-list {
    padding-top: 2em;
    margin-bottom: 3em;
}

.flow-list > li {
    position: relative;
}
.flow-item {
    /*border: 2px solid #42403d;*/
	border-radius: 25px;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}
.flow-description {
    padding: 1em 1em 0;
}
.flow {
    /*background: url(../images/bg_bluegrid.png);
    background-size: 13px 13px;*/
    padding-bottom: 5px;
    margin-bottom: 2em
}
.flow-item-title {
    font-size: 1.1rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 1em;
    margin-top: .5em;
	color: #de4e2a;
}
.flow-item-title::after {
    content: "";
    display: block;
    width: 40%;
    height: 8px;
    border-bottom: 1px dashed #42403d;
    margin: 0.2em auto;
}
.flow-item .bullet {
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 50%;
    font-weight: bold;
    color: #ffffff;
    background: #42403d;
    position: absolute;
    top: -35px;
    left: 35px;
    line-height: 1;
    font-size: 1.8rem;
}
.flow-item .bullet small {
    font-size: 8px;
    text-transform: uppercase;
    padding-top: 10px;
}

/* bg adjust */
.flow .bg-panel::before {
	top: 12%;
	height: 79%;
}

@media screen and (max-width: 767px) {
	.related-list,
    .flow-list {
		margin-bottom: 0;
	}
	.related-list > li,
    .flow-list > li {
		max-width: 450px;
		margin: 0 auto 3em;
	}
	
} /* end media query */




/*--------------------------- 生徒様の声 ----------------------------*/
.voices {
    /*background: #f3f3f3;*/
}
.voices-list {
    margin-bottom: 4em;
}
.voices-list .bg-white {
    box-shadow: 7px 7px 0 rgba(66,64,61,0.2);
	border: 2px solid #42403d;
	border-radius: 6px;
}
.voice-title {
	color: #1a5a87;
	padding-bottom: 3px;
	border-bottom: 2px dashed #42403d;
}
.voice-title::before {
	font-family: "Font Awesome 5 Free";
	content: '\f075';
    color: #ff7f2c;
    font-size: 110%;
    margin-right: 8px;
}

@media screen and (max-width: 767px) {
    .voices-list img {
    display: block;
    width: 100%;
    max-width: 150px;
    margin: 0 auto 1em;
}
	
} /* end media query */
@media screen and (max-width: 575px) {
    .voices {
        background-size: 50%;
    }
	.voices-list > div {
        max-width: 400px;
        margin: 0 auto 1.5em;
    }
} /* end media query */


/*---- お客様の声（全く違うバージョンなので、クラス名をtestimonial(testi)に　*/

.testimonial-title {
	text-align: center;
	margin-bottom: 1.5em;
	color: #de4e2a;
}
.testimonial-title > span {
	display: inline-block;
	border-bottom: 8px solid #91aad4;
	padding: 0 0.6em 0.2em;
}
.testimonial-title::before {
	content: '';
    width: 50px;
    height: 51px;
    background: url(../images/icon_logo.png) no-repeat center;
    background-size: contain;
    display: block;
	margin: 0 auto .5em;
}
.testi-item {
	align-items: center;
	margin-bottom: 4em;
}

.testi-pict {
	position: relative;
}
.testi-title {
	font-size: 1.5rem;
	display: inline-block;
	background: #42403d;
	color: white;
	padding: .2em .5em;
	position: absolute;
    bottom: 10%;
}
.testi-img {
	display: block;
	width: 87%;
	margin-left: auto;
	border-radius: 25px;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}
.testi-summary {
	margin: 0 0 1em -1em;
}
.testi-summary span {
	display: inline-block;
	font-weight: bold;
	padding: .2em .7em;
}

.testi-item:nth-child(even) {
	flex-direction: row-reverse;
}
.testi-item:nth-child(even) .testi-img {
	margin-left: unset;
	margin-right: auto;
}
.testi-item:nth-child(even) .testi-title {
	right: 0;
}
.testi-item:nth-child(even) .testi-summary {
	text-align: right;
	margin-right: -1em;
}

@media screen and (max-width: 767px) {

	.testi-pict {
		margin-bottom: 2em;
    	max-width: 600px;
	}
	.testi-title {
		bottom: 88%;
		font-size: clamp(1.2rem, 3.2vw, 1.5rem);
	}
	.testi-contents {
		max-width: 600px;
		margin: 0 auto;
	}
	.testi-summary {
		text-align: right;
	}
	.testi-item:nth-child(even) .testi-summary {
		text-align: left;
	}

} /* end media query */

@media screen and (max-width: 575px) {
	.testimonial-title {
		font-size: 1.5rem;
	}

} /* end media query */

/*--------------------------- Q&A ----------------------------*/

.faq {
    background: #EDF1F3;
    padding: 3em 0;
}
.faq-item {
    margin-bottom: 1em;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
	border-radius: 20px;
}
.border-q {
    border: none;
    border-radius: 20px 20px 0 0;
    position: relative;
    margin-bottom: 0;
    background-image: none;
    padding-left: 70px;
}
.border-q::before {
    content: 'Q';
    font-weight: 700;
    position: absolute;
    left: 15px;
    top: 13px;
    font-size: 24px;
    background: #de4e2a;
    display: block;
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: white;
    border-radius: 50%;

}
.text-no-q {
    font-size: 18px;
    line-height: 35px;
    color: #111;
}
.border-a {
    border: none;
    border-radius: 0 0 20px 20px;
    border-top: 1px dashed #42403d;
    background: #fff;
    padding-left: 70px;
    padding-bottom: 20px;
    position: relative;
}
.border-a::before {
    content: 'A';
    font-weight: 700;
    position: absolute;
    left: 15px;
    top: 13px;
    font-size: 24px;
    background: #2455aa;
    display: block;
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: white;
    border-radius: 50%;
}
.border-a p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 576px) {
	.text-no-q {
		font-size: 16px;
		line-height: 1.5;
	}
	.border-q::before {
		top: 7px;
	}
} /* end media query */


/*--------------------------- 運営者情報 ----------------------------*/

.management {
    padding: 4em 0;
}
.management table {
    background: white;
}

.management-profile {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}
.management-figure {
	display: inline-block;
	margin: .5em 2em 0 0;
	width: 90%;
	max-width: 200px;
}
.management-logo {
	max-width: 100%;
}
.management-figcaption {
	margin-bottom: 0;
	text-align: center;
	margin-top: .2em;
	font-size: .9em;
	font-weight: bold;
}
.table-dark {
    background: none;
    color: #de4e2a;
}
.table-bordered {
    border: none;
	border-bottom: 1px dashed #42403d;
}
.table-bordered tr {
	border-top: 1px dashed #42403d;
}
.table-bordered th, 
.table-bordered td {
    border: none;
    /*border-top: 1px dotted #111;
    border-bottom: 1px dotted #111;*/
    
}




@media screen and (max-width: 480px) {
    /*.management-logo {
        max-width: none;
        width: 90%;
    }*/
    
	
} /* end media query */


/*--------------------------- footer ----------------------------*/

.bg-footer {
    background: #2455aa;
    color: #fff;
    position: relative;
}
.bg-footer p > span {
    /*display: inline-block;
    background: white;
    padding: 0.4em 1em;*/
}
/*.bg-footer::before {
	content: '';
	display: block;
	width: 100%;
	height: 20px;
	background-image: radial-gradient(#bfdd64 1px, transparent 1px);
	background-size: calc(10 * 1px) calc(10 * 1px); 
	position: absolute;
	bottom: 100%;
	left: 0;
	
}*/
/*.bg-footer::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 30px;
    background-image: url(../images/bg_footer.png); 
    background-repeat: repeat-x;
    background-size: 680px;
    position: absolute;
    top: -22px;
    left: 0;
}*/

.bg-footer p {
    margin-bottom: 0;
	font-size: .8rem;
}


/*------------------------ video ----------------------------*/

iframe {
    max-width: 100%;
}
.video-area{
	padding: 36px 0 30px;
    background: #333;
}
.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    width: 100%;
}
.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



