/* 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;
}
@media (max-width: 767px) {
	.table tr td {
		display: block;
		width: 100%;
		border-width: 0 0 1px;
	}
}

/* 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(55,60,60,0.9);
}

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;
}
@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: #fff;
}
@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: 20%;
		max-width: 20%;
		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: 80%;
		max-width: 80%;
	}
}

/* message
-------------------------------------------------- */

@media (min-width: 768px) {
	.messageText {
		float: left;
		width: 400px;
	}
}
@media (min-width: 992px) {
	.messageText {
		width: 640px;
	}
}
@media (min-width: 1200px) {
	.messageText {
		width: 820px;
	}
}

.messageText p:first-child {
	margin-top: 0;
}

.messageProfile {
	text-align: center;
}
@media (min-width: 768px) {
	.messageProfile {
		float: right;
		width: 220px;
	}
}

.messageProfile img {
	width: 220px;
	height: 200px;
}

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

.business h3 {
	margin-top: 40px;
	text-align: 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: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: 15%;
}
.syllabusCourse table .tableHeader th:nth-child(2) {
	width: 20%;
}
.syllabusCourse table .tableHeader th:nth-child(3) {
	width: 15%;
}
.syllabusCourse table .tableHeader th:nth-child(4) {
	width: 50%;
}

@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;
}
.syllabusCourse table tr td:nth-child(2) {
	text-align: center;
}
@media (max-width: 767px) {
	.syllabusCourse table tr td:nth-child(2) {
		position: relative;
		padding-left: 110px;
	}
	.syllabusCourse table tr td:nth-child(2):before {
		content: '実施日';
	}
}
.syllabusCourse table tr td:nth-child(3) {
	text-align: center;
}
@media (max-width: 767px) {
	.syllabusCourse table tr td:nth-child(3) {
		position: relative;
		padding-left: 110px;
	}
	.syllabusCourse table tr td:nth-child(3):before {
		content: '時間';
	}
}
@media (max-width: 767px) {
	.syllabusCourse table tr td:nth-child(4) {
		position: relative;
		padding-left: 110px;
	}
	.syllabusCourse table tr td:nth-child(4):before {
		content: 'コンテンツ';
	}
}

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

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

.syllabusCourse table tr td:nth-child(4) 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(4) ul li span {
		width: 100%;
	}
}

.syllabusCourse01 h3 {
	color: #0043a9;
}

.syllabusCourse01 h4 {
	color: #0043a9;
}

.syllabusCourse01 h5 {
	color: #0043a9;
}

.syllabusCourse01 table tr td:nth-child(1) {
	background: linear-gradient(135deg, #0073c5 0%,#001373 100%);
}

.syllabusCourse01 table tr td:nth-child(4) span {
	background: #0043a9;
}

.syllabusCourse02 h3 {
	color: #d82c2c;
}

.syllabusCourse02 h4 {
	color: #d82c2c;
}

.syllabusCourse02 h5 {
	color: #d82c2c;
}

.syllabusCourse02 table tr td:nth-child(1) {
	background: linear-gradient(135deg, #dc0303 0%,#580000 100%);
}

.syllabusCourse02 table tr td:nth-child(4) span {
	background: #d82c2c;
}

.syllabusCourse03 h3 {
	color: #0f8814;
}

.syllabusCourse03 h4 {
	color: #0f8814;
}

.syllabusCourse03 h5 {
	color: #0f8814;
}

.syllabusCourse03 table tr td:nth-child(1) {
	background: linear-gradient(135deg, #017925 0%,#002101 100%);
}

.syllabusCourse03 table tr td:nth-child(4) span {
	background: #0f8814;
}

.syllabusCourse04 h3 {
	color: #fb8c00;
}

.syllabusCourse04 h4 {
	color: #fb8c00;
}

.syllabusCourse04 h5 {
	color: #fb8c00;
}

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

.syllabusCourse04 table tr td:nth-child(4) span {
	background: #fb8c00;
}

.syllabusCourse05 h3,
.syllabusCourse05 h4,
.syllabusCourse05 h5{
    color: #B517EB;
}
.syllabusCourse05 table tr td:nth-child(1) {
    background: linear-gradient(135deg, #d62af0 0%,#8b00e6 100% );
}
.syllabusCourse05 table tr td:nth-child(4) span {
	background: #B517EB
}

/* 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;
}
