/* CSS Document */
/*------------------------------- Apply 申込ボタン */
.fixed_btn
{
  position: fixed;
  bottom: 10px; 
  right: 10px;
  padding:0;
	z-index:100;
	background:transparent;
	border:none;
	opacity:.8;
	transition:.5s;
}
.fixed_btn:hover {
    /* マウスオーバー時に背景色をグレーに変更 */
    opacity:.4;
}

/*------------------------------- Hero メインイメージ */
.heroFrame {
	position:relative;
	width:900px;
	margin:40px auto 0;
}

.heroTitle{
	position:absolute;
	top:40px;
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    width: 600px;
	padding:30px 20px;
}
.heroTitle::before{
    transform: skewX(-25deg);
    content: ""; /*ボックスを作る*/
    position: absolute;
    top:0;
	bottom: 0; 
	left: 0; right: 0;
    z-index: -1;
    background-color:#000000;
}

.heroTitle h3 {
	color:#ffffff;
	font-size:1.2em;
	font-family: togebaralight, sans-serif;
	font-weight: 300;
	font-style: normal;
	border-bottom:none;
	margin:0 auto;
	transform: skewX(-15deg);
}
.heroTitle h3 span {
	color:#ffffff;
	font-size:1.5em;
	font-family: togebaramedium, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.heroTitle h1 {
	color:#ffffff;
	font-size:2.2em;
	font-family: togebarabold, sans-serif;
	font-weight: 600;
	font-style: normal;
	transform: skewX(-15deg);
}

.heroImageLeft {
	position:absolute;
	top:0;
	left:0;
	width:300px;
	z-index:4;
	
}
.heroImageLeft img {
	width:100%;
}
.heroImageRight {
	position:absolute;
	top:140px;
	right:-20px;
	width:300px;
	z-index:4;
}
.heroImageRight img {
	width:100%;
}

@media screen and (max-width: 767px){
	.heroFrame {
		width:75%;
		margin:30px auto;
	}
	.heroTitle{
		width:85%;
		top:80px;
	}
	.heroTitle h1 {
		font-size:1.8em;
		margin:0 0 0 -50px;
	}
	.heroTitle h3 {
		margin:0 -30px 0 0;
	}
	.heroTitle h3 span {		
		line-height:120%;
	}
	.heroImageLeft {
		width:200px;
		left:-50px;
	}
	.heroImageRight {
		width:200px;
		right:-30px;
		top:300px;
	}
}

ul.seminarTag {
	margin:60px auto 0;
	display:flex;
	justify-content: center;
	width:320px;
	z-index:10;
}

ul.seminarTag li:first-child {
	width:49%;
	text-align:center;
	padding:3px;
	color:#ffffff;
	background-color:#000000;
	font-size:.8em;
	font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;	
	z-index:11;
}

ul.seminarTag li:last-child {
	width:49%;
	text-align:center;
	padding:1px;
	color:#000000;
	background-color:#ffffff;
	border:solid 2px #000000;
	font-size:.8em;
	font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	z-index:11;
}

@media screen and (max-width: 767px){
	ul.seminarTag {
		margin:200px auto 0;
	}
}

/*------------------------------- Problem 課題点 */
.problem {
	position:relative;
	margin:40px auto;	
}
.content {
	z-index:2;
}

.pbm {
	position:absolute;
	top:0;
	right:0;
	width:70%;
	height:100%;
    padding-left:4em;
	-webkit-clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
	clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);  
	background: linear-gradient( 135deg, rgba(148, 209, 214, 0.8), rgba(224, 122, 172, 0.8)),url("images/presentation_back.jpg")25% 80%;
	background-size:cover;
	z-index:1;
}
.problem dl.subCopy {
	position:relative;
	diplay:table;
	width:100%;
	margin:0 auto;
	padding-bottom:20px;
	z-index:2;
}
.problem dl.subCopy dt {
	width:48%;
	display:table-cell;
	vertical-align:middle;
	text-align:right;
	padding-right:30px;
	position:relative;
	z-index:60;
}
.problem dl.subCopy dt::before {
	transform:skewX(-20deg);
    content: ""; /*ボックスを作る*/
    position: absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
    z-index: -1;
	bacground-color:#ffffff;
}
.problem dl.subCopy dt h2 {
	display:inline-block;
	background:#ffffff;
	margin:0 auto;
	text-align:left;
	padding:10px 20px;	
	font-size:1.7em;
	color:#000000;
	font-weight:bold;
	transform: skewX(-15deg); 
	box-shadow: 5px 6px 10px -3px rgba(0,0,0,0.6);
}
.problem dl.subCopy dd {
	font-size:1em;
	line-height:180%;
	width:48%;
	display:table-cell;
	vertical-align:middle;
	text-align:left;
	text-shadow:0 0 10px #FFF;
	padding:20px 0 0 0;
	z-index:3;
}

@media screen and (max-width: 767px){
	.pbm {
		width:100%;
		height:100%;
		-webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
		clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%); 
	}
	.problem dl.subCopy {
		display:flex;
		flex-direction:column;
		padding-bottom:20px;
	}
	.problem dl.subCopy dt {
		width:95%;
		text-align:center;
		margin:20px auto 0 20px;
	}
	.problem dl.subCopy dd {
		width:100%;
	}
	.problem dl.subCopy dt h2 {
		font-size:1.4em;
	}
}

/*------------------------------- Presentation 提案 */
.presentation {
	position:relative;
	margin:40px auto 60px;	
}
.content {
	text-align:center;
	z-index:2;
}

.pst {
	position:absolute;
	top:0;
	left:0;
	width:60%;
	height:400px;
	-webkit-clip-path: polygon(0 0, 75% 0, 100% 99%, 0% 100%);
	clip-path: polygon(0 0, 85% 0, 100% 99%, 0% 100%);  
	background: linear-gradient( 135deg, rgba(148, 209, 214, 0.8), rgba(224, 122, 172, 0.8)),url("images/presentation_back.jpg")25% 50%;
	background-size:cover;
	z-index:11;
}
.presentation dl.subCopy {
	position:relative;
	diplay:table;
	width:100%;
	margin:0 auto;
	z-index:12;
}
.presentation dl.subCopy dt {
	font-size:1em;
	line-height:180%;
	width:48%;
	display:table-cell;
	vertical-align:middle;
	text-align:left;
	text-shadow:0 0 10px #FFF;
	padding:20px 20px 0 0;
	z-index:13;
}
.presentation dl.subCopy dd {
	width:48%;
	display:table-cell;
	vertical-align:middle;
	text-align:left;
}
.presentation dl.subCopy h2 {
	display:inline-block;
	background:#ffffff;
	margin:0 auto;
	text-align:left;	
	padding:10px 5px;	
	font-size:1.7em;
	color:#000000;
	font-weight:bold;
}


@media screen and (max-width: 767px){
	.pst {
		width:100%;
		height:600px;
		-webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
		clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%); 
		background-position:0 50%;
	}
	.presentation dl.subCopy {
		display:flex;
		flex-direction:column-reverse;
	}
	.presentation dl.subCopy dt {
		width:100%;
		margin:0 auto;
	}
	.presentation dl.subCopy dd {
		margin:20px auto;
		text-align:center;
		width:100%;
	}
	.presentation dl.subCopy h2 {
		font-size:1.4em;
	transform:skewX(-15deg);
	}
}

/*------------------------------- 悩みworry */
.worry {
	background-color:#a2afb8;
	margin:40px auto;	
	padding:20px 0 40px;
	text-align:center;
}
.sectionTitle {
  font-size: 120%;
  position: relative;
  display: inline-block;
  padding: 0 40px;
	margin:0 auto;
}
.sectionTitle:before, .sectionTitle:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 35px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.sectionTitle:before {
  left:0;
}
.sectionTitle:after {
  right: 0;
}

.sectionTitle h2 {
	font-weight:bold;
	font-size:1.5em;
	font-family: togebaramedium, sans-serif;
	font-weight: 400;
	color:#ffffff;
	transform: skewX(-15deg);
}
h4.subTitle {	
	font-size:1em;
	color:#ffffff;
}
h4.subTitleBlack {	
	font-size:1em;
	color:#000000;
}
h4.subTitleBlack strong {
	color:#3b5a87;
	font-weight:bold;
}
@media screen and (max-width: 767px){
	h4.subTitleBlack {
	font-size:1.1em;
		text-align:left;
	}
}

ul.eachWorry {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-around;
	width:100%;
	margin:0 auto 40px;
}
ul.eachWorry li{
	position:relative;
	width:48%;
	height:180px;
	margin-bottom:40px;
}
ul.eachWorry li .parallel {
	position:absolute;
	bottom:0;
	left:0;
  width: 100%;
  height: 80%;
  transform: skewX(-25deg);
  background: #c1cad1;
	z-index:1;
}
ul.eachWorry li img {
	position:absolute;
	bottom:0;
	left:20px;
	height:100%;
	z-index:6;
}




.eachWorry li h4 {
	position:absolute;
	top:60px;
	left:120px;
	width:270px;
	font-weight:bold;
	color:#000000;
	font-size:1em;
	text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
	text-align:left;
	font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	z-index:7;
	
}
.eachWorry li a.toSolution {
	position:absolute;
	bottom:10px;
	right:40px;
	display:inline-block;
	background-color:#679be7;
	transform:skewX(-25deg);
	color:#ffffff;
	transition: all 0.5s;
	padding:4px 7px;
	font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	z-index:3;
	
}
.eachWorry li a.toSolution:hover {
	opacity:.5;
}
@media screen and (max-width: 767px){
	ul.eachWorry {
		flex-direction:column;
	}
	ul.eachWorry li{
		width:90%;	
		margin:0 auto 30px auto;
	}
	
	.eachWorry li h4 {
		top:70px;
		left:90px;
		width:75%;
		font-size:.9em;
		text-align:left;
		
	}
	ul.eachWorry li.worry001,
	ul.eachWorry li.worry002,
	ul.eachWorry li.worry003,
	ul.eachWorry li.worry004 {
		background-size: 100%;
	}
	.eachWorry li a.toSolution {
		bottom:15px;
	}
}
/*------------------------------- Solution 解決 */
.solution {
	position:relative;
	margin:40px auto 60px;	
}

.solution .content {
	text-align:center;
}

.sectionTitleBlack {
  font-size: 120%;
  position: relative;
  display: inline-block;
  padding: 0 40px;
	margin:0 auto 30px;
}
.sectionTitleBlack:before, .sectionTitleBlack:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 35px;
  height: 2px;
  background-color: #000;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.sectionTitleBlack:before {
  left:0;
}
.sectionTitleBlack:after {
  right: 0;
}

.sectionTitleBlack h2 {
	font-weight:bold;
	font-size:1.5em;
	color:#000000;
	font-family: togebaramedium, sans-serif;
	font-weight: 400;
	transform: skewX(-15deg);
}
.sectionTitleBlack h4 {	
	font-size:1em;
	color:#000000;
}

.solBox {
	width:100%;
	margin:20px auto 0;
}

.solBox dl {
	display:flex;
	flex-direction:row;
	flex-wrap: wrap;
	width:100%;
	margin:0 auto 40px;
}
.solBox dl dt {
	width:49%;
	text-align:left;
	font-size:1em;
	line-height:180%;
}
.solBox dl dt img {
	width:60%;
	text-align:right;
	margin-bottom:20px;
}

.solBox dl dt h3 {
	text-align:left;
	font-weight:bold;
	font-size:1.3em;
	font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	transform:skewX(-15deg);
	margin-bottom:5px;
}

.solBox dl dd img {
	width:100%;
}

.solBox dl dd {
	font-size:1em;
	line-height:180%;
	width:49%;
	text-align:left;
}

@media screen and (max-width: 767px){
	.solBox dl {
		flex-direction:column;
	}
	.solBox dl dt {
		width:100%;
		margin-bottom:20px;
	}
	.solBox dl dd {
		width:100%;
	}
	.solBox dl dt img {
		float:none;
		text-align:center;
		margin:0 auto 20px;
	}
}

/*------------------------------- Lesson 講義内容 */
.lesson {
	background-color:#e8ecf1;
	margin:40px auto;	
	padding:20px 0 40px;
	text-align:center;
}

.acvFrame {
	margin:20px auto 40px;
	display:flex;
	justify-content: space-around;
}

.acvFrame dl {
	width:32%;
	padding:20px;
	background-color:#ffffff;
	text-align:center;
	box-shadow:
    0 1.9px 2.5px rgba(0, 0, 0, 0.057),
    0 5px 6.1px rgba(0, 0, 0, 0.076),
    0 10.1px 11.4px rgba(0, 0, 0, 0.086),
    0 19.2px 19.8px rgba(0, 0, 0, 0.092),
    0 38.4px 34.8px rgba(0, 0, 0, 0.1),
    0 101px 74px rgba(0, 0, 0, 0.13);
}

.acvFrame dl dt {
	width:100%;
	margin-bottom:20px;
}
.acvFrame dl dt img {
	width:100%;
	border:solid #999999 2px;
}

.acvFrame dl dd {
	font-size:1em;
	color:#000000;
	line-height:180%;
}
.acvFrame dl dd strong {
	font-weight:bold;
}


@media screen and (max-width: 767px){
	.acvFrame {
		flex-direction: column;
	}
	.acvFrame dl {
		width:100%;
		margin-bottom:40px;
	}
}
@media screen and (min-width: 768px){
.stepPc {
	width:100%;
	margin:0 auto 40px;
}
	.stepPc img{
		width:100%;
	}
.stepSp {
	display:none;
}
}

@media screen and (max-width: 767px){
	.stepPc {
		display:none;
	}
	.stepSp {
		width:100%;
		margin:0 auto 40px;
	}
	.stepSp img {
		width:100%;
	}
}
dl.trainer {
	display:flex;
	justify-content: space-around;
	margin:40px auto;
	width:80%;	
}

dl.trainer dt {
	width:45%;
	font-size:1em;
	color:#000000;
	line-height:180%;
	text-align:left;
	
}

dl.trainer dt h5 {
	font-weight:bold;
	color:#3b5a87;
	font-size:.9em;
	margin-bottom:4px;
	font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}

dl.trainer dt h5 span {
	font-weight:normal;
	color:#95aac6;
	margin-left:5px;
}
dl.trainer dt h2 {
	font-weight:bold;
	font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	font-size:1.9em;
	color:#3b5a87;
	margin-bottom:10px;
}

dl.trainer dt h4 {	
	font-weight:bold;
	color:#000000;
	font-size:1em;
	margin-bottom:10px;
	font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
} 

dl.trainer dd {
	width:45%;
	
}
dl.trainer dd img {
	width:100%;
}
@media screen and (max-width: 767px){
	dl.trainer {
		width:100%;
		flex-direction: column-reverse;
	}
	dl.trainer dt {
		width:100%;
		margin-bottom:20px;
	}
	dl.trainer dd {
		width:100%;
		margin-bottom:10px;
	}
}

div.simpleSchFrame {
	text-align:center;
	width:80%;
	margin:0 auto 40px;
}
div.simpleSchFrame img {
	width:100%;
}

.timeline {
	width:100%;
	margin:0 auto 40px;
}

.timeline h2 {
	width:100%;
	background-color:#3b5a87;
	padding:10px 0;
	text-align:center;
	margin-bottom:20px;
}
.timeline h2 img {
	
}
.timeline p {
	text-align:left;
	width:90%;
	margin:0 auto 20px;
	color:#666666;
	font-size:1em;
	font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}

.item {
	text-align:left;
	width:90%;
	margin:0 auto 20px;
	padding:20px;
	background-color:#ffffff;
	border-radius:10px;
	position: relative;
}

.item::before {
	position: absolute;
	top:20px;
	left:15px;
	width: 8px;
	height:85%;
	content: '';
	border-radius: 4px;
	display:inline-block;
	background: -moz-linear-gradient(top, #94d1d6, #df7bad);
  background: -webkit-linear-gradient(top, #94d1d6, #df7bad);
  background: linear-gradient(to bottom, #94d1d6, #df7bad);
	border-radius: 3px;
}

.item h4 {
	font-weight:bold;
	color:#000000;
	font-size:1.4em;
	font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	margin:10px 0 20px 20px;
}

.item ul{
	margin:0 0 20px 40px;
	list-style: none;
}
.item ul li {
	padding-left:15px;
	margin:0 0 10px 0;
	color:#000000;
	font-size:1em;
	font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	background:url("images/arrow.jpg")top left no-repeat;
	
}

.item dl {	
	display:flex;
	justify-content: space-between;
	
}

.item dl dt {
	width:49%;
}
.item dl dd {
	width:49%;
}
.item dl dt img {
	width:100%;
}
.item dl dd img {
	width:100%;
}
@media screen and (max-width: 767px){
	.item dl {	
		flex-direction: column;
	}
	.item dl dt {
		width:100%;
	}
	.item dl dd {
		width:100%;
	}
	.item ul{
		margin:0 0 20px 30px;
	}
}

.interval {
	width:100%;
	margin:0 auto 20px;
	background-color:#e8ecf1;
	border:dotted 2px #3b5a87;
	padding:20px;
}

.interval h2 {
	color:#3b5a87;
	font-size:1.7em;
	font-weight:bold;
	text-align:center;
	margin:0 auto 10px;
	background:transparent;
}
.interval h5 {
	color:#3b5a87;
	font-size:1em;
	text-align:center;
	margin:0 auto 40px;
	background:transparent;
}

.intervalFrame {
	width:90%;
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	margin:0 auto;
	
}

.interval ul {
	width:48%;
	display:flex;
	flex-direction: column;
	margin:0 auto;
}
.interval ul li {
	margin-bottom:20px;
	text-align:left;
	list-style:none;
	color:#3b5a87;
	font-size:1em;
}
.interval ul:first-child {
	margin-left:20px;
}
.interval ul li .fa-angle-right {
	padding-right:5px;
}
@media screen and (max-width: 767px){
	.interval {
		width:auto;
	}
	.intervalFrame {
		width:100%;		
		text-align:left;
	}
	.interval ul {
		width:100%;
	}.interval ul:first-child {
		margin-left:0;
	}
	.interval ul li {
	}
}

.tlArrow {
	margin:0 auto 20px;
	text-align:center;
}
/*------------------------------- Educational Tool 教材 */
.edcTool {
	background:url("images/triangle_back.jpg")top left repeat;
	margin:40px auto;	
	padding:20px 0 40px;
	text-align:center;
}


.edcTitle{
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    width: 600px;
	padding:20px;
}
.edcTitle::before{
    transform: skewX(-25deg);
    content: ""; /*ボックスを作る*/
    position: absolute;
    top:0;
	bottom: 0; 
	left: 0; right: 0;
    z-index: -1;
    background-color:#333333;
}
.edcTitle h4 {
	color:#ffffff;
	font-size:1em;
	font-family: togebaramedium, sans-serif;
	font-weight: 400;
}
.edcTitle h2 {
	color:#ffffff;
	font-size:1.6em;	
	font-family: togebarabold, sans-serif;
	font-weight: 600;	
}
@media screen and (max-width: 767px){
	.edcTitle{
		width:85%;
	}
	.edcTitle h2 {
		font-size:1.4em;
	}
}


dl.edcPhoto {
	display:flex;
	justify-content: space-around;
	margin:40px auto;
	width:80%;	
}

dl.edcPhoto dt {
	width:45%;
	font-size:1.1em;
	color:#000000;
	line-height:180%;
	text-align:left;
	
}
dl.edcPhoto dd {
	width:45%;
	position:relative;
}
dl.edcPhoto dd img {
	width:100%;
	
}
dl.edcPhoto dd::before {
	position:absolute;
	top:-5px;
	left:-5px;
	content: "";
	border-top: 50px solid #d45151;
	border-right: 25px solid transparent;
	border-left: 0 solid transparent;
	display: inline-block;	
} 
dl.edcPhoto dd::after {
	position:absolute;
	bottom:-5px;
	right:-5px;
	content: "";
	border-bottom: 50px solid #d45151;
	border-right: 0 solid transparent;
	border-left: 25px solid transparent;
	display: inline-block;	
} 


@media screen and (max-width: 767px){
	dl.edcPhoto {
		width:100%;
		flex-direction: column-reverse;
	}
	dl.edcPhoto dt {
		width:100%;
		margin-bottom:20px;
	}
	dl.edcPhoto dd {
		width:100%;
		margin-bottom:10px;
	}
}

ul.edcPoint {
	margin:0 auto;
	width:100%;
	display:flex;
	justify-content: space-around;
	flex-wrap: wrap;
	counter-reset: number 0;
}

ul.edcPoint li {
	width:45%;
	border:solid 3px #333333;
	background-color:#ffffff;
	text-align:center;
	color:#333333;
	font-size:1em;
	font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	padding:15px;
	position:relative;
	z-index:50;
	margin-bottom:40px;
}
ul.edcPoint li img {
	margin:10px auto;
}
ul.edcPoint li::before {
transform: skewX(-25deg);
    content: ""; /*ボックスを作る*/
    position: absolute;
    top:-19px;
	bottom: 0; 
	left: 20px;
    z-index: 51;
    background-color:#d45151;
	color:#ffffff;
	padding:3px 0;
	width:80px;
	height:20px;
	counter-increment: number 1;
	content: '特徴'counter(number);
}
@media screen and (max-width: 767px){
	ul.edcPoint {
		flex-direction: column;
		width:100%;
		margin-left:0;
	}
	ul.edcPoint li {
		width:100%;
		margin:0 auto 40px;
	}
}
