img {
	max-width: 100%;
	width: auto;
	height: auto;
}

.techerimg img {
	width: auto;
	height: auto;
}
@media print, screen and (max-width: 768px){

/*
**  sp
============== ============== ============== ============== ============== ============== ============== */
	
/*///////// タブメニュー //////////*/	
.tabs {
	padding: 0;
	margin: 0 6vw 7vh 6vw;
	}

.tab-outer {
	display: block;
	}
	
#tabbtn {display:none}
	
.tabspmenu {
	width: 100%;
	margin: 0 0 5vh 0;
	}

.tabspmenu a {
    display: block;
    padding: 13px 0 15px 0;
    text-decoration: none;
    color: #fff;
}

label {
    display: block;
    margin: 0;
    padding : 15px;
    line-height: 1;
    color :#fff;
    background : #000;
    cursor :pointer;
	text-align: center;
}

input {
    display: none;
}

.tabspmenu ul {
    margin: 0;
    padding: 0;
    background :#fff;
    list-style: none;
}

.tabspmenu li {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
	text-align: center;
}

#menu_bar01:checked ~ #links01 li {
    height: 50px;
	text-align: center;
    opacity: 1;
}
	
#links01 li.itiran a {background: #7d7d7d;}
#links01 li.zenpan a {background: #499bee;}
#links01 li.medical a {background: #f16482;}
#links01 li.patent a {background: #b769c8;}
#links01 li.it a {background: #ee8f49;}
#links01 li.finance a {background: #62bf69;}
	
#links01 li a {color: #fff;}

.tabspmenu p {
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	clear: both;
	font-size: 5vw;
	margin: 1vh 0 0 0;
	padding: 1.5vh 0;
	font-size: 4.3vw;
	}
	
.tabtitle01 {background-color: #7d7d7d;}
.tabtitle02 {background-color: #499bee;}
.tabtitle03 {background-color: #f16482;}
.tabtitle04 {background-color: #b769c8;}
.tabtitle05 {background-color: #ee8f49;}
.tabtitle06 {background-color: #62bf69;}

.teacher {
	clear: both;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	}	

.teacher li {
	border: solid 1px #cacaca;
	margin-bottom: 15px;
	}
	
.teacher li img {width: 41.5vw;}

.teacher li p {
	color: #000;
	text-align: center;
	font-size: 13px;
	padding: 1.5vh 0;
	}
	
	
	
/*///////////////// 講師紹介_講師詳細 //////////////////*/
	
/*///////// サイドメニュー //////////*/
	
/* サイドオープン時にメインコンテンツを覆う部分 */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 3;
}
.overlay::after {
  visibility: hidden;
  position: fixed;
  top: 40%;
  left: 0;
  display: block;
  width: 100%;
  height: 50px;
  color: rgba(255,255,255,0);
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0,0,0,.4);
}
.side-open .overlay::after {
  visibility: visible;
  color: rgba(255,255,255,.8);
}

.allarea {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 2;
}
	
/* サイドメニュー ※リストのスタイルは省略 */
.side-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 70vw;
	height: 100%;
	padding: 3vh 4vw 0 0;
	text-align: left;
	font-size: 13px;
	background: #fff;
	z-index: 1;
	overflow-y: auto;
}


/* 開閉用ボタン ※ボタンの細かいスタイルは省略 */
.side-menu-btn {
  position: fixed;
  top: 15vh;
  right: -1px;
  width: 14vw;
  cursor: pointer;
  z-index: 4;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

/* サイドメニューオープン */
.side-open .allarea,
.side-open .overlay,
.side-open .side-menu-btn {
  -webkit-transform: translate3d(-79vw, 0, 0);
  transform: translate3d(-79vw, 0, 0);
}
	
	
/*///////// サブメニュー //////////*/
.accordion {
    background: #FFF;
 }

.accordion .link {
	cursor: pointer;
	display: block;
	padding: 2vh 0;
	font-size: 4.5vw;
	text-align: center;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
	
.adcolor01 {color: #499bee;}
.adcolor02 {color: #f16482;}
.adcolor03 {color: #b769c8;}
.adcolor04 {color: #ee8f49;}
.adcolor05 {color: #62bf69;}
	
.accordion li{
	margin: 1vh 0;
	}

.accordion li:last-child .link {
    border-bottom: 0;
}


	
.accordion li.open i.fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.accordion li.default .submenu {display: block;}
/**
 * Submenu
 -----------------------------*/

.accordion li.zenpan {border: solid 2px #499bee; border-radius: 3px;}
.accordion li.medical {border: solid 2px #f16482; border-radius: 3px;}
.accordion li.tokkyo {border: solid 2px #b769c8; border-radius: 3px;}
.accordion li.it-denki {border: solid 2px #ee8f49; border-radius: 3px;}
.accordion li.kinyu {border: solid 2px #62bf69; border-radius: 3px;}
	
.submenu {
    display: none;
    font-size: 3.5vw;
	padding: 0 10px 8px;
 }

.submenu li {
	padding: 0 0 0 0;
	display: block;}

.submenu li.kzlevel01{color: #499bee; margin-top: 8px;}
.submenu li.kzlevel02{color: #f16482; margin-top: 8px;}
.submenu li.kzlevel03{color: #b769c8; margin-top: 8px;}
.submenu li.kzlevel04{color: #ee8f49; margin-top: 8px;}
.submenu li.kzlevel05{color: #62bf69; margin-top: 8px;}

.submenu a {
    display: block;
	padding: 0.2vh 0 0.2vh 3vw;
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
 }

 .submenu a:hover {
    color: #FFF;
 }
	
.menucolor01 a:hover {background: #499bee;}
.menucolor02 a:hover {background: #f16482;}
.menucolor03 a:hover {background: #b769c8;}
.menucolor04 a:hover {background: #ee8f49;}
.menucolor05 a:hover {background: #62bf69;}

#text-narrow {
    transform: scale(0.8, 1);
}
	
.techerarea {
	width: 88%;
	margin: 0 auto;
	}

.techerimg {
	width: 40vw;
	margin: 0 auto;
	}
	
.techertitle {
	width: 100%;
	}
	
.techername {
	font-size: 5vw;
	padding-bottom: 1vh;
	margin: 3vh 0 1.5vh 0;
	border-bottom: 1px solid #000;
	font-weight: bold;
	text-align: center;
	}
	
.techername span {
	font-size: 4vw;
	font-weight: normal;
	}
	
.responsible {
	font-size: 3.5vw;
	margin-bottom: 1vh;
	}
	
.techerkoza li {
	width: 100%;
	text-align: center;
	font-size: 3.3vw;
	padding: 1vh 0;
	margin-bottom: 1.1vh;
	}
	
.techertitle li.kzzp {color: #499bee;border: solid 1px #499bee;}
.techertitle li.kzmd {color: #f499ac;border: solid 1px #f499ac;}
.techertitle li.kzpt {color: #e399f3;border: solid 1px #e399f3;}
.techertitle li.kzit {color: #ee8f49;border: solid 1px #ee8f49;}
.techertitle li.kzfn {color: #62bf69;border: solid 1px #62bf69;}
	
.qaarea {
	clear: both;
	border-bottom: 1px solid #000;
	margin-bottom: 5vh;
	}
	
.qatitle {
	font-size: 4.6vw;
	padding-bottom: 1vh;
	margin: 5vh 0 5vh 0;
	border-bottom: 1px solid #000;
	}
	
.qatitle span {color: #499bee;}
	
.qa1 {
	font-size: 3.7vw;
	margin-bottom: 4vw;
	padding-left: 1.4vw;
	border-left :solid 3px #000;
	}
	
.qa2 p {
	font-size: 3.3vw;
	margin-bottom: 5vh;
	padding-left: 1vw;
	line-height: 1.8em;
	}
	
.profilearea {
	margin-bottom: 8vh;
	border-bottom: 1px solid #000;
	}
	
.profiletitle {
	font-size: 3.7vw;
	margin-bottom: 4vw;
	}

}


	

@media print, screen and (min-width: 769px){

/*
**  pc
============== ============== ============== ============== ============== ============== ============== */
/*///////////////// 講師紹介top //////////////////*/
	
/*///////// タブメニュー //////////*/	
.tabs {
	width: 1040px;
	margin: 0 auto;
	padding: 0;
	clear: both;
	}
	
.tab-outer {
	display: block;
	}
	
#tabbtn {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	}
	
#tabbtn li {margin: 0px;}

#tabbtn li a{
	width: 163px;
	height: 55px;
	font-size: 19px;
	display: flex;
	align-items: center;
	justify-content: center;
	}
	
#tabbtn li.itiran a {color: #7d7d7d;border: solid 2px #7d7d7d;}
#tabbtn li.zenpan a {color: #499bee;border: solid 2px #499bee;}
#tabbtn li.medical a {color: #f16482;border: solid 2px #f16482;}
#tabbtn li.patent a {color: #b769c8;border: solid 2px #b769c8;}
#tabbtn li.it a {color: #ee8f49;border: solid 2px #ee8f49;}
#tabbtn li.finance a {color: #62bf69;border: solid 2px #62bf69;margin-bottom: 60px;}
	
#tabbtn li.itiran  a:hover,
#tabbtn li.itiran.is-active a {
	background: #7d7d7d;
	color: #fff;
	}
	
#tabbtn li.itiran_on a {
	background: #7d7d7d;
	color: #fff;
	border: solid 2px #7d7d7d;
	}
	
#tabbtn li.zenpan  a:hover,
#tabbtn li.zenpan.is-active a {
	background: #499bee;
	color: #fff;
	}
	
#tabbtn li.zenpan_on a {
	background: #499bee;
	color: #fff;
	border: solid 2px #499bee;
	}
	
#tabbtn li.medical a:hover,
#tabbtn li.medical.is-active a {
	background: #f16482;
	color: #fff;
	}
	
#tabbtn li.medical_on a {
	background: #f16482;
	color: #fff;
	border: solid 2px #f16482;
	}
	
#tabbtn li.patent a:hover,
#tabbtn li.patent.is-active a {
	background: #b769c8;
	color: #fff;
	}
	
#tabbtn li.patent_on a {
	background: #b769c8;
	color: #fff;
	border: solid 2px #b769c8;
	}
	
#tabbtn li.it a:hover,
#tabbtn li.it.is-active a {
	background: #ee8f49;
	color: #fff;
	}
	
#tabbtn li.it_on a {
	background: #ee8f49;
	color: #fff;
	border: solid 2px #ee8f49;
	}
	
#tabbtn li.finance a:hover,
#tabbtn li.finance.is-active a {
	background: #62bf69;
	color: #fff;
	}
	
#tabbtn li.finance_on a {
	background: #62bf69;
	color: #fff;
	border: solid 2px #62bf69;
	margin-bottom: 60px;
	}
	
#tab_con {margin-bottom: 125px;}

.tabspmenu {display:none}

.teacher {
	clear: both;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	}
	
.teacher li {
	border: solid 1px #cacaca;
	margin-bottom: 15px;
	margin: 0 7px 15px 7px;
	}
	
.teacher li img {width: 192px;}

.teacher li p {
	color: #000;
	text-align: center;
	font-size: 15px;
	padding: 10px 0;
	}
	
.teacher li.space {
	height: 192px;
	border: solid 1px #fff;
	}
	
	
	
/*///////////////// 講師紹介_講師詳細 //////////////////*/
	
/*///////// サイドメニュー //////////*/
	
/* サイドオープン時にメインコンテンツを覆う部分 */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 3;
}
.overlay::after {
  visibility: hidden;
  position: fixed;
  top: 40%;
  left: 0;
  display: block;
  width: 100%;
  height: 50px;
  color: rgba(255,255,255,0);
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0,0,0,.4);
}
.side-open .overlay::after {
  visibility: visible;
  color: rgba(255,255,255,.8);
}

.allarea {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 2;
}
	
/* サイドメニュー ※リストのスタイルは省略 */
.side-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 270px;
	height: 100%;
	padding: 20px 18px 0 0;
	text-align: left;
	font-size: 13px;
	background: #fff;
	z-index: 1;
	overflow-y: auto;
}


/* 開閉用ボタン ※ボタンの細かいスタイルは省略 */
	
.side-menu-btn {
  position: fixed;
  top: 200px;
  right: -16px;
  width: 90px;
  cursor: pointer;
  z-index: 4;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  transition-duration: 0.5s;
}
	
.side-menu-btn:hover { transform:translateX(-14px); }

/* サイドメニューオープン */
.side-open .allarea,
.side-open .overlay,
.side-open .side-menu-btn {
  -webkit-transform: translate3d(-310px, 0, 0);
  transform: translate3d(-310px, 0, 0);
}
	
	
/*///////// サブメニュー //////////*/
.accordion {
    background: #FFF;
 }

.accordion .link {
	cursor: pointer;
	display: block;
	padding: 10px 0;
	font-size: 18px;
	text-align: center;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
	
.adcolor01 {color: #499bee;}
.adcolor02 {color: #f16482;}
.adcolor03 {color: #b769c8;}
.adcolor04 {color: #ee8f49;}
.adcolor05 {color: #62bf69;}
	
.accordion li{
	margin: 5px 0;
	}

.accordion li:last-child .link {
    border-bottom: 0;
}

.accordion li i {
    position: absolute;
    top: 16px;
    left: 12px;
    font-size: 18px;
    color: #595959;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
    right: 12px;
    left: auto;
    font-size: 16px;
}
	
.accordion li.open i.fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.accordion li.default .submenu {display: block;}
/**
 * Submenu
 -----------------------------*/

.accordion li.zenpan {border: solid 2px #499bee; border-radius: 3px;}
.accordion li.medical {border: solid 2px #f16482; border-radius: 3px;}
.accordion li.tokkyo {border: solid 2px #b769c8; border-radius: 3px;}
.accordion li.it-denki {border: solid 2px #ee8f49; border-radius: 3px;}
.accordion li.kinyu {border: solid 2px #62bf69; border-radius: 3px;}
	
.submenu {
    display: none;
    font-size: 13px;
	padding: 0 10px 8px;
 }

.submenu li {
	padding: 0 0 0 0;
	display: block;}

.submenu li.kzlevel01{color: #499bee; margin-top: 8px;}
.submenu li.kzlevel02{color: #f16482; margin-top: 8px;}
.submenu li.kzlevel03{color: #b769c8; margin-top: 8px;}
.submenu li.kzlevel04{color: #ee8f49; margin-top: 8px;}
.submenu li.kzlevel05{color: #62bf69; margin-top: 8px;}

.submenu a {
    display: block;
	padding: 3px 0 2px 10px;
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
 }

 .submenu a:hover {
    color: #FFF;
 }
	
.menucolor01 a:hover {background: #499bee;}
.menucolor02 a:hover {background: #f16482;}
.menucolor03 a:hover {background: #b769c8;}
.menucolor04 a:hover {background: #ee8f49;}
.menucolor05 a:hover {background: #62bf69;}

#text-narrow {
    transform: scale(0.8, 1);
}
	
.techerarea {
	width: 1030px;
	margin: 0 auto;
	}

.techerimg {
	float: left;
	width: 200px;
	margin-bottom: 80px;
	}
	
.techertitle {
	float: right;
	width: 800px;
	}
	
.techername {
	font-size: 27px;
	padding-bottom: 20px;
	margin-bottom: 15px;
	border-bottom: 1px solid #000;
	font-weight: bold;
	}
	
.techername span {
	font-size: 20px;
	font-weight: normal;
	}
	
.responsible {
	font-size: 14px;
	margin-bottom: 5px;
	}
	
.techerkoza {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	}
	
.techerkoza li {
	width: 395px;
	text-align: center;
	font-size: 14px;
	padding: 6px 0;
	margin-bottom: 7px;
	}
	
.techertitle li.kzzp {color: #499bee;border: solid 1px #499bee;}
.techertitle li.kzmd {color: #f499ac;border: solid 1px #f499ac;}
.techertitle li.kzpt {color: #e399f3;border: solid 1px #e399f3;}
.techertitle li.kzit {color: #ee8f49;border: solid 1px #ee8f49;}
.techertitle li.kzfn {color: #62bf69;border: solid 1px #62bf69;}
	
.qaarea {
	clear: both;
	border-bottom: 1px solid #000;
	margin-bottom: 40px;
	}
	
.qatitle {
	font-size: 23px;
	padding-bottom: 10px;
	margin-bottom: 45px;
	border-bottom: 1px solid #000;
	}
	
.qatitle span {color: #499bee;}
	
.qa1 {
	font-size: 18px;
	margin-bottom: 20px;
	padding-left: 15px;
	border-left :solid 5px #000;
	}
	
.qa2 p {
	font-size: 16px;
	margin-bottom: 45px;
	padding-left: 20px;
	line-height: 1.9em;
	}
	
.profilearea {
	margin-bottom: 150px;
	border-bottom: 1px solid #000;
	}
	
.profiletitle {
	font-size: 18px;
	margin-bottom: 10px;
	}

}