@charset "utf-8";
/* --------------------------------------------------------- */
/* モバイル表示メニュー */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* メニュー開閉基本構造 */
/* --------------------------------------------------------- */
/* メニューボタン */
#mobile .menu-btn { /* js連携 */
	position: fixed;
	top: 0;
	right: 0;
	/*z-index: 2;*/
	z-index: 200;
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FFFFFF;
	border-radius: 0 0 0 5px;
	border-left: 3px solid #0054BA;
	border-bottom: 3px solid #0054BA;
	cursor: pointer;
}
@media screen and (max-width:600px) { /* スクリーンのみ */
	#mobile .menu-btn {
		width: 60px;
		height: 60px;
	}
}
/* メニュー本体 */
#mobile .menu { /* js連携 */
	position: fixed;
	top: 0;
	right: 0;
	/*z-index: 1;*/
	z-index: 100;
	width: 100vw;
	height: 100vh;
	overflow-y: scroll;
}
/* 開閉前のメニュー本体 */
#mobile .menu {
	pointer-events: none;
	/*opacity: 0;*/
	display: none; /* 読み上げ重複対策：opacityの代わり */
	transition: opacity .3s linear;
}
/* 開閉後のメニュー本体 */
#mobile .menu.is-active {
	pointer-events: auto;
	/*opacity: 1;*/
	display: block; /* 読み上げ重複対策：opacityの代わり */
}
@media print {
	#mobile .menu-btn {
		display: none;
	}
	#mobile .menu {
		display: none;
	}
}
/* --------------------------------------------------------- */
/* ハンバーガーボタンイメージ切り替え */
/* --------------------------------------------------------- */
.MenuBtn { /* js連携 */
	position: relative;
	width: 60px;
	height: 60px;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
.MenuBtn .OpenIcon, .MenuBtn .CloseIcon {
	position: absolute;
	top: 10;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	transition: all .15s linear;
}
.MenuBtn .OpenIcon img, .MenuBtn .CloseIcon img {
	width: 32px;
	height: 32px;
}
.MenuBtn .OpenIcon {
	opacity: 1;
}
.MenuBtn .CloseIcon {
	opacity: 0;
}
.MenuBtn.isClosed .OpenIcon {
	opacity: 0;
}
.MenuBtn.isClosed .CloseIcon {
	opacity: 1;
}
/* --------------------------------------------------------- */
/* アコーディオン */
/* --------------------------------------------------------- */
.ac summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/*position: relative;*/
	cursor: pointer;
}
.ac summary::-webkit-details-marker {
	display: none;
}
.ac summary::after {
	content: '';
	width: 24px;
	height: 24px;
	background-image: url("/assets/img/common/icon_arrow_small.svg");
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: center center;
	transition: .3s;
	transform: rotate(90deg);
}
.ac[open] summary::after {
	transform: rotate(270deg);
}
.ac section {
	opacity: 0;
}
.ac[open] section {
	opacity: 1;
}
/* --------------------------------------------------------- */
/* いろいろ */
/* --------------------------------------------------------- */
#mobile .container {
	max-width: 800px;
	margin: auto;
	padding: 100px 3% 70px;
}
#mobile .header {
	height: 60px;
	width: 100%;
	padding: 0 2%;
	display: flex;
	align-items: center;
	background-color: #FFFFFF;
}
/* メニューを開いているときはヘッダー固定 */
#mobile .menu .header {
	position: fixed;
}
#mobile .logo {
	width: 260px;
}
@media print, screen and (max-width:600px) {
	#mobile .logo {
		width: 240px;
	}
}
.MenuBtn .menu-caption {
	font-size: 11px;
	font-weight: bold;
	line-height: 1;
	color: #0054BA;
}
#mobile .menu {
	background: #FCF5E2;
}
/* --------------------------------------------------------- */
/* ナビゲーション（メイン） */
/* --------------------------------------------------------- */
#mobile .navi_main {
	margin-bottom: 40px;
}
#mobile .navi_main a.regular {
	height: 60px;
	font-size: 1.125em;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #DEDEDE;
}
#mobile .navi_main a.regular::after {
	content: '';
	width: 24px;
	height: 24px;
	background-image: url("/assets/img/common/icon_arrow_circle.svg");
	background-repeat: no-repeat;
	background-size: 24px 24px;
	background-position: center center;
}
#mobile .navi_main .ac a {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	/*border-bottom: none;*/
	margin: 20px 0;
	font-size: 1em;
}
#mobile .navi_main .ac li:first-child a {
	margin: 0 0 20px 0;
}
#mobile .navi_main .ac a::before {
	content: '';
	display: inline-block;
	width: 40px;
	min-width: 40px;
	height: 30px;
	background-image: url("/assets/img/common/icon_arrow_fill.svg");
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: center center;
	margin-left: 10px;
}
#mobile .navi_main .ac {
	border-bottom: 1px solid #DEDEDE;
}
#mobile .navi_main .ac summary span {
	height: 60px;
	flex: 1;
	font-size: 1.125em;
	font-weight: bold;
	display: flex;
	align-items: center;
}
#mobile .navi_main summary.icon::before {
	content: '';
	display: inline-block;
	width: 60px;
	height: 60px;
	background-repeat: no-repeat;
	background-size: 33px 33px;
	background-position: center center;
	background-color: #FFFFFF;
	padding: 20px;
	border-radius: 30px;
	margin: 20px 10px 20px 0;
}
#mobile .navi_main summary.service::before {
	background-image: url("/assets/img/common/icon_service.svg");
}
#mobile .navi_main summary.support::before {
	background-image: url("/assets/img/common/icon_support.svg");
}
#mobile .navi_main summary.volunteer::before {
	background-image: url("/assets/img/common/icon_volunteer.svg");
}
/* --------------------------------------------------------- */
/* ナビゲーション（サイトマップ、採用情報、検索） */
/* --------------------------------------------------------- */
#mobile .tools {
	display: flex;
	flex-wrap: wrap;
	max-width: 500px;
	margin: auto;
}
#mobile .tools li:nth-of-type(1) {
	width: 48%;
	margin-right: 4%;
}
#mobile .tools li:nth-of-type(2) {
	width: 48%;
}
#mobile .tools li:nth-of-type(3) {
	width: 100%;
}
#mobile .btn_sitemap {
	display: block;
	background-color: #FFFFFF;
	border: 3px solid #0054BA;
	color: #0054BA;
	border-radius: 5px;
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px auto;
}
#mobile .btn_recruit {
	display: block;
	font-weight: bold;
	background: rgb(170, 208, 255);
	background: linear-gradient(90deg, rgba(170, 208, 255, 1) 0%, rgba(181, 255, 170, 1) 100%);
	color: #000000;
	border-radius: 5px;
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px auto;
}
#mobile .f_search {
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	border: 1px solid #DEDEDE;
	border-radius: 5px;
	margin: auto;
}
#mobile .f_search label {
	width: 100%;
}
#mobile .f_search input {
	width: 100%;
	height: 38px;
	padding: 0 15px;
	background-color: #FFFFFF;
}
#mobile .f_search input::placeholder {
	color: #555555;
}
#mobile .f_search button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 38px;
	border: none;
	background-color: #FFFFFF;
	cursor: pointer;
}
#mobile .f_search button::after {
	width: 20px;
	height: 20px;
	background-image: url('/assets/img/common/icon_search.svg');
	background-repeat: no-repeat;
	content: '';
}
/* --------------------------------------------------------- */
/* ナビゲーション（サブ） */
/* --------------------------------------------------------- */
#mobile .navi_sub {
	margin-bottom: 40px;
}
#mobile .navi_sub a {
	font-size: 1.125em;
	display: flex;
	align-items: center;
	height: 50px;
}
/* --------------------------------------------------------- */
/* ナビゲーション（SNS） */
/* --------------------------------------------------------- */
#mobile ul.navi_sns {
	display: flex;
	justify-content: center;
	align-items: center;
}
#mobile .navi_sns img {
	display: block;
	height: 60px;
	margin: 0 20px;
}
/* --------------------------------------------------------- */
/* 検索（MovableType.net用） */
/* --------------------------------------------------------- */
.search_mb .mt-site-search-form {
	overflow: hidden;
	display: flex;
}
.search_mb .mt-site-search-form input {
	width: 100%;
	height: 50px;
	padding: 0 15px;
	background-color: #FFFFFF;
	border: 3px solid #0054BA;
	border-radius: 5px 0 0 5px;
	flex: 1;
}
.search_mb .mt-site-search-form button {
	width: 60px;
	height: 50px;
	background-color: #0054BA;
	color: #FFFFFF;
	border-radius: 0 5px 5px 0;
	text-align: center;
}