@charset 'UTF-8';

/* めくろうワークス フロントエンドシステム スタイルシート */

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	font-family: "Yu Gothic Medium", "YuGothicMedium", sans-serif;
	scroll-behavior: smooth;
}
body {
	background: white;
	overflow: hidden auto;
	-webkit-overflow-scrolling: touch;
}
main {
	margin: 0 0 4em;
}

/*======================================
  色テーマ
======================================*/
.fulltime {
	--main-color: #3c5da8;
}
.parttime {
	--main-color: #f34444;
}
.newgrads {
	--main-color: #059900;
}
.hs {
	--main-color: #27B2D9;
}

/*====================
 * 全体レイアウト
 */
/* 狭い画面のレイアウト */
header {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 0;
	box-shadow: -1px 0 10px 1px rgb(0 0 0 / 20%);
	background-color: white;
}

.mw-content main .text-wrapper {
	display: block;
	margin: 0 auto;
	padding: 0 0.5rem;
}

@media (min-width: 720px) {
	header {
		box-shadow: none;
	}

	.mw-content {
		text-align: center;
	}

	.mw-content .horizontal-only {
		visibility: hidden;
	}

	.mw-content header {
		float: left;
		box-sizing: border-box;
		width: 30%;
		background: linear-gradient(to bottom, rgb(239, 251, 251), white);
		max-width: 300px;
		text-align: left;
		padding: 0.5em;
	}

	.mw-content main {
		display: inline-block;
		box-sizing: border-box;
		width: 64%;
		max-width: 50em;
		margin: 0 auto 2em;
		padding: 0;
		text-align: left;
	}
	
	@supports (display: flex) {

		.mw-content {
			display: flex;
			flex-flow: row wrap;
		}

		.mw-content header {
			flex: 1 0 30%;
		}

		.mw-content main {
			flex: 1 0 64%;
			margin: 0 auto;
			max-width: none;
		}

		.mw-content main .text-wrapper {
			display: block;
			max-width: 45em;
			margin: 0 auto;
		}
	
		.mw-content footer {
			flex: 0 0 100%;
		}
	}

}

/*====================
 * ヘッダー部分
 */

header .header_container {
	box-sizing: border-box;
	max-width: 1180px;
	margin: auto;
}

header .title_area {
	display: block;
	position: relative;
	box-sizing: border-box;
	padding: 4px 4px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	overflow: auto;
}

header .title_area .logo_link {
	display: block;
	float: left;
	flex: 0 0 auto;
	align-self: center;
}

header .title_area img.logo {
	width: 180px;
	margin: 0;
	padding: 4px 0;
}

header .title_area .catch_phrase {
	display: none;
}

header .title_area .btn_link {
	display: block;
	float: right;
	padding: 4px 4px;
	margin: 0 0 0 auto;
	flex: 0 0 auto;
	align-self: center;
	color: #3c5da8;
	font-weight: bold;
	font-size: 14px;
}

.global-menu-horizontal {
	box-sizing: border-box;
	width: 100%;
	padding: 0;
}

.global-menu-horizontal ul {
	margin: 0;
	padding: 0;
	text-align: center;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around; /* space-evenly が効かない場合の代替用 */
	justify-content: space-evenly;
}

.global-menu-horizontal li {
	display: inline-block;
	padding: 0;
}

.global-menu-horizontal li a {
	display: block;
	padding: 0.5em 0.3em;
	margin: 0;
	line-height: 1em;
}

.global-menu-horizontal li a:hover {
	background-color: #3c5da8;
	color: white;
}

/* サイドバーなしの広めのレイアウト */
@media (min-width: 500px) {

	header .title_area img.logo {
		height: auto;
	}
	
	header .title_area .catch_phrase {
		box-sizing: border-box;
		display: block;
		float: left;
		width: calc(100% - 320px);
		flex: 1 0 auto;
		text-align: center;
		font-size: 12px;
		padding: 0 1em;
	}
}

header a:link {
	color: black;
	text-decoration: none;
}

header a:visited {
	color: black;
	text-decoration: none;
}

header a:hover {
	color: black;
	text-decoration: none;
}

.global-menu-vertical {
	display: none;
}

@media (min-width: 886px) {
	header .title_area .catch_phrase_area .catch_phrase {
		font-size: 16px;
	}
}

/* サイドバー付きレイアウト */
@media (min-width: 720px) {

	.mw-content header .title_area {
		display: block;
		width: 100%;
		padding: 4px 0;
		text-align: center;
	}

	.mw-content header .title_area .logo_link {
		float: none;
	}

	.mw-content header .title_area .logo {
		display: block;
		width: 80%;
		height: auto;
		margin: 0 auto;
	}

	.mw-content header .title_area .catch_phrase {
		display: block;
		float: none;
		width: auto;
		padding: 0;
		text-align: center;
		font-size: small;
	}

	.mw-content header .title_area .btn_link {
		float: none;
		margin: 0 auto;
	}

	.mw-content .global-menu-horizontal {
		display: none;
	}
	
	.mw-content .global-menu-vertical {
		display: block;
		position: static;
		background: transparent;
		width: auto;
		padding: 0;
	}

	.mw-content .global-menu-vertical ul {
		margin: 1em 0;
		padding: 0;
	}
	
	.mw-content .global-menu-vertical ul :link {
		text-decoration: none;
		color: black;
	}
	
	.mw-content .global-menu-vertical ul :hover {
		text-decoration: none;
		color: black;
	}
	
	.mw-content .global-menu-vertical ul :visited {
		text-decoration: none;
		color: black;
	}
	
	.mw-content .global-menu-vertical ul li {
		list-style-type: none;
		margin: 0.5em 0;
		padding: 0;
		font-weight: bold;
	}
	
	.mw-content .global-menu-vertical ul li .bullet {
		display: inline-block;
		width: 1.5em;
		height: 1.5em;
		object-fit: contain;
		vertical-align: top;
	}
	
	.mw-content .global-menu-vertical ul li .desc {
		display: inline-block;
		vertical-align: top;
	}
	
	.mw-content .global-menu-vertical ul .en {
		font-size: small;
		font-family: serif;
		color: rgb(29, 67, 154);
	}
	
	.mw-content .global-menu-vertical .btn {
		display: block;
		margin: 1em auto;
	}

}

/* 検索ボタン（共通） */
.button_area {
	margin: 0 auto;
	text-align: center;
}

.button_area .button {
	display: inline-block;
	margin: 0.3em;
	width: 12em;
	color: white;
	text-decoration: none;
	border-radius: 1.2em;
	padding: 0.5em 2px;
	line-height: 1.2em;
	cursor: pointer;
	font-size: 20px;
	font-weight: bold;
	font-family: "Yu Gothic Medium", "YuGothicMedium", sans-serif;
	background-color: #1d439a;
	background-color: var(--main-color);
	border: 1px solid #1d439a;
	border-color: var(--main-color);
}

.button_area .button.special {
	background-color: #888888;
	border: 1px solid	#888888;
}

.mw-content main .button_area p {
	display: flex;
	justify-content: space-between;
	text-align: center;
	margin: 3em auto 0;
}
@media screen and (min-width: 500px) {
	.mw-content main .button_area p {
		justify-content: space-evenly;
	}
}

.mw-content main p button {
	width: 48%;
	color: white;
	text-decoration: none;
	border-radius: 16px;
	padding: 12px 2px;
	cursor: pointer;
	outline: none;
	font-size: 14px;
	font-family: "Yu Gothic Medium", "YuGothicMedium", sans-serif;
}
.mw-content main p button:hover {
	text-decoration: underline;
}

@media only screen and (min-width: 348px) {
	.mw-content main p button {
		font-size: 16px;
	}
}

@media only screen and (min-width: 500px) {
	.mw-content main p button {
		font-size: 16px;
		width: 40%;
	}
}

/* 細かい部品 */
button.btn {
	padding: 0.5em 2em;
	border: 1px solid #888888;
	border-radius: 5px;
	color: #888888;
	background: white;
	cursor: pointer;
}

/* タグ用チェックボックスのスタイル */
ul.tags {
	display: block;
	margin: 0;
	padding: 0;
	cursor: default;
}

ul.tags li {
	display: inline-block;
	margin: 0 0.5em;
	padding: 0;
}

/* 検索ページ */
ul.tags li.parent {
	display: block;
}

ul.tags li ul.tags {
	margin-left: 16px;
}

.search_list dt {
	font-weight: bold;
	font-size: 1.2em;
	color: #1d439a;
	color: var(--main-color);
}

.search_list dd {
	margin-left: 0;
	margin-bottom: 32px;
}

.search_page .page_title {
	margin: 0 -0.5rem;
	text-align: center;
	padding: 8px 0;
	font-size: 18px;
	color: white;
	background-color: #1d439a;
	background-color: var(--main-color);
}

@media screen and (min-width: 720px) {
	.search_page .page_title {
		margin: 0;
	}
}

.search_form .btn_for_search_wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	border-top: solid 1px #e8e8e8;
	padding: 8px 0;
	background-color: white;
	text-align: center;
	box-shadow: 1px 0 10px 1px rgba(0, 0, 0, .2);
	z-index: 1;
}

@media screen and (min-width: 720px) {
	.search_form .btn_for_search_wrapper {
		position: static;
		box-shadow: none;
		border: none;
		background-color: transparent;
	}
}

.search_form .btn_for_search_wrapper .btn_for_search {
	display: inline-block;
	border: none;
	border-radius: 38px;
	padding: 8px 0;
	width: 170px;
	height: 44px;
	font-weight: bold;
	font-size: 18px;
	cursor: pointer;
	position: relative;
	background-color: #1d439a;
	background-color: var(--main-color);
	color: white;
}

.search_form .btn_for_search_wrapper .btn_for_search .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
}

.search_form .btn_for_search_wrapper .btn_for_search .inner img {
	display: inline-block;
	vertical-align: middle;
	width: 20px;
}

.search_form .btn_for_search_wrapper .btn_for_search .inner p {
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	font-weight: bold;
	color: white;
	font-family: "Yu Gothic Medium", "YuGothicMedium", sans-serif;
}

/* 新着求人 */
.pickup_title {
	color: brown;
	margin: 0;
	margin-top: 2em;
	text-align: center;
}

@media screen and (min-width: 720px) {
	.pickup_title {
		margin-top: 0;
		margin-left: 48px;
		text-align: left;
	}
}

.job_tile_list {
	overflow-x: auto;
	white-space: nowrap;
	margin: 0 0 4em;
	padding: 0;
	min-height: 32rem;
}

.job_tile_list > li {
	display: inline-block;
	width: 270px;
	vertical-align: top;
	margin: 1em 8px;
	list-style: none;
	white-space: normal;
}

.job_tile_list > li > a {
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #383838;
}

@supports (display: flex) {
	.job_tile_list {
		display: flex;
		flex-flow: row nowrap;
		align-items: stretch;
	}
	.job_tile_list > li {
		flex: 0 0 270px;
	}
}

.job_tile {
	border-radius: 20px;
	overflow: hidden;
	padding-bottom: 0.5em;
	height: 100%;
}
.job_tile.parttime {
	background-color: #fff0f0;
}
.job_tile.fulltime {
	background-color: #f4f7ff;
}

.job_tile .image {
	margin: 0;
	width: 100%;
	height: auto;
	display: block;
}

.job_tile .tag_list {
	padding: 0;
	text-align: left;
	margin: 0.5em;
}

.job_tile .tag_list > li {
	font-size: 12px;
	padding: 2px;
	margin: 2px;
	border-radius: 4px;
	color: white;
	display: inline-block;
}

.job_tile .tag_list > li.emp_type {
	border: 1px solid #1d439a;
	background-color: #1d439a;
	border: 1px solid var(--main-color);
	background-color: var(--main-color);
}
.job_tile .tag_list > li.area {
	border: 1px solid #ffbb80;
	background-color: #ffbb80;
	color: black;
}
.job_tile .tag_list > li.condition {
	border: 1px solid #d4e1ff;
	background-color: #d4e1ff;
	color: black;
}

.job_tile .heading {
	margin: auto 0.5rem;
	color: #1d439a;
	color: var(--main-color);
	font-weight: bold;
}

.job_tile .text_area {
	margin: 0 0.5em;
}

.job_tile_list .button {
	display: block;
	text-align: center;
	border: 1px solid #1d439a;
	border-color: var(--main-color);
	border-radius: 20px;
	color: #1d439a;
	color: var(--main-color);
	font-size: 18px;
	width: 50%;
	margin: 0.5em auto;
	padding: 8px;
	transition: all .2s;
	cursor: pointer;
}

.job_tile_list .button:hover {
	background-color: #1d439a;
	background-color: var(--main-color);
	color: white;
}

@supports (display: flex) {
	.job_tile {
		display: flex;
		flex-flow: column nowrap;
	}
	.job_tile .tag_list {
		display: flex;
		flex-flow: row wrap;
		align-items: start;
	}
}
/* ここまで新着求人 */

/* ニュース欄 */
.news {
	max-width: 50em;
	margin: 2em auto;
	width: 96%;
	background-color: white;
	border-radius: 20px;
	box-shadow: 2px 2px 10px #ccc;
}

.news .title {
	padding: 4px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	background-color: #ffaa00;
	border-radius: 20px 20px 0 0;
}

.news .title p {
	margin: 0;
}

.news .detail {
	height: 65%;
}

.news .detail .news_list {
	padding: 2%;
	margin: 0;
}

.news .detail .news_list > div {
	margin: 8px 0;
}

.news .detail .news_list dd {
	margin: 0;
}

@media only screen and (min-width: 1000px) {
	.news {
		display: flex;
		justify-content: space-between;
	}

	.news .title {
		height: auto;
		width: 14%;
		border-radius: 20px 0 0 20px;
		vertical-align: middle;
		padding: 0;
	}
	
	.news .title p {
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.news .detail {
		vertical-align: middle;
		width: 86%;
	}

	.news .detail .news_list {
		padding: 0 2%;
	}

	.news .detail .news_list dt {
		display: inline-block;
		width: 22%;
		vertical-align: top;
	}
	
	.news .detail .news_list dd {
		display: inline-block;
		width: 76%;
		vertical-align: top;
	}
}

/* フッター共通 */
footer {
	font-family: "Yu Gothic Medium", "YuGothicMedium", sans-serif;
	clear: both;
	margin: 0;
	/* margin: 2em 0 0 0; */
	background: rgb(239, 251, 251);
	text-align: center;
	background-color: black;
	color: #383838;
	text-align: left;
}

@media only screen and (min-width: 720px) {
	footer,
	.mw-content footer {
		display: block;
		width: 100%;
	}
}

footer > div {
	padding: 0;
}

footer > div:nth-child(2n) {
	background-color: white;
}

footer > div:nth-child(2n-1) {
	background-color: #f5f5f5;
}

footer > div > section {
	width: 96%;
	margin: 0 auto;
	padding: 1.5em 0;
}

@media only screen and (min-width: 600px) {
	footer > div > section {
		max-width: 600px;
	}
}

@media only screen and (min-width: 720px) {
	footer > div > section {
		max-width: 750px;
	}
}

footer a {
	text-decoration: none;
	color: #383838;
}

footer a:hover {
	text-decoration: underline;
}

footer ul {
	list-style: none;
	padding-left: 0;
}

/* フッターナビ */
.footer_nav .nav_list li {
	margin: 1em auto;
	text-align: center;
	font-weight: bold;
}

@media only screen and (min-width: 720px) {
	.footer_nav .nav_list {
		display: flex;
		justify-content: space-evenly;
		width: 80%;
		margin: 0 auto;
	}

	.footer_nav .nav_list li {
		width: 30%;
	}
}

/********************
 *
 * 新フッター
 *
 **********************/
.page_footer .copyright {
	text-align: center;
	background-color: transparent;
	margin: 0;
	padding: 0;
	padding-top: 16px;
}

.page_footer .bottom_area {
	background-color: black;
	color: white;
	padding: 32px 16px 16px;
}

.page_footer .bottom_area .content_container {
	max-width: 800px;
	margin: auto;
	box-sizing: border-box;
}

/* 運営企業 */
footer .about_us {
	color: white;
	position: relative;
	background: url(footer_back_image.jpg) 55% center/cover;
}

footer .about_us .content_container {
	box-sizing: border-box;
	width: 100%;
	max-width: 800px;
	padding: 8px;
	margin: auto;
}

footer .about_us h2 {
	margin: 0;
	text-align: center;
}

footer .about_us p {
	margin: 0.3em 0;
	font-size: 0.9rem;
}

footer .about_us a:hover {
	text-decoration: none;
}

footer .about_us .nr_link {
	display: block;
	margin: 30% auto 0;
	padding: 8px 16px;
	border: 0;
	width: 12em;
	border-radius: 20px;
	background-color: white;
	font-weight: bold;
	color: black;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.5s, color 0.5s;
}

footer .about_us .nr_link:hover {
	background-color: black;
	color: white;
	cursor: pointer;
}

@media screen and (min-width: 450px) {
	footer .about_us p {
		margin-top: 5%;
		font-size: 1rem;
	}
}

@media screen and (min-width: 550px) {
	footer .about_us {
		padding: 16px;
		background-position: center 80%;
	}
	footer .about_us p {
		margin-top: 15%;
		font-size: 1rem;
	}
	footer .about_us .nr_link {
		margin-top: 0;
	}
}

@media screen and (min-width: 720px) {
	footer .about_us .content_container {
		padding: 32px 16px;
	}
}

@media screen and (min-width: 1000px) {
	footer .about_us {
		background-position: center 62%;
	}
	footer .about_us p {
		margin-top: 20%;
	}
}

.footer_nav.search_recruit {
	margin-bottom: 32px;
}

.footer_nav .heading {
	font-weight: bold;
}

.footer_nav .menu {
	list-style: none;
	padding-left: 0;
	margin: 8px 0 8px -16px;
}

.footer_nav .menu li {
	display: inline-block;
	padding: 0 16px;
	margin: 8px 0;
	position: relative;
}

.footer_nav .menu li a {
	display: block;
	text-decoration: none;
	color: white;
}

.footer_nav .menu li a:hover {
	text-decoration: underline;
}

.footer_nav .menu li:not(:last-child)::after {
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background-color: white;
	position: absolute;
	right: 0;
	top: 0;
}

.media_banner_link {
	display: block;
	width: 180px;
	margin: 0 auto 32px;
}

.media_banner_link img {
	display: block;
	width: 100%;
}

@media only screen and (min-width: 500px) {
	.page_footer .bottom_area .content_container {
		text-align: center;
	}

	.footer_nav {
		display: inline-block;
		width: 30%;
		margin: 0 1.5%;
		vertical-align: top;
		text-align: left;
	}

	.footer_nav.search_recruit {
		margin-bottom: 0;
	}

	.footer_nav .menu {
		margin: 16px 0;
	}

	.footer_nav .menu li {
		display: block;
		padding: 0;
	}

	.footer_nav .menu li:not(:last-child)::after {
		content: none;
	}
}

/* 青いタグ */

.blue_tag_list {
	list-style: none;
	padding-left: 0;
}

.blue_tag_list li {
	display: inline-block;
	margin: 8px 0;
}

.blue_tag_list li a {
	display: block;
	text-decoration: none;
	color: #1D439A;
	border: solid 1px #1D439A;
	background: white;
	padding: 0 16px;
	border-radius: 8px;
	font-size: 14px;
	position: relative;
	padding-left: 26px;
}

.blue_tag_list li a::before {
	content: "";
	background-image: url("tag_touka.png");
	background-size: 100% 100%;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
}

.blue_tag_list li:not(:last-child) {
	margin-right: 8px;
}
