@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
/**********************************/
/* 骨組み（全体背景）****************/
/**********************************/
body{
	font-family: 'Noto Sans JP', sans-serif;
	color:#002059;
	text-align: center;

	background-image: url(../img/bg_section.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}
@media screen and (max-width: 767px) {
	body{
		background-image: url(../img/bg_section_sp.png);
	}
}
/**********************************/
/* ヘッダー ***********************/
/**********************************/
header {
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px 40px;
	box-sizing: border-box;
	background: #897ab9; 
	border-bottom: 5px solid #ffffff;
/*	background-color: transparent;*/
}
header .inner {
	color: #ffffff;
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}
#header.scroll {
	position: fixed;
/*	background-color: transparent;*/
	background: rgba(137, 122, 185,0.8);
	animation-name: anime;
	animation-duration: 0.3s;
	border-bottom: 5px solid #ffffff;
}
@keyframes anime {
	0% {
	  opacity: 0;
	}
	100% {
	  opacity: 1;
	}
}
@media screen and (max-width: 767px) {
	header {
		padding: 0;
	}
	header .inner img {
		max-width: 50%;
		height: auto;
	}
	header .inner .logo {
		font-size: 100%;
	}
}

/* ハンバーガー ***********************/
.logo_gogo {
	display:block;
	margin:0;
	font-size: 140%;
	font-weight: bold;
	text-align: left;
	width: 300px;
}
nav{
	width: 100%;
	height: 70px;
	position: relative;
	background-color: transparent;
}
.drawer{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 70px;
	padding: 0;
}

/*ナビゲーション部分*/
.menu ul li {
	margin: 5px 0 5px 40px;
}
.menu ul li a {
    display:block;
    font-weight:bold;
    padding: 10px;
    border-bottom: 1px dotted #CCC;
	color:#ffffff;
	text-decoration:none;
}
.menu ul li a:hover {
	background-color:rgba(0,0,0,0.5);
	color:#CCC;
	text-decoration : underline;	
}
.menu{
	opacity: 1;
	z-index: 999;
	position: relative;
	text-align:center;
	/* background-color:rgba(255,255,255,0.5);*/
	background-color:#897ab9;
	transition: .5s ease;/*滑らかに表示*/
		-webkit-transform: translateX(-105%);
	transform: translateX(-105%);/*左に隠しておく*/
}

/*OPEN時の動き*/
.menu.open {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）*/
}
   
/*トグルボタンのスタイルを指定*/
.Toggle {
	display: block;
	position: fixed;    /* bodyに対しての絶対位置指定 */
	width: 42px;
	height: 42px;
	cursor: pointer;
	z-index: 3;
	right:15px;
}
.Toggle span {
	display: block;
	position: absolute;
	width: 50px;
	border-bottom: solid 4px #ffffff;
	-webkit-transition: .35s ease-in-out; /*変化の速度を指定*/
	-moz-transition: .35s ease-in-out;    /*変化の速度を指定*/
	transition: .35s ease-in-out;     /*変化の速度を指定*/

}
.Toggle span:nth-child(1) {
	top:5px;
}
.Toggle span:nth-child(2) {
	top: 18px;
}
.Toggle span:nth-child(3) {
	top: 32px;
}
.Toggle.active span:nth-child(1) {
	top: 18px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
   
@media screen and (min-width: 1252px) {
	header::after{
		display:none;
	} 
   nav{
		display: flex;
	}
	.logo_gogo{
		font-size: 200%;
		width: 500px;
   }
   .Toggle{
		display: none;
	}
	.menu{
		z-index: 999;
		width: 100%;
		background-color: transparent;
		margin-top:0;
		-webkit-transform: translateX(0);
		transform: translateX(0);
   }
   .menu ul{
		height: 70px;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		align-items: center;
   }
   .menu ul li a{
		padding: 0 1em;
		border-bottom: none;
   }
   .menu ul li a:hover
   {
		background-color:transparent;
   }
}

/**********************************/
/* フッター ***********************/
/**********************************/
footer{
/*	border-top: 20px solid #005BAC;*/
	background:#ebf6fd;
	color:#897ab9;
}
.footer_inner{
	padding:0 0 50px 0 ;
	position:relative;
	background: #ebf6fd;
}
.footer_inner img:hover{
	opacity: 0.5 ;
}
.footer_pref{
	padding: 50px 0;
	background:#897ab9;
}
.footer_shusai{
	font-size:130%;
	font-weight: 800;
}
.footer_jimu{
	font-size:110%;
}
.footer_copy{
	font-size:110%;
	margin-top:60px;
}
.footer_top{
	content: '';
	display: block;
	position: absolute;
	bottom: 30px;
	right: 30px;
}

@media screen and (max-width: 767px) {
	.footer_inner{
		padding:0 0 130px 0 ;
		position:relative;
	}
		.footer_jimu{
		font-size:80%;
	}
}


/**********************************/
/* 事業内容（画像の上）**************/
/**********************************/
.title_header {
	background-color:#ebf6fd;
	width: 100%;
}
.title_header img{
	width: 100%;
	justify-content: center;
	border-radius: 0 0 80px 80px;
	padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
	.title_header {
		background-color:#99a1d0;
	}
	.title_header img{
		border-radius: 0;
	}
}
/**********************************/
/*　　見出し　　　　　　　     　　　*/
/**********************************/
.heading_p1 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	text-align: center;
}

.heading_p1::before,
.heading_p1::after {
	content: '';
	width: 3px;
	height: 40px;
	background-color: #897ab9;
}

.heading_p1::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}
.heading_p1::after {
	margin-left: 30px;
	transform: rotate(35deg)
}

/**********************************/
/*　　チェックマーク          　　　*/
/**********************************/
.worries_text{
	padding: 10px 19%;
	text-align: left;
}
.checkmark_p1{
	padding-left:24px;
	position:relative;
}

.checkmark_p1:before,
.checkmark_p1:after{
	content:"";
	display:block;
	position:absolute;
}
.checkmark_p1:before{
	width:16px;
	height:16px;
	border-radius:3px;
	background:#ffffff;
	border:1px solid #000000;
	left:0;top:2px;
}
.checkmark_p1:after{
	border-left:2px solid #ff0000;
	border-bottom:2px solid #ff0000;
	width:15px;
	height:5px;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	left:5px;
	top:3px;
}
@media screen and (max-width: 767px) {
	.worries_text{
		padding: 5px 5px;
	}
}
/**********************************/
/*　　セミナー情報テーブル     　　　*/
/**********************************/
.Step1_event_block{
	margin-top:20px;
	width:100%;
	font-weight: bold;
	background-color:#ebf6fd;
	text-align: center;
}
.Step1_event_title{
	margin-top: 20px;
	border: 3px solid #897ab9;
	background:#ffffff;
	color:#897ab9;
	text-align: center;
	font-size: 200%;
}
.Step1_event_title p{
	font-size: 80%;
}
.Step1_event_block .text_center{
	padding: 50px auto;
	text-align: center;
}
.Step1_event_block .text_left{
	text-align: left;
	font-size: 100%;
	padding-bottom: 20px;
}
.Step1_event_table{
	table-layout: fixed;
	font-size:100%;
	width: 100%;
	text-align: center;
	margin-top: 10px;
	padding-top: 10px;
}
.Step1_event_table th{
	background-color:#897ab9;
	border-color : #ffffff;
	color:#FFF;
	padding : 1px;
	width: auto;
	font-size: 120%;
	font-weight: bold;
	border: 2px #baceeb solid;
}
.Step1_event_table td{
	padding : 1px;
	text-align: center;
	font-size: 100%;
	border: 1px #897ab9 solid;
}
.Step1_event_table .text_waitup{
	font-size:180%;
	font-weight: bold;
}
.Step1_event_table .text_large{
	font-size:200%;
}
@media screen and (max-width: 767px) {
	.Step1_event_title{
		font-size: 150%;
	}
	.Step1_event_block{
		width:100%;
	}
	.Step1_event_table th{
		display: block;
	}
	.Step1_event_table td{
		display: block;
		padding:3px 2px;
		font-size:80%;
		text-align: center;
	}
	.Step1_event_table .text_waitup{
		font-size:150%;
	}
	.Step1_event_table .text_large{
		font-size:180%;
	}
}
/**********************************/
/*　　カリキュラム情報テーブル      */
/**********************************/
table.table_curriculum {
	width:100%;
	border-right:#897ab9 solid 1px;
	border-collapse: collapse;
	table-layout: fixed;
	font-size:100%;
	font-weight: bold;
}
table.table_curriculum thead th {
	background:#897ab9;
	color: #ffffff;
	padding:10px 5px;
	border:#baceeb solid 1px;
	text-align: center;
}
table.table_curriculum thead th:first-child {
	width: 10%;
}
table.table_curriculum thead th:last-child {
	width: 45%;
}
table.table_curriculum tbody th {
	background:#897ab9;
	color: #ffffff;
	padding:10px 5px;
	border:#baceeb solid 1px;
	vertical-align:middle;
	text-align: center;
	width: 10px;
}
table.table_curriculum tbody tr:last-child th {
	width: 10px;
}
table.table_curriculum tbody td {
	background:#FFF;
	padding:10px 5px;
	border:#baceeb solid 1px;
	vertical-align:top;
	text-align: left;
}
table.table_curriculum tbody td .text_large{
	font-size:130%;
}
 
@media screen and (max-width: 640px) {
	table.table_curriculum thead {
		display:none;
	}
	table.table_curriculum tbody th {
		display:block;
		width: 100%;
	}
	table.table_curriculum tbody td {
		display:block;
	}
	table.table_curriculum tbody td::before {
		content: attr(label);
		float: left;
		clear:both;
		font-weight:bold;
	}
	table.table_curriculum tbody td p {
		padding-left:1em;
	}
	table.table_curriculum tbody tr:last-child th {
		width: 100%;
	}
}
/**********************************/
/*　　日程・会場スケジュールテーブル */
/**********************************/
table.table_schedule {
	width:100%;
	border-right:#897ab9 solid 1px;
	border-collapse: collapse;
	table-layout: fixed;
	font-size:100%;
	font-weight: bold;
	table-layout: fixed;
}
table.table_schedule tr>*:empty{
    background-image: linear-gradient(to right top, transparent calc(50% - 0.5px), #897ab9 50%, #897ab9 calc(50% + 0.5px), transparent calc(50% + 1px)) !important;
}
table.table_schedule thead th {
	background:#897ab9;
	padding:10px 5px;
	border:#c3b5f1 solid 1px;
	text-align: center;
}
table.table_schedule thead th:first-child {
	width: 100px;
}
table.table_schedule thead th:nth-child(2) {
	width: 30%;
}
table.table_schedule thead th:last-child {
	border:#c3b5f1 solid 1px;
	width: 30%;
}
table.table_schedule tbody th {
	background:#897ab9;
	padding:10px 5px;
	border:#c3b5f1 solid 1px;
}
table.table_schedule tbody tr:last-child th {
	border:#c3b5f1 solid 1px;
}
table.table_schedule tbody td {
	background:#FFF;
	padding:10px 5px;
	border:#897ab9 solid 1px;
	text-align: center;
	vertical-align:middle;
}
table.table_schedule tbody td:nth-child(2n) {
	text-align: left;
}
table.table_schedule tbody td:last-child {
	text-align: left;
}

table.table_schedule tbody td .venue_row{
	vertical-align:top;
}
table.table_schedule tbody td .text_large{
	font-size:130%;
}
table.table_schedule tbody td .text_adr{
	font-size:70%;
	font-weight: lighter;
}

@media screen and (max-width: 640px) {
	table.table_schedule thead {
		display:none;
	}
	table.table_schedule tbody th {
		display:block;
		width: 100%;
	}
	table.table_schedule tbody td {
		display:block;
		text-align: left;
	}
	table.table_schedule tbody td::before {
		content: attr(label);
		float: left;
		clear:both;
		font-weight:bold;
	}
	table.table_schedule tbody td label {
		font-weight: bold;
		font-style: italic;
	}
	table.table_schedule tbody td p {
		padding-left:1em;
	}
	table.table_schedule tbody tr:last-child th {
		width: 100%;
	}
}
/**********************************/
/*　　講師紹介テーブル              */
/**********************************/
.teacher_title{
	margin-top: 20px;
	background:#897ab9;
	color:#ffffff;
	text-align: left;
	font-size: 160%;
	padding-left: 10px;
}
table.table_teacher {
	width:100%;
	table-layout: fixed;
	font-size:100%;
	font-weight: bold;
	vertical-align: top;
}
table.table_teacher thead th {
	padding:10px 5px;
	text-align: left;
}
table.table_teacher thead th:first-child {
	width: 130px;
}
table.table_teacher tbody th {
	padding:10px 5px;
}
table.table_teacher tbody td:first-child {
	width: 260px;
}
table.table_teacher tbody td {
	padding:10px 5px;
	text-align: left;
	vertical-align: top;
}
table.table_teacher tbody td .teacher_theme{
	margin-top: 10px;
	color:#897ab9;
	text-align: left;
	font-size: 160%;
	vertical-align: top;
}
table.table_teacher tbody td .teacher_sub_theme{
	font-size: 80%;
/*	padding-left: 100px;*/
}
table.table_teacher tbody td .text_large{
	font-size:160%;
}
table.table_teacher tbody td .text_middle{
	font-size:120%;
}
table.table_teacher tbody td a{
	font-size:80%;
}
table.table_teacher img{
	border-radius: 20px;
} 
@media screen and (max-width: 640px) {
	table.table_teacher thead {
		display:none;
	}
	table.table_teacher tbody th {
		display:block;
		width: 100%;
	}
	table.table_teacher tbody td {
		display:block;
	}
	table.table_teacher tbody td::before {
		content: attr(label);
		float: left;
		clear:both;
		font-weight:bold;
	}
	table.table_teacher tbody td .teacher_theme{
		font-size: 120%;
	}
	table.table_teacher tbody td .teacher_sub_theme{
		font-size: 90%;
		padding-left: 0;
	}
	table.table_teacher tbody td p {
		padding-left:1em;
	}
	table.table_teacher tbody tr:last-child th {
		width: 100%;
	}
}

/*-------------------------------------------------------- */
/**********************************/
/* ボタン *************************/
/**********************************/
a.btn_entry {
	display: inline-block;
	width: 100%;
	max-width: 350px;
	color: #ffffff;
	border: 2px solid #897ab9;
	background: #897ab9;
	margin: 20px 0;
	padding: 1em 0;
	font-size: 130%;;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
	border-radius: 10px;
}
a.btn_entry:hover {
	color: #897ab9;
	background: #FFFDE5;
}
a.btn_entry_fin {
	display: inline-block;
	width: 100%;
	max-width: 350px;
	color: #897ab9;
	border: 2px solid #F15929;
	background: #d2d1d1;
	margin: 20px 0;
	padding: 1em 0;
	font-size: 130%;;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
	border-radius: 10px;
}
/**********************************/
/* 文字装飾 ***********************/
/**********************************/
/**********************************/
/* 文字装飾                        */
/**********************************/
.txstyle_big{
	font-size: 300%;
}
.txstyle_large{
	font-size: 200%;
}
.txstyle_middle{
	font-size: 150%;
}
.txstyle_bold{
	font-weight: bold;
}
.txstyle_circle{
	position: relative;
	display: inline-block;
	width: 50px;
	height: 50px;
	background: #002059;
	border-radius: 50%;
	text-align: center;
}
.txstyle_circle span {
	position: absolute;
	display: inline-block;
	left: 0;
	top: 45%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color:#ffffff;
	font-size: 100%;
	font-weight: bold;
	width :50px;
	text-align:center;
}
.txstyle_pink{
	color:#e7467d;
}
.txstyle_center{
	text-align: center;
}

@media screen and (max-width: 767px) {
	.txstyle_big{
		font-size: 180%;
	}
	.txstyle_circle{
		width: 50px;
		height: 50px;
	}
	.txstyle_circle span {
		left: 0;
		top: 50%;
		font-size: 90%;
		width :50px;
	}
}
