@charset "UTF-8";


/*---背景色---*/
.Bg_Green{
	height: 120px;
	background: #a3d6ce;
	padding:0;
}

/*---見だし---*/
#Heading{
	height: 120px;
	background: url(../img/tit_01.png) no-repeat;
	background-size: 120px;
	position: relative;
	top: 20px;
	font-size: 48px;
	padding: 8px 0px 0px 150px;
}

/*---学ぶ 2カラム---*/
.Learn_box {
	display: table;
	margin: 0px;
	padding: 20px;
	width: 100%;
	background-color: #fff;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

.Learn_box .box_left {
	float: left;
	display: table-cell;
	width: 30.9%;
}

.Learn_box .box_right {
	float: left;
	display: table-cell;
	width: 64.9%;
}

.Learn_box .box_center {
	float: left;
	display: table-cell;
	width: 4.2%;
}

@media screen and (max-width:767px){

	/*---幅・マージン調整---*/
	.Learn_box {
		display: table;
		margin: 0px;
		padding: 6px;
		width: 100%;
		background-color: #fff;
		border-radius: 5px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
	}
	
	.Learn_box .box_left {
		float: left;
		display: table-cell;
		width: 30%;
	}
	
	.Learn_box .box_right {
		float: left;
		display: table-cell;
		width: 68%;
	}
	
	.Learn_box .box_center {
		float: left;
		display: table-cell;
		width: 2%;
	}

}

/*---お知らせ---*/
.Event_Topic {
	width: 96%;
	margin:0 auto;
	padding:30px 0;
	border-bottom:1px dotted #000;
	font-size: 20px;
}

.Date {
	width: 280px;
	float: left;
}

/*---アコーディオン---*/
.s_01 .accordion_one {
	max-width: 96%;
	margin: 0 auto;
}
.s_01 .accordion_one .accordion_header {
	background-color: #33a5c9;
	border-top: 1px solid #fff;
	color: #fff;
	font-size: 19px;
	padding: 16px 11%;
	text-align: center;
	position: relative;
	z-index: +1;
	cursor: pointer;
	transition-duration: 0.2s;
}
.s_01 .accordion_one:nth-of-type(2) .accordion_header {
	background-color: #79bdcd;
	border-top: 1px solid #fff;
}
.s_01 .accordion_one:nth-of-type(3) .accordion_header {
	background-color: #33a5c9;
	border-top: 1px solid #fff;
}
.s_01 .accordion_one:nth-of-type(4) .accordion_header {
	background-color: #79bdcd;
	border-top: 1px solid #fff;
}
.s_01 .accordion_one .accordion_header:hover {
	opacity: .8;
}
.s_01 .accordion_one .accordion_header .i_box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 3%;
	width: 26px;
	height: 26px;
	border: 1px solid #fff;
	margin-top: -13px;

}
.s_01 .accordion_one .accordion_header .i_box .one_i {
	display: block;
	width: 16px;
	height: 16px;
	position: relative;
}

.s_01 .accordion_one .accordion_header .i_box .one_i:before, .s_01 .accordion_one .accordion_header .i_box .one_i:after {
	display: flex;
	content: '';
	background-color: #fff;
	border-radius: 10px;
	width: 16px;
	height: 4px;
	position: absolute;
	top: 6px;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transform-origin: center center;
}
.s_01 .accordion_one .accordion_header .i_box .one_i:before {
	width: 4px;
	height: 16px;
	top: 0;
	left: 6px;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:before {
	content: none;
}
.s_01 .accordion_one .accordion_inner {
	background-color: #fff;
	display: none;
	padding: 30px 30px;
	border-left: 1px solid #33a5c9;
	border-right: 1px solid #33a5c9;
	border-bottom: 1px solid #33a5c9;
	box-sizing: border-box;
}
.s_01 .accordion_one:nth-of-type(2) .accordion_inner {
	border-left: 1px solid #79bdcd;
	border-right: 1px solid #79bdcd;
	border-bottom: 1px solid #79bdcd;
}
.s_01 .accordion_one:nth-of-type(3) .accordion_inner {
	border-left: 1px solid #33a5c9;
	border-right: 1px solid #33a5c9;
	border-bottom: 1px solid #33a5c9;
}
.s_01 .accordion_one:nth-of-type(4) .accordion_inner {
	border-left: 1px solid #79bdcd;
	border-right: 1px solid #79bdcd;
	border-bottom: 1px solid #79bdcd;
}
.s_01 .accordion_one .accordion_inner .box_one {
	height: auto;
}
.s_01 .accordion_one .accordion_inner p.txt_a_ac {
	margin: 0;
}
@media screen and (max-width: 100%) {
	.s_01 .accordion_one .accordion_header {
		font-size: 14px;
	}
	.s_01 .accordion_one .accordion_header .i_box {
		width: 30px;
		height: 30px;
		margin-top: -15px;
	}
}
@media screen and (max-width: 767px) {
	.s_01 .accordion_one .accordion_header {
		font-size: 14px;
		text-align: left;
		padding: 15px 60px 15px 15px;
	}
	.s_01 .accordion_one .accordion_inner {
		padding: 10px 10px;
	}
}

/* ▼768px以下の場合に適用（iPad portrait以下）
---------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {

	.Bg_Green{
		height: 50px;
		background: #a3d6ce;
		padding:0;
		margin-bottom:20px;
	}
	
	#Heading{
		height: 60px;
		background: url(../img/tit_01.png) no-repeat left top;
		background-size: 60px;
		font-size: 18px;
		padding: 4px 0px 0px 70px;
		position: relative;
		top: 8px;
	}

	/*---お知らせ---*/
	.Event_Topic {
		width: 96%;
		margin:0 auto;
		padding:10px 0;
		border-bottom:1px dotted #000;
		font-size: 14px;
	}
	
	.Date {
		width: 100%;
	}

}
