@charset "utf-8";
/* CSS Document */

/* -- 共通 -------------------------------------- */

main {
	/* margin-top: 140px; */
	margin-top: 80px;
}
@media screen and (max-width:991px) {
	main {
		margin-top: 70px;
	}
}
a {
	color: #024101;
	text-decoration: none;
}
a.black {
	color: #000;
	text-decoration: none;
	font-weight: normal;
}
p a {
	color: #629462;
	text-decoration: underline;
	font-weight: bold;
}
.b {
	font-weight: bold;
}
p {
	line-height: 1.75em;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.center {
	text-align: center;
}
.mt100 {
	margin-top: 100px;
}
.mt60 {
	margin-top: 60px;
}
.mb60 {
	margin-bottom: 60px;
}
.mt30 {
	margin-top: 30px;
}
.mt10 {
	margin-top: 10px;
}
section {
	max-width: 1060px;
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 60px 0 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 9;
}
section h1 {
	font-size: 1.25em;
	font-weight: bold;
	padding: 10px 0 10px 25px;
	margin-bottom: 30px;
	background-color: #399837;
	border-radius: 0 20px 0 0;
	color: #ffffff;
}
section h2 {
	font-size: 1.25em;
	font-weight: bold;
	padding: 10px 0 10px 55px;
	margin-bottom: 30px;
	position: relative;
	background: rgba(57, 152, 55, 0.1);
	border-top: 1px dotted #999;
	border-bottom: 1px dotted #999;
	position: relative;
}
section h2:before {
	position: absolute;
	font-family: "Font Awesome 5 Free";
	content: "\f138";
	font-weight: 900;
	font-size: 1em;
	left: 1em;
	color: #399837;
}
section h3 {
	font-size: 1.15em;
	font-weight: bold;
	border-bottom: solid 3px #d7d7d7;
	position: relative;
	margin-top: 30px;
	margin-bottom: 20px;
}
section h3:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #4ac047;
	bottom: -3px;
	width: 30%;
}
.contents_wrap {
	margin: 0 10px;
}
.txt-c {
	text-align: center;
}
.red {
	color: #C00;
	font-weight: bold;
}
@media screen and (max-width:1060px) {
	section {
		width: 96%;
		margin: 0 2%;
	}
}
@media screen and (max-width:992px) {
	.mt100,
	.mt60 {
		margin-top: 30px;
	}
}
@media screen and (max-width:480px) {
	.contents_wrap {
		margin: 0 auto;
	}
}
/* -- 共通：ボタン -------------------------------------- */

.btn,
a.btn,
button.btn {
	font-size: 1.25em;
	font-weight: 400;
	line-height: 1.5;
	display: inline-block;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	border-radius: 0.15rem;
}
/* ===== ログイン ===== */

a.btn-login {
	color: #fff;
	background: #f60;
	padding-right: 60px;
}
a.btn-login:hover {
	background: #ffa50e;
}
a.btn-login i {
	padding: 20px;
	background: white;
	color: black;
	border: 2px solid #f60;
	margin-right: 60px;
}

/* 教員お助けページ、ログイン方法が不明な方 2023.09.12追記*/

.loginfumei,.kyoin_help{
	width:273px;
	height: 65px;
	background-color:#0071C1;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.25em;
	font-weight: 400;
	line-height: 1.5;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	border-radius: 0.15rem;
}
.kyoin_help {
	background-color: #7eab55;
}
.loginfumei:hover,.kyoin_help:hover {
	opacity:80%;
}

/* ===== 外部リンク ===== */

a.blank:after {
	content: '';
	display: inline-block;
	width: 25px;
	height: 25px;
	background-size: contain;
	vertical-align: middle;
	background-image: url(../images/common/icon/blank.png);
}
/* ===== 参加申し込みなどボタン ===== */

.btn-green {
	position: relative;
	display: inline-block;
	padding: 16px 32px;
	background: #fff;
	border: 2px solid #4ac047;
	border-radius: 4px;
	color: #FFF;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	line-heigt: 1.2em;
	-webkit-transition: .8s;
	transition: .8s;
	margin: 10px auto;
}
.btn-green span {
	position: relative;
	z-index: 1;
}
.btn-green::before,
.btn-green::after {
	content: "";
	position: absolute;
	top: 0;
	display: block;
	width: 51%;
	height: 100%;
	background-color: #4ac047;
	-webkit-transition: .2s;
	transition: .2s;
}
.btn-green::before {
	left: 0;
}
.btn-green::after {
	right: 0;
}
.btn-green:hover::before,
.btn-green:hover::after {
	width: 0;
	background: #4ac047;
}
.btn-green:hover {
	color: #4ac047;
}
.btn-blue {
	position: relative;
	display: block;
	padding: 5px 10px;
	background: #446488;
	border: 2px solid #446488;
	border-radius: 2px;
	color: #FFF;
	font-weight: normal;
	text-decoration: none;
	font-size: 16px;
	line-heigt: 1.2em;
	-webkit-transition: .8s;
	transition: .8s;
	margin: 4px auto;
	min-width: 250px;
}
.btn-blue span {
	position: relative;
	z-index: 1;
}
.btn-reset {
	padding: 9px 25px;
	background: #399837;
	border-radius: 2px;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	line-heigt: 1.2em;
	-webkit-transition: .8s;
	transition: .8s;
}
@media screen and (max-width:768px) {}
@media screen and (max-width:480px) {
	a.btn-past {
		top: 55px;
	}
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
}
/* ===== PageTop ===== */

#page_top {
	width: 90px;
	height: 90px;
	position: fixed;
	right: 0;
	bottom: 0;
	opacity: 0.6;
	z-index: 10;
}
#page_top a {
	position: relative;
	display: block;
	width: 90px;
	height: 90px;
	text-decoration: none;
}
#page_top a::before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f102';
	font-size: 25px;
	color: #399837;
	position: absolute;
	width: 25px;
	height: 25px;
	top: -40px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}
#page_top a::after {
	content: 'PAGE TOP';
	font-size: 13px;
	color: #fff;
	position: absolute;
	top: 45px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
	color: #399837;
}
/* ===== 2カラム ===== */

*,
*:before,
*:after {
	box-sizing: border-box;
}
.col_2 {
	width: 100%;
	display: flex;
	display: -ms-flexbox;
	/* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	/* IE10 */
}
.col_2>div {
	width: 50%;
	padding: 0 10px;
}
@media screen and (max-width: 768px) {
	.col_2>div {
		width: 100%;
	}
}
/* ===== 3カラム ===== */

.col_3 {
	width: 100%;
	display: flex;
	display: -ms-flexbox;
	/* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	/* IE10 */
	justify-content: space-between;
}
.col_3>div {
	width: 30%;
	padding: 0 10px;
}
@media screen and (max-width: 768px) {
	.col_3>div {
		width: 100%;
	}
}
/* -- TOP  -------------------------------------- */

/* ===== メイン画像 ===== */

.main-kv-top {
	position: relative;
	background: #d7d7d7;
}
@media all and (-ms-high-contrast: none) {
	.main-kv-top {
		margin-top: 140px;
	}
}
.main-kv-top img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
	/*opacity: .8;*/
}
.main-kv-top span.ttl {
	font-size: 30px;
	font-weight: bold;
	color: #FFF;
	position: absolute;
	top: 45%;
	right: 0;
	left: 0;
	text-align: center;
}
/* ===== News ===== */
/* 重要 */
/* .contents_news {} */
.important {
	padding: 7px 15px 7px 7px;
	border: 3px solid red;
	margin-top: 10px;
}
.important>dl {
	color: black;
	text-decoration: none;
	line-height: 1.7em;
	border-bottom: none;
	margin-bottom: 0;
}
.important>dl>dt {
	font-weight: bold;
	font-size:120%;
	position: relative;
}
.important>dl>dd {
	margin-left: 1em;
}

.news_area_top {
	padding: 5px 30px;
	border-radius: 5px;
	border: 1px solid #d3d3d3;
	height: 180px;
	overflow-y: scroll;
}
.news_area {
	padding: 20px 0px;
	border-radius: 5px;
	height: 150px;
	overflow-y: scroll;
}
.news_area_past {
	padding: 20px 30px;
	border-radius: 5px;
	border: 0px solid #d3d3d3;
	height: 100px;
	overflow-y: hidden;
}
/* ===== News　一覧リスト ===== */

ul.newslist {
	width: 100%;
}
ul.newslist li {
	border-bottom: 1px solid #d3d3d3;
	position: relative;
}
ul.newslist li a {
	box-sizing: border-box;
	color: #000;
	display: table;
	padding: 8px 0;
	transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-webkit-transition: 0.2s ease-in-out;
	width: 100%;
}
ul.newslist li a:hover {
	background: rgba(57, 152, 55, 0.1);
	text-decoration: none;
}
ul.newslist li div {
	display: table-cell;
	width: 100px;
	min-width: 100px;
	vertical-align: middle;
	font-size: 1.4rem;
}
ul.newslist li p {
	display: table-cell;
	vertical-align: middle;
	font-size: 1.4rem;
}
ul.newslist li p.new::before {
	content: "NEW";
	padding: 5px 10px;
	margin-right: 20px;
	background: #F00;
	color: #FFF;
	font-size: 12px;
	font-weight: bold;
}

.file_new{
	padding: 5px 10px;
	margin-right: 20px;
	margin-top:auto;
	margin-bottom:auto;
	background: #F00;
	color: #FFF;
	font-size: 0.05em;
	font-weight: bold;
	text-align: center;
}

ul.newslist li p.pickup::before {
	content: "Pick UP";
	padding: 5px 10px;
	margin-right: 20px;
	background: #F60;
	color: #FFF;
	font-size: 0.05em;
	font-weight: bold;
}
.newslist div.newslist_accordion {
	width: 100%;
}
.newslist_accordion>dl {
	color: black;
	line-height: 1.7em;
	border-bottom: none;
	margin-bottom: 0;
	cursor: pointer;
}
.newslist_accordion>dl>dt {
	font-weight: bold;
	font-size:1.4rem;
	position: relative;
	text-decoration: underline;
	padding: 5px 15px 5px 0px;
}
.newslist_accordion>dl>dt:hover {
	background-color: rgba(57, 152, 55, 0.1);
	color: #333;
	text-decoration: none;
}
.newslist_accordion>dl>dt::after {
	content: '';
    display: block;
    position: absolute;
    height: 10px;
    width: 10px;
    border-bottom: solid 3px #000;
    border-right: solid 3px #000;
    transform: rotate(45deg);
    bottom: calc(50% - 3px);
    right: 10px;
    transition: .5s;
}
.newslist_accordion>dl>dt.open::after {
	transform: rotate(-135deg);
    bottom: calc(50% - 10px);
}
.newslist_accordion>dl>dd {
	margin-left: 1em;
	display: none;
	text-decoration: none;
}
.newslist_accordion>dl>dd>a {
	display: inline;
}
.newslist_accordion>dl>dd.open {
	display: block;
}

@media screen and (max-width:768px) {}
@media screen and (max-width:480px) {
	.news_area,
	.news_area_top {
		padding: 20px 10px;
	}
	.news_area_past {
		padding: 20px 0px;
	}
	ul.newslist li div,
	ul.newslist li p {
		display: inline-block;
	}
	ul.newslist li div {
		font-weight: bold;
	}
}
/* ===== 教職員向けコンテンツパネル ===== */

.contents_main_panel {}
ul.group {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
ul.group li {
	width: 32%;
	margin-bottom: 10px;
	position: relative;
}
ul.group li a {
	display: block;
	padding: 40px 10px;
	font-size: 1.25em;
	color: #FFF;
	font-weight: bold;
	border: 3px solid #399837;
	background-color: #399837;
}
ul.group li a:hover {
	background-color: rgba(255, 255, 255, 0.8);
	color: #000;
}
ul.group li:nth-child(1) a {
	content: '';
	background-image: url(../images/common/icon/icon01.png);
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
}
ul.group li:nth-child(2) a {
	content: '';
	background-image: url(../images/common/icon/icon02.png);
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
}
ul.group li:nth-child(3) a {
	content: '';
	background-image: url(../images/common/icon/icon03.png);
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
}
ul.group li:nth-child(4) a {
	content: '';
	background-image: url(../images/common/icon/icon04.png);
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
}
ul.group li:nth-child(5) a {
	content: '';
	background-image: url(../images/common/icon/icon05.png);
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
}
ul.group li:nth-child(6) a {
	content: '';
	background-image: url(../images/common/icon/icon06.png);
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
}
.txt-group {
	padding: 10px 0;
	display: block;
}
ul.group_list_txt {
	margin-top:  5px;
}
ul.group_list_txt li {
    width: 100%;
    margin-left: 10px;
    margin-bottom: 0;
	font-size: 1.4rem;
}
ul.group_list_txt li.group_list_ttl {
    margin-left: 0;
	font-size: 1.6rem;
}

@media screen and (max-width:992px) {
	ul.group li {
		width: 48%;
	}
}
@media screen and (max-width:480px) {
	ul.group li {
		width: 100%;
	}
	ul.group li a {
		padding: 15px 10px;
	}
}
/* ===== マイキャリアノート ===== */

.contents_careernotes {
	display: inline-block;
}
ul.link_list li {
	position: relative;
	padding: 10px 0;
}
.flex-box ul li a.pdf,
a.doc,
a.xlsx,
a.html,
a.zip,
a.com-soon {
	padding: 0;
}
a.pdf:after,
a.doc:after,
a.xlsx:after,
a.html:after,
a.zip:after,
a.com-soon:after {
	content: '';
	display: inline-block;
	width: 19px;
	height: 20px;
	background-size: contain;
	vertical-align: middle;
	margin: 0 0 5px 5px;
}
a.pdf:after {
	background-image: url(../images/common/icon/pdf.png);
}
a.doc:after {
	background-image: url(../images/common/icon/doc.png);
}
a.xlsx:after {
	background-image: url(../images/common/icon/xlsx.png);
}
a.html:after {
	background-image: url(../images/common/icon/html.png);
}
a.zip:after {
	background-image: url(../images/common/icon/zip.png);
}
a.com-soon:after {
	background-image: url(../images/common/icon/com-soon.png);
}
a.pdf,
a.doc,
a.xlsx,
a.html,
a.zip,
a.com-soon {
	padding: 10px 0 10px 0px;
}
.careernotes_txt {
	max-width: 950px;
	width: 100%;
	margin: 40px auto 0;
	padding: 10px 30px;
	color: #333;
	border: 1px dotted #666;
	background: rgba(57, 152, 55, 0.1);
}
@media screen and (max-width:768px) {}
@media screen and (max-width:480px) {
	.careernotes_txt {
		padding: 10px;
	}
	a.pdf:after,
	a.doc:after,
	a.xlsx:after,
	a.zip:after,
	a.com-soon:after {
		width: 25px;
		height: 25px;
	}
}
/* ===== 関連バナー ===== */

.contents_banner {}
.contents_banner ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.contents_banner ul li {
	width: 24%;
}
.contents_banner ul::after {
	display: block;
	content: "";
	width: 24%;
}
.contents_banner ul li img {
	width: 100%;
	object-fit: contain;
}
.btn,
a.btn,
button.btn {
	position: relative;
}
a.btn-mv {
	overflow: hidden;
	padding: 1rem 3rem;
	border-radius: 0;
	background: #666;
	font-size: 1.3rem;
	color: #FFF;
	float: right;
}
a.btn-mv span {
	position: relative;
}
a.btn-mv:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 90px;
	content: '';
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	-webkit-transform: translateX(-80%) translateY(-25px);
	transform: translateX(-80%) translateY(-25px);
	border-radius: 50%;
	background: #4ac047;
}
a.btn-mv:hover:before {
	width: 400px;
	height: 400px;
	-webkit-transform: translateX(-1%) translateY(-175px);
	transform: translateX(-1%) translateY(-175px);
}
@media screen and (max-width:768px) {
	.contents_banner ul li {
		width: 48%;
	}
}
@media screen and (max-width:480px) {}

/*2023.07.20追記*/

div.important-information{
	max-width: 1000px;
	width: calc(100vw - 24px);
	margin: 30px auto 0;
	border: solid 2px #d13826;
	border-radius: 5px;
	display: flex;
	position: relative;
	z-index: 99;
}
div.important-information>div{
	background-color: #d13826;
	color: white;
	font-weight: 700;
	padding: 10px 20px;
	display: flex;
	align-items: center;
}
div.important-information>div>img.alert{
	height: 18px;
	margin-right: 10px;
}

div.important-information>dl{
	flex: 1;
	width: 100%;
	padding: 10px 20px;
	flex-direction: column;
	cursor: pointer;
	border-bottom: none;
	margin-bottom: 0;
}
div.important-information>dl>dt{
	display: block;
	width: 100%;
	font-weight: 700;
	position: relative;
	color: #d13826;
	text-decoration: none;
}

/*2024.06.17追記 ログインボタン*/
#career .login {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	gap: 10%;
}
#career .login div {
    padding: 20px 20px 30px;
	background: rgba(57, 152, 55, 0.1)
}
#career .login p {
    font-size: .9em;
	margin: 0 0 10px;
}
#career .login a.btn-login-yellow {
	background: #FFFF66;
	padding-right: 60px;
}
#career .login a.btn-login-yellow:hover {
	background: #ffff66a6;
}
#career .login a.btn-login-yellow i {
	padding: 20px;
	background: white;
	color: black;
	border: 2px solid #FFFF66;
	margin-right: 60px;
}
#career .careernotes_txt ul {
	list-style: disc;
	padding-left: 2em;
}
#career .careernotes_txt ul:first-of-type {
	margin: 0 0 1em;
}
#career .careernotes_txt ul li a {
	color: #629462;
    text-decoration: underline;
    font-weight: bold;
}