@charset "utf-8";
/* CSS Document 後続共通css*/
/*基本レイアウト*/
/*本文マージン*/
.margin0 {
	margin-bottom: 0px !important;
}
.margin10 {
	margin-bottom: 10px !important;
}
.margin20 {
	margin-bottom: 20px !important;
}
.margin30 {
	margin-bottom: 30px !important;
}
.margin40 {
	margin-bottom: 40px !important;
}
.margin50 {
	margin-bottom: 50px !important;
}
.margin60 {
	margin-bottom: 60px !important;
}
.margin70 {
	margin-bottom: 70px !important;
}
.margin80 {
	margin-bottom: 80px !important;
}
.margin90 {
	margin-bottom: 90px !important;
}
.margin1em {
	margin-bottom: 1em !important;
}
.margin2em {
	margin-bottom: 2em !important;
}
.margin3em {
	margin-bottom: 3em !important;
}
.margin4em {
	margin-bottom: 4em !important;
}
.margin5em {
	margin-bottom: 5em !important;
}
.margin6em {
	margin-bottom: 6em !important;
}
.margin7em {
	margin-bottom: 7em !important;
}
.margin8em {
	margin-bottom: 8em !important;
}
.margin9em {
	margin-bottom: 9em !important;
}
/*本文内各種パーツ***********************/
/*セクション*/
section {
	margin: 50px 0;
}
section > section {
	margin-top: 0;
}
/*段落*/
p {
	margin-bottom: 1.5em;
}
p:last-child {
	margin-bottom: 0;
}
.last {
	margin-bottom: 0;
}
.indent-1 {
	padding-left:1em;
	text-indent:-1em;
}
/*見出し*/
h2 {
	position: relative;
	margin-bottom: 18px;
	font-weight: 700;
	font-size: 2.8rem;;
	line-height: 1.2;
	color: #006ab7;
	font-family: "Noto Serif JP", serif;
}
h2.head01 {
	margin-bottom: 40px;
	padding: 10px 30px;
	background-color: #006ab7;
	color: #FFF;
}
h3 {
	display: inline-block;
	margin-bottom: 10px;
	padding: 6px 20px;
	border: solid 1px #006ab7;
	font-weight: 700;
	font-size: 2.3rem;
	line-height: 1;
	color: #006ab7;
}
h4 {
	font-size: 2.3rem;
	color: #006ab7;
	font-weight: 700;
}
/*リスト*/
ul {
	margin-left: 2.0em;
	margin-bottom: 1em;
}
ul > li {
	list-style: disc;
	list-style-position: outside;
	margin-left: 0;
}
ol {
	list-style-position: outside;
	margin-left: 2.0em;
	margin-bottom: 1em;
}
ol > li {
	list-style-type: decimal;
	list-style-position: outside;
	margin-left: 0;
}
ol.count {
	counter-reset: my-counter;
	list-style: none;
	margin-left: 0;
	padding: 0;
}
ol.count li {
	list-style: none;
	margin-bottom: 10px;
	padding-left: 30px;
	position: relative;
}
ol.count li:before {
	content: counter(my-counter);
	counter-increment: my-counter;
	display: block;
	position: absolute;
	top: 4px;
	line-height: 20px;
	margin-left: -26px;
	text-align: center;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	border: solid 1px #000;
}
/*リンク*/
.link {
	position: relative;
	padding-right: 1em;
}
.link::after {
	position: absolute;
	content: "＞";
	top: -15%;
	right: 0;
	color: inherit;
}
.back {
	position: relative;
	padding-left: 1em;
	color: inherit;
}
.back::before {
	position: absolute;
	content: "＜";
	top: -15%;
	left: 0;
}
/*テーブル*/
table {
	width: 100%;
	border-top: none;
	border-spacing: 0;
	border-collapse: collapse;
}
table th {
	width: 20%;
	padding: 10px 30px;
	border-bottom: solid 1px #808080;
	white-space: nowrap;
	text-align: left;
	vertical-align: top;
	font-weight: 400;
}
table td {
	width: 80%;
	padding: 10px 0px;
	border-bottom: solid 1px #808080;
	vertical-align: top;
}
table th.center, table td.center {
	text-align: center;
}
table th.left, table td.left {
	text-align: left;
}
table th.right, table td.right {
	text-align: right;
}
table caption {
	text-align: left;
	margin-top: 20px;
}
/*ボタン*/
.btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 210px;
	height: 50px;
	margin: 0 auto;
	background: #4e64ae;
	border-radius: 10px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
}
.btn.btn_apply {
	background: #eb5c01;
}
.btn.btn_contact {
	background: #00853c;
}
.btn.btn_l {
	width: 273px;
	height: 65px;
	font-size: 1.7rem;
}
.btn::after {
	position: absolute;
	right: 15px;
	top: 19px;
	content: "";
	width: 7px;
	height: 11px;
	background-image: url("../images/btn_arrow.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.btn.btn_l::after {
	right: 20px;
	top: 25px;
	width: 10px;
	height: 14px;
}
.btn:hover {
	opacity: 0.7;
	color: #fff;
}
.btn_off {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 273px;
	height: 65px;
	margin: 0 auto;
	background: #eb5c01;
	border-radius: 10px;
	font-size: 1.7rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
}

/* ==========================================
 ヘッドエリア
========================================== */
.head_area {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	position: relative;
	padding-bottom: 50px;
	background-color: #b2d2e9;
	z-index: 0;
}
.head_area h1 {
	line-height: 0;
}
.head_area .mainvisual {
	line-height: 0;
}
.lecture_main {
	line-height: 0;
}

#new_area {
	width: 100%;
	margin: 50px 30px 0 30px;
	padding: 30px 20px 0 20px;
	background-color: #fff;
}
#new_area h2 {
	position: relative;
	margin-bottom: 0;
	background-image: url("../images/dot.svg");
	background-position: left center;
	background-repeat: no-repeat;
	font-family: "Noto Sans JP", sans-serif;
}
#new_area h2 span {
	position: relative;
	padding-right: 5px;
	background-color: #fff;
}
#new_area ul {
	width: 100%;
	margin: 0 0 30px 0;
}
#new_area ul li {
	display: flex;
	justify-content: flex-start;
	list-style: none;
	margin: 0;
	padding: 30px 0 30px 0;
	border-bottom: solid 1px #9d9d9d;
}
#new_area ul li .date {
	width: 125px;
}
#new_area ul li .txt {
	flex: 1;
}
/* ==========================================
 message_area
========================================== */
#message_area {
	opacity: 0;
}
#message_area .box {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: solid 1px #006ab7;
}
#message_area .box:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}
#message_area .box .photo {
	width: 25%;
}
#message_area .box .txt_area {
	width: calc(75% - 40px);
}
#message_area .box .txt_area .prof {
	margin-bottom: 1.5em;
	font-weight: 700;
}
#message_area .box .txt_area .prof span {
	font-size: 2.6rem;
}
/* ==========================================
 overview_area
========================================== */
#overview_area {
	opacity: 0;
}
#overview_area img {
	width: 50%;
	height: auto;
}
#overview_area .inside {
	margin-left: 40px;
}
#overview_area table {
	margin-bottom: 1.5em;
}
/*#overview_area table {
	margin-left: 40px;
	margin: 0 auto;
	margin-bottom: 1.5em;
	width: 880px;;
}
#overview_area > p {
	margin-left: 40px;
}*/
/* ==========================================
 lecture_area
========================================== */
#lecture_area {
	opacity: 0;
}
#lecture_area {
	width: 100%;
	height: auto;
}
#lecture_area section {
	width: 100%;
	background-color: #e5f0f8;
	border: solid 3px #006ab7;
}
#lecture_area section.meeting {
	background-color: #fff;
}
#lecture_area section .cate_area {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
#lecture_area section .cate {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 70px;
	background-color: #006ab7;
	color: #fff;
	font-size: 2.5rem;
	font-weight: 900;
	font-family: "Noto Serif JP", serif;
}
#lecture_area section .cate span {
	font-weight: 700;
	font-size: 5.0rem;
}
#lecture_area section.meeting .cate {
	font-size: 2.8rem;
}
#lecture_area section .label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	height: 30px;
	margin-left: 20px;
	padding: 0 40px;
	background-color: #00853c;
	border-radius: 5px;
	color: #fff;
	font-size: 2.2rem;
	font-weight: 700;
}
#lecture_area section .label.ondemand {
	background-color: #e1007e;
}
#lecture_area section .label.type {
	padding: 0;
	background-color:transparent;
	color:#303030;
	font-size: 2.5rem;
}
#lecture_area section .label span {
	font-size: 2.2rem;
}
#lecture_area section .label span span {
	font-size: 1.6rem;
}
#lecture_area section .inside {
	margin: 40px;
}
#lecture_area section .tit_area {
	display: flex;
	justify-content:flex-start;
	align-content: space-between;
	flex-wrap: wrap;
}
#lecture_area section .photo {
	width: 250px;
	margin-right: 30px;
	line-height: 1;
}
#lecture_area section .txt_area {
	display: flex;
	flex-direction: column;
	justify-content:space-between;
}
#lecture_area section .tit {
	display: flex;
	align-items: center;
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1.4;
	font-family: "Noto Serif JP", serif;
}
#lecture_area section .tit span {
	display: inline-block;
	margin-left: 15px;
	padding: 5px 20px;
	border: solid 1px #eb5c01;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.9rem;
	color: #eb5c01;
}
#lecture_area section .txt {
	font-size: 1.8rem;
	line-height: 1.5;
}
#lecture_area section .txt .speaker {
	width: 100%;
	margin-bottom: 10px;
	font-size: 3.0rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 900;
}
#lecture_area section .txt .speaker span {
	margin-right: 10px;
	font-size: 1.8rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
}
#lecture_area section .txt .speaker span:last-child {
	margin-right: 0;
	margin-left: 10px;
	font-size: 2.0rem;
}
#lecture_area section .detail {
	margin-top: 30px;
	margin-bottom: 30px;
}
#lecture_area section .prof {
	margin-top: 30px;
	background-color: #fff;
	padding: 20px;
}
/* ==========================================
 info_area
========================================== */
#info_area {
	opacity: 0;
}
#info_area .indent-1 {
	margin-bottom: 0;
}
#info_area .cap {
	margin-top: 1em;
}
#info_area .inside {
	margin-left: 40px;
}
/* ==========================================
 sponsor_area
========================================== */
#sponsor_area {
	opacity: 0;
	padding-top: 50px;
	border-top: solid 1px #006ab7;
}
#sponsor_area h2 {
  font-family: "Noto Sans JP", sans-serif;
}
#sponsor_area h2 span {
	color: #80b5db;
}
#sponsor_area ul {
	display: flex;
	justify-content:flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-left: 0;
}
#sponsor_area ul li {
	list-style: none;
	width: 50%;
	margin-bottom: 12px;
	line-height: 1.4;
}

