@charset "utf-8";

/*//////////////////////////////////////////////////////////
アカデミー法人研修ページ用CSS
作成：2020/05/18

※※名前のルール※※
接頭辞：cotr（corporate traning）を付け、その後ろに
内容を表す略字を入れる。その際単語の頭は大文字とする。
例. 「主な法人研修用」の場合
#cotrMTWrap（MTはMain Traningの略）
//////////////////////////////////////////////////////////*/

/*===========================================================
法人研修共通パーツ
===========================================================*/

/*==================== カスタムプロパティ ====================*/
:root {
  --blueGrayDark: #5D7384;
  --blueGrayMoreDark: #405668;
  --blueGrayLight: #A8B8C4;
  --bgGlay: #EFEFEF;
  --bgBlueGray: #EBEFF2;
  --bgBlueGrayLight: #F5F8FB;
  --bgRed: #9E4C4C;
  --greenDark: #4C9E97;
  --greenLight: #D4F0EE;
  --blueDark: #39709A;
  --blueLight: #E7F1F9;
  --blueBright: #4884A0;
}

/*==================== default tag ====================*/
#cotrWrap ul,#cotrWrap ul li,#cotrWrap ol,#cotrWrap ol li,#cotrWrap dl,#cotrWrap dl dt,#cotrWrap dl dd,#cotrWrap h1,#cotrWrap h2,#cotrWrap h3,#cotrWrap h4,#cotrWrap h5,#cotrWrap h6 {
	margin: 0px;
	padding: 0px;
}

#cotrWrap h1,#cotrWrap h2,#cotrWrap h3,#cotrWrap h4,#cotrWrap h5,#cotrWrap h6 {
	color: #000000;
	text-align: center;
	border-style: none;
	font-weight: 500;
}
#cotrWrap h1::before,
#cotrWrap h2::before,
#cotrWrap h3::before,
#cotrWrap h4::before,
#cotrWrap h5::before,
#cotrWrap h5::before {
	display: none;
}

#cotrWrap h2 {
	font-size: 225%;
	margin-bottom: 40px;
}
#cotrWrap h3 {
	font-size: 187.5%;
	margin-bottom: 30px;
}
#cotrWrap h4 {
	font-size: 162.5%;
	margin-bottom: 20px;
}
#cotrWrap h5 {
	font-size: 137.5%;
	margin-bottom: 10px;
}
#cotrWrap h6 {
	font-size: 112.5%;
	font-weight: bold;
	margin-bottom: 10px;
	color: #555555;
}

#cotrWrap p {
	margin-bottom: 1em;
}

#cotrWrap em {
  color: var(--blueBright);
  font-weight: bold;
  font-style: normal;
}

#cotrWrap table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 2px 2px;
}
#cotrWrap table th {
	background-color: var(--blueGrayDark);
	color: #FFFFFF;
	padding-top: 20px;
	padding-right: 30px;
	padding-left: 30px;
	padding-bottom: 20px;
	width: 25%;
	white-space: nowrap;
	font-weight: normal;
	vertical-align: top;
	text-align: center;
}
#cotrWrap table td {
	background-color: var(--bgGlay);
	padding-top: 20px;
	padding-right: 30px;
	padding-left: 30px;
	padding-bottom: 20px;
	text-align: left;
}

#cotrWrap table ul {
	list-style-type: disc;
	padding-left: 1.5em;
}
#cotrWrap table ol {
	list-style-type: decimal;
	padding-left: 1.5em;
}

#cotrWrap table li::before {
	display: none;
}

#cotrWrap table ul + ul,
#cotrWrap table ul + ol,
#cotrWrap table ol + ol,
#cotrWrap table ol + ul {
	margin-top: 20px;
}

#cotrWrap ul {
	list-style-type: none;
}

#cotrWrap ul + ul,
#cotrWrap ul + ol,
#cotrWrap ol + ol,
#cotrWrap ol + ul {
	margin-top: 40px;
}

/* リストスタイルのノーマル表示 */
#cotrWrap ul.cotrLstNormal {
  list-style-type: disc !important;
	margin-left: 2em;
	margin-bottom: 1em;
}
#cotrWrap ol.cotrLstNormal {
  list-style-type: decimal !important;
	margin-left: 2em;
	margin-bottom: 1em;
}
#cotrWrap ul.cotrLstNormal li,
#cotrWrap ol.cotrLstNormal li {
  margin-bottom: 10px;
}

@media screen and (max-width: 992px) {
	#cotrWrap table th {
    width: 34%;
	}
}

@media screen and (max-width: 768px) {

	#cotrWrap h2 {
		font-size: 162.5%;
		margin-bottom: 20px;
	}
	#cotrWrap h3 {
		font-size: 137.5%;
		margin-bottom: 20px;
	}
	#cotrWrap h4 {
		font-size: 155%;
	margin-bottom: 20px;
	}
	#cotrWrap h5 {
		font-size: 125%;
	}
	#cotrWrap h6 {
		font-size: 100%;
	}

	#cotrWrap table th {
    display: block;
    width: 100%;
    padding-top: 10px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 10px;
    font-size: 112.5%;
	}
	#cotrWrap table td {
		display: block;
		padding: 15px;
	}

	#cotrWrap ul + ul,
	#cotrWrap ul + ol,
	#cotrWrap ol + ol,
	#cotrWrap ol + ul {
		margin-top: 20px;
	}

}

@media screen and (max-width: 480px) {

	#cotrWrap ul.cotrLstNormal {
		margin-left: 1.2em;
	}
	#cotrWrap ol.cotrLstNormal {
		margin-left: 1.2em;
	}

}

/*-------------------- アンカー --------------------*/
#cotrWrap a {
	color: #1c6ab3;
}
#cotrWrap a:hover {
	text-decoration: none;
	opacity: 0.6;
	filter: alpha(opacity=60); /* ie lt 8 */
	-ms-filter: "alpha(opacity=60)"; /* ie 8 */
	-moz-opacity: 0.6; /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.6; /* Safari 1.x */
	zoom: 1;
}

/*-------------------- 改行 --------------------*/
#cotrWrap br.spOnly,
#cotrWrap br.spOnly + br,
#cotrWrap br.pcOnly + br{
	display: none;
}

@media screen and (max-width: 768px) {

	#cotrWrap br.pcOnly {
		display: none;
	}
	#cotrWrap br.spOnly {
		display: block;
	}

}

/*-------------------- 注意書きリスト --------------------*/
#cotrWrap ul.note li {
  font-size: 14px;
  text-indent: -1em;
  padding-left: 1em;
}


/*==================== 全体をWrap ====================*/
#cotrWrap {
	line-height: 1.8;
}


/*==================== ナビゲーション ====================*/
nav#cotrNav {
	border-top: 2px solid #CCCCCC;
	text-align: center;
	padding-top: 20px;
	margin-bottom: 45px;
}

#cotrNavBoxHdr {
	display: none;
}

nav#cotrNav ul {
	width: 100%;
	max-width: 1000px;
	text-align: center;
	list-style-type: none;
}

nav#cotrNav ul li {
	display: inline-block;
	padding-left: 15px;
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_nav_arrow.png);
	background-position: left 0.6em;
	background-size: 10px auto;
	background-repeat: no-repeat;
	font-size: 16px;
	margin-left: 15px;
	margin-right: 15px;
  position: relative;
}

nav#cotrNav ul li a {
	color: #000000;
}
nav#cotrNav ul li a.active {
	opacity: 0.5;
	filter: alpha(opacity=50); /* ie lt 8 */
	-ms-filter: "alpha(opacity=50)"; /* ie 8 */
	-moz-opacity: 0.5; /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.5; /* Safari 1.x */
	zoom: 1;
}

nav#cotrNav ul li::before {
	display: none;
}

.cotrSnrCBCWrap nav#cotrNav ul.cotrSubMenu li:first-child {
  display: none;
}

@media screen and (min-width: 768px) {
	nav#cotrNav.fixed {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		width: 100%;
		padding-bottom: 20px;
		text-align: center;
		/*background-color: rgba(255,255,255,0.90); 背景を半透明にする場合はこちらを使用*/
		background-color: #FFFFFF;
		border-top-style: none;
		border-bottom: 1px solid #DEDEDE;
	}
	nav#cotrNav.fixed ul {
		max-width: auto;
		display: inline-block;
	}
}

@media screen and (max-width: 992px) {

	nav#cotrNav ul li {
		margin-left: 3px;
		margin-right: 3px;
		font-size: 93.8%;
	}
	nav#cotrNav ul li:first-child {
		margin-left: 0;
	}
	nav#cotrNav ul li:last-child {
		margin-right: 0;
	}

}

@media screen and (max-width: 768px) {

	nav#cotrNav {
		text-align: left;
		padding-top: 0;
		margin-bottom: 30px;
		border-style: none;
	}

	#cotrNavBox {
		border: 1px solid #CCCCCC;
	}

	#cotrNavBoxHdr {
		display: block;
		padding-top: 10px;
		padding-right: 10px;
		padding-left: 2.5em;
		padding-bottom: 10px;
		background-color: #ededed;
		color: #000000;
		position: relative;
		line-height: 1.5;
	}

	#cotrNavBoxHdr::before {
		content: "\f067";
		font-size: 100%;
		color: #FFFFFF;
		font-weight: 600;
		font-family: "Font Awesome 5 Free";
		display: inline-block;
		background-color: #000000;
		line-height: 100%;
		position: absolute;
		left: 10px;
		top: 0.6em;
		padding-top: 3px;
		padding-right: 4px;
		padding-left: 4px;
		padding-bottom: 3px;
	}
	#cotrNavBoxHdr.open::before {
		content: "\f068";
	}

	#cotrNavBoxContents {
		margin: 20px;
		display: none;
	}

	nav#cotrNav ul li {
		display: block;
		background-position: left 0.6em;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 0.6em;
		text-align: left;
		font-size: 100%;
    position: relative;
	}
	nav#cotrNav ul li:last-child {
		margin-bottom: 0;
	}

  .cotrSnrCBCWrap #cotrNavBoxContents > ul > li:first-child > a {
    pointer-events: none;
  }

}

/*-------------------- 2階層目 --------------------*/
nav#cotrNav ul ul.cotrSubMenu {
  width: auto;
  position: absolute;
  top: 2em;
  left: 50%;
  transform: translateX(calc(-50% + 10px));
}

nav#cotrNav ul ul.cotrSubMenu li {
	display: block;
  height: 0;
  overflow: hidden;
  transition: 0.5s;
  background-color: rgba(255,255,255,0.9);
  background-image: none;
  padding-left: 0;
  margin: 0;
  opacity: 0;
}
nav#cotrNav ul ul.cotrSubMenu li a {
  display: block;
  white-space: nowrap;
  padding: 0.5em 15px;
}

#cotrNavBoxContents > ul > li:hover ul.cotrSubMenu li {
  height: 2.8em;
  overflow: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {

  nav#cotrNav ul ul.cotrSubMenu {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }

  #cotrNavBoxContents > ul > li ul.cotrSubMenu li a {
    padding-left: 0;
  }
  .cotrSnrCBCWrap nav#cotrNav ul.cotrSubMenu li:first-child {
    display: block;
  }

}


/*==================== お問い合わせ ====================*/
.cotrContact {
	width: 100%;
	text-align: center;
	margin-bottom: 80px;
}

#cotrWrap .cotrContact h1 {
	font-size: 137.5%;
	margin-top: 15px;
	margin-bottom: 25px;
	line-height: 1.6;
}
#cotrWrap .cotrContact h1 span {
	display: inline-block;
	margin-right: 1em;
}

#cotrWrap .cotrContact a {
	display: inline-block;
	padding-top: 25px;
	padding-right: 60px;
	padding-left: 60px;
	padding-bottom: 25px;
	background-color: var(--bgRed);
	color: #FFFFFF;
	font-size: 162.5%;
	font-weight: 500;
	border-radius: 10px;
	line-height: 100%;
}

/*-------------------- 資料ダウンロードボタンありの場合 --------------------*/
#cotrWrap .cotrContact .cotrContactBtnWrap {
	display: flex;
	align-content: center;
	justify-content: center;
}

#cotrWrap .cotrContact .cotrContactBtnWrap a {
	width: 12em;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-left: 20px;
	margin-right: 20px;
	padding-top: 17px;
	padding-right:1.5em;
	padding-left: 1.5em;
	padding-bottom: 17px;
	font-size: 150%;
}
#cotrWrap .cotrContact .cotrContactBtnWrap a span {
	width: 100%;
	font-size: 0.875rem;
}

@media all and (-ms-high-contrast: none){
	/* IE10以上に適用 */
	#cotrWrap .cotrContact a {
		padding-top: 30px;
		padding-bottom: 20px;
	}
}

.cotrContact#cotrContactLast {
	margin-bottom: 0px;
}

@media screen and (max-width: 768px) {

	#cotrWrap .cotrContact {
	padding: 18px;
	margin-bottom: 40px;
	border: 2px solid #9FAFBC;
	border-radius: 6px;
	}

	#cotrWrap .cotrContact p {
		text-align: left;
		margin-top: -0.3em;
	}

	#cotrWrap .cotrContact h1 {
		font-size: 100%;
		margin-top: 8px;
		margin-bottom: 14px;
		font-weight: bold;
	}
	#cotrWrap .cotrContact h1 span {
		display: block;
		margin-right: 0;
	}

	#cotrWrap .cotrContact a {
		width: 90%;
		max-width: 300px;
		padding: 15px;
		font-size: 112.5%;
		border-radius: 6px;
	}

	/*-------------------- 資料ダウンロードボタンありの場合 --------------------*/
	#cotrWrap .cotrContact .cotrContactBtnWrap {
		display: block;
	}

	#cotrWrap .cotrContact .cotrContactBtnWrap a {
		width: 13em;
		display: block;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 1em;
		padding-right: 0.6em;
		padding-left: 0.6em;
    font-size: 112.5%;
	}

	#cotrWrap .cotrContact .cotrContactBtnWrap a:last-child {
		margin-bottom: 0;
	}

	#cotrWrap .cotrContact .cotrContactBtnWrap a span {
		font-size: 80%;
	}

}

@media screen and (max-width: 400px) {
	#cotrWrap .cotrContact .cotrContactBtnWrap a {
		width: 100% !important;
	}
}


/*==================== 注意書き ====================*/
#cotrWrap table ul.cotrNote {
	list-style-type: none;
	padding-left: 0;
}
#cotrWrap ul.cotrNote li {
	padding-left: 1em;
	text-indent: -1em;
  text-align: left;
  line-height: 1.5;
}
#cotrWrap ul.cotrNote li::before {
	display: none;
}

#cotrWrap table + ul.cotrNote {
	margin-top: 20px;
}

#cotrWrap .cotrMTCustomInfo + ul.cotrNote {
	margin-top: 10px;
}

@media screen and (max-width: 768px) {
	#cotrWrap table ul.cotrNote {
		font-size: 87.5%;
	}
}



/*===========================================================
法人研修トップページ
===========================================================*/

/*==================== メインビジュアル ====================*/
#cotrMainVsl {
	width: 100%;
	padding-left: 50px;
	padding-right: 50px;
	padding-top: 60px;
	padding-bottom: 50px;
	margin-bottom: 70px;
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_top_main_img.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 10px;
	color: #000000;
}

#cotrWrap #cotrMainVsl h1 {
	font-size: 275%;
	line-height: 1.5;
	font-weight: bold;
	text-align: left;
}

#cotrWrap #cotrMainVsl p {
	margin-top: 1.5em;
	text-shadow: 0 0 10px #FFFFFF;
	font-weight: 500;
}

@media screen and (max-width: 768px) {

	#cotrMainVsl {
		padding-left: 15px;
		padding-right: 15px;
		padding-top: 55%;
		padding-bottom: 20px;
		margin-bottom: 0;
		background-image: url(https://academy.impress.co.jp/event/common/images/training/training_top_main_img_sp.jpg);
		background-position: center top;
		background-size: 100% auto;
		text-align: center;
		border-radius: 6px;
	}

	#cotrWrap #cotrMainVsl h1 {
		display: inline-block;
		text-align: left;
		font-size: 162.5%;
		line-height: 1.5;
		margin-bottom: 15px;
	}

	#cotrWrap #cotrMainVsl h1 br {
		display: none;
	}

	#cotrWrap #cotrMainVsl p {
	text-align: left;
	margin-top: 0;
	}

	#cotrMainVsl p br {
		display: none;
	}

}

@media screen and (max-width: 500px) {

	#cotrWrap #cotrMainVsl h1 br {
		display: block;
	}

}


/*==================== 主な提供研修 ====================*/
#cotrMTWrap {
	margin-bottom: 70px;
}

/*-------------------- 各研修内容一覧 --------------------*/
#cotrMTBoxWrap {
	display: flex;
	flex-wrap: wrap;
}

/*-------------------- Box --------------------*/
#cotrMTBoxWrap .cotrMTBox {
  display: flex;
  flex-direction: column;
	width: calc(33.3% - 26.67px);
  margin-right: 40px;
	margin-bottom: 40px;
  padding: 25px;
	font-size: 1rem;
	justify-content: space-between;
	align-items: center;
	background-color: var(--bgGlay);
	border-radius: 6px;
	color: #555555;
	background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

/* new icon --------------------*/
.newIcon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-bottom: 5em solid transparent;
  border-right: 5em solid #199AE1;
  z-index: 100;
}
.newIcon::after {
  content: "NEW";
  display: block;
  position: absolute;
  top: 0.8em;
  right: 0.5em;
  transform: rotate(45deg);
  color: #fff;
  z-index: 101;
}

@media screen and (max-width: 1200px) {
  #cotrMTBoxWrap .cotrMTBox {
  width: calc(33.3% - 23.33px);
  margin-right: 35px;
  margin-bottom: 35px;
  padding-top: 25px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 25px;
  }
}

/* 6件表示はここをイキ */
#cotrMTBoxWrap .cotrMTBox:nth-of-type(3n) {
	margin-right: 0;
}

@media screen and (max-width: 992px) {

  #cotrMTBoxWrap .cotrMTBox {
    width: calc(50% - 15px);
    margin-right: 30px;
    margin-bottom: 30px;
  }

  #cotrMTBoxWrap .cotrMTBox:nth-of-type(2n) {
    margin-right: 0;
  }

  /* 6件表示はここをイキ */
  #cotrMTBoxWrap .cotrMTBox:nth-of-type(3n) {
    margin-right: 30px;
  }

}

@media screen and (max-width: 768px) {
  #cotrMTBoxWrap .cotrMTBox {
    width: 100%;
    margin-right: 0 !important;
  }
}

#cotrMTBoxWrap .cotrMTBox:last-child {
	margin-right: 0;
}

#cotrMTBoxWrap .cotrMTBox.cotrDE {
	/*width: calc(50% - 20px);
  padding: 35px;  6件表示は上と合わせて2行をコメントアウト */
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_dx_expert.svg);
  background-position: bottom -20px right -50px;
  background-size: 240px auto;
  background-image: url("https://academy.impress.co.jp/event/common/images/training/training_icon_dx_expert.svg");
}
#cotrMTBoxWrap .cotrMTBox.cotrCBC {
	/*width: calc(50% - 20px);
  padding: 35px;  6件表示は上と合わせて2行をコメントアウト */
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_cbc.svg);
	background-position: bottom -20px right -50px;
  background-size: 260px auto;
}
#cotrMTBoxWrap .cotrMTBox.cotrGK {
  /*width: calc(50% - 20px);
  margin-right: 0;
  padding: 35px;  6件表示は上と合わせて3行をコメントアウト */
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_gkentei.svg);
  background-position: bottom -20px right -50px;
  background-size: 280px auto;
}
/*#cotrMTBoxWrap .cotrMTBox.cotrAWS {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_aws.svg);
	background-position: bottom -10px right -50px;
  background-size: 240px auto;
}*/
#cotrMTBoxWrap .cotrMTBox.cotrDS {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_datascience.svg);
	background-position: bottom -20px right -50px;
	background-size: 240px auto;
}
#cotrMTBoxWrap .cotrMTBox.cotrBC {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_blockchain.svg);
	background-position: bottom -20px right -50px;
	background-size: 240px auto;
}
#cotrMTBoxWrap .cotrMTBox.cotrCN {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_cloudnative.svg);
	background-position: bottom -25px right -60px;
	background-size: 280px auto;
}

@media screen and (max-width: 992px) {
  #cotrMTBoxWrap .cotrMTBox.cotrCBC,
  #cotrMTBoxWrap .cotrMTBox.cotrGK {
    /*width: calc(50% - 15px);  6件表示後はここをコメントアウト */
  }
}

@media screen and (max-width: 768px) {
  #cotrMTBoxWrap .cotrMTBox.cotrCBC,
  #cotrMTBoxWrap .cotrMTBox.cotrGK {
    /*width: 100%;  6件表示はここをコメントアウト */
  }
}

#cotrWrap .cotrMTBox h3 {
  font-size: 1.375rem;
  line-height: 1.3;
}

.cotrMTBox.cotrDS h3,
.cotrMTBox.cotrBC h3,
.cotrMTBox.cotrCN h3 {
  margin-bottom: 10px !important;
}

/* icon --------------------*/
.cotrMTIcon {
	height: 100px;
  text-align: center;
  margin-bottom: 20px;
}

#cotrWrap .cotrMTIcon img {
	width: auto;
	height: 100%;
}

.cotrMTHdr h3 br {
  display: none;
}

@media screen and (max-width: 1200px) {
  
  /* 6件表示はここをコメントアウト */
  /*.cotrMTBox.cotrDS h3 br,
  .cotrMTBox.cotrBC h3 br,
  .cotrMTBox.cotrCN h3 br {
    display: block;
  }*/

  /* 6件表示はここをイキ */
  .cotrMTBox h3 br {
    display: block;
  }

}

@media screen and (max-width: 992px) {
  .cotrMTBox h3 br {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .cotrMTBox h3 br {
    display: none !important;
  }
}

@media screen and (max-width: 460px) {
  .cotrMTBox h3 br {
    display: block !important;
  }
}

/* detail --------------------*/
#cotrWrap .cotrMTDtl {
  text-align: center;
  flex-grow:1; /* 詳細ボックスの高さを揃える */
}

#cotrWrap .cotrMTDtlTtl {
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* custom info */
.cotrMTCustomInfo {
  display: inline-block;
  background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_customize_2.svg);
  background-position: left 0.3em;
  background-repeat: no-repeat;
  padding-left: 25px;
}

/* detail button */
.cotrMTDtlBtn {
  width: 100%;
	text-align: center;
  margin-top: 30px;
}
#cotrWrap .cotrMTDtlBtn a {
	width: 10em;
	font-size: 137.5%;
	color: var(--blueGrayDark);
	font-weight: 500;
	padding-top: 0.3em;
	padding-right: 1em;
	padding-left: 1em;
	padding-bottom: 0.3em;
	border: 3px solid var(--blueGrayDark);
	border-radius: 10px;
	white-space: nowrap;
	background-color: var(--bgGlay);
	text-align: center;
	box-sizing: border-box;
	display: inline-block;
}

@media screen and (max-width: 1200px) {
  #cotrWrap .cotrMTDtlBtn a {
    width: 80%;
    font-size: 125%;
  }
}


/*==================== カスタマイズ研修 ====================*/
#cotrCTWrap {
	margin-bottom: 70px;
}

/*-------------------- Box --------------------*/
#cotrCTBox {
	background-color: var(--bgBlueGray);
	border-radius: 6px;
	padding-top: 40px;
	padding-left: 50px;
	padding-right: 50px;
	padding-bottom: 50px;
}

#cotrCTBoxIcon {
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}

#cotrWrap #cotrCTBoxIcon img {
	width: 160px;
	height: auto;
}

#cotrWrap #cotrCTBox p {
	width: 78%;
	margin-left: auto;
	margin-right: auto;
}

#cotrWrap #cotrCTBox h3 {
	margin-top: 40px;
	font-size: 200%;
	font-weight: 500;
	color: var(--blueGrayDark);
}

#cotrWrap .cotrCTDtl {
	background-color: #F5F8FB;
	border: 1px solid var(--blueGrayLight);
	border-radius: 6px;
	padding-top: 15px;
	padding-right: 30px;
	padding-left: 40px;
	padding-bottom: 15px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--blueGrayDark);
}
#cotrWrap .cotrCTDtl:last-child {
	margin-bottom: 0;
}

.cotrCTDtlIcon {
	width: 110px;
	flex-shrink: 0;
}
#cotrWrap .cotrCTDtlIcon img {
	width: 100%;
	height: auto;
}

#cotrWrap #cotrCTBox .cotrCTDtl p {
	flex-grow: 1;
	width: auto; /* IE10 */
	padding-left: 30px;
	padding-right: 40px;
	margin: 0;
	font-size: 187.5%;
	font-weight: 500;
}

.cotrCTDtlBtn {
	width: 10em;
}
#cotrWrap .cotrCTDtlBtn a {
	width: 100%;
	font-size: 137.5%;
	color: #FFFFFF;
	font-weight: 500;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-left: 1em;
	padding-bottom: 0.5em;
	border-radius: 10px;
	white-space: nowrap;
	background-color: var(--blueGrayDark);
	text-align: center;
	display: block;
}

@media all and (-ms-high-contrast: none){
	/* IE10以上に適用 */
	.cotrCTDtlBtn {
		padding-top: 0.6em;
	}
}

@media screen and (max-width: 992px) {

	#cotrWrap #cotrCTBox p {
		width: 100%;
	}

	#cotrWrap .cotrCTDtl {
		flex-direction: column;
		padding: 40px;
		margin-bottom: 30px;
	}

	#cotrWrap #cotrCTBox .cotrCTDtl p {
		padding-top: 20px;
		padding-left: 0;
		padding-right: 0;
		margin-bottom: 20px;
	}

	#cotrWrap .cotrCTDtlBtn {
		width: 50%;
	}

}

@media screen and (max-width: 768px) {

	#cotrCTWrap {
		margin-bottom: 40px;
	}

	#cotrCTBox {
		padding: 20px;
	}

	#cotrCTBoxIcon {
		margin-bottom: 10px;
	}

	#cotrWrap #cotrCTBoxIcon img {
		width: 100px;
		margin: auto;
	}

	#cotrWrap #cotrCTBox h3 {
		font-size: 150%;
		margin-top: 10px;
	}

	#cotrWrap .cotrCTDtl {
	padding-top: 20px;
	padding-right: 15px;
	padding-left: 15px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	}

	.cotrCTDtlIcon {
		width: 80px;
	}

	#cotrWrap #cotrCTBox .cotrCTDtl p {
		padding-top: 15px;
		margin-bottom: 15px;
		font-size: 137.5%;
		text-align: center;
	}

	#cotrWrap .cotrCTDtlBtn {
		width: 100%;
	}

	#cotrWrap .cotrCTDtlBtn a {
		font-size: 112.5%;
		border-radius: 6px;
		padding-top: 0.3em;
		padding-bottom: 0.3em;
	}

}

@media screen and (max-width: 480px) {
	.cotrCTDtlBtn {
		width: 100%;
	}
}


/*==================== 研修開始までの流れ ====================*/
#cotrFlwWrap {
	margin-bottom: 70px;
}

/*-------------------- Dl --------------------*/
#cotrWrap #cotrFlwWrap dl {
	display: flex;
	flex-wrap: wrap;
}
#cotrWrap #cotrFlwWrap dl dt {
	width: 280px;
	min-height: 100px;
	font-size: 125%;
	font-weight: 500;
	line-height: 1.6;
	color: #ffffff;
	background-color: var(--blueGrayDark);
	margin-bottom: 75px;
	padding-top: 25px;
	padding-left: 70px;
	padding-right: 25px;
	padding-bottom: 25px;
	display: flex;
	align-items: center;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	background-position: 25px center;
	background-size: 30px auto;
	background-repeat: no-repeat;
}

#cotrWrap #cotrFlwWrap dl dt span {
	display: inline-block;
	text-indent: -999px;
}

#cotrWrap #cotrFlwWrap dl dt:nth-of-type(1) {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_no1.svg);
}
#cotrWrap #cotrFlwWrap dl dt:nth-of-type(2) {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_no2.svg);
}
#cotrWrap #cotrFlwWrap dl dt:nth-of-type(3) {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_no3.svg);
}
#cotrWrap #cotrFlwWrap dl dt:nth-of-type(4) {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_no4.svg);
}
#cotrWrap #cotrFlwWrap dl dt:nth-of-type(5) {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_no5.svg);
}
#cotrWrap #cotrFlwWrap dl dt:nth-of-type(6) {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_no6.svg);
}
#cotrWrap #cotrFlwWrap dl dt:nth-of-type(7) {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_no7.svg);
}
#cotrWrap #cotrFlwWrap dl dt:nth-of-type(8) {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_no8.svg);
}
#cotrWrap #cotrFlwWrap dl dt:nth-of-type(9) {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_no9.svg);
}

#cotrWrap #cotrFlwWrap dl dd {
	width: calc(100% - 280px) ;
	font-size: 112.5%;
	min-height: 100px;
	margin-bottom: 75px;
	background-color: var(--bgGlay);
	padding: 25px;
	display: flex;
	align-items: center;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
	position: relative;
}
#cotrWrap #cotrFlwWrap dl dd::after {
	display: inline-block;
	content: "";
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_flow_arrow.png);
	background-size: 67px auto;
	vertical-align: middle;
	background-repeat: no-repeat;
	width: 67px;
	height: 37px;
	position: absolute;
	left: 25.76%;
	bottom: -56px;
}

#cotrWrap #cotrFlwWrap dl dt.cotrFlwEnd,
#cotrWrap #cotrFlwWrap dl dd.cotrFlwEnd {
	margin-bottom: 0;
}
#cotrWrap #cotrFlwWrap dl dd.cotrFlwEnd::after {
	display: none;
}

@media all and (-ms-high-contrast: none){
	/* IE10以上に適用 */
	#cotrWrap #cotrFlwWrap dl dt {
		padding-top: 24px;
		padding-bottom: 20px;
	}
}

@media screen and (max-width: 992px) {
	#cotrWrap #cotrFlwWrap dl {
		flex-direction: column;
	}

	#cotrWrap #cotrFlwWrap dl dt {
		width: 100%;
		min-height: 57px;
		margin-bottom: 0;
		padding-top: 15px;
		padding-left: 48px;
		padding-right: 15px;
		padding-bottom: 15px;
		border-radius: 6px 6px 0px 0px;
		background-position: 15px center;
		background-size: 20px auto;
	}

	#cotrWrap #cotrFlwWrap dl dd {
	width: 100%;
	min-height: auto;
	margin-bottom: 40px;
	padding-top: 15px;
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 15px;
	border-radius: 0px 0px 6px 6px;
	font-size: 100%;
	}

	#cotrWrap #cotrFlwWrap dl dd::after {
		width: 100%;
		display: inline-block;
		background-position: center top;
		background-size: 47px auto;
		height: 26px;
		left: 0;
		bottom: -33px;
	}

	#cotrWrap #cotrFlwWrap dl dt br {
		display: none;
	}

}

@media screen and (max-width: 768px) {

	#cotrFlwWrap {
		margin-bottom: 40px;
	}

	#cotrWrap #cotrFlwWrap dl dt {
		padding-left: 41px;
		font-size: 112.5%;
		background-size: 17px auto;
	}

}


/*==================== よくあるご質問 ====================*/
#cotrFaqWrap {
	margin-bottom: 70px;
}

.cotrFaqGrp {
	max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid var(--blueGrayDark);
  background-color: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
}

.cotrFaqGrp + .cotrFaqGrp {
  margin-top: 30px;
}

/*-------------------- 質問 --------------------*/
.cotrFaqQ {
	padding-top: 30px;
	padding-left: 70px;
	padding-right: 75px;
	padding-bottom: 30px;
	color: var(--blueGrayDark);
	font-weight: 500;
	font-size: 112.5%;
	position: relative;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.cotrFaqQ:before {
  position: absolute;
  content: " ";
  display: inline-block;
  background: transparent url(https://academy.impress.co.jp/event/common/images/training/training_ico-q.svg) 0% 50% no-repeat;
  background-size: contain;
  width: 16px;
  height: 24px;
  left: 30px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cotrFaqQ:after {
  position: absolute;
  content: " ";
  display: inline-block;
  background: transparent url(https://academy.impress.co.jp/event/common/images/training/training_ico-acc.png) 50% 50% no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
	background-size: contain;
  width: 26px;
  height: 26px;
	right: 30px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.cotrFaqQ.open:after {
  background-image: url(https://academy.impress.co.jp/event/common/images/training/training_ico-acc-03.png);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

/*-------------------- 回答 --------------------*/
.cotrFaqA {
	display: none;
	padding-top: 30px;
	padding-left: 70px;
	padding-right: 30px;
	padding-bottom: 30px;
	position: relative;
	border-top: 1px solid #d3dbe1;
}

.cotrFaqA:before {
  position: absolute;
  content: " ";
  display: inline-block;
  background: transparent url(https://academy.impress.co.jp/event/common/images/training/training_ico-a.svg) 0% 50% no-repeat;
  background-size: contain;
  width: 23px;
  height: 24px;
	left: 26px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {

  .cotrFaqQ {
    cursor: pointer;
  }

	.cotrFaqQ:hover {
    background-color: #f6f5ee;
  }

}

@media screen and (max-width: 768px) {

	#cotrFaqWrap {
		margin-bottom: 40px;
	}

	.cotrFaqGrp + .cotrFaqGrp {
		margin-top: 15px;
	}

	.cotrFaqQ {
		padding-top: 10px;
		padding-left: 40px;
		padding-right: 45px;
		padding-bottom: 10px;
		font-size: 100%;
	}

	.cotrFaqQ:before {
		left: 14px;
	}

	.cotrFaqQ:after {
		right: 15px;
	}

	.cotrFaqA {
		padding-top: 10px;
		padding-left: 40px;
		padding-right: 15px;
		padding-bottom: 10px;
	}

	.cotrFaqA:before {
		left: 9px;
	}

}



/*===========================================================
法人研修詳細ページ
===========================================================*/

/*==================== メインビジュアル ====================*/
#cotrWrap h1#cotrSnrMainVsl {
	width: 100%;
	padding-left: 50px;
	padding-right: 50px;
	padding-top: 70px;
	padding-bottom: 70px;
	margin-bottom: 40px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 10px;
	color: #FFFFFF;
	font-size: 275%;
	line-height: 1.5;
	font-weight: bold;
	text-align: left;
	text-shadow: 1px 2px 1px #000000; 
}

#cotrWrap.cotrSnrDEWrap h1#cotrSnrMainVsl {
  background-image: url(https://academy.impress.co.jp/event/common/images/training/dx-expert/training_de_main_img.jpg);
  color: #0e588a;
  text-shadow: 0 0 10px #FFFFFF, 0 0 10px #FFFFFF, 0 0 10px #FFFFFF, 0 0 10px #FFFFFF, 0 0 10px #FFFFFF;
}
#cotrWrap.cotrSnrCBCWrap h1#cotrSnrMainVsl {
  background-image: url(https://academy.impress.co.jp/event/common/images/training/cbc/training_cbc_main_img.png);
  color: #0e588a;
  text-shadow: 0 0 10px #FFFFFF, 0 0 10px #FFFFFF, 0 0 10px #FFFFFF, 0 0 10px #FFFFFF, 0 0 10px #FFFFFF;
}
.cotrSnrGKWrap h1#cotrSnrMainVsl {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_gk_main_img.jpg);
}
.cotrSnrAwsWrap h1#cotrSnrMainVsl {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_aws_main_img.jpg);
}
.cotrSnrDSWrap h1#cotrSnrMainVsl {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_ds_main_img.jpg);
}
.cotrSnrBCWrap h1#cotrSnrMainVsl {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_bc_main_img.jpg);
}
.cotrSnrCNWrap h1#cotrSnrMainVsl {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_cn_main_img.jpg);
}

.cotrSnrRead {
	margin-left: 30px;
	margin-right: 30px;
	margin-bottom: 70px;
	font-weight: bold;
	color: #000000;
}

@media screen and (max-width: 992px) {
	#cotrWrap h1#cotrSnrMainVsl br {
		display: none;
	}
}

@media screen and (max-width: 768px) {

	#cotrWrap h1#cotrSnrMainVsl {
		padding: 20px;
		margin-bottom: 30px;
		background-position: left center;
		background-size: cover;
		border-radius: 6px;
		font-size: 162.5%;
	}

	.cotrSnrRead {
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 40px;
		font-weight: 500;
	}

}


/*==================== 本研修の特徴 ====================*/
#cotrSnrFetrWrap {
	margin-bottom: 70px;
}

#cotrSnrFetrWrap ul li {
	font-weight: 500;
	position: relative;
	padding-left: 34px;
	margin-bottom: 10px;
}
#cotrSnrFetrWrap > ul > li:before {
	content: " ";
	position: absolute;
	display: inline-block;
	width: 24px;
	height: 24px;
	background: transparent url(https://academy.impress.co.jp/event/common/images/training/training_icon_point.svg) 0% 0% no-repeat;
	background-size: 100% auto;
	top: 0;
	left: 0;
}

#cotrSnrFetrWrap ul li ul {
	margin-bottom: 30px;
}
#cotrSnrFetrWrap ul li ul li {
	padding-left: 22px;
}
#cotrSnrFetrWrap ul li ul li:before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0.8em;
    width: 0.75em;
    height: 0.75em;
    background: transparent url(https://academy.impress.co.jp/event/common/images/training/training_icon_li.svg) 50% 50% no-repeat;
    -moz-background-size: contain;
    -o-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
}

#cotrSnrFetrWrap ul li h3 {
  font-size: 125%;
	font-weight: bold;
  text-align: left;
  margin-bottom: 20px;
  color: var(--blueBright);
	line-height: 1.5;
}

@media screen and (max-width: 768px) {
	#cotrSnrFetrWrap ul li h3 {
		font-size: 112.5%;
	}
}


/*==================== 習得可能なスキル ====================*/
#cotrSnrSklWrap {
	margin-bottom: 70px;
}

/*-------------------- Box --------------------*/
.cotrSnrSklBox {
	display: flex;
	background-color: var(--bgGlay);
	border-radius: 6px;
	margin-bottom: 30px;
	padding: 40px;
	color: #555555;
	background-position: 115% 60%;
	background-size: 370px auto;
	background-repeat: no-repeat;
}
.cotrSnrDSWrap .cotrSnrSklBox {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_datascience.svg);
}
.cotrSnrBCWrap .cotrSnrSklBox {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_blockchain.svg);
}
.cotrSnrCNWrap .cotrSnrSklBox {
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_cloudnative.svg);
}

.cotrSnrSklBox:last-child {
	margin-bottom: 0;
}

.cotrSnrSklIcon {
	width: 130px;
	flex-shrink: 0;
}
#cotrWrap .cotrSnrSklIcon img {
	width: 100%;
	height: auto;
}

.cotrSnrSklDtl {
	padding-left: 40px;
}

#cotrWrap .cotrSnrSklDtl h3 {
	text-align: left;
	margin-bottom: 20px;
}
#cotrWrap .cotrSnrSklDtl h4 {
	text-align: left;
	font-size: 100%;
	font-weight: bold;
	color: var(--blueGrayDark);
	margin-top: 0;
	margin-bottom: 10px;
}

.cotrSnrSklInfo {
	padding-top: 15px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 15px;
	background-color: #FFFFFF;
	border-radius: 6px;
}

#cotrWrap .cotrSnrSklInfo a {
	color: var(--blueGrayMoreDark);
}
#cotrWrap .cotrSnrSklInfo a::after {
	content: "\f35d";
	font-size: 87.5%;
  color: var(--blueGrayLight);
	font-weight: 600;
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	margin-left: 0.3em;
}

@media screen and (max-width: 992px) {

	.cotrSnrSklBox {
		flex-direction: column;
		background-position: 112% 105%;
		background-size: 240px auto;
	}

	.cotrSnrSklIcon {
		width: 100%;
		padding-right: 0;
		text-align: center;
	}
	#cotrWrap .cotrSnrSklIcon img {
		width: 80px;
	}

	.cotrSnrSklDtl {
		width: 100%;
		padding: 0;
	}

	#cotrWrap .cotrSnrSklDtl h3 {
		text-align: center;
		margin-top: 20px;
	}

	.cotrSnrSklInfo {
		padding-top: 10px;
		padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 10px;
	}

}

@media screen and (max-width: 768px) {

	#cotrSnrSklWrap {
		margin-bottom: 40px;
	}

	.cotrSnrSklBox {
		flex-direction: column;
		background-position: 125% 105%;
		padding: 15px;
	}

	#cotrWrap .cotrSnrSklIcon img {
		margin: auto;
	}

}


/*==================== 主要講師陣 ====================*/
#cotrSnrLctWrap {
	margin-bottom: 70px;
}

/*-------------------- Box --------------------*/
.cotrSnrLctBox {
	display: flex;
	background-color: #FFFFFF;
	border-radius: 10px;
	margin-bottom: 30px;
	padding: 40px;
	color: #555555;
	border: 3px solid var(--blueGrayLight);
}

.cotrSnrLctBox:last-child {
	margin-bottom: 0;
}

.cotrSnrLctPhoto {
	width: 130px;
	flex-shrink: 0;
}
#cotrWrap .cotrSnrLctPhoto img {
	width: 100%;
	height: auto;
}

.cotrSnrLctDtl {
	padding-left: 40px;
}

#cotrWrap .cotrSnrLctDtl h3 {
	text-align: left;
	margin-bottom: 20px;
}

#cotrWrap .cotrSnrLctDtl ul{
	margin-left: 30px;
	margin-bottom: 30px;
}
#cotrWrap .cotrSnrLctDtl ul li {
	position: relative;
}
#cotrWrap .cotrSnrLctDtl ul li::before {
  content: "\f22d";
	font-size: 120%;
	color: var(--blueGrayDark);
	font-weight: 600;
	font-family: "Font Awesome 5 Free";
	position: absolute;
  left: -1em;
  top: -0.2em;
}

.cotrSnrLctProf {
	padding-top: 15px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 15px;
	background-color: var(--bgGlay);
	border-radius: 6px;
}

#cotrWrap .cotrSnrLctProf p:last-child {
	margin-bottom: 0;
}

#cotrWrap .cotrSnrLctProf a {
	color: var(--blueGrayMoreDark);
}
#cotrWrap .cotrSnrLctProf a::after {
	content: "\f35d";
	font-size: 87.5%;
  color: var(--blueGrayLight);
	font-weight: 600;
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	margin-left: 0.3em;
}

@media all and (-ms-high-contrast: none){
	/* IE10以上に適用 */
	#cotrWrap .cotrSnrLctDtl ul li::before {
		font-size: 150%;
	}
}

@media screen and (max-width: 992px) {

	.cotrSnrLctBox {
		flex-direction: column;
	}

	.cotrSnrLctPhoto {
		width: 100%;
		padding-right: 0;
		text-align: center;
	}
	#cotrWrap .cotrSnrLctPhoto img {
		width: 130px;
	}

	.cotrSnrLctDtl {
		width: 100%;
		padding: 0;
	}

	#cotrWrap .cotrSnrLctDtl h3 {
		text-align: center;
		margin-top: 20px;
	}

	#cotrWrap .cotrSnrLctDtl ul{
		margin-bottom: 20px;
	}

	.cotrSnrLctProf {
		padding-top: 10px;
		padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 10px;
	}

}

@media screen and (max-width: 768px) {

	#cotrSnrLctWrap {
		margin-bottom: 40px;
	}

	.cotrSnrLctBox {
		background-position: 125% 105%;
		padding-top: 20px;
		padding-right: 12px;
		padding-left: 12px;
		padding-bottom: 12px;
	}

	#cotrWrap .cotrSnrLctPhoto img {
		margin: auto;
	}

	#cotrWrap .cotrSnrLctDtl h3 {
		margin-bottom: 10px;
	}

}


/*==================== DX人材育成プログラム ====================*/

/*-------------------- 資格アイコン --------------------*/
.cotrSnrDEQfIcon {
  text-align: center;
}
.cotrSnrDEQfIcon img {
  display: inline-block !important;
  width: 100px !important;
  height: auto;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 40px;
}

.cotrSnrDEWrap #cotrSnrOlReadWrap {
  display: block;
  justify-content: space-between;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  .cotrSnrDEQfIcon img {
    margin-bottom: 30px;
  }
}

/*-------------------- リード --------------------*/
.cotrSnrDERead {
	margin-left: 30px;
	margin-right: 30px;
	margin-bottom: 70px;
	font-weight: bold;
	color: #000000;
}

#cotrWrap .cotrSnrDERead h2 {
  font-size: 1.75rem;
  font-weight: bold;
  /*color: #f19007;*/
  color: var(--blueDark);
  margin-bottom: 10px;
}

.cotrSnrDESubRead {
	font-size: 0.875rem;
	font-weight: normal;
	color: #000000;
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {

  #cotrWrap .cotrSnrDERead h2 {
    font-size: 1.5rem;
  }

  .cotrSnrDESubRead {
    margin-bottom: 50px;
  }

}

@media screen and (max-width: 560px) {

	.cotrSnrDERead {
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 40px;
		font-weight: 500;
	}

  #cotrWrap .cotrSnrDERead h2 {
    font-size: 1.375rem;
  }

  .cotrSnrDESubRead {
    margin-bottom: 30px;
  }

}


/*==================== Cloud Builders Camp ====================*/

/*-------------------- デフォルトスタイル上書き --------------------*/
#cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlScdl li::before,
#cotrWrap ul.note li::before,
#cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst li::before,
#cotrWrap ul.cotrSnrDounyuFlowLst li::before,
#cotrWrap ul.cotrSnrPriceLst li::before {
  display: none;
}

@media screen and (max-width: 360px) {
  #cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst li img,
  #cotrWrap ul.cotrSnrDounyuFlowLst li img {
    margin-left: auto;
    margin-right: auto;
  }
}

/*-------------------- em --------------------*/
#cotrWrap.cotrSnrCBCWrap em {
  color: #13a996;
}

/*-------------------- 本研修の概要 --------------------*/
/* read Box --------------------*/
#cotrSnrOlWrap {
	margin-bottom: 90px;
}

#cotrSnrOlWrap > h3 {
	line-height: 1.6;
}

#cotrSnrOlReadWrap {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}

#cotrSnrOlReadImg {
  width: 320px;
}

#cotrSnrOlReadTxt {
  width: calc(100% - 370px);
}
#cotrSnrOlReadTxt h3 {
  text-align: left;
}

@media screen and (max-width: 992px) {

  #cotrSnrOlReadWrap br {
    display: none;
  }

  #cotrSnrOlReadImg {
    width: 28vw;
  }
  #cotrSnrOlReadImg img {
    width: 100%;
    height: auto;
  }

  #cotrSnrOlReadTxt {
    width: calc(100% - 33vw);
  }

}

@media screen and (max-width: 768px) {

  #cotrSnrOlReadWrap {
    flex-wrap: wrap;;
  }

  #cotrSnrOlReadImg {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  #cotrSnrOlReadImg img {
    width: auto;
  }

  #cotrSnrOlReadTxt {
    width: 100%;
  }

}

/* feature Box --------------------*/
.cotrSnrOlFeatureBoxWrap {
  background-color: var(--bgGlay);
  border-radius: 6px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px;
  color: #555555;
}

.cotrSnrOlFeatureBoxWrap > h3 {
  line-height: 1.6;
}

.cotrSnrOlFeatureBoxWrap + p img {
  width: auto !important;
}

@media screen and (max-width: 540px) {
  .cotrSnrOlFeatureBoxWrap {
    padding: 20px;
  }
}

ul.cotrSnrOlFeatureLst {
  display: flex;
  justify-content: space-between;
}

ul.cotrSnrOlFeatureLst li::before {
  display: none;
}

@media screen and (max-width: 768px) {

  ul.cotrSnrOlFeatureLst {
    display: block;
  }
  #cotrWrap ul.cotrSnrOlFeatureLst li:not(:last-child) {
    margin-bottom: 40px;
  }

}

.cotrSnrOlFeatureImg {
  text-align: center;
}

.cotrSnrOlFeatureImg img {
  width: 260px;
  height: auto;
}

@media screen and (max-width: 992px) {
  .cotrSnrOlFeatureImg img {
    width: 18vw;
  }
}

@media screen and (max-width: 768px) {
  .cotrSnrOlFeatureImg img {
    width: 100%;
    max-width: 300px !important;
    height: auto;
  }
}

.cotrSnrOlFeatureTxt {
  text-align: center;
  margin-top: 20px;
  line-height: 1.3;
}
.cotrSnrOlFeatureTxt::after {
  display: block;
  content: "\f078";
	font-size: 150%;
	color: var(--blueGrayDark);
	font-weight: 600;
	font-family: "Font Awesome 5 Free";
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}

/* feature list --------------------*/
#cotrWrap dl.cotrSnrDtlLst.cotrSnrOlFeatureLst dt {
  width: 140px;
  background: none;
}

#cotrWrap dl.cotrSnrDtlLst.cotrSnrOlFeatureLst dd {
  width: calc(100% - 190px);
}

#cotrWrap dl.cotrSnrDtlLst.cotrSnrOlFeatureLst dd h3:first-letter {
  font-size: 30px;
  background-color: var(--blueDark);
  color: #FFFFFF;
  line-height: 100%;
  padding: 0 0.4em;
  margin-right: 0.5em;
}

#cotrWrap dl.cotrSnrDtlLst.cotrSnrOlFeatureLst dd:nth-of-type(1) h3:first-letter {
  padding: 0 0.45em;
}

@media screen and (max-width: 768px) {

  #cotrWrap dl.cotrSnrDtlLst.cotrSnrOlFeatureLst dt {
    width: 120px;
  }

  #cotrWrap dl.cotrSnrDtlLst.cotrSnrOlFeatureLst dd {
    width: calc(100% - 150px);
  }

  #cotrWrap dl.cotrSnrDtlLst.cotrSnrOlFeatureLst dd h3:first-letter {
    font-size: 24px;
  }

}

@media screen and (max-width: 500px) {

  #cotrWrap dl.cotrSnrDtlLst.cotrSnrOlFeatureLst dt {
    width: 100px;
  }

  #cotrWrap dl.cotrSnrDtlLst.cotrSnrOlFeatureLst dd {
    width: calc(100% - 130px);
  }

  #cotrWrap dl.cotrSnrDtlLst.cotrSnrOlFeatureLst dd p {
    font-size: 1.125rem;
    line-height: 1.5;
  }

}

@media screen and (max-width: 420px) {

  #cotrWrap dl.cotrSnrDtlLst.cotrSnrOlFeatureLst dd h3 {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }

  #cotrWrap dl.cotrSnrDtlLst.cotrSnrOlFeatureLst dd h3:first-letter {
    font-size: 20px;
    margin-right: 0.3em;
  }

}

#cotrWrap ul.cotrSnrOlFeatureLst h4 {
  display: block;
  font-size: 125%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

#cotrWrap ul.cotrSnrOlFeatureLst h4 span {
  display: inline-block;
  color: #FFFFFF;
  background-color: var(--blueDark);
  line-height: 100%;
  font-size: 1rem;
  padding-top: 0.3em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-bottom: 0.3em;
  margin-bottom: 10px;
  border-radius: 3px;
  white-space: nowrap;
  vertical-align: middle;
}

#cotrWrap ul.cotrSnrOlFeatureLst p {
  text-align: center;
  font-weight: bold;
  color: var(--blueGrayDark);
  border: 2px dotted var(--blueGrayDark);
  border-radius: 6px;
  padding: 0.6em;
  line-height: 1.3;
}

#cotrWrap ul.cotrSnrOlFeatureLst p.reset {
  border-style: none;
  padding: 0;
  font-weight: normal;
}

@media screen and (max-width: 992px) {
  ul.cotrSnrOlFeatureLst p br {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .cotrSnrOlFeatureTxt br,
  ul.cotrSnrOlFeatureLst p br {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .cotrSnrOlFeatureTxt br,
  ul.cotrSnrOlFeatureLst p br {
    display: block;
  }
}

.cotrSnrOlFeatureCopy {
  text-align: center;
  font-size: 137.5%;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .cotrSnrOlFeatureCopy {
    margin-top: 30px;
  }
}

@media screen and (max-width: 540px) {
  .cotrSnrOlFeatureCopy {
    line-height: 1.5;
  }
}

/*-------------------- feature detail area --------------------*/
/*.cotrSnrOlFeatureLstDtlWrap {
  background-color: var(--bgBlueGray);
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 6px;
  color: #555555;
}
@media screen and (max-width: 540px) {
  .cotrSnrOlFeatureLstDtlWrap {
    padding: 20px;
  }
}

.cotrSnrOlFeatureLstDtlHdr {
  display: flex;
  gap: 0 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.cotrSnrOlFeatureLstDtlHdr div {
  width: calc(50% - 10px);
}

.cotrSnrOlFeatureLstDtlWrap h3:first-letter {
  font-size: 50px;
  color: var(--blueGrayDark);
}
.cotrSnrOlFeatureLstDtlWrap img {
  width: 100%;
  height: auto;
}

.cotrSnrOlFeatureLstDtlBoxWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}

.cotrSnrOlFeatureLstDtlBox {
  width: calc(50% - 10px);
  background-color: var(--bgBlueGrayLight);
  border-radius: 6px;
  padding: 20px;
  border: 1px solid var(--blueGrayLight);
  text-align: center;
}*/



.cotrSnrOlFeatureLstDtlWrap {
  border-radius: 6px;
  color: #555555;
}

@media screen and (max-width: 768px) {
  .cotrSnrOlFeatureLstDtlWrap {
		margin-bottom: 50px !important;
	}
}

/*@media screen and (max-width: 540px) {
  .cotrSnrOlFeatureLstDtlWrap {
    padding: 20px;
  }
}*/


/* 画像の上に重ねるバージョン */
/*.cotrSnrOlFeatureLstDtlHdr {
  position: relative;
  margin-bottom: 40px;
}
.cotrSnrOlFeatureLstDtlHdr div:nth-of-type(1) {
  width: 50%;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.9);
  border-radius: 10px;
}

#cotrWrap .cotrSnrOlFeatureLstDtlHdr div p:last-child {
  margin-bottom: 0;
}

.cotrSnrOlFeatureLstDtlHdr div:nth-of-type(2) {
  text-align: right;
}
.cotrSnrOlFeatureLstDtlHdr div:nth-of-type(2) img {
  width: 60%;
}

@media screen and (max-width: 992px) {

  .cotrSnrOlFeatureLstDtlHdr div:nth-of-type(1) {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
    position: relative;
    top: 0;
    transform: translateY(0);
  }

  .cotrSnrOlFeatureLstDtlHdr div:nth-of-type(2) {
    text-align: center;
  }
  .cotrSnrOlFeatureLstDtlHdr div:nth-of-type(2) img {
    width: 80%;
  }

}

@media screen and (max-width: 768px) {
  .cotrSnrOlFeatureLstDtlHdr div:nth-of-type(2) img {
    width: 100%;
  }
}*/

/**/

/* 通常版 */
.cotrSnrOlFeatureLstDtlHdr {
  display: flex;
  gap: 0 30px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.cotrSnrOlFeatureLstDtlHdr div {
  width: calc(50% - 15px);
  /*text-align: center;*/
}
/**/

/*#cotrWrap .cotrSnrOlFeatureLstDtlHdr p {
  text-align: left;
}*/

#cotrWrap .cotrSnrOlFeatureLstDtlWrap h3 {
  display: inline-block;
  border-bottom: 2px dotted #000000;
  padding-bottom: 0.4em;
  text-align: left;
}
.cotrSnrOlFeatureLstDtlWrap h3:first-letter {
  font-size: 30px;
  background-color: var(--blueDark);
  color: #FFFFFF;
  line-height: 100%;
  padding: 0 0.4em;
  margin-right: 0.5em;
}
#cotrWrap .cotrSnrOlFeatureLstDtlWrap:nth-of-type(1) h3:first-letter {
  padding: 0 0.45em;
}

.cotrSnrOlFeatureLstDtlWrap img {
  width: 100%;
  height: auto;
}

.cotrSnrOlFeatureLstDtlBoxWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 30px;
}

.cotrSnrOlFeatureLstDtlBox {
  width: calc(50% - 15px);
  background-color: var(--bgGlay);
  border-radius: 6px;
  padding: 20px;
  text-align: center;
}

#cotrWrap .cotrSnrOlFeatureLstDtlBoxWrap + ul.note {
  margin-top: 20px;
}

@media screen and (max-width: 992px) {

  .cotrSnrOlFeatureLstDtlBox.oneColumn {
    width: 100%;
  }

  .cotrSnrOlFeatureLstDtlWrap h3:first-letter {
    font-size: 26px;
  }

}

@media screen and (max-width: 768px) {

  .cotrSnrOlFeatureLstDtlHdr div,
  .cotrSnrOlFeatureLstDtlBox {
    width: 100%;
  }
  
  .cotrSnrOlFeatureLstDtlWrap h3:first-letter {
    font-size: 24px;
  }

}

@media screen and (max-width: 540px) {
  .cotrSnrOlFeatureLstDtlBox {
    padding: 10px;
  }
}

#cotrWrap .cotrSnrOlFeatureLstDtlBox h4 {
  display: inline-block;
  font-size: 1.25rem;
}

.cotrSnrOlFeatureLstDtlBox h4 span {
  display: inline-block;
  font-size: 1.125rem;
  padding-right: 20px;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 768px) {

  #cotrWrap .cotrSnrOlFeatureLstDtlBox h4 {
    padding-top: 5px !important;
    margin-bottom: 10px;
  }

  .cotrSnrOlFeatureLstDtlBox h4 span {
    margin-bottom: 0;
  }

}

#cotrWrap .cotrSnrOlFeatureLstDtlBox h4::before {
  content: " ";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: transparent url(https://academy.impress.co.jp/event/common/images/training/training_icon_point.svg) 0% 0% no-repeat;
  background-size: 100% auto;
  margin-bottom: -0.1em;
  margin-right: 6px;
}

.cotrSnrOlFeatureLstDtlBoxImg {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  text-align: center;
}
.cotrSnrOlFeatureLstDtlBoxImg img {
  width: 90%;
}

#cotrWrap .cotrSnrOlFeatureLstDtlBox p {
  text-align: left;
}
.cotrSnrOlFeatureLstDtlBox p:last-child {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 768px) {
  .cotrSnrOlFeatureLstDtlBox p:last-child {
    margin-bottom: 10px !important;
  }
}

/* feature detail box list --------------------*/
#cotrWrap .cotrSnrOlFeatureLstDtlBox ul.point li {
  position: relative;
  padding-left: 30px;
  text-align: left;
}
#cotrWrap .cotrSnrOlFeatureLstDtlBox ul.point li:not(:last-child) {
  margin-bottom: 10px;
}

#cotrWrap .cotrSnrOlFeatureLstDtlBox ul.point li::before {
  content: " ";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: transparent url(https://academy.impress.co.jp/event/common/images/training/training_icon_point.svg) 0% 0% no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 500px) {

  #cotrWrap .cotrSnrOlFeatureLstDtlBox ul.point {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #cotrWrap .cotrSnrOlFeatureLstDtlBox ul.point li {
    line-height: 1.5;
  }

}

/*-------------------- detail area --------------------*/
#cotrSnrDtlWrap {
  margin-top: 50px;
}

#cotrSnrDtlWrap h2 {
	margin-bottom: 50px;
}
#cotrWrap #cotrSnrDtlWrap h2 img {
  width: 600px;
  height: auto;
}

#cotrWrap dl.cotrSnrDtlLst {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#cotrWrap dl.cotrSnrDtlLst dt {
  width: 250px;
  text-align: center;
  position: relative;
  padding-bottom: 60px;
  background-image: url(https://academy.impress.co.jp/event/common/images/training/cbc/hasen.png);
  background-repeat: repeat-y;
  background-position: center top;
}
#cotrWrap dl.cotrSnrDtlLst dt.cotrSnrDtlKeiken {
  background: none;
}

#cotrWrap dl.cotrSnrDtlLst dt p {
  width: 3em;
  height: 3em;
  position: absolute;
  top: -0.3em;
  right: 0;
  font-size: 150%;
  font-weight: normal;
  color: #566A7A;
  line-height: 3em;
  background-color: #c6d6e3;
}

#cotrWrap dl.cotrSnrDtlLst dt.cotrSnrDtlKeiken p {
  color: #FFFFFF;
  background-color: #7992a6;
}

#cotrWrap dl.cotrSnrDtlLst dt img {
  width: 100%;
  height: auto;
}

#cotrWrap dl.cotrSnrDtlLst dd {
  width: calc(100% - 300px);
  padding-bottom: 60px;
}

#cotrWrap dl.cotrSnrDtlLst dd h3 {
  text-align: left;
  margin-bottom: 10px;
}

#cotrWrap dl.cotrSnrDtlLst dd p {
  font-size: 1.25rem;
}

@media screen and (max-width: 992px) {

  #cotrWrap #cotrSnrDtlWrap h2 img {
    width: 90%;
    height: auto;
  }

  #cotrWrap dl.cotrSnrDtlLst dt {
    width: 21.17vw;
  }

  #cotrWrap dl.cotrSnrDtlLst dd {
    width: calc(100% - 26.2vw);
  }

  #cotrWrap dl.cotrSnrDtlLst dt p {
    font-size: 112.5%;
    right: -10px;
  }

}

@media screen and (max-width: 768px) {

  #cotrWrap dl.cotrSnrDtlLst dt {
    width: 25.2vw;
  }

  #cotrWrap dl.cotrSnrDtlLst dd {
    width: calc(100% - 30.24vw);
    padding-bottom: 40px;
  }

}

@media screen and (max-width: 600px) {

  #cotrWrap dl.cotrSnrDtlLst dt {
    width: 140px;
  }

  #cotrWrap dl.cotrSnrDtlLst dt p {
    font-size: 100%;
    right: -15px;
  }

  #cotrWrap dl.cotrSnrDtlLst dd {
    width: calc(100% - 170px);
  }

}

@media screen and (max-width: 500px) {

  #cotrWrap #cotrSnrDtlWrap h2 img {
    width: 100%;
  }

  #cotrWrap dl.cotrSnrDtlLst dt {
    width: 20vw !important;
  }

  #cotrWrap dl.cotrSnrDtlLst dt p {
    font-size: 87.5%;
  }

  #cotrWrap dl.cotrSnrDtlLst dd {
    width: calc(100% - 26vw) !important;
    padding-bottom: 40px;
  }

}

/* 番号付きリスト --------------------*/
#cotrWrap ol.cotrSnrDtlOlLst {
  position: relative;
  margin: 0;
  padding: 0 10px 0 6px;
  list-style: none;
  font-weight: bold;
  counter-reset: li;
}
#cotrWrap ol.cotrSnrDtlOlLst li {
  position: relative;
  margin-top: 12px;
  margin-right: 20px;
  margin-left: 24px;
  margin-bottom: 10px;
  padding: 0;
  line-height: 1.5;
}

#cotrWrap ol.cotrSnrDtlOlLst > li:before {
  width: 24px;
  height: 24px;
  position: absolute;
  left: -2.2em;
  top: 0.1em;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  box-sizing: border-box;
  line-height: 100%;
  padding: 6px 0;
  counter-increment: li;
  content: counter(li) "";
}

#cotrWrap dl.cotrSnrDtlLst dd ol.cotrSnrDtlOlLst > li:before {
  background: var(--greenDark);
}

#cotrWrap .cotrSnrDtlBox ol.cotrSnrDtlOlLst > li:before {
  background: var(--greenDark);
}

#cotrWrap ol.cotrSnrDtlOlLst li p {
  font-weight: normal;
}

/* 詳細ボタン --------------------*/
#cotrWrap a.dtlBtn {
  display: inline-block;
  background-color: var(--blueGrayDark);;
  color: #FFFFFF;
  padding-top: 0.7em;
  padding-left: 2.5em;
  padding-right: 2.5em;
  padding-bottom: 0.7em;
  border-radius: 6px;
}
#cotrWrap a.dtlBtn:visited {
  color: #FFFFFF;
}

#cotrWrap p + a.dtlBtn {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  #cotrWrap a.dtlBtn {
    margin-top: 0;
    padding-top: 0.5em;
    padding-left: 2em;
    padding-right: 2em;
    padding-bottom: 0.5em;
    font-size: 1rem;
  }
}

/*-------------------- detail Box --------------------*/
#cotrWrap .cotrSnrDtlBox {
  background-color: var(--bgGlay);
  border-radius: 6px;
  margin-bottom: 30px;
  padding: 40px;
  color: #555555;
  background-position: right -50px bottom -50px;
  background-size: 500px auto;
  background-repeat: no-repeat;
}

#cotrWrap .cotrSnrDtlBox#ninteiProgram {
  background-image: url(https://academy.impress.co.jp/event/common/images/training/cbc/img_chishiki_mono.png);
}
#cotrWrap .cotrSnrDtlBox#awsTraining {
  background-image: url(https://academy.impress.co.jp/event/common/images/training/cbc/img_gijyutsu_mono.png);
}
#cotrWrap .cotrSnrDtlBox#virtualOjt {
  background-image: url(https://academy.impress.co.jp/event/common/images/training/cbc/img_keiken_mono.png);
}

@media screen and (max-width: 992px) {
  #cotrWrap .cotrSnrDtlBox {
    background-size: 400px auto;
  }
}

@media screen and (max-width: 768px) {
  #cotrWrap .cotrSnrDtlBox {
    background-position: right -40px bottom -40px;
    background-size: 330px auto;
    padding: 30px;
  }
}

@media screen and (max-width: 540px) {
  #cotrWrap .cotrSnrDtlBox {
    background-size: 280px auto;
    padding: 20px;
  }
}

#cotrWrap .cotrSnrDtlBox p {
  text-shadow: 0 0 6px var(--bgGlay), 0 0 6px var(--bgGlay), 0 0 6px var(--bgGlay), 0 0 6px var(--bgGlay), 0 0 6px var(--bgGlay), 0 0 6px var(--bgGlay), 0 0 6px var(--bgGlay), 0 0 6px var(--bgGlay);
}

/* title --------------------*/
#cotrWrap .cotrSnrDtlBox h3 {
  text-align: left;
}

#cotrWrap .cotrSnrDtlBox h4 {
  text-align: left;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 137.5%;
}

@media screen and (max-width: 768px) {
	#cotrWrap .cotrSnrDtlBox h4 {
		font-size: 125%;
    margin-top: 30px;
    margin-bottom: 10px;
	}
}

/* list --------------------*/
#cotrWrap .cotrSnrDtlBox ul.note.number {
  font-size: 0.75em;
}
#cotrWrap .cotrSnrDtlBox ul.note.number li {
  text-indent: -2.5em;
  padding-left: 2.5em;
}

#cotrWrap .cotrSnrDtlBox ol.cotrSnrDtlOlLst {
  margin-top: 30px;
}
#cotrWrap .cotrSnrDtlBox ol.cotrSnrDtlOlLst li {
  margin-bottom: 0;
}

#cotrWrap .cotrSnrDtlBox ol.cotrSnrDtlOlLst li h4 {
  font-size: 1.125rem;
  color: #000000;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 5px;
}

/* バーチャルOJTの流れ（ul）--------------------*/
#cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1%;
  margin-right: -1%;
}
#cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst li {
  width: 18%;
  padding: 15px;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 20px;
  background-color: var(--bgGlay);
  text-align: center;
  color: var(--blueGrayDark);
  border: 3px solid var(--blueGrayDark);
  border-radius: 6px;
  box-sizing: border-box;
}

#cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst li h5 {
  font-size: 175%;
  color: var(--blueGrayDark);
}
#cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst li img {
  width: auto;
  height: 90px;
}
#cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst li p {
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: bold;
  line-height: 1.3;
}
#cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst li p br.spOnly {
  display: none;
}

@media screen and (max-width: 1200px) {
  #cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst li {
    width: 23%;
  }
}

@media screen and (max-width: 992px) {

  #cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst li {
    padding-left: 10px;
    padding-right: 10px;
  }

  #cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst li h5 {
    font-size: 150%;
  }

  #cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst li img {
    height: 80px;
  }

  #cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst li p br.spOnly {
    display: block;
  }

}

@media screen and (max-width: 768px) {

  #cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst {
    margin-left: -1.5%;
    margin-right: -1.5%;
  }

  #cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst li {
    width: 30.33%;
    margin-left: 1.5%;
    margin-right: 1.5%;
    padding: 10px;
  }

  #cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst li img {
    height: 70px;
  }

}

@media screen and (max-width: 540px) {

  #cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst {
    margin-left: -2%;
    margin-right: -2%;
  }

  #cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst li {
    width: 46%;
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 10px;
  }

  #cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlFlowLst li img {
    height: 60px;
  }

}

/* dl list --------------------*/
#cotrWrap .cotrSnrDtlBox dl {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}

#cotrWrap .cotrSnrDtlBox dl dt {
  width: 4.5em;
  margin-bottom: 30px;
}
#cotrWrap .cotrSnrDtlBox dl dt span {
  color: #FFFFFF;
  line-height: 100%;
  padding-top: 0.2em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-bottom: 0.2em;
  font-size: 112.5%;
  white-space: nowrap;
  font-weight: normal;
  vertical-align: middle;
}
#cotrWrap .cotrSnrDtlBox dl dt span.syokyu {
  background-color: #5DB4C7;
}
#cotrWrap .cotrSnrDtlBox dl dt span.chukyu {
  background-color: #5D91C7;
}
#cotrWrap .cotrSnrDtlBox dl dt span.nyumon {
  background-color: #E79131;
}

#cotrWrap .cotrSnrDtlBox dl dd {
  width: calc(100% - 4.5em);
  margin-bottom: 30px;
}
#cotrWrap .cotrSnrDtlBox dl dd h5 {
  text-align: left;
}

#cotrWrap .cotrSnrDtlBox dl dd h5 span {
  font-size: 75%;
}

#cotrWrap .cotrSnrDtlBox dl dd p {
  margin-bottom: 10px;
}

#cotrWrap .cotrSnrDtlBox ul.cotrSnrDtlScdl li > span {
  display: inline-block;
  border: 1px solid #666666;
  font-size: 87.5%;
  line-height: 100%;
  padding-top: 0.3em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-bottom: 0.3em;
  margin-right: 10px;
}

/*-------------------- detail icon --------------------*/
#cotrWrap.cotrSnrCBCWrap h3 span {
  color: #FFFFFF;
  line-height: 100%;
  font-size: 0.75rem;
  padding-top: 0.2em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-bottom: 0.2em;
  border-radius: 3px;
  white-space: nowrap;
  vertical-align: middle;
}
#cotrWrap.cotrSnrCBCWrap h3 span.originalIcon {
  background-color: var(--blueDark);
}
#cotrWrap.cotrSnrCBCWrap h3 span.awsIcon {
  background-color: var(--greenDark);
  letter-spacing: 0.1em;
}


/*==================== 研修の流れ ====================*/
.cotrSnrKensyuFlowImg {
  text-align: center;
  margin-bottom: 30px;
}
.cotrSnrKensyuFlowImg img {
  width: 100%;
  height: auto;
}

.cotrSnrKensyuFlowImg span {
  color: #999999;
  display: none;
  font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
  .cotrSnrKensyuFlowImg span {
    display: block;
  }
}


/*==================== お客様の声 ====================*/
#cotrSnrOlWrap + #cotrSnrVoiceWrap {
  margin-top: -20px;
}

@media screen and (max-width: 768px) {
  #cotrSnrOlWrap + #cotrSnrVoiceWrap {
    margin-top: 0;
  }
}

.cotrSnrVoiceBoxImg {
  width: 125px;
  text-align: center;
  font-size: 87.5%;
  float: left;
}

.cotrSnrVoiceBox span {
  width: 125px;
  height: 70px;
  display: block;
  margin-bottom: 0.2em;
  overflow: hidden;
}

.cotrSnrVoiceBoxImg img {
	width: 70px;
	height: auto;
}

.cotrSnrVoiceBox {
	margin-bottom: 25px;
	overflow: hidden;
}

.cotrSnrVoiceBoxTxt {
  width: calc(100% - 140px);
  min-height: 4em;
  position: relative;
  background-color: #FFFFFF;
  border: 2px solid var(--blueGrayLight);
  border-radius: 10px;
  padding-top: 1em;
  padding-right: 1.5em;
  padding-left: 1.5em;
  padding-bottom: 1em;
  margin-top: 0.2em;
  box-sizing: border-box;
	float: right;
}

.cotrSnrVoiceBoxTxt:after,
.cotrSnrVoiceBoxTxt:before {
	top: 32px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.cotrSnrVoiceBoxTxt:after,
.cotrSnrVoiceBoxTxt:before {
	right: 100%;
}

.cotrSnrVoiceBoxTxt:after {
	border-color: rgba(255, 255, 255, 0);
	border-width: 13px;
	margin-top: -13px;
	border-right-color: #fff;
}

.cotrSnrVoiceBoxTxt:before {
	border-color: rgba(255, 255, 255, 0);
	border-width: 16px;
	margin-top: -16px;
	border-right-color: var(--blueGrayLight);
}

#cotrWrap .cotrSnrVoiceBoxTxt p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 540px) {

  .cotrSnrVoiceBoxImg {
    width: 85px;
    max-width: 125px;
    text-align: center;
  }

  .cotrSnrVoiceBoxImg span {
    width: 85px;
    max-width: 125px;
  }

  .cotrSnrVoiceBoxTxt {
    width: calc(100% - 100px);
  }

}

@media screen and (max-width: 400px) {
  .cotrSnrVoiceBoxTxt {
    padding-top: 15px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 360px) {

  #cotrWrap .cotrSnrVoiceBoxImg img {
    width: 70px !important;
    margin-left: auto;
    margin-right: auto;
  }

  .cotrSnrVoiceBoxTxt {
    padding-top: 15px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
  }

}


/*==================== 実施例 ====================*/
#cotrSnrCaseWrap > h3 {
  font-size: 150%;
  line-height: 1.6;
}

ul.cotrSnrCaseLst {
  display: flex;
  justify-content: center;
  gap: 0 100px;
  flex-wrap: wrap;
}
ul.cotrSnrCaseLst li::before {
  display: none;
}

.cotrSnrCaseLstImg {
  text-align: center !important;
}

.cotrSnrCaseLstImg img {
  width: 160px !important;
  height: auto;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media screen and (max-width: 992px) {

  #cotrSnrCaseWrap > h3 {
    font-size: 137.5%;
  }

  ul.cotrSnrCaseLst {
    gap: 0 40px;
  }

  .cotrSnrCaseLstImg img {
    width: 16.13vw;
  }

}

@media screen and (max-width: 768px) {

  ul.cotrSnrCaseLst {
    display: block;
  }

  #cotrWrap ul.cotrSnrCaseLst li:not(:last-child) {
    margin-bottom: 40px;
  }

  .cotrSnrCaseLstImg img {
    width: 180px;
  }

}

.cotrSnrCaseLstTxt {
  text-align: center;
  margin-top: 15px;
  line-height: 1.3;
}
.cotrSnrCaseLstTxt::after {
  display: block;
  content: "\f078";
	font-size: 150%;
	color: var(--blueGrayDark);
	font-weight: 600;
	font-family: "Font Awesome 5 Free";
  text-align: center;
  margin-top: 5px;
}

#cotrWrap ul.cotrSnrCaseLst h4 {
  font-size: 125%;
  margin-top: 20px;
}

#cotrWrap ul.cotrSnrCaseLst h4 span {
  display: inline-block;
  color: #FFFFFF;
  background-color: var(--blueDark);
  line-height: 100%;
  font-size: 1rem;
  padding-top: 0.3em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-bottom: 0.3em;
  margin-bottom: 0.5em;
  border-radius: 3px;
  white-space: nowrap;
  vertical-align: middle;
}

#cotrWrap ul.cotrSnrCaseLst p {
  text-align: center;
  font-size: 137.5%;
  font-weight: bold;
  border-radius: 6px;
  line-height: 1.3;
}
ul.cotrSnrCaseLst p span {
  font-size: 1.125rem;
}

@media screen and (max-width: 992px) {
  #cotrWrap ul.cotrSnrCaseLst p {
    font-size: 125%;
  }
  ul.cotrSnrCaseLst p span {
    font-size: 1rem;
  }
  ul.cotrSnrCaseLst p br {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .cotrSnrCaseLstTxt br,
  ul.cotrSnrCaseLst p br {
    display: none;
  }
}

@media screen and (max-width: 520px) {
  .cotrSnrCaseLstTxt br,
  ul.cotrSnrCaseLst p br {
    display: block;
  }
}

.cotrSnrCaseCopy {
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .cotrSnrCaseCopy {
    margin-top: 40px;
    text-align: left;
  }
}


/*==================== 導入の流れ ====================*/

/* 導入の流れ（ul）--------------------*/
#cotrWrap ul.cotrSnrDounyuFlowLst {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1%;
  margin-right: -1%;
}
#cotrWrap ul.cotrSnrDounyuFlowLst li {
  width: 23%;
  padding: 15px;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 20px;
  text-align: center;
  color: var(--blueGrayDark);
  border: 3px solid var(--blueGrayDark);
  border-radius: 6px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

#cotrWrap ul.cotrSnrDounyuFlowLst li h5 {
  font-size: 250%;
  color: var(--blueGrayDark);
}

#cotrWrap ul.cotrSnrDounyuFlowLst li h6 {
  font-size: 125%;
  color: var(--blueGrayDark);
  display: flex;
  flex: 1;
  height: 100%;
  min-height: 0;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  line-height: 1.3;
}

#cotrWrap ul.cotrSnrDounyuFlowLst li img {
  width: auto;
  height: 90px;
}
#cotrWrap ul.cotrSnrDounyuFlowLst li p {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0;
  line-height: 1.3;
  text-align: left;
  flex: 2;
  height: 100%;
  min-height: 0;
}
#cotrWrap ul.cotrSnrDounyuFlowLst li p br.spOnly {
  display: none;
}

@media screen and (max-width: 992px) {

  #cotrWrap ul.cotrSnrDounyuFlowLst {
    margin-left: -2;
    margin-right: -2%;
  }

  #cotrWrap ul.cotrSnrDounyuFlowLst li {
    width: 46%;
    margin-left: 2%;
    margin-right: 2%;
  }

  #cotrWrap ul.cotrSnrDounyuFlowLst li img {
    height: 80px;
  }

  #cotrWrap ul.cotrSnrDounyuFlowLst li p br.spOnly {
    display: block;
  }

}

@media screen and (max-width: 540px) {

  #cotrWrap ul.cotrSnrDounyuFlowLst {
    margin: 0;
  }

  #cotrWrap ul.cotrSnrDounyuFlowLst li {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }

}


/*==================== 費用 ====================*/

/* ul --------------------*/
#cotrWrap ul.cotrSnrPriceLst {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1%;
  margin-right: -1%;
}
#cotrWrap ul.cotrSnrPriceLst > li {
  width: 23%;
  padding: 15px;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 6px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
#cotrWrap ul.cotrSnrPriceLst li.original {
  background-color: var(--blueLight);
  color: var(--blueDark);
}
#cotrWrap ul.cotrSnrPriceLst li.aws {
  background-color: var(--greenLight);
  color: var(--greenDark);
}
#cotrWrap ul.cotrSnrPriceLst > li:last-child {
  background-color: #619AC3;
  color: #FFFFFF;
}

/*-------------------- detail icon --------------------*/
#cotrWrap ul.cotrSnrPriceLst li .originalIcon,
#cotrWrap ul.cotrSnrPriceLst li .awsIcon {
  color: #FFFFFF;
  line-height: 100%;
  font-size: 0.875rem;
  padding-top: 0.4em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-bottom: 0.4em;
  margin-bottom: 20px;
  border-radius: 6px;
  white-space: nowrap;
  vertical-align: middle;
}
#cotrWrap ul.cotrSnrPriceLst li .originalIcon {
  background-color: var(--blueDark);
}
#cotrWrap ul.cotrSnrPriceLst li .awsIcon {
  background-color: var(--greenDark);
  letter-spacing: 0.1em;
}

#cotrWrap ul.cotrSnrPriceLst li h5 {
  font-size: 100%;
  font-weight: bold;
  color: var(--blueDark);
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#cotrWrap ul.cotrSnrPriceLst li.aws h5 {
  color: var(--greenDark);
}
#cotrWrap ul.cotrSnrPriceLst li:last-child h5 {
  color: #FFFFFF;
}

#cotrWrap ul.cotrSnrPriceLst .cotrSnrPrice {
  font-size: 200%;
  font-weight: bold;
  line-height: 100%;
}
#cotrWrap ul.cotrSnrPriceLst .cotrSnrPrice span {
  display: block;
  font-size: 1rem;
  font-weight: normal;
}

#cotrWrap ul.cotrSnrPriceLst li p br.spOnly {
  display: none;
}

#cotrWrap ul.cotrSnrPriceLst ul {
  width: 100%;
  margin-top: 30px;
}
#cotrWrap ul.cotrSnrPriceLst ul li {
  width: 100%;
  padding-left: 25px;
  margin-bottom: 0;
  text-align: left;
  position: relative;
}
#cotrWrap ul.cotrSnrPriceLst ul li:before {
  content: " ";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent url(https://academy.impress.co.jp/event/common/images/training/training_ico_point_blue.svg) 0% 0% no-repeat;
  background-size: 100% auto;
  top: 0.1em;
  left: 0;
}
#cotrWrap ul.cotrSnrPriceLst li.aws ul li:before {
  background: transparent url(https://academy.impress.co.jp/event/common/images/training/training_ico_point_green.svg) 0% 0% no-repeat;
  background-size: 100% auto;
}
#cotrWrap ul.cotrSnrPriceLst li:last-child ul li:before {
  background: transparent url(https://academy.impress.co.jp/event/common/images/training/training_ico_point_white.svg) 0% 0% no-repeat;
  background-size: 100% auto;
}

#cotrWrap ul.cotrSnrPriceLst + ul {
  margin-top: 0;
}

@media screen and (max-width: 992px) {

  #cotrWrap ul.cotrSnrPriceLst {
    margin-left: -2;
    margin-right: -2%;
  }

  #cotrWrap ul.cotrSnrPriceLst li {
    width: 46%;
    margin-left: 2%;
    margin-right: 2%;
  }

  #cotrWrap ul.cotrSnrPriceLst li p br.spOnly {
    display: block;
  }

}

@media screen and (max-width: 540px) {

  #cotrWrap ul.cotrSnrPriceLst {
    margin: 0;
  }

  #cotrWrap ul.cotrSnrPriceLst li {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }

}


/*==================== 各セミナー共通 ====================*/
.cotrSnrOlFeatureLstDtlWrap,
#cotrSnrDtlWrap,
#cotrSnrKensyuFlowWrap,
#cotrSnrDounyuFlowWrap,
#cotrSnrPriceWrap,
#cotrSnrBTWrap,
#cotrSnrCTWrap,
#cotrSnrFSWrap,
#cotrSnrVoiceWrap,
#cotrSnrCaseWrap {
	margin-bottom: 70px;
}

#cotrWrap #cotrSnrKensyuFlowWrap h2,
#cotrWrap #cotrSnrBTWrap h2,
#cotrWrap #cotrSnrCTWrap h2,
#cotrWrap #cotrSnrFSWrap h2 {
	margin-bottom: 30px;
}

#cotrSnrBTIcon,
#cotrSnrCTIcon,
#cotrSnrFSIcon {
	text-align: center;
	margin-bottom: 30px;
}

#cotrWrap #cotrSnrBTIcon img,
#cotrWrap #cotrSnrCTIcon img,
#cotrWrap #cotrSnrFSIcon img {
	width: 130px;
	height: auto;
}

#cotrWrap #cotrSnrBTWrap p,
#cotrWrap #cotrSnrCTWrap p,
#cotrWrap #cotrSnrFSWrap p,
#cotrWrap #cotrSnrKensyuFlowWrap p,
#cotrWrap #cotrSnrDounyuFlowWrap p {
	margin-left: 30px;
	margin-right: 30px;
}
#cotrWrap #cotrSnrCTWrap p {
	text-align: center;
}

#cotrWrap #cotrSnrBTWrap h3,
#cotrWrap #cotrSnrCTWrap h3,
#cotrWrap #cotrSnrFSWrap h3 {
	margin-top: 50px;
	font-size: 200%;
	font-weight: 500;
	color: var(--blueGrayDark);
}

#cotrWrap #cotrSnrBTWrap table p,
#cotrWrap #cotrSnrCTWrap table p,
#cotrWrap #cotrSnrFSWrap table p {
	margin-left: 0;
	margin-right: 0;
	text-align: left;
}

@media screen and (max-width: 768px) {

	#cotrSnrOlWrap,
  #cotrSnrDtlWrap,
  #cotrSnrKensyuFlowWrap,
  #cotrSnrPriceWrap,
  #cotrSnrBTWrap,
	#cotrSnrCTWrap,
  #cotrSnrFSWrap,
  #cotrSnrVoiceWrap,
  #cotrSnrCaseWrap {
		margin-bottom: 40px;
	}
  #cotrSnrDounyuFlowWrap {
		margin-bottom: 20px;
	}

  #cotrWrap #cotrSnrBTWrap h2,
	#cotrWrap #cotrSnrCTWrap h2,
  #cotrWrap #cotrSnrFSWrap h2 {
		margin-bottom: 20px;
	}
	#cotrWrap #cotrSnrDtlWrap h2 {
		margin-bottom: 30px;
	}

	#cotrSnrBTIcon,
	#cotrSnrCTIcon,
  #cotrSnrFSIcon {
		margin-bottom: 15px;
	}

	#cotrWrap #cotrSnrBTIcon img,
	#cotrWrap #cotrSnrCTIcon img,
  #cotrWrap #cotrSnrFSIcon img {
		width: 100px;
		margin: auto;
	}

  #cotrWrap #cotrSnrBTWrap h3,
	#cotrWrap #cotrSnrCTWrap h3,
  #cotrWrap #cotrSnrFSWrap h3 {
		font-size: 150%;
		margin-top: 20px;
	}

	#cotrWrap #cotrSnrBTWrap table + h3,
	#cotrWrap #cotrSnrCTWrap table + h3,
  #cotrWrap #cotrSnrFSWrap table + h3 {
		margin-top: 30px;
	}

}

@media screen and (max-width: 480px) {
	#cotrWrap #cotrSnrBTWrap p,
	#cotrWrap #cotrSnrCTWrap p,
  #cotrWrap #cotrSnrFSWrap p,
  #cotrWrap #cotrSnrKensyuFlowWrap p,
  #cotrWrap #cotrSnrDounyuFlowWrap p {
		margin-left: 0;
		margin-right: 0;
	}
}

/*-------------------- カスタマイズ研修Box --------------------*/
#cotrSnrCTBox {
	background-color: var(--bgBlueGray);
	border-radius: 10px;
	padding-top: 50px;
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
	text-align: center;
}

#cotrWrap #cotrSnrCTBox h4 {
	display: inline-block;
	font-size: 162.5%;
	font-weight: 500;
	padding-left: 1.3em;
	background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_men.svg);
	background-position: left top;
	background-size: auto 1.3em;
	background-repeat: no-repeat;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
	padding-right: 0.5em;
}

#cotrWrap #cotrSnrCTBox p {
	font-size: 112.5%;
	margin-left: 0;
	margin-right: 0;
}
#cotrWrap #cotrSnrCTBox p.cotrSnrCTCaseCo {
	font-size: 175%;
	color: #000000;
	margin-bottom: 0;
}

.cotrSnrCTBoxDtl {
	background-color: #FFFFFF;
	border-radius: 6px;
	padding: 40px;
	margin-top: 50px;
	text-align: left;
}

#cotrWrap #cotrSnrCTBox .cotrSnrCTBoxDtl p {
	font-size: 100%;
	text-align: left;
}

#cotrWrap .cotrSnrCTBoxDtl ol {
  list-style-type: none;
}

#cotrWrap .cotrSnrCTBoxDtl li {
	margin-bottom: 30px;
}
#cotrWrap .cotrSnrCTBoxDtl li:last-child {
	margin-bottom: 0;
}

#cotrWrap .cotrSnrCTBoxDtl li::before {
	display: none;
}

#cotrWrap .cotrSnrCTBoxDtl h5 {
	text-align: left;
	font-size: 162.5%;
	font-weight: 500;
	color: var(--blueGrayDark);
	margin-top: 30px;
	margin-bottom: 20px;
	line-height: 1.5;
}

#cotrWrap .cotrSnrCTBoxDtl li h5 {
	margin-top: 0;
	margin-bottom: 10px;
}

#cotrWrap .cotrSnrCTBoxDtl li h6 {
	text-align: left;
}

@media screen and (max-width: 992px) {
	#cotrWrap #cotrSnrCTWrap p {
		text-align: left;
	}
}

@media screen and (max-width: 768px) {

	#cotrSnrCTWrap {
		margin-bottom: 40px;
	}

	#cotrSnrCTBox {
		border-radius: 6px;
		padding: 20px;
	}

	#cotrWrap #cotrSnrCTBox h4 {
		font-size: 137.5%;
		margin-top: 10px;
	}

	#cotrWrap #cotrSnrCTBox p {
		font-size: 100%;
	}
	#cotrWrap #cotrSnrCTBox p.cotrSnrCTCaseCo {
		font-size: 112.5%;
	}

	.cotrSnrCTBoxDtl {
		margin-top: 25px;
		padding: 25px;
	}

	#cotrWrap .cotrSnrCTBoxDtl li {
		margin-bottom: 30px;
	}

	#cotrWrap .cotrSnrCTBoxDtl h5 {
		font-size: 125%;
		margin-bottom: 15px;
	}

}

@media screen and (max-width: 640px) {

	#cotrSnrCTBox {
		padding: 15px;
	}

	#cotrWrap #cotrSnrCTBox h4 {
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.cotrSnrCTBoxDtl {
		margin-top: 10px;
		padding: 15px;
	}

	#cotrWrap .cotrSnrCTBoxDtl li {
		margin-bottom: 20px;
	}

	#cotrWrap .cotrSnrCTBoxDtl h5 {
		margin-bottom: 10px;
	}

}

/*-------------------- 講師からのメッセージBox --------------------*/
#cotrSnrMsgBox {
	background-color: var(--bgBlueGray);
	border-radius: 10px;
	padding-top: 40px;
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
	margin-top: 50px;
	text-align: center;
}

#cotrWrap #cotrSnrMsgBox h4 {
  display: inline-block;
  font-size: 162.5%;
  font-weight: 500;
  padding-left: 1.3em;
  background-image: url(https://academy.impress.co.jp/event/common/images/training/training_icon_men.svg);
  background-position: left 0.2em;
  background-size: auto 1.3em;
  background-repeat: no-repeat;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  padding-right: 0.5em;
}

#cotrWrap #cotrSnrMsgBox p {
	font-size: 112.5%;
	margin-left: 0;
	margin-right: 0;
}

.cotrSnrMsgBoxDtl {
	background-color: #FFFFFF;
	border-radius: 6px;
	padding: 40px;
	margin-top: 20px;
	text-align: left;
}

#cotrWrap #cotrSnrMsgBox .cotrSnrMsgBoxDtl p {
	font-size: 100%;
	text-align: left;
}

@media screen and (max-width: 768px) {

	#cotrSnrMsgBox {
		border-radius: 6px;
		padding: 20px;
	}

	#cotrWrap #cotrSnrMsgBox h4 {
		font-size: 137.5%;
		margin-top: 10px;
	}

	#cotrWrap #cotrSnrMsgBox p {
		font-size: 100%;
	}

	.cotrSnrMsgBoxDtl {
		margin-top: 10px;
		padding: 25px;
	}

}

@media screen and (max-width: 640px) {

	#cotrSnrMsgBox {
		padding: 15px;
	}

	#cotrWrap #cotrSnrMsgBox h4 {
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.cotrSnrMsgBoxDtl {
		margin-top: 10px;
		padding: 15px;
	}

}






/**/