@charset"utf-8";
/*CSSDocument*/
/*
ThemeName: Arkhe-child
Template: arkhe
*/


/*====================================================================================
■基本設定
====================================================================================*/

:root {
	font-size: 62.5%;
	--main-color: #000979;
	--link-color: #009399;
	--hover-color: #3741BC;
	--txt-hover-color: #4CB3B7;
	--bg-color: #FAFAFA;
	--font-serif: YakuHanJP_Narrow, "Noto Serif JP", serif;
	--transition: .25s;
}

* {
	min-height: 0vw;
	box-sizing: border-box;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	scroll-padding-top: 150px;
	scroll-behavior: smooth;
}

@media (max-width: 999px) {
	html {
		scroll-padding-top: 92px;
	}
}

@media (max-width: 767px) {
	html {
		scroll-padding-top: 66px;
	}
}

body {
	font-family: YakuHanJP_Narrow, "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	line-height: 1.75;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

@media (max-width: 767px) {
	body {
		font-size: 1.4rem;
	}
}


/*====================================================================================
■全体共通
====================================================================================*/

img {
	max-width: 100%;
	height: auto;
}

table {
	border-collapse: collapse;
}

a {
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--hover-color);
}

a img {
	transition: var(--transition);
}

a img:hover {
	opacity: .8;
}

table {
	border-top: 1px solid var(--main-color) !important;
	border-right: 1px solid var(--main-color) !important;
}

th {
	text-align: center;
	background: #e9eff5 !important;
}

th,
td {
	border-bottom: 1px solid var(--main-color) !important;
	border-left: 1px solid var(--main-color) !important;
	vertical-align: middle !important;
	color: #000;
}

dl {
	display: flex;
	flex-wrap: wrap;
}

dt {
	width: 20%;
}

dd {
	width: 80%;
}

::marker {
	color: var(--main-color);
}

/* PC非表示 */
@media (min-width: 768px) {
	.hide-pc {
		display: none !important;
	}
}

/* スマートフォン非表示 */
@media (max-width: 767px) {
	.hide-sp {
		display: none !important;
	}
}


/*====================================================================================
■ヘッダー
====================================================================================*/

/* ヘッダー全体 */
#header>.l-container {
	max-width: 100%;
	padding-top: 48px;
	padding-bottom: 8px;
}

@media (max-width: 1349px) {
	#header>.l-container {
		padding-top: 8px;
		padding-right: 6vw;
	}
}

@media (max-width: 999px) {
	#header>.l-container {
		padding-right: 2vw;
	}
}

.facility-akaedakai #header>.l-container {
	padding-top: 8px;
}

@media (max-width: 1349px) {
	[data-btns=rr-rl] .l-header__body {
		grid-template-columns: auto 25% 75% min-content min-content !important;
	}
}

@media (max-width: 999px) {
	[data-btns=rr-rl] .l-header__body {
		grid-template-columns: 0 auto 0 0 40px !important;
	}
}

.l-header {
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .15);
}

.l-header__center {
	width: fit-content;
	padding: 8px 0 16px 0;
}

@media (max-width: 999px) {
	.l-header__center {
		padding: 0;
	}
}

.l-header__right {
	margin: 0 0 16px 0;
}

/* キャッチコピー */
.head-copy {
	position: absolute;
	top: 1em;
	left: var(--ark-padding--container);
	;
	margin: 0 0 16px 0;
	color: #989898;
	font-size: clamp(1.2rem, 1.166vw, 1.4rem);
}

@media (max-width: 1349px) {
	.head-copy {
		top: 50%;
		left: calc(48px + 25%);
		transform: translateY(-50%);
	}
}

@media (max-width: 999px) {
	.head-copy {
		top: .75em;
		left: 2vw;
		transform: translateY(0);
	}
}

@media (max-width: 767px) {
	.head-copy {
		display: none;
	}
}

/* ロゴ */
.l-header__logo {
	justify-content: left;
	width: fit-content;
}

@media (max-width: 999px) {
	.l-header__logo {
		padding: .65em 0 0 0;
	}
}

@media (max-width: 999px) {
	.facility-akaedakai .l-header__logo {
		padding: 0;
	}
}

@media (max-width: 767px) {
	.l-header__logo {
		padding: 0;
	}
}

/* お問い合わせボタン */
.head-contact {
	position: fixed;
	top: 0;
	right: 0;
	display: flex;
	justify-content: flex-end;
	width: 100%;
	color: #fff;
	font-family: var(--font-serif);
	z-index: 99;
}

@media (max-width: 1349px) {
	.head-contact {
		display: none;
	}
}

.facility-akaedakai .head-contact {
	width: fit-content;
	height: 100px;
}

.head-tel-link,
.head-mail-link {
	display: flex;
	position: relative;
	align-items: center;
	gap: 12px;
	padding: .5em 2em;
	color: #fff;
	font-weight: bold;
	overflow: hidden;
}

.head-tel-link {
	background: var(--link-color);
}

.facility-akaedakai .head-tel-link {
	height: 100%;
}

.head-tel-link:hover {
	color: #fff;
	background: var(--txt-hover-color);
}

.head-tel-link::before {
	width: 16px;
	height: 21px;
	content: "";
	background: url("img/common/tel.svg") no-repeat;
}

.head-mail-link {
	background: var(--main-color);
	overflow: hidden;
}

.head-mail-link:hover {
	color: #fff;
	background: var(--hover-color);
}

.head-mail-link::before {
	width: 21px;
	height: 17px;
	content: "";
	background: url("img/common/mail.svg") no-repeat;
}

.head-mail-link::after,
.head-tel-link::after {
	position: absolute;
	content: '';
	display: inline-block;
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #fff;
	animation: shiny-btn1 6s ease-in-out infinite;
}

/* グローバルナビゲーション */
@media (max-width: 999px) {
	.header-nav {
		display: none;
	}
}

[data-drawer=opened] .header-nav {
	display: none;
}

.l-header__body .c-gnavWrap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 24px;
	width: fit-content;
	margin: 0 auto;
}

@media (max-width: 1349px) {
	.l-header__body .c-gnavWrap {
		display: none;
	}
}

.c-gnav__li>.c-gnav__a {
	justify-content: flex-end;
	padding: 16px 1.2vw;
}

.facility-akaedakai .c-gnav__li>.c-gnav__a {
	justify-content: center;
}

.c-gnav__a {
	font-size: clamp(1.4rem, 1.333vw, 1.6rem);
	font-weight: 500;
}

.c-gnav .__mainText,
.c-gnav .__subText {
	line-height: 1.5;
}

/* サブナビゲーション */
.c-gnav .sub-menu .c-gnav__a {
	padding: 1em;
	font-size: clamp(1.4rem, 1.333vw, 1.6rem);
}

/* ハンバーガーメニュー */
@media (max-width: 1349px) {
	[data-has-drawer=sp] .l-header__drawerBtn {
		display: inherit;
	}
}

/* ドロワーメニュー */
.p-drawer {
	background: var(--main-color);
	font-size: 1.6rem;
}

.c-submenuToggleBtn {
	width: 2rem;
	height: 2rem;
}

.c-submenuToggleBtn:after {
	box-shadow: inset 0 0 0 1px #fff;
	opacity: 0.7;
}

.c-drawerNav {
	border-top: none;
	border-bottom: none;
}

.c-drawerNav__a {
	display: flex;
	align-items: center;
	gap: .5em;
	border-bottom: 0.5px solid #fff;
}

.c-drawerNav__a:hover {
	color: #fff;
}

.c-drawerNav .menu-item {
	border-bottom: none;
}

.c-drawerNav .menu-item::marker {
	color: #fff;
}

.c-drawerNav .sub-menu {
	border-top: none;
	list-style: disc;
}

.c-drawerNav .sub-menu.is-opened {
	padding: .75em 0 .75em 1.75em;
}

.c-drawerNav .sub-menu .menu-item {
	border-bottom: none;
}

.c-drawerNav .is-opened.sub-menu .menu-item:last-child {
	margin: 0 0 var(--ark-nav-padding--Y, .75rem) 0 !important;
}

.c-drawerNav .sub-menu .c-drawerNav__a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: .75em;
	padding: .75rem 0;
	border-bottom: none;
}

.c-drawerNav .sub-menu .c-drawerNav__a::before {
	display: none;
}

.c-drawerNav .sub-menu .is-pdf a::after {
	margin-left: 0;
}

.p-drawer__search {
	margin: 2em 0;
	border: 1px solid #fff;
}

.p-drawer__search .c-searchForm__s {
	width: 100%;
}

.p-drawer__body input {
	border-radius: 0;
}

.drawer-contact {
	display: flex;
	justify-content: center;
	gap: 16px;
	width: 100%;
	margin: 24px 0;
	color: #fff;
	font-family: var(--font-serif);
	z-index: 99;
}

@media (max-width: 767px) {
	.drawer-contact {
		flex-wrap: wrap;
	}
}

.drawer-tel,
.drawer-mail {
	width: 80%;
	margin: 0 auto;
}

.drawer-tel-link,
.drawer-mail-link {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	padding: .5em calc(2em + 21px) .5em 2em;
	border-radius: 5px;
	background: #fff;
	color: var(--link-color);
	font-weight: bold;
}

.drawer-tel-link::before {
	width: 16px;
	height: 21px;
	content: "";
	mask-image: url(img/common/tel.svg);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	background: var(--link-color);
}

.drawer-mail-link::before {
	width: 21px;
	height: 17px;
	content: "";
	mask-image: url(img/common/mail.svg);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	background: var(--link-color);
}

/* ボタンが光るアニメーション */
@-webkit-keyframes shiny-btn1 {
	0% {
		-webkit-transform: scale(0) rotate(45deg);
		opacity: 0;
	}

	80% {
		-webkit-transform: scale(0) rotate(45deg);
		opacity: 0.5;
	}

	81% {
		-webkit-transform: scale(4) rotate(45deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(50) rotate(45deg);
		opacity: 0;
	}
}

/*====================================================================================
■フッター
====================================================================================*/

/* フッター全体 */
.l-footer {
	padding: 48px 0 16px 0;
	border-top: 3px solid var(--main-color);
}

@media (max-width: 999px) {
	.l-footer {
		padding: 5% 0 0 0;
	}
}

/* フッター上部 */
.foot-profile {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 1em 2em;
}

/* フッターロゴ */
.foot-logo {
	width: min(280px, 60%);
}

.foot-logo-link {
	display: flex;
	align-items: center;
}

/* 電話番号 */
.foot-tel-link {
	color: var(--ark-color--link) !important;
}

.foot-tel-link:hover {
	color: var(--hover-color) !important;
}

/* サイトマップ */
.l-footer__foot {
	padding-top: 40px;
}

@media (max-width: 999px) {
	.l-footer__foot {
		padding-top: 7%;
	}
}

.l-footer__foot .l-container .u-flex--c {
	justify-content: flex-start;
	align-items: flex-start;
	gap: 56px;
}

@media (max-width: 999px) {
	.l-footer__foot .l-container .u-flex--c {
		display: grid;
		flex-wrap: wrap;
		gap: 2em 1em;
		grid-template-columns: 1fr 1fr;
		margin: 0 0 10% 0;
	}
}

.l-footer__nav a {
	display: flex;
	align-items: center;
	gap: .5em;
	padding: 5px 0 0;
	line-height: 1.4;
}

.l-footer__nav>.menu-item {
	color: var(--main-color);
	font-weight: 500;
}

@media (max-width: 999px) {
	.l-footer__nav>.menu-item {
		width: 100%;
	}
}

.l-footer__nav>.menu-item a {
	font-size: clamp(1.6rem, 1.5vw, 1.8rem);
}

.l-footer__nav .sub-menu {
	display: inherit;
	margin: .75em 0 0 1.25em;
	list-style: none;
	color: #000;
	font-weight: normal;
}

.l-footer__nav .sub-menu li {
	position: relative;
}

.l-footer__nav .sub-menu li::before {
	content: '';
	width: 3px;
	height: 3px;
	background: var(--main-color);
	left: -15px;
	position: absolute;
	top: 1em;
	margin: auto 0;
}

.l-footer__nav .sub-menu a {
	font-size: 1.4rem;
}

/* コピーライト */
.c-copyright {
	padding: 48px 0 0 0;
	text-align: right;
	font-size: clamp(1.2rem, 1.166vw, 1.4rem);
}

@media (max-width: 999px) {
	.c-copyright {
		padding: 10% 0 0 0;
		text-align: center;
	}
}

.footer-adress {
	display: flex;
	gap: 20px;
}

@media (max-width: 767px) {
	.footer-adress {
		flex-direction: column;
	}
}

.footer-adress .ti {
	font-weight: bold;
}

.footer-adress .item {
	border-right: 1px solid #707070;
	padding-right: 30px;
}

@media (max-width: 767px) {
	.footer-adress .item {
		border-right: none;
	}
}

.footer-adress .item:last-child {
	border-right: none;
}

.footer-adress a {
	color: #009399;
}

/*====================================================================================
■サイドバー
====================================================================================*/

/* サイドバー全体 */
.l-sidebar {
	font-size: 1.6rem;
}

@media (max-width: 999px) {
	.l-sidebar {
		display: none;
	}
}

.sidebar-pages__list {
	list-style: none;
	border: 1px solid var(--main-color);
	background: #FAFAFA;
	border-radius: 5px;
	padding: 0;
	font-family: var(--font-serif);
}

.sidebar-pages__parent {
	position: relative;
	background: var(--main-color);
	transition: var(--transition);
}

.sidebar-pages__parent:hover {
	opacity: 0.9;
}

.sidebar-pages__parent::after {
	content: '';
	width: 10px;
	height: 10px;
	border: 0;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	right: 15px;
	bottom: 0;
	margin: auto;
}

.sidebar-pages__parent a,
.sidebar-pages__parent a:hover {
	display: block;
	padding: .75em 1em;
	color: #fff;
	font-weight: bold;
}

.sidebar-pages__children {
	margin: 1.25em 1em;
	padding: 0 0 0 1.25em;
	list-style: none;
}

.sidebar-pages__children li {
	position: relative;
	margin: 15px 0;
	line-height: 1.4;
}

.sidebar-pages__children li::before {
	content: '';
	position: absolute;
	top: calc(0.5lh - 4px);
	left: -20px;
	width: 8px;
	height: 8px;
	border: 0;
	border-top: solid 2px var(--main-color);
	border-right: solid 2px var(--main-color);
	transform: rotate(45deg);
}

.sidebar-pages__children li a {
	display: block;
	color: #000;
}

.sidebar-pages__children .is-current a,
.sidebar-pages__children li a:hover {
	color: var(--main-color);
}


/*====================================================================================
■コンテンツ共通
====================================================================================*/

/* テキスト自動改行 */
.txt-block {
	display: inline-block;
}

/* メールアドレス変換 */
.mto i {
	font-style: normal;
}

.mto i:after {
	content: '@';
}

/* パンくず */
.p-breadcrumb {
	padding: 0 0 0 var(--ark-padding--container);
	font-family: var(--font-serif);
}

@media (max-width: 767px) {
	.p-breadcrumb__list {
		margin: 0 0 1.5em 0;
		padding: 3% 0;
	}
}

.p-breadcrumb__list {
	padding: 1.5em 0 1.5em 1.5em;
}

@media (max-width: 1295px) {
	.p-breadcrumb__list {
		padding: 1.5em 0;
	}
}

@media (max-width: 767px) {
	.p-breadcrumb__list {
		padding: 1em 0;
	}
}

@media (max-width: 767px) {
	.p-breadcrumb__list {
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
		overflow-scrolling: touch;
	}

	.p-breadcrumb__list::-webkit-scrollbar {
		height: 2px;
	}

	.p-breadcrumb__list::-webkit-scrollbar-thumb {
		border-radius: 2px;
		background: #ccc;
	}
}

.p-breadcrumb__text {
	font-size: clamp(1.2rem, 1.166vw, 1.4rem);
}

.p-breadcrumb__text .arkhe-svg-home {
	display: none;
}

/* ページタイトル */
.p-topArea {
	height: 156px;
	min-height: auto;
}

@media (max-width: 767px) {
	.p-topArea {
		height: 100px;
	}
}

.c-pageTitle__main {
	margin: 0;
	font-size: 1.8rem;
	font-weight: bold;
}

.c-postContent h2 {
	margin: 2em 0 1em 0;
	padding-bottom: .5em;
	border-bottom: 1px solid var(--ark-color--main);
	font-family: var(--font-serif);
	font-size: clamp(2rem, 1.8vw, 2.6rem);
	font-weight: 500;
}

.c-postContent h3 {
	color: var(--ark-color--main);
	border-left: 5px solid var(--ark-color--main);
	padding-left: 1em;
	margin: 1.5em 0 .5em 0;
	font-size: clamp(1.8rem, 1.9vw, 2rem);
}

.c-postContent h4 {
	color: var(--ark-color--link);
	margin: 2em 0 1em 0;
	font-size: clamp(1.8rem, 1.9vw, 2rem);
}

/* コンテンツ全体 */
.l-content__body {
	margin: 0 auto;
}

@media (max-width: 767px) {
	.l-content__body {
		padding-bottom: 12%;
	}
}

.c-postContent {
	line-height: 2;
}

/* コンテンツ区切り */
.contents {
	margin: 0 0 88px 0;
}

@media (max-width: 767px) {
	.contents {
		margin: 0 0 48px 0;
	}
}

.c-postContent .contents:last-child {
	margin: 0;
}

/* リンクボタン */
.btn-more {
	width: min(320px, 100%);
	margin: 0 auto;
}

.btn-more-link {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
	margin: 26px 0 0 0;
	padding: 0.6em 1em 0.7em 1em;
	border-radius: 100vh;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
	background: var(--main-color);
	color: #fff;
	font-size: clamp(1.5rem, 1.5vw, 1.8rem);
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	transition: var(--transition);
}

@media (max-width: 999px) {
	.btn-more-link {
		width: 90%;
		margin: 7% auto 0 auto;
		padding: .75em;
	}
}

.btn-more-link:hover {
	background: var(--hover-color);
	color: #fff;
}

.btn-more-link::after {
	position: absolute;
	top: 50%;
	right: 16px;
	font-size: 2rem;
	font-family: FontAwesome;
	content: '\f105';
	transform: translateY(-50%);
}

/*====================================================================================
■トップページ
====================================================================================*/

/* 共通レイアウト */
.top-full {
	position: relative;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}

.top-inner {
	position: relative;
	width: 100%;
	max-width: calc(var(--ark-width--container) + var(--ark-padding--container) * 2);
	padding-left: var(--ark-padding--container);
	padding-right: var(--ark-padding--container);
	margin: 0 auto;
}

/* 見出し */
.ti-top {
	margin: 0 0 40px 0;
	border-bottom: none !important;
	text-align: center;
	font-size: clamp(2.2rem, 2.666vw, 3.2rem) !important;
	font-family: var(--font-serif);
	font-weight: bold !important;
}

@media (max-width: 999px) {
	.ti-top {
		margin: 0 0 5% 0;
	}
}

.ti-top-en {
	display: block;
	padding: .5em 0 0 0;
	color: var(--main-color);
	font-size: clamp(1.6rem, 1.666vw, 2rem);
	font-family: "Lato", sans-serif;
	font-weight: 300;
}

@media (max-width: 999px) {
	.ti-top-en {
		padding: .25em 0 0 0;
	}
}

/* メインビジュアル */
.top-main {
	width: 100vw;
	margin: 0 calc(50% - 50vw) 96px calc(50% - 50vw);
}

@media (max-width: 1024px) {
	.top-main {
		margin: 0 calc(50% - 50vw);
	}
}

.n2-ss-slider .n2-ss-slider-wrapper-inside {
	width: 100vw;
	height: 70vh;
}

@media (max-width: 1024px) {
	.n2-ss-slider .n2-ss-slider-wrapper-inside {
		height: 30vh;
	}
}

/* メインコンテンツ */
.top-intro {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 0 0 48px 0;
}

@media (max-width: 999px) {
	.top-intro {
		padding: 0;
	}
}

.top-intro-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	padding: 0;
	list-style: none;
}

.top-intro-item {
	position: relative;
	width: 32%;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .15);
	transition: transform 0.3s ease;
	display: block;
}

@media (max-width: 999px) {
	.top-intro-item {
		width: 100%;
		height: 110px;
	}
}

.top-intro-item::after {
	position: absolute;
	content: '';
	background: url(/wp-content/themes/arkhe-child/img/arrow.png);
	width: 40px;
	height: 40px;
	background-size: cover;
	bottom: 0;
	right: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media (max-width: 999px) {
	.top-intro-item::after {
		width: 25px;
		height: 25px;
		right: 20px;
		left: auto;
		transform: translate(-50%, -50%);
		top: 50%;
		transform: translateY(-50%);
	}
}

.top-intro-item:hover {
	transform: translateY(-5px);
}

.top-intro-link {
	display: block;
	color: #000;
}

@media (max-width: 999px) {
	.top-intro-link {
		display: flex;
	}
}

.top-intro-tn {
	width: 100%;
	height: 232px;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

@media (max-width: 999px) {
	.top-intro-tn {
		width: 30%;
		height: 110px;
		object-position: 66% 100%;
		border-radius: 10px 0 0 10px;
	}
}

.top-intro-link:hover .top-intro-tn {
	opacity: .8;
}

.top-intro-icon {
	position: absolute;
	top: -50px;
	right: 0;
	left: 0;
	width: 96px;
	aspect-ratio: 1 / 1;
	margin: 0 auto;
}

@media (max-width: 999px) {
	.top-intro-icon {
		top: 0;
		/*		display: none;*/
		width: 3em;
		bottom: 0;
		margin: auto 0 auto 10px;
	}
}

.top-intro-icon:hover {
	opacity: 1;
}

.top-intro-cont {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 40px 32px 80px 32px;
}

@media (max-width: 999px) {
	.top-intro-cont {
		width: 70%;
		padding: 3% 4%;
	}
}

.top-intro-ti {
	width: 100%;
	text-align: center;
	font-size: clamp(1.8rem, 2vw, 2.2rem);
	font-weight: 500;
	margin-bottom: 5px;
	line-height: 1.4;
}

@media (max-width: 999px) {
	.top-intro-ti {
		display: flex;
		justify-content: center;
		flex-direction: column;
		align-items: flex-start;
		margin: .25em 0 .5em 0;
		padding: 0 2em 0 2.25em;
		text-align: left;
		line-height: 1.5;
	}
}

.top-intro-ti span {
	font-size: 0.85em;
}

.top-intro-txt {
	width: 100%;
	text-align: center;
	line-height: 1.6;
}

@media (max-width: 999px) {
	.top-intro-txt {
		text-align: left;
	}
}

.top-intro-arrow {
	width: 39px;
	aspect-ratio: 1 / 1;
	margin: 16px 0 0 0;
}

@media (max-width: 999px) {
	.top-intro-arrow {
		width: 12%;
		margin: 12px 0 0 0;
	}
}

/* 私たちについて */
.top-about-main {
	position: relative;
	display: flex;
	gap: 20px;
	flex-wrap: nowrap;
	width: 100vw;
	margin: 0 calc(50% - 50vw) 96px calc(50% - 50vw);
	background: #FAFAFA;
}

@media (max-width: 1511px) {
	.top-about-main {
		padding-right: var(--ark-padding--container);
	}
}

@media (max-width: 1024px) {
	.top-about-main {
		display: flex;
		flex-wrap: wrap;
		margin: 0 calc(50% - 50vw);
		padding: 0 0 5% 0;
	}
}

.top-about-wrap {
	display: flex;
	/*    justify-content: flex-end;*/
	order: 2;
	padding: 40px;
}

@media (max-width: 1511px) {
	.top-about-wrap {
		/*		padding: 80px 0 80px var(--ark-padding--container);*/
	}
}

@media (max-width: 1024px) {
	.top-about-wrap {
		max-width: 100%;
		padding: 1em var(--ark-padding--container);
	}
}

.top-about-inner {
	display: flex;
	align-items: center;
	max-width: 840px;
}

.top-about-cont {
	width: 100%;
}

.top-about-ti {
	margin: 0 0 1.5em 0 !important;
	padding-left: 0 !important;
	border-left: none !important;
	color: #000 !important;
	font-size: clamp(1.7rem, 2.166vw, 2.6rem) !important;
	font-family: var(--font-serif);
	font-weight: 500;
}

@media (max-width: 1024px) {
	.top-about-ti {
		margin: 1.25em 0 1em 0 !important;
	}
}

.top-about-img {
	/*	position: absolute;*/
	top: 0;
	left: 0;
	object-fit: cover;
	width: 40%;
	/*    height: 100%;*/
	object-fit: cover;
}

@media (max-width: 1511px) {
	.top-about-img {
		width: 40%;
	}
}

@media (max-width: 1024px) {
	.top-about-img {
		width: 100%;
		height: 20vh;
		order: 1;
	}
}

/* グループ構成図 */
.top-group {
	padding: 0 0 48px 0;
}

@media (max-width: 999px) {
	.top-group {
		padding: 0;
	}
}

.top-group-contents {
	max-width: 890px;
	margin: 0 auto;
}

.top-group-btn {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	max-width: 960px;
	margin: 0 auto;
}

@media (max-width: 767px) {
	.top-group-btn {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

.top-group-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
	margin: 26px 0 0 0;
	padding: 0.6em 1em 0.7em 1em;
	border-radius: 100vh;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
	color: #fff;
	font-size: clamp(1.5rem, 1.5vw, 1.8rem);
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	transition: var(--transition);
}

@media (max-width: 767px) {
	.top-group-btn a {
		width: 95%;
		margin: 10px auto;
	}
}

.btn-kenaikai-site {
	background: #BBAF0D;
}

.btn-akaedakai-site {
	background: #790000;
}

.top-group-btn a::after {
	position: absolute;
	top: 50%;
	right: 16px;
	font-size: 2rem;
	font-family: FontAwesome;
	content: '\f105';
	transform: translateY(-50%);
}

.top-group-btn a:hover {
	opacity: 0.8;
}

/* 各種ご案内 */
.top-info-list {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	padding: 0;
	list-style: none;
}

.top-info-tn {
	width: 100%;
	margin: 0 0 8px 0;
	border-radius: 5px;
	height: 230px;
	object-fit: cover;
}

@media (max-width: 767px) {
	.top-info-tn {
		height: 200px;
	}
}

.top-info-ti {
	display: flex;
	align-items: center;
	min-height: 40px;
	padding-left: 16px !important;
	margin: 0 !important;
	border-left: 4px solid var(--main-color) !important;
	color: #000 !important;
	font-size: clamp(1.8rem, 1.666vw, 2rem);
	font-family: var(--font-serif);
	font-weight: 500;
}

.top-info-link:hover .top-info-ti {
	color: var(--main-color) !important;
}

.top-info-recruit {
	padding: 56px 0 0 0;
}

@media (max-width: 767px) {
	.top-info-recruit {
		padding: 10% 0 0 0;
	}
}

/*各種ご案内*/
.top-pr-list .child-pages {
	grid-template-columns: 1fr 1fr 1fr;
}

.top-pr-list .child-pages__title {
	display: flex;
	align-items: center;
	min-height: 40px;
	padding-left: 16px !important;
	border-left: 4px solid var(--main-color) !important;
	color: #000 !important;
	font-size: clamp(1.8rem, 1.666vw, 2rem);
	font-family: var(--font-serif);
	font-weight: 500;
	margin-top: 10px;
}

.top-pr-list .child-pages__title::after {
	background: none;
}


/*====================================================================================
■コンテンツページ共通
====================================================================================*/

.l-content__body {
	padding-bottom: 100px;
}

.l-main {
	order: 2;
}

.c-pageTitle__main {
	text-align: left;
	color: #000;
	font-family: var(--font-serif);
	font-weight: 500 !important;
	font-size: clamp(2rem, 2.8vw, 3.2rem) !important;
	text-shadow: none;
}

.txt-right {
	text-align: right;
}

.txt-center {
	text-align: center;
}

.flex-contents {
	display: flex;
	align-items: flex-start;
	gap: 40px;
}

@media (max-width: 767px) {
	.flex-contents {
		flex-direction: column;
		gap: 20px;
		margin: 16px 0 20px 0 !important;
	}
}

.flex-contents img {
	width: 400px;
}

@media (max-width: 767px) {
	.flex-contents img {
		width: 100%;
		order: 1;
	}

	.flex-contents p,
	.flex-contents div {
		order: 2;
	}
}

.flex-contents .txt-contents h4:first-child {
	margin-top: 0;
}

@media (max-width: 767px) {
	.flex-contents .txt-contents .btn-more-link {
		margin: 5% auto;
	}
}

.flex-contents .btn-more-link {
	font-size: clamp(1.5rem, 1.5vw, 1.6rem);
}

.grid-contents {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

@media (max-width: 767px) {
	.grid-contents {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

.grid-contents .item .txt-box {
	margin: .75em 0 0 0;
}

.grid-contents .item .txt-box h3:first-child {
	margin-top: 0;
}

.txt-red {
	color: red;
}

@media (max-width: 767px) {
	.scroll {
		overflow-x: scroll;
	}

	.scroll table {
		margin: var(--ark-mt) 0 15px 0;
		white-space: nowrap;
	}

	.scroll table td {
		padding: 5px;
	}

	.scroll-txt {
		margin: 0 0 1em 0;
	}
}

/*====================================================================================
■カテゴリー（親）ページ
====================================================================================*/

.child-pages {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

@media (max-width: 767px) {
	.child-pages {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.child-pages__title {
	position: relative;
	padding: 0 2em 0 0;
	color: #000;
	font-family: var(--font-serif);
	font-size: clamp(1.8rem, 1.9vw, 2rem);
	transition: var(--transition);
}

.child-pages__title::after {
	position: absolute;
	right: 16px;
	width: 10px;
	height: 19px;
	background: url(img/arrow-nav.png) no-repeat;
	background-size: contain;
	content: '';
	transition: var(--transition);
	transform: translateY(0) translateX(0);
	top: 50%;
	transform: translateY(-50%);
}

@media (max-width: 767px) {
	.child-pages__title::after {
		right: 0;
	}
}

.child-pages__item a:hover .child-pages__title::after {
	transform: translateY(-50%) translateX(8px);
}

.child-pages__item a:hover .child-pages__title {
	color: var(--hover-color);
}

.child-pages__thumb img {
	object-fit: cover;
	width: 100%;
	height: 260px;
	border-radius: 5px;
}

@media (max-width: 767px) {
	.child-pages__thumb img {
		height: 210px;
	}
}


/*====================================================================================
■コンテンツ（子）ページ
====================================================================================*/

/* 概要・沿革 */
.history-tl-list {
	padding: 0;
	list-style: none;
}

.history-tl-item {
	display: grid;
	grid-template-columns: 6em auto;
	margin: 0;
}

.history-tl-date {
	color: var(--main-color);
	font-family: var(--font-serif);
	font-size: var(--fz-20);
	font-weight: 600;
	letter-spacing: .1em;
	white-space: nowrap;
}

.history-tl-content {
	position: relative;
	padding: 0 0 1.5em 2em;
}

.history-tl-content::before {
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 4px;
	height: 100%;
	background-image: radial-gradient(circle, var(--main-color) 1px, transparent 1px);
	background-size: 4px 4px;
	background-repeat: repeat-y;
	background-position: center top;
}

.history-tl-content::after {
	content: '';
	position: absolute;
	top: 12px;
	left: -2px;
	width: 8px;
	height: 8px;
	background: var(--main-color);
	border-radius: 50%;
}

/* 入札のご案内 */
.publicity-list h3 {
	margin: 4em 0 1em 0;
}

.publicity-list h3:first-child {
	margin: 2em 0 1em 0;
}

.publicity-list h4 {
	margin: 1.5em 0 1em 0;
}

.publicity-list th {
	white-space: nowrap;
}

.publicity-list th br {
	display: none;
}

@media (max-width: 767px) {
	.publicity-list th br {
		display: block;
	}
}

.publicity-list .date {
	width: 15%;
}

.publicity-list .pdf {
	width: 10%;
	font-size: clamp(2rem, 2vw, 2.4rem);
	text-align: center;
}

.publicity-list .pdf a {
	color: #900;
}

.publicity-list .pdf a:hover {
	opacity: .8;
}

/* 教育研修センター */
.training-num-list {
	list-style-type: decimal;
}

.note-list {
	padding: 0;
	list-style: none;
}

.note-list li {
	display: flex;
	gap: .5em;
}

.note-list li::before {
	content: "※";
}

.note-list .attention {
	color: #f00;
	font-weight: bold;
}

.training-about {
	display: flex;
	gap: .25em 0;
}

.training-about dt {
	width: 10%;
	font-weight: bold;
	white-space: nowrap;
}

.training-about dd {
	width: 90%;
}

/* 看護師教育プログラム */
.nurse-contents h2 {
	border-bottom: 1px solid #9A0000;
}

.nurse-contents p {
	margin: 0 0 1.5em 0;
	line-height: 2;
}

.nurse-header img {
	width: 100%;
	height: auto;
}

.nurse-link {
	display: flex;
	flex-wrap: wrap;
	gap: 0 2em;
	margin: 15px 0 40px 0;
	padding: 10px 15px;
	background: #FFF0F0;
}

@media screen and (max-width: 767px) {
	.nurse-link {
		justify-content: flex-start;
	}
}

.nurse-link li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: .5em;
	list-style: none;
}

.nurse-link li::before {
	content: "";
	background: url(img/nurse-arrow.png);
	width: 20px;
	height: 20px;
	background-size: cover;
}

.nurse-link li a {
	color: #9A0000;
	font-weight: bold;
	text-decoration: none;
}

.nurse-program-box {
	position: relative;
	display: grid;
	grid-template-columns: 160px 1fr;
	margin-bottom: 40px;
	border-radius: 20px;
	border: 2px solid #87C6BE;
	background: #FAFAFA;
}

@media screen and (max-width: 767px) {
	.nurse-program-box {
		grid-template-columns: 1fr;
	}
}

.nurse-program-box::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-top: 30px solid #87C6BE;
	border-right: 40px solid transparent;
	border-left: 40px solid transparent;
}

.nurse-program-contents .nurse-program-box:last-child::after {
	border: none;
}

.nurse-program-list {
	display: flex;
	flex-wrap: wrap;
	width: 90%;
	margin: 0 auto;
	padding: 20px;
}

@media screen and (max-width: 767px) {
	.nurse-program-list {
		width: 100%;
		padding: 1em;
	}
}

.nurse-program-list dt {
	width: 25%;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #BEBEBE;
	color: #9A0000;
	font-weight: bold;
}

@media screen and (max-width: 767px) {
	.nurse-program-list dt {
		width: 30%;
	}
}

.nurse-program-list dt:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
	padding-right: 1em;
	border-bottom: none;
	white-space: nowrap;
}

.nurse-program-list dd {
	width: 75%;
	margin: 0 0 10px 0;
	padding-bottom: 10px;
	border-bottom: 1px dotted #BEBEBE;
}

@media screen and (max-width: 767px) {
	.nurse-program-list dd {
		width: 70%;
	}
}

.nurse-program-list dd:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.nurse-program-head {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: 160px;
	padding: 20px;
	border-radius: 18px 0 0 18px;
	background: #87C6BE;
	color: #fff;
	font-weight: bold;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.nurse-program-head {
		width: 100%;
		padding: 10px 0;
		border-radius: 18px 18px 0 0;
	}
}

.nurse-program-head span {
	border: 1px solid #fff;
	padding: 5px 10px;
	line-height: 1.4;
}

.nurse-program-ti {
	line-height: 1.5;
}

.nurse-lead-txt {
	margin-bottom: 20px;
	padding: 0 0 0 1em;
	border-left: 10px solid #9A0000;
	color: #9A0000;
	font-size: clamp(1.8rem, 2vw, 2.2rem);
	font-weight: 600;
}

@media screen and (max-width: 767px) {
	.nurse-lead-txt {
		font-size: 1.6rem;
	}
}

.nurse-info table {
	border: 1px solid #B2B2B2;
	border-collapse: collapse;
	width: 100%;
}

.nurse-info table th {
	width: 20%;
	padding: 20px;
	background: #E7F5F3;
	border-right: 1px solid #B2B2B2;
	border-bottom: 1px solid #B2B2B2;
	text-align: center;
	vertical-align: middle;
}

.nurse-info table td {
	padding: 20px;
	border-right: 1px solid #B2B2B2;
	border-bottom: 1px solid #B2B2B2;
}

@media screen and (max-width: 767px) {

	.nurse-info table th,
	.nurse-info table td {
		display: block;
		width: 100%;
		padding: 10px;
	}
}

.nurse-qa-contents .nurse-qa-box:nth-child(2n+1) {
	background: #F7F7F7;
}

.nurse-qa-contents .nurse-qa-box {
	padding: 20px;
}

@media screen and (max-width: 767px) {
	.nurse-qa-contents .nurse-qa-box {
		padding: 20px 10px;
	}
}

.nurse-q-item {
	display: flex;
	margin-bottom: .75em;
	color: #9A0000;
	font-size: clamp(1.6rem, 1.5vw, 1.8rem);
	font-weight: bold;
	line-height: 1.5;
}

.nurse-q-item::before {
	content: "Q.";
	padding: 1px 12px;
	color: #9A0000;
	font-size: clamp(2rem, 2vw, 2.4rem);
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	line-height: 1;
}

.nurse-a-item {
	display: flex;
}

.nurse-a-item::before {
	content: "A.";
	padding: 6px 12px;
	color: #388076;
	font-size: clamp(2.2rem, 2.166vw, 2.6rem);
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	line-height: 1;
}

.nurse-contact {
	margin-top: 20px;
	padding: 30px;
	border-radius: 20px;
	background: #FFF0F0;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.nurse-contact {
		padding: 1.5em;
	}
}

.nurse-contact-title {
	margin-bottom: 0 !important;
	color: #388076;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6 !important;
}

@media screen and (max-width: 767px) {
	.nurse-contact-title {
		font-size: 1.6rem;
		text-align: left;
	}
}

.nurse-tel {
	position: relative;
	display: inline-block;
	margin: 10px 0 20px 0 !important;
	color: #9A0000;
	font-weight: bold;
}

.nurse-tel::before {
	content: "";
	position: absolute;
	top: 16px;
	left: -20px;
	width: 15px;
	height: 20px;
	background: url(img/nurse-tel.png);
	background-size: cover;
}

.nurse-tel span {
	font-size: 2.4rem;
}

@media (max-width: 767px) {
	.nurse-tel span {
		display: block;
	}
}

.nurse-bn-mail {
	max-width: 320px;
	margin: 0 auto;
}

.nurse-bn-mail a::before {
	position: absolute;
	left: 20px;
	top: 24px;
	content: "";
	width: 25px;
	height: 20px;
	background: url(img/nurse-mail.png);
	background-size: cover;
}

@media (max-width: 767px) {
	.nurse-bn-mail a::before {
		left: 14px;
		top: 22px;
	}
}

.nurse-bn-mail a {
	position: relative;
	display: block;
	border-radius: 10px;
	padding: 10px;
	border: 1px solid #9A0000;
	background: #fff;
	color: #9A0000;
	font-weight: bold;
	line-height: 1.5;
	text-decoration: none;
}

.nurse-bn-mail a:hover {
	border: 1px solid #388076;
}

.nurse-bn-mail a span {
	font-size: clamp(1.2rem, 1.166vw, 1.4rem);
}

/* 介護（介護保険） */
.nursing-map {
	margin: 0 0 56px 0;
}

@media (max-width: 767px) {
	.nursing-map {
		margin: 0 0 40px 0;
	}
}

.nursing-facility {
	margin-top: var(--ark-mt);
	line-height: 1.75;
}

.nursing-facility tr td {
	text-align: center;
}

.nursing-facility tr td:first-child {
	background: #ECF9FA;
	text-align: left;
}

.nursing-add {
	font-size: clamp(1.2rem, 1.166vw, 1.4rem);
}

.nursing-service-detail dt {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	margin: 0 0 .5em 0;
	padding: .5em 0;
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
	font-size: clamp(1.6rem, 1.5vw, 1.8rem);
	font-weight: bold;
	line-height: 1.75;
}

.nursing-service-detail dt::before {
	content: "";
	width: 4px;
	height: 1em;
	margin: 0 .75em 0 0;
	background: var(--main-color);
}

.nursing-service-detail dd {
	width: 100%;
	margin: 0 0 2em 0;
}

.nursing-level {
	margin: .25em 0;
	font-weight: bold;
}

/* その他（自費サービス） */
.other-map {
	margin: 0 0 56px 0;
}

@media (max-width: 767px) {
	.other-map {
		margin: 0 0 40px 0;
	}
}

.other-map-note {
	margin: 1em 0 0 0;
	font-size: clamp(1.2rem, 1.166vw, 1.4rem);
	text-align: right;
}

@media (max-width: 767px) {
	.other-map-note {
		text-align: left;
	}
}

.other-facility {
	margin-top: var(--ark-mt);
}

.other-facility tr td:first-child {
	background: #ECF9FA;
}

/* 施設ギャラリー */
.lightgallery {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (max-width: 767px) {
	.lightgallery {
		grid-template-columns: 1fr 1fr;
	}
}

.lightgallery .item {
	aspect-ratio: 3 / 2;
}

.lightgallery .item a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

@media (max-width: 767px) {
	#slb_viewer_wrap .slb_theme_slb_default .slb_container {
		transform: translateX(50vw) translateX(-50%);
		transform: translateY(50vh) translateY(-50%);
	}
}

#slb_viewer_wrap .slb_theme_slb_default .slb_details {
	margin: 1.5em auto 0 auto !important;
}

#slb_viewer_wrap .slb_theme_slb_default .slb_data_title {
	font-size: clamp(1.4rem, 1.333vw, 1.6rem) !important;
	line-height: 1.5 !important;
}

#slb_viewer_wrap .slb_theme_slb_default .slb_group_status {
	font-size: clamp(1.4rem, 1.333vw, 1.6rem) !important;
}


/*====================================================================================
■検索結果ページ
====================================================================================*/

.p-postList--notfound .c-searchForm {
	width: 50%;
	margin: 2em 0 0 0;
}

@media (max-width: 767px) {
	.p-postList--notfound .c-searchForm {
		width: 100%;
	}
}


/*====================================================================================
■採用情報
====================================================================================*/

/* 求人情報一覧 */
.job-search {
	margin-top: var(--ark-mt);
	margin-bottom: calc(var(--ark-mt)*3);
	padding: 1.5em 3em;
	background: #e9eff5;
}

@media (max-width: 767px) {
	.job-search {
		padding: 1.5em;
	}
}

.job-search-ti {
	margin: 0 0 1em 0 !important;
	padding: 0 !important;
	border-left: none !important;
	color: var(--ark-color--main) !important;
	font-size: clamp(1.6rem, 1.5vw, 1.8rem) !important;
	text-align: center;
}

.job-search form ul {
	padding: 0 !important;
}

.job-search form ul {
	display: flex;
	flex-wrap: wrap;
	gap: .5em;
	width: 100%;
}

.job-search form ul li {
	display: grid;
	grid-template-columns: 2fr 8fr;
	align-items: center;
	gap: 1em;
	width: 100%;
	margin: .2em 0;
	padding-right: 0;
}

@media (max-width: 767px) {
	.job-search form ul li {
		grid-template-columns: 1fr;
	}
}

.job-search form ul li:last-child {
	display: block;
	text-align: center;
}

.job-search form ul li select,
.job-search form ul li label {
	cursor: pointer;
}

.job-search form ul li select {
	width: 100%;
	max-width: 100%;
}

.job-search form ul li input[type=submit] {
	padding: .25em 3em !important;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
	background: var(--main-color);
	color: #fff;
	transition: var(--transition);
}

.job-search form ul li input[type=submit]:hover {
	background: var(--hover-color);
	color: #fff;
}

.job-search form ul li h4 {
	margin: 0 !important;
	color: var(--ark-color--main);
	font-size: clamp(1.4rem, 1.333vw, 1.6rem);
	white-space: nowrap;
}

.job-search form ul li ul {
	gap: 1em;
}

.job-search form ul li ul li {
	display: inline-block;
	width: fit-content;
}

.job-bnlist {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 10px;
}

@media (max-width: 1000px) {
	.job-bnlist {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (max-width: 767px) {
	.job-bnlist {
		grid-template-columns: 1fr 1fr;
	}
}

.job-bnlist .bn a img {
	vertical-align: middle;
}

.blog-title {
	margin: 2em 0 1em 0;
	padding-bottom: .5em;
	border-bottom: 1px solid var(--ark-color--main);
	font-family: var(--font-serif);
	font-size: clamp(2rem, 1.8vw, 2.6rem);
	font-weight: 500;
}

.type-recruit-info .p-entry__meta {
	text-align: right;
}

.recruit-info-contents h3 {
	color: var(--ark-color--main);
	border-left: 5px solid var(--ark-color--main);
	padding-left: 1em;
	margin: 1.5em 0 .5em 0;
	font-size: clamp(1.8rem, 1.9vw, 2rem);
}

.recruit-job-list {
	flex-wrap: wrap;
	width: 100%;
}

.recruit-job-ti {
	width: 100%;
	padding: 1em 0 0 0;
	font-feature-settings: "palt";
}

.recruit-job-list .recruit-job-ti:first-child {
	padding: 0;
}

.recruit-job-ti-link {
	color: var(--main-color);
	font-size: clamp(1.6rem, 1.5vw, 1.8rem);
	font-weight: bold;
}

.recruit-job-facility {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0 0 1em 0;
	border-bottom: 1px dotted var(--main-color);
}

@media (max-width: 767px) {
	.recruit-job-facility {
		flex-wrap: wrap;
	}
}

.recruit-job-list .recruit-job-facility:last-child {
	padding: 0;
	border-bottom: none;
}

.recruit-job-area {
	font-size: clamp(1.2rem, 1.166vw, 1.4rem);
}

.recruit-job-btn {
	margin: 0 0 0 auto;
}

@media (max-width: 767px) {
	.recruit-job-btn {
		margin: .75em 0 0 auto;
	}
}

.recruit-job-btn-link {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 0.3em 3em 0.35em 3em;
	border-radius: 100vh;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
	background: var(--main-color);
	color: #fff;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	transition: var(--transition);
}

.recruit-job-btn-link:hover {
	background: var(--hover-color);
	color: #fff;
}

.recruit-job-btn-link::after {
	position: absolute;
	top: 50%;
	right: 16px;
	font-family: FontAwesome;
	content: '\f105';
	transform: translateY(-50%);
}

/* 求人情報詳細 */
.p-entry__content h2 {
	color: var(--ark-color--main);
	border-left: 5px solid var(--ark-color--main);
	border-bottom: none;
	padding-left: 1em;
	padding-bottom: 0;
	margin: 1.5em 0 .5em 0;
	font-size: clamp(1.8rem, 1.9vw, 2rem);
	font-family: inherit;
	font-weight: bold;
}

.recruit-data-list {
	width: 100%;
	margin: 0 0 3em 0;
	line-height: 1.75;
}

.recruit-data-ti {
	width: 20%;
	padding: .75em 0;
	border-bottom: 1px solid #BEBEBE;
	font-weight: bold;
}

@media (max-width: 767px) {
	.recruit-data-ti {
		width: 100%;
		padding: .75em 0 0 0;
		border-bottom: none;
	}
}

.recruit-data-txt {
	width: 80%;
	padding: .75em 0;
	border-bottom: 1px solid #BEBEBE;
}

@media (max-width: 767px) {
	.recruit-data-txt {
		width: 100%;
		padding: .25em 0 .75em 0;
	}
}

.recruit-data-address {
	display: block;
}

.recruit-data-tel {
	margin: 0 1em 0 0;
}

.recruit-data-salary {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
}

.recruit-salary-list {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: .5em 1.5em;
	width: 100%;
}

.recruit-salary-ti,
.recruit-salary-txt {
	width: auto;
	margin: 0;
}

.recruit-salary-ti {
	text-align: justify;
	text-align-last: justify;
}

.recruit-salary-txt {
	position: relative;
}

.recruit-salary-txt::before {
	position: absolute;
	content: "：";
	top: 0;
	left: -1.25em;
}

/* 応募フォーム */
.form-list {
	width: 100%;
	border-top: 1px solid var(--main-color);
	border-left: 1px solid var(--main-color);
	line-height: 1.5;
}

.wpcf7 .form-list {
	border-top: none;
}

.form-list-ti {
	display: flex;
	align-items: center;
	width: 15em;
	padding: .75em;
	border-bottom: 1px solid var(--main-color);
	border-right: 1px solid var(--main-color);
	background: #e9eff5;
	font-weight: bold;
	font-feature-settings: "palt";
}

@media (max-width: 767px) {
	.form-list-ti {
		width: 100%;
		padding: .5em .75em;
		border-bottom: none;
	}
}

.form-list-ti p {
	display: flex;
	align-items: center;
}

.form-list-ti .required,
.form-list-ti .optional {
	margin: 0 .75em 0 0;
	padding: .25em .5em;
	color: #fff;
	font-size: clamp(1.2rem, 1.166vw, 1.4rem);
	white-space: nowrap;
}

.form-list-ti .required {
	background: var(--main-color);
}

.form-list-ti .optional {
	background: var(--ark-color--text);
}

.form-list-ti .note {
	font-size: clamp(1.2rem, 1.166vw, 1.4rem);
}


.form-list-txt {
	display: flex;
	align-items: center;
	width: calc(100% - 15em);
	padding: .75em;
	border-bottom: 1px solid var(--main-color);
	border-right: 1px solid var(--main-color);
}

@media (max-width: 767px) {
	.form-list-txt {
		width: 100%;
		padding: 1em .75em;
	}
}

.form-list-txt p {
	width: 100%;
}

.form-list-txt input,
.form-list-txt textarea {
	width: 100%;
}

.form-list-txt textarea {
	height: 10em;
	resize: vertical;
}

.form-list-txt .wpcf7-validates-as-number {
	width: 5em;
	margin: 0 .5em 0 0;
}

.form-list-txt .wpcf7-list-item {
	margin: 0 1em 0 .5em;
	vertical-align: bottom;
}

.form-list-txt .wpcf7-list-item label {
	display: flex;
	flex-wrap: nowrap;
	gap: .5em;
}

.form-list-txt .wpcf7-list-item label:hover {
	cursor: pointer;
}

.form-list-txt .wpcf7-list-item-label {
	white-space: nowrap;
}

.form-under-txt {
	margin: 1.5em 0 0 0;
	padding: 1.25em 1em;
	background: #FAFAFA;
	text-align: center;
	line-height: 1.75;
	;
}

.btn-submit {
	text-align: center;
}

.wpcf7-submit {
	margin: 1.5em auto 0 auto;
	padding: 0.6em 3em 0.7em 3em;
	border: none;
	border-radius: 100vh;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
	background: var(--main-color);
	color: #fff;
	font-size: clamp(1.5rem, 1.5vw, 1.8rem);
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	transition: var(--transition);
}

.wpcf7-submit:hover {
	background: var(--hover-color);
	color: #fff;
}

.wpcf7-spinner {
	display: block;
	margin: 0 auto;
}

/* タクソノミーアーカイブ */
.p-archive h2 {
	margin: 0 0 1em 0;
	padding-bottom: .5em;
	border-bottom: 1px solid var(--ark-color--main);
	font-family: var(--font-serif);
	font-size: clamp(2rem, 1.8vw, 2.6rem) !important;
	font-weight: 500;
}