@charset "UTF-8";

/* -------------------------------------------

全体設定

 ---------------------------------------------------*/
body {
	font-family: 'M PLUS 1', sans-serif;
	width:100%;
	min-width: 1200px;
	color: #3a3a3a;
	font-size: 16px;
	text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
	line-height:1.2;
	padding-top: 70px;
	position: relative;
}
@media print, screen and (max-width: 1200px) {
	body {
		min-width:0;
	}
}
body.open{
	overflow-y: hidden;
}
a{
	color: #3a3a3a;
	text-decoration: none;
	cursor: pointer!important;
	transition: 0.4s;
}
a:hover{
	opacity: 0.6;
}
img{
	width:100%;
	height: auto;
	vertical-align: bottom;
}
/* テキストにじみ対策 */
/*span, h1, h2, h3, h4, h5, h6, p, 
a, em, img, small, strike, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li, table, caption,
tbody, tfoot, thead, tr, th, td , figure ,section , article , nav {
	transform: rotate(0.03deg); 
}*/

@media print, screen and (max-width: 640px) {
	body{
		min-width: 0;
		padding-top: 20vw;
	}
}

/* header -----------------------------*/
header{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 70px;
	top: 0;
	left: 0;
	padding: 0 45px 0 40px;
	box-sizing: border-box;
	background: #fff;
	z-index: 9999;
}
header.fixed{
	position: fixed;
	top: 0;
	left: 0;
}
header .logo{
	width: 155px;
}
header .logo a{
	display: block;
}
header .btn_wrap{
	display: flex;
	height: 46px;
	border-right: 1px solid #3a3a3a;
}
header .btn_wrap a{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100px;
	color: #009f8e;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	border-left: 1px solid #3a3a3a;
	box-sizing: border-box;
}
header .btn_wrap a img{
	width: 22px;
	margin: 0 0 6px;
}
header .btn_wrap a.web_shidoan {
    display: flex;
    text-align: center;
    line-height: 1.5;
    justify-content: flex-end;
    position: relative;
}
header .btn_wrap a.web_shidoan img{
    position: absolute;
	right: 6px;
	bottom: 0;
	width: 16px;
	
}


header .smp_header{
	display: none;
}
header .overlay{
	display: none;
}
@media print, screen and (max-width: 640px) {
	header{
		position: fixed;
		height: 20vw;
		padding: 0 4.3333vw;
		background: url("../images/common/bg_header_smp.jpg") no-repeat;
		background-size: cover;
	}
	header .logo{
		width: 56.3333vw;
	}
	header .btn_wrap{
		display: none;
	}
	header .smp_header{
		position: relative;
		display: block;
	}
	header .smp_header .menu_trigger {
		position: absolute;
		width: 10vw;
		height: 10vw;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		z-index: 100;
		background: #002c86;
		border-radius: 50%;
	}
	header .smp_header .menu_trigger span {
		position: absolute;
		display: block;
		width: 5vw;
		height: 3px;
		background-color: #fff;
		transition: all .5s;
		left: 50%;
		transform: translateX(-50%);
		border-radius: 2vw;
	}
	header .smp_header .menu_trigger span:nth-of-type(1) {
		top: 3vw;
	}
	header .smp_header .menu_trigger span:nth-of-type(2) {
		top: 6vw;
	}
	header .smp_header .menu_trigger.active span:nth-of-type(1) {
		top: 5vw;
		transform: translateX(-50%) rotate(45deg)
	}
	header .smp_header .menu_trigger.active span:nth-of-type(2) {
		top: 5vw;
		transform: translateX(-50%) rotate(-45deg)
	}
	header .smp_header .smp_menu {
		position: fixed;
		width: 100vw;
		height: calc(100vh - 20vw);
		top: 20vw;
		left: 0;
		z-index: 100;
		transform: translateX(100%);
		transition: all .5s;
		box-sizing: border-box;
		overflow: auto;
	}
	header .smp_header .smp_menu.open {
		transform: translateZ(0);
		background: #fff;
	}
	header .smp_header .smp_menu li {
		border-bottom: 1px solid #002c86;
	}
	header .smp_header .smp_menu li a {
		display: flex;
		align-items: center;
		color: #009f8e;
		font-size: 4vw;
		font-weight: 900;
		padding: 4.1666vw;
	}
	header .smp_header .smp_menu li img {
		width: 6.6666vw;
		margin: 0 2.5vw 0 0;
	}
	header .overlay {
		content: "";
		display: block;
		width: 0;
		height: 0;
		background-color: rgba(0, 0, 0, 0.25);
		position: fixed;
		top: 20vw;
		left: 0;
		z-index: 9;
		opacity: 0;
		transition: opacity .5s;
	}
	header .overlay.open {
		width: 100%;
		height: 100vh;
		opacity: 1;
	}
	body.open{
		overflow-y: hidden; 
	}	
}

/* footer -----------------------------*/
footer{
	position: relative;
	padding: 12px 34px;
	background: #bcdb96;
}
footer .btn_wrap{
	display: flex;
	justify-content: center;
}
footer .btn_wrap a{
	width: 196px;
	margin: 0 12px;
}
footer .copyright{
	position: absolute;
	font-size: 10px;
	font-weight: 700;
	bottom: 12px;
}
@media print, screen and (max-width: 1200px) {
	footer{
		padding: 20px 34px 20px;
	}
	footer .btn_wrap a{
		width: 156px;
	}
	footer .copyright{
		text-align: center;
		position: static;
		display: block;
		text-align: center;
		margin: 20px 0 0;
	}
}
@media print, screen and (max-width: 640px) {
	footer{
		padding: 4.3333vw 4.1666vw;
	}
	footer .btn_wrap{
		justify-content: space-between;
	}
	footer .btn_wrap a{
		width: 43.3333vw;
		margin: 0;
	}
	footer .copyright{
		position: static;
		display: block;
		font-size: 1.6666vw;
		text-align: center;
		margin: 3.3333vw 0 0;
	}
}

/* TOPへ戻る -----------------------------*/
.pagetop {
	position: fixed;
	display: block;
	bottom: 124px;
	right: 38px;
	z-index: 9999;
	width: 74px;
	height: 74px;
}
@media print, screen and (max-width: 640px) {
	.pagetop {
		bottom: 33.3333vw;
		right: 5vw;
		width: 11.3333vw;
		height: 11.3333vw;
	}
}

/* -------------------------------------------

共通設定

 ---------------------------------------------------*/
.article_wrap{
	position: relative;
	width: 1054px;
	margin: 0 auto;
}

.article_wrap.web_shidoan {
	padding: 1em 0;
}

.article_wrap.web_shidoan a:hover {
	opacity: 0.6;
}


.tit_cnt{
	display: flex;
	align-items: center;
/*	justify-content: center; */
	width: 1054px;
	color: #009f8e;
	font-size: 22px;
	font-weight: 900;
	text-align: center;
	letter-spacing: 0.06em;
	padding: 0 0 6px;
	border-bottom: 2px solid #f1e321;
	margin: 0 auto;
}
.tit_cnt img{
	width: 22px;
	margin: 0 8px 0 0;
}
@media print, screen and (max-width: 1200px) {
	.article_wrap{
		width: 98%;
	}
	.tit_cnt{
		width: 98%;
	}
}
@media print, screen and (max-width: 640px) {
	.article_wrap{
		width: 100vw;
		padding: 0 4.1666vw;
		box-sizing: border-box;
	}
	.tit_cnt{
		width: 100%;
		font-size: 5vw;
	}
	.tit_cnt img{
		width: 5vw;
		margin: 0 2vw 0 0;
	}
}

/* 記事 -----------------------------*/
.article_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin: 50px 0 0;
}
.article_list li{
	display: flex;
	width: 338px;
	padding: 0 0 10px;
	margin: 0 0 30px;
	border-bottom: 1px solid #3a3a3a;
}
.article_list:after {
    content: "";
	width: 338px;
}
.article_list:before {
    content: "";
	width: 338px;
    order: 1;
}
.article_list li a{
	position: relative;
	display: flex;
	flex-direction: column;
}
.article_list li a .pin{
	position: absolute;
	width: 35px;
	right: -12px;
	top: -16px;
}
.article_list li a .new{
	position: absolute;
	width: 78px;
	top: 6px;
	right: 8px;
}

.article_list li a .item_wrap {
	position: relative;
}

.article_list li a .sc_label {
	position: absolute;
	right: 0;
	top: 5px;
	display: flex;
}

.article_list li a .sc_label p {
	font-size: 12px;
    background-color: #7c7c7c;
    color: #fff;
    padding: 0.3em 0.6em 0.2em 0.6em;
	border-radius: 3px;
}

.article_list li a .sc_label p:last-child {
	margin-left: 0.5em;
}

.article_list li a .date{
	font-size: 12px;
	font-weight: 700;
	margin: 12px 0 6px;
}
.article_list li a .free{
	color: #009f8e;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.04em;
}
.article_list li a .tit{
	flex: 1 auto;
	font-size: 19px;
	font-weight: 900;
	letter-spacing: -0.04em;
	margin: 10px 0 0;
}
.article_list li a .name{
	font-size: 12px;
	font-weight: 700;
	text-align: right;
	margin: 10px 0 0;
}
@media print, screen and (max-width: 1200px) {
	.article_list li{
		width: 30%;
	}
	.article_list:after,
	.article_list:before {
		width: 30%;
	}
}
@media print, screen and (max-width: 640px) {
	.article_list{
		display: block;
		width: 100%;
		margin: 7.3333vw auto 0;
	}
	.article_list:before,
	.article_list:after {
		display: none;
	}
	.article_list li{
		display: block;
		width: 100%;
		padding: 0 0 4vw;
		margin: 0 0 8vw;
	}
	.article_list li a{
		display: block;
	}
	.article_list li a .pin{
		width: 10vw;
		right: -3vw;
		top: -3vw;
	}
	.article_list li a .new{
		width: 21.3333vw;
		top: 1.5vw;
		right: 2vw;
	}
	.article_list li a .new:before {
		left: -1.5vw;
		border-style: solid;
		border-width: 3vw 0 3vw 1.5vw;
		border-color: #f00 transparent;
	}
	.article_list li a .date{
		font-size: 3vw;
		margin: 4vw 0 2vw;
	}
	.article_list li a .free{
		font-size: 4.1666vw;
	}
	.article_list li a .tit{
		font-size: 5vw;
		margin: 3.3333vw 0 0;
	}
	.article_list li a .name{
		font-size: 3vw;
		margin: 3.3333vw 0 0;
	}
}

/* 検索 -----------------------------*/
.search_form{
	padding: 14px 0 24px;
	background: url("../images/common/bg_base.jpg") no-repeat center top;
	background-size: cover;
}
input {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.search_form input[type="text"]{
	display: block;
	width: 344px;
	height: 42px;
	font-size: 16px;
	border: 1px solid #3a3a3a;
	box-sizing: border-box;
	border-radius: 10px;
	background: #fff;
	margin: 10px 0 16px 0;
	padding: 0 10px;
}
/*
.search_form input[type="text"]::placeholder {
	position: absolute;
	color: #000;
	font-size: 10px;
	left: 10px;
	bottom: 8px;
}
.search_form input[type="text"]::-ms-input-placeholder {
	position: absolute;
	color: #000;
	font-size: 10px;
	left: 10px;
	bottom: 8px;
}
.search_form input[type="text"]:-ms-input-placeholder {
	position: absolute;
	color: #000;
	font-size: 10px;
	left: 10px;
	bottom: 8px;
}
*/

.search_form .send_search{
	position: relative;
	width: 140px;
	height: 36px;
	margin: 0 auto;
}
.search_form .send_search input{
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	border-radius: 20px;
	background: #93cbd6;
	cursor: pointer;
	transition: 0.4s;
}
.search_form .send_search input:hover{
	background: #009f8e;
}
.search_form .send_search:before{
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	left: 33px;
	top: 50%;
	transform: translateY(-50%);
	background: url("../images/top/icon_search_form.png") no-repeat;
	background-size: cover;
}
@media print, screen and (max-width: 640px) {
	.search_form{
		margin: 5vw 0 0;
		padding: 4.3333vw 4.1666vw 13vw;
		background: url("../images/common/bg_base_smp.jpg") no-repeat;
	}
	.search_form input[type="text"]{
		width: 79.3333vw;
		height: 9.6666vw;
		border-radius: 2.1666vw;
		margin: 2.3333vw auto 3.6666vw;
		padding: 0 1.6666vw;
	}
	/*
	.search_form input[type="text"]::placeholder {
		position: static;
		font-size: 2.16666vw;
	}
	.search_form input[type="text"]::-ms-input-placeholder {
		position: static;
		font-size: 2.16666vw;
	}
	.search_form input[type="text"]:-ms-input-placeholder {
		position: static;
		font-size: 2.16666vw;
	}
	*/
	.search_form .send_search{
		width: 32.6666vw;
		height: 8.3333vw;
	}
	.search_form .send_search input{
		font-size: 3.16666vw;
		border-radius: 4vw;
	}
	.search_form .send_search:before{
		width: 4vw;
		height: 4vw;
		left: 7vw;
	}
}

/* パンくずリスト -----------------------------*/
.pankuzu{
	display: flex;
	padding: 0 40px;
	margin: 0 0 10px;
}
.pankuzu li{
	font-size: 15px;
	font-weight: 500;
	margin: 0 10px 0 0;
}
.pankuzu li:first-child:after{
	content: ">";
	font-size: 15px;
	margin: 0 0 0 10px;
}
@media print, screen and (max-width: 640px) {
	.pankuzu{
		padding: 0 4.1666vw;
		margin: 0 0 4vw;
	}
	.pankuzu li{
		font-size: 3.3333vw;
		margin: 0 3vw 0 0;
	}
	.pankuzu li:first-child:after{
		font-size: 3.3333vw;
		margin: 0 0 0 3vw;
	}
}

/* -------------------------------------------

トップページ

 ---------------------------------------------------*/
#top_page .mv_wrap{
	background: url("../images/top/bg_mv.jpg") no-repeat center;
	background-size: cover;
}
#top_page .mv{
	display: flex;
	justify-content: space-between;
	width: 1200px;
	height: 420px;
	margin: 0 auto;
}
#top_page .mv .tit{
	width: 300px;
	margin: 80px 0 0 160px;
}
#top_page .mv .img{
	width: 555px;
	margin: 30px 110px 0 0;
}
#top_page .btn_more{
	position: absolute;
	display: flex;
	align-items: center;
	right: 10px;
	top: 6px;
	font-size: 14px;
	font-weight: 700;
}
#top_page .btn_more_bottom {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}
#top_page .btn_more_bottom .btn_more{
	position: unset;
}
#top_page .btn_more img{
	width: 20px;
	margin: 1px 0 0 5px;
}
@media print, screen and (max-width: 1200px) {
	#top_page .mv{
		width:100%;
	}
	#top_page .mv .tit {
		width: 156.25vw;
		margin: 4.1666vw 0 0 8.3333vw;
	}
	#top_page .mv .img {
	    width: 289.0625vw;
		margin: 1.5625vw 5.729166vw 0 0;
	}
}
@media print, screen and (max-width: 640px) {
	#top_page{
		margin-top: -20vw;
	}
	#top_page .mv_wrap{
		background: url("../images/top/bg_mv_smp.jpg") no-repeat;
		background-size: contain;
	}
	#top_page .mv{
		display: block;
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
	}
	#top_page .mv .tit{
		display: none;
	}
	#top_page .mv .img{
		width: 83.3333vw;
		margin: 0 6.6666vw 0 auto;
		padding: 20vw 0 0;
	}
	#top_page .btn_more{
		position: relative;
		justify-content: center;
		width: 32.6666vw;
		height: 8.3333vw;
		right: auto;
		top: 0;
		font-size: 3.3333vw;
		margin: 0 auto;
		border: 1px solid #1a1311;
		box-sizing: border-box;
		border-radius: 4vw;
	}
	#top_page .btn_more img{
		position: absolute;
		width: 4.5vw;
		margin: 0;
		right: 1vw;
	}
	#top_page .btn_more_bottom {
		display: none;
	}
}

/* -------------------------------------------

下層ページ

 ---------------------------------------------------*/
.page{
	background: #f4fdeb;
	padding: 30px 0 60px;
}
.btn_next{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 38px;
	margin: 10px 10px 20px; 
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.1em;
	border-radius: 20px;
	background: #93cbd6;
	cursor: pointer;
	transition: 0.4s;
}
.btn_next:hover{
	background: #009f8e;
}
.pager{
	display: flex;
	justify-content: center;
}
.pager li{
	margin: 0 10px;
}
.pager li,
.pager li a{
	color: #b0b0b0;
	font-size: 15px;
	font-weight: 900;
}
.pager li.current{
	color: #000;
}
@media print, screen and (max-width: 640px) {
	.page{
		padding: 6vw 0 13vw;
	}
	.btn_next{
		width: 32.6666vw;
		height: 8.3333vw;
		margin: 1.6666vw auto 5vw;
		font-size: 3.16666vw;
		border-radius: 4vw;
	}
	.pager li{
		margin: 0 2.5vw;
	}
	.pager li,
	.pager li a{
		font-size: 3.3333vw;
	}
}

/* -------------------------------------------

記事を探すページ

 ---------------------------------------------------*/
#search_page{
	padding: 0 0 60px;
}
#search_page .search_form{
	padding: 30px 0 70px;
	margin: 0 0 90px;
}
#search_page .search_form input[type="text"]{
	margin: 65px auto 18px;
}
@media print, screen and (max-width: 640px) {
	#search_page{
		padding: 0 0 13vw;
	}
	#search_page .search_form{
		padding: 6vw 4.1666vw 13vw;
		margin: 0 0 13vw;
	}
	#search_page .search_form .pankuzu{
		padding: 0;
	}
	#search_page .search_form input[type="text"]{
		margin: 8.3333vw auto 3.6666vw;
	}
}


/* -------------------------------------------

append 

 ---------------------------------------------------*/
#hit_count {
	font-size: 22px;
    font-weight: 900;
}
    
.prev_next_btns {
	display: flex;
	justify-content: center;
}

/* -------------------------------------------

school checkbox

 ---------------------------------------------------*/
.fa-2x {
    font-size: 1.8em;
}

.article_wrap .school_check{
	position: absolute;
	display: flex;
	align-items: center;
	left: 190px;
	top: 0px;
}

.input_wrap {
	display: flex;
    justify-content: center;
    margin: 0 auto;
    padding-right: 203px;
}
.input_wrap .school_check {
	display: flex;
}


#search_page .input_wrap {
    width: 560px;
}

#search_page .input_wrap .school_check {
    margin-top: 52px;
}


.chk_btn {
	display: flex;
	justify-content: space-evenly;
    align-items: center;
}

.chk_btn span {
	margin-left: 0.2em;
	margin-right: 1.5em;
	font-weight: bold;
	width: 3em;
}

.chk_btn span {
	font-size: 16px;
}

.chk_btn input[type="checkbox"] ~ i.fa.fa-square-o{
    color: #c8c8c8;
    display: inline;
    padding-right: 4px;
}
.chk_btn input[type="checkbox"] ~ i.fa.fa-check-square-o{
    display: none;
}
.chk_btn input[type="checkbox"]:checked ~ i.fa.fa-square-o{
    display: none;
}
.chk_btn input[type="checkbox"]:checked ~ i.fa.fa-check-square-o{
    color: #009f8e;    display: inline;
}
.chk_btn:hover input[type="checkbox"] ~ i.fa {
	color: #009f8e;
}


@media print, screen and (max-width: 640px) {

	.input_wrap {
		display: block;
		width: unset;
	}
	
	.article_wrap .school_check {
		right: 0;
		left: unset;
	    width: unset;
	    top: -3px;
	}
	
	
	.chk_btn span {
		margin-right: 1em;
	}
	.school_check .chk_btn:first-child span {
		margin-right: 0.5em;
	}
	

	.search_form .input_wrap {
		margin-top: 6.3333vw;
		padding-right: unset;
	}
	
	.search_form .input_wrap .school_check {
/*		width: 79.3333vw;
		margin: 0 auto;
*/
		display: flex;
	    justify-content: center;
   	}
	
	.search_form .school_check .chk_btn span {
		margin-right: 0 !important;
	}
	
		
	
	.search_form .chk_btn span {
	    width: 4em;
	    top: -3px;
	}
	
	#search_page .input_wrap .school_check {
		margin-top: unset;
	}
	#search_page .search_form .input_wrap .school_check {
/*		width: unset; */
	}

	#search_page .input_wrap {
		width: unset;
	}
	
	#search_page .search_form input[type="text"] {
		margin-top: 2.3333vw;
	}
	
	.article_list li a .sc_label {
		top: -5px;
	}

}



