@charset "euc-jp";

/* webフォント
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&family=Stick&display=swap');

/*
* "Roboto" licensed under the Open Font License.
* https://fonts.google.com/specimen/Roboto
* https://www.google.com/fonts/attribution
* https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
*/

/* ステラスreset
======================================== */
table {
	border-collapse: collapse;
}
html {
	font-size: 62.5%;
	}
	@media screen and (max-width: 320px) {
	html { font-size: 54.6875%; }
}

/* サイト共通
======================================== */
body {
	font-size: 1.6rem;
	font-size: clamp(1.4rem, 2vw, 1.6rem);
	font-family: "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	font-weight: 500;
	color: #000;
}
#contentsArea {
	text-align: center;
}
#contentsArea .wrap {
	width: min(86%, 1140px);
	margin: 0 auto;
	text-align: left;
	}
	@media screen and (max-width:1024px) {
	#contentsArea .wrap {
		width: 86%;
	}
}

/* header
======================================== */
header {
	display: flex;
	align-items: center;
	height: 92px;
	width: 100%;
	min-width: 1200px;
	font-size: 1.6rem;
	background: #fff;
	z-index: 100;
}
header p,
header h2 {
	margin: 0;
}
header h1,
header h2 {
	flex-basis: 181px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
header h1 img {
	width: 124px;
	height: auto;
}
header h2 a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #c00;
	color: #fff;
	text-decoration: none;
	font-size: 1.6rem;
	font-weight: 700;
}
@media screen and (max-width:1024px) {
	header {
		height: 65px;
		min-width: auto;
	}
	header h1,
	header h2 {
		flex-basis: 130px;
	}
	header h1 img {
		width: 95px;
	}
	header h2 a {
		font-size: 1.4rem;
	}
}


/* footer
======================================== */
footer {
	clear: both;
	font-size: 1.6rem;
	text-align: center;
	background: #fff;
	padding: 120px 0 20px;
}
footer a {
	display: block;
	text-indent: -9999px;
	position: relative;
	width: 30px;
	height: 30px;
	margin: 0 auto;
}
footer a::before {
	position: absolute;
	content: "";
	display: block;
	bottom: 7px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 30px;
	height: 30px;
	border-top: 3px solid #bbb;
	border-right: 3px solid #bbb;
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg);
}
footer small {
	display: block;
	color: #000;
	font-size: 1.2rem;
	font-weight: 500;
	margin: 0;
	line-height: 1.4;
}
@media screen and (max-width:1024px) {
	footer {
		padding: 80px 0 20px;
	}
}


/* システム共通
================================================== */
/* ビジュアル
------------------------------------------- */
.system .visualArea {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 400px;
	background: url("../images/visual.jpg") center center;
	background-size: cover;
	color: #fff;
}
.system .visualArea .ttl {
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.4;
	letter-spacing: 0.05em;
}
.system .visualArea .ttl span {
	display:block;
	font-family: 'Roboto', sans-serif;
	font-size: 5rem;
	font-weight: 500;
}
@media screen and (max-width:1024px) {
	.system .visualArea {
		height: 200px;
	}
	.system .visualArea .ttl {
		font-size: 1.8rem;
	}
	.system .visualArea .ttl span {
		font-size: 3.4rem;
	}
}

/* 見出し
------------------------------------------- */
.system h3 {
	position: relative;
	font-size: 3.4rem;
	font-weight: 700;
	text-align: center;
	margin: 70px 0 60px;
}
.system h3::before {
	position: absolute;
	display: block;
	content: "";
	bottom: -20px;
	right: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: #c00;
	margin: auto;
}
@media screen and (max-width:1024px) {
	.system h3 {
		font-size: 2.2rem;
		margin: 50px 0 40px;
	}
	.system h3::before {
		bottom: -15px;
		width: 30px;
	}
}

/* テキスト
------------------------------------------- */
.system .txt {
	line-height: 1.6;
	margin-bottom: 20px;
}

/* 改行
------------------------------------------------- */
/* スマホだけ改行 */
br.sp { 
	display: none;
	}
	@media screen and (max-width:1024px) {
	br.sp {
		display: block;
	}
}
/* PCだけ改行 */
br.pc { 
	display: block;
	}
	@media screen and (max-width:1024px) {
	br.pc {
		display: none;
	}
}

/* 必須
------------------------------------------- */
.system .required {
	display: inline-block;
	background: #c00;
	color: #fff;
	font-size: 1.2rem;
	font-weight: normal;
	line-height: 1.6;
	padding: 3px 8px 1px;
	margin: 0 1rem;
}
@media screen and (max-width:1024px) {
	.system .required {
		line-height: 1.4;
		padding: 3px 6px 2px;
	}
}

/* ボタン
------------------------------------------- */
.system .btn {
	position: relative;
	text-align: center;
	margin-top: 80px;
}
.system .btn input[type="submit"] {
	width: 400px;
	font-size: 1.6rem;
	background: #c00;
	border: none;
	color: #fff;
	border-radius: 0;
	appearance: none;
	padding: 20px;
	margin: 0;
	line-height: 1.6;
	cursor: pointer;
}
.system .btn input[type="submit"]:hover {
	background: #333;
}
.system .btn span {
	position: relative;
	display: inline-block;
}
.system .btn span::after {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	right: 20px;
	display: block;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-45deg);
	margin: auto;
}
@media screen and (max-width:1024px) {
	.system .btn {
		margin-top: 50px;
	}
	.system .btn input[type="submit"] {
		width: 260px;
		font-size: 1.4rem;
		padding: 15px;
	}
}

/* tableリストタイプ
------------------------------------------- */
table.list {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	line-height: 1.6;
	border-bottom: 1px solid #555;
}
table.list th,
table.list td {
	display: table-cell;
	border-top: 1px solid #555;
	padding: 22px;
}
table.list th {
	width: 16em;
	vertical-align: top;
	background: #f4f4f4;
}
table.list td {
	width: calc(100% - 16em);
}
@media screen and (max-width:1024px) {
	table.list th,
	table.list td {
		display: block;
		width: 100%;
	}
	table.list th {
		margin-top: 10px;
		padding: 12px 10px 10px;
	}
	table.list tr:first-child th {
		margin-top: 0;
	}
	table.list td {
		border-top: none;
		padding: 20px 10px;
	}
}

/* 職種一覧に戻るリンク
------------------------------------------- */
.system .bk_lnk {
	text-align: center;
	margin-top: 50px;
}
.system .bk_lnk a {
	text-decoration: underline;
}
.system .bk_lnk a:hover {
	text-decoration: none;
}

/* フォームパーツ
------------------------------------------- */
.system input,
.system select,
.system textarea {
	background: #fff;
	border: 1px solid #555;
	padding: 10px 15px;
	line-height: 1.6;
	font-size: 1.6rem;
	margin: 2px 0;
}
.system select {
	appearance: auto;
}
.system textarea {
	width: 100%;
	display: block;
}
.system label {
	display: inline-block;
	margin: 0.4em 1.5em 0.4em 0;
}
@media screen and (max-width:1024px) {
	.system input,
	.system select,
	.system textarea {
		padding: 10px;
		font-size: 1.4rem;
	}
}

/* チェックボックス */
.system input[type="checkbox"] {
	display: none;
}
.system .cb-parts {
	position: relative;
	cursor: pointer;
	padding: 15px 0 15px 28px;
}
.system span[class^="cb-parts"]::before {
	content: "";
	display: block;
	position: absolute;
	top: 14px;
	left: 0;
	width: 20px;
	height: 20px;
	border: 1px solid #555;
	background: #fff;
	border-radius: 0;
}
.system input[type="checkbox"]:checked + span[class^="cb-parts"]::after {
	content: "";
	display: block;
	position: absolute;
	top: 18px;
	left: 7px;
	width: 6px;
	height: 10px;
	-webkit-transform: rotate(40deg);
	transform: rotate(40deg);
	border-bottom: 2px solid #c00;
	border-right: 2px solid #c00;
}

/* ラジオボタン */
.system label.radio {
	position: relative;
	display: inline-block;
	line-height: 1.6;
	padding-left: 32px;
	padding-bottom: 0.5rem;
	margin: 0 1.5em -0.8em 0;
	overflow: hidden;
}
.system label.radio:before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	border: 1px solid #555;
	border-radius: 50%;
	z-index: 3;
}
.system label.radio:after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	background-color: #c00;
	border: 6px solid #fff;
	border-radius: 50%;
	z-index: 1;
}
.system input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: absolute;
	left: -40px;
	top: 0;
	width: 24px;
	height: 24px;
	margin: 0;
	padding: 0;
	box-shadow: 40px 0 #fff;
	border-radius: 50%;
	z-index: 2;
}
.system input[type="radio"]:checked {
	box-shadow: none;
}
@media screen and (max-width:1024px) {
	.system label.radio {
		margin: 0 1.5em 0 0;
	}
}

/* ファイルを選択 */
.system input[type="file"] {
	width: 100%;
	border: none;
	padding: 0;
	margin: 0;
}


/* 職種一覧
================================================== */
/* 検索
------------------------------------------- */
.system .joblist .searchArea {
	background: #f4f4f4;
	width: 100%;
	padding: 80px 0 70px;
}
.system .joblist .searchArea dl.list {
	position: relative;
	border-bottom: 1px solid #ddd;
	margin: 0 auto 45px;
}
.system .joblist .searchArea dl.list dt {
	position: absolute;
	left: 0;
	width: 10em;
	font-size: 1.8rem;
	font-weight: 700!important;
	border-top: 1px solid #ccc;
	padding: 32px 0;
	margin: 0;
}
.system .joblist .searchArea dl.list dd {
	border-top: 1px solid #ccc;
	padding: 1em 0 1em 13em;
}
.system .joblist .searchArea ul {
	display: flex;
	flex-wrap: wrap;
}
.system .joblist .searchArea ul li {
	font-size: 0;
	margin: 5px;
}
.system .joblist .searchArea label {
	position: relative;
	display: inline-block;
	overflow: hidden;
	cursor: pointer;
}
.system .joblist .searchArea input {
	position: absolute;
	left: -40px;
}
.system .joblist .searchArea input + span {
	display: inline-block;
	font-size: 1.4rem;
	line-height: 1.6;
	color: #000;
	background: #fff;
	border: solid 1px #555;
	border-radius: 50px;
	padding: 9px 22px 8px;
}
.system .joblist .searchArea input:checked + span {
	color: #fff;
	border-radius: 50px;
	background: #c00;
	border: solid 1px #c00;
}
.system .joblist .searchArea .btn_box {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}
.system .joblist .searchArea .btn_search {
	display: inline-block;
	width: 48%;
	max-width: 340px;
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.6;
	background: #c00;
	border: none;
	text-align: center;
	cursor: pointer;
	padding: 15px 0;
}
.system .joblist .searchArea .btn_search:hover {
	background: #333;
}
.system .joblist .searchArea .btn_reset {
	background: none;
	border: none;
	color:#000;
	text-decoration: underline;
	margin-top: 40px;
}
@media screen and (max-width:1024px) {
	.system .joblist .searchArea {
		padding: 40px 0;
	}
	.system .joblist .searchArea dl.list {
		position: static;
		margin: 0 auto 30px;
	}
	.system .joblist .searchArea dl.list dt {
		position: static;
		width: 100%;
		font-size: 1.6rem;
		padding: 20px 0 10px;
	}
	.system .joblist .searchArea dl.list dd {
		width: 100%;
		border-top: none;
		padding: 0 0 15px;
	}
	.system .joblist .searchArea ul li {
		font-size: 0;
		margin: 3px 5px 3px 0;
	}
	.system .joblist .searchArea input + span {
		font-size: 1.3rem;
		padding: 6px 18px 5px;
	}
	.system .joblist .searchArea .btn_search {
		width: 80%;
		font-size: 1.6rem;
		line-height: 1.5;
		background: #c00;
		border: none;
		text-align: center;
		cursor: pointer;
		padding: 14px 0;
	}
	.system .joblist .searchArea .btn_reset {
		margin-top: 25px;
	}
}

/* 職務数
------------------------------------------- */
.system .joblist .msgArea {
	line-height: 1.6;
	border: solid 1px #555;
	padding: 30px;
	margin: 50px auto!important;
}

/* 職務数
------------------------------------------- */
.system .joblist .hit_number {
	font-size: 1.8rem;
	padding: 80px 0 0;
	text-align: center;
}
.system .joblist .hit_number span {
	display: inline-block;
	font-family: 'Lato', sans-serif;
	font-size: 4rem;
	color: #c00;
	margin: 0 0.8rem;
}
@media screen and (max-width:1024px) {
	.system .joblist .hit_number {
		font-size: 1.6rem;
		padding: 40px 0 0;
	}
	.system .joblist .hit_number span {
		font-size: 3rem;
	}
}

/* 結果一覧
------------------------------------------- */
.system .joblist .listArea ul {
	border-top: solid 1px #555;
	line-height: 1.6;
}
.system .joblist .listArea ul li {
	border-bottom: solid 1px #555;
}
.system .joblist .listArea ul a {
	position: relative;
	display: block;
	padding: 25px 20px 25px 40px;
}
.system .joblist .listArea ul a:hover {
	background: #f4f4f4;
}

.system .joblist .listArea ul a::before {
	position: absolute;
	top: 34px;
	left: 15px;
	margin: auto;
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #c00;
	border-right: 2px solid #c00;
	transform: rotate(45deg);
}
@media screen and (max-width:1024px) {
	.system .joblist .listArea ul a {
		padding: 15px 0 15px 20px;
	}
	.system .joblist .listArea ul a::before {
		top: 22px;
		left: 0;
	}
}

/* 職種ゼロ件
------------------------------------------- */
.system .joblist .zeroArea {
	text-align: center;
	margin-top: 80px;
}


/* 職種詳細
================================================== */
.system .desc h3 {
	position: relative;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: left;
	margin: 80px 0 40px;
	padding: 5px 0 5px 30px;
}
.system .desc h3::before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	bottom: auto;
	left: 0;
	right: auto;
	width: 4px;
	height: 100%;
	background: #c00;
	margin: auto;
}
.system .desc table th {
	font-size: 1.8rem;
}
.system .desc table a {
	text-decoration: underline;
}
.system .desc table a:hover {
	text-decoration: none;
}
@media screen and (max-width:1024px) {
	.system .desc h3 {
		font-size: 1.8rem;
		margin: 40px 0 30px;
		padding: 5px 0 5px 20px;
	}
	.system .desc table th {
		font-size: 1.6rem;
	}
}


/* 同意文
================================================== */
.system .agree textarea {
	height: 320px;
	padding: 20px;
}
.system .agree .flex {
	display: flex;
	justify-content: center;
	align-items: center;
}
.system .agree .flex li {
	margin: 0 30px;
}
.system .agree .flex a.disagree {
	position: relative;
	display: block;
	width: 400px;
	line-height: 1.6;
	text-align: center;
	background: #e6e6e6;
	color: #000;
	border-radius: 0;
	appearance: none;
	padding: 20px;
	text-decoration: none;
}
.system .agree .flex a.disagree::after {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	bottom: 0;
	right: 20px;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #333;
	border-right: 2px solid #333;
	transform: rotate(-45deg);
	margin: auto;
}
.system .agree .flex a:hover {
	background: #333;
	color: #fff;
}
.system .agree .flex a:hover::after {
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
}
@media screen and (max-width:1024px) {
	.system .agree textarea {
		font-size: 1.3rem;
	}
	.system .agree label.radio {
		margin: 0 1.5em 0 0;
	}
	.system .agree .btn {
		margin-top: 40px;
	}
	.system .agree .flex li {
		margin: 0 10px;
	}
	.system .agree .flex a.disagree,
	.system .agree .btn input {
		width: 140px;
		padding: 15px 20px 12px 5px;
	}
}


/* エントリー
================================================== */
.system .entry {
	margin: 80px 0 40px;
}
.system .entry h4 {
	font-size: 2rem;
	font-weight: 700;
	background: #555;
	color: #fff;
	padding: 15px;
}
.system .entry input[size="50"],
.system .entry select[name^="job_code"],
.system .entry [name^="school_"],
.system .entry [name^="company_type"],
.system .entry [name^="job_type"],
.system .entry [name^="job_status"] {
	width: 100%;
}
.system .entry .col_2 {
	display: flex;
	justify-content: space-between;
}
.system .entry .col_2 input {
	width: 48%;
}
.system .entry table.list table th,
.system .entry table.list table td {
	border: none;
	padding: 0;
}
.system .entry table.list table th {
	width: 12em;
	background: #fff;
	padding-top: 15px;
}
.system .entry table.list table td {
	width: calc(100% - 12em);
}
.system .entry table.list table label.radio {
	margin: 0.5em 1.5em -0.3em 0;
}
@media screen and (max-width:1024px) {
	.system .entry {
		margin: 40px 0 0;
	}
	.system .entry h4 {
		font-size: 1.8rem;
		padding: 13px;
	}
	.system .entry table.list table th {
		padding: 8px 0 3px;
	}
	.system .entry table.list table td {
		width: 100%;
	}
}

/* エラーメッセージ
------------------------------------------- */
.system .entry .error_txt {
	width: 100%;
	border: solid 1px #c00;
	color: #c00;
	line-height: 1.6;
	margin-bottom: 50px;
	padding: 30px 45px;
}
.system .entry .error_txt li {
	position: relative;
	margin: 10px 0;
	padding-left: 34px;
}
.system .entry .error_txt li::before {
	position: absolute;
	display: block;
	content: "！";
	top: 2px;
	left: 0;
	width: 20px;
	height: 20px;
	line-height: 20px;
	background: #c00;
	border-radius: 50%;
	margin: auto;
	font-size: 1.2rem;
	color: #fff;
	text-align: center;
}
@media screen and (max-width:1024px) {
	.system .entry .error_txt {
		margin-bottom: 50px;
		padding: 10px 20px;
	}
	.system .entry .error_txt li {
		padding-left: 30px;
	}
	.system .entry .error_txt li::before {
		top: 0;
	}
}

/* メッセージ
------------------------------------------- */
.system .entry .msg_txt {
	width: 100%;
	line-height: 1.6;
}
.system .entry .msg_txt p {
	margin-bottom: 1em;
}
.system .entry .msg_txt span {
	font-weight: bold;
}



/* エントリー確認
================================================== */
/* 学歴
------------------------------------------- */
.system .entry.cfm table.list table th,
.system .entry.cfm table.list table td {
	padding: 5px 0;
}
@media screen and (max-width:1024px) {
	.system .entry.cfm table.list table th {
		padding: 5px 0 0;
	}
	.system .entry.cfm table.list table td {
		padding: 0 0 5px;
	}
}

/* ボタン2カラム
------------------------------------------- */
.system .entry.cfm .flex {
	display: flex;
	justify-content: center;
	align-items: center;
}
.system .entry.cfm .flex li {
	margin: 0 30px;
}
.system .entry.cfm .btn_disagree input[type="submit"] {
	background: #777;
}
.system .entry.cfm .btn_disagree input[type="submit"]:hover {
	background: #333;
}
@media screen and (max-width:1024px) {
	.system .entry.cfm .flex {
		flex-direction: column-reverse;
	}
	.system .entry.cfm .flex li {
		margin: 8px 0;
	}
}


/* ==================================================
 イベント情報
================================================== */

/* 全ページ共通
---------------------------------------- */
.system .event {
	margin: 80px auto 0;
}
@media screen and (max-width:1024px) {
	.system .event {
		margin: 40px auto 0;
	}
}
.system .event .txtR {
	text-align: right;
}
.system .event .message {
	line-height: 1.6;
}

/* カテゴリ見出し */
.system .event dl.event dt,
.system .event h2 {
	position: relative;
	font-size: 3.4rem;
	font-weight: 700;
	text-align: center;
	margin: 70px 0 60px;
}
.system .event dl.event dt::before,
.system .event h2::before {
	position: absolute;
	display: block;
	content: "";
	bottom: -20px;
	right: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: #c00;
	margin: auto;
}
@media screen and (max-width:1024px) {
	.system .event dl.event dt,
	.system .event h2 {
		font-size: 2.2rem;
		margin: 50px 0 40px;
	}
	.system .event dl.event dt::before,
	.system .event h2::before {
		bottom: -15px;
		width: 30px;
	}
}
/*
.system .event h3 {
	position: relative;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: left;
	margin: 80px auto 40px;
	padding: 5px 0 5px 30px;
}
.system .event h3::before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	bottom: auto;
	left: 0;
	right: auto;
	width: 4px;
	height: 100%;
	background: #c00;
	margin: auto;
}
@media screen and (max-width:1024px) {
	.system .event h3 {
		font-size: 1.8rem;
		margin: 40px auto 30px;
		padding: 5px 0 5px 20px;
	}
}
*/

/* 一覧
---------------------------------------- *
/* メッセージ */
.system .event.list .msgArea {
  line-height: 1.6;
  margin-bottom: 50px;
}
@media screen and (max-width:1024px) {
  .system .event.list .msgArea {
    margin-bottom: 25x;
  }
}

/* ページ内リンク */
.system .event.list .jobcategory {
	display: flex;
	justify-content: center;
}
.system .event.list .jobcategory li {
	margin: 0 10px;
}
.system .event.list .jobcategory li a {
	display: block;
	text-align: center;
	width: 240px;
	background: #f4f4f4;
	padding: 20px 30px 20px 20px;
	font-weight: 700;
	position: relative;
	line-height: 1.2;
}
.system .event.list .jobcategory li a::before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	right: 20px;
	display: block;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(45deg);
	margin: auto;
}
.system .event.list .jobcategory li a:hover {
	background: #333;
	color: #fff;
}
.system .event.list .jobcategory li a:hover::before {
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
}
@media screen and (max-width:1024px) {
	.system .event.list .jobcategory {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.system .event.list .jobcategory li {
		flex-basis: auto;
		margin: 0 8px 8px 0;
	}
	.system .event.list .jobcategory li a {
		width: 100%;
		padding: 13px 27px 13px 15px;
	}
	.system .event.list .jobcategory li a::before {
		right: 10px;
		width: 6px;
		height: 6px;
	}
}

/* ボタン */
.system .event.list a.btn {
	display: block;
	text-align: center;
	width: 180px;
	font-size: 1.6rem;
	background: #c00;
	color: #fff;
	padding: 20px;
	margin: 0 0 0 auto;
	line-height: 1.6;
	cursor: pointer;
	position: relative;
}
.system .event.list a.btn::before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	right: 20px;
	display: block;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-45deg);
	margin: auto;
}
.system .event.list a.btn:hover {
	background: #333;
}
@media screen and (max-width:1024px) {
	.system .event.list a.btn {
		font-size: 1.4rem;
		padding: 15px;
		margin: 20px auto 0;
		width: 260px;
	}
}

/* ボタン固定 */
.system .event.list .rbox {
	position: sticky;
	top: 10px;
}
@media screen and (max-width:1024px) {
	.system .event.list .rbox {
		position: static;
	}
}

/* イベント詳細カード */
.system .event dl.event dd,
.system .event .innerW {
	border: 1px solid #555;
	border-right: none;
	border-left: none;
	background: #f4f4f4;
	margin-bottom: 40px;
	padding: 30px 35px;
	text-align: left;
	line-height: 1.6;
}
.system .event .innerW {
	border: 1px solid #555;
}
.system .event dl.event:last-of-type dd:last-of-type {
	margin-bottom: 0;
}
.system .event dl.event dd .flex {
	display: flex;
	justify-content: space-between;
	align-items:flex-start!important;
}
.system .event dl.event dd .lbox {
	flex-basis: calc(100% - 220px);
}
.system .event dl.event dd .rbox {
	flex-basis: 220px;
}
.system .event dl.event dd .days,
.system .event .innerW .days {
	font-weight: 700;
}
.system .event dl.event dd .ttl,
.system .event .innerW .ttl {
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 8px;
}
dl.event dd .detail,
.system .event .innerW .detail {
	margin-top: 1.5em;
}
@media screen and (max-width:1024px) {
	.system .event dl.event dd,
	.system .event .innerW {
		margin-bottom: 40px;
		padding: 20px 25px;
	}
	.system .event dl.event dd .flex {
		display: block!important;
	}
	.system .event dl.event dd .ttl,
	.system .event .innerW .ttl {
		font-size: 1.8rem;
	}
}

/* 詳細＋同意
---------------------------------------- */
.system .event .innerW .area,
.system .event .innerW .deadline {
	margin-top: 1.5em;
	border-top: 1px solid #555;
	padding-top: 1em;
}
.system .event .innerW .deadline {
	margin-top: 1em;
}
.system .event.desc .message {
	line-height: 1.6;
}
/*.system .event textarea {
	height: 320px;
	padding: 20px;
}*/
.system .event.desc .flex {
	display: flex;
	justify-content: center;
	align-items: center;
}
.system .event.desc .flex li {
	margin: 0 30px;
}
.system .event.desc .flex a.disagree {
	position: relative;
	display: block;
	width: 400px;
	line-height: 1.6;
	text-align: center;
	background: #e6e6e6;
	color: #000;
	border-radius: 0;
	appearance: none;
	padding: 20px;
	text-decoration: none;
}
.system .event.desc .flex a.disagree::after {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	bottom: 0;
	right: 20px;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #333;
	border-right: 2px solid #333;
	transform: rotate(-45deg);
	margin: auto;
}
.system .event.desc .flex a:hover {
	background: #333;
	color: #fff;
}
.system .event.desc .flex a:hover::after {
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
}
@media screen and (max-width:1024px) {
	/*.system .event.desc textarea {
		font-size: 1.3rem;
	}*/
	.system .event.desc .btn {
		margin-top: 40px;
	}
	.system .event.desc .flex li {
		margin: 0 10px;
	}
	.system .event.desc .flex a.disagree,
	.system .event.desc .btn_ani input {
		width: 140px;
		padding: 15px 20px 12px 5px;
	}
}

/* メッセージ */
.system .event.desc .message {
	line-height: 1.6;
    border: solid 1px #555;
    padding: 30px;
}
@media screen and (max-width:1024px) {
	.system .event.desc .message {
		padding: 20px 25px;
	}
}

/* エントリー
---------------------------------------- */	
.system .event.entry span {
    position: relative;
    display: inline-block;
}
.system .event.entry .rubric {
	display: block;
	margin-bottom: 0.5em;
}
.system .event select[name="graduate_date4_month"] + span.nobr {
	margin-left: 20px;
}
/* checkbox */
.system .event.entry label[for^="media"],
.system .event.entry label[for^="delete_button"] {
	cursor: pointer;
	position: relative;
	padding-left: 28px;
	margin: 0.4em 1.5em 0.4em 0;;
	overflow: hidden;
	display: inline-block;
	box-sizing: border-box;
}
.system .event.entry label[for^="media"]:before,
.system .event.entry label[for^="delete_button"]:before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	left: 0;
	top: 3px;
	border: solid 1px #555;
	z-index: 3;
}
.system .event.entry label[for^="media"]:after,
.system .event.entry label[for^="delete_button"]:after {
	content: '';
	position: absolute;
	top: 6px;
	left: 7px;
	display: block;
	width: 6px;
	height: 10px;
	border-right: 2px solid #c00;
	border-bottom: 2px solid #c00;
	transform: rotate(40deg);
	z-index: 1;
}
.system .event.entry label[for^="media"] input[type="checkbox"],
.system .event.entry label[for^="delete_button"] input[type="checkbox"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	left: -40px;
	top: 4px;
	width: 20px;
	height: 20px;
	display: block;
	box-shadow: 41px 0px #fff;
	z-index: 2;
	margin: 0px;
	padding: 0px;
}
.system .event.entry label input[type="checkbox"]:checked {
	box-shadow: none !important;
}
@media screen and (max-width:1024px) {
	.system .event label.radio {
		margin: 0 1.5em -0.8em 0;
	}
	.system .event.entry label[for^="media"]:before,
	.system .event.entry label[for^="delete_button"]:before {
		top: 1px;
	}
	.system .event.entry label[for^="media"]:after,
	.system .event.entry label[for^="delete_button"]:after {
		top: 4px;
	}
	.system .event.entry label[for^="media"] input[type="checkbox"],
	.system .event.entry label[for^="delete_button"] input[type="checkbox"] {
		top: 2px;
	}
}
