/* common
-------------------------------------------------- */

*,
*:before,
*:after {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	height: 100%;
	background-image: url(/img/bg.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	font-family: 'Helvetica Neue', Arial, 'ヒラギノ角ゴ ProN W3', 'メイリオ', sans-serif;
	line-height: 1.5;
}

a {
	color: #c5a13b;
}

/* clearfix */
.clearfix:after {
	content: '';
	display: block;
	clear: both;
}

/* テキスト中央揃え */
.textSmall {
	font-size: 80%;
}

/* テキスト中央揃え */
.textCenter {
	text-align: center;
}

/* レスポンシブコンテナ */
.container {
	width: 100%;
	padding: 0 30px;
	margin: 0 auto;
}
@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}
@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}
@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}
@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

/* 画像レスポンシブ */
.imgResponsive {
	max-width: 100%;
	height: auto;
}

/* ボタン */
.btn {
	display: inline-block;
	width: 100%;
	padding: 10px 0;
	background: #c5a13b;
	box-shadow: 0 0 5px rgba(0,0,0,0.8);
	text-align: center;
	color: #fff;
	text-decoration: none;
	text-shadow: none;
	transition: 0.5s ease-in-out;
}
@media (min-width: 576px) {
	.btn {
		width: auto;
		padding: 10px 80px;
	}
}
.btn:hover {
	background: rgba(55,60,60,0.9);
	color: #fff;
}

/* テーブル */
.table {
	width: 100%;
	border: 1px solid #ccc;
	border-collapse: collapse;
}
@media (max-width: 767px) {
	.table {
		border-width: 1px 1px 0;
	}
}
.table tr th {
	padding: 10px;
	border: 1px solid #ccc;
	background: #eee;
}
@media (max-width: 767px) {
	.table tr th {
		display: block;
		width: 100%;
		border-width: 0 0 1px;
	}
}
@media (min-width: 768px) {
	.table tr th {
		width: 300px;
	}
}
.table tr td {
	padding: 10px;
	border: 1px solid #ccc;
}



/* slide
-------------------------------------------------- */

/* ==========================================================================
   オープニングスライド（暗転0.5秒・完全修正版）
   ========================================================================== */

.opening-slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: #000;
  overflow: hidden;
  display: none;
}
.opening-slider.is-visible {
  display: block;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation-fill-mode: forwards;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- 1枚目 --- */
.slide1 { z-index: 1; }
.opening-slider.is-active .slide1 {
  animation: fade-slide1 2.0s 0.5s ease-out forwards;
}
@keyframes fade-slide1 {
  0% { opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 0; }
}

/* --- 2枚目 --- */
.slide2 { z-index: 2; }
.opening-slider.is-active .slide2 {
  animation: fade-slide2 1.5s 2.0s ease-out forwards;
}
@keyframes fade-slide2 {
  0% { opacity: 0; }
  33.3% { opacity: 1; }
  100% { opacity: 1; } /* 3.5秒時点でパッと消え、4.0秒まで土台の黒になります */
}

/* --- 3枚目：全体をカバーする黒背景 --- */
.slide3 { 
  z-index: 3; 
  background-color: #000; 
}
.opening-slider.is-active .slide3 {
  /* 2枚目が完全に消える4.0秒の時点で、3枚目の黒背景を最前面に出して暗転をキープ */
  animation: fade-bg-slide3 0.1s 4.0s forwards;
}
@keyframes fade-bg-slide3 {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ★3枚目の透過画像：ご指定通り4.5秒（0.5秒の暗転後）からフェードイン */
.slide3 img {
  opacity: 0;
}
.opening-slider.is-active .slide3 img {
  /* 4.5秒ディレイ（4.0秒〜4.5秒の0.5秒間が完全な黒になります）、0.5秒かけてフェードイン */
  animation: fade-img-slide3 0.5s 4.5s ease-out forwards;
}
@keyframes fade-img-slide3 {
  0% { 
    opacity: 0; 
    transform: scale(1); 
  }
  100% { 
    opacity: 1; 
    transform: scale(1); /* 5.0秒時点で表示完了。ここからしっかり静止します */
  }
}

/* スライド終了後に全体を消す設定 */
.opening-slider.fade-out {
  transition: opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}



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

header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	padding: 5px 15px;
}
header.topHeader:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.8);
}
header.topHeader:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, #cfbd6d 0%,#6666ba 50%,#cfbd6d 100%);
}
header.underHeader {
	background: rgba(255,255,255,0.8);
}

header h1 {
	float: left;
	margin: 0;
	font-size: 0;
	line-height: 0;
}
@media (min-width: 768px) {
	header h1 {
		float: none;
		text-align: center;
	}
}
@media (min-width: 992px) {
	header h1 {
		float: left;
	}
}

header h1 img {
	width: auto;
	height: 50px;
}

header h1 a img:first-child {
	display: inline;
}
@media (min-width: 576px) {
	header h1 a img:first-child {
		display: none;
	}
}

header h1 a img:last-child {
	display: none;
}
@media (min-width: 576px) {
	header h1 a img:last-child {
		display: inline;
	}
}

header div {
	float: right;
}
@media (min-width: 768px) {
	header div {
		display: none;
	}
}

header div a {
	font-size: 40px;
	line-height: 50px;
	color: #c5a13b;
	text-decoration: none;
	cursor: pointer;
}

header ul {
	display: none;
	clear: both;
	padding: 15px 0;
	margin: 0;
	list-style: none;
}
header ul.is-open {
	display: block;
}
@media (min-width: 768px) {
	header ul {
		display: block;
		clear: none;
		padding: 5px 0;
		text-align: center;
	}
}
@media (min-width: 992px) {
	header ul {
		float: right;
	}
}

header ul li {
	border-top: 1px solid #ddd;
}
header ul li:last-child {
	border-bottom: 1px solid #ddd;
}
@media (min-width: 768px) {
	header ul li {
		display: inline-block;
		border-top: none;
		border-left: 1px solid #ddd;
	}
	header ul li:last-child {
		border-bottom: none;
		border-right: 1px solid #ddd;
	}
}

header ul li a {
	display: block;
	padding: 10px 10px;
	line-height: 20px;
	color: #666;
	text-decoration: none;
}
header.underHeader ul li a {
	color: #666;
}
@media (min-width: 768px) {
	header ul li a {
		padding: 10px 10px;
		font-size: 14px;
	}
}
@media (min-width: 1200px) {
	header ul li a {
		padding: 10px 20px;
		font-size: 16px;
	}
}
header ul li a:hover {
	color: #c5a13b;
}
header ul li a.active {
	color: #c5a13b;
}

header ul li a i.fa {
	margin-right: 10px;
}
@media (min-width: 768px) {
	header ul li a i.fa {
		display: none;
	}
}



/* about COVID-19
-------------------------------------------------- */
header h1{
	position:relative;
}

p.COVID-19 a{
	color:#fff;
	text-decoration: none;
}

@media (max-width: 767px) {
	p.COVID-19{
	position:absolute;
	top:60px;
	width:100%;
	margin:0;
	padding: 13px 3px 12px 15px;
	font-size: 14px;
	color:#fff;
    background-color:rgb(170,0,46);
	z-index:9;
}
}

@media (min-width: 768px) {
	p.COVID-19{
	position:absolute;
	top:110px;
	width:100%;
	margin:0;
	padding: 15px 6px 13px 20px;
	font-size: 14px;
    background-color:rgb(170,0,46);
	z-index:9;
}
}

@media (min-width: 992px) {
	p.COVID-19{
	position:absolute;
	top:60px;
	width:100%;
	margin:0;
	padding: 10px 3px 9px 20px;
	font-size: 14px;
	color:#fff;
    background-color:rgb(170,0,46);
	z-index:9;
}
}





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

footer {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 10;
	width: 100%;
}
.top footer {
	background: linear-gradient(to right, #cfbd6d 0%,#6666ba 50%,#cfbd6d 100%);
}
.under footer {
	background: rgba(55,60,60,0.9);
	text-shadow: none;
}

footer p {
	margin: 0;
	font-size: 12px;
	line-height: 30px;
	text-align: center;
	color: #fff;
}

/* top
-------------------------------------------------- */

.top {
	position: relative;
	height: auto;
	padding: 60px 0 30px;
}
@media (min-width: 768px) {
	.top {
		height: 100%;
		padding: 110px 0 30px;
	}
}
@media (min-width: 992px) {
	.top {
		padding: 60px 0 30px;
	}
}

.top ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	height: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}
@media (min-width: 768px) {
	.top ul {
		overflow: hidden;
	}
}

.top ul li {
	position: relative;
	flex-grow: 1;
	flex-basis: 100%;
	max-width: 100%;
	height: 360px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
@media (min-width: 768px) {
	.top ul li {
		position: relative;
		flex-basis: 33.33%;
		max-width: 33.33%;
		height: 100%;
	}
}
.top ul li:nth-child(1) {
	background-image: url(/img/top01.jpg);
}
@media (min-width: 768px) {
	.top ul li:nth-child(1) {
		transform: translateX(100%);
	}
}
.top ul li:nth-child(2) {
	background-image: url(/img/top02.jpg);
}
@media (min-width: 768px) {
	.top ul li:nth-child(2) {
		transform: translateX(-100%);
	}
}
.top ul li:nth-child(3) {
	background-image: url(/img/top03.jpg);
}

.top ul li a {
	display: block;
	height: 100%;
	color: #fff;
	text-decoration: none;
}

.top ul li h2 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	margin: 0;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	font-weight: normal;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
	opacity: 1;
	transition: 0.5s ease-in-out;
}
.top ul li:nth-child(2):hover h2 {
	opacity: 0;
}
.top ul li:nth-child(3):hover h2 {
	opacity: 0;
}

.top ul li h2 img {
	width: 100px;
	height: auto;
}
.top ul li h2 .topDescription img {
	display: none;
}
@media (min-width: 768px) {
	.top ul li h2 img {
		width: 160px;
	}
	.top ul li h2 .topDescription img {
		display: inline;
		width: auto;
	}
}

.top ul li h2 span {
	display: block;
	font-size: 14px;
	line-height: 20px;
}
.top ul li h2 span.topDescription {
	margin-top: 20px;
}
.top ul li h2 span:last-child {
	margin-top: 20px;
	font-size: 20px;
}
@media (min-width: 768px) {
	.top ul li h2 span:last-child {
		display: none;
	}
}

.top ul li div {
	display: none;
	position: absolute;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	transition: 0.5s ease-in-out;
}
@media (min-width: 768px) {
	.top ul li div {
		display: block;
	}
}
.top ul li:hover div {
	top: 0;
	opacity: 1;
}

.top ul li div p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	margin: 0;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
}

.top ul li div p span {
	display: block;
	font-size: 14px;
	line-height: 20px;
}

/* under
-------------------------------------------------- */

.under {
	position: relative;
	height: auto;
	min-height: 100%;
	padding: 60px 0 110px;
	color: #fff;
	text-shadow: 0 0 5px rgba(0,0,0,1);
}
@media (min-width: 768px) {
	.under {
		padding: 110px 0 110px;
	}
}
@media (min-width: 992px) {
	.under {
		padding: 60px 0 110px;
	}
}

.under h2 {
	padding: 80px 0;
	margin: 0 0 80px;
	text-align: center;
	background: rgba(0,0,0,0.6);
}

.under h2 span {
	display: block;
	margin-top: 10px;
	font-size: 18px;
	font-weight: normal;
}

/* aboutus
-------------------------------------------------- */

.aboutus dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	margin-bottom: -30px;
}

.aboutus dl dt {
	flex-grow: 1;
	flex-basis: 100%;
	max-width: 100%;
	padding-bottom: 10px;
}
@media (min-width: 768px) {
	.aboutus dl dt {
		flex-grow: 1;
		flex-basis: 30%;
		max-width: 30%;
		padding-bottom: 30px;
	}
}

.aboutus dl dt br {
	display: none;
}
@media (min-width: 768px) {
	.aboutus dl dt br {
		display: inline;
	}
}
@media (min-width: 1200px) {
	.aboutus dl dt br {
		display: none;
	}
}

.aboutus dl dd {
	flex-grow: 1;
	flex-basis: 100%;
	max-width: 100%;
	padding-bottom: 30px;
	margin: 0;
}
@media (min-width: 768px) {
	.aboutus dl dd {
		flex-grow: 4;
		flex-basis: 70%;
		max-width: 70%;
	}
}

/* message
-------------------------------------------------- */
.message_img img {
	padding-top: 20px;
}
.message_img img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

.message .container {
	max-width: 1000px;
}

#message_01 {
	margin-bottom: 50px;
}

#message_01 h3, #message_02 h3 {
	border-bottom: 1px solid #fff;
	padding: 10px 0;
	margin-bottom: 20px;
}

.flex-between {
	display: flex;
	justify-content: space-between;
}
.rev {
	flex-direction: row-reverse;
}
.wrap {
	flex-wrap: wrap;
}

.text-center {
	text-align: center;
}

.per-50 {
	width: 46%;
}


@media(max-width:767px){
	.per-50 {
		width: 100%;}
}

/* business
-------------------------------------------------- */

.business h3 {
	margin-top: 40px;
	text-align: center;
}

.flex-center {
	display: flex;
	justify-content: center;
}

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

.courseLink {
	padding: 0;
	margin: 0 0 80px;
	text-align: center;
}

.courseLink li {
	display: inline-block;
	border-left: 1px solid #ddd;
}
.courseLink li:last-child {
	border-right: 1px solid #ddd;
}

.courseLink li a {
	padding: 10px 20px;
	color: #fff;
	text-decoration: none;
}
.courseLink li a:hover {
	color: #c5a13b;
}
.courseLink li a.active {
	color: #c5a13b;
	font-weight: bold;
}

.courseUnderLink {
	margin: 80px 0 0;
}

.courseMainLink a:first-child {
	margin-bottom: 20px;
}
@media (min-width: 768px) {
	.courseMainLink a:first-child {
		margin-right: 20px;
	}
}


/* syllabus
-------------------------------------------------- */

.syllabusAnchor {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	padding: 0;
	margin: 0 -15px;
	list-style: none;
}

.syllabusAnchor li {
	flex-grow: 1;
	flex-basis: 100%;
	max-width: 100%;
	padding: 0 15px 30px;
	text-align: center;
	font-size: 14px;
}
@media (min-width: 992px) {
	.syllabusAnchor li {
		flex-basis: 33.33%;
		max-width: 33.33%;
	}
}
@media (min-width: 1200px) {
	.syllabusAnchor li {
		font-size: 16px;
	}
}

.syllabusAnchor li a {
	display: block;
	padding: 10px 0;
	color: #fff;
	text-decoration: none;
}
.syllabusAnchor li a.syllabusAnchorCourse01 {
	background: linear-gradient(135deg, #2b339a 0%,#080059 100%);
}
.syllabusAnchor li a.syllabusAnchorCourse02 {
	background: linear-gradient(135deg, #dc0303 0%,#580000 100%);
}
.syllabusAnchor li a.syllabusAnchorCourse03 {
	background: linear-gradient(135deg, #017925 0%,#002101 100%);
}
.syllabusAnchor li a.syllabusAnchorCourse04 {
	background: linear-gradient(135deg, #ffb300 0%,#e65100 100%);
}
.syllabusAnchor li a.syllabusAnchorCourse05 {
	background: linear-gradient(135deg, #d62af0 0%,#8b00e6 100%);
    letter-spacing: -0.1rem;
}
.syllabusAnchor li a.syllabusAnchorCourse06 {
	background: linear-gradient(135deg, #2499bb 0%,#19768a 100% );
    letter-spacing: -0.1rem;
}
/* 07: SOC Tier1 (桃色系) */
.syllabusAnchor li a.syllabusAnchorCourse07 {
  background: linear-gradient(135deg, #ff7ba9 0%, #b32d5a 100%);
  letter-spacing: -0.05rem;
}

/* 08: SOC Tier2 (赤系) */
.syllabusAnchor li a.syllabusAnchorCourse08 {
  background: linear-gradient(135deg, #e63946 0%, #801018 100%);
  letter-spacing: -0.05rem;
}

/* 09: VPN診断士 (橙色系) */
.syllabusAnchor li a.syllabusAnchorCourse09 {
  background: linear-gradient(135deg, #ff781e 0%, #a63a00 100%);
}

/* 10: ADサーバー診断士 (山吹色系) */
.syllabusAnchor li a.syllabusAnchorCourse10 {
  background: linear-gradient(135deg, #ffb800 0%, #996f00 100%);
  letter-spacing: -0.1rem;
}

/* 11: クラウド診断士 (黄緑系) */
.syllabusAnchor li a.syllabusAnchorCourse11 {
  background: linear-gradient(135deg, #8cd333 0%, #447310 100%);
}

/* 12: マルウェア解析 入門 (薄橙系) */
.syllabusAnchor li a.syllabusAnchorCourse12 {
  background: linear-gradient(135deg, #fca374 0%, #a35329 100%);
  letter-spacing: -0.1rem;
}

/* 13: マルウェア解析 実践 (茶色系) */
.syllabusAnchor li a.syllabusAnchorCourse13 {
  background: linear-gradient(135deg, #8e562c 0%, #46250b 100%);
  letter-spacing: -0.1rem;
}

/* 14: セキュアコーダー (焦茶色系) */
.syllabusAnchor li a.syllabusAnchorCourse14 {
  background: linear-gradient(135deg, #5c4033 0%, #2b1a11 100%);
}

/* 15: 経産省SCS★3内部監査人 (灰色系) */
.syllabusAnchor li a.syllabusAnchorCourse15 {
  background: linear-gradient(135deg, #9da3a6 0%, #4a5053 100%);
  letter-spacing: -0.1rem;
}

.syllabusAnchor li a:hover {
	color: #c5a13b;
}
.syllabusAnchor li a i {
	margin-right: 10px;
}
.komesmall{
    text-align: center;
    font-size: 0.75rem;
    margin-top: -15px;
}


.syllabusCourse {
	padding: 30px;
	margin: 0 -30px 30px;
	background: #fff;
	color: #000;
	text-shadow: none;
}
@media (min-width: 576px) {
	.syllabusCourse {
		margin: 0 0 30px;
	}
}
@media (min-width: 768px) {
	.syllabusCourse {
		padding: 60px;
	}
}

.syllabusCourse h3 {
	font-size: 24px;
	text-align: center;
}

.syllabusCourse h4 {
	font-size: 18px;
	text-align: center;
}

.syllabusCourse h5 {
	margin: 0;
	font-size: 18px;
}

.syllabusCourse ul {
	padding-left: 25px;
}

@media (max-width: 767px) {
	.syllabusCourse table .tableHeader {
		display: none;
	}
}

.syllabusCourse table .tableHeader th:nth-child(1) {
	width: 25%;
}
.syllabusCourse table .tableHeader th:nth-child(2) {
	width: 75%;
}


@media (max-width: 767px) {
	.syllabusCourse table tr td:before {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100px;
		height: 100%;
		padding: 10px;
		border-right: 1px solid #ccc;
		background: #eee;
		font-size: 14px;
		text-align: center;
	}
}
.syllabusCourse table tr td:nth-child(1) {
	text-align: center;
	color: #fff;
	width: 150px;
}
.syllabusCourse table tr td:nth-child(2) {
	width: calc(100% - 150px);
}

@media (max-width: 767px) {
	.syllabusCourse table tr td:nth-child(1) {
		width: 70px;
	}
	.syllabusCourse table tr td:nth-child(2) {
		width: calc(100% - 70px);
	}
	.table tr td:first-child {
		padding: 10px 2px;
	}
}


.syllabusCourse table tr td:nth-child(2) ul {
	padding: 0;
	margin: 0 0 10px;
	list-style: none;
}
.syllabusCourse table tr td:nth-child(2) ul:last-child {
	margin-bottom: 0;
}

.syllabusCourse table tr td:nth-child(2) ul li {
	margin-bottom: 5px;
}
.syllabusCourse table tr td:nth-child(2) ul:last-child li:last-child {
	margin-bottom: 0;
}

.syllabusCourse table tr td:nth-child(2) ul li span {
	display: inline-block;
	padding: 0 10px;
	border-radius: 4px;
	margin-right: 5px;
	font-size: 14px;
	color: #fff;
}
@media (max-width: 767px) {
	.syllabusCourse table tr td:nth-child(2) ul li span {
		width: 100%;
	}
}

.syllabusCourse01 h3,
.syllabusCourse01 h5 {
	color: #0043a9;
}
.syllabusCourse01 h4 {
	color: #fff;
	background-color: #0043a9;
}
.syllabusCourse01 h4.syllabusTTL {
	color: #0043a9;
	background:none;
	margin-bottom: 10px;
	font-size:22px;
}
.syllabusCourse01 table tr td:nth-child(1) {
	background: linear-gradient(135deg, #0073c5 0%,#001373 100%);
}
.syllabusCourse01 table tr td:nth-child(2) span {
	background: #0043a9;
}

.syllabusCourse02 h3,
.syllabusCourse02 h5 {
	color: #d82c2c;
}
.syllabusCourse02 h4 {
	color: #fff;
	background-color: #d82c2c;
}
.syllabusCourse02 h4.syllabusTTL {
	color: #d82c2c;
	background:none;
	margin-bottom: 10px;
	font-size:22px;
}
.syllabusCourse02 table tr td:nth-child(1) {
	background: linear-gradient(135deg, #dc0303 0%,#580000 100%);
}
.syllabusCourse02 table tr td:nth-child(2) span {
	background: #d82c2c;
}


.syllabusCourse03 h3,
.syllabusCourse03 h5 {
	color: #0f8814;
}
.syllabusCourse03 h4 {
	color: #fff;
	background-color: #0f8814;
}
.syllabusCourse03 h4.syllabusTTL {
	color: #0f8814;
	background:none;
	margin-bottom: 10px;
	font-size:22px;
}
.syllabusCourse03 table tr td:nth-child(1) {
	background: linear-gradient(135deg, #017925 0%,#002101 100%);
}
.syllabusCourse03 table tr td:nth-child(2) span {
	background: #0f8814;
}


.syllabusCourse04 h3,
.syllabusCourse04 h5 {
	color: #fb8c00;
}

.syllabusCourse04 h4 {
	color:#fff;
	background-color: #fb8c00;
}
.syllabusCourse04 h4.syllabusTTL {
	color: #fb8c00;
	background:none;
	margin-bottom: 10px;
	font-size:22px;
}

.syllabusCourse04 table tr td:nth-child(1) {
	background: linear-gradient(135deg, #ffb300 0%,#e65100 100%);
}
.syllabusCourse04 table tr td:nth-child(2) span {
	background: #fb8c00;
}

.syllabusCourse05 h3,
.syllabusCourse05 h5{
    color: #B517EB;
}
.syllabusCourse05 h4{
	color: #fff;
    background-color: #B517EB;
}
.syllabusCourse05 h4.syllabusTTL {
	color: #B517EB;
	background:none;
	margin-bottom: 10px;
	font-size:22px;
}
.syllabusCourse05 table tr td:nth-child(1) {
    background: linear-gradient(135deg, #d62af0 0%,#8b00e6 100% );
}
.syllabusCourse05 table tr td:nth-child(2) span {
	background: #B517EB;
}

.syllabusCourse06 h3,
.syllabusCourse06 h5{
    color: #2499bb;
}
.syllabusCourse06 h4{
		color: #fff;
    background-color: #2499bb;
}
.syllabusCourse06 h4.syllabusTTL {
	color: #2499bb;
	background:none;
	margin-bottom: 10px;
	font-size:22px;
}
.syllabusCourse06 table tr td:nth-child(1) {
    background: linear-gradient(135deg, #2499bb 0%,#19768a 100% );
}
.syllabusCourse06 table tr td:nth-child(2) span {
	background: #2499bb;
}


/* --- 07: SOC Tier1 (桃色ベース) --- */
.syllabusCourse07 h3, .syllabusCourse07 h5 { color: #d6336c; }
.syllabusCourse07 h4 { color: #fff; background-color: #d6336c; }
.syllabusCourse07 h4.syllabusTTL { color: #d6336c; background: none; margin-bottom: 10px; font-size: 22px; }
.syllabusCourse07 table tr td:nth-child(1) { background: linear-gradient(135deg, #ff7ba9 0%, #b32d5a 100%); }
.syllabusCourse07 table tr td:nth-child(2) span { background: #d6336c; }

/* --- 08: SOC Tier2 (赤ベース) --- */
.syllabusCourse08 h3, .syllabusCourse08 h5 { color: #c32f3a; }
.syllabusCourse08 h4 { color: #fff; background-color: #c32f3a; }
.syllabusCourse08 h4.syllabusTTL { color: #c32f3a; background: none; margin-bottom: 10px; font-size: 22px; }
.syllabusCourse08 table tr td:nth-child(1) { background: linear-gradient(135deg, #e63946 0%, #801018 100%); }
.syllabusCourse08 table tr td:nth-child(2) span { background: #c32f3a; }

/* --- 09: VPN診断士 (橙色ベース) --- */
.syllabusCourse09 h3, .syllabusCourse09 h5 { color: #e65f00; }
.syllabusCourse09 h4 { color: #fff; background-color: #e65f00; }
.syllabusCourse09 h4.syllabusTTL { color: #e65f00; background: none; margin-bottom: 10px; font-size: 22px; }
.syllabusCourse09 table tr td:nth-child(1) { background: linear-gradient(135deg, #ff781e 0%, #a63a00 100%); }
.syllabusCourse09 table tr td:nth-child(2) span { background: #e65f00; }

/* --- 10: ADサーバー診断士 (山吹色ベース) --- */
.syllabusCourse10 h3, .syllabusCourse10 h5 { color: #cca200; }
.syllabusCourse10 h4 { color: #fff; background-color: #cca200; }
.syllabusCourse10 h4.syllabusTTL { color: #cca200; background: none; margin-bottom: 10px; font-size: 22px; }
.syllabusCourse10 table tr td:nth-child(1) { background: linear-gradient(135deg, #ffb800 0%, #996f00 100%); }
.syllabusCourse10 table tr td:nth-child(2) span { background: #cca200; }

/* --- 11: クラウド診断士 (黄緑ベース) --- */
.syllabusCourse11 h3, .syllabusCourse11 h5 { color: #6bb01a; }
.syllabusCourse11 h4 { color: #fff; background-color: #6bb01a; }
.syllabusCourse11 h4.syllabusTTL { color: #6bb01a; background: none; margin-bottom: 10px; font-size: 22px; }
.syllabusCourse11 table tr td:nth-child(1) { background: linear-gradient(135deg, #8cd333 0%, #447310 100%); }
.syllabusCourse11 table tr td:nth-child(2) span { background: #6bb01a; }

/* --- 12: マルウェア解析 入門 (薄橙ベース) --- */
.syllabusCourse12 h3, .syllabusCourse12 h5 { color: #e07d48; }
.syllabusCourse12 h4 { color: #fff; background-color: #e07d48; }
.syllabusCourse12 h4.syllabusTTL { color: #e07d48; background: none; margin-bottom: 10px; font-size: 22px; }
.syllabusCourse12 table tr td:nth-child(1) { background: linear-gradient(135deg, #fca374 0%, #a35329 100%); }
.syllabusCourse12 table tr td:nth-child(2) span { background: #e07d48; }

/* --- 13: マルウェア解析 実践 (茶色ベース) --- */
.syllabusCourse13 h3, .syllabusCourse13 h5 { color: #78431b; }
.syllabusCourse13 h4 { color: #fff; background-color: #78431b; }
.syllabusCourse13 h4.syllabusTTL { color: #78431b; background: none; margin-bottom: 10px; font-size: 22px; }
.syllabusCourse13 table tr td:nth-child(1) { background: linear-gradient(135deg, #8e562c 0%, #46250b 100%); }
.syllabusCourse13 table tr td:nth-child(2) span { background: #78431b; }

/* --- 14: セキュアコーダー (焦茶色ベース) --- */
.syllabusCourse14 h3, .syllabusCourse14 h5 { color: #4a3227; }
.syllabusCourse14 h4 { color: #fff; background-color: #4a3227; }
.syllabusCourse14 h4.syllabusTTL { color: #4a3227; background: none; margin-bottom: 10px; font-size: 22px; }
.syllabusCourse14 table tr td:nth-child(1) { background: linear-gradient(135deg, #5c4033 0%, #2b1a11 100%); }
.syllabusCourse14 table tr td:nth-child(2) span { background: #4a3227; }

/* --- 15: 経産省SCS★3内部監査人 (灰色ベース) --- */
.syllabusCourse15 h3, .syllabusCourse15 h5 { color: #656c70; }
.syllabusCourse15 h4 { color: #fff; background-color: #656c70; }
.syllabusCourse15 h4.syllabusTTL { color: #656c70; background: none; margin-bottom: 10px; font-size: 22px; }
.syllabusCourse15 table tr td:nth-child(1) { background: linear-gradient(135deg, #9da3a6 0%, #4a5053 100%); }
.syllabusCourse15 table tr td:nth-child(2) span { background: #656c70; }



.red {
	color: #fd0101;
}
.bold {
	font-weight: 700;
}
.caption {
	font-size: 0.8em;
	color: #fd0101;
}

/* requirement
-------------------------------------------------- */

.requirement h3 {
	text-align: center;
}

.requirementBtn {
	width: 100%;
	padding: 10px;
}
@media (min-width: 576px) {
	.requirementBtn {
		width: 400px;
	}
}

.requirementBtn span {
	display: block;
}


/* faq
-------------------------------------------------- */

.faq dl {
	text-shadow: none;
	color: #000;
}

.faq dl dt {
	position: relative;
	padding: 20px 20px 10px 70px;
	background: #fff;
}
.faq dl dt:before {
	content: 'Q';
	display: block;
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 1;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #c5a13b;
	font-size: 28px;
	line-height: 40px;
	text-align: center;
	color: #fff;
}

.faq dl dt span {
	display: inline-block;
	padding: 0 10px;
	border-radius: 4px;
	font-size: 14px;
	color: #fff;
}
.faq dl dt span.faqCost {
	background: #0043a9;
}
.faq dl dt span.faqSchedule {
	background: #d82c2c;
}
.faq dl dt span.faqExamination {
	background: #0f8814;
}
.faq dl dt span.faqQualification {
	background: #fb8c00;
}
.faq dl dt span.faqContact {
	background: #2196f3;
}
.faq dl dt span.faqCourse {
	background: #e91e63;
}
.faq dl dt span.faqOther {
	background: #666;
}
.faq dl dt span.faqCompletion {
	background: #009688;
}

.faq dl dd {
	position: relative;
	min-height: 70px;
	padding: 10px 20px 20px 70px;
	margin: 0 0 30px;
	background: #fff;
}
.faq dl dd:before {
	content: 'A';
	display: block;
	position: absolute;
	top: 10px;
	left: 20px;
	z-index: 1;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #c5a13b;
	font-size: 28px;
	line-height: 40px;
	text-align: center;
	color: #fff;
}


/* privacypolicy
-------------------------------------------------- */

.privacypolicy ol {
	padding-left: 25px;
	margin-bottom: -10px;
}

.privacypolicy ol li {
	margin-bottom: 10px;
}
