@charset "UTF-8";


/*--------------------------------------------------------------------
 *	共通の記述
 *--------------------------------------------------------------------*/
body{
	color: #323232;
	-webkit-text-size-adjust: 100%;
}
* {
	box-sizing: border-box;
}

/*------------------------------------------ news */
body#home main article section.news {
	display: flex;
	/*align-items: center;*/
	align-items: flex-start;
}
body#home main article section.news h1 {
	margin: 0;
	font-weight: 800;
	line-height: 1.2;
}
body#home main article section.news h1 span {
	display: block;
}
body#home main article section.news dl {
	margin: 0;
}


/*------------------------------------------ search */

body#home main article section.search {
	background-color: #e1e1ff;
}
body#home main article section.search .lede {
	text-align: center;
}
body#home main article section.search .input_student {
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 0;
}
body#home main article section.search .input_student li {
	margin: 0;
}
body#home main article section.search .select_box {
	position: relative;
	display: flex;
	justify-content: space-between;
}
body#home main article section.search .select_box select {
	border: none;
	appearance: none;
	outline: none;
	cursor: pointer;
	text-overflow: ellipsis;
	padding: 0.4em 3.5em 0.4em 1em;
	border-radius: 10px;
	background-color: #fff;
	background-image: linear-gradient(to right, #3200e1, #3200e1);
	background-position: 100% 0;
	background-size: 2.5em 2.5em;
	background-repeat: no-repeat;
	color: #969696;
}
body#home main article section.search .select_box::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	border-top: 6px solid #ffffff;
	border-bottom: 0;
}
body#home main article section.search select:focus {
	color: #323232;
}
body#home main article section.search input[type=button] {
	padding:0;
	border-style:none;
	background-color: #3200e1;
	color: #fff;
}



/*--------------------------------------------------------------------
 *	736px以下用（SP用）の記述
 *--------------------------------------------------------------------*/

@media screen and (max-width: 736px) {
/* 736px以下用（SP用）の記述 */

body#home main {
	padding: 0;
}

/*------------------------------------------ news */
body#home main article section.news {
	margin: 30px 8% 30px;
}
body#home main article section.news h1 {
	font-size: 2.0rem;
}
body#home main article section.news h1 span {
	font-size: 1.3rem;
}
body#home main article section.news dl {
	margin-left: 15px;
	padding-left: 15px;
	border-left: 1px solid #969696;
	font-size: 1.3rem;
}
body#home main article section.news dl dt,
body#home main article section.news dl dd {
	margin: 0;
}

/*------------------------------------------ search */
body#home main article section.search {
	margin: 30px 8% 30px;
	padding: 1px 7.8125%;
	border-radius: 10px;
}
body#home main article section.search .lede {
	font-size: 1.3rem;
}
body#home main article section.search .img_chibany img {
	height: 252px;
}
body#home main article section.search .input_student {
	margin-bottom: 1em;
}
body#home main article section.search .input_student li {
	font-size: 1.9rem;
}
body#home main article section.search .input_student li + li {
	margin-left: 40px;
}
body#home main article section.search .select_box {
	margin-bottom: 10px;
}
body#home main article section.search .select_box .btn_ex {
	width: 10%;
	margin: 0 0 0 3%;
	padding-top: 0.3em;
}
body#home main article section.search .select_box select {
	width: 87%;
}
body#home main article section.search .select_box::after {
	top: 13px;
	left: calc(87% - 22px);
}
body#home main article section.search .select_box + .select_box {
	margin-bottom: 2em;
}
body#home main article section.search .btn_search_submit {
	text-align: center;
}
body#home main article section.search .btn_search_submit input[type=button] {
	width: 200px;
	padding: 0.3em 10px;
	border-radius: 10px;
	font-size: 1.7rem;
	cursor: pointer;
}
body#home main article section.search .no_students {
	text-align: center;
}

/*------------------------------------------ top_nav */

body#home main article section.top_nav {
	padding: 30px 8% 30px;
	background-color: #ebebeb;
}
body#home main article section.top_nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
	margin: 0;
}
body#home main article section.top_nav ul li {
	display: table;
	width: calc((100% - 15px) / 2);
	margin: 0 0 15px;
	padding: 0;
}
body#home main article section.top_nav ul li a {
	display: table-cell;
	position: relative;
	height: 105px;
	padding: 0 5px 10px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	vertical-align: bottom;
	font-size: 1.4rem;
	color: #000;
	line-height: 1.2;
}
body#home main article section.top_nav ul li:nth-child(3) a,
body#home main article section.top_nav ul li:nth-child(4) a,
body#home main article section.top_nav ul li:nth-child(9) a {
	padding-bottom: 1.3em;
}
body#home main article section.top_nav ul li a::before {
	position: absolute;
	top: 12px;
	left: 50%;
	content: "";
	display: block;
	width: 42px;
	height: 44px;
	margin-left: -21px;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
body#home main article section.top_nav ul li:nth-child(1) a::before {
	background-image: url("../img/ic01.png");
}
body#home main article section.top_nav ul li:nth-child(2) a::before {
	background-image: url("../img/ic02.png");
}
body#home main article section.top_nav ul li:nth-child(3) a::before {
	background-image: url("../img/ic03.png");
}
body#home main article section.top_nav ul li:nth-child(4) a::before {
	background-image: url("../img/ic04.png");
}
body#home main article section.top_nav ul li:nth-child(5) a::before {
	background-image: url("../img/ic05.png");
}
body#home main article section.top_nav ul li:nth-child(6) a::before {
	background-image: url("../img/ic06.png");
}
body#home main article section.top_nav ul li:nth-child(7) a::before {
	background-image: url("../img/ic07.png");
}
body#home main article section.top_nav ul li:nth-child(8) a::before {
	background-image: url("../img/ic08.png");
}
body#home main article section.top_nav ul li:nth-child(9) a::before {
	background-image: url("../img/ic09.png");
}
body#home main article section.top_nav ul li:nth-child(10) a::before {
	background-image: url("../img/ic10.png");
}

/* 736px以上用（SP用）の記述 end */
}


/*--------------------------------------------------------------------
 *	768px以上用（TB用）の記述
 *--------------------------------------------------------------------*/
@media screen and (min-width:736px) and ( max-width:1000px), print {
/* 768px以上用（TB用）の記述 */

/*------------------------------------------ news */
body#home main article section.news {
	margin: 2em 0 4em;
}
body#home main article section.news h1 {
	font-size: 4.0rem;
}
body#home main article section.news h1 span {
	font-size: 1.6rem;
}
body#home main article section.news dl {
	display: flex;
	margin-left: 60px;
	font-size: 1.6rem;
}
body#home main article section.news dl dt {
	width: 8em;
}
body#home main article section.news dl dd {
	width: calc(100% - 8em);
	margin-left: 20px;
	padding-left: 20px;
	border-left: 1px solid #323232;
}

/*------------------------------------------ search */

body#home main article section.search {
	padding: 30px 30px;
	border-radius: 10px;
}
body#home main article section.search .lede {
	margin: 0 0 2.5em;
	font-size: 1.6rem;
}
body#home main article section.search .search_wrap {
	display: flex;
	justify-content: space-between;
}
body#home main article section.search .img_chibany {
	margin: 0 6% 0 0;
	width: 36%;
}
body#home main article section.search .search_detail {
	width: 58%;
	margin-top: 1em;
}
body#home main article section.search .input_student {
	justify-content: flex-start;
	margin-left: 20px;
	margin-bottom: 1.5em;
}
body#home main article section.search .input_student li {
	font-size: 2.0rem;
}
body#home main article section.search .input_student li input {
	margin: 0;
	transform:scale(1.5);
}
body#home main article section.search .input_student li label {
	margin-left: 10px;
}
body#home main article section.search .input_student li + li {
	margin-left: 60px;
}
body#home main article section.search .select_box .btn_ex {
	width: 32px;
	margin: 0 0 0 13px;
	padding-top: 0.3em;
}
body#home main article section.search .select_box {
	margin-bottom: 20px;
}
body#home main article section.search .select_box select {
	width: calc(100% - 45px);
	font-size: 1.8rem;
}
body#home main article section.search .select_box::after {
	top: 18px;
	left: calc(87% - 24px);
}
body#home main article section.search .select_box + .select_box {
	margin-bottom: 2em;
}
body#home main article section.search .btn_search_submit {
	margin-top: 3em;
	margin-right: 45px;
	text-align: center;
}
body#home main article section.search .btn_search_submit input[type=button] {
	width: 180px;
	padding: 0.3em 10px 0.2em;
	border-radius: 10px;
	font-size: 2.0rem;
	cursor: pointer;
}
body#home main article section.search .btn_search_submit input[type=button]:hover {
	opacity: 0.8;
}
body#home main article section.search .no_students {
	margin-top: 2.5em;
	margin-right: 45px;
	text-align: center;
}

/*------------------------------------------ top_nav */
body#home main article section.top_nav {
	display: none;
}

/* 768px以上用（TB用）の記述 end */
}


/*--------------------------------------------------------------------
 *	737px以上用（PC用）の記述
 *--------------------------------------------------------------------*/
@media screen and (min-width: 1000px), print {
/* 737px以上用（PC用）の記述 */

/*------------------------------------------ news */
body#home main article section.news {
	margin: 2em 0 4em;
}
body#home main article section.news h1 {
	font-size: 4.0rem;
}
body#home main article section.news h1 span {
	font-size: 1.8rem;
}
body#home main article section.news dl {
	/*display: flex;*/
	margin-left: 60px;
	font-size: 1.8rem;
}
body#home main article section.news dl dt {
	border-right: 1px solid #323232;
	float: left;
	width: 8.5em;
	margin: 0 -9.5em 0 0;
}
body#home main article section.news dl dd {
	/*width: calc(100% - 8em);*/
	margin-left: 9.5em;
	padding-bottom: 10px;
}

/*------------------------------------------ search */

body#home main article section.search {
	padding: 60px 50px;
	border-radius: 10px;
}
body#home main article section.search .lede {
	margin: 0 0 2.5em;
	font-size: 1.8rem;
}
body#home main article section.search .search_wrap {
	display: flex;
	justify-content: space-between;
}
body#home main article section.search .img_chibany {
	margin: 0 6% 0 0;
	width: 36%;
}
body#home main article section.search .search_detail {
	width: 58%;
	margin-top: 1em;
}
body#home main article section.search .input_student {
	justify-content: flex-start;
	margin-left: 20px;
	margin-bottom: 1.5em;
}
body#home main article section.search .input_student li {
	font-size: 2.4rem;
}
body#home main article section.search .input_student li input {
	margin: 0;
	transform:scale(1.5);
}
body#home main article section.search .input_student li label {
	margin-left: 10px;
}
body#home main article section.search .input_student li + li {
	margin-left: 60px;
}
body#home main article section.search .select_box .btn_ex {
	width: 32px;
	margin: 0 0 0 13px;
	padding-top: 0.3em;
}
body#home main article section.search .select_box {
	margin-bottom: 20px;
}
body#home main article section.search .select_box select {
	width: calc(100% - 45px);
	font-size: 1.8rem;
}
body#home main article section.search .select_box::after {
	top: 18px;
	left: calc(87% - 24px);
}
body#home main article section.search .select_box + .select_box {
	margin-bottom: 2em;
}
body#home main article section.search .btn_search_submit {
	margin-top: 3em;
	margin-right: 45px;
	text-align: center;
}
body#home main article section.search .btn_search_submit input[type=button] {
	width: 80%;
	max-width: 280px;
	padding: 0.3em 10px 0.2em;
	border-radius: 10px;
	font-size: 2.4rem;
	cursor: pointer;
}
body#home main article section.search .btn_search_submit input[type=button]:hover {
	opacity: 0.8;
}
body#home main article section.search .no_students {
	margin-top: 2.5em;
	margin-right: 45px;
	text-align: center;
}

/*------------------------------------------ top_nav */
body#home main article section.top_nav {
	display: none;
}


/* 737px以上用（PC用）の記述 end */
}

/*------------------------------------------ clear */

body#home div#main div#contents ul#top_menu {
	zoom: 100%;
}

body#home div#main div#contents ul#top_menu:after {
	content: "";
	display: block;
	clear: both;
}
